@dialpad/dialtone-icons 4.48.1-next.1 → 4.49.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/keywords-icons.json +1 -1
- package/dist/svg/icons/codepen.svg +1 -0
- package/dist/svg/icons/figma.svg +1 -0
- package/dist/svg/icons/github.svg +1 -0
- package/dist/svg/icons/storybook-color.svg +1 -0
- package/dist/svg/icons/storybook.svg +1 -0
- package/package.json +1 -1
- package/vue3/dist/components/icons/codepen.cjs +2 -0
- package/vue3/dist/components/icons/codepen.cjs.map +1 -0
- package/vue3/dist/components/icons/codepen.js +65 -0
- package/vue3/dist/components/icons/codepen.js.map +1 -0
- package/vue3/dist/components/icons/figma.cjs +2 -0
- package/vue3/dist/components/icons/figma.cjs.map +1 -0
- package/vue3/dist/components/icons/figma.js +62 -0
- package/vue3/dist/components/icons/figma.js.map +1 -0
- package/vue3/dist/components/icons/github.cjs +2 -0
- package/vue3/dist/components/icons/github.cjs.map +1 -0
- package/vue3/dist/components/icons/github.js +65 -0
- package/vue3/dist/components/icons/github.js.map +1 -0
- package/vue3/dist/components/icons/storybook-color.cjs +2 -0
- package/vue3/dist/components/icons/storybook-color.cjs.map +1 -0
- package/vue3/dist/components/icons/storybook-color.js +69 -0
- package/vue3/dist/components/icons/storybook-color.js.map +1 -0
- package/vue3/dist/components/icons/storybook.cjs +2 -0
- package/vue3/dist/components/icons/storybook.cjs.map +1 -0
- package/vue3/dist/components/icons/storybook.js +67 -0
- package/vue3/dist/components/icons/storybook.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 +941 -933
- package/vue3/dist/dialtone-icons.js.map +1 -1
- package/vue3/dist/types/index.d.ts +5 -1
- package/vue3/dist/types/index.d.ts.map +1 -1
- package/vue3/dist/types/src/icons/{paint-bucket.vue.d.ts → codepen.vue.d.ts} +1 -1
- package/vue3/dist/types/src/icons/codepen.vue.d.ts.map +1 -0
- package/vue3/dist/types/src/icons/figma.vue.d.ts +46 -0
- package/vue3/dist/types/src/icons/figma.vue.d.ts.map +1 -0
- package/vue3/dist/types/src/icons/github.vue.d.ts +46 -0
- package/vue3/dist/types/src/icons/github.vue.d.ts.map +1 -0
- package/vue3/dist/types/src/icons/storybook-color.vue.d.ts +46 -0
- package/vue3/dist/types/src/icons/storybook-color.vue.d.ts.map +1 -0
- package/vue3/dist/types/src/icons/storybook.vue.d.ts +46 -0
- package/vue3/dist/types/src/icons/storybook.vue.d.ts.map +1 -0
- package/dist/svg/icons/paint-bucket.svg +0 -1
- package/vue3/dist/components/icons/paint-bucket.cjs +0 -2
- package/vue3/dist/components/icons/paint-bucket.cjs.map +0 -1
- package/vue3/dist/components/icons/paint-bucket.js +0 -69
- package/vue3/dist/components/icons/paint-bucket.js.map +0 -1
- package/vue3/dist/types/src/icons/paint-bucket.vue.d.ts.map +0 -1
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import { I as r } from "../../constants-DeVuDy8J.js";
|
|
2
|
-
import { openBlock as n, createElementBlock as d, normalizeClass as o, createElementVNode as i } from "vue";
|
|
3
|
-
import { _ as s } from "../../_plugin-vue_export-helper-CHgC5LLL.js";
|
|
4
|
-
const c = {
|
|
5
|
-
name: "DtIconPaintBucket",
|
|
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(r).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 r[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
|
-
}, u = ["aria-label", "data-qa", "aria-hidden"];
|
|
44
|
-
function m(e, t, l, _, f, a) {
|
|
45
|
-
return n(), d("svg", {
|
|
46
|
-
"aria-label": l.ariaLabel,
|
|
47
|
-
class: o([a.iconSizeClass, "d-icon d-icon--paint-bucket"]),
|
|
48
|
-
"data-qa": a.dataQA,
|
|
49
|
-
"aria-hidden": a.ariaHidden,
|
|
50
|
-
role: "img",
|
|
51
|
-
"data-name": "Paint Bucket",
|
|
52
|
-
viewBox: "0 0 12 12",
|
|
53
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
54
|
-
}, [...t[0] || (t[0] = [
|
|
55
|
-
i("path", {
|
|
56
|
-
d: "M2.646.646a.5.5 0 0 1 .708 0l2.5 2.5a.5.5 0 1 1-.708.708l-2.5-2.5a.5.5 0 0 1 0-.708ZM9.496 5.5a.5.5 0 0 1 0 1H1.021a.5.5 0 1 1 0-1h8.475Zm.503 2.25a.5.5 0 0 1 .49.396c.056.257.196.489.4.657l.134.119c.294.287.475.649.477 1.06l-.006.148a1.5 1.5 0 0 1-.427.924 1.503 1.503 0 0 1-2.134 0A1.5 1.5 0 0 1 8.5 9.98c.002-.461.231-.873.611-1.178l.075-.066a1.15 1.15 0 0 0 .325-.59.5.5 0 0 1 .488-.397ZM10 9.33a2.227 2.227 0 0 1-.257.247l-.003.003c-.19.153-.24.298-.24.407v.007a.503.503 0 0 0 .308.467.499.499 0 0 0 .692-.467v-.007c0-.108-.048-.25-.243-.41h-.002A2.168 2.168 0 0 1 10 9.328Z",
|
|
57
|
-
fill: "currentColor"
|
|
58
|
-
}, null, -1),
|
|
59
|
-
i("path", {
|
|
60
|
-
d: "M9.5 5.25a.103.103 0 0 0-.03-.073L5.822 1.53a.103.103 0 0 0-.146 0L4.604 2.603a.5.5 0 1 1-.707-.707L4.97.823a1.103 1.103 0 0 1 1.56 0l3.647 3.647a1.103 1.103 0 0 1 0 1.56L6.38 9.826a2.309 2.309 0 0 1-3.263 0L1.174 7.88a2.308 2.308 0 0 1 0-3.262L2.48 3.31a.5.5 0 0 1 .708.707L1.88 5.326a1.307 1.307 0 0 0 0 1.848L3.825 9.12a1.308 1.308 0 0 0 1.849 0L9.47 5.323a.106.106 0 0 0 .03-.073Z",
|
|
61
|
-
fill: "currentColor"
|
|
62
|
-
}, null, -1)
|
|
63
|
-
])], 10, u);
|
|
64
|
-
}
|
|
65
|
-
const b = /* @__PURE__ */ s(c, [["render", m]]);
|
|
66
|
-
export {
|
|
67
|
-
b as default
|
|
68
|
-
};
|
|
69
|
-
//# sourceMappingURL=paint-bucket.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"paint-bucket.js","sources":["../../../../src/icons/paint-bucket.vue"],"sourcesContent":["<template>\n <svg :aria-label=\"ariaLabel\" :class=\"iconSizeClass\" :data-qa=\"dataQA\" :aria-hidden=\"ariaHidden\" role=\"img\" data-name=\"Paint Bucket\" class=\"d-icon d-icon--paint-bucket\" viewBox=\"0 0 12 12\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.646.646a.5.5 0 0 1 .708 0l2.5 2.5a.5.5 0 1 1-.708.708l-2.5-2.5a.5.5 0 0 1 0-.708ZM9.496 5.5a.5.5 0 0 1 0 1H1.021a.5.5 0 1 1 0-1h8.475Zm.503 2.25a.5.5 0 0 1 .49.396c.056.257.196.489.4.657l.134.119c.294.287.475.649.477 1.06l-.006.148a1.5 1.5 0 0 1-.427.924 1.503 1.503 0 0 1-2.134 0A1.5 1.5 0 0 1 8.5 9.98c.002-.461.231-.873.611-1.178l.075-.066a1.15 1.15 0 0 0 .325-.59.5.5 0 0 1 .488-.397ZM10 9.33a2.227 2.227 0 0 1-.257.247l-.003.003c-.19.153-.24.298-.24.407v.007a.503.503 0 0 0 .308.467.499.499 0 0 0 .692-.467v-.007c0-.108-.048-.25-.243-.41h-.002A2.168 2.168 0 0 1 10 9.328Z\" fill=\"currentColor\"/><path d=\"M9.5 5.25a.103.103 0 0 0-.03-.073L5.822 1.53a.103.103 0 0 0-.146 0L4.604 2.603a.5.5 0 1 1-.707-.707L4.97.823a1.103 1.103 0 0 1 1.56 0l3.647 3.647a1.103 1.103 0 0 1 0 1.56L6.38 9.826a2.309 2.309 0 0 1-3.263 0L1.174 7.88a2.308 2.308 0 0 1 0-3.262L2.48 3.31a.5.5 0 0 1 .708.707L1.88 5.326a1.307 1.307 0 0 0 0 1.848L3.825 9.12a1.308 1.308 0 0 0 1.849 0L9.47 5.323a.106.106 0 0 0 .03-.073Z\" fill=\"currentColor\"/></svg>\n</template>\n\n<script>\nimport { ICON_SIZE_MODIFIERS } from '@/src/constants';\n\nexport default {\n name: 'DtIconPaintBucket',\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","_createElementBlock","$props","_normalizeClass","$options","_createElementVNode"],"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;;;;IAM/D,WAAW;AAAA,MACT,MAAM;AAAA,MACN,SAAS;AAAA;;;;;;EAQb,OAAO,CAAC,QAAQ;AAAA,EAEhB,UAAU;AAAA,IACR,gBAAiB;AACf,aAAOC,EAAoB,KAAK,IAAI;AAAA,IACtC;AAAA,IAEA,aAAc;AACZ,aAAQ,KAAK,YAAqB,UAAT;AAAA,IAC3B;AAAA,IAEA,SAAU;AACR,aAAO,KAAK,OAAO,SAAS,KAAK;AAAA,IACnC;AAAA;EAGF,UAAW;AACT,SAAK,MAAM,QAAQ;AAAA,EACrB;AACF;;cApDEC,EAAwuC,OAAA;AAAA,IAAluC,cAAYC,EAAA;AAAA,IAAY,OAAKC,EAAA,CAAEC,EAAA,eAAqG,6BAA6B,CAAA;AAAA,IAAlH,WAASA,EAAA;AAAA,IAAS,eAAaA,EAAA;AAAA,IAAY,MAAK;AAAA,IAAM,aAAU;AAAA,IAAmD,SAAQ;AAAA,IAAY,OAAM;AAAA;IAA6BC,EAAmmB,QAAA;AAAA,MAA7lB,GAAE;AAAA,MAAskB,MAAK;AAAA;IAAgBA,EAAga,QAAA;AAAA,MAA1Z,GAAE;AAAA,MAAmY,MAAK;AAAA;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"paint-bucket.vue.d.ts","sourceRoot":"","sources":["../../../../../src/icons/paint-bucket.vue"],"names":[],"mappings":"AAGA;;IA+DI;;;OAGG;;;;;;IAOH;;OAEG;;;;;;;;;;IAZH;;;OAGG;;;;;;IAOH;;OAEG"}
|