@veltra/icons 1.1.13 → 1.1.15
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/.turbo/turbo-build.log +71 -10
- package/CHANGELOG.md +8 -0
- package/dist/index.d.ts +177 -157
- package/dist/index.js +177 -157
- package/dist/index.js.map +1 -1
- package/dist/normal.d.ts +166 -146
- package/dist/normal.js +166 -146
- package/dist/vue/normal/auto-complete.js +33 -0
- package/dist/vue/normal/auto-complete.js.map +1 -0
- package/dist/vue/normal/auto-complete.vue.d.ts +8 -0
- package/dist/vue/normal/cascader.js +48 -0
- package/dist/vue/normal/cascader.js.map +1 -0
- package/dist/vue/normal/cascader.vue.d.ts +8 -0
- package/dist/vue/normal/checkbox.js +35 -0
- package/dist/vue/normal/checkbox.js.map +1 -0
- package/dist/vue/normal/checkbox.vue.d.ts +8 -0
- package/dist/vue/normal/date-picker.js +19 -0
- package/dist/vue/normal/date-picker.js.map +1 -0
- package/dist/vue/normal/date-picker.vue.d.ts +8 -0
- package/dist/vue/normal/date-range-picker.js +44 -0
- package/dist/vue/normal/date-range-picker.js.map +1 -0
- package/dist/vue/normal/date-range-picker.vue.d.ts +8 -0
- package/dist/vue/normal/file-picker.js +32 -0
- package/dist/vue/normal/file-picker.js.map +1 -0
- package/dist/vue/normal/file-picker.vue.d.ts +8 -0
- package/dist/vue/normal/form.js +33 -0
- package/dist/vue/normal/form.js.map +1 -0
- package/dist/vue/normal/form.vue.d.ts +8 -0
- package/dist/vue/normal/input.js +33 -0
- package/dist/vue/normal/input.js.map +1 -0
- package/dist/vue/normal/input.vue.d.ts +8 -0
- package/dist/vue/normal/multi-select.js +56 -0
- package/dist/vue/normal/multi-select.js.map +1 -0
- package/dist/vue/normal/multi-select.vue.d.ts +8 -0
- package/dist/vue/normal/multi-tree-select.js +52 -0
- package/dist/vue/normal/multi-tree-select.js.map +1 -0
- package/dist/vue/normal/multi-tree-select.vue.d.ts +8 -0
- package/dist/vue/normal/number-input.js +35 -0
- package/dist/vue/normal/number-input.js.map +1 -0
- package/dist/vue/normal/number-input.vue.d.ts +8 -0
- package/dist/vue/normal/number-range-input.js +48 -0
- package/dist/vue/normal/number-range-input.js.map +1 -0
- package/dist/vue/normal/number-range-input.vue.d.ts +8 -0
- package/dist/vue/normal/password-input.js +48 -0
- package/dist/vue/normal/password-input.js.map +1 -0
- package/dist/vue/normal/password-input.vue.d.ts +8 -0
- package/dist/vue/normal/radio.js +31 -0
- package/dist/vue/normal/radio.js.map +1 -0
- package/dist/vue/normal/radio.vue.d.ts +8 -0
- package/dist/vue/normal/select.js +35 -0
- package/dist/vue/normal/select.js.map +1 -0
- package/dist/vue/normal/select.vue.d.ts +8 -0
- package/dist/vue/normal/slider.js +29 -0
- package/dist/vue/normal/slider.js.map +1 -0
- package/dist/vue/normal/slider.vue.d.ts +8 -0
- package/dist/vue/normal/switch.js +33 -0
- package/dist/vue/normal/switch.js.map +1 -0
- package/dist/vue/normal/switch.vue.d.ts +8 -0
- package/dist/vue/normal/table.js +33 -0
- package/dist/vue/normal/table.js.map +1 -0
- package/dist/vue/normal/table.vue.d.ts +8 -0
- package/dist/vue/normal/textarea.js +33 -0
- package/dist/vue/normal/textarea.js.map +1 -0
- package/dist/vue/normal/textarea.vue.d.ts +8 -0
- package/dist/vue/normal/tree-select.js +46 -0
- package/dist/vue/normal/tree-select.js.map +1 -0
- package/dist/vue/normal/tree-select.vue.d.ts +8 -0
- package/package.json +1 -1
- package/src/normal.ts +20 -0
- package/src/svg/normal/auto-complete.svg +1 -0
- package/src/svg/normal/cascader.svg +1 -0
- package/src/svg/normal/checkbox.svg +1 -0
- package/src/svg/normal/date-picker.svg +1 -0
- package/src/svg/normal/date-range-picker.svg +1 -0
- package/src/svg/normal/file-picker.svg +1 -0
- package/src/svg/normal/form.svg +1 -0
- package/src/svg/normal/input.svg +1 -0
- package/src/svg/normal/multi-select.svg +1 -0
- package/src/svg/normal/multi-tree-select.svg +1 -0
- package/src/svg/normal/number-input.svg +1 -0
- package/src/svg/normal/number-range-input.svg +1 -0
- package/src/svg/normal/password-input.svg +1 -0
- package/src/svg/normal/radio.svg +1 -0
- package/src/svg/normal/select.svg +1 -0
- package/src/svg/normal/slider.svg +1 -0
- package/src/svg/normal/switch.svg +1 -0
- package/src/svg/normal/table.svg +1 -0
- package/src/svg/normal/textarea.svg +1 -0
- package/src/svg/normal/tree-select.svg +1 -0
- package/src/vue/normal/auto-complete.vue +19 -0
- package/src/vue/normal/cascader.vue +36 -0
- package/src/vue/normal/checkbox.vue +26 -0
- package/src/vue/normal/date-picker.vue +23 -0
- package/src/vue/normal/date-range-picker.vue +20 -0
- package/src/vue/normal/file-picker.vue +23 -0
- package/src/vue/normal/form.vue +24 -0
- package/src/vue/normal/input.vue +19 -0
- package/src/vue/normal/multi-select.vue +28 -0
- package/src/vue/normal/multi-tree-select.vue +24 -0
- package/src/vue/normal/number-input.vue +26 -0
- package/src/vue/normal/number-range-input.vue +36 -0
- package/src/vue/normal/password-input.vue +21 -0
- package/src/vue/normal/radio.vue +10 -0
- package/src/vue/normal/select.vue +26 -0
- package/src/vue/normal/slider.vue +10 -0
- package/src/vue/normal/switch.vue +19 -0
- package/src/vue/normal/table.vue +24 -0
- package/src/vue/normal/textarea.vue +19 -0
- package/src/vue/normal/tree-select.vue +24 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/file-picker.vue
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 16 16"
|
|
6
|
+
};
|
|
7
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
|
+
name: "FilePicker",
|
|
9
|
+
__name: "file-picker",
|
|
10
|
+
setup(__props) {
|
|
11
|
+
return (_ctx, _cache) => {
|
|
12
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", {
|
|
13
|
+
fill: "none",
|
|
14
|
+
stroke: "currentColor",
|
|
15
|
+
"stroke-linejoin": "round",
|
|
16
|
+
"stroke-width": "1.2",
|
|
17
|
+
d: "M1.5 3.5v9A1.5 1.5 0 0 0 3 14h10a1.5 1.5 0 0 0 1.5-1.5V5A1.5 1.5 0 0 0 13 3.5H8L6.5 2H3a1.5 1.5 0 0 0-1.5 1.5z"
|
|
18
|
+
}, null, -1), createElementVNode("path", {
|
|
19
|
+
fill: "none",
|
|
20
|
+
stroke: "currentColor",
|
|
21
|
+
"stroke-linecap": "round",
|
|
22
|
+
"stroke-linejoin": "round",
|
|
23
|
+
"stroke-width": "1.2",
|
|
24
|
+
d: "M8 6.5V11M6 8.5l2-2 2 2"
|
|
25
|
+
}, null, -1)])]);
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
//#endregion
|
|
30
|
+
export { _sfc_main as default };
|
|
31
|
+
|
|
32
|
+
//# sourceMappingURL=file-picker.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-picker.js","names":[],"sources":["../../../src/vue/normal/file-picker.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:4a04ae7666ad8aba gen:4 source:src/svg/normal/file-picker.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'FilePicker' })\n</script>\n<template>\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-linejoin=\"round\"\n stroke-width=\"1.2\"\n d=\"M1.5 3.5v9A1.5 1.5 0 0 0 3 14h10a1.5 1.5 0 0 0 1.5-1.5V5A1.5 1.5 0 0 0 13 3.5H8L6.5 2H3a1.5 1.5 0 0 0-1.5 1.5z\"\n />\n <path\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"1.2\"\n d=\"M8 6.5V11M6 8.5l2-2 2 2\"\n />\n </svg>\n</template>\n"],"mappings":";;;;;;;;;;;uBAKE,mBAgBM,OAhBN,YAgBM,CAAA,GAAA,OAAA,OAAA,OAAA,KAAA,CAfJ,mBAME,QAAA;IALA,MAAK;IACL,QAAO;IACP,mBAAgB;IAChB,gBAAa;IACb,GAAE;iBAEJ,mBAOE,QAAA;IANA,MAAK;IACL,QAAO;IACP,kBAAe;IACf,mBAAgB;IAChB,gBAAa;IACb,GAAE"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _$vue from "vue";
|
|
2
|
+
|
|
3
|
+
//#region src/vue/normal/file-picker.vue.d.ts
|
|
4
|
+
declare const __VLS_export: _$vue.DefineComponent<{}, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { _default };
|
|
8
|
+
//# sourceMappingURL=file-picker.vue.d.ts.map
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/form.vue
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 16 16"
|
|
6
|
+
};
|
|
7
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
|
+
name: "Form",
|
|
9
|
+
__name: "form",
|
|
10
|
+
setup(__props) {
|
|
11
|
+
return (_ctx, _cache) => {
|
|
12
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("rect", {
|
|
13
|
+
width: "14",
|
|
14
|
+
height: "10",
|
|
15
|
+
x: "1",
|
|
16
|
+
y: "3",
|
|
17
|
+
fill: "none",
|
|
18
|
+
stroke: "currentColor",
|
|
19
|
+
"stroke-width": "1.2",
|
|
20
|
+
rx: "1.5"
|
|
21
|
+
}, null, -1), createElementVNode("path", {
|
|
22
|
+
stroke: "currentColor",
|
|
23
|
+
"stroke-linecap": "round",
|
|
24
|
+
"stroke-width": "1.2",
|
|
25
|
+
d: "M3.5 6h2m2 0h5m-9 4h2m2 0h5"
|
|
26
|
+
}, null, -1)])]);
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
//#endregion
|
|
31
|
+
export { _sfc_main as default };
|
|
32
|
+
|
|
33
|
+
//# sourceMappingURL=form.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"form.js","names":[],"sources":["../../../src/vue/normal/form.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:20012f8d7f6c23c8 gen:4 source:src/svg/normal/form.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'Form' })\n</script>\n<template>\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <rect\n width=\"14\"\n height=\"10\"\n x=\"1\"\n y=\"3\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=\"1.2\"\n rx=\"1.5\"\n />\n <path\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-width=\"1.2\"\n d=\"M3.5 6h2m2 0h5m-9 4h2m2 0h5\"\n />\n </svg>\n</template>\n"],"mappings":";;;;;;;;;;;uBAKE,mBAiBM,OAjBN,YAiBM,CAAA,GAAA,OAAA,OAAA,OAAA,KAAA,CAhBJ,mBASE,QAAA;IARA,OAAM;IACN,QAAO;IACP,GAAE;IACF,GAAE;IACF,MAAK;IACL,QAAO;IACP,gBAAa;IACb,IAAG;iBAEL,mBAKE,QAAA;IAJA,QAAO;IACP,kBAAe;IACf,gBAAa;IACb,GAAE"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _$vue from "vue";
|
|
2
|
+
|
|
3
|
+
//#region src/vue/normal/form.vue.d.ts
|
|
4
|
+
declare const __VLS_export: _$vue.DefineComponent<{}, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { _default };
|
|
8
|
+
//# sourceMappingURL=form.vue.d.ts.map
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/input.vue
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 16 16"
|
|
6
|
+
};
|
|
7
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
|
+
name: "Input",
|
|
9
|
+
__name: "input",
|
|
10
|
+
setup(__props) {
|
|
11
|
+
return (_ctx, _cache) => {
|
|
12
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("rect", {
|
|
13
|
+
width: "14",
|
|
14
|
+
height: "8",
|
|
15
|
+
x: "1",
|
|
16
|
+
y: "4",
|
|
17
|
+
fill: "none",
|
|
18
|
+
stroke: "currentColor",
|
|
19
|
+
"stroke-width": "1.2",
|
|
20
|
+
rx: "1.5"
|
|
21
|
+
}, null, -1), createElementVNode("path", {
|
|
22
|
+
stroke: "currentColor",
|
|
23
|
+
"stroke-linecap": "round",
|
|
24
|
+
"stroke-width": "1.2",
|
|
25
|
+
d: "M4 6v4"
|
|
26
|
+
}, null, -1)])]);
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
//#endregion
|
|
31
|
+
export { _sfc_main as default };
|
|
32
|
+
|
|
33
|
+
//# sourceMappingURL=input.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"input.js","names":[],"sources":["../../../src/vue/normal/input.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:e44db37b1da5de90 gen:4 source:src/svg/normal/input.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'Input' })\n</script>\n<template>\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <rect\n width=\"14\"\n height=\"8\"\n x=\"1\"\n y=\"4\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=\"1.2\"\n rx=\"1.5\"\n />\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.2\" d=\"M4 6v4\" />\n </svg>\n</template>\n"],"mappings":";;;;;;;;;;;uBAKE,mBAYM,OAZN,YAYM,CAAA,GAAA,OAAA,OAAA,OAAA,KAAA,CAXJ,mBASE,QAAA;IARA,OAAM;IACN,QAAO;IACP,GAAE;IACF,GAAE;IACF,MAAK;IACL,QAAO;IACP,gBAAa;IACb,IAAG;iBAEL,mBAAmF,QAAA;IAA7E,QAAO;IAAe,kBAAe;IAAQ,gBAAa;IAAM,GAAE"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _$vue from "vue";
|
|
2
|
+
|
|
3
|
+
//#region src/vue/normal/input.vue.d.ts
|
|
4
|
+
declare const __VLS_export: _$vue.DefineComponent<{}, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { _default };
|
|
8
|
+
//# sourceMappingURL=input.vue.d.ts.map
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/multi-select.vue
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 16 16"
|
|
6
|
+
};
|
|
7
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
|
+
name: "MultiSelect",
|
|
9
|
+
__name: "multi-select",
|
|
10
|
+
setup(__props) {
|
|
11
|
+
return (_ctx, _cache) => {
|
|
12
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [
|
|
13
|
+
createElementVNode("rect", {
|
|
14
|
+
width: "14",
|
|
15
|
+
height: "8",
|
|
16
|
+
x: "1",
|
|
17
|
+
y: "4",
|
|
18
|
+
fill: "none",
|
|
19
|
+
stroke: "currentColor",
|
|
20
|
+
"stroke-width": "1.2",
|
|
21
|
+
rx: "1.5"
|
|
22
|
+
}, null, -1),
|
|
23
|
+
createElementVNode("rect", {
|
|
24
|
+
width: "3",
|
|
25
|
+
height: "4",
|
|
26
|
+
x: "3",
|
|
27
|
+
y: "6",
|
|
28
|
+
fill: "none",
|
|
29
|
+
stroke: "currentColor",
|
|
30
|
+
rx: "1"
|
|
31
|
+
}, null, -1),
|
|
32
|
+
createElementVNode("rect", {
|
|
33
|
+
width: "3",
|
|
34
|
+
height: "4",
|
|
35
|
+
x: "7",
|
|
36
|
+
y: "6",
|
|
37
|
+
fill: "none",
|
|
38
|
+
stroke: "currentColor",
|
|
39
|
+
rx: "1"
|
|
40
|
+
}, null, -1),
|
|
41
|
+
createElementVNode("path", {
|
|
42
|
+
fill: "none",
|
|
43
|
+
stroke: "currentColor",
|
|
44
|
+
"stroke-linecap": "round",
|
|
45
|
+
"stroke-linejoin": "round",
|
|
46
|
+
"stroke-width": "1.2",
|
|
47
|
+
d: "m11.5 7.5 1 1 1-1"
|
|
48
|
+
}, null, -1)
|
|
49
|
+
])]);
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
//#endregion
|
|
54
|
+
export { _sfc_main as default };
|
|
55
|
+
|
|
56
|
+
//# sourceMappingURL=multi-select.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"multi-select.js","names":[],"sources":["../../../src/vue/normal/multi-select.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:6f191e3005232311 gen:4 source:src/svg/normal/multi-select.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'MultiSelect' })\n</script>\n<template>\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <rect\n width=\"14\"\n height=\"8\"\n x=\"1\"\n y=\"4\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=\"1.2\"\n rx=\"1.5\"\n />\n <rect width=\"3\" height=\"4\" x=\"3\" y=\"6\" fill=\"none\" stroke=\"currentColor\" rx=\"1\" />\n <rect width=\"3\" height=\"4\" x=\"7\" y=\"6\" fill=\"none\" stroke=\"currentColor\" rx=\"1\" />\n <path\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"1.2\"\n d=\"m11.5 7.5 1 1 1-1\"\n />\n </svg>\n</template>\n"],"mappings":";;;;;;;;;;;uBAKE,mBAqBM,OArBN,YAqBM,CAAA,GAAA,OAAA,OAAA,OAAA,KAAA;IApBJ,mBASE,QAAA;KARA,OAAM;KACN,QAAO;KACP,GAAE;KACF,GAAE;KACF,MAAK;KACL,QAAO;KACP,gBAAa;KACb,IAAG;;IAEL,mBAAkF,QAAA;KAA5E,OAAM;KAAI,QAAO;KAAI,GAAE;KAAI,GAAE;KAAI,MAAK;KAAO,QAAO;KAAe,IAAG;;IAC5E,mBAAkF,QAAA;KAA5E,OAAM;KAAI,QAAO;KAAI,GAAE;KAAI,GAAE;KAAI,MAAK;KAAO,QAAO;KAAe,IAAG;;IAC5E,mBAOE,QAAA;KANA,MAAK;KACL,QAAO;KACP,kBAAe;KACf,mBAAgB;KAChB,gBAAa;KACb,GAAE"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _$vue from "vue";
|
|
2
|
+
|
|
3
|
+
//#region src/vue/normal/multi-select.vue.d.ts
|
|
4
|
+
declare const __VLS_export: _$vue.DefineComponent<{}, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { _default };
|
|
8
|
+
//# sourceMappingURL=multi-select.vue.d.ts.map
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/multi-tree-select.vue
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 16 16"
|
|
6
|
+
};
|
|
7
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
|
+
name: "MultiTreeSelect",
|
|
9
|
+
__name: "multi-tree-select",
|
|
10
|
+
setup(__props) {
|
|
11
|
+
return (_ctx, _cache) => {
|
|
12
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [
|
|
13
|
+
createElementVNode("path", {
|
|
14
|
+
stroke: "currentColor",
|
|
15
|
+
"stroke-linecap": "round",
|
|
16
|
+
"stroke-width": "1.2",
|
|
17
|
+
d: "M3 2v12m0-8h3m-3 5h3"
|
|
18
|
+
}, null, -1),
|
|
19
|
+
createElementVNode("rect", {
|
|
20
|
+
width: "3",
|
|
21
|
+
height: "3",
|
|
22
|
+
x: "7",
|
|
23
|
+
y: "4.5",
|
|
24
|
+
fill: "none",
|
|
25
|
+
stroke: "currentColor",
|
|
26
|
+
rx: ".5"
|
|
27
|
+
}, null, -1),
|
|
28
|
+
createElementVNode("rect", {
|
|
29
|
+
width: "3",
|
|
30
|
+
height: "3",
|
|
31
|
+
x: "7",
|
|
32
|
+
y: "9.5",
|
|
33
|
+
fill: "none",
|
|
34
|
+
stroke: "currentColor",
|
|
35
|
+
rx: ".5"
|
|
36
|
+
}, null, -1),
|
|
37
|
+
createElementVNode("path", {
|
|
38
|
+
fill: "none",
|
|
39
|
+
stroke: "currentColor",
|
|
40
|
+
"stroke-linecap": "round",
|
|
41
|
+
"stroke-linejoin": "round",
|
|
42
|
+
"stroke-width": "1.2",
|
|
43
|
+
d: "m12.5 7.5 1 1 1-1"
|
|
44
|
+
}, null, -1)
|
|
45
|
+
])]);
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
//#endregion
|
|
50
|
+
export { _sfc_main as default };
|
|
51
|
+
|
|
52
|
+
//# sourceMappingURL=multi-tree-select.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"multi-tree-select.js","names":[],"sources":["../../../src/vue/normal/multi-tree-select.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:64979963b9c5fe7a gen:4 source:src/svg/normal/multi-tree-select.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'MultiTreeSelect' })\n</script>\n<template>\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-width=\"1.2\"\n d=\"M3 2v12m0-8h3m-3 5h3\"\n />\n <rect width=\"3\" height=\"3\" x=\"7\" y=\"4.5\" fill=\"none\" stroke=\"currentColor\" rx=\".5\" />\n <rect width=\"3\" height=\"3\" x=\"7\" y=\"9.5\" fill=\"none\" stroke=\"currentColor\" rx=\".5\" />\n <path\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"1.2\"\n d=\"m12.5 7.5 1 1 1-1\"\n />\n </svg>\n</template>\n"],"mappings":";;;;;;;;;;;uBAKE,mBAiBM,OAjBN,YAiBM,CAAA,GAAA,OAAA,OAAA,OAAA,KAAA;IAhBJ,mBAKE,QAAA;KAJA,QAAO;KACP,kBAAe;KACf,gBAAa;KACb,GAAE;;IAEJ,mBAAqF,QAAA;KAA/E,OAAM;KAAI,QAAO;KAAI,GAAE;KAAI,GAAE;KAAM,MAAK;KAAO,QAAO;KAAe,IAAG;;IAC9E,mBAAqF,QAAA;KAA/E,OAAM;KAAI,QAAO;KAAI,GAAE;KAAI,GAAE;KAAM,MAAK;KAAO,QAAO;KAAe,IAAG;;IAC9E,mBAOE,QAAA;KANA,MAAK;KACL,QAAO;KACP,kBAAe;KACf,mBAAgB;KAChB,gBAAa;KACb,GAAE"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _$vue from "vue";
|
|
2
|
+
|
|
3
|
+
//#region src/vue/normal/multi-tree-select.vue.d.ts
|
|
4
|
+
declare const __VLS_export: _$vue.DefineComponent<{}, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { _default };
|
|
8
|
+
//# sourceMappingURL=multi-tree-select.vue.d.ts.map
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/number-input.vue
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 16 16"
|
|
6
|
+
};
|
|
7
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
|
+
name: "NumberInput",
|
|
9
|
+
__name: "number-input",
|
|
10
|
+
setup(__props) {
|
|
11
|
+
return (_ctx, _cache) => {
|
|
12
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("rect", {
|
|
13
|
+
width: "14",
|
|
14
|
+
height: "8",
|
|
15
|
+
x: "1",
|
|
16
|
+
y: "4",
|
|
17
|
+
fill: "none",
|
|
18
|
+
stroke: "currentColor",
|
|
19
|
+
"stroke-width": "1.2",
|
|
20
|
+
rx: "1.5"
|
|
21
|
+
}, null, -1), createElementVNode("path", {
|
|
22
|
+
fill: "none",
|
|
23
|
+
stroke: "currentColor",
|
|
24
|
+
"stroke-linecap": "round",
|
|
25
|
+
"stroke-linejoin": "round",
|
|
26
|
+
"stroke-width": "1.2",
|
|
27
|
+
d: "m4.2 7.2.8-.7V10m3-3c0-.6.5-1.1 1.1-1.1s1.1.5 1.1 1.1c0 .5-.3.9-.6 1.2L8 10h3"
|
|
28
|
+
}, null, -1)])]);
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
//#endregion
|
|
33
|
+
export { _sfc_main as default };
|
|
34
|
+
|
|
35
|
+
//# sourceMappingURL=number-input.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"number-input.js","names":[],"sources":["../../../src/vue/normal/number-input.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:90df099f6bf6ba91 gen:4 source:src/svg/normal/number-input.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'NumberInput' })\n</script>\n<template>\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <rect\n width=\"14\"\n height=\"8\"\n x=\"1\"\n y=\"4\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=\"1.2\"\n rx=\"1.5\"\n />\n <path\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"1.2\"\n d=\"m4.2 7.2.8-.7V10m3-3c0-.6.5-1.1 1.1-1.1s1.1.5 1.1 1.1c0 .5-.3.9-.6 1.2L8 10h3\"\n />\n </svg>\n</template>\n"],"mappings":";;;;;;;;;;;uBAKE,mBAmBM,OAnBN,YAmBM,CAAA,GAAA,OAAA,OAAA,OAAA,KAAA,CAlBJ,mBASE,QAAA;IARA,OAAM;IACN,QAAO;IACP,GAAE;IACF,GAAE;IACF,MAAK;IACL,QAAO;IACP,gBAAa;IACb,IAAG;iBAEL,mBAOE,QAAA;IANA,MAAK;IACL,QAAO;IACP,kBAAe;IACf,mBAAgB;IAChB,gBAAa;IACb,GAAE"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _$vue from "vue";
|
|
2
|
+
|
|
3
|
+
//#region src/vue/normal/number-input.vue.d.ts
|
|
4
|
+
declare const __VLS_export: _$vue.DefineComponent<{}, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { _default };
|
|
8
|
+
//# sourceMappingURL=number-input.vue.d.ts.map
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/number-range-input.vue
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 16 16"
|
|
6
|
+
};
|
|
7
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
|
+
name: "NumberRangeInput",
|
|
9
|
+
__name: "number-range-input",
|
|
10
|
+
setup(__props) {
|
|
11
|
+
return (_ctx, _cache) => {
|
|
12
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [
|
|
13
|
+
createElementVNode("rect", {
|
|
14
|
+
width: "6",
|
|
15
|
+
height: "8",
|
|
16
|
+
x: "1",
|
|
17
|
+
y: "4",
|
|
18
|
+
fill: "none",
|
|
19
|
+
stroke: "currentColor",
|
|
20
|
+
"stroke-width": "1.2",
|
|
21
|
+
rx: "1.5"
|
|
22
|
+
}, null, -1),
|
|
23
|
+
createElementVNode("rect", {
|
|
24
|
+
width: "6",
|
|
25
|
+
height: "8",
|
|
26
|
+
x: "9",
|
|
27
|
+
y: "4",
|
|
28
|
+
fill: "none",
|
|
29
|
+
stroke: "currentColor",
|
|
30
|
+
"stroke-width": "1.2",
|
|
31
|
+
rx: "1.5"
|
|
32
|
+
}, null, -1),
|
|
33
|
+
createElementVNode("path", {
|
|
34
|
+
fill: "none",
|
|
35
|
+
stroke: "currentColor",
|
|
36
|
+
"stroke-linecap": "round",
|
|
37
|
+
"stroke-linejoin": "round",
|
|
38
|
+
"stroke-width": "1.2",
|
|
39
|
+
d: "M7.5 8h1m-5.3-.8.8-.7V10m9-2.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0V10"
|
|
40
|
+
}, null, -1)
|
|
41
|
+
])]);
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
});
|
|
45
|
+
//#endregion
|
|
46
|
+
export { _sfc_main as default };
|
|
47
|
+
|
|
48
|
+
//# sourceMappingURL=number-range-input.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"number-range-input.js","names":[],"sources":["../../../src/vue/normal/number-range-input.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:f854bb4a31875425 gen:4 source:src/svg/normal/number-range-input.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'NumberRangeInput' })\n</script>\n<template>\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <rect\n width=\"6\"\n height=\"8\"\n x=\"1\"\n y=\"4\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=\"1.2\"\n rx=\"1.5\"\n />\n <rect\n width=\"6\"\n height=\"8\"\n x=\"9\"\n y=\"4\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=\"1.2\"\n rx=\"1.5\"\n />\n <path\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"1.2\"\n d=\"M7.5 8h1m-5.3-.8.8-.7V10m9-2.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0V10\"\n />\n </svg>\n</template>\n"],"mappings":";;;;;;;;;;;uBAKE,mBA6BM,OA7BN,YA6BM,CAAA,GAAA,OAAA,OAAA,OAAA,KAAA;IA5BJ,mBASE,QAAA;KARA,OAAM;KACN,QAAO;KACP,GAAE;KACF,GAAE;KACF,MAAK;KACL,QAAO;KACP,gBAAa;KACb,IAAG;;IAEL,mBASE,QAAA;KARA,OAAM;KACN,QAAO;KACP,GAAE;KACF,GAAE;KACF,MAAK;KACL,QAAO;KACP,gBAAa;KACb,IAAG;;IAEL,mBAOE,QAAA;KANA,MAAK;KACL,QAAO;KACP,kBAAe;KACf,mBAAgB;KAChB,gBAAa;KACb,GAAE"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _$vue from "vue";
|
|
2
|
+
|
|
3
|
+
//#region src/vue/normal/number-range-input.vue.d.ts
|
|
4
|
+
declare const __VLS_export: _$vue.DefineComponent<{}, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { _default };
|
|
8
|
+
//# sourceMappingURL=number-range-input.vue.d.ts.map
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/password-input.vue
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 16 16"
|
|
6
|
+
};
|
|
7
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
|
+
name: "PasswordInput",
|
|
9
|
+
__name: "password-input",
|
|
10
|
+
setup(__props) {
|
|
11
|
+
return (_ctx, _cache) => {
|
|
12
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [
|
|
13
|
+
createElementVNode("rect", {
|
|
14
|
+
width: "14",
|
|
15
|
+
height: "8",
|
|
16
|
+
x: "1",
|
|
17
|
+
y: "4",
|
|
18
|
+
fill: "none",
|
|
19
|
+
stroke: "currentColor",
|
|
20
|
+
"stroke-width": "1.2",
|
|
21
|
+
rx: "1.5"
|
|
22
|
+
}, null, -1),
|
|
23
|
+
createElementVNode("circle", {
|
|
24
|
+
cx: "5",
|
|
25
|
+
cy: "8",
|
|
26
|
+
r: "1",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}, null, -1),
|
|
29
|
+
createElementVNode("circle", {
|
|
30
|
+
cx: "8",
|
|
31
|
+
cy: "8",
|
|
32
|
+
r: "1",
|
|
33
|
+
fill: "currentColor"
|
|
34
|
+
}, null, -1),
|
|
35
|
+
createElementVNode("circle", {
|
|
36
|
+
cx: "11",
|
|
37
|
+
cy: "8",
|
|
38
|
+
r: "1",
|
|
39
|
+
fill: "currentColor"
|
|
40
|
+
}, null, -1)
|
|
41
|
+
])]);
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
});
|
|
45
|
+
//#endregion
|
|
46
|
+
export { _sfc_main as default };
|
|
47
|
+
|
|
48
|
+
//# sourceMappingURL=password-input.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"password-input.js","names":[],"sources":["../../../src/vue/normal/password-input.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:26fbc60c392e90d3 gen:4 source:src/svg/normal/password-input.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'PasswordInput' })\n</script>\n<template>\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <rect\n width=\"14\"\n height=\"8\"\n x=\"1\"\n y=\"4\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=\"1.2\"\n rx=\"1.5\"\n />\n <circle cx=\"5\" cy=\"8\" r=\"1\" fill=\"currentColor\" />\n <circle cx=\"8\" cy=\"8\" r=\"1\" fill=\"currentColor\" />\n <circle cx=\"11\" cy=\"8\" r=\"1\" fill=\"currentColor\" />\n </svg>\n</template>\n"],"mappings":";;;;;;;;;;;uBAKE,mBAcM,OAdN,YAcM,CAAA,GAAA,OAAA,OAAA,OAAA,KAAA;IAbJ,mBASE,QAAA;KARA,OAAM;KACN,QAAO;KACP,GAAE;KACF,GAAE;KACF,MAAK;KACL,QAAO;KACP,gBAAa;KACb,IAAG;;IAEL,mBAAkD,UAAA;KAA1C,IAAG;KAAI,IAAG;KAAI,GAAE;KAAI,MAAK;;IACjC,mBAAkD,UAAA;KAA1C,IAAG;KAAI,IAAG;KAAI,GAAE;KAAI,MAAK;;IACjC,mBAAmD,UAAA;KAA3C,IAAG;KAAK,IAAG;KAAI,GAAE;KAAI,MAAK"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _$vue from "vue";
|
|
2
|
+
|
|
3
|
+
//#region src/vue/normal/password-input.vue.d.ts
|
|
4
|
+
declare const __VLS_export: _$vue.DefineComponent<{}, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { _default };
|
|
8
|
+
//# sourceMappingURL=password-input.vue.d.ts.map
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/radio.vue
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 16 16"
|
|
6
|
+
};
|
|
7
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
|
+
name: "Radio",
|
|
9
|
+
__name: "radio",
|
|
10
|
+
setup(__props) {
|
|
11
|
+
return (_ctx, _cache) => {
|
|
12
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("circle", {
|
|
13
|
+
cx: "8",
|
|
14
|
+
cy: "8",
|
|
15
|
+
r: "6",
|
|
16
|
+
fill: "none",
|
|
17
|
+
stroke: "currentColor",
|
|
18
|
+
"stroke-width": "1.2"
|
|
19
|
+
}, null, -1), createElementVNode("circle", {
|
|
20
|
+
cx: "8",
|
|
21
|
+
cy: "8",
|
|
22
|
+
r: "2.5",
|
|
23
|
+
fill: "currentColor"
|
|
24
|
+
}, null, -1)])]);
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
//#endregion
|
|
29
|
+
export { _sfc_main as default };
|
|
30
|
+
|
|
31
|
+
//# sourceMappingURL=radio.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"radio.js","names":[],"sources":["../../../src/vue/normal/radio.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:319c6022d6eb6d16 gen:4 source:src/svg/normal/radio.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'Radio' })\n</script>\n<template>\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <circle cx=\"8\" cy=\"8\" r=\"6\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.2\" />\n <circle cx=\"8\" cy=\"8\" r=\"2.5\" fill=\"currentColor\" />\n </svg>\n</template>\n"],"mappings":";;;;;;;;;;;uBAKE,mBAGM,OAHN,YAGM,CAAA,GAAA,OAAA,OAAA,OAAA,KAAA,CAFJ,mBAAmF,UAAA;IAA3E,IAAG;IAAI,IAAG;IAAI,GAAE;IAAI,MAAK;IAAO,QAAO;IAAe,gBAAa;iBAC3E,mBAAoD,UAAA;IAA5C,IAAG;IAAI,IAAG;IAAI,GAAE;IAAM,MAAK"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _$vue from "vue";
|
|
2
|
+
|
|
3
|
+
//#region src/vue/normal/radio.vue.d.ts
|
|
4
|
+
declare const __VLS_export: _$vue.DefineComponent<{}, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { _default };
|
|
8
|
+
//# sourceMappingURL=radio.vue.d.ts.map
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/select.vue
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 16 16"
|
|
6
|
+
};
|
|
7
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
|
+
name: "Select",
|
|
9
|
+
__name: "select",
|
|
10
|
+
setup(__props) {
|
|
11
|
+
return (_ctx, _cache) => {
|
|
12
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("rect", {
|
|
13
|
+
width: "14",
|
|
14
|
+
height: "8",
|
|
15
|
+
x: "1",
|
|
16
|
+
y: "4",
|
|
17
|
+
fill: "none",
|
|
18
|
+
stroke: "currentColor",
|
|
19
|
+
"stroke-width": "1.2",
|
|
20
|
+
rx: "1.5"
|
|
21
|
+
}, null, -1), createElementVNode("path", {
|
|
22
|
+
fill: "none",
|
|
23
|
+
stroke: "currentColor",
|
|
24
|
+
"stroke-linecap": "round",
|
|
25
|
+
"stroke-linejoin": "round",
|
|
26
|
+
"stroke-width": "1.2",
|
|
27
|
+
d: "M10.5 7.5 12 9l1.5-1.5"
|
|
28
|
+
}, null, -1)])]);
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
//#endregion
|
|
33
|
+
export { _sfc_main as default };
|
|
34
|
+
|
|
35
|
+
//# sourceMappingURL=select.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select.js","names":[],"sources":["../../../src/vue/normal/select.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:4d8d6103d6221efb gen:4 source:src/svg/normal/select.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'Select' })\n</script>\n<template>\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <rect\n width=\"14\"\n height=\"8\"\n x=\"1\"\n y=\"4\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=\"1.2\"\n rx=\"1.5\"\n />\n <path\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"1.2\"\n d=\"M10.5 7.5 12 9l1.5-1.5\"\n />\n </svg>\n</template>\n"],"mappings":";;;;;;;;;;;uBAKE,mBAmBM,OAnBN,YAmBM,CAAA,GAAA,OAAA,OAAA,OAAA,KAAA,CAlBJ,mBASE,QAAA;IARA,OAAM;IACN,QAAO;IACP,GAAE;IACF,GAAE;IACF,MAAK;IACL,QAAO;IACP,gBAAa;IACb,IAAG;iBAEL,mBAOE,QAAA;IANA,MAAK;IACL,QAAO;IACP,kBAAe;IACf,mBAAgB;IAChB,gBAAa;IACb,GAAE"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _$vue from "vue";
|
|
2
|
+
|
|
3
|
+
//#region src/vue/normal/select.vue.d.ts
|
|
4
|
+
declare const __VLS_export: _$vue.DefineComponent<{}, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { _default };
|
|
8
|
+
//# sourceMappingURL=select.vue.d.ts.map
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/slider.vue
|
|
3
|
+
const _hoisted_1 = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 16 16"
|
|
6
|
+
};
|
|
7
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
|
+
name: "Slider",
|
|
9
|
+
__name: "slider",
|
|
10
|
+
setup(__props) {
|
|
11
|
+
return (_ctx, _cache) => {
|
|
12
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", {
|
|
13
|
+
stroke: "currentColor",
|
|
14
|
+
"stroke-linecap": "round",
|
|
15
|
+
"stroke-width": "1.2",
|
|
16
|
+
d: "M1.5 8h13"
|
|
17
|
+
}, null, -1), createElementVNode("circle", {
|
|
18
|
+
cx: "6",
|
|
19
|
+
cy: "8",
|
|
20
|
+
r: "2.2",
|
|
21
|
+
fill: "currentColor"
|
|
22
|
+
}, null, -1)])]);
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
//#endregion
|
|
27
|
+
export { _sfc_main as default };
|
|
28
|
+
|
|
29
|
+
//# sourceMappingURL=slider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"slider.js","names":[],"sources":["../../../src/vue/normal/slider.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:7e3fc8da8ac04f05 gen:4 source:src/svg/normal/slider.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'Slider' })\n</script>\n<template>\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\">\n <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"1.2\" d=\"M1.5 8h13\" />\n <circle cx=\"6\" cy=\"8\" r=\"2.2\" fill=\"currentColor\" />\n </svg>\n</template>\n"],"mappings":";;;;;;;;;;;uBAKE,mBAGM,OAHN,YAGM,CAAA,GAAA,OAAA,OAAA,OAAA,KAAA,CAFJ,mBAAsF,QAAA;IAAhF,QAAO;IAAe,kBAAe;IAAQ,gBAAa;IAAM,GAAE;iBACxE,mBAAoD,UAAA;IAA5C,IAAG;IAAI,IAAG;IAAI,GAAE;IAAM,MAAK"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _$vue from "vue";
|
|
2
|
+
|
|
3
|
+
//#region src/vue/normal/slider.vue.d.ts
|
|
4
|
+
declare const __VLS_export: _$vue.DefineComponent<{}, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { _default };
|
|
8
|
+
//# sourceMappingURL=slider.vue.d.ts.map
|