@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,33 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/switch.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: "Switch",
|
|
9
|
+
__name: "switch",
|
|
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: "4"
|
|
21
|
+
}, null, -1), createElementVNode("circle", {
|
|
22
|
+
cx: "11",
|
|
23
|
+
cy: "8",
|
|
24
|
+
r: "2.2",
|
|
25
|
+
fill: "currentColor"
|
|
26
|
+
}, null, -1)])]);
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
//#endregion
|
|
31
|
+
export { _sfc_main as default };
|
|
32
|
+
|
|
33
|
+
//# sourceMappingURL=switch.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"switch.js","names":[],"sources":["../../../src/vue/normal/switch.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:f1c7a278d1335bcc gen:4 source:src/svg/normal/switch.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'Switch' })\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=\"4\"\n />\n <circle cx=\"11\" cy=\"8\" r=\"2.2\" fill=\"currentColor\" />\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,mBAAqD,UAAA;IAA7C,IAAG;IAAK,IAAG;IAAI,GAAE;IAAM,MAAK"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _$vue from "vue";
|
|
2
|
+
|
|
3
|
+
//#region src/vue/normal/switch.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=switch.vue.d.ts.map
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/table.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: "Table",
|
|
9
|
+
__name: "table",
|
|
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: "14",
|
|
15
|
+
x: "1",
|
|
16
|
+
y: "1",
|
|
17
|
+
fill: "none",
|
|
18
|
+
stroke: "currentColor",
|
|
19
|
+
"stroke-width": "1.2",
|
|
20
|
+
rx: "2"
|
|
21
|
+
}, null, -1), createElementVNode("path", {
|
|
22
|
+
stroke: "currentColor",
|
|
23
|
+
"stroke-linecap": "round",
|
|
24
|
+
"stroke-width": "1.2",
|
|
25
|
+
d: "M1 5h14M1 10h14M5 1v14"
|
|
26
|
+
}, null, -1)])]);
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
//#endregion
|
|
31
|
+
export { _sfc_main as default };
|
|
32
|
+
|
|
33
|
+
//# sourceMappingURL=table.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table.js","names":[],"sources":["../../../src/vue/normal/table.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:060a9fb4049065ce gen:4 source:src/svg/normal/table.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'Table' })\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=\"14\"\n x=\"1\"\n y=\"1\"\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-width=\"1.2\"\n rx=\"2\"\n />\n <path\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-width=\"1.2\"\n d=\"M1 5h14M1 10h14M5 1v14\"\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/table.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=table.vue.d.ts.map
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/textarea.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: "Textarea",
|
|
9
|
+
__name: "textarea",
|
|
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: "12",
|
|
15
|
+
x: "1",
|
|
16
|
+
y: "2",
|
|
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 5.5h8m-8 3h5"
|
|
26
|
+
}, null, -1)])]);
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
//#endregion
|
|
31
|
+
export { _sfc_main as default };
|
|
32
|
+
|
|
33
|
+
//# sourceMappingURL=textarea.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"textarea.js","names":[],"sources":["../../../src/vue/normal/textarea.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:114c772c658f8671 gen:4 source:src/svg/normal/textarea.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'Textarea' })\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=\"12\"\n x=\"1\"\n y=\"2\"\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 5.5h8m-8 3h5\" />\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,mBAA4F,QAAA;IAAtF,QAAO;IAAe,kBAAe;IAAQ,gBAAa;IAAM,GAAE"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _$vue from "vue";
|
|
2
|
+
|
|
3
|
+
//#region src/vue/normal/textarea.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=textarea.vue.d.ts.map
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { createElementBlock, createElementVNode, defineComponent, openBlock } from "vue";
|
|
2
|
+
//#region src/vue/normal/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: "TreeSelect",
|
|
9
|
+
__name: "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-8h4m-4 5h4"
|
|
18
|
+
}, null, -1),
|
|
19
|
+
createElementVNode("circle", {
|
|
20
|
+
cx: "9",
|
|
21
|
+
cy: "6",
|
|
22
|
+
r: "1",
|
|
23
|
+
fill: "currentColor"
|
|
24
|
+
}, null, -1),
|
|
25
|
+
createElementVNode("circle", {
|
|
26
|
+
cx: "9",
|
|
27
|
+
cy: "11",
|
|
28
|
+
r: "1",
|
|
29
|
+
fill: "currentColor"
|
|
30
|
+
}, null, -1),
|
|
31
|
+
createElementVNode("path", {
|
|
32
|
+
fill: "none",
|
|
33
|
+
stroke: "currentColor",
|
|
34
|
+
"stroke-linecap": "round",
|
|
35
|
+
"stroke-linejoin": "round",
|
|
36
|
+
"stroke-width": "1.2",
|
|
37
|
+
d: "m12 7.5 1 1 1-1"
|
|
38
|
+
}, null, -1)
|
|
39
|
+
])]);
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
//#endregion
|
|
44
|
+
export { _sfc_main as default };
|
|
45
|
+
|
|
46
|
+
//# sourceMappingURL=tree-select.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tree-select.js","names":[],"sources":["../../../src/vue/normal/tree-select.vue"],"sourcesContent":["<!-- @veltra/icons generated sha256:c2686fb6a1b34f86 gen:4 source:src/svg/normal/tree-select.svg -->\n<script setup lang=\"ts\">\ndefineOptions({ name: 'TreeSelect' })\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-8h4m-4 5h4\"\n />\n <circle cx=\"9\" cy=\"6\" r=\"1\" fill=\"currentColor\" />\n <circle cx=\"9\" cy=\"11\" r=\"1\" fill=\"currentColor\" />\n <path\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"1.2\"\n d=\"m12 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,mBAAkD,UAAA;KAA1C,IAAG;KAAI,IAAG;KAAI,GAAE;KAAI,MAAK;;IACjC,mBAAmD,UAAA;KAA3C,IAAG;KAAI,IAAG;KAAK,GAAE;KAAI,MAAK;;IAClC,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/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=tree-select.vue.d.ts.map
|
package/package.json
CHANGED
package/src/normal.ts
CHANGED
|
@@ -12,6 +12,7 @@ export { default as ArrowRight } from './vue/normal/arrow-right.vue'
|
|
|
12
12
|
export { default as ArrowUp } from './vue/normal/arrow-up.vue'
|
|
13
13
|
export { default as ArrowUpdown } from './vue/normal/arrow-updown.vue'
|
|
14
14
|
export { default as Attach } from './vue/normal/attach.vue'
|
|
15
|
+
export { default as AutoComplete } from './vue/normal/auto-complete.vue'
|
|
15
16
|
export { default as Backtop } from './vue/normal/backtop.vue'
|
|
16
17
|
export { default as Bell } from './vue/normal/bell.vue'
|
|
17
18
|
export { default as BellFilled } from './vue/normal/bell-filled.vue'
|
|
@@ -25,8 +26,10 @@ export { default as CaretLeft } from './vue/normal/caret-left.vue'
|
|
|
25
26
|
export { default as CaretRight } from './vue/normal/caret-right.vue'
|
|
26
27
|
export { default as CaretTop } from './vue/normal/caret-top.vue'
|
|
27
28
|
export { default as Cart } from './vue/normal/cart.vue'
|
|
29
|
+
export { default as Cascader } from './vue/normal/cascader.vue'
|
|
28
30
|
export { default as ChartPie } from './vue/normal/chart-pie.vue'
|
|
29
31
|
export { default as Check } from './vue/normal/check.vue'
|
|
32
|
+
export { default as Checkbox } from './vue/normal/checkbox.vue'
|
|
30
33
|
export { default as CheckRectangleFilled } from './vue/normal/check-rectangle-filled.vue'
|
|
31
34
|
export { default as CircleCheck } from './vue/normal/circle-check.vue'
|
|
32
35
|
export { default as CircleCheckFilled } from './vue/normal/circle-check-filled.vue'
|
|
@@ -41,6 +44,8 @@ export { default as CreditCard } from './vue/normal/credit-card.vue'
|
|
|
41
44
|
export { default as DArrowLeft } from './vue/normal/d-arrow-left.vue'
|
|
42
45
|
export { default as DArrowRight } from './vue/normal/d-arrow-right.vue'
|
|
43
46
|
export { default as Database } from './vue/normal/database.vue'
|
|
47
|
+
export { default as DatePicker } from './vue/normal/date-picker.vue'
|
|
48
|
+
export { default as DateRangePicker } from './vue/normal/date-range-picker.vue'
|
|
44
49
|
export { default as DeepThinking } from './vue/normal/deep-thinking.vue'
|
|
45
50
|
export { default as Delete } from './vue/normal/delete.vue'
|
|
46
51
|
export { default as Discount } from './vue/normal/discount.vue'
|
|
@@ -52,12 +57,14 @@ export { default as Empty } from './vue/normal/empty.vue'
|
|
|
52
57
|
export { default as Enter } from './vue/normal/enter.vue'
|
|
53
58
|
export { default as Female } from './vue/normal/female.vue'
|
|
54
59
|
export { default as FileAdd } from './vue/normal/file-add.vue'
|
|
60
|
+
export { default as FilePicker } from './vue/normal/file-picker.vue'
|
|
55
61
|
export { default as Filter } from './vue/normal/filter.vue'
|
|
56
62
|
export { default as Flag } from './vue/normal/flag.vue'
|
|
57
63
|
export { default as Folder } from './vue/normal/folder.vue'
|
|
58
64
|
export { default as FolderAdd } from './vue/normal/folder-add.vue'
|
|
59
65
|
export { default as FolderOpened } from './vue/normal/folder-opened.vue'
|
|
60
66
|
export { default as Fork } from './vue/normal/fork.vue'
|
|
67
|
+
export { default as Form } from './vue/normal/form.vue'
|
|
61
68
|
export { default as Help } from './vue/normal/help.vue'
|
|
62
69
|
export { default as Hide } from './vue/normal/hide.vue'
|
|
63
70
|
export { default as History } from './vue/normal/history.vue'
|
|
@@ -67,6 +74,7 @@ export { default as House } from './vue/normal/house.vue'
|
|
|
67
74
|
export { default as HouseFilled } from './vue/normal/house-filled.vue'
|
|
68
75
|
export { default as InfoCircle } from './vue/normal/info-circle.vue'
|
|
69
76
|
export { default as InfoFilled } from './vue/normal/info-filled.vue'
|
|
77
|
+
export { default as Input } from './vue/normal/input.vue'
|
|
70
78
|
export { default as InsertToNext } from './vue/normal/insert-to-next.vue'
|
|
71
79
|
export { default as InsertToPrev } from './vue/normal/insert-to-prev.vue'
|
|
72
80
|
export { default as Internet } from './vue/normal/internet.vue'
|
|
@@ -92,8 +100,13 @@ export { default as MoreVertical } from './vue/normal/more-vertical.vue'
|
|
|
92
100
|
export { default as MostlyCloudy } from './vue/normal/mostly-cloudy.vue'
|
|
93
101
|
export { default as Move } from './vue/normal/move.vue'
|
|
94
102
|
export { default as MoveHorizontal } from './vue/normal/move-horizontal.vue'
|
|
103
|
+
export { default as MultiSelect } from './vue/normal/multi-select.vue'
|
|
104
|
+
export { default as MultiTreeSelect } from './vue/normal/multi-tree-select.vue'
|
|
105
|
+
export { default as NumberInput } from './vue/normal/number-input.vue'
|
|
106
|
+
export { default as NumberRangeInput } from './vue/normal/number-range-input.vue'
|
|
95
107
|
export { default as PageFirst } from './vue/normal/page-first.vue'
|
|
96
108
|
export { default as PageLast } from './vue/normal/page-last.vue'
|
|
109
|
+
export { default as PasswordInput } from './vue/normal/password-input.vue'
|
|
97
110
|
export { default as PictureRounded } from './vue/normal/picture-rounded.vue'
|
|
98
111
|
export { default as Pin } from './vue/normal/pin.vue'
|
|
99
112
|
export { default as PinFilled } from './vue/normal/pin-filled.vue'
|
|
@@ -103,6 +116,7 @@ export { default as Printer } from './vue/normal/printer.vue'
|
|
|
103
116
|
export { default as QrCode } from './vue/normal/qr-code.vue'
|
|
104
117
|
export { default as QuestionFilled } from './vue/normal/question-filled.vue'
|
|
105
118
|
export { default as Queue } from './vue/normal/queue.vue'
|
|
119
|
+
export { default as Radio } from './vue/normal/radio.vue'
|
|
106
120
|
export { default as Recover } from './vue/normal/recover.vue'
|
|
107
121
|
export { default as Refresh } from './vue/normal/refresh.vue'
|
|
108
122
|
export { default as Relativity } from './vue/normal/relativity.vue'
|
|
@@ -119,20 +133,26 @@ export { default as Save } from './vue/normal/save.vue'
|
|
|
119
133
|
export { default as Scan } from './vue/normal/scan.vue'
|
|
120
134
|
export { default as Search } from './vue/normal/search.vue'
|
|
121
135
|
export { default as Secured } from './vue/normal/secured.vue'
|
|
136
|
+
export { default as Select } from './vue/normal/select.vue'
|
|
122
137
|
export { default as Send } from './vue/normal/send.vue'
|
|
123
138
|
export { default as Server } from './vue/normal/server.vue'
|
|
124
139
|
export { default as Service } from './vue/normal/service.vue'
|
|
125
140
|
export { default as Setting } from './vue/normal/setting.vue'
|
|
126
141
|
export { default as Share } from './vue/normal/share.vue'
|
|
142
|
+
export { default as Slider } from './vue/normal/slider.vue'
|
|
127
143
|
export { default as Sort } from './vue/normal/sort.vue'
|
|
128
144
|
export { default as SortLeft } from './vue/normal/sort-left.vue'
|
|
129
145
|
export { default as SortRight } from './vue/normal/sort-right.vue'
|
|
130
146
|
export { default as Star } from './vue/normal/star.vue'
|
|
131
147
|
export { default as StarFilled } from './vue/normal/star-filled.vue'
|
|
132
148
|
export { default as Sun } from './vue/normal/sun.vue'
|
|
149
|
+
export { default as Switch } from './vue/normal/switch.vue'
|
|
150
|
+
export { default as Table } from './vue/normal/table.vue'
|
|
151
|
+
export { default as Textarea } from './vue/normal/textarea.vue'
|
|
133
152
|
export { default as Time } from './vue/normal/time.vue'
|
|
134
153
|
export { default as Tips } from './vue/normal/tips.vue'
|
|
135
154
|
export { default as Tools } from './vue/normal/tools.vue'
|
|
155
|
+
export { default as TreeSelect } from './vue/normal/tree-select.vue'
|
|
136
156
|
export { default as TriangleAlert } from './vue/normal/triangle-alert.vue'
|
|
137
157
|
export { default as Unlink } from './vue/normal/unlink.vue'
|
|
138
158
|
export { default as Unlock } from './vue/normal/unlock.vue'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="14" height="8" x="1" y="4" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M4 6v4m7-3h2m-1-1v2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="6" height="12" x="1" y="2" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><rect width="6" height="12" x="9" y="2" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" d="m4 7.5 1 1-1 1"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="12" height="12" x="2" y="2" fill="none" stroke="currentColor" stroke-width="1.2" rx="2"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" d="m5 8 2 2 4-4"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="12" height="11" x="2" y="3" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M2 7h12M5 1v3m6-3v3"/><circle cx="5" cy="9.5" r=".6" fill="currentColor"/><circle cx="8" cy="9.5" r=".6" fill="currentColor"/><circle cx="11" cy="9.5" r=".6" fill="currentColor"/><circle cx="5" cy="12" r=".6" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="14" height="11" x="1" y="3" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M1 7h14M4 1v3m8-3v3"/><rect width="8" height="2" x="4" y="9.5" fill="currentColor" rx="1"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="1.2" 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"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" d="M8 6.5V11M6 8.5l2-2 2 2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="14" height="10" x="1" y="3" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M3.5 6h2m2 0h5m-9 4h2m2 0h5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="14" height="8" x="1" y="4" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M4 6v4"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="14" height="8" x="1" y="4" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><rect width="3" height="4" x="3" y="6" fill="none" stroke="currentColor" rx="1"/><rect width="3" height="4" x="7" y="6" fill="none" stroke="currentColor" rx="1"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" d="m11.5 7.5 1 1 1-1"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M3 2v12m0-8h3m-3 5h3"/><rect width="3" height="3" x="7" y="4.5" fill="none" stroke="currentColor" rx=".5"/><rect width="3" height="3" x="7" y="9.5" fill="none" stroke="currentColor" rx=".5"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" d="m12.5 7.5 1 1 1-1"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="14" height="8" x="1" y="4" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" 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"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="6" height="8" x="1" y="4" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><rect width="6" height="8" x="9" y="4" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" d="M7.5 8h1m-5.3-.8.8-.7V10m9-2.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0V10"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="14" height="8" x="1" y="4" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><circle cx="5" cy="8" r="1" fill="currentColor"/><circle cx="8" cy="8" r="1" fill="currentColor"/><circle cx="11" cy="8" r="1" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><circle cx="8" cy="8" r="6" fill="none" stroke="currentColor" stroke-width="1.2"/><circle cx="8" cy="8" r="2.5" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="14" height="8" x="1" y="4" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" d="M10.5 7.5 12 9l1.5-1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M1.5 8h13"/><circle cx="6" cy="8" r="2.2" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="14" height="8" x="1" y="4" fill="none" stroke="currentColor" stroke-width="1.2" rx="4"/><circle cx="11" cy="8" r="2.2" fill="currentColor"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="14" height="14" x="1" y="1" fill="none" stroke="currentColor" stroke-width="1.2" rx="2"/><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M1 5h14M1 10h14M5 1v14"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect width="14" height="12" x="1" y="2" fill="none" stroke="currentColor" stroke-width="1.2" rx="1.5"/><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M4 5.5h8m-8 3h5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M3 2v12m0-8h4m-4 5h4"/><circle cx="9" cy="6" r="1" fill="currentColor"/><circle cx="9" cy="11" r="1" fill="currentColor"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" d="m12 7.5 1 1 1-1"/></svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<!-- @veltra/icons generated sha256:c84f3c7f623345d5 gen:4 source:src/svg/normal/auto-complete.svg -->
|
|
2
|
+
<script setup lang="ts">
|
|
3
|
+
defineOptions({ name: 'AutoComplete' })
|
|
4
|
+
</script>
|
|
5
|
+
<template>
|
|
6
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
7
|
+
<rect
|
|
8
|
+
width="14"
|
|
9
|
+
height="8"
|
|
10
|
+
x="1"
|
|
11
|
+
y="4"
|
|
12
|
+
fill="none"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
stroke-width="1.2"
|
|
15
|
+
rx="1.5"
|
|
16
|
+
/>
|
|
17
|
+
<path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M4 6v4m7-3h2m-1-1v2" />
|
|
18
|
+
</svg>
|
|
19
|
+
</template>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<!-- @veltra/icons generated sha256:57ecc5816a32b162 gen:4 source:src/svg/normal/cascader.svg -->
|
|
2
|
+
<script setup lang="ts">
|
|
3
|
+
defineOptions({ name: 'Cascader' })
|
|
4
|
+
</script>
|
|
5
|
+
<template>
|
|
6
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
7
|
+
<rect
|
|
8
|
+
width="6"
|
|
9
|
+
height="12"
|
|
10
|
+
x="1"
|
|
11
|
+
y="2"
|
|
12
|
+
fill="none"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
stroke-width="1.2"
|
|
15
|
+
rx="1.5"
|
|
16
|
+
/>
|
|
17
|
+
<rect
|
|
18
|
+
width="6"
|
|
19
|
+
height="12"
|
|
20
|
+
x="9"
|
|
21
|
+
y="2"
|
|
22
|
+
fill="none"
|
|
23
|
+
stroke="currentColor"
|
|
24
|
+
stroke-width="1.2"
|
|
25
|
+
rx="1.5"
|
|
26
|
+
/>
|
|
27
|
+
<path
|
|
28
|
+
fill="none"
|
|
29
|
+
stroke="currentColor"
|
|
30
|
+
stroke-linecap="round"
|
|
31
|
+
stroke-linejoin="round"
|
|
32
|
+
stroke-width="1.2"
|
|
33
|
+
d="m4 7.5 1 1-1 1"
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
</template>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!-- @veltra/icons generated sha256:68b112d42af5f61d gen:4 source:src/svg/normal/checkbox.svg -->
|
|
2
|
+
<script setup lang="ts">
|
|
3
|
+
defineOptions({ name: 'Checkbox' })
|
|
4
|
+
</script>
|
|
5
|
+
<template>
|
|
6
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
7
|
+
<rect
|
|
8
|
+
width="12"
|
|
9
|
+
height="12"
|
|
10
|
+
x="2"
|
|
11
|
+
y="2"
|
|
12
|
+
fill="none"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
stroke-width="1.2"
|
|
15
|
+
rx="2"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
fill="none"
|
|
19
|
+
stroke="currentColor"
|
|
20
|
+
stroke-linecap="round"
|
|
21
|
+
stroke-linejoin="round"
|
|
22
|
+
stroke-width="1.2"
|
|
23
|
+
d="m5 8 2 2 4-4"
|
|
24
|
+
/>
|
|
25
|
+
</svg>
|
|
26
|
+
</template>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<!-- @veltra/icons generated sha256:3bd9f277858a7ac2 gen:4 source:src/svg/normal/date-picker.svg -->
|
|
2
|
+
<script setup lang="ts">
|
|
3
|
+
defineOptions({ name: 'DatePicker' })
|
|
4
|
+
</script>
|
|
5
|
+
<template>
|
|
6
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
7
|
+
<rect
|
|
8
|
+
width="12"
|
|
9
|
+
height="11"
|
|
10
|
+
x="2"
|
|
11
|
+
y="3"
|
|
12
|
+
fill="none"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
stroke-width="1.2"
|
|
15
|
+
rx="1.5"
|
|
16
|
+
/>
|
|
17
|
+
<path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M2 7h12M5 1v3m6-3v3" />
|
|
18
|
+
<circle cx="5" cy="9.5" r=".6" fill="currentColor" />
|
|
19
|
+
<circle cx="8" cy="9.5" r=".6" fill="currentColor" />
|
|
20
|
+
<circle cx="11" cy="9.5" r=".6" fill="currentColor" />
|
|
21
|
+
<circle cx="5" cy="12" r=".6" fill="currentColor" />
|
|
22
|
+
</svg>
|
|
23
|
+
</template>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<!-- @veltra/icons generated sha256:1fc711637f6db902 gen:4 source:src/svg/normal/date-range-picker.svg -->
|
|
2
|
+
<script setup lang="ts">
|
|
3
|
+
defineOptions({ name: 'DateRangePicker' })
|
|
4
|
+
</script>
|
|
5
|
+
<template>
|
|
6
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
7
|
+
<rect
|
|
8
|
+
width="14"
|
|
9
|
+
height="11"
|
|
10
|
+
x="1"
|
|
11
|
+
y="3"
|
|
12
|
+
fill="none"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
stroke-width="1.2"
|
|
15
|
+
rx="1.5"
|
|
16
|
+
/>
|
|
17
|
+
<path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M1 7h14M4 1v3m8-3v3" />
|
|
18
|
+
<rect width="8" height="2" x="4" y="9.5" fill="currentColor" rx="1" />
|
|
19
|
+
</svg>
|
|
20
|
+
</template>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<!-- @veltra/icons generated sha256:4a04ae7666ad8aba gen:4 source:src/svg/normal/file-picker.svg -->
|
|
2
|
+
<script setup lang="ts">
|
|
3
|
+
defineOptions({ name: 'FilePicker' })
|
|
4
|
+
</script>
|
|
5
|
+
<template>
|
|
6
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
7
|
+
<path
|
|
8
|
+
fill="none"
|
|
9
|
+
stroke="currentColor"
|
|
10
|
+
stroke-linejoin="round"
|
|
11
|
+
stroke-width="1.2"
|
|
12
|
+
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"
|
|
13
|
+
/>
|
|
14
|
+
<path
|
|
15
|
+
fill="none"
|
|
16
|
+
stroke="currentColor"
|
|
17
|
+
stroke-linecap="round"
|
|
18
|
+
stroke-linejoin="round"
|
|
19
|
+
stroke-width="1.2"
|
|
20
|
+
d="M8 6.5V11M6 8.5l2-2 2 2"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
</template>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<!-- @veltra/icons generated sha256:20012f8d7f6c23c8 gen:4 source:src/svg/normal/form.svg -->
|
|
2
|
+
<script setup lang="ts">
|
|
3
|
+
defineOptions({ name: 'Form' })
|
|
4
|
+
</script>
|
|
5
|
+
<template>
|
|
6
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
7
|
+
<rect
|
|
8
|
+
width="14"
|
|
9
|
+
height="10"
|
|
10
|
+
x="1"
|
|
11
|
+
y="3"
|
|
12
|
+
fill="none"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
stroke-width="1.2"
|
|
15
|
+
rx="1.5"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
stroke="currentColor"
|
|
19
|
+
stroke-linecap="round"
|
|
20
|
+
stroke-width="1.2"
|
|
21
|
+
d="M3.5 6h2m2 0h5m-9 4h2m2 0h5"
|
|
22
|
+
/>
|
|
23
|
+
</svg>
|
|
24
|
+
</template>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<!-- @veltra/icons generated sha256:e44db37b1da5de90 gen:4 source:src/svg/normal/input.svg -->
|
|
2
|
+
<script setup lang="ts">
|
|
3
|
+
defineOptions({ name: 'Input' })
|
|
4
|
+
</script>
|
|
5
|
+
<template>
|
|
6
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
7
|
+
<rect
|
|
8
|
+
width="14"
|
|
9
|
+
height="8"
|
|
10
|
+
x="1"
|
|
11
|
+
y="4"
|
|
12
|
+
fill="none"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
stroke-width="1.2"
|
|
15
|
+
rx="1.5"
|
|
16
|
+
/>
|
|
17
|
+
<path stroke="currentColor" stroke-linecap="round" stroke-width="1.2" d="M4 6v4" />
|
|
18
|
+
</svg>
|
|
19
|
+
</template>
|