@dialpad/dialtone-icons 4.35.0 → 4.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons.js +1 -1
- package/dist/illustrations.js +1 -1
- package/dist/keywords-icons.json +1 -1
- package/dist/keywords-illustrations.json +1 -1
- package/dist/svg/icons/dpm-logo.svg +1 -1
- package/dist/svg/icons/quick-reply.svg +1 -0
- package/dist/svg/illustrations/mobile-full-notifications.svg +6 -0
- package/package.json +1 -1
- package/vue2/dist/components/icons/dpm-logo.cjs +1 -1
- package/vue2/dist/components/icons/dpm-logo.cjs.map +1 -1
- package/vue2/dist/components/icons/dpm-logo.js +12 -12
- package/vue2/dist/components/icons/dpm-logo.js.map +1 -1
- package/vue2/dist/components/icons/quick-reply.cjs +2 -0
- package/vue2/dist/components/icons/quick-reply.cjs.map +1 -0
- package/vue2/dist/components/icons/quick-reply.js +55 -0
- package/vue2/dist/components/icons/quick-reply.js.map +1 -0
- package/vue2/dist/components/illustrations/mobile-full-notifications.cjs +2 -0
- package/vue2/dist/components/illustrations/mobile-full-notifications.cjs.map +1 -0
- package/vue2/dist/components/illustrations/mobile-full-notifications.js +42 -0
- package/vue2/dist/components/illustrations/mobile-full-notifications.js.map +1 -0
- package/vue2/dist/dialtone-icons.cjs +1 -1
- package/vue2/dist/dialtone-icons.cjs.map +1 -1
- package/vue2/dist/dialtone-icons.js +523 -519
- package/vue2/dist/dialtone-icons.js.map +1 -1
- package/vue2/dist/types/index.d.ts +2 -0
- package/vue2/dist/types/index.d.ts.map +1 -1
- package/vue2/dist/types/src/icons/quick-reply.vue.d.ts +46 -0
- package/vue2/dist/types/src/icons/quick-reply.vue.d.ts.map +1 -0
- package/vue2/dist/types/src/illustrations/mobile-full-notifications.vue.d.ts +26 -0
- package/vue2/dist/types/src/illustrations/mobile-full-notifications.vue.d.ts.map +1 -0
- package/vue3/dist/components/icons/dpm-logo.cjs +1 -1
- package/vue3/dist/components/icons/dpm-logo.cjs.map +1 -1
- package/vue3/dist/components/icons/dpm-logo.js +50 -72
- package/vue3/dist/components/icons/dpm-logo.js.map +1 -1
- package/vue3/dist/components/icons/quick-reply.cjs +2 -0
- package/vue3/dist/components/icons/quick-reply.cjs.map +1 -0
- package/vue3/dist/components/icons/quick-reply.js +65 -0
- package/vue3/dist/components/icons/quick-reply.js.map +1 -0
- package/vue3/dist/components/illustrations/mobile-full-notifications.cjs +2 -0
- package/vue3/dist/components/illustrations/mobile-full-notifications.cjs.map +1 -0
- package/vue3/dist/components/illustrations/mobile-full-notifications.js +53 -0
- package/vue3/dist/components/illustrations/mobile-full-notifications.js.map +1 -0
- package/vue3/dist/dialtone-icons.cjs +1 -1
- package/vue3/dist/dialtone-icons.cjs.map +1 -1
- package/vue3/dist/dialtone-icons.js +523 -519
- package/vue3/dist/dialtone-icons.js.map +1 -1
- package/vue3/dist/types/index.d.ts +2 -0
- package/vue3/dist/types/index.d.ts.map +1 -1
- package/vue3/dist/types/src/icons/quick-reply.vue.d.ts +46 -0
- package/vue3/dist/types/src/icons/quick-reply.vue.d.ts.map +1 -0
- package/vue3/dist/types/src/illustrations/mobile-full-notifications.vue.d.ts +26 -0
- package/vue3/dist/types/src/illustrations/mobile-full-notifications.vue.d.ts.map +1 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { g as
|
|
2
|
-
import { I as
|
|
3
|
-
import { openBlock as
|
|
4
|
-
import { _ as
|
|
5
|
-
const
|
|
1
|
+
import { g as i } from "../../utils-BOfnFgIH.js";
|
|
2
|
+
import { I as e } from "../../constants-DeVuDy8J.js";
|
|
3
|
+
import { openBlock as r, createElementBlock as l, normalizeClass as c, createElementVNode as o, createStaticVNode as a } from "vue";
|
|
4
|
+
import { _ as n } from "../../_plugin-vue_export-helper-CHgC5LLL.js";
|
|
5
|
+
const d = {
|
|
6
6
|
name: "DtIconDpmLogo",
|
|
7
7
|
props: {
|
|
8
8
|
/**
|
|
@@ -12,7 +12,7 @@ const c = {
|
|
|
12
12
|
size: {
|
|
13
13
|
type: String,
|
|
14
14
|
default: "500",
|
|
15
|
-
validator: (
|
|
15
|
+
validator: (t) => Object.keys(e).includes(t)
|
|
16
16
|
},
|
|
17
17
|
/**
|
|
18
18
|
* The label of the icon as read out by a screenreader. Leave this unset if your icon is purely presentational
|
|
@@ -29,7 +29,7 @@ const c = {
|
|
|
29
29
|
emits: ["loaded"],
|
|
30
30
|
computed: {
|
|
31
31
|
iconSizeClass() {
|
|
32
|
-
return
|
|
32
|
+
return e[this.size];
|
|
33
33
|
},
|
|
34
34
|
ariaHidden() {
|
|
35
35
|
return this.ariaLabel ? "false" : "true";
|
|
@@ -39,86 +39,64 @@ const c = {
|
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
created() {
|
|
42
|
-
this.$emit("loaded"), this.uniqueID =
|
|
42
|
+
this.$emit("loaded"), this.uniqueID = i();
|
|
43
43
|
}
|
|
44
|
-
},
|
|
44
|
+
}, f = ["aria-label", "data-qa", "aria-hidden"], _ = /* @__PURE__ */ o("rect", {
|
|
45
45
|
width: "24",
|
|
46
46
|
height: "24",
|
|
47
47
|
rx: "3.6",
|
|
48
48
|
fill: "#F2F0EE"
|
|
49
|
-
}, null, -1),
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
}, null, -1),
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
offset: "1",
|
|
57
|
-
"stop-color": "#FF9E0E"
|
|
58
|
-
}, null, -1), v = [
|
|
59
|
-
m,
|
|
60
|
-
F,
|
|
61
|
-
g,
|
|
62
|
-
I
|
|
63
|
-
], E = ["id"], b = /* @__PURE__ */ t("stop", { "stop-color": "#7C52FF" }, null, -1), q = /* @__PURE__ */ t("stop", {
|
|
64
|
-
offset: ".33",
|
|
65
|
-
"stop-color": "#FF13AC"
|
|
66
|
-
}, null, -1), D = /* @__PURE__ */ t("stop", {
|
|
67
|
-
offset: ".66",
|
|
68
|
-
"stop-color": "#FF1356"
|
|
69
|
-
}, null, -1), S = /* @__PURE__ */ t("stop", {
|
|
70
|
-
offset: "1",
|
|
71
|
-
"stop-color": "#FF9E0E"
|
|
72
|
-
}, null, -1), C = [
|
|
73
|
-
b,
|
|
74
|
-
q,
|
|
75
|
-
D,
|
|
76
|
-
S
|
|
49
|
+
}, null, -1), u = ["fill"], h = /* @__PURE__ */ o("path", {
|
|
50
|
+
d: "M14.407 5.563a3 3 0 0 1 3.001 3v6.828c0 1.656-1.344 3-3 3H7.562a3 3 0 0 1-3-3V8.562a3 3 0 0 1 3-3h6.844Zm-.69 4.22v2.31c-.234-.357-.758-.632-1.308-.632-1.183 0-2.034.94-2.034 2.236 0 1.297.85 2.244 2.034 2.244.55 0 1.074-.283 1.308-.64v.557h.967V9.782h-.967Zm-1.15 2.518c.625 0 1.091.457 1.15 1.113v.549c-.059.657-.525 1.139-1.15 1.139-.7 0-1.2-.582-1.2-1.414 0-.83.5-1.387 1.2-1.387Zm-3.05-4.615c-.01-.068-.13-.085-.155-.021-.398 1.228-1.26 2.189-2.408 2.657-.056.027-.045.12.015.135.904.217 1.605 1.022 1.762 2.03.011.065.12.08.146.018.46-1.285 1.34-2.25 2.457-2.627.058-.026.045-.127-.017-.14-.925-.206-1.645-1.025-1.8-2.052Z",
|
|
51
|
+
fill: "#10022C"
|
|
52
|
+
}, null, -1), m = ["fill"], D = ["id"], F = /* @__PURE__ */ a('<stop offset=".06" stop-color="#10022C"></stop><stop offset=".2" stop-color="#611F93"></stop><stop offset=".29" stop-color="#8223A1"></stop><stop offset=".366" stop-color="#9325A5"></stop><stop offset=".459" stop-color="#C52599" stop-opacity=".9"></stop><stop offset=".564" stop-color="#D52C86"></stop><stop offset=".658" stop-color="#EA2F6F"></stop><stop offset=".737" stop-color="#F64850"></stop><stop offset=".896" stop-color="#FD6D2D"></stop><stop offset=".955" stop-color="#FF9E0E" stop-opacity=".95"></stop>', 10), g = [
|
|
53
|
+
F
|
|
54
|
+
], v = ["id"], E = /* @__PURE__ */ a('<stop offset=".06" stop-color="#10022C"></stop><stop offset=".2" stop-color="#611F93"></stop><stop offset=".29" stop-color="#8223A1"></stop><stop offset=".366" stop-color="#9325A5"></stop><stop offset=".459" stop-color="#C52599" stop-opacity=".9"></stop><stop offset=".564" stop-color="#D52C86"></stop><stop offset=".658" stop-color="#EA2F6F"></stop><stop offset=".737" stop-color="#F64850"></stop><stop offset=".896" stop-color="#FD6D2D"></stop><stop offset=".955" stop-color="#FF9E0E" stop-opacity=".95"></stop>', 10), y = [
|
|
55
|
+
E
|
|
77
56
|
];
|
|
78
|
-
function
|
|
79
|
-
return
|
|
80
|
-
"aria-label":
|
|
81
|
-
class:
|
|
82
|
-
"data-qa":
|
|
83
|
-
"aria-hidden":
|
|
57
|
+
function C(t, I, p, S, Z, s) {
|
|
58
|
+
return r(), l("svg", {
|
|
59
|
+
"aria-label": p.ariaLabel,
|
|
60
|
+
class: c([s.iconSizeClass, "d-icon d-icon--dpm-logo"]),
|
|
61
|
+
"data-qa": s.dataQA,
|
|
62
|
+
"aria-hidden": s.ariaHidden,
|
|
84
63
|
role: "img",
|
|
85
64
|
"data-name": "Dpm Logo",
|
|
86
65
|
viewBox: "0 0 24 24",
|
|
87
66
|
xmlns: "http://www.w3.org/2000/svg"
|
|
88
67
|
}, [
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
d: "
|
|
92
|
-
fill: `url(#${
|
|
93
|
-
}, null, 8,
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
y2: "5.528",
|
|
68
|
+
_,
|
|
69
|
+
o("path", {
|
|
70
|
+
d: "M17.054 13.57v-3.216c0-.294.158-.565.414-.71l1.84-1.047a.818.818 0 0 1 1.223.71v5.345a.818.818 0 0 1-1.233.705l-1.84-1.082a.818.818 0 0 1-.404-.706Z",
|
|
71
|
+
fill: `url(#${t.uniqueID}a)`
|
|
72
|
+
}, null, 8, u),
|
|
73
|
+
h,
|
|
74
|
+
o("path", {
|
|
75
|
+
d: "M14.407 5.563a3 3 0 0 1 3.001 3v6.828c0 1.656-1.344 3-3 3H7.562a3 3 0 0 1-3-3V8.562a3 3 0 0 1 3-3h6.844Zm-.69 4.22v2.31c-.234-.357-.758-.632-1.308-.632-1.183 0-2.034.94-2.034 2.236 0 1.297.85 2.244 2.034 2.244.55 0 1.074-.283 1.308-.64v.557h.967V9.782h-.967Zm-1.15 2.518c.625 0 1.091.457 1.15 1.113v.549c-.059.657-.525 1.139-1.15 1.139-.7 0-1.2-.582-1.2-1.414 0-.83.5-1.387 1.2-1.387Zm-3.05-4.615c-.01-.068-.13-.085-.155-.021-.398 1.228-1.26 2.189-2.408 2.657-.056.027-.045.12.015.135.904.217 1.605 1.022 1.762 2.03.011.065.12.08.146.018.46-1.285 1.34-2.25 2.457-2.627.058-.026.045-.127-.017-.14-.925-.206-1.645-1.025-1.8-2.052Z",
|
|
76
|
+
fill: `url(#${t.uniqueID}b)`
|
|
77
|
+
}, null, 8, m),
|
|
78
|
+
o("defs", null, [
|
|
79
|
+
o("linearGradient", {
|
|
80
|
+
id: `${t.uniqueID}a`,
|
|
81
|
+
x1: "10.987",
|
|
82
|
+
y1: "2.72",
|
|
83
|
+
x2: "23.248",
|
|
84
|
+
y2: "4.266",
|
|
107
85
|
gradientUnits: "userSpaceOnUse"
|
|
108
|
-
},
|
|
109
|
-
|
|
110
|
-
id: `${
|
|
111
|
-
x1: "
|
|
112
|
-
y1: "
|
|
113
|
-
x2: "
|
|
114
|
-
y2: "
|
|
86
|
+
}, g, 8, D),
|
|
87
|
+
o("linearGradient", {
|
|
88
|
+
id: `${t.uniqueID}b`,
|
|
89
|
+
x1: "2.555",
|
|
90
|
+
y1: "2.796",
|
|
91
|
+
x2: "17.788",
|
|
92
|
+
y2: "18.411",
|
|
115
93
|
gradientUnits: "userSpaceOnUse"
|
|
116
|
-
},
|
|
94
|
+
}, y, 8, v)
|
|
117
95
|
])
|
|
118
|
-
], 10,
|
|
96
|
+
], 10, f);
|
|
119
97
|
}
|
|
120
|
-
const
|
|
98
|
+
const x = /* @__PURE__ */ n(d, [["render", C]]);
|
|
121
99
|
export {
|
|
122
|
-
|
|
100
|
+
x as default
|
|
123
101
|
};
|
|
124
102
|
//# sourceMappingURL=dpm-logo.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dpm-logo.js","sources":["../../../../src/icons/dpm-logo.vue"],"sourcesContent":["<template>\n <svg :aria-label=\"ariaLabel\" :class=\"iconSizeClass\" :data-qa=\"dataQA\" :aria-hidden=\"ariaHidden\" role=\"img\" data-name=\"Dpm Logo\" class=\"d-icon d-icon--dpm-logo\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"24\" height=\"24\" rx=\"3.6\" fill=\"#F2F0EE\"/><path d=\"
|
|
1
|
+
{"version":3,"file":"dpm-logo.js","sources":["../../../../src/icons/dpm-logo.vue"],"sourcesContent":["<template>\n <svg :aria-label=\"ariaLabel\" :class=\"iconSizeClass\" :data-qa=\"dataQA\" :aria-hidden=\"ariaHidden\" role=\"img\" data-name=\"Dpm Logo\" class=\"d-icon d-icon--dpm-logo\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"24\" height=\"24\" rx=\"3.6\" fill=\"#F2F0EE\"/><path d=\"M17.054 13.57v-3.216c0-.294.158-.565.414-.71l1.84-1.047a.818.818 0 0 1 1.223.71v5.345a.818.818 0 0 1-1.233.705l-1.84-1.082a.818.818 0 0 1-.404-.706Z\" :fill=\"`url(#${uniqueID}a)`\"/><path d=\"M14.407 5.563a3 3 0 0 1 3.001 3v6.828c0 1.656-1.344 3-3 3H7.562a3 3 0 0 1-3-3V8.562a3 3 0 0 1 3-3h6.844Zm-.69 4.22v2.31c-.234-.357-.758-.632-1.308-.632-1.183 0-2.034.94-2.034 2.236 0 1.297.85 2.244 2.034 2.244.55 0 1.074-.283 1.308-.64v.557h.967V9.782h-.967Zm-1.15 2.518c.625 0 1.091.457 1.15 1.113v.549c-.059.657-.525 1.139-1.15 1.139-.7 0-1.2-.582-1.2-1.414 0-.83.5-1.387 1.2-1.387Zm-3.05-4.615c-.01-.068-.13-.085-.155-.021-.398 1.228-1.26 2.189-2.408 2.657-.056.027-.045.12.015.135.904.217 1.605 1.022 1.762 2.03.011.065.12.08.146.018.46-1.285 1.34-2.25 2.457-2.627.058-.026.045-.127-.017-.14-.925-.206-1.645-1.025-1.8-2.052Z\" fill=\"#10022C\"/><path d=\"M14.407 5.563a3 3 0 0 1 3.001 3v6.828c0 1.656-1.344 3-3 3H7.562a3 3 0 0 1-3-3V8.562a3 3 0 0 1 3-3h6.844Zm-.69 4.22v2.31c-.234-.357-.758-.632-1.308-.632-1.183 0-2.034.94-2.034 2.236 0 1.297.85 2.244 2.034 2.244.55 0 1.074-.283 1.308-.64v.557h.967V9.782h-.967Zm-1.15 2.518c.625 0 1.091.457 1.15 1.113v.549c-.059.657-.525 1.139-1.15 1.139-.7 0-1.2-.582-1.2-1.414 0-.83.5-1.387 1.2-1.387Zm-3.05-4.615c-.01-.068-.13-.085-.155-.021-.398 1.228-1.26 2.189-2.408 2.657-.056.027-.045.12.015.135.904.217 1.605 1.022 1.762 2.03.011.065.12.08.146.018.46-1.285 1.34-2.25 2.457-2.627.058-.026.045-.127-.017-.14-.925-.206-1.645-1.025-1.8-2.052Z\" :fill=\"`url(#${uniqueID}b)`\"/><defs><linearGradient :id=\"`${uniqueID}a`\" x1=\"10.987\" y1=\"2.72\" x2=\"23.248\" y2=\"4.266\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".06\" stop-color=\"#10022C\"/><stop offset=\".2\" stop-color=\"#611F93\"/><stop offset=\".29\" stop-color=\"#8223A1\"/><stop offset=\".366\" stop-color=\"#9325A5\"/><stop offset=\".459\" stop-color=\"#C52599\" stop-opacity=\".9\"/><stop offset=\".564\" stop-color=\"#D52C86\"/><stop offset=\".658\" stop-color=\"#EA2F6F\"/><stop offset=\".737\" stop-color=\"#F64850\"/><stop offset=\".896\" stop-color=\"#FD6D2D\"/><stop offset=\".955\" stop-color=\"#FF9E0E\" stop-opacity=\".95\"/></linearGradient><linearGradient :id=\"`${uniqueID}b`\" x1=\"2.555\" y1=\"2.796\" x2=\"17.788\" y2=\"18.411\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".06\" stop-color=\"#10022C\"/><stop offset=\".2\" stop-color=\"#611F93\"/><stop offset=\".29\" stop-color=\"#8223A1\"/><stop offset=\".366\" stop-color=\"#9325A5\"/><stop offset=\".459\" stop-color=\"#C52599\" stop-opacity=\".9\"/><stop offset=\".564\" stop-color=\"#D52C86\"/><stop offset=\".658\" stop-color=\"#EA2F6F\"/><stop offset=\".737\" stop-color=\"#F64850\"/><stop offset=\".896\" stop-color=\"#FD6D2D\"/><stop offset=\".955\" stop-color=\"#FF9E0E\" stop-opacity=\".95\"/></linearGradient></defs></svg>\n</template>\n\n<script>\nimport { getUniqueString } from '@/src/utils';\nimport { ICON_SIZE_MODIFIERS } from '@/src/constants';\n\nexport default {\n name: 'DtIconDpmLogo',\n\n props: {\n /**\n * The size of the icon.\n * @values 100, 200, 300, 400, 500, 600, 700, 800\n */\n size: {\n type: String,\n default: '500',\n validator: (s) => Object.keys(ICON_SIZE_MODIFIERS).includes(s),\n },\n\n /**\n * The label of the icon as read out by a screenreader. Leave this unset if your icon is purely presentational\n */\n ariaLabel: {\n type: String,\n default: undefined,\n },\n },\n\n /**\n * @TODO: Remove this emit once the icons migration is complete,\n * they will no longer need this event.\n * */\n emits: ['loaded'],\n\n computed: {\n iconSizeClass () {\n return ICON_SIZE_MODIFIERS[this.size];\n },\n\n ariaHidden () {\n return !this.ariaLabel ? 'true' : 'false';\n },\n\n dataQA () {\n return this.$attrs['data-qa'] ?? 'dt-icon';\n },\n },\n\n created () {\n this.$emit('loaded');\n this.uniqueID = getUniqueString();\n },\n};\n</script>\n"],"names":["_sfc_main","s","ICON_SIZE_MODIFIERS","getUniqueString","_hoisted_1","_createElementVNode","_hoisted_3","_hoisted_5","_hoisted_6","_hoisted_7","_createStaticVNode","_hoisted_18","_hoisted_19","_createElementBlock","$props","_normalizeClass","$options","_hoisted_2","_ctx","_hoisted_4","_hoisted_17","_hoisted_29"],"mappings":";;;;AAQA,MAAKA,IAAU;AAAA,EACb,MAAM;AAAA,EAEN,OAAO;AAAA;AAAA;AAAA;AAAA;AAAA,IAKL,MAAM;AAAA,MACJ,MAAM;AAAA,MACN,SAAS;AAAA,MACT,WAAW,CAACC,MAAM,OAAO,KAAKC,CAAmB,EAAE,SAASD,CAAC;AAAA,IAC9D;AAAA;AAAA;AAAA;AAAA,IAKD,WAAW;AAAA,MACT,MAAM;AAAA,MACN,SAAS;AAAA,IACV;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA,EAMD,OAAO,CAAC,QAAQ;AAAA,EAEhB,UAAU;AAAA,IACR,gBAAiB;AACf,aAAOC,EAAoB,KAAK,IAAI;AAAA,IACrC;AAAA,IAED,aAAc;AACZ,aAAQ,KAAK,YAAqB,UAAT;AAAA,IAC1B;AAAA,IAED,SAAU;AACR,aAAO,KAAK,OAAO,SAAS,KAAK;AAAA,IAClC;AAAA,EACF;AAAA,EAED,UAAW;AACT,SAAK,MAAM,QAAQ,GACnB,KAAK,WAAWC;EACjB;AACH,GAvDAC,IAAA,CAAA,cAAA,WAAA,aAAA,OACyNC,gBAAAA,EAAsD,QAAA;AAAA,EAAhD,OAAM;AAAA,EAAK,QAAO;AAAA,EAAK,IAAG;AAAA,EAAM,MAAK;cADpQC,IAAA,CAAA,MAAA,OAC4cD,gBAAAA,EAA+oB,QAAA;AAAA,EAAzoB,GAAE;AAAA,EAAunB,MAAK;cADhlCE,IAAA,CAAA,MAAA,GAAAC,IAAA,CAAA,IAAA,GAAAC,IAAAC,gBAAAA,EAAA,qgBAAA,EAAA;EAC+2DD;GAD/2DE,IAAA,CAAA,IAAA,GAAAC,IAAAF,gBAAAA,EAAA,qgBAAA,EAAA;EACu7EE;;;cAAr7EC,EAAw5F,OAAA;AAAA,IAAl5F,cAAYC,EAAS;AAAA,IAAG,OADhCC,EAAA,CACuCC,EAAa,eAAoF,yBAAyB,CAAA;AAAA,IAA1G,WAASA,EAAM;AAAA,IAAG,eAAaA,EAAU;AAAA,IAAE,MAAK;AAAA,IAAM,aAAU;AAAA,IAA2C,SAAQ;AAAA,IAAY,OAAM;AAAA;IAA6BC;AAAA,IAAsDZ,EAA6L,QAAA;AAAA,MAAvL,GAAE;AAAA,MAAwJ,cAAca,EAAQ,QAAA;AAAA,IADrc,GAAA,MAAA,GAAAZ,CAAA;AAAA,IAC4ca;AAAA,IAA+oBd,EAA6pB,QAAA;AAAA,MAAvpB,GAAE;AAAA,MAAwnB,cAAca,EAAQ,QAAA;AAAA,IADjvD,GAAA,MAAA,GAAAX,CAAA;AAAA,IACwvDF,EAA4pC,QAAA,MAAA;AAAA,MAAtpCA,EAAukB,kBAAA;AAAA,QAAtjB,OAAOa,EAAQ,QAAA;AAAA,QAAK,IAAG;AAAA,QAAS,IAAG;AAAA,QAAO,IAAG;AAAA,QAAS,IAAG;AAAA,QAAQ,eAAc;AAAA,SAD91DE,GAAA,GAAAZ,CAAA;AAAA,MACq0EH,EAAwkB,kBAAA;AAAA,QAAvjB,OAAOa,EAAQ,QAAA;AAAA,QAAK,IAAG;AAAA,QAAQ,IAAG;AAAA,QAAQ,IAAG;AAAA,QAAS,IAAG;AAAA,QAAS,eAAc;AAAA,SADt6EG,GAAA,GAAAV,CAAA;AAAA;EAAA,GAAA,IAAAP,CAAA;;;"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";const i=require("../../constants-CHwVJpfT.cjs"),e=require("vue"),n=require("../../_plugin-vue_export-helper-BRilXfQE.cjs"),l={name:"DtIconQuickReply",props:{size:{type:String,default:"500",validator:t=>Object.keys(i.I).includes(t)},ariaLabel:{type:String,default:void 0}},emits:["loaded"],computed:{iconSizeClass(){return i.I[this.size]},ariaHidden(){return this.ariaLabel?"false":"true"},dataQA(){return this.$attrs["data-qa"]??"dt-icon"}},created(){this.$emit("loaded")}},s=["aria-label","data-qa","aria-hidden"],d=e.createElementVNode("path",{d:"M10 7.5v-5a.5.5 0 0 0-.5-.5h-5a.5.5 0 1 1 0-1h5A1.5 1.5 0 0 1 11 2.5v5A1.5 1.5 0 0 1 9.5 9H3.707l-1.853 1.853A.5.5 0 0 1 1 10.5V8a.5.5 0 0 1 1 0v1.293l1.147-1.147.076-.062A.5.5 0 0 1 3.5 8h6a.5.5 0 0 0 .5-.5ZM2.071.743a.5.5 0 0 1 .858.514L1.883 3H3l.066.005a.5.5 0 0 1 .393.692l-.03.06-1.5 2.5a.5.5 0 0 1-.858-.514L2.117 4H1a.501.501 0 0 1-.429-.757l1.5-2.5Z",fill:"currentColor"},null,-1),c=[d];function o(t,_,r,h,p,a){return e.openBlock(),e.createElementBlock("svg",{"aria-label":r.ariaLabel,class:e.normalizeClass([a.iconSizeClass,"d-icon d-icon--quick-reply"]),"data-qa":a.dataQA,"aria-hidden":a.ariaHidden,role:"img","data-name":"Quick Reply",viewBox:"0 0 12 12",xmlns:"http://www.w3.org/2000/svg"},c,10,s)}const u=n._(l,[["render",o]]);module.exports=u;
|
|
2
|
+
//# sourceMappingURL=quick-reply.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quick-reply.cjs","sources":["../../../../src/icons/quick-reply.vue"],"sourcesContent":["<template>\n <svg :aria-label=\"ariaLabel\" :class=\"iconSizeClass\" :data-qa=\"dataQA\" :aria-hidden=\"ariaHidden\" role=\"img\" data-name=\"Quick Reply\" class=\"d-icon d-icon--quick-reply\" viewBox=\"0 0 12 12\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10 7.5v-5a.5.5 0 0 0-.5-.5h-5a.5.5 0 1 1 0-1h5A1.5 1.5 0 0 1 11 2.5v5A1.5 1.5 0 0 1 9.5 9H3.707l-1.853 1.853A.5.5 0 0 1 1 10.5V8a.5.5 0 0 1 1 0v1.293l1.147-1.147.076-.062A.5.5 0 0 1 3.5 8h6a.5.5 0 0 0 .5-.5ZM2.071.743a.5.5 0 0 1 .858.514L1.883 3H3l.066.005a.5.5 0 0 1 .393.692l-.03.06-1.5 2.5a.5.5 0 0 1-.858-.514L2.117 4H1a.501.501 0 0 1-.429-.757l1.5-2.5Z\" fill=\"currentColor\"/></svg>\n</template>\n\n<script>\nimport { ICON_SIZE_MODIFIERS } from '@/src/constants';\n\nexport default {\n name: 'DtIconQuickReply',\n\n props: {\n /**\n * The size of the icon.\n * @values 100, 200, 300, 400, 500, 600, 700, 800\n */\n size: {\n type: String,\n default: '500',\n validator: (s) => Object.keys(ICON_SIZE_MODIFIERS).includes(s),\n },\n\n /**\n * The label of the icon as read out by a screenreader. Leave this unset if your icon is purely presentational\n */\n ariaLabel: {\n type: String,\n default: undefined,\n },\n },\n\n /**\n * @TODO: Remove this emit once the icons migration is complete,\n * they will no longer need this event.\n * */\n emits: ['loaded'],\n\n computed: {\n iconSizeClass () {\n return ICON_SIZE_MODIFIERS[this.size];\n },\n\n ariaHidden () {\n return !this.ariaLabel ? 'true' : 'false';\n },\n\n dataQA () {\n return this.$attrs['data-qa'] ?? 'dt-icon';\n },\n },\n\n created () {\n this.$emit('loaded');\n },\n};\n</script>\n"],"names":["_sfc_main","s","ICON_SIZE_MODIFIERS","_hoisted_1","_createElementVNode","_hoisted_2","_createElementBlock","$props","_normalizeClass","$options","_hoisted_3"],"mappings":"wIAOKA,EAAU,CACb,KAAM,mBAEN,MAAO,CAKL,KAAM,CACJ,KAAM,OACN,QAAS,MACT,UAAYC,GAAM,OAAO,KAAKC,GAAmB,EAAE,SAASD,CAAC,CAC9D,EAKD,UAAW,CACT,KAAM,OACN,QAAS,MACV,CACF,EAMD,MAAO,CAAC,QAAQ,EAEhB,SAAU,CACR,eAAiB,CACf,OAAOC,EAAmB,EAAC,KAAK,IAAI,CACrC,EAED,YAAc,CACZ,OAAQ,KAAK,UAAqB,QAAT,MAC1B,EAED,QAAU,CACR,OAAO,KAAK,OAAO,SAAS,GAAK,SAClC,CACF,EAED,SAAW,CACT,KAAK,MAAM,QAAQ,CACpB,CACH,EArDAC,EAAA,CAAA,aAAA,UAAA,aAAA,IAC+NC,EAAsY,mBAAA,OAAA,CAAhY,EAAE,yWAAyW,KAAK,4BAAtXC,gDAA7NC,EAAymB,mBAAA,MAAA,CAAnmB,aAAYC,EAAS,UAAG,MADhCC,EAAAA,eAAA,CACuCC,EAAa,cAAuF,4BAA4B,CAAA,EAAhH,UAASA,EAAM,OAAG,cAAaA,EAAU,WAAE,KAAK,MAAM,YAAU,cAAiD,QAAQ,YAAY,MAAM,8BADlMC,EAAA,GAAAP,CAAA"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { I as t } from "../../constants-DeVuDy8J.js";
|
|
2
|
+
import { openBlock as r, createElementBlock as l, normalizeClass as d, createElementVNode as n } from "vue";
|
|
3
|
+
import { _ as s } from "../../_plugin-vue_export-helper-CHgC5LLL.js";
|
|
4
|
+
const o = {
|
|
5
|
+
name: "DtIconQuickReply",
|
|
6
|
+
props: {
|
|
7
|
+
/**
|
|
8
|
+
* The size of the icon.
|
|
9
|
+
* @values 100, 200, 300, 400, 500, 600, 700, 800
|
|
10
|
+
*/
|
|
11
|
+
size: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: "500",
|
|
14
|
+
validator: (e) => Object.keys(t).includes(e)
|
|
15
|
+
},
|
|
16
|
+
/**
|
|
17
|
+
* The label of the icon as read out by a screenreader. Leave this unset if your icon is purely presentational
|
|
18
|
+
*/
|
|
19
|
+
ariaLabel: {
|
|
20
|
+
type: String,
|
|
21
|
+
default: void 0
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
/**
|
|
25
|
+
* @TODO: Remove this emit once the icons migration is complete,
|
|
26
|
+
* they will no longer need this event.
|
|
27
|
+
* */
|
|
28
|
+
emits: ["loaded"],
|
|
29
|
+
computed: {
|
|
30
|
+
iconSizeClass() {
|
|
31
|
+
return t[this.size];
|
|
32
|
+
},
|
|
33
|
+
ariaHidden() {
|
|
34
|
+
return this.ariaLabel ? "false" : "true";
|
|
35
|
+
},
|
|
36
|
+
dataQA() {
|
|
37
|
+
return this.$attrs["data-qa"] ?? "dt-icon";
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
created() {
|
|
41
|
+
this.$emit("loaded");
|
|
42
|
+
}
|
|
43
|
+
}, c = ["aria-label", "data-qa", "aria-hidden"], _ = /* @__PURE__ */ n("path", {
|
|
44
|
+
d: "M10 7.5v-5a.5.5 0 0 0-.5-.5h-5a.5.5 0 1 1 0-1h5A1.5 1.5 0 0 1 11 2.5v5A1.5 1.5 0 0 1 9.5 9H3.707l-1.853 1.853A.5.5 0 0 1 1 10.5V8a.5.5 0 0 1 1 0v1.293l1.147-1.147.076-.062A.5.5 0 0 1 3.5 8h6a.5.5 0 0 0 .5-.5ZM2.071.743a.5.5 0 0 1 .858.514L1.883 3H3l.066.005a.5.5 0 0 1 .393.692l-.03.06-1.5 2.5a.5.5 0 0 1-.858-.514L2.117 4H1a.501.501 0 0 1-.429-.757l1.5-2.5Z",
|
|
45
|
+
fill: "currentColor"
|
|
46
|
+
}, null, -1), u = [
|
|
47
|
+
_
|
|
48
|
+
];
|
|
49
|
+
function m(e, h, i, p, f, a) {
|
|
50
|
+
return r(), l("svg", {
|
|
51
|
+
"aria-label": i.ariaLabel,
|
|
52
|
+
class: d([a.iconSizeClass, "d-icon d-icon--quick-reply"]),
|
|
53
|
+
"data-qa": a.dataQA,
|
|
54
|
+
"aria-hidden": a.ariaHidden,
|
|
55
|
+
role: "img",
|
|
56
|
+
"data-name": "Quick Reply",
|
|
57
|
+
viewBox: "0 0 12 12",
|
|
58
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
59
|
+
}, u, 10, c);
|
|
60
|
+
}
|
|
61
|
+
const k = /* @__PURE__ */ s(o, [["render", m]]);
|
|
62
|
+
export {
|
|
63
|
+
k as default
|
|
64
|
+
};
|
|
65
|
+
//# sourceMappingURL=quick-reply.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quick-reply.js","sources":["../../../../src/icons/quick-reply.vue"],"sourcesContent":["<template>\n <svg :aria-label=\"ariaLabel\" :class=\"iconSizeClass\" :data-qa=\"dataQA\" :aria-hidden=\"ariaHidden\" role=\"img\" data-name=\"Quick Reply\" class=\"d-icon d-icon--quick-reply\" viewBox=\"0 0 12 12\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10 7.5v-5a.5.5 0 0 0-.5-.5h-5a.5.5 0 1 1 0-1h5A1.5 1.5 0 0 1 11 2.5v5A1.5 1.5 0 0 1 9.5 9H3.707l-1.853 1.853A.5.5 0 0 1 1 10.5V8a.5.5 0 0 1 1 0v1.293l1.147-1.147.076-.062A.5.5 0 0 1 3.5 8h6a.5.5 0 0 0 .5-.5ZM2.071.743a.5.5 0 0 1 .858.514L1.883 3H3l.066.005a.5.5 0 0 1 .393.692l-.03.06-1.5 2.5a.5.5 0 0 1-.858-.514L2.117 4H1a.501.501 0 0 1-.429-.757l1.5-2.5Z\" fill=\"currentColor\"/></svg>\n</template>\n\n<script>\nimport { ICON_SIZE_MODIFIERS } from '@/src/constants';\n\nexport default {\n name: 'DtIconQuickReply',\n\n props: {\n /**\n * The size of the icon.\n * @values 100, 200, 300, 400, 500, 600, 700, 800\n */\n size: {\n type: String,\n default: '500',\n validator: (s) => Object.keys(ICON_SIZE_MODIFIERS).includes(s),\n },\n\n /**\n * The label of the icon as read out by a screenreader. Leave this unset if your icon is purely presentational\n */\n ariaLabel: {\n type: String,\n default: undefined,\n },\n },\n\n /**\n * @TODO: Remove this emit once the icons migration is complete,\n * they will no longer need this event.\n * */\n emits: ['loaded'],\n\n computed: {\n iconSizeClass () {\n return ICON_SIZE_MODIFIERS[this.size];\n },\n\n ariaHidden () {\n return !this.ariaLabel ? 'true' : 'false';\n },\n\n dataQA () {\n return this.$attrs['data-qa'] ?? 'dt-icon';\n },\n },\n\n created () {\n this.$emit('loaded');\n },\n};\n</script>\n"],"names":["_sfc_main","s","ICON_SIZE_MODIFIERS","_hoisted_1","_createElementVNode","_hoisted_2","_createElementBlock","$props","_normalizeClass","$options","_hoisted_3"],"mappings":";;;AAOA,MAAKA,IAAU;AAAA,EACb,MAAM;AAAA,EAEN,OAAO;AAAA;AAAA;AAAA;AAAA;AAAA,IAKL,MAAM;AAAA,MACJ,MAAM;AAAA,MACN,SAAS;AAAA,MACT,WAAW,CAACC,MAAM,OAAO,KAAKC,CAAmB,EAAE,SAASD,CAAC;AAAA,IAC9D;AAAA;AAAA;AAAA;AAAA,IAKD,WAAW;AAAA,MACT,MAAM;AAAA,MACN,SAAS;AAAA,IACV;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA,EAMD,OAAO,CAAC,QAAQ;AAAA,EAEhB,UAAU;AAAA,IACR,gBAAiB;AACf,aAAOC,EAAoB,KAAK,IAAI;AAAA,IACrC;AAAA,IAED,aAAc;AACZ,aAAQ,KAAK,YAAqB,UAAT;AAAA,IAC1B;AAAA,IAED,SAAU;AACR,aAAO,KAAK,OAAO,SAAS,KAAK;AAAA,IAClC;AAAA,EACF;AAAA,EAED,UAAW;AACT,SAAK,MAAM,QAAQ;AAAA,EACpB;AACH,GArDAC,IAAA,CAAA,cAAA,WAAA,aAAA,OAC+NC,gBAAAA,EAAsY,QAAA;AAAA,EAAhY,GAAE;AAAA,EAAyW,MAAK;;EAAtXC;;;cAA7NC,EAAymB,OAAA;AAAA,IAAnmB,cAAYC,EAAS;AAAA,IAAG,OADhCC,EAAA,CACuCC,EAAa,eAAuF,4BAA4B,CAAA;AAAA,IAAhH,WAASA,EAAM;AAAA,IAAG,eAAaA,EAAU;AAAA,IAAE,MAAK;AAAA,IAAM,aAAU;AAAA,IAAiD,SAAQ;AAAA,IAAY,OAAM;AAAA,KADlMC,GAAA,IAAAP,CAAA;;;"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";const l=require("vue"),c=require("../../_plugin-vue_export-helper-BRilXfQE.cjs"),e={name:"DtIllustrationMobileFullNotifications",props:{ariaLabel:{type:String,default:void 0}},emits:["loaded"],computed:{ariaHidden(){return this.ariaLabel?"false":"true"},dataQA(){return this.$attrs["data-qa"]??"dt-illustration"}},created(){this.$emit("loaded")}},i=["aria-label","data-qa","aria-hidden"],r=l.createStaticVNode('<path fill="var(--dt-color-black-1000)" d="M67.6781 70.6295c5.7483-4.4088 10.6534-9.7148 14.9469-15.5372 3.9781-5.3963 7.5958-11.1606 10.4088-17.2541 2.5491-5.519 4.7248-11.322 8.3422-16.2601 3.154-4.3055 7.911-8.0945 13.525-7.4361 5.169.6067 9.604 4.4474 12.867 8.2817 1.764 2.072 3.296 4.3442 4.616 6.7261 1.377 2.5045 2.349 5.0865 3.225 7.8041 2.291 7.0875 4.094 14.3752 7.595 20.998 3.528 6.668 8.497 12.4904 12.533 18.8421 4.037 6.3517 7.068 13.6135 9.309 20.9593 2.259 7.3977 3.72 15.0397 4.293 22.7537.142 1.924.225 3.854.264 5.784.039 1.93 2.935 1.872 2.897 0-.155-8.043-1.217-16.073-3.161-23.877-1.944-7.8043-4.532-15.2404-8.22-22.1731-3.689-6.9326-8.503-12.826-12.72-19.2616-2.092-3.1888-3.856-6.526-5.233-10.0827-1.378-3.5567-2.408-7.0553-3.489-10.6184-.991-3.2533-1.944-6.5518-3.334-9.6631-1.133-2.5368-2.55-4.951-4.165-7.2102-3.335-4.6605-7.602-8.9596-12.997-11.1155-2.542-1.0199-5.304-1.362-8.014-.9231-3 .4906-5.671 2.0462-7.969 3.9827-4.7377 4.0021-7.6023 9.7341-10.1063 15.2919-1.281 2.8337-2.4911 5.7062-3.8944 8.4883-1.5449 3.0725-3.3666 6.0096-5.2269 8.8949-3.9073 6.0484-8.3618 11.761-13.6724 16.6474-1.3132 1.2071-2.6714 2.3625-4.0811 3.447-.618.4777-.9463 1.2523-.5214 1.9881.354.6132 1.3582 1.0005 1.9826.5229Z"></path><path fill="var(--dt-color-black-1000)" d="M169.507 126.891c-.181 5.493-1.281 10.883-2.665 16.189-1.178 4.525-2.517 9.044-4.423 13.317-3.617 8.12-9.411 15.505-18.133 18.3-4.338 1.394-9.153 1.549-13.37-.349-.714-.323-1.557-.207-1.982.523-.361.62-.2 1.665.521 1.988 8.664 3.899 18.668.962 25.626-5.022 7.583-6.519 11.387-16.434 13.982-25.839 1.718-6.236 3.128-12.62 3.34-19.107.058-1.872-2.838-1.865-2.896 0ZM48.1483 96.8371c-9.1471 12.5809-15.391 27.2919-18.1397 42.6159-.7724 4.318-1.2809 8.682-1.5062 13.058-.0966 1.866 2.8001 1.866 2.8967 0 .7917-15.137 5.0595-30.054 12.3463-43.332 2.0663-3.77 4.3772-7.404 6.907-10.8831.4634-.6326.1094-1.6202-.5214-1.9881-.7339-.4325-1.5192-.1162-1.9827.5228v.0065ZM37.5591 180.532c-.0901-14.408 4.8085-28.615 13.4729-40.073 2.1371-2.827 4.5381-5.461 7.1129-7.881 2.2144-2.079 5.1626-5.255 8.4777-3.692 2.9868 1.4 4.7055 4.783 5.8642 7.707 1.4676 3.711 2.4654 7.597 3.1091 11.541 1.4676 8.999 1.0686 18.21.5858 27.279-.0966 1.866 2.8001 1.866 2.8967 0 .457-8.617.7788-17.293-.3734-25.878-.5665-4.209-1.4741-8.379-2.9225-12.374-1.2938-3.57-2.9417-7.256-5.9929-9.67-1.3968-1.104-3.019-1.859-4.8149-1.936-2.0084-.084-3.8623.807-5.4265 1.994-3.0898 2.356-5.8706 5.21-8.3875 8.159-4.9888 5.855-8.9476 12.51-11.767 19.669-3.1477 7.985-4.7827 16.57-4.7312 25.155.0128 1.865 2.9095 1.872 2.8966 0Z"></path><path fill="var(--dt-color-black-1000)" d="M87.9489 182.933c-1.0493-7.888.2317-15.802 3.0254-23.206 1.3968-3.692 3.167-7.236 5.1883-10.618 2.0212-3.382 4.1714-6.597 6.6944-9.528 2.208-2.569 5.073-5.331 8.581-5.803 2.993-.4 5.607 1.22 7.383 3.518 2.06 2.673 3.18 5.945 4.133 9.134 1.261 4.209 2.311 8.476 3.147 12.787 1.887 9.702 2.665 19.598 2.363 29.48-.058 1.872 2.839 1.866 2.897 0 .283-9.321-.406-18.655-2.022-27.84-.811-4.628-1.873-9.211-3.167-13.723-1.017-3.557-2.143-7.178-4.164-10.302-1.829-2.834-4.487-5.281-7.912-5.849-4.036-.664-7.711 1.227-10.66 3.848-2.948 2.62-5.4581 6.151-7.7047 9.521-2.2465 3.369-4.3965 7.203-6.1024 11.063-3.7979 8.618-5.8449 18.1-4.5832 27.525.103.774.5922 1.452 1.4484 1.452.7016 0 1.5513-.671 1.4483-1.452l.0065-.007ZM146.346 112.458c.972-5.564-.071-11.142-1.937-16.4088-1.867-5.2672-4.043-9.9794-6.856-14.4979-2.813-4.5184-6.096-8.2946-10.325-11.2316-3.663-2.5433-8.272-4.6412-12.816-4.1248-4.976.5616-9.695 2.737-14.104 5.0091-1.6608.8521-.193 3.3631 1.461 2.511 3.592-1.8461 7.345-3.5696 11.323-4.3829 1.77-.3615 3.54-.4583 5.298.0064 2.15.5681 4.171 1.4718 6.07 2.6401 8.207 5.0413 12.996 14.1816 16.421 22.8958 2.079 5.2996 3.676 11.0966 2.678 16.8216-.135.775.206 1.562 1.01 1.788.702.194 1.648-.239 1.783-1.013l-.006-.013Z"></path><path fill="var(--dt-color-black-1000)" d="M111.438 70.9007c-4.158-.1097-8.317-.0387-12.43.6068-2.6714.4131-5.4587 1.0651-8.0142 1.9817-1.0171.3615-2.1114.8133-2.8581 1.6266-.869.9554-.9527 2.2851-.1931 3.3373.5343.7423 1.3582 1.1425 2.1629 1.5362.9462.4648 1.9247.8715 2.916 1.2394 1.7702.6519 3.5983 1.149 5.4522 1.5105 4.5763.8972 9.2243.9618 13.8723.9682 1.866 0 1.866-2.8983 0-2.9047-6.946-.0194-14.1169-.1679-20.5282-3.2017-.367-.1743-.7339-.355-1.0879-.5487-.058-.0322-.4249-.3485-.4828-.355.103.0194-.0193.2905.0257.0194-.0064.0516 0 .2904 0 .3679 0-.2001-.0257-.0194-.0386.0646.0515-.2582-.1287.1484.0386-.0581 0 0 .2833-.2518.1352-.1291-.1351.1097.0902-.0581.1223-.0775a6.1654 6.1654 0 0 1 .5729-.3163c.2962-.1485.6759-.284 1.1265-.426 2.2595-.7359 4.6283-1.3297 6.965-1.73 4.0423-.6906 8.1683-.71 12.2563-.6003 1.867.0517 1.86-2.8531 0-2.9047l-.013-.0065Z"></path><path fill="var(--dt-color-black-1000)" d="M99.4454 80.2021c-1.841.6649-3.9009 2.2141-4.4609 4.1893-.6437 2.2851.457 4.7896 2.4461 5.9773 1.989 1.1878 4.4994 1.8268 6.7714 2.1495 2.781.3938 5.581.3551 8.375.1872 2.794-.1678 5.948-.2646 8.587-1.6718 1.648-.8779.187-3.3824-1.461-2.511-2.234 1.1877-4.97 1.1554-7.435 1.2975-2.864.1613-5.8.2388-8.632-.3292-1.242-.2518-2.433-.6455-3.618-1.0974-.7336-.284-1.6476-.6519-2.0145-1.4007-.367-.7488-.4313-1.6912.0708-2.3625.5021-.6714 1.3582-1.3362 2.1367-1.6202.734-.2647 1.23-.9877 1.011-1.7881-.193-.71-1.043-1.2845-1.7831-1.0134l.0065-.0065Z"></path><path fill="var(--dt-color-black-1000)" d="M103.565 89.5428c-1.391-.2001-2.736 0-4.0941.3163-1.0235.2453-2.0341.6907-2.7422 1.4976-1.6994 1.9429-1.6543 5.306-.0708 7.2877 1.6736 2.0916 4.7631 1.8526 7.1711 2.0266 2.961.213 5.922.258 8.877-.084 3.289-.381 6.514-1.1164 9.623-2.2718.734-.2711 1.229-.9812 1.011-1.7881-.194-.71-1.043-1.291-1.783-1.0134-5.794 2.156-11.755 2.6917-17.889 2.2399a140.253 140.253 0 0 1-2.369-.1937c-.534-.0452-1.107-.0452-1.6221-.2194-.8819-.3034-1.2553-1.1619-1.3067-2.0592-.0515-.8972.1866-2.0139 1.12-2.4012.9338-.3873 2.3048-.6714 3.2958-.5293.772.1097 1.558-.1872 1.783-1.0135.187-.6777-.232-1.6783-1.011-1.788l.007-.0065Z"></path><path fill="var(--dt-color-black-1000)" d="M104.054 97.8954c-2.189.1226-3.972 2.3236-3.894 4.4926.09 2.53 2.13 4.254 4.325 5.08 2.356.884 5.06 1.162 7.558 1.272 2.671.116 5.329-.116 7.962-.549.773-.129 1.204-1.091 1.011-1.788-.225-.82-1.004-1.142-1.783-1.013-3.779.626-7.718.69-11.484-.058-1.5-.297-3.386-.633-4.319-1.989-.335-.484-.502-1.058-.258-1.613.135-.31.522-.917.882-.936 1.854-.104 1.867-3.0084 0-2.9051v.0065ZM83.9643 90.2334c.5601 1.7622.1288 3.518-.5149 5.2027-.6051 1.5879-1.4226 3.1307-2.3174 4.5769-1.6607 2.666-3.9202 5.144-6.907 6.3-.7274.284-1.2359.974-1.0106 1.788.1931.697 1.0492 1.297 1.7831 1.013 3.7335-1.446 6.54-4.273 8.6385-7.636 2.0985-3.3631 4.4288-7.9396 3.1285-12.0127-.5665-1.7752-3.3602-1.0135-2.7937.7746l-.0065-.0065Z"></path><path fill="var(--dt-color-black-1000)" d="M83.8803 97.3727c5.42 6.8163-1.0943 14.7363-7.0036 18.4483-1.5771.988-.1223 3.505 1.4613 2.511 3.7657-2.363 7.3061-5.693 9.1857-9.792.9269-2.021 1.5063-4.26 1.2874-6.5-.2446-2.5436-1.3003-4.7383-2.8774-6.72-.4892-.6132-1.5384-.5099-2.047 0-.6051.6068-.4892 1.4395 0 2.0527h-.0064Z"></path><path fill="var(--dt-color-black-1000)" d="M85.5669 109.004c1.6994 3.589.4635 7.72-1.5191 10.909-.9849 1.588-2.1565 3.099-3.4954 4.403-1.1973 1.168-2.6392 2.188-4.3643 2.22-1.8604.039-1.8668 2.944 0 2.905 4.654-.091 8.1043-4.435 10.3637-8.062 2.5813-4.151 3.6756-9.276 1.5191-13.846-.3347-.71-1.3453-.891-1.9826-.523-.721.426-.8561 1.278-.5214 1.988v.006ZM55.8084 116.692c-2.1178.994-4.3901 1.13-6.1216-.465-.412-.38-.8175-.761-1.1909-1.174-.1609-.181-.3283-.362-.4763-.556.1802.239-.0322-.058-.0708-.109-.0709-.104-.1352-.207-.1996-.31-.3991-.678-.6501-1.698-.7338-2.589-.0708-.781-.6115-1.452-1.4483-1.452-.7274 0-1.5192.665-1.4484 1.452.1352 1.421.3926 2.815 1.1329 4.054.6759 1.136 1.6544 2.105 2.6392 2.969 2.7101 2.382 6.2826 2.137 9.3789.685.7081-.336.8883-1.356.5214-1.988-.4249-.73-1.2681-.852-1.9827-.523v.006ZM49.4422 97.5984c2.1693 1.5428 4.6412 2.6726 7.2675 3.1246 2.5748.445 5.1497.316 7.7245-.097 5.626-.9039 10.9431-3.0082 15.7709-6.0162 2.7872-1.7364 5.4071-3.7245 7.9433-5.8095.6051-.497.515-1.5363 0-2.0527-.5986-.6003-1.4419-.497-2.047 0-4.0618 3.3502-8.4518 6.4292-13.3119 8.5077-2.4332 1.0392-4.9952 1.7557-7.5829 2.2915-2.2787.4648-4.6024.7165-6.9262.4841-2.7036-.2646-5.1819-1.3749-7.377-2.937-.6372-.4518-1.6092-.1162-1.9826.5229-.4248.7294-.1223 1.5298.5214 1.9881v-.0065Z"></path><path fill="var(--dt-color-black-1000)" d="M51.6694 95.6685c-.0837-4.6089-.1738-9.2242-.2575-13.8331-.0386-2.1817-.1287-4.3635-.1158-6.5453 0-.6584.0193-1.3685.2639-1.9881.2575-.6584.7402-.8263 1.4161-.9102 2.2144-.2776 4.4674-.3679 6.6882-.5487 2.3495-.1936 4.7055-.3808 7.055-.5745 2.3496-.1936 4.4867-.3679 6.7332-.5486 2.2465-.1808 4.4545-.51 6.6624-.5358 1.9247-.0194 2.2337 3.2533 2.4461 4.654.354 2.4077.5922 4.8413.766 7.2683.1287 1.8526 3.0319 1.8655 2.8967 0-.1738-2.498-.4442-4.9897-.7853-7.4684-.2962-2.1366-.7017-4.3829-2.1758-6.0483-1.68-1.9042-4.3772-1.2264-6.6044-1.0392-2.562.2065-5.1304.4195-7.6923.6261-5.021.4067-10.0483.8198-15.0693 1.2265-1.0943.0903-2.2723.1097-3.2443.6777-.8754.51-1.4547 1.3104-1.8152 2.2464-.7403 1.9364-.4249 4.2667-.3862 6.2871.103 5.6804.2124 11.3672.3154 17.0476.0322 1.8655 2.9289 1.8719 2.8967 0l.0064.0065Z"></path><path fill="var(--dt-color-black-1000)" d="M57.0894 74.8448c-.7017-.1227-1.3454-.1808-2.0535-.0581-.7402.1291-1.429.6003-1.8023 1.2651-.3734.6649-.412 1.4976-.3219 2.2464.0901.7488.2703 1.5104.7081 2.1495.4763.6842 1.1265 1.2006 1.9311 1.4459.8046.2453 1.5835.1291 2.2852-.2453 1.0943-.5809 1.6221-1.8397 1.8538-2.9951.1674-.8391.2897-1.7041-.1544-2.4852-.2704-.4712-.7661-.8262-1.2939-.9488-.354-.084-.7145-.0711-1.0685-.1162l.3862.0516a1.4264 1.4264 0 0 1-.2382-.0581l.3476.1485c-.045-.0194-.0837-.0452-.1223-.071l.2961.2259s-.0451-.0387-.0708-.0646l.2253.297-.0322-.0388c-.2382-.3163-.4699-.5551-.8625-.6648-.3477-.0968-.8111-.0517-1.1137.1484-.3025.2001-.5793.4971-.663.865s-.0837.8198.148 1.1167c.3348.439.7082.7875 1.2682.8973.3411.0645.6758.0645 1.017.1032l-.3862-.0516a1.196 1.196 0 0 1 .2511.0646l-.3477-.1485a.8262.8262 0 0 1 .1288.071l-.2961-.2259c.0451.0387.0837.071.1159.1162l-.2254-.297a1.025 1.025 0 0 1 .0837.142l-.148-.3485c.0257.071.0451.142.0579.2194l-.0515-.3873c.0193.1808.0129.3551-.0064.5358l.0515-.3873c-.0773.5358-.1867 1.0715-.3991 1.575l.148-.3485c-.0901.2065-.1931.4002-.3283.5809l.2253-.2969c-.0965.1291-.2059.2388-.3347.3421l.2961-.2259c-.103.0774-.206.1355-.3219.1936l.3477-.1485a2.0299 2.0299 0 0 1-.3991.1162l.3862-.0516a2.4079 2.4079 0 0 1-.4313 0l.3862.0516a1.838 1.838 0 0 1-.4184-.1226l.3476.1485a2.6702 2.6702 0 0 1-.4377-.2518l.2961.2259c-.1545-.1162-.2832-.2517-.4055-.4066l.2253.2969c-.1223-.1678-.2253-.3421-.309-.5358l.148.3486c-.1223-.3034-.1995-.6132-.2446-.936l.0515.3873c-.045-.3485-.0579-.7036-.0193-1.0521l-.0515.3873c.0193-.142.058-.2711.1095-.4002l-.1481.3485c.0386-.0774.0772-.1484.1287-.213l-.2253.2969c.058-.071.1159-.1291.1867-.1872l-.2961.226a1.053 1.053 0 0 1 .2768-.1549l-.3476.1484c.1416-.0516.2768-.0903.4249-.1097l-.3863.0516c.3154-.0387.6244-.0193.9398.0194l-.3862-.0516c.0966.0129.1931.0258.2833.0451.3926.071.7595.0646 1.1136-.1484.3025-.1743.5857-.5229.663-.865.0836-.3744.0643-.7875-.1481-1.1167-.1931-.3034-.502-.6068-.8625-.6649l.0193-.0193ZM102.677 29.4982c-.277 2.2205-1.03 4.9252-1.97 7.0101-.283.6326-.7275 1.2781-.7597 1.9882-.0386.9037.5277 1.6653 1.4157 1.859.676.1485 1.462 0 2.144-.0323.721-.0387 1.448-.071 2.169-.1097.721-.0387 1.487-.6391 1.449-1.4524-.033-.7552-.638-1.4911-1.449-1.4524-.663.0323-1.326.071-1.989.1033-.302.0129-.605.0323-.901.0452-.18.0065-.36.0194-.541.0258h-.18c-.386 0-.257.0969.393.297l.373.639c.064.1614-.167.6778.013.3357.09-.1808.174-.3615.257-.5423.213-.4518.406-.9101.593-1.3684.302-.7423.579-1.4976.817-2.2593.515-1.6589.843-3.3565 1.062-5.08.097-.7553-.734-1.4847-1.448-1.4524-.869.0387-1.345.639-1.448 1.4524v-.0065Z"></path>',11),o=[r];function d(h,n,t,p,f,a){return l.openBlock(),l.createElementBlock("svg",{"aria-label":t.ariaLabel,"data-qa":a.dataQA,"aria-hidden":a.ariaHidden,focusable:"false",role:"img","data-name":"Mobile Full Notifications",class:"d-illustration d-illustration--mobile-full-notifications",xmlns:"http://www.w3.org/2000/svg",width:"200",height:"200",viewBox:"0 0 200 200",fill:"none"},o,8,i)}const s=c._(e,[["render",d]]);module.exports=s;
|
|
2
|
+
//# sourceMappingURL=mobile-full-notifications.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mobile-full-notifications.cjs","sources":["../../../../src/illustrations/mobile-full-notifications.vue"],"sourcesContent":["<template>\n <svg :aria-label=\"ariaLabel\" :data-qa=\"dataQA\"\n :aria-hidden=\"ariaHidden\"\n focusable=\"false\"\n role=\"img\"\n data-name=\"Mobile Full Notifications\"\n class=\"d-illustration d-illustration--mobile-full-notifications\" xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200' fill='none'><path fill='var(--dt-color-black-1000)' d='M67.6781 70.6295c5.7483-4.4088 10.6534-9.7148 14.9469-15.5372 3.9781-5.3963 7.5958-11.1606 10.4088-17.2541 2.5491-5.519 4.7248-11.322 8.3422-16.2601 3.154-4.3055 7.911-8.0945 13.525-7.4361 5.169.6067 9.604 4.4474 12.867 8.2817 1.764 2.072 3.296 4.3442 4.616 6.7261 1.377 2.5045 2.349 5.0865 3.225 7.8041 2.291 7.0875 4.094 14.3752 7.595 20.998 3.528 6.668 8.497 12.4904 12.533 18.8421 4.037 6.3517 7.068 13.6135 9.309 20.9593 2.259 7.3977 3.72 15.0397 4.293 22.7537.142 1.924.225 3.854.264 5.784.039 1.93 2.935 1.872 2.897 0-.155-8.043-1.217-16.073-3.161-23.877-1.944-7.8043-4.532-15.2404-8.22-22.1731-3.689-6.9326-8.503-12.826-12.72-19.2616-2.092-3.1888-3.856-6.526-5.233-10.0827-1.378-3.5567-2.408-7.0553-3.489-10.6184-.991-3.2533-1.944-6.5518-3.334-9.6631-1.133-2.5368-2.55-4.951-4.165-7.2102-3.335-4.6605-7.602-8.9596-12.997-11.1155-2.542-1.0199-5.304-1.362-8.014-.9231-3 .4906-5.671 2.0462-7.969 3.9827-4.7377 4.0021-7.6023 9.7341-10.1063 15.2919-1.281 2.8337-2.4911 5.7062-3.8944 8.4883-1.5449 3.0725-3.3666 6.0096-5.2269 8.8949-3.9073 6.0484-8.3618 11.761-13.6724 16.6474-1.3132 1.2071-2.6714 2.3625-4.0811 3.447-.618.4777-.9463 1.2523-.5214 1.9881.354.6132 1.3582 1.0005 1.9826.5229Z'/><path fill='var(--dt-color-black-1000)' d='M169.507 126.891c-.181 5.493-1.281 10.883-2.665 16.189-1.178 4.525-2.517 9.044-4.423 13.317-3.617 8.12-9.411 15.505-18.133 18.3-4.338 1.394-9.153 1.549-13.37-.349-.714-.323-1.557-.207-1.982.523-.361.62-.2 1.665.521 1.988 8.664 3.899 18.668.962 25.626-5.022 7.583-6.519 11.387-16.434 13.982-25.839 1.718-6.236 3.128-12.62 3.34-19.107.058-1.872-2.838-1.865-2.896 0ZM48.1483 96.8371c-9.1471 12.5809-15.391 27.2919-18.1397 42.6159-.7724 4.318-1.2809 8.682-1.5062 13.058-.0966 1.866 2.8001 1.866 2.8967 0 .7917-15.137 5.0595-30.054 12.3463-43.332 2.0663-3.77 4.3772-7.404 6.907-10.8831.4634-.6326.1094-1.6202-.5214-1.9881-.7339-.4325-1.5192-.1162-1.9827.5228v.0065ZM37.5591 180.532c-.0901-14.408 4.8085-28.615 13.4729-40.073 2.1371-2.827 4.5381-5.461 7.1129-7.881 2.2144-2.079 5.1626-5.255 8.4777-3.692 2.9868 1.4 4.7055 4.783 5.8642 7.707 1.4676 3.711 2.4654 7.597 3.1091 11.541 1.4676 8.999 1.0686 18.21.5858 27.279-.0966 1.866 2.8001 1.866 2.8967 0 .457-8.617.7788-17.293-.3734-25.878-.5665-4.209-1.4741-8.379-2.9225-12.374-1.2938-3.57-2.9417-7.256-5.9929-9.67-1.3968-1.104-3.019-1.859-4.8149-1.936-2.0084-.084-3.8623.807-5.4265 1.994-3.0898 2.356-5.8706 5.21-8.3875 8.159-4.9888 5.855-8.9476 12.51-11.767 19.669-3.1477 7.985-4.7827 16.57-4.7312 25.155.0128 1.865 2.9095 1.872 2.8966 0Z'/><path fill='var(--dt-color-black-1000)' d='M87.9489 182.933c-1.0493-7.888.2317-15.802 3.0254-23.206 1.3968-3.692 3.167-7.236 5.1883-10.618 2.0212-3.382 4.1714-6.597 6.6944-9.528 2.208-2.569 5.073-5.331 8.581-5.803 2.993-.4 5.607 1.22 7.383 3.518 2.06 2.673 3.18 5.945 4.133 9.134 1.261 4.209 2.311 8.476 3.147 12.787 1.887 9.702 2.665 19.598 2.363 29.48-.058 1.872 2.839 1.866 2.897 0 .283-9.321-.406-18.655-2.022-27.84-.811-4.628-1.873-9.211-3.167-13.723-1.017-3.557-2.143-7.178-4.164-10.302-1.829-2.834-4.487-5.281-7.912-5.849-4.036-.664-7.711 1.227-10.66 3.848-2.948 2.62-5.4581 6.151-7.7047 9.521-2.2465 3.369-4.3965 7.203-6.1024 11.063-3.7979 8.618-5.8449 18.1-4.5832 27.525.103.774.5922 1.452 1.4484 1.452.7016 0 1.5513-.671 1.4483-1.452l.0065-.007ZM146.346 112.458c.972-5.564-.071-11.142-1.937-16.4088-1.867-5.2672-4.043-9.9794-6.856-14.4979-2.813-4.5184-6.096-8.2946-10.325-11.2316-3.663-2.5433-8.272-4.6412-12.816-4.1248-4.976.5616-9.695 2.737-14.104 5.0091-1.6608.8521-.193 3.3631 1.461 2.511 3.592-1.8461 7.345-3.5696 11.323-4.3829 1.77-.3615 3.54-.4583 5.298.0064 2.15.5681 4.171 1.4718 6.07 2.6401 8.207 5.0413 12.996 14.1816 16.421 22.8958 2.079 5.2996 3.676 11.0966 2.678 16.8216-.135.775.206 1.562 1.01 1.788.702.194 1.648-.239 1.783-1.013l-.006-.013Z'/><path fill='var(--dt-color-black-1000)' d='M111.438 70.9007c-4.158-.1097-8.317-.0387-12.43.6068-2.6714.4131-5.4587 1.0651-8.0142 1.9817-1.0171.3615-2.1114.8133-2.8581 1.6266-.869.9554-.9527 2.2851-.1931 3.3373.5343.7423 1.3582 1.1425 2.1629 1.5362.9462.4648 1.9247.8715 2.916 1.2394 1.7702.6519 3.5983 1.149 5.4522 1.5105 4.5763.8972 9.2243.9618 13.8723.9682 1.866 0 1.866-2.8983 0-2.9047-6.946-.0194-14.1169-.1679-20.5282-3.2017-.367-.1743-.7339-.355-1.0879-.5487-.058-.0322-.4249-.3485-.4828-.355.103.0194-.0193.2905.0257.0194-.0064.0516 0 .2904 0 .3679 0-.2001-.0257-.0194-.0386.0646.0515-.2582-.1287.1484.0386-.0581 0 0 .2833-.2518.1352-.1291-.1351.1097.0902-.0581.1223-.0775a6.1654 6.1654 0 0 1 .5729-.3163c.2962-.1485.6759-.284 1.1265-.426 2.2595-.7359 4.6283-1.3297 6.965-1.73 4.0423-.6906 8.1683-.71 12.2563-.6003 1.867.0517 1.86-2.8531 0-2.9047l-.013-.0065Z'/><path fill='var(--dt-color-black-1000)' d='M99.4454 80.2021c-1.841.6649-3.9009 2.2141-4.4609 4.1893-.6437 2.2851.457 4.7896 2.4461 5.9773 1.989 1.1878 4.4994 1.8268 6.7714 2.1495 2.781.3938 5.581.3551 8.375.1872 2.794-.1678 5.948-.2646 8.587-1.6718 1.648-.8779.187-3.3824-1.461-2.511-2.234 1.1877-4.97 1.1554-7.435 1.2975-2.864.1613-5.8.2388-8.632-.3292-1.242-.2518-2.433-.6455-3.618-1.0974-.7336-.284-1.6476-.6519-2.0145-1.4007-.367-.7488-.4313-1.6912.0708-2.3625.5021-.6714 1.3582-1.3362 2.1367-1.6202.734-.2647 1.23-.9877 1.011-1.7881-.193-.71-1.043-1.2845-1.7831-1.0134l.0065-.0065Z'/><path fill='var(--dt-color-black-1000)' d='M103.565 89.5428c-1.391-.2001-2.736 0-4.0941.3163-1.0235.2453-2.0341.6907-2.7422 1.4976-1.6994 1.9429-1.6543 5.306-.0708 7.2877 1.6736 2.0916 4.7631 1.8526 7.1711 2.0266 2.961.213 5.922.258 8.877-.084 3.289-.381 6.514-1.1164 9.623-2.2718.734-.2711 1.229-.9812 1.011-1.7881-.194-.71-1.043-1.291-1.783-1.0134-5.794 2.156-11.755 2.6917-17.889 2.2399a140.253 140.253 0 0 1-2.369-.1937c-.534-.0452-1.107-.0452-1.6221-.2194-.8819-.3034-1.2553-1.1619-1.3067-2.0592-.0515-.8972.1866-2.0139 1.12-2.4012.9338-.3873 2.3048-.6714 3.2958-.5293.772.1097 1.558-.1872 1.783-1.0135.187-.6777-.232-1.6783-1.011-1.788l.007-.0065Z'/><path fill='var(--dt-color-black-1000)' d='M104.054 97.8954c-2.189.1226-3.972 2.3236-3.894 4.4926.09 2.53 2.13 4.254 4.325 5.08 2.356.884 5.06 1.162 7.558 1.272 2.671.116 5.329-.116 7.962-.549.773-.129 1.204-1.091 1.011-1.788-.225-.82-1.004-1.142-1.783-1.013-3.779.626-7.718.69-11.484-.058-1.5-.297-3.386-.633-4.319-1.989-.335-.484-.502-1.058-.258-1.613.135-.31.522-.917.882-.936 1.854-.104 1.867-3.0084 0-2.9051v.0065ZM83.9643 90.2334c.5601 1.7622.1288 3.518-.5149 5.2027-.6051 1.5879-1.4226 3.1307-2.3174 4.5769-1.6607 2.666-3.9202 5.144-6.907 6.3-.7274.284-1.2359.974-1.0106 1.788.1931.697 1.0492 1.297 1.7831 1.013 3.7335-1.446 6.54-4.273 8.6385-7.636 2.0985-3.3631 4.4288-7.9396 3.1285-12.0127-.5665-1.7752-3.3602-1.0135-2.7937.7746l-.0065-.0065Z'/><path fill='var(--dt-color-black-1000)' d='M83.8803 97.3727c5.42 6.8163-1.0943 14.7363-7.0036 18.4483-1.5771.988-.1223 3.505 1.4613 2.511 3.7657-2.363 7.3061-5.693 9.1857-9.792.9269-2.021 1.5063-4.26 1.2874-6.5-.2446-2.5436-1.3003-4.7383-2.8774-6.72-.4892-.6132-1.5384-.5099-2.047 0-.6051.6068-.4892 1.4395 0 2.0527h-.0064Z'/><path fill='var(--dt-color-black-1000)' d='M85.5669 109.004c1.6994 3.589.4635 7.72-1.5191 10.909-.9849 1.588-2.1565 3.099-3.4954 4.403-1.1973 1.168-2.6392 2.188-4.3643 2.22-1.8604.039-1.8668 2.944 0 2.905 4.654-.091 8.1043-4.435 10.3637-8.062 2.5813-4.151 3.6756-9.276 1.5191-13.846-.3347-.71-1.3453-.891-1.9826-.523-.721.426-.8561 1.278-.5214 1.988v.006ZM55.8084 116.692c-2.1178.994-4.3901 1.13-6.1216-.465-.412-.38-.8175-.761-1.1909-1.174-.1609-.181-.3283-.362-.4763-.556.1802.239-.0322-.058-.0708-.109-.0709-.104-.1352-.207-.1996-.31-.3991-.678-.6501-1.698-.7338-2.589-.0708-.781-.6115-1.452-1.4483-1.452-.7274 0-1.5192.665-1.4484 1.452.1352 1.421.3926 2.815 1.1329 4.054.6759 1.136 1.6544 2.105 2.6392 2.969 2.7101 2.382 6.2826 2.137 9.3789.685.7081-.336.8883-1.356.5214-1.988-.4249-.73-1.2681-.852-1.9827-.523v.006ZM49.4422 97.5984c2.1693 1.5428 4.6412 2.6726 7.2675 3.1246 2.5748.445 5.1497.316 7.7245-.097 5.626-.9039 10.9431-3.0082 15.7709-6.0162 2.7872-1.7364 5.4071-3.7245 7.9433-5.8095.6051-.497.515-1.5363 0-2.0527-.5986-.6003-1.4419-.497-2.047 0-4.0618 3.3502-8.4518 6.4292-13.3119 8.5077-2.4332 1.0392-4.9952 1.7557-7.5829 2.2915-2.2787.4648-4.6024.7165-6.9262.4841-2.7036-.2646-5.1819-1.3749-7.377-2.937-.6372-.4518-1.6092-.1162-1.9826.5229-.4248.7294-.1223 1.5298.5214 1.9881v-.0065Z'/><path fill='var(--dt-color-black-1000)' d='M51.6694 95.6685c-.0837-4.6089-.1738-9.2242-.2575-13.8331-.0386-2.1817-.1287-4.3635-.1158-6.5453 0-.6584.0193-1.3685.2639-1.9881.2575-.6584.7402-.8263 1.4161-.9102 2.2144-.2776 4.4674-.3679 6.6882-.5487 2.3495-.1936 4.7055-.3808 7.055-.5745 2.3496-.1936 4.4867-.3679 6.7332-.5486 2.2465-.1808 4.4545-.51 6.6624-.5358 1.9247-.0194 2.2337 3.2533 2.4461 4.654.354 2.4077.5922 4.8413.766 7.2683.1287 1.8526 3.0319 1.8655 2.8967 0-.1738-2.498-.4442-4.9897-.7853-7.4684-.2962-2.1366-.7017-4.3829-2.1758-6.0483-1.68-1.9042-4.3772-1.2264-6.6044-1.0392-2.562.2065-5.1304.4195-7.6923.6261-5.021.4067-10.0483.8198-15.0693 1.2265-1.0943.0903-2.2723.1097-3.2443.6777-.8754.51-1.4547 1.3104-1.8152 2.2464-.7403 1.9364-.4249 4.2667-.3862 6.2871.103 5.6804.2124 11.3672.3154 17.0476.0322 1.8655 2.9289 1.8719 2.8967 0l.0064.0065Z'/><path fill='var(--dt-color-black-1000)' d='M57.0894 74.8448c-.7017-.1227-1.3454-.1808-2.0535-.0581-.7402.1291-1.429.6003-1.8023 1.2651-.3734.6649-.412 1.4976-.3219 2.2464.0901.7488.2703 1.5104.7081 2.1495.4763.6842 1.1265 1.2006 1.9311 1.4459.8046.2453 1.5835.1291 2.2852-.2453 1.0943-.5809 1.6221-1.8397 1.8538-2.9951.1674-.8391.2897-1.7041-.1544-2.4852-.2704-.4712-.7661-.8262-1.2939-.9488-.354-.084-.7145-.0711-1.0685-.1162l.3862.0516a1.4264 1.4264 0 0 1-.2382-.0581l.3476.1485c-.045-.0194-.0837-.0452-.1223-.071l.2961.2259s-.0451-.0387-.0708-.0646l.2253.297-.0322-.0388c-.2382-.3163-.4699-.5551-.8625-.6648-.3477-.0968-.8111-.0517-1.1137.1484-.3025.2001-.5793.4971-.663.865s-.0837.8198.148 1.1167c.3348.439.7082.7875 1.2682.8973.3411.0645.6758.0645 1.017.1032l-.3862-.0516a1.196 1.196 0 0 1 .2511.0646l-.3477-.1485a.8262.8262 0 0 1 .1288.071l-.2961-.2259c.0451.0387.0837.071.1159.1162l-.2254-.297a1.025 1.025 0 0 1 .0837.142l-.148-.3485c.0257.071.0451.142.0579.2194l-.0515-.3873c.0193.1808.0129.3551-.0064.5358l.0515-.3873c-.0773.5358-.1867 1.0715-.3991 1.575l.148-.3485c-.0901.2065-.1931.4002-.3283.5809l.2253-.2969c-.0965.1291-.2059.2388-.3347.3421l.2961-.2259c-.103.0774-.206.1355-.3219.1936l.3477-.1485a2.0299 2.0299 0 0 1-.3991.1162l.3862-.0516a2.4079 2.4079 0 0 1-.4313 0l.3862.0516a1.838 1.838 0 0 1-.4184-.1226l.3476.1485a2.6702 2.6702 0 0 1-.4377-.2518l.2961.2259c-.1545-.1162-.2832-.2517-.4055-.4066l.2253.2969c-.1223-.1678-.2253-.3421-.309-.5358l.148.3486c-.1223-.3034-.1995-.6132-.2446-.936l.0515.3873c-.045-.3485-.0579-.7036-.0193-1.0521l-.0515.3873c.0193-.142.058-.2711.1095-.4002l-.1481.3485c.0386-.0774.0772-.1484.1287-.213l-.2253.2969c.058-.071.1159-.1291.1867-.1872l-.2961.226a1.053 1.053 0 0 1 .2768-.1549l-.3476.1484c.1416-.0516.2768-.0903.4249-.1097l-.3863.0516c.3154-.0387.6244-.0193.9398.0194l-.3862-.0516c.0966.0129.1931.0258.2833.0451.3926.071.7595.0646 1.1136-.1484.3025-.1743.5857-.5229.663-.865.0836-.3744.0643-.7875-.1481-1.1167-.1931-.3034-.502-.6068-.8625-.6649l.0193-.0193ZM102.677 29.4982c-.277 2.2205-1.03 4.9252-1.97 7.0101-.283.6326-.7275 1.2781-.7597 1.9882-.0386.9037.5277 1.6653 1.4157 1.859.676.1485 1.462 0 2.144-.0323.721-.0387 1.448-.071 2.169-.1097.721-.0387 1.487-.6391 1.449-1.4524-.033-.7552-.638-1.4911-1.449-1.4524-.663.0323-1.326.071-1.989.1033-.302.0129-.605.0323-.901.0452-.18.0065-.36.0194-.541.0258h-.18c-.386 0-.257.0969.393.297l.373.639c.064.1614-.167.6778.013.3357.09-.1808.174-.3615.257-.5423.213-.4518.406-.9101.593-1.3684.302-.7423.579-1.4976.817-2.2593.515-1.6589.843-3.3565 1.062-5.08.097-.7553-.734-1.4847-1.448-1.4524-.869.0387-1.345.639-1.448 1.4524v-.0065Z'/></svg>\n\n</template>\n\n<script>\nexport default {\n name: 'DtIllustrationMobileFullNotifications',\n\n props: {\n /**\n * The label of the illustration as read out by a screenreader. Leave this unset if your illustration is purely presentational\n */\n ariaLabel: {\n type: String,\n default: undefined,\n },\n },\n\n /**\n * @TODO: Remove this emit once the illustrations migration is complete,\n * they will no longer need this event.\n * */\n emits: ['loaded'],\n\n computed: {\n ariaHidden () {\n return !this.ariaLabel ? 'true' : 'false';\n },\n\n dataQA () {\n return this.$attrs['data-qa'] ?? 'dt-illustration';\n },\n },\n\n created () {\n this.$emit('loaded');\n },\n};\n</script>\n"],"names":["_sfc_main","_hoisted_1","_hoisted_2","_createStaticVNode","_createElementBlock","$props","$options","_hoisted_13"],"mappings":"8FAWKA,EAAU,CACb,KAAM,wCAEN,MAAO,CAIL,UAAW,CACT,KAAM,OACN,QAAS,MACV,CACF,EAMD,MAAO,CAAC,QAAQ,EAEhB,SAAU,CACR,YAAc,CACZ,OAAQ,KAAK,UAAqB,QAAT,MAC1B,EAED,QAAU,CACR,OAAO,KAAK,OAAO,SAAS,GAAK,iBAClC,CACF,EAED,SAAW,CACT,KAAK,MAAM,QAAQ,CACpB,CACH,EA3CAC,EAAA,CAAA,aAAA,UAAA,aAAA,EAAAC,EAAAC,EAAAA,kBAAA,knXAAA,EAAA,KAMqKD,gDALnKE,EAKstX,mBAAA,MAAA,CALhtX,aAAYC,EAAS,UAAG,UAASC,EAAM,OACxC,cAAaA,EAAU,WACxB,UAAU,QACV,KAAK,MACL,YAAU,4BACV,MAAM,2DAA2D,MAAM,6BAA6B,MAAM,MAAM,OAAO,MAAM,QAAQ,cAAc,KAAK,QAN9JC,EAAA,EAAAN,CAAA"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { openBlock as t, createElementBlock as c, createStaticVNode as i } from "vue";
|
|
2
|
+
import { _ as o } from "../../_plugin-vue_export-helper-CHgC5LLL.js";
|
|
3
|
+
const r = {
|
|
4
|
+
name: "DtIllustrationMobileFullNotifications",
|
|
5
|
+
props: {
|
|
6
|
+
/**
|
|
7
|
+
* The label of the illustration as read out by a screenreader. Leave this unset if your illustration is purely presentational
|
|
8
|
+
*/
|
|
9
|
+
ariaLabel: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: void 0
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
/**
|
|
15
|
+
* @TODO: Remove this emit once the illustrations migration is complete,
|
|
16
|
+
* they will no longer need this event.
|
|
17
|
+
* */
|
|
18
|
+
emits: ["loaded"],
|
|
19
|
+
computed: {
|
|
20
|
+
ariaHidden() {
|
|
21
|
+
return this.ariaLabel ? "false" : "true";
|
|
22
|
+
},
|
|
23
|
+
dataQA() {
|
|
24
|
+
return this.$attrs["data-qa"] ?? "dt-illustration";
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
created() {
|
|
28
|
+
this.$emit("loaded");
|
|
29
|
+
}
|
|
30
|
+
}, d = ["aria-label", "data-qa", "aria-hidden"], e = /* @__PURE__ */ i('<path fill="var(--dt-color-black-1000)" d="M67.6781 70.6295c5.7483-4.4088 10.6534-9.7148 14.9469-15.5372 3.9781-5.3963 7.5958-11.1606 10.4088-17.2541 2.5491-5.519 4.7248-11.322 8.3422-16.2601 3.154-4.3055 7.911-8.0945 13.525-7.4361 5.169.6067 9.604 4.4474 12.867 8.2817 1.764 2.072 3.296 4.3442 4.616 6.7261 1.377 2.5045 2.349 5.0865 3.225 7.8041 2.291 7.0875 4.094 14.3752 7.595 20.998 3.528 6.668 8.497 12.4904 12.533 18.8421 4.037 6.3517 7.068 13.6135 9.309 20.9593 2.259 7.3977 3.72 15.0397 4.293 22.7537.142 1.924.225 3.854.264 5.784.039 1.93 2.935 1.872 2.897 0-.155-8.043-1.217-16.073-3.161-23.877-1.944-7.8043-4.532-15.2404-8.22-22.1731-3.689-6.9326-8.503-12.826-12.72-19.2616-2.092-3.1888-3.856-6.526-5.233-10.0827-1.378-3.5567-2.408-7.0553-3.489-10.6184-.991-3.2533-1.944-6.5518-3.334-9.6631-1.133-2.5368-2.55-4.951-4.165-7.2102-3.335-4.6605-7.602-8.9596-12.997-11.1155-2.542-1.0199-5.304-1.362-8.014-.9231-3 .4906-5.671 2.0462-7.969 3.9827-4.7377 4.0021-7.6023 9.7341-10.1063 15.2919-1.281 2.8337-2.4911 5.7062-3.8944 8.4883-1.5449 3.0725-3.3666 6.0096-5.2269 8.8949-3.9073 6.0484-8.3618 11.761-13.6724 16.6474-1.3132 1.2071-2.6714 2.3625-4.0811 3.447-.618.4777-.9463 1.2523-.5214 1.9881.354.6132 1.3582 1.0005 1.9826.5229Z"></path><path fill="var(--dt-color-black-1000)" d="M169.507 126.891c-.181 5.493-1.281 10.883-2.665 16.189-1.178 4.525-2.517 9.044-4.423 13.317-3.617 8.12-9.411 15.505-18.133 18.3-4.338 1.394-9.153 1.549-13.37-.349-.714-.323-1.557-.207-1.982.523-.361.62-.2 1.665.521 1.988 8.664 3.899 18.668.962 25.626-5.022 7.583-6.519 11.387-16.434 13.982-25.839 1.718-6.236 3.128-12.62 3.34-19.107.058-1.872-2.838-1.865-2.896 0ZM48.1483 96.8371c-9.1471 12.5809-15.391 27.2919-18.1397 42.6159-.7724 4.318-1.2809 8.682-1.5062 13.058-.0966 1.866 2.8001 1.866 2.8967 0 .7917-15.137 5.0595-30.054 12.3463-43.332 2.0663-3.77 4.3772-7.404 6.907-10.8831.4634-.6326.1094-1.6202-.5214-1.9881-.7339-.4325-1.5192-.1162-1.9827.5228v.0065ZM37.5591 180.532c-.0901-14.408 4.8085-28.615 13.4729-40.073 2.1371-2.827 4.5381-5.461 7.1129-7.881 2.2144-2.079 5.1626-5.255 8.4777-3.692 2.9868 1.4 4.7055 4.783 5.8642 7.707 1.4676 3.711 2.4654 7.597 3.1091 11.541 1.4676 8.999 1.0686 18.21.5858 27.279-.0966 1.866 2.8001 1.866 2.8967 0 .457-8.617.7788-17.293-.3734-25.878-.5665-4.209-1.4741-8.379-2.9225-12.374-1.2938-3.57-2.9417-7.256-5.9929-9.67-1.3968-1.104-3.019-1.859-4.8149-1.936-2.0084-.084-3.8623.807-5.4265 1.994-3.0898 2.356-5.8706 5.21-8.3875 8.159-4.9888 5.855-8.9476 12.51-11.767 19.669-3.1477 7.985-4.7827 16.57-4.7312 25.155.0128 1.865 2.9095 1.872 2.8966 0Z"></path><path fill="var(--dt-color-black-1000)" d="M87.9489 182.933c-1.0493-7.888.2317-15.802 3.0254-23.206 1.3968-3.692 3.167-7.236 5.1883-10.618 2.0212-3.382 4.1714-6.597 6.6944-9.528 2.208-2.569 5.073-5.331 8.581-5.803 2.993-.4 5.607 1.22 7.383 3.518 2.06 2.673 3.18 5.945 4.133 9.134 1.261 4.209 2.311 8.476 3.147 12.787 1.887 9.702 2.665 19.598 2.363 29.48-.058 1.872 2.839 1.866 2.897 0 .283-9.321-.406-18.655-2.022-27.84-.811-4.628-1.873-9.211-3.167-13.723-1.017-3.557-2.143-7.178-4.164-10.302-1.829-2.834-4.487-5.281-7.912-5.849-4.036-.664-7.711 1.227-10.66 3.848-2.948 2.62-5.4581 6.151-7.7047 9.521-2.2465 3.369-4.3965 7.203-6.1024 11.063-3.7979 8.618-5.8449 18.1-4.5832 27.525.103.774.5922 1.452 1.4484 1.452.7016 0 1.5513-.671 1.4483-1.452l.0065-.007ZM146.346 112.458c.972-5.564-.071-11.142-1.937-16.4088-1.867-5.2672-4.043-9.9794-6.856-14.4979-2.813-4.5184-6.096-8.2946-10.325-11.2316-3.663-2.5433-8.272-4.6412-12.816-4.1248-4.976.5616-9.695 2.737-14.104 5.0091-1.6608.8521-.193 3.3631 1.461 2.511 3.592-1.8461 7.345-3.5696 11.323-4.3829 1.77-.3615 3.54-.4583 5.298.0064 2.15.5681 4.171 1.4718 6.07 2.6401 8.207 5.0413 12.996 14.1816 16.421 22.8958 2.079 5.2996 3.676 11.0966 2.678 16.8216-.135.775.206 1.562 1.01 1.788.702.194 1.648-.239 1.783-1.013l-.006-.013Z"></path><path fill="var(--dt-color-black-1000)" d="M111.438 70.9007c-4.158-.1097-8.317-.0387-12.43.6068-2.6714.4131-5.4587 1.0651-8.0142 1.9817-1.0171.3615-2.1114.8133-2.8581 1.6266-.869.9554-.9527 2.2851-.1931 3.3373.5343.7423 1.3582 1.1425 2.1629 1.5362.9462.4648 1.9247.8715 2.916 1.2394 1.7702.6519 3.5983 1.149 5.4522 1.5105 4.5763.8972 9.2243.9618 13.8723.9682 1.866 0 1.866-2.8983 0-2.9047-6.946-.0194-14.1169-.1679-20.5282-3.2017-.367-.1743-.7339-.355-1.0879-.5487-.058-.0322-.4249-.3485-.4828-.355.103.0194-.0193.2905.0257.0194-.0064.0516 0 .2904 0 .3679 0-.2001-.0257-.0194-.0386.0646.0515-.2582-.1287.1484.0386-.0581 0 0 .2833-.2518.1352-.1291-.1351.1097.0902-.0581.1223-.0775a6.1654 6.1654 0 0 1 .5729-.3163c.2962-.1485.6759-.284 1.1265-.426 2.2595-.7359 4.6283-1.3297 6.965-1.73 4.0423-.6906 8.1683-.71 12.2563-.6003 1.867.0517 1.86-2.8531 0-2.9047l-.013-.0065Z"></path><path fill="var(--dt-color-black-1000)" d="M99.4454 80.2021c-1.841.6649-3.9009 2.2141-4.4609 4.1893-.6437 2.2851.457 4.7896 2.4461 5.9773 1.989 1.1878 4.4994 1.8268 6.7714 2.1495 2.781.3938 5.581.3551 8.375.1872 2.794-.1678 5.948-.2646 8.587-1.6718 1.648-.8779.187-3.3824-1.461-2.511-2.234 1.1877-4.97 1.1554-7.435 1.2975-2.864.1613-5.8.2388-8.632-.3292-1.242-.2518-2.433-.6455-3.618-1.0974-.7336-.284-1.6476-.6519-2.0145-1.4007-.367-.7488-.4313-1.6912.0708-2.3625.5021-.6714 1.3582-1.3362 2.1367-1.6202.734-.2647 1.23-.9877 1.011-1.7881-.193-.71-1.043-1.2845-1.7831-1.0134l.0065-.0065Z"></path><path fill="var(--dt-color-black-1000)" d="M103.565 89.5428c-1.391-.2001-2.736 0-4.0941.3163-1.0235.2453-2.0341.6907-2.7422 1.4976-1.6994 1.9429-1.6543 5.306-.0708 7.2877 1.6736 2.0916 4.7631 1.8526 7.1711 2.0266 2.961.213 5.922.258 8.877-.084 3.289-.381 6.514-1.1164 9.623-2.2718.734-.2711 1.229-.9812 1.011-1.7881-.194-.71-1.043-1.291-1.783-1.0134-5.794 2.156-11.755 2.6917-17.889 2.2399a140.253 140.253 0 0 1-2.369-.1937c-.534-.0452-1.107-.0452-1.6221-.2194-.8819-.3034-1.2553-1.1619-1.3067-2.0592-.0515-.8972.1866-2.0139 1.12-2.4012.9338-.3873 2.3048-.6714 3.2958-.5293.772.1097 1.558-.1872 1.783-1.0135.187-.6777-.232-1.6783-1.011-1.788l.007-.0065Z"></path><path fill="var(--dt-color-black-1000)" d="M104.054 97.8954c-2.189.1226-3.972 2.3236-3.894 4.4926.09 2.53 2.13 4.254 4.325 5.08 2.356.884 5.06 1.162 7.558 1.272 2.671.116 5.329-.116 7.962-.549.773-.129 1.204-1.091 1.011-1.788-.225-.82-1.004-1.142-1.783-1.013-3.779.626-7.718.69-11.484-.058-1.5-.297-3.386-.633-4.319-1.989-.335-.484-.502-1.058-.258-1.613.135-.31.522-.917.882-.936 1.854-.104 1.867-3.0084 0-2.9051v.0065ZM83.9643 90.2334c.5601 1.7622.1288 3.518-.5149 5.2027-.6051 1.5879-1.4226 3.1307-2.3174 4.5769-1.6607 2.666-3.9202 5.144-6.907 6.3-.7274.284-1.2359.974-1.0106 1.788.1931.697 1.0492 1.297 1.7831 1.013 3.7335-1.446 6.54-4.273 8.6385-7.636 2.0985-3.3631 4.4288-7.9396 3.1285-12.0127-.5665-1.7752-3.3602-1.0135-2.7937.7746l-.0065-.0065Z"></path><path fill="var(--dt-color-black-1000)" d="M83.8803 97.3727c5.42 6.8163-1.0943 14.7363-7.0036 18.4483-1.5771.988-.1223 3.505 1.4613 2.511 3.7657-2.363 7.3061-5.693 9.1857-9.792.9269-2.021 1.5063-4.26 1.2874-6.5-.2446-2.5436-1.3003-4.7383-2.8774-6.72-.4892-.6132-1.5384-.5099-2.047 0-.6051.6068-.4892 1.4395 0 2.0527h-.0064Z"></path><path fill="var(--dt-color-black-1000)" d="M85.5669 109.004c1.6994 3.589.4635 7.72-1.5191 10.909-.9849 1.588-2.1565 3.099-3.4954 4.403-1.1973 1.168-2.6392 2.188-4.3643 2.22-1.8604.039-1.8668 2.944 0 2.905 4.654-.091 8.1043-4.435 10.3637-8.062 2.5813-4.151 3.6756-9.276 1.5191-13.846-.3347-.71-1.3453-.891-1.9826-.523-.721.426-.8561 1.278-.5214 1.988v.006ZM55.8084 116.692c-2.1178.994-4.3901 1.13-6.1216-.465-.412-.38-.8175-.761-1.1909-1.174-.1609-.181-.3283-.362-.4763-.556.1802.239-.0322-.058-.0708-.109-.0709-.104-.1352-.207-.1996-.31-.3991-.678-.6501-1.698-.7338-2.589-.0708-.781-.6115-1.452-1.4483-1.452-.7274 0-1.5192.665-1.4484 1.452.1352 1.421.3926 2.815 1.1329 4.054.6759 1.136 1.6544 2.105 2.6392 2.969 2.7101 2.382 6.2826 2.137 9.3789.685.7081-.336.8883-1.356.5214-1.988-.4249-.73-1.2681-.852-1.9827-.523v.006ZM49.4422 97.5984c2.1693 1.5428 4.6412 2.6726 7.2675 3.1246 2.5748.445 5.1497.316 7.7245-.097 5.626-.9039 10.9431-3.0082 15.7709-6.0162 2.7872-1.7364 5.4071-3.7245 7.9433-5.8095.6051-.497.515-1.5363 0-2.0527-.5986-.6003-1.4419-.497-2.047 0-4.0618 3.3502-8.4518 6.4292-13.3119 8.5077-2.4332 1.0392-4.9952 1.7557-7.5829 2.2915-2.2787.4648-4.6024.7165-6.9262.4841-2.7036-.2646-5.1819-1.3749-7.377-2.937-.6372-.4518-1.6092-.1162-1.9826.5229-.4248.7294-.1223 1.5298.5214 1.9881v-.0065Z"></path><path fill="var(--dt-color-black-1000)" d="M51.6694 95.6685c-.0837-4.6089-.1738-9.2242-.2575-13.8331-.0386-2.1817-.1287-4.3635-.1158-6.5453 0-.6584.0193-1.3685.2639-1.9881.2575-.6584.7402-.8263 1.4161-.9102 2.2144-.2776 4.4674-.3679 6.6882-.5487 2.3495-.1936 4.7055-.3808 7.055-.5745 2.3496-.1936 4.4867-.3679 6.7332-.5486 2.2465-.1808 4.4545-.51 6.6624-.5358 1.9247-.0194 2.2337 3.2533 2.4461 4.654.354 2.4077.5922 4.8413.766 7.2683.1287 1.8526 3.0319 1.8655 2.8967 0-.1738-2.498-.4442-4.9897-.7853-7.4684-.2962-2.1366-.7017-4.3829-2.1758-6.0483-1.68-1.9042-4.3772-1.2264-6.6044-1.0392-2.562.2065-5.1304.4195-7.6923.6261-5.021.4067-10.0483.8198-15.0693 1.2265-1.0943.0903-2.2723.1097-3.2443.6777-.8754.51-1.4547 1.3104-1.8152 2.2464-.7403 1.9364-.4249 4.2667-.3862 6.2871.103 5.6804.2124 11.3672.3154 17.0476.0322 1.8655 2.9289 1.8719 2.8967 0l.0064.0065Z"></path><path fill="var(--dt-color-black-1000)" d="M57.0894 74.8448c-.7017-.1227-1.3454-.1808-2.0535-.0581-.7402.1291-1.429.6003-1.8023 1.2651-.3734.6649-.412 1.4976-.3219 2.2464.0901.7488.2703 1.5104.7081 2.1495.4763.6842 1.1265 1.2006 1.9311 1.4459.8046.2453 1.5835.1291 2.2852-.2453 1.0943-.5809 1.6221-1.8397 1.8538-2.9951.1674-.8391.2897-1.7041-.1544-2.4852-.2704-.4712-.7661-.8262-1.2939-.9488-.354-.084-.7145-.0711-1.0685-.1162l.3862.0516a1.4264 1.4264 0 0 1-.2382-.0581l.3476.1485c-.045-.0194-.0837-.0452-.1223-.071l.2961.2259s-.0451-.0387-.0708-.0646l.2253.297-.0322-.0388c-.2382-.3163-.4699-.5551-.8625-.6648-.3477-.0968-.8111-.0517-1.1137.1484-.3025.2001-.5793.4971-.663.865s-.0837.8198.148 1.1167c.3348.439.7082.7875 1.2682.8973.3411.0645.6758.0645 1.017.1032l-.3862-.0516a1.196 1.196 0 0 1 .2511.0646l-.3477-.1485a.8262.8262 0 0 1 .1288.071l-.2961-.2259c.0451.0387.0837.071.1159.1162l-.2254-.297a1.025 1.025 0 0 1 .0837.142l-.148-.3485c.0257.071.0451.142.0579.2194l-.0515-.3873c.0193.1808.0129.3551-.0064.5358l.0515-.3873c-.0773.5358-.1867 1.0715-.3991 1.575l.148-.3485c-.0901.2065-.1931.4002-.3283.5809l.2253-.2969c-.0965.1291-.2059.2388-.3347.3421l.2961-.2259c-.103.0774-.206.1355-.3219.1936l.3477-.1485a2.0299 2.0299 0 0 1-.3991.1162l.3862-.0516a2.4079 2.4079 0 0 1-.4313 0l.3862.0516a1.838 1.838 0 0 1-.4184-.1226l.3476.1485a2.6702 2.6702 0 0 1-.4377-.2518l.2961.2259c-.1545-.1162-.2832-.2517-.4055-.4066l.2253.2969c-.1223-.1678-.2253-.3421-.309-.5358l.148.3486c-.1223-.3034-.1995-.6132-.2446-.936l.0515.3873c-.045-.3485-.0579-.7036-.0193-1.0521l-.0515.3873c.0193-.142.058-.2711.1095-.4002l-.1481.3485c.0386-.0774.0772-.1484.1287-.213l-.2253.2969c.058-.071.1159-.1291.1867-.1872l-.2961.226a1.053 1.053 0 0 1 .2768-.1549l-.3476.1484c.1416-.0516.2768-.0903.4249-.1097l-.3863.0516c.3154-.0387.6244-.0193.9398.0194l-.3862-.0516c.0966.0129.1931.0258.2833.0451.3926.071.7595.0646 1.1136-.1484.3025-.1743.5857-.5229.663-.865.0836-.3744.0643-.7875-.1481-1.1167-.1931-.3034-.502-.6068-.8625-.6649l.0193-.0193ZM102.677 29.4982c-.277 2.2205-1.03 4.9252-1.97 7.0101-.283.6326-.7275 1.2781-.7597 1.9882-.0386.9037.5277 1.6653 1.4157 1.859.676.1485 1.462 0 2.144-.0323.721-.0387 1.448-.071 2.169-.1097.721-.0387 1.487-.6391 1.449-1.4524-.033-.7552-.638-1.4911-1.449-1.4524-.663.0323-1.326.071-1.989.1033-.302.0129-.605.0323-.901.0452-.18.0065-.36.0194-.541.0258h-.18c-.386 0-.257.0969.393.297l.373.639c.064.1614-.167.6778.013.3357.09-.1808.174-.3615.257-.5423.213-.4518.406-.9101.593-1.3684.302-.7423.579-1.4976.817-2.2593.515-1.6589.843-3.3565 1.062-5.08.097-.7553-.734-1.4847-1.448-1.4524-.869.0387-1.345.639-1.448 1.4524v-.0065Z"></path>', 11), h = [
|
|
31
|
+
e
|
|
32
|
+
];
|
|
33
|
+
function s(n, p, a, f, b, l) {
|
|
34
|
+
return t(), c("svg", {
|
|
35
|
+
"aria-label": a.ariaLabel,
|
|
36
|
+
"data-qa": l.dataQA,
|
|
37
|
+
"aria-hidden": l.ariaHidden,
|
|
38
|
+
focusable: "false",
|
|
39
|
+
role: "img",
|
|
40
|
+
"data-name": "Mobile Full Notifications",
|
|
41
|
+
class: "d-illustration d-illustration--mobile-full-notifications",
|
|
42
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
43
|
+
width: "200",
|
|
44
|
+
height: "200",
|
|
45
|
+
viewBox: "0 0 200 200",
|
|
46
|
+
fill: "none"
|
|
47
|
+
}, h, 8, d);
|
|
48
|
+
}
|
|
49
|
+
const _ = /* @__PURE__ */ o(r, [["render", s]]);
|
|
50
|
+
export {
|
|
51
|
+
_ as default
|
|
52
|
+
};
|
|
53
|
+
//# sourceMappingURL=mobile-full-notifications.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mobile-full-notifications.js","sources":["../../../../src/illustrations/mobile-full-notifications.vue"],"sourcesContent":["<template>\n <svg :aria-label=\"ariaLabel\" :data-qa=\"dataQA\"\n :aria-hidden=\"ariaHidden\"\n focusable=\"false\"\n role=\"img\"\n data-name=\"Mobile Full Notifications\"\n class=\"d-illustration d-illustration--mobile-full-notifications\" xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200' fill='none'><path fill='var(--dt-color-black-1000)' d='M67.6781 70.6295c5.7483-4.4088 10.6534-9.7148 14.9469-15.5372 3.9781-5.3963 7.5958-11.1606 10.4088-17.2541 2.5491-5.519 4.7248-11.322 8.3422-16.2601 3.154-4.3055 7.911-8.0945 13.525-7.4361 5.169.6067 9.604 4.4474 12.867 8.2817 1.764 2.072 3.296 4.3442 4.616 6.7261 1.377 2.5045 2.349 5.0865 3.225 7.8041 2.291 7.0875 4.094 14.3752 7.595 20.998 3.528 6.668 8.497 12.4904 12.533 18.8421 4.037 6.3517 7.068 13.6135 9.309 20.9593 2.259 7.3977 3.72 15.0397 4.293 22.7537.142 1.924.225 3.854.264 5.784.039 1.93 2.935 1.872 2.897 0-.155-8.043-1.217-16.073-3.161-23.877-1.944-7.8043-4.532-15.2404-8.22-22.1731-3.689-6.9326-8.503-12.826-12.72-19.2616-2.092-3.1888-3.856-6.526-5.233-10.0827-1.378-3.5567-2.408-7.0553-3.489-10.6184-.991-3.2533-1.944-6.5518-3.334-9.6631-1.133-2.5368-2.55-4.951-4.165-7.2102-3.335-4.6605-7.602-8.9596-12.997-11.1155-2.542-1.0199-5.304-1.362-8.014-.9231-3 .4906-5.671 2.0462-7.969 3.9827-4.7377 4.0021-7.6023 9.7341-10.1063 15.2919-1.281 2.8337-2.4911 5.7062-3.8944 8.4883-1.5449 3.0725-3.3666 6.0096-5.2269 8.8949-3.9073 6.0484-8.3618 11.761-13.6724 16.6474-1.3132 1.2071-2.6714 2.3625-4.0811 3.447-.618.4777-.9463 1.2523-.5214 1.9881.354.6132 1.3582 1.0005 1.9826.5229Z'/><path fill='var(--dt-color-black-1000)' d='M169.507 126.891c-.181 5.493-1.281 10.883-2.665 16.189-1.178 4.525-2.517 9.044-4.423 13.317-3.617 8.12-9.411 15.505-18.133 18.3-4.338 1.394-9.153 1.549-13.37-.349-.714-.323-1.557-.207-1.982.523-.361.62-.2 1.665.521 1.988 8.664 3.899 18.668.962 25.626-5.022 7.583-6.519 11.387-16.434 13.982-25.839 1.718-6.236 3.128-12.62 3.34-19.107.058-1.872-2.838-1.865-2.896 0ZM48.1483 96.8371c-9.1471 12.5809-15.391 27.2919-18.1397 42.6159-.7724 4.318-1.2809 8.682-1.5062 13.058-.0966 1.866 2.8001 1.866 2.8967 0 .7917-15.137 5.0595-30.054 12.3463-43.332 2.0663-3.77 4.3772-7.404 6.907-10.8831.4634-.6326.1094-1.6202-.5214-1.9881-.7339-.4325-1.5192-.1162-1.9827.5228v.0065ZM37.5591 180.532c-.0901-14.408 4.8085-28.615 13.4729-40.073 2.1371-2.827 4.5381-5.461 7.1129-7.881 2.2144-2.079 5.1626-5.255 8.4777-3.692 2.9868 1.4 4.7055 4.783 5.8642 7.707 1.4676 3.711 2.4654 7.597 3.1091 11.541 1.4676 8.999 1.0686 18.21.5858 27.279-.0966 1.866 2.8001 1.866 2.8967 0 .457-8.617.7788-17.293-.3734-25.878-.5665-4.209-1.4741-8.379-2.9225-12.374-1.2938-3.57-2.9417-7.256-5.9929-9.67-1.3968-1.104-3.019-1.859-4.8149-1.936-2.0084-.084-3.8623.807-5.4265 1.994-3.0898 2.356-5.8706 5.21-8.3875 8.159-4.9888 5.855-8.9476 12.51-11.767 19.669-3.1477 7.985-4.7827 16.57-4.7312 25.155.0128 1.865 2.9095 1.872 2.8966 0Z'/><path fill='var(--dt-color-black-1000)' d='M87.9489 182.933c-1.0493-7.888.2317-15.802 3.0254-23.206 1.3968-3.692 3.167-7.236 5.1883-10.618 2.0212-3.382 4.1714-6.597 6.6944-9.528 2.208-2.569 5.073-5.331 8.581-5.803 2.993-.4 5.607 1.22 7.383 3.518 2.06 2.673 3.18 5.945 4.133 9.134 1.261 4.209 2.311 8.476 3.147 12.787 1.887 9.702 2.665 19.598 2.363 29.48-.058 1.872 2.839 1.866 2.897 0 .283-9.321-.406-18.655-2.022-27.84-.811-4.628-1.873-9.211-3.167-13.723-1.017-3.557-2.143-7.178-4.164-10.302-1.829-2.834-4.487-5.281-7.912-5.849-4.036-.664-7.711 1.227-10.66 3.848-2.948 2.62-5.4581 6.151-7.7047 9.521-2.2465 3.369-4.3965 7.203-6.1024 11.063-3.7979 8.618-5.8449 18.1-4.5832 27.525.103.774.5922 1.452 1.4484 1.452.7016 0 1.5513-.671 1.4483-1.452l.0065-.007ZM146.346 112.458c.972-5.564-.071-11.142-1.937-16.4088-1.867-5.2672-4.043-9.9794-6.856-14.4979-2.813-4.5184-6.096-8.2946-10.325-11.2316-3.663-2.5433-8.272-4.6412-12.816-4.1248-4.976.5616-9.695 2.737-14.104 5.0091-1.6608.8521-.193 3.3631 1.461 2.511 3.592-1.8461 7.345-3.5696 11.323-4.3829 1.77-.3615 3.54-.4583 5.298.0064 2.15.5681 4.171 1.4718 6.07 2.6401 8.207 5.0413 12.996 14.1816 16.421 22.8958 2.079 5.2996 3.676 11.0966 2.678 16.8216-.135.775.206 1.562 1.01 1.788.702.194 1.648-.239 1.783-1.013l-.006-.013Z'/><path fill='var(--dt-color-black-1000)' d='M111.438 70.9007c-4.158-.1097-8.317-.0387-12.43.6068-2.6714.4131-5.4587 1.0651-8.0142 1.9817-1.0171.3615-2.1114.8133-2.8581 1.6266-.869.9554-.9527 2.2851-.1931 3.3373.5343.7423 1.3582 1.1425 2.1629 1.5362.9462.4648 1.9247.8715 2.916 1.2394 1.7702.6519 3.5983 1.149 5.4522 1.5105 4.5763.8972 9.2243.9618 13.8723.9682 1.866 0 1.866-2.8983 0-2.9047-6.946-.0194-14.1169-.1679-20.5282-3.2017-.367-.1743-.7339-.355-1.0879-.5487-.058-.0322-.4249-.3485-.4828-.355.103.0194-.0193.2905.0257.0194-.0064.0516 0 .2904 0 .3679 0-.2001-.0257-.0194-.0386.0646.0515-.2582-.1287.1484.0386-.0581 0 0 .2833-.2518.1352-.1291-.1351.1097.0902-.0581.1223-.0775a6.1654 6.1654 0 0 1 .5729-.3163c.2962-.1485.6759-.284 1.1265-.426 2.2595-.7359 4.6283-1.3297 6.965-1.73 4.0423-.6906 8.1683-.71 12.2563-.6003 1.867.0517 1.86-2.8531 0-2.9047l-.013-.0065Z'/><path fill='var(--dt-color-black-1000)' d='M99.4454 80.2021c-1.841.6649-3.9009 2.2141-4.4609 4.1893-.6437 2.2851.457 4.7896 2.4461 5.9773 1.989 1.1878 4.4994 1.8268 6.7714 2.1495 2.781.3938 5.581.3551 8.375.1872 2.794-.1678 5.948-.2646 8.587-1.6718 1.648-.8779.187-3.3824-1.461-2.511-2.234 1.1877-4.97 1.1554-7.435 1.2975-2.864.1613-5.8.2388-8.632-.3292-1.242-.2518-2.433-.6455-3.618-1.0974-.7336-.284-1.6476-.6519-2.0145-1.4007-.367-.7488-.4313-1.6912.0708-2.3625.5021-.6714 1.3582-1.3362 2.1367-1.6202.734-.2647 1.23-.9877 1.011-1.7881-.193-.71-1.043-1.2845-1.7831-1.0134l.0065-.0065Z'/><path fill='var(--dt-color-black-1000)' d='M103.565 89.5428c-1.391-.2001-2.736 0-4.0941.3163-1.0235.2453-2.0341.6907-2.7422 1.4976-1.6994 1.9429-1.6543 5.306-.0708 7.2877 1.6736 2.0916 4.7631 1.8526 7.1711 2.0266 2.961.213 5.922.258 8.877-.084 3.289-.381 6.514-1.1164 9.623-2.2718.734-.2711 1.229-.9812 1.011-1.7881-.194-.71-1.043-1.291-1.783-1.0134-5.794 2.156-11.755 2.6917-17.889 2.2399a140.253 140.253 0 0 1-2.369-.1937c-.534-.0452-1.107-.0452-1.6221-.2194-.8819-.3034-1.2553-1.1619-1.3067-2.0592-.0515-.8972.1866-2.0139 1.12-2.4012.9338-.3873 2.3048-.6714 3.2958-.5293.772.1097 1.558-.1872 1.783-1.0135.187-.6777-.232-1.6783-1.011-1.788l.007-.0065Z'/><path fill='var(--dt-color-black-1000)' d='M104.054 97.8954c-2.189.1226-3.972 2.3236-3.894 4.4926.09 2.53 2.13 4.254 4.325 5.08 2.356.884 5.06 1.162 7.558 1.272 2.671.116 5.329-.116 7.962-.549.773-.129 1.204-1.091 1.011-1.788-.225-.82-1.004-1.142-1.783-1.013-3.779.626-7.718.69-11.484-.058-1.5-.297-3.386-.633-4.319-1.989-.335-.484-.502-1.058-.258-1.613.135-.31.522-.917.882-.936 1.854-.104 1.867-3.0084 0-2.9051v.0065ZM83.9643 90.2334c.5601 1.7622.1288 3.518-.5149 5.2027-.6051 1.5879-1.4226 3.1307-2.3174 4.5769-1.6607 2.666-3.9202 5.144-6.907 6.3-.7274.284-1.2359.974-1.0106 1.788.1931.697 1.0492 1.297 1.7831 1.013 3.7335-1.446 6.54-4.273 8.6385-7.636 2.0985-3.3631 4.4288-7.9396 3.1285-12.0127-.5665-1.7752-3.3602-1.0135-2.7937.7746l-.0065-.0065Z'/><path fill='var(--dt-color-black-1000)' d='M83.8803 97.3727c5.42 6.8163-1.0943 14.7363-7.0036 18.4483-1.5771.988-.1223 3.505 1.4613 2.511 3.7657-2.363 7.3061-5.693 9.1857-9.792.9269-2.021 1.5063-4.26 1.2874-6.5-.2446-2.5436-1.3003-4.7383-2.8774-6.72-.4892-.6132-1.5384-.5099-2.047 0-.6051.6068-.4892 1.4395 0 2.0527h-.0064Z'/><path fill='var(--dt-color-black-1000)' d='M85.5669 109.004c1.6994 3.589.4635 7.72-1.5191 10.909-.9849 1.588-2.1565 3.099-3.4954 4.403-1.1973 1.168-2.6392 2.188-4.3643 2.22-1.8604.039-1.8668 2.944 0 2.905 4.654-.091 8.1043-4.435 10.3637-8.062 2.5813-4.151 3.6756-9.276 1.5191-13.846-.3347-.71-1.3453-.891-1.9826-.523-.721.426-.8561 1.278-.5214 1.988v.006ZM55.8084 116.692c-2.1178.994-4.3901 1.13-6.1216-.465-.412-.38-.8175-.761-1.1909-1.174-.1609-.181-.3283-.362-.4763-.556.1802.239-.0322-.058-.0708-.109-.0709-.104-.1352-.207-.1996-.31-.3991-.678-.6501-1.698-.7338-2.589-.0708-.781-.6115-1.452-1.4483-1.452-.7274 0-1.5192.665-1.4484 1.452.1352 1.421.3926 2.815 1.1329 4.054.6759 1.136 1.6544 2.105 2.6392 2.969 2.7101 2.382 6.2826 2.137 9.3789.685.7081-.336.8883-1.356.5214-1.988-.4249-.73-1.2681-.852-1.9827-.523v.006ZM49.4422 97.5984c2.1693 1.5428 4.6412 2.6726 7.2675 3.1246 2.5748.445 5.1497.316 7.7245-.097 5.626-.9039 10.9431-3.0082 15.7709-6.0162 2.7872-1.7364 5.4071-3.7245 7.9433-5.8095.6051-.497.515-1.5363 0-2.0527-.5986-.6003-1.4419-.497-2.047 0-4.0618 3.3502-8.4518 6.4292-13.3119 8.5077-2.4332 1.0392-4.9952 1.7557-7.5829 2.2915-2.2787.4648-4.6024.7165-6.9262.4841-2.7036-.2646-5.1819-1.3749-7.377-2.937-.6372-.4518-1.6092-.1162-1.9826.5229-.4248.7294-.1223 1.5298.5214 1.9881v-.0065Z'/><path fill='var(--dt-color-black-1000)' d='M51.6694 95.6685c-.0837-4.6089-.1738-9.2242-.2575-13.8331-.0386-2.1817-.1287-4.3635-.1158-6.5453 0-.6584.0193-1.3685.2639-1.9881.2575-.6584.7402-.8263 1.4161-.9102 2.2144-.2776 4.4674-.3679 6.6882-.5487 2.3495-.1936 4.7055-.3808 7.055-.5745 2.3496-.1936 4.4867-.3679 6.7332-.5486 2.2465-.1808 4.4545-.51 6.6624-.5358 1.9247-.0194 2.2337 3.2533 2.4461 4.654.354 2.4077.5922 4.8413.766 7.2683.1287 1.8526 3.0319 1.8655 2.8967 0-.1738-2.498-.4442-4.9897-.7853-7.4684-.2962-2.1366-.7017-4.3829-2.1758-6.0483-1.68-1.9042-4.3772-1.2264-6.6044-1.0392-2.562.2065-5.1304.4195-7.6923.6261-5.021.4067-10.0483.8198-15.0693 1.2265-1.0943.0903-2.2723.1097-3.2443.6777-.8754.51-1.4547 1.3104-1.8152 2.2464-.7403 1.9364-.4249 4.2667-.3862 6.2871.103 5.6804.2124 11.3672.3154 17.0476.0322 1.8655 2.9289 1.8719 2.8967 0l.0064.0065Z'/><path fill='var(--dt-color-black-1000)' d='M57.0894 74.8448c-.7017-.1227-1.3454-.1808-2.0535-.0581-.7402.1291-1.429.6003-1.8023 1.2651-.3734.6649-.412 1.4976-.3219 2.2464.0901.7488.2703 1.5104.7081 2.1495.4763.6842 1.1265 1.2006 1.9311 1.4459.8046.2453 1.5835.1291 2.2852-.2453 1.0943-.5809 1.6221-1.8397 1.8538-2.9951.1674-.8391.2897-1.7041-.1544-2.4852-.2704-.4712-.7661-.8262-1.2939-.9488-.354-.084-.7145-.0711-1.0685-.1162l.3862.0516a1.4264 1.4264 0 0 1-.2382-.0581l.3476.1485c-.045-.0194-.0837-.0452-.1223-.071l.2961.2259s-.0451-.0387-.0708-.0646l.2253.297-.0322-.0388c-.2382-.3163-.4699-.5551-.8625-.6648-.3477-.0968-.8111-.0517-1.1137.1484-.3025.2001-.5793.4971-.663.865s-.0837.8198.148 1.1167c.3348.439.7082.7875 1.2682.8973.3411.0645.6758.0645 1.017.1032l-.3862-.0516a1.196 1.196 0 0 1 .2511.0646l-.3477-.1485a.8262.8262 0 0 1 .1288.071l-.2961-.2259c.0451.0387.0837.071.1159.1162l-.2254-.297a1.025 1.025 0 0 1 .0837.142l-.148-.3485c.0257.071.0451.142.0579.2194l-.0515-.3873c.0193.1808.0129.3551-.0064.5358l.0515-.3873c-.0773.5358-.1867 1.0715-.3991 1.575l.148-.3485c-.0901.2065-.1931.4002-.3283.5809l.2253-.2969c-.0965.1291-.2059.2388-.3347.3421l.2961-.2259c-.103.0774-.206.1355-.3219.1936l.3477-.1485a2.0299 2.0299 0 0 1-.3991.1162l.3862-.0516a2.4079 2.4079 0 0 1-.4313 0l.3862.0516a1.838 1.838 0 0 1-.4184-.1226l.3476.1485a2.6702 2.6702 0 0 1-.4377-.2518l.2961.2259c-.1545-.1162-.2832-.2517-.4055-.4066l.2253.2969c-.1223-.1678-.2253-.3421-.309-.5358l.148.3486c-.1223-.3034-.1995-.6132-.2446-.936l.0515.3873c-.045-.3485-.0579-.7036-.0193-1.0521l-.0515.3873c.0193-.142.058-.2711.1095-.4002l-.1481.3485c.0386-.0774.0772-.1484.1287-.213l-.2253.2969c.058-.071.1159-.1291.1867-.1872l-.2961.226a1.053 1.053 0 0 1 .2768-.1549l-.3476.1484c.1416-.0516.2768-.0903.4249-.1097l-.3863.0516c.3154-.0387.6244-.0193.9398.0194l-.3862-.0516c.0966.0129.1931.0258.2833.0451.3926.071.7595.0646 1.1136-.1484.3025-.1743.5857-.5229.663-.865.0836-.3744.0643-.7875-.1481-1.1167-.1931-.3034-.502-.6068-.8625-.6649l.0193-.0193ZM102.677 29.4982c-.277 2.2205-1.03 4.9252-1.97 7.0101-.283.6326-.7275 1.2781-.7597 1.9882-.0386.9037.5277 1.6653 1.4157 1.859.676.1485 1.462 0 2.144-.0323.721-.0387 1.448-.071 2.169-.1097.721-.0387 1.487-.6391 1.449-1.4524-.033-.7552-.638-1.4911-1.449-1.4524-.663.0323-1.326.071-1.989.1033-.302.0129-.605.0323-.901.0452-.18.0065-.36.0194-.541.0258h-.18c-.386 0-.257.0969.393.297l.373.639c.064.1614-.167.6778.013.3357.09-.1808.174-.3615.257-.5423.213-.4518.406-.9101.593-1.3684.302-.7423.579-1.4976.817-2.2593.515-1.6589.843-3.3565 1.062-5.08.097-.7553-.734-1.4847-1.448-1.4524-.869.0387-1.345.639-1.448 1.4524v-.0065Z'/></svg>\n\n</template>\n\n<script>\nexport default {\n name: 'DtIllustrationMobileFullNotifications',\n\n props: {\n /**\n * The label of the illustration as read out by a screenreader. Leave this unset if your illustration is purely presentational\n */\n ariaLabel: {\n type: String,\n default: undefined,\n },\n },\n\n /**\n * @TODO: Remove this emit once the illustrations migration is complete,\n * they will no longer need this event.\n * */\n emits: ['loaded'],\n\n computed: {\n ariaHidden () {\n return !this.ariaLabel ? 'true' : 'false';\n },\n\n dataQA () {\n return this.$attrs['data-qa'] ?? 'dt-illustration';\n },\n },\n\n created () {\n this.$emit('loaded');\n },\n};\n</script>\n"],"names":["_sfc_main","_hoisted_1","_hoisted_2","_createStaticVNode","_createElementBlock","$props","$options","_hoisted_13"],"mappings":";;AAWA,MAAKA,IAAU;AAAA,EACb,MAAM;AAAA,EAEN,OAAO;AAAA;AAAA;AAAA;AAAA,IAIL,WAAW;AAAA,MACT,MAAM;AAAA,MACN,SAAS;AAAA,IACV;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA,EAMD,OAAO,CAAC,QAAQ;AAAA,EAEhB,UAAU;AAAA,IACR,aAAc;AACZ,aAAQ,KAAK,YAAqB,UAAT;AAAA,IAC1B;AAAA,IAED,SAAU;AACR,aAAO,KAAK,OAAO,SAAS,KAAK;AAAA,IAClC;AAAA,EACF;AAAA,EAED,UAAW;AACT,SAAK,MAAM,QAAQ;AAAA,EACpB;AACH,GA3CAC,IAAA,CAAA,cAAA,WAAA,aAAA,GAAAC,IAAAC,gBAAAA,EAAA,mnXAAA,EAAA;EAMqKD;;;cALnKE,EAKstX,OAAA;AAAA,IALhtX,cAAYC,EAAS;AAAA,IAAG,WAASC,EAAM;AAAA,IACxC,eAAaA,EAAU;AAAA,IACxB,WAAU;AAAA,IACV,MAAK;AAAA,IACL,aAAU;AAAA,IACV,OAAM;AAAA,IAA2D,OAAM;AAAA,IAA6B,OAAM;AAAA,IAAM,QAAO;AAAA,IAAM,SAAQ;AAAA,IAAc,MAAK;AAAA,KAN9JC,GAAA,GAAAN,CAAA;;;"}
|