@cregis/icon 0.0.1
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/README.md +5 -0
- package/dist/components/fixIcons/eds-add-role.vue.d.ts +8 -0
- package/dist/components/fixIcons/eds-add-role.vue.d.ts.map +1 -0
- package/dist/components/fixIcons/eds-add-role.vue.js +57 -0
- package/dist/components/fixIcons/eds-add-token.vue.d.ts +8 -0
- package/dist/components/fixIcons/eds-add-token.vue.d.ts.map +1 -0
- package/dist/components/fixIcons/eds-add-token.vue.js +58 -0
- package/dist/components/fixIcons/eds-add.vue.d.ts +8 -0
- package/dist/components/fixIcons/eds-add.vue.d.ts.map +1 -0
- package/dist/components/fixIcons/eds-add.vue.js +58 -0
- package/dist/components/fixIcons/eds-wallet.vue.d.ts +8 -0
- package/dist/components/fixIcons/eds-wallet.vue.d.ts.map +1 -0
- package/dist/components/fixIcons/eds-wallet.vue.js +68 -0
- package/dist/components/fixIcons/index.d.ts +8 -0
- package/dist/components/fixIcons/index.d.ts.map +1 -0
- package/dist/components/fixIcons/index.js +20 -0
- package/dist/components/icons/eds-add-address-books.vue.d.ts +8 -0
- package/dist/components/icons/eds-add-address-books.vue.d.ts.map +1 -0
- package/dist/components/icons/eds-add-address-books.vue.js +57 -0
- package/dist/components/icons/eds-add-circle-fill.vue.d.ts +8 -0
- package/dist/components/icons/eds-add-circle-fill.vue.d.ts.map +1 -0
- package/dist/components/icons/eds-add-circle-fill.vue.js +55 -0
- package/dist/components/icons/eds-add-circle.vue.d.ts +8 -0
- package/dist/components/icons/eds-add-circle.vue.d.ts.map +1 -0
- package/dist/components/icons/eds-add-circle.vue.js +57 -0
- package/dist/components/icons/eds-add-employer-fill.vue.d.ts +8 -0
- package/dist/components/icons/eds-add-employer-fill.vue.d.ts.map +1 -0
- package/dist/components/icons/eds-add-employer-fill.vue.js +56 -0
- package/dist/components/icons/eds-add-employer.vue.d.ts +8 -0
- package/dist/components/icons/eds-add-employer.vue.d.ts.map +1 -0
- package/dist/components/icons/eds-add-employer.vue.js +57 -0
- package/dist/components/icons/index.d.ts +9 -0
- package/dist/components/icons/index.d.ts.map +1 -0
- package/dist/components/icons/index.js +23 -0
- package/dist/config/index.d.ts +13 -0
- package/dist/config/index.d.ts.map +1 -0
- package/dist/config/index.js +25 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +22 -0
- package/dist/vite.svg +1 -0
- package/package.json +40 -0
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Vue 3 + TypeScript + Vite
|
|
2
|
+
|
|
3
|
+
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
|
4
|
+
|
|
5
|
+
Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
size?: string;
|
|
3
|
+
color?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=eds-add-role.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eds-add-role.vue.d.ts","sourceRoot":"","sources":["../../../src/components/fixIcons/eds-add-role.vue"],"names":[],"mappings":"AA4CA,UAAU,KAAK;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAqED,QAAA,MAAM,YAAY,qRAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/// <reference types="../../../node_modules/.vue-global-types/vue_3.5_0.d.ts" />
|
|
3
|
+
var __assign = (this && this.__assign) || function () {
|
|
4
|
+
__assign = Object.assign || function(t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
8
|
+
t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
return __assign.apply(this, arguments);
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
var vue_1 = require("vue");
|
|
16
|
+
var config_1 = require("@/config");
|
|
17
|
+
var props = defineProps();
|
|
18
|
+
var computedSize = (0, vue_1.computed)(function () { return props.size || config_1.iconConfig.getSize(); });
|
|
19
|
+
var computedColor = (0, vue_1.computed)(function () { return props.color || config_1.iconConfig.getColor(); });
|
|
20
|
+
debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
|
|
21
|
+
var __VLS_ctx = __assign(__assign(__assign(__assign({}, {}), {}), {}), {});
|
|
22
|
+
var __VLS_elements;
|
|
23
|
+
var __VLS_components;
|
|
24
|
+
var __VLS_directives;
|
|
25
|
+
__VLS_asFunctionalElement(__VLS_elements.svg, __VLS_elements.svg)(__assign({ class: "shrink-0" }, { width: (__VLS_ctx.computedSize), height: (__VLS_ctx.computedSize), viewBox: "0 0 32 32", version: "1.1", xmlns: "http://www.w3.org/2000/svg", 'xmlns:xlink': "http://www.w3.org/1999/xlink" }));
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
[computedSize, computedSize,];
|
|
28
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
29
|
+
stroke: "none",
|
|
30
|
+
'stroke-width': "1",
|
|
31
|
+
fill: "none",
|
|
32
|
+
'fill-rule': "evenodd",
|
|
33
|
+
});
|
|
34
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
35
|
+
id: "eds-add-role",
|
|
36
|
+
});
|
|
37
|
+
__VLS_asFunctionalElement(__VLS_elements.path, __VLS_elements.path)({
|
|
38
|
+
d: "M9.5,11 C11.709139,11 13.5,9.209139 13.5,7 C13.5,4.790861 11.709139,3 9.5,3 C7.290861,3 5.5,4.790861 5.5,7 C5.5,9.209139 7.290861,11 9.5,11 Z M9.5,29 C15,29 15,23.246728 15,22 C15,20.7532608 14.915432,19.5303776 14.815288,18.3392464 C14.67968,16.7257184 13.660024,15.4279632 12.392824,15.2482021 C11.4516552,15.114679 10.4852744,15 9.5,15 C8.5147256,15 7.5483448,15.114679 6.6071408,15.2482021 C5.339976,15.4279632 4.32032,16.7257184 4.18468296,18.3392464 C4.08455304,19.5303776 4,20.7532608 4,22 C4,23.246728 4,29 9.5,29 Z M24.0169231,4.5 L24.0169231,15.5 M18.5,10 L29.5,10",
|
|
39
|
+
stroke: (__VLS_ctx.computedColor),
|
|
40
|
+
'stroke-width': "2",
|
|
41
|
+
'stroke-linecap': "round",
|
|
42
|
+
'stroke-linejoin': "round",
|
|
43
|
+
});
|
|
44
|
+
// @ts-ignore
|
|
45
|
+
[computedColor,];
|
|
46
|
+
__VLS_asFunctionalElement(__VLS_elements.rect, __VLS_elements.rect)({
|
|
47
|
+
id: "container",
|
|
48
|
+
x: "0",
|
|
49
|
+
y: "0",
|
|
50
|
+
width: "32",
|
|
51
|
+
height: "32",
|
|
52
|
+
});
|
|
53
|
+
/** @type {__VLS_StyleScopedClasses['shrink-0']} */ ;
|
|
54
|
+
var __VLS_export = (await Promise.resolve().then(function () { return require('vue'); })).defineComponent({
|
|
55
|
+
__typeProps: {},
|
|
56
|
+
});
|
|
57
|
+
exports.default = {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
size?: string;
|
|
3
|
+
color?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=eds-add-token.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eds-add-token.vue.d.ts","sourceRoot":"","sources":["../../../src/components/fixIcons/eds-add-token.vue"],"names":[],"mappings":"AAkDA,UAAU,KAAK;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAsED,QAAA,MAAM,YAAY,qRAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/// <reference types="../../../node_modules/.vue-global-types/vue_3.5_0.d.ts" />
|
|
3
|
+
var __assign = (this && this.__assign) || function () {
|
|
4
|
+
__assign = Object.assign || function(t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
8
|
+
t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
return __assign.apply(this, arguments);
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
var vue_1 = require("vue");
|
|
16
|
+
var config_1 = require("@/config");
|
|
17
|
+
var props = defineProps();
|
|
18
|
+
var computedSize = (0, vue_1.computed)(function () { return props.size || config_1.iconConfig.getSize(); });
|
|
19
|
+
var computedColor = (0, vue_1.computed)(function () { return props.color || config_1.iconConfig.getColor(); });
|
|
20
|
+
debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
|
|
21
|
+
var __VLS_ctx = __assign(__assign(__assign(__assign({}, {}), {}), {}), {});
|
|
22
|
+
var __VLS_elements;
|
|
23
|
+
var __VLS_components;
|
|
24
|
+
var __VLS_directives;
|
|
25
|
+
__VLS_asFunctionalElement(__VLS_elements.svg, __VLS_elements.svg)(__assign({ class: "shrink-0" }, { width: (__VLS_ctx.computedSize), height: (__VLS_ctx.computedSize), viewBox: "0 0 32 32", version: "1.1", xmlns: "http://www.w3.org/2000/svg", 'xmlns:xlink': "http://www.w3.org/1999/xlink" }));
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
[computedSize, computedSize,];
|
|
28
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
29
|
+
id: "页面-1",
|
|
30
|
+
stroke: "none",
|
|
31
|
+
'stroke-width': "1",
|
|
32
|
+
fill: "none",
|
|
33
|
+
'fill-rule': "evenodd",
|
|
34
|
+
});
|
|
35
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
36
|
+
id: "eds-add-token",
|
|
37
|
+
});
|
|
38
|
+
__VLS_asFunctionalElement(__VLS_elements.path, __VLS_elements.path)({
|
|
39
|
+
d: "M25.5,14 C25.5,7.64872692 20.3513615,2.5 14,2.5 C7.64872692,2.5 2.5,7.64872692 2.5,14 C2.5,20.3513615 7.64872692,25.5 14,25.5 M24.0169231,18.5 L24.0169231,29.5 M18.5,24 L29.5,24",
|
|
40
|
+
stroke: (__VLS_ctx.computedColor),
|
|
41
|
+
'stroke-width': "2",
|
|
42
|
+
'stroke-linecap': "round",
|
|
43
|
+
'stroke-linejoin': "round",
|
|
44
|
+
});
|
|
45
|
+
// @ts-ignore
|
|
46
|
+
[computedColor,];
|
|
47
|
+
__VLS_asFunctionalElement(__VLS_elements.rect, __VLS_elements.rect)({
|
|
48
|
+
id: "container",
|
|
49
|
+
x: "0",
|
|
50
|
+
y: "0",
|
|
51
|
+
width: "32",
|
|
52
|
+
height: "32",
|
|
53
|
+
});
|
|
54
|
+
/** @type {__VLS_StyleScopedClasses['shrink-0']} */ ;
|
|
55
|
+
var __VLS_export = (await Promise.resolve().then(function () { return require('vue'); })).defineComponent({
|
|
56
|
+
__typeProps: {},
|
|
57
|
+
});
|
|
58
|
+
exports.default = {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
size?: string;
|
|
3
|
+
color?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=eds-add.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eds-add.vue.d.ts","sourceRoot":"","sources":["../../../src/components/fixIcons/eds-add.vue"],"names":[],"mappings":"AAkDA,UAAU,KAAK;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAsED,QAAA,MAAM,YAAY,qRAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/// <reference types="../../../node_modules/.vue-global-types/vue_3.5_0.d.ts" />
|
|
3
|
+
var __assign = (this && this.__assign) || function () {
|
|
4
|
+
__assign = Object.assign || function(t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
8
|
+
t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
return __assign.apply(this, arguments);
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
var vue_1 = require("vue");
|
|
16
|
+
var config_1 = require("@/config");
|
|
17
|
+
var props = defineProps();
|
|
18
|
+
var computedSize = (0, vue_1.computed)(function () { return props.size || config_1.iconConfig.getSize(); });
|
|
19
|
+
var computedColor = (0, vue_1.computed)(function () { return props.color || config_1.iconConfig.getColor(); });
|
|
20
|
+
debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
|
|
21
|
+
var __VLS_ctx = __assign(__assign(__assign(__assign({}, {}), {}), {}), {});
|
|
22
|
+
var __VLS_elements;
|
|
23
|
+
var __VLS_components;
|
|
24
|
+
var __VLS_directives;
|
|
25
|
+
__VLS_asFunctionalElement(__VLS_elements.svg, __VLS_elements.svg)(__assign({ class: "shrink-0" }, { width: (__VLS_ctx.computedSize), height: (__VLS_ctx.computedSize), viewBox: "0 0 32 32", version: "1.1", xmlns: "http://www.w3.org/2000/svg", 'xmlns:xlink': "http://www.w3.org/1999/xlink" }));
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
[computedSize, computedSize,];
|
|
28
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
29
|
+
id: "页面-1",
|
|
30
|
+
stroke: "none",
|
|
31
|
+
'stroke-width': "1",
|
|
32
|
+
fill: "none",
|
|
33
|
+
'fill-rule': "evenodd",
|
|
34
|
+
});
|
|
35
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
36
|
+
id: "eds-add",
|
|
37
|
+
});
|
|
38
|
+
__VLS_asFunctionalElement(__VLS_elements.path, __VLS_elements.path)({
|
|
39
|
+
d: "M4,16 L28,16 M16,4 C16,20 16,28 16,28",
|
|
40
|
+
stroke: (__VLS_ctx.computedColor),
|
|
41
|
+
'stroke-width': "2",
|
|
42
|
+
'stroke-linecap': "round",
|
|
43
|
+
'stroke-linejoin': "round",
|
|
44
|
+
});
|
|
45
|
+
// @ts-ignore
|
|
46
|
+
[computedColor,];
|
|
47
|
+
__VLS_asFunctionalElement(__VLS_elements.rect, __VLS_elements.rect)({
|
|
48
|
+
id: "container",
|
|
49
|
+
x: "0",
|
|
50
|
+
y: "0",
|
|
51
|
+
width: "32",
|
|
52
|
+
height: "32",
|
|
53
|
+
});
|
|
54
|
+
/** @type {__VLS_StyleScopedClasses['shrink-0']} */ ;
|
|
55
|
+
var __VLS_export = (await Promise.resolve().then(function () { return require('vue'); })).defineComponent({
|
|
56
|
+
__typeProps: {},
|
|
57
|
+
});
|
|
58
|
+
exports.default = {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
size?: string;
|
|
3
|
+
color?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=eds-wallet.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eds-wallet.vue.d.ts","sourceRoot":"","sources":["../../../src/components/fixIcons/eds-wallet.vue"],"names":[],"mappings":"AAqDA,UAAU,KAAK;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAgFD,QAAA,MAAM,YAAY,qRAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/// <reference types="../../../node_modules/.vue-global-types/vue_3.5_0.d.ts" />
|
|
3
|
+
var __assign = (this && this.__assign) || function () {
|
|
4
|
+
__assign = Object.assign || function(t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
8
|
+
t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
return __assign.apply(this, arguments);
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
var vue_1 = require("vue");
|
|
16
|
+
var config_1 = require("@/config");
|
|
17
|
+
var props = defineProps();
|
|
18
|
+
var computedSize = (0, vue_1.computed)(function () { return props.size || config_1.iconConfig.getSize(); });
|
|
19
|
+
var computedColor = (0, vue_1.computed)(function () { return props.color || config_1.iconConfig.getColor(); });
|
|
20
|
+
debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
|
|
21
|
+
var __VLS_ctx = __assign(__assign(__assign(__assign({}, {}), {}), {}), {});
|
|
22
|
+
var __VLS_elements;
|
|
23
|
+
var __VLS_components;
|
|
24
|
+
var __VLS_directives;
|
|
25
|
+
__VLS_asFunctionalElement(__VLS_elements.svg, __VLS_elements.svg)(__assign({ class: "shrink-0" }, { width: (__VLS_ctx.computedSize), height: (__VLS_ctx.computedSize), viewBox: "0 0 32 32", version: "1.1", xmlns: "http://www.w3.org/2000/svg", 'xmlns:xlink': "http://www.w3.org/1999/xlink" }));
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
[computedSize, computedSize,];
|
|
28
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
29
|
+
stroke: "none",
|
|
30
|
+
'stroke-width': "1",
|
|
31
|
+
fill: "none",
|
|
32
|
+
'fill-rule': "evenodd",
|
|
33
|
+
});
|
|
34
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
35
|
+
id: "eds-wallet",
|
|
36
|
+
});
|
|
37
|
+
__VLS_asFunctionalElement(__VLS_elements.path, __VLS_elements.path)({
|
|
38
|
+
d: "M27.4230769,5.5 L4.57692308,5.5 C3.42986962,5.5 2.5,6.48969684 2.5,7.71052632 L2.5,24.2894737 C2.5,25.5103474 3.42986962,26.5 4.57692308,26.5 L27.4230769,26.5 C28.5701615,26.5 29.5,25.5103474 29.5,24.2894737 L29.5,7.71052632 C29.5,6.48969684 28.5701615,5.5 27.4230769,5.5 Z",
|
|
39
|
+
stroke: (__VLS_ctx.computedColor),
|
|
40
|
+
'stroke-width': "2",
|
|
41
|
+
'stroke-linecap': "round",
|
|
42
|
+
'stroke-linejoin': "round",
|
|
43
|
+
});
|
|
44
|
+
// @ts-ignore
|
|
45
|
+
[computedColor,];
|
|
46
|
+
__VLS_asFunctionalElement(__VLS_elements.path, __VLS_elements.path)({
|
|
47
|
+
d: "M22.2822488,16.7244977 C21.8834611,16.7244977 21.56,16.4010365 21.56,16.0022488 C21.56,15.6034611 21.8834611,15.28 22.2822488,15.28 C22.6810365,15.28 23.0044977,15.6034611 23.0044977,16.0022488 C23.0044977,16.4010365 22.6810365,16.7244977 22.2822488,16.7244977 Z",
|
|
48
|
+
stroke: (__VLS_ctx.computedColor),
|
|
49
|
+
'stroke-width': "2",
|
|
50
|
+
fill: (__VLS_ctx.computedColor),
|
|
51
|
+
'fill-rule': "nonzero",
|
|
52
|
+
'stroke-linecap': "round",
|
|
53
|
+
'stroke-linejoin': "round",
|
|
54
|
+
});
|
|
55
|
+
// @ts-ignore
|
|
56
|
+
[computedColor, computedColor,];
|
|
57
|
+
__VLS_asFunctionalElement(__VLS_elements.rect, __VLS_elements.rect)({
|
|
58
|
+
id: "container",
|
|
59
|
+
x: "0",
|
|
60
|
+
y: "0",
|
|
61
|
+
width: "32",
|
|
62
|
+
height: "32",
|
|
63
|
+
});
|
|
64
|
+
/** @type {__VLS_StyleScopedClasses['shrink-0']} */ ;
|
|
65
|
+
var __VLS_export = (await Promise.resolve().then(function () { return require('vue'); })).defineComponent({
|
|
66
|
+
__typeProps: {},
|
|
67
|
+
});
|
|
68
|
+
exports.default = {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import EdsAddRole from "./eds-add-role.vue";
|
|
2
|
+
import EdsAddToken from "./eds-add-token.vue";
|
|
3
|
+
import EdsAdd from "./eds-add.vue";
|
|
4
|
+
import EdsWallet from "./eds-wallet.vue";
|
|
5
|
+
declare const fixIcons: Record<string, any>;
|
|
6
|
+
export default fixIcons;
|
|
7
|
+
export { EdsAddRole, EdsAddToken, EdsAdd, EdsWallet };
|
|
8
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/fixIcons/index.ts"],"names":[],"mappings":"AACA,OAAO,UAAU,MAAM,oBAAoB,CAAC;AAC5C,OAAO,WAAW,MAAM,qBAAqB,CAAC;AAC9C,OAAO,MAAM,MAAM,eAAe,CAAC;AACnC,OAAO,SAAS,MAAM,kBAAkB,CAAC;AAEzC,QAAA,MAAM,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAKjC,CAAC;AAGF,eAAe,QAAQ,CAAC;AAGxB,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EdsWallet = exports.EdsAdd = exports.EdsAddToken = exports.EdsAddRole = void 0;
|
|
4
|
+
// 静态导入所有fixIcons组件
|
|
5
|
+
var eds_add_role_vue_1 = require("./eds-add-role.vue");
|
|
6
|
+
exports.EdsAddRole = eds_add_role_vue_1.default;
|
|
7
|
+
var eds_add_token_vue_1 = require("./eds-add-token.vue");
|
|
8
|
+
exports.EdsAddToken = eds_add_token_vue_1.default;
|
|
9
|
+
var eds_add_vue_1 = require("./eds-add.vue");
|
|
10
|
+
exports.EdsAdd = eds_add_vue_1.default;
|
|
11
|
+
var eds_wallet_vue_1 = require("./eds-wallet.vue");
|
|
12
|
+
exports.EdsWallet = eds_wallet_vue_1.default;
|
|
13
|
+
var fixIcons = {
|
|
14
|
+
"eds-add-role": eds_add_role_vue_1.default,
|
|
15
|
+
"eds-add-token": eds_add_token_vue_1.default,
|
|
16
|
+
"eds-add": eds_add_vue_1.default,
|
|
17
|
+
"eds-wallet": eds_wallet_vue_1.default,
|
|
18
|
+
};
|
|
19
|
+
// 导出所有fixIcons组件
|
|
20
|
+
exports.default = fixIcons;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
size?: string;
|
|
3
|
+
color?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=eds-add-address-books.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eds-add-address-books.vue.d.ts","sourceRoot":"","sources":["../../../src/components/icons/eds-add-address-books.vue"],"names":[],"mappings":"AA4CA,UAAU,KAAK;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAqED,QAAA,MAAM,YAAY,qRAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/// <reference types="../../../node_modules/.vue-global-types/vue_3.5_0.d.ts" />
|
|
3
|
+
var __assign = (this && this.__assign) || function () {
|
|
4
|
+
__assign = Object.assign || function(t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
8
|
+
t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
return __assign.apply(this, arguments);
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
var vue_1 = require("vue");
|
|
16
|
+
var config_1 = require("@/config");
|
|
17
|
+
var props = defineProps();
|
|
18
|
+
var computedSize = (0, vue_1.computed)(function () { return props.size || config_1.iconConfig.getSize(); });
|
|
19
|
+
var computedColor = (0, vue_1.computed)(function () { return props.color || config_1.iconConfig.getColor(); });
|
|
20
|
+
debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
|
|
21
|
+
var __VLS_ctx = __assign(__assign(__assign(__assign({}, {}), {}), {}), {});
|
|
22
|
+
var __VLS_elements;
|
|
23
|
+
var __VLS_components;
|
|
24
|
+
var __VLS_directives;
|
|
25
|
+
__VLS_asFunctionalElement(__VLS_elements.svg, __VLS_elements.svg)(__assign({ class: "shrink-0" }, { width: (__VLS_ctx.computedSize), height: (__VLS_ctx.computedSize), viewBox: "0 0 32 32", version: "1.1", xmlns: "http://www.w3.org/2000/svg", 'xmlns:xlink': "http://www.w3.org/1999/xlink" }));
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
[computedSize, computedSize,];
|
|
28
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
29
|
+
stroke: "none",
|
|
30
|
+
'stroke-width': "1",
|
|
31
|
+
fill: "none",
|
|
32
|
+
'fill-rule': "evenodd",
|
|
33
|
+
});
|
|
34
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
35
|
+
id: "eds-add-address-books",
|
|
36
|
+
});
|
|
37
|
+
__VLS_asFunctionalElement(__VLS_elements.path, __VLS_elements.path)({
|
|
38
|
+
d: "M6.01012154,15.0018701 C6.00351144,15.3336309 6,15.6663555 6,16 C6,16.3338723 6.00351634,16.6668242 6.01013536,16.9988115 M6,25 C6,25.1790948 6,25.4499701 6,25.8126258 C6,27.5736267 7.42637331,29 9.18737417,29 L24.8126258,29 C26.5736267,29 28,27.5736267 28,25.8126258 L28,6.18737417 C28,4.42637331 26.5736267,3 24.8126258,3 L9.18737417,3 C7.42637331,3 6,4.42824274 6,6.18737417 C6,6.54854121 6,6.81941648 6,7 M4,11 L8,11 M13.5,16 L21.5,16 M17.5,12 L17.5,20 M4,21 L8,21",
|
|
39
|
+
stroke: (__VLS_ctx.computedColor),
|
|
40
|
+
'stroke-width': "2",
|
|
41
|
+
'stroke-linecap': "round",
|
|
42
|
+
'stroke-linejoin': "round",
|
|
43
|
+
});
|
|
44
|
+
// @ts-ignore
|
|
45
|
+
[computedColor,];
|
|
46
|
+
__VLS_asFunctionalElement(__VLS_elements.rect, __VLS_elements.rect)({
|
|
47
|
+
id: "container",
|
|
48
|
+
x: "0",
|
|
49
|
+
y: "0",
|
|
50
|
+
width: "32",
|
|
51
|
+
height: "32",
|
|
52
|
+
});
|
|
53
|
+
/** @type {__VLS_StyleScopedClasses['shrink-0']} */ ;
|
|
54
|
+
var __VLS_export = (await Promise.resolve().then(function () { return require('vue'); })).defineComponent({
|
|
55
|
+
__typeProps: {},
|
|
56
|
+
});
|
|
57
|
+
exports.default = {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
size?: string;
|
|
3
|
+
color?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=eds-add-circle-fill.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eds-add-circle-fill.vue.d.ts","sourceRoot":"","sources":["../../../src/components/icons/eds-add-circle-fill.vue"],"names":[],"mappings":"AA0CA,UAAU,KAAK;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAmED,QAAA,MAAM,YAAY,qRAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/// <reference types="../../../node_modules/.vue-global-types/vue_3.5_0.d.ts" />
|
|
3
|
+
var __assign = (this && this.__assign) || function () {
|
|
4
|
+
__assign = Object.assign || function(t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
8
|
+
t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
return __assign.apply(this, arguments);
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
var vue_1 = require("vue");
|
|
16
|
+
var config_1 = require("@/config");
|
|
17
|
+
var props = defineProps();
|
|
18
|
+
var computedSize = (0, vue_1.computed)(function () { return props.size || config_1.iconConfig.getSize(); });
|
|
19
|
+
var computedColor = (0, vue_1.computed)(function () { return props.color || config_1.iconConfig.getColor(); });
|
|
20
|
+
debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
|
|
21
|
+
var __VLS_ctx = __assign(__assign(__assign(__assign({}, {}), {}), {}), {});
|
|
22
|
+
var __VLS_elements;
|
|
23
|
+
var __VLS_components;
|
|
24
|
+
var __VLS_directives;
|
|
25
|
+
__VLS_asFunctionalElement(__VLS_elements.svg, __VLS_elements.svg)(__assign({ class: "shrink-0" }, { width: (__VLS_ctx.computedSize), height: (__VLS_ctx.computedSize), viewBox: "0 0 32 32", version: "1.1", xmlns: "http://www.w3.org/2000/svg", 'xmlns:xlink': "http://www.w3.org/1999/xlink" }));
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
[computedSize, computedSize,];
|
|
28
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
29
|
+
stroke: "none",
|
|
30
|
+
'stroke-width': "1",
|
|
31
|
+
fill: "none",
|
|
32
|
+
'fill-rule': "evenodd",
|
|
33
|
+
});
|
|
34
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
35
|
+
id: "eds-add-circle-fill",
|
|
36
|
+
});
|
|
37
|
+
__VLS_asFunctionalElement(__VLS_elements.path, __VLS_elements.path)({
|
|
38
|
+
d: "M16,1.5 C24.0081289,1.5 30.5,7.99187113 30.5,16 C30.5,24.0081289 24.0081289,30.5 16,30.5 C7.99187113,30.5 1.5,24.0081289 1.5,16 C1.5,7.99187113 7.99187113,1.5 16,1.5 Z M16,9.5 L15.85554,9.50686658 C15.0948881,9.57955132 14.5,10.2203039 14.5,11 L14.5,14.5 L11,14.5 C10.1715729,14.5 9.5,15.1715729 9.5,16 L9.50686658,16.14446 C9.57955132,16.9051119 10.2203039,17.5 11,17.5 L14.5,17.5 L14.5,21 C14.5,21.8284271 15.1715729,22.5 16,22.5 L16.14446,22.4931334 C16.9051119,22.4204487 17.5,21.7796961 17.5,21 L17.5,17.5 L21,17.5 C21.8284271,17.5 22.5,16.8284271 22.5,16 L22.4931334,15.85554 C22.4204487,15.0948881 21.7796961,14.5 21,14.5 L17.5,14.5 L17.5,11 C17.5,10.1715729 16.8284271,9.5 16,9.5 Z",
|
|
39
|
+
fill: (__VLS_ctx.computedColor),
|
|
40
|
+
'fill-rule': "nonzero",
|
|
41
|
+
});
|
|
42
|
+
// @ts-ignore
|
|
43
|
+
[computedColor,];
|
|
44
|
+
__VLS_asFunctionalElement(__VLS_elements.rect, __VLS_elements.rect)({
|
|
45
|
+
id: "container",
|
|
46
|
+
x: "0",
|
|
47
|
+
y: "0",
|
|
48
|
+
width: "32",
|
|
49
|
+
height: "32",
|
|
50
|
+
});
|
|
51
|
+
/** @type {__VLS_StyleScopedClasses['shrink-0']} */ ;
|
|
52
|
+
var __VLS_export = (await Promise.resolve().then(function () { return require('vue'); })).defineComponent({
|
|
53
|
+
__typeProps: {},
|
|
54
|
+
});
|
|
55
|
+
exports.default = {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
size?: string;
|
|
3
|
+
color?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=eds-add-circle.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eds-add-circle.vue.d.ts","sourceRoot":"","sources":["../../../src/components/icons/eds-add-circle.vue"],"names":[],"mappings":"AA4CA,UAAU,KAAK;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAqED,QAAA,MAAM,YAAY,qRAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/// <reference types="../../../node_modules/.vue-global-types/vue_3.5_0.d.ts" />
|
|
3
|
+
var __assign = (this && this.__assign) || function () {
|
|
4
|
+
__assign = Object.assign || function(t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
8
|
+
t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
return __assign.apply(this, arguments);
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
var vue_1 = require("vue");
|
|
16
|
+
var config_1 = require("@/config");
|
|
17
|
+
var props = defineProps();
|
|
18
|
+
var computedSize = (0, vue_1.computed)(function () { return props.size || config_1.iconConfig.getSize(); });
|
|
19
|
+
var computedColor = (0, vue_1.computed)(function () { return props.color || config_1.iconConfig.getColor(); });
|
|
20
|
+
debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
|
|
21
|
+
var __VLS_ctx = __assign(__assign(__assign(__assign({}, {}), {}), {}), {});
|
|
22
|
+
var __VLS_elements;
|
|
23
|
+
var __VLS_components;
|
|
24
|
+
var __VLS_directives;
|
|
25
|
+
__VLS_asFunctionalElement(__VLS_elements.svg, __VLS_elements.svg)(__assign({ class: "shrink-0" }, { width: (__VLS_ctx.computedSize), height: (__VLS_ctx.computedSize), viewBox: "0 0 32 32", version: "1.1", xmlns: "http://www.w3.org/2000/svg", 'xmlns:xlink': "http://www.w3.org/1999/xlink" }));
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
[computedSize, computedSize,];
|
|
28
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
29
|
+
stroke: "none",
|
|
30
|
+
'stroke-width': "1",
|
|
31
|
+
fill: "none",
|
|
32
|
+
'fill-rule': "evenodd",
|
|
33
|
+
});
|
|
34
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
35
|
+
id: "eds-add-circle",
|
|
36
|
+
});
|
|
37
|
+
__VLS_asFunctionalElement(__VLS_elements.path, __VLS_elements.path)({
|
|
38
|
+
d: "M16,29.5 C23.4558441,29.5 29.5,23.4558441 29.5,16 C29.5,8.54415588 23.4558441,2.5 16,2.5 C8.54415588,2.5 2.5,8.54415588 2.5,16 C2.5,23.4558441 8.54415588,29.5 16,29.5 Z M10.5,16 L21.5,16 M16,10.5 L16,21.5",
|
|
39
|
+
stroke: (__VLS_ctx.computedColor),
|
|
40
|
+
'stroke-width': "2",
|
|
41
|
+
'stroke-linecap': "round",
|
|
42
|
+
'stroke-linejoin': "round",
|
|
43
|
+
});
|
|
44
|
+
// @ts-ignore
|
|
45
|
+
[computedColor,];
|
|
46
|
+
__VLS_asFunctionalElement(__VLS_elements.rect, __VLS_elements.rect)({
|
|
47
|
+
id: "container",
|
|
48
|
+
x: "0",
|
|
49
|
+
y: "0",
|
|
50
|
+
width: "32",
|
|
51
|
+
height: "32",
|
|
52
|
+
});
|
|
53
|
+
/** @type {__VLS_StyleScopedClasses['shrink-0']} */ ;
|
|
54
|
+
var __VLS_export = (await Promise.resolve().then(function () { return require('vue'); })).defineComponent({
|
|
55
|
+
__typeProps: {},
|
|
56
|
+
});
|
|
57
|
+
exports.default = {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
size?: string;
|
|
3
|
+
color?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=eds-add-employer-fill.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eds-add-employer-fill.vue.d.ts","sourceRoot":"","sources":["../../../src/components/icons/eds-add-employer-fill.vue"],"names":[],"mappings":"AAgDA,UAAU,KAAK;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAoED,QAAA,MAAM,YAAY,qRAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/// <reference types="../../../node_modules/.vue-global-types/vue_3.5_0.d.ts" />
|
|
3
|
+
var __assign = (this && this.__assign) || function () {
|
|
4
|
+
__assign = Object.assign || function(t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
8
|
+
t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
return __assign.apply(this, arguments);
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
var vue_1 = require("vue");
|
|
16
|
+
var config_1 = require("@/config");
|
|
17
|
+
var props = defineProps();
|
|
18
|
+
var computedSize = (0, vue_1.computed)(function () { return props.size || config_1.iconConfig.getSize(); });
|
|
19
|
+
var computedColor = (0, vue_1.computed)(function () { return props.color || config_1.iconConfig.getColor(); });
|
|
20
|
+
debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
|
|
21
|
+
var __VLS_ctx = __assign(__assign(__assign(__assign({}, {}), {}), {}), {});
|
|
22
|
+
var __VLS_elements;
|
|
23
|
+
var __VLS_components;
|
|
24
|
+
var __VLS_directives;
|
|
25
|
+
__VLS_asFunctionalElement(__VLS_elements.svg, __VLS_elements.svg)(__assign({ class: "shrink-0" }, { width: (__VLS_ctx.computedSize), height: (__VLS_ctx.computedSize), viewBox: "0 0 32 32", version: "1.1", xmlns: "http://www.w3.org/2000/svg", 'xmlns:xlink': "http://www.w3.org/1999/xlink" }));
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
[computedSize, computedSize,];
|
|
28
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
29
|
+
id: "页面-1",
|
|
30
|
+
stroke: "none",
|
|
31
|
+
'stroke-width': "1",
|
|
32
|
+
fill: "none",
|
|
33
|
+
'fill-rule': "evenodd",
|
|
34
|
+
});
|
|
35
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
36
|
+
id: "eds-add-employer-fill",
|
|
37
|
+
});
|
|
38
|
+
__VLS_asFunctionalElement(__VLS_elements.path, __VLS_elements.path)({
|
|
39
|
+
d: "M18.0714286,7.71428571 C18.0714286,11.1463321 15.2891893,13.9285714 11.8571429,13.9285714 C8.42509643,13.9285714 5.64285714,11.1463321 5.64285714,7.71428571 C5.64285714,4.28223929 8.42509643,1.5 11.8571429,1.5 C15.2891893,1.5 18.0714286,4.28223929 18.0714286,7.71428571 Z M23.7678571,17.0357143 C24.6258429,17.0357143 25.3214286,17.7312793 25.3214286,18.5892857 L25.3214286,22.2142857 L28.9464286,22.2142857 C29.8044143,22.2142857 30.5,22.9098714 30.5,23.7678571 C30.5,24.6258429 29.8044143,25.3214286 28.9464286,25.3214286 L25.3214286,25.3214286 L25.3214286,28.9464286 C25.3214286,29.8044143 24.6258429,30.5 23.7678571,30.5 C22.9098714,30.5 22.2142857,29.8044143 22.2142857,28.9464286 L22.2142857,25.3214286 L18.5892857,25.3214286 C17.7312793,25.3214286 17.0357143,24.6258429 17.0357143,23.7678571 C17.0357143,22.9098714 17.7312793,22.2142857 18.5892857,22.2142857 L22.2142857,22.2142857 L22.2142857,18.5892857 C22.2142857,17.7312793 22.9098714,17.0357143 23.7678571,17.0357143 Z M11.8571429,15.9999379 C14.9505521,15.9999379 17.7271986,17.3560814 19.625,19.5062864 L19.625,19.6249793 L18.5892857,19.6249793 C16.3012479,19.6249793 14.4464286,21.4797986 14.4464286,23.7678571 C14.4464286,25.3276429 15.3083914,26.6860857 16.5819679,27.3928571 L2.53571429,27.3928571 C1.96370586,27.3928571 1.5,26.9290643 1.5,26.3571429 C1.5,20.6369964 6.13705857,15.9999379 11.8571429,15.9999379 Z",
|
|
40
|
+
fill: (__VLS_ctx.computedColor),
|
|
41
|
+
'fill-rule': "nonzero",
|
|
42
|
+
});
|
|
43
|
+
// @ts-ignore
|
|
44
|
+
[computedColor,];
|
|
45
|
+
__VLS_asFunctionalElement(__VLS_elements.rect, __VLS_elements.rect)({
|
|
46
|
+
id: "container",
|
|
47
|
+
x: "0",
|
|
48
|
+
y: "0",
|
|
49
|
+
width: "32",
|
|
50
|
+
height: "32",
|
|
51
|
+
});
|
|
52
|
+
/** @type {__VLS_StyleScopedClasses['shrink-0']} */ ;
|
|
53
|
+
var __VLS_export = (await Promise.resolve().then(function () { return require('vue'); })).defineComponent({
|
|
54
|
+
__typeProps: {},
|
|
55
|
+
});
|
|
56
|
+
exports.default = {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
size?: string;
|
|
3
|
+
color?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=eds-add-employer.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eds-add-employer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/icons/eds-add-employer.vue"],"names":[],"mappings":"AA4CA,UAAU,KAAK;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAqED,QAAA,MAAM,YAAY,qRAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/// <reference types="../../../node_modules/.vue-global-types/vue_3.5_0.d.ts" />
|
|
3
|
+
var __assign = (this && this.__assign) || function () {
|
|
4
|
+
__assign = Object.assign || function(t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
8
|
+
t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
return __assign.apply(this, arguments);
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
var vue_1 = require("vue");
|
|
16
|
+
var config_1 = require("@/config");
|
|
17
|
+
var props = defineProps();
|
|
18
|
+
var computedSize = (0, vue_1.computed)(function () { return props.size || config_1.iconConfig.getSize(); });
|
|
19
|
+
var computedColor = (0, vue_1.computed)(function () { return props.color || config_1.iconConfig.getColor(); });
|
|
20
|
+
debugger; /* PartiallyEnd: #3632/scriptSetup.vue */
|
|
21
|
+
var __VLS_ctx = __assign(__assign(__assign(__assign({}, {}), {}), {}), {});
|
|
22
|
+
var __VLS_elements;
|
|
23
|
+
var __VLS_components;
|
|
24
|
+
var __VLS_directives;
|
|
25
|
+
__VLS_asFunctionalElement(__VLS_elements.svg, __VLS_elements.svg)(__assign({ class: "shrink-0" }, { width: (__VLS_ctx.computedSize), height: (__VLS_ctx.computedSize), viewBox: "0 0 32 32", version: "1.1", xmlns: "http://www.w3.org/2000/svg", 'xmlns:xlink': "http://www.w3.org/1999/xlink" }));
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
[computedSize, computedSize,];
|
|
28
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
29
|
+
stroke: "none",
|
|
30
|
+
'stroke-width': "1",
|
|
31
|
+
fill: "none",
|
|
32
|
+
'fill-rule': "evenodd",
|
|
33
|
+
});
|
|
34
|
+
__VLS_asFunctionalElement(__VLS_elements.g, __VLS_elements.g)({
|
|
35
|
+
id: "eds-add-employer",
|
|
36
|
+
});
|
|
37
|
+
__VLS_asFunctionalElement(__VLS_elements.path, __VLS_elements.path)({
|
|
38
|
+
d: "M11.8461538,12.8846154 C14.7137823,12.8846154 17.0384615,10.5599362 17.0384615,7.69230769 C17.0384615,4.82467923 14.7137823,2.5 11.8461538,2.5 C8.97852538,2.5 6.65384615,4.82467923 6.65384615,7.69230769 C6.65384615,10.5599362 8.97852538,12.8846154 11.8461538,12.8846154 Z M14.9615385,29.0280622 L6,29.0280622 L2.5,29.0280622 L2.5,27.8366353 C2.51653438,26.1614728 2.93402915,24.5179587 3.71348385,23.0598948 C4.49295308,21.601743 5.60894615,20.3764481 6.95722231,19.4984273 C8.30551923,18.6204286 9.84211,18.1183634 11.4234585,18.0391547 C13.0048277,17.959924 14.5793638,18.3061433 16,19.045417 M24.0169231,18.5 L24.0169231,29.5 M18.5,24 L29.5,24",
|
|
39
|
+
stroke: (__VLS_ctx.computedColor),
|
|
40
|
+
'stroke-width': "2",
|
|
41
|
+
'stroke-linecap': "round",
|
|
42
|
+
'stroke-linejoin': "round",
|
|
43
|
+
});
|
|
44
|
+
// @ts-ignore
|
|
45
|
+
[computedColor,];
|
|
46
|
+
__VLS_asFunctionalElement(__VLS_elements.rect, __VLS_elements.rect)({
|
|
47
|
+
id: "container",
|
|
48
|
+
x: "0",
|
|
49
|
+
y: "0",
|
|
50
|
+
width: "32",
|
|
51
|
+
height: "32",
|
|
52
|
+
});
|
|
53
|
+
/** @type {__VLS_StyleScopedClasses['shrink-0']} */ ;
|
|
54
|
+
var __VLS_export = (await Promise.resolve().then(function () { return require('vue'); })).defineComponent({
|
|
55
|
+
__typeProps: {},
|
|
56
|
+
});
|
|
57
|
+
exports.default = {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import EdsAddAddressBooks from "./eds-add-address-books.vue";
|
|
2
|
+
import EdsAddCircleFill from "./eds-add-circle-fill.vue";
|
|
3
|
+
import EdsAddCircle from "./eds-add-circle.vue";
|
|
4
|
+
import EdsAddEmployerFill from "./eds-add-employer-fill.vue";
|
|
5
|
+
import EdsAddEmployer from "./eds-add-employer.vue";
|
|
6
|
+
declare const icons: Record<string, any>;
|
|
7
|
+
export default icons;
|
|
8
|
+
export { EdsAddAddressBooks, EdsAddCircleFill, EdsAddCircle, EdsAddEmployerFill, EdsAddEmployer, };
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/icons/index.ts"],"names":[],"mappings":"AACA,OAAO,kBAAkB,MAAM,6BAA6B,CAAC;AAC7D,OAAO,gBAAgB,MAAM,2BAA2B,CAAC;AACzD,OAAO,YAAY,MAAM,sBAAsB,CAAC;AAChD,OAAO,kBAAkB,MAAM,6BAA6B,CAAC;AAC7D,OAAO,cAAc,MAAM,wBAAwB,CAAC;AAEpD,QAAA,MAAM,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAM9B,CAAC;AAGF,eAAe,KAAK,CAAC;AAGrB,OAAO,EACL,kBAAkB,EAClB,gBAAgB,EAChB,YAAY,EACZ,kBAAkB,EAClB,cAAc,GACf,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EdsAddEmployer = exports.EdsAddEmployerFill = exports.EdsAddCircle = exports.EdsAddCircleFill = exports.EdsAddAddressBooks = void 0;
|
|
4
|
+
// 静态导入所有图标组件
|
|
5
|
+
var eds_add_address_books_vue_1 = require("./eds-add-address-books.vue");
|
|
6
|
+
exports.EdsAddAddressBooks = eds_add_address_books_vue_1.default;
|
|
7
|
+
var eds_add_circle_fill_vue_1 = require("./eds-add-circle-fill.vue");
|
|
8
|
+
exports.EdsAddCircleFill = eds_add_circle_fill_vue_1.default;
|
|
9
|
+
var eds_add_circle_vue_1 = require("./eds-add-circle.vue");
|
|
10
|
+
exports.EdsAddCircle = eds_add_circle_vue_1.default;
|
|
11
|
+
var eds_add_employer_fill_vue_1 = require("./eds-add-employer-fill.vue");
|
|
12
|
+
exports.EdsAddEmployerFill = eds_add_employer_fill_vue_1.default;
|
|
13
|
+
var eds_add_employer_vue_1 = require("./eds-add-employer.vue");
|
|
14
|
+
exports.EdsAddEmployer = eds_add_employer_vue_1.default;
|
|
15
|
+
var icons = {
|
|
16
|
+
"eds-add-address-books": eds_add_address_books_vue_1.default,
|
|
17
|
+
"eds-add-circle-fill": eds_add_circle_fill_vue_1.default,
|
|
18
|
+
"eds-add-circle": eds_add_circle_vue_1.default,
|
|
19
|
+
"eds-add-employer-fill": eds_add_employer_fill_vue_1.default,
|
|
20
|
+
"eds-add-employer": eds_add_employer_vue_1.default,
|
|
21
|
+
};
|
|
22
|
+
// 导出所有图标组件
|
|
23
|
+
exports.default = icons;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface IconConfigOptions {
|
|
2
|
+
size?: string;
|
|
3
|
+
color?: string;
|
|
4
|
+
}
|
|
5
|
+
declare class IconConfig {
|
|
6
|
+
private config;
|
|
7
|
+
setDefault(config: IconConfigOptions): void;
|
|
8
|
+
getSize(): string;
|
|
9
|
+
getColor(): string;
|
|
10
|
+
}
|
|
11
|
+
export declare const iconConfig: IconConfig;
|
|
12
|
+
export { IconConfig };
|
|
13
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,iBAAiB;IAChC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,cAAM,UAAU;IACd,OAAO,CAAC,MAAM,CAGZ;IAEF,UAAU,CAAC,MAAM,EAAE,iBAAiB;IAKpC,OAAO,IAAI,MAAM;IAIjB,QAAQ,IAAI,MAAM;CAGnB;AAED,eAAO,MAAM,UAAU,YAAmB,CAAC;AAC3C,OAAO,EAAE,UAAU,EAAE,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IconConfig = exports.iconConfig = void 0;
|
|
4
|
+
var vue_1 = require("vue");
|
|
5
|
+
var IconConfig = /** @class */ (function () {
|
|
6
|
+
function IconConfig() {
|
|
7
|
+
this.config = {
|
|
8
|
+
size: (0, vue_1.ref)("32px"),
|
|
9
|
+
color: (0, vue_1.ref)("#666666"),
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
IconConfig.prototype.setDefault = function (config) {
|
|
13
|
+
this.config.size.value = config.size || this.config.size.value;
|
|
14
|
+
this.config.color.value = config.color || this.config.color.value;
|
|
15
|
+
};
|
|
16
|
+
IconConfig.prototype.getSize = function () {
|
|
17
|
+
return this.config.size.value;
|
|
18
|
+
};
|
|
19
|
+
IconConfig.prototype.getColor = function () {
|
|
20
|
+
return this.config.color.value;
|
|
21
|
+
};
|
|
22
|
+
return IconConfig;
|
|
23
|
+
}());
|
|
24
|
+
exports.IconConfig = IconConfig;
|
|
25
|
+
exports.iconConfig = new IconConfig();
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.iconConfig = void 0;
|
|
18
|
+
// 导出所有图标组件
|
|
19
|
+
__exportStar(require("./components/icons"), exports);
|
|
20
|
+
__exportStar(require("./components/fixIcons"), exports);
|
|
21
|
+
var config_1 = require("./config");
|
|
22
|
+
Object.defineProperty(exports, "iconConfig", { enumerable: true, get: function () { return config_1.iconConfig; } });
|
package/dist/vite.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cregis/icon",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "cregis icon",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"module": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"types": "./dist/index.d.ts"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"dev": "vite",
|
|
22
|
+
"build": "vue-tsc -b && vite build",
|
|
23
|
+
"build:lib": "vue-tsc --project tsconfig.build.json && vite build --mode library && vue-tsc --project tsconfig.build.json",
|
|
24
|
+
"preview": "vite preview"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"vue": "^3.0.0"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"vue": "^3.5.22"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@types/node": "^24.6.0",
|
|
34
|
+
"@vitejs/plugin-vue": "^6.0.1",
|
|
35
|
+
"@vue/tsconfig": "^0.8.1",
|
|
36
|
+
"typescript": "~5.9.3",
|
|
37
|
+
"vite": "^7.1.7",
|
|
38
|
+
"vue-tsc": "^3.1.0"
|
|
39
|
+
}
|
|
40
|
+
}
|