cleek 2.11.31 → 2.11.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cleek-styles/tiny-tailwind/aspect-ratio.styl +6 -6
- package/dist/cleek-styles/tiny-tailwind/bg-color.styl +161 -161
- package/dist/cleek-styles/tiny-tailwind/border-color.styl +161 -161
- package/dist/cleek-styles/tiny-tailwind/border.styl +63 -63
- package/dist/cleek-styles/tiny-tailwind/flex-direction.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/flex-grow.styl +10 -10
- package/dist/cleek-styles/tiny-tailwind/font-size.styl +24 -24
- package/dist/cleek-styles/tiny-tailwind/grid.styl +87 -87
- package/dist/cleek-styles/tiny-tailwind/height.styl +96 -96
- package/dist/cleek-styles/tiny-tailwind/inset.styl +328 -328
- package/dist/cleek-styles/tiny-tailwind/leading.styl +28 -28
- package/dist/cleek-styles/tiny-tailwind/object-fit.styl +20 -20
- package/dist/cleek-styles/tiny-tailwind/opacity.styl +30 -30
- package/dist/cleek-styles/tiny-tailwind/pointer-events.styl +4 -4
- package/dist/cleek-styles/tiny-tailwind/shadow.styl +16 -16
- package/dist/cleek-styles/tiny-tailwind/size-constraints.styl +127 -127
- package/dist/cleek-styles/tiny-tailwind/text-color.styl +159 -159
- package/dist/cleek-styles/tiny-tailwind/text-decoration.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/text-overflow.styl +38 -38
- package/dist/cleek-styles/tiny-tailwind/text-transform.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/transition.styl +55 -55
- package/dist/cleek-styles/tiny-tailwind/user-select.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/visibility.styl +4 -4
- package/dist/cleek-styles/tiny-tailwind/z-index.styl +14 -14
- package/dist/main.cjs.js +1 -1
- package/dist/main.css +1 -1
- package/dist/main.es.js +2014 -1912
- package/dist/types/components/ck-input.vue.d.ts +6 -6
- package/dist/types/components/ck-select.vue.d.ts +8 -8
- package/dist/types/components/ck-table/ck-table.vue.d.ts +6 -6
- package/dist/types/components/ck-tile-picker.vue.d.ts +87 -0
- package/dist/types/components/index.d.ts +1 -0
- package/package.json +85 -85
|
@@ -58,6 +58,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
58
58
|
max: {
|
|
59
59
|
type: import('vue').PropType<number>;
|
|
60
60
|
};
|
|
61
|
+
placeholder: {
|
|
62
|
+
type: import('vue').PropType<string>;
|
|
63
|
+
};
|
|
61
64
|
tabindex: {
|
|
62
65
|
type: import('vue').PropType<string | number>;
|
|
63
66
|
};
|
|
@@ -76,9 +79,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
76
79
|
readonly: {
|
|
77
80
|
type: import('vue').PropType<boolean>;
|
|
78
81
|
};
|
|
79
|
-
placeholder: {
|
|
80
|
-
type: import('vue').PropType<string>;
|
|
81
|
-
};
|
|
82
82
|
plusMinusButtons: {
|
|
83
83
|
type: import('vue').PropType<boolean>;
|
|
84
84
|
};
|
|
@@ -180,6 +180,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
180
180
|
max: {
|
|
181
181
|
type: import('vue').PropType<number>;
|
|
182
182
|
};
|
|
183
|
+
placeholder: {
|
|
184
|
+
type: import('vue').PropType<string>;
|
|
185
|
+
};
|
|
183
186
|
tabindex: {
|
|
184
187
|
type: import('vue').PropType<string | number>;
|
|
185
188
|
};
|
|
@@ -198,9 +201,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
198
201
|
readonly: {
|
|
199
202
|
type: import('vue').PropType<boolean>;
|
|
200
203
|
};
|
|
201
|
-
placeholder: {
|
|
202
|
-
type: import('vue').PropType<string>;
|
|
203
|
-
};
|
|
204
204
|
plusMinusButtons: {
|
|
205
205
|
type: import('vue').PropType<boolean>;
|
|
206
206
|
};
|
|
@@ -45,6 +45,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
45
45
|
disabled: {
|
|
46
46
|
type: import('vue').PropType<boolean>;
|
|
47
47
|
};
|
|
48
|
+
placeholder: {
|
|
49
|
+
type: import('vue').PropType<string>;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
48
52
|
isLoading: {
|
|
49
53
|
type: import('vue').PropType<boolean>;
|
|
50
54
|
};
|
|
@@ -54,10 +58,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
54
58
|
labelAlign: {
|
|
55
59
|
type: import('vue').PropType<Align>;
|
|
56
60
|
};
|
|
57
|
-
placeholder: {
|
|
58
|
-
type: import('vue').PropType<string>;
|
|
59
|
-
default: string;
|
|
60
|
-
};
|
|
61
61
|
iconColor: {
|
|
62
62
|
type: import('vue').PropType<string>;
|
|
63
63
|
default: string;
|
|
@@ -169,6 +169,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
169
169
|
disabled: {
|
|
170
170
|
type: import('vue').PropType<boolean>;
|
|
171
171
|
};
|
|
172
|
+
placeholder: {
|
|
173
|
+
type: import('vue').PropType<string>;
|
|
174
|
+
default: string;
|
|
175
|
+
};
|
|
172
176
|
isLoading: {
|
|
173
177
|
type: import('vue').PropType<boolean>;
|
|
174
178
|
};
|
|
@@ -178,10 +182,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
178
182
|
labelAlign: {
|
|
179
183
|
type: import('vue').PropType<Align>;
|
|
180
184
|
};
|
|
181
|
-
placeholder: {
|
|
182
|
-
type: import('vue').PropType<string>;
|
|
183
|
-
default: string;
|
|
184
|
-
};
|
|
185
185
|
iconColor: {
|
|
186
186
|
type: import('vue').PropType<string>;
|
|
187
187
|
default: string;
|
|
@@ -47,6 +47,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
47
47
|
type: import('vue').PropType<boolean>;
|
|
48
48
|
default: any;
|
|
49
49
|
};
|
|
50
|
+
columns: {
|
|
51
|
+
type: import('vue').PropType<Columns>;
|
|
52
|
+
};
|
|
50
53
|
currentPage: {
|
|
51
54
|
type: import('vue').PropType<number>;
|
|
52
55
|
};
|
|
@@ -65,9 +68,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
65
68
|
hideHeaderActions: {
|
|
66
69
|
type: import('vue').PropType<boolean>;
|
|
67
70
|
};
|
|
68
|
-
columns: {
|
|
69
|
-
type: import('vue').PropType<Columns>;
|
|
70
|
-
};
|
|
71
71
|
rows: {
|
|
72
72
|
type: import('vue').PropType<any[]>;
|
|
73
73
|
required: true;
|
|
@@ -131,6 +131,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
131
131
|
type: import('vue').PropType<boolean>;
|
|
132
132
|
default: any;
|
|
133
133
|
};
|
|
134
|
+
columns: {
|
|
135
|
+
type: import('vue').PropType<Columns>;
|
|
136
|
+
};
|
|
134
137
|
currentPage: {
|
|
135
138
|
type: import('vue').PropType<number>;
|
|
136
139
|
};
|
|
@@ -149,9 +152,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
149
152
|
hideHeaderActions: {
|
|
150
153
|
type: import('vue').PropType<boolean>;
|
|
151
154
|
};
|
|
152
|
-
columns: {
|
|
153
|
-
type: import('vue').PropType<Columns>;
|
|
154
|
-
};
|
|
155
155
|
rows: {
|
|
156
156
|
type: import('vue').PropType<any[]>;
|
|
157
157
|
required: true;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { Align, Icon, IconPack } from '../cleek-options/cleek-options.types';
|
|
2
|
+
|
|
3
|
+
type Option = {
|
|
4
|
+
id: any;
|
|
5
|
+
name: string | number;
|
|
6
|
+
icon?: Icon;
|
|
7
|
+
description?: string;
|
|
8
|
+
};
|
|
9
|
+
type OptionValue = Option['id'];
|
|
10
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
11
|
+
modelValue: {
|
|
12
|
+
required: true;
|
|
13
|
+
type: import('vue').PropType<OptionValue | null>;
|
|
14
|
+
};
|
|
15
|
+
options: {
|
|
16
|
+
type: import('vue').PropType<Option[]>;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
disabled: {
|
|
20
|
+
type: import('vue').PropType<boolean>;
|
|
21
|
+
};
|
|
22
|
+
disabledTooltip: {
|
|
23
|
+
type: import('vue').PropType<string>;
|
|
24
|
+
};
|
|
25
|
+
size: {
|
|
26
|
+
type: import('vue').PropType<"m" | "l">;
|
|
27
|
+
};
|
|
28
|
+
columns: {
|
|
29
|
+
type: import('vue').PropType<number>;
|
|
30
|
+
};
|
|
31
|
+
changeLabel: {
|
|
32
|
+
type: import('vue').PropType<string>;
|
|
33
|
+
};
|
|
34
|
+
iconColor: {
|
|
35
|
+
type: import('vue').PropType<string>;
|
|
36
|
+
};
|
|
37
|
+
iconPack: {
|
|
38
|
+
type: import('vue').PropType<IconPack>;
|
|
39
|
+
};
|
|
40
|
+
label: {
|
|
41
|
+
type: import('vue').PropType<string>;
|
|
42
|
+
};
|
|
43
|
+
labelAlign: {
|
|
44
|
+
type: import('vue').PropType<Align>;
|
|
45
|
+
};
|
|
46
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
47
|
+
change: (value: any) => void;
|
|
48
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
49
|
+
modelValue: {
|
|
50
|
+
required: true;
|
|
51
|
+
type: import('vue').PropType<OptionValue | null>;
|
|
52
|
+
};
|
|
53
|
+
options: {
|
|
54
|
+
type: import('vue').PropType<Option[]>;
|
|
55
|
+
required: true;
|
|
56
|
+
};
|
|
57
|
+
disabled: {
|
|
58
|
+
type: import('vue').PropType<boolean>;
|
|
59
|
+
};
|
|
60
|
+
disabledTooltip: {
|
|
61
|
+
type: import('vue').PropType<string>;
|
|
62
|
+
};
|
|
63
|
+
size: {
|
|
64
|
+
type: import('vue').PropType<"m" | "l">;
|
|
65
|
+
};
|
|
66
|
+
columns: {
|
|
67
|
+
type: import('vue').PropType<number>;
|
|
68
|
+
};
|
|
69
|
+
changeLabel: {
|
|
70
|
+
type: import('vue').PropType<string>;
|
|
71
|
+
};
|
|
72
|
+
iconColor: {
|
|
73
|
+
type: import('vue').PropType<string>;
|
|
74
|
+
};
|
|
75
|
+
iconPack: {
|
|
76
|
+
type: import('vue').PropType<IconPack>;
|
|
77
|
+
};
|
|
78
|
+
label: {
|
|
79
|
+
type: import('vue').PropType<string>;
|
|
80
|
+
};
|
|
81
|
+
labelAlign: {
|
|
82
|
+
type: import('vue').PropType<Align>;
|
|
83
|
+
};
|
|
84
|
+
}>> & Readonly<{
|
|
85
|
+
onChange?: (value: any) => any;
|
|
86
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
87
|
+
export default _default;
|
|
@@ -31,6 +31,7 @@ export { default as CkSidebar } from './ck-sidebar.vue';
|
|
|
31
31
|
export { default as CkSwitch } from './ck-switch.vue';
|
|
32
32
|
export { default as CkSwitchOptions } from './ck-switch-options.vue';
|
|
33
33
|
export { default as CkTextarea } from './ck-textarea.vue';
|
|
34
|
+
export { default as CkTilePicker } from './ck-tile-picker.vue';
|
|
34
35
|
export { default as useWindowWidth } from '../hooks/windowWidth';
|
|
35
36
|
export { default as ckNotify } from './ck-notify/ck-notify';
|
|
36
37
|
export declare class TableData {
|
package/package.json
CHANGED
|
@@ -1,85 +1,85 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "cleek",
|
|
3
|
-
"description": "Complete UX Vue library",
|
|
4
|
-
"version": "2.11.
|
|
5
|
-
"author": "Quantic Onion",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"repository": "",
|
|
8
|
-
"type": "module",
|
|
9
|
-
"files": [
|
|
10
|
-
"dist"
|
|
11
|
-
],
|
|
12
|
-
"main": "./dist/main.cjs.js",
|
|
13
|
-
"module": "./dist/main.es.js",
|
|
14
|
-
"exports": {
|
|
15
|
-
".": {
|
|
16
|
-
"require": "./dist/main.cjs.js",
|
|
17
|
-
"import": "./dist/main.es.js",
|
|
18
|
-
"types": "./dist/types/main.d.ts"
|
|
19
|
-
},
|
|
20
|
-
"./main.css": "./dist/main.css",
|
|
21
|
-
"./package.json": "./package.json"
|
|
22
|
-
},
|
|
23
|
-
"types": "./dist/types/main.d.ts",
|
|
24
|
-
"scripts": {
|
|
25
|
-
"dev": "vitepress dev docs",
|
|
26
|
-
"typecheck": "vue-tsc --noEmit -p tsconfig.json --composite false",
|
|
27
|
-
"build": "vite build",
|
|
28
|
-
"build:full": "vite build && vue-tsc --declaration --emitDeclarationOnly",
|
|
29
|
-
"build:docs": "vitepress build docs",
|
|
30
|
-
"serve": "vitepress serve docs",
|
|
31
|
-
"analyze": "vite build --config analyze.config.js",
|
|
32
|
-
"patch-publish": "npm run build && npm version patch && npm publish",
|
|
33
|
-
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
|
|
34
|
-
"stylelint": "stylelint . --fix --ignore-path .stylelintignore",
|
|
35
|
-
"format": "prettier . --write",
|
|
36
|
-
"deploy": "node deploy.js"
|
|
37
|
-
},
|
|
38
|
-
"dependencies": {
|
|
39
|
-
"@fortawesome/fontawesome-svg-core": "^6.1.1",
|
|
40
|
-
"@fortawesome/free-brands-svg-icons": "^6.1.1",
|
|
41
|
-
"@fortawesome/free-regular-svg-icons": "^6.1.1",
|
|
42
|
-
"@fortawesome/free-solid-svg-icons": "^6.1.1",
|
|
43
|
-
"@fortawesome/vue-fontawesome": "^3.0.0-5",
|
|
44
|
-
"@vuepic/vue-datepicker": "^3.5.3",
|
|
45
|
-
"click-outside-vue3": "^4.0.1",
|
|
46
|
-
"floating-vue": "^5.2.2",
|
|
47
|
-
"mitt": "^3.0.0",
|
|
48
|
-
"pinia": "^3.0.2",
|
|
49
|
-
"pinia-plugin-persistedstate": "^3.2.1",
|
|
50
|
-
"quantic-methods": "^1.6.87",
|
|
51
|
-
"tabbable": "^5.2.0",
|
|
52
|
-
"tippy.js": "^6.3.1",
|
|
53
|
-
"vue": "^3.5.12",
|
|
54
|
-
"vue-perfect-scrollbar": "^0.2.1",
|
|
55
|
-
"vue3-datepicker": "^0.4.0"
|
|
56
|
-
},
|
|
57
|
-
"devDependencies": {
|
|
58
|
-
"@prettier/plugin-pug": "^2.5.1",
|
|
59
|
-
"@types/node": "^20.14.9",
|
|
60
|
-
"@vitejs/plugin-vue": "^4.2.3",
|
|
61
|
-
"@vue/compiler-sfc": "^3.1.5",
|
|
62
|
-
"@vue/eslint-config-prettier": "^7.1.0",
|
|
63
|
-
"@vue/eslint-config-typescript": "^11.0.3",
|
|
64
|
-
"@vue/language-plugin-pug": "^1.8.15",
|
|
65
|
-
"@vue/tsconfig": "^0.1.3",
|
|
66
|
-
"eslint": "^7.31.0",
|
|
67
|
-
"eslint-config-prettier": "^8.3.0",
|
|
68
|
-
"eslint-plugin-vue": "^7.14.0",
|
|
69
|
-
"prettier": "^2.3.2",
|
|
70
|
-
"prettier-plugin-stylus": "^0.1.0",
|
|
71
|
-
"pug": "^3.0.2",
|
|
72
|
-
"pug-plain-loader": "^1.1.0",
|
|
73
|
-
"rollup-plugin-visualizer": "^6.0.5",
|
|
74
|
-
"stylelint": "^15.9.0",
|
|
75
|
-
"stylelint-config-prettier": "^9.0.5",
|
|
76
|
-
"stylelint-config-recommended": "^12.0.0",
|
|
77
|
-
"stylelint-stylus": "^0.18.0",
|
|
78
|
-
"stylus": "^0.59.0",
|
|
79
|
-
"typescript": "^5.5.3",
|
|
80
|
-
"vite": "^4.3.9",
|
|
81
|
-
"vite-plugin-dts": "^3.9.1",
|
|
82
|
-
"vitepress": "^0.21.4",
|
|
83
|
-
"vue-tsc": "^2"
|
|
84
|
-
}
|
|
85
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "cleek",
|
|
3
|
+
"description": "Complete UX Vue library",
|
|
4
|
+
"version": "2.11.33",
|
|
5
|
+
"author": "Quantic Onion",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": "",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"main": "./dist/main.cjs.js",
|
|
13
|
+
"module": "./dist/main.es.js",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"require": "./dist/main.cjs.js",
|
|
17
|
+
"import": "./dist/main.es.js",
|
|
18
|
+
"types": "./dist/types/main.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./main.css": "./dist/main.css",
|
|
21
|
+
"./package.json": "./package.json"
|
|
22
|
+
},
|
|
23
|
+
"types": "./dist/types/main.d.ts",
|
|
24
|
+
"scripts": {
|
|
25
|
+
"dev": "vitepress dev docs",
|
|
26
|
+
"typecheck": "vue-tsc --noEmit -p tsconfig.json --composite false",
|
|
27
|
+
"build": "vite build",
|
|
28
|
+
"build:full": "vite build && vue-tsc --declaration --emitDeclarationOnly",
|
|
29
|
+
"build:docs": "vitepress build docs",
|
|
30
|
+
"serve": "vitepress serve docs",
|
|
31
|
+
"analyze": "vite build --config analyze.config.js",
|
|
32
|
+
"patch-publish": "npm run build && npm version patch && npm publish",
|
|
33
|
+
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
|
|
34
|
+
"stylelint": "stylelint . --fix --ignore-path .stylelintignore",
|
|
35
|
+
"format": "prettier . --write",
|
|
36
|
+
"deploy": "node deploy.js"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@fortawesome/fontawesome-svg-core": "^6.1.1",
|
|
40
|
+
"@fortawesome/free-brands-svg-icons": "^6.1.1",
|
|
41
|
+
"@fortawesome/free-regular-svg-icons": "^6.1.1",
|
|
42
|
+
"@fortawesome/free-solid-svg-icons": "^6.1.1",
|
|
43
|
+
"@fortawesome/vue-fontawesome": "^3.0.0-5",
|
|
44
|
+
"@vuepic/vue-datepicker": "^3.5.3",
|
|
45
|
+
"click-outside-vue3": "^4.0.1",
|
|
46
|
+
"floating-vue": "^5.2.2",
|
|
47
|
+
"mitt": "^3.0.0",
|
|
48
|
+
"pinia": "^3.0.2",
|
|
49
|
+
"pinia-plugin-persistedstate": "^3.2.1",
|
|
50
|
+
"quantic-methods": "^1.6.87",
|
|
51
|
+
"tabbable": "^5.2.0",
|
|
52
|
+
"tippy.js": "^6.3.1",
|
|
53
|
+
"vue": "^3.5.12",
|
|
54
|
+
"vue-perfect-scrollbar": "^0.2.1",
|
|
55
|
+
"vue3-datepicker": "^0.4.0"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@prettier/plugin-pug": "^2.5.1",
|
|
59
|
+
"@types/node": "^20.14.9",
|
|
60
|
+
"@vitejs/plugin-vue": "^4.2.3",
|
|
61
|
+
"@vue/compiler-sfc": "^3.1.5",
|
|
62
|
+
"@vue/eslint-config-prettier": "^7.1.0",
|
|
63
|
+
"@vue/eslint-config-typescript": "^11.0.3",
|
|
64
|
+
"@vue/language-plugin-pug": "^1.8.15",
|
|
65
|
+
"@vue/tsconfig": "^0.1.3",
|
|
66
|
+
"eslint": "^7.31.0",
|
|
67
|
+
"eslint-config-prettier": "^8.3.0",
|
|
68
|
+
"eslint-plugin-vue": "^7.14.0",
|
|
69
|
+
"prettier": "^2.3.2",
|
|
70
|
+
"prettier-plugin-stylus": "^0.1.0",
|
|
71
|
+
"pug": "^3.0.2",
|
|
72
|
+
"pug-plain-loader": "^1.1.0",
|
|
73
|
+
"rollup-plugin-visualizer": "^6.0.5",
|
|
74
|
+
"stylelint": "^15.9.0",
|
|
75
|
+
"stylelint-config-prettier": "^9.0.5",
|
|
76
|
+
"stylelint-config-recommended": "^12.0.0",
|
|
77
|
+
"stylelint-stylus": "^0.18.0",
|
|
78
|
+
"stylus": "^0.59.0",
|
|
79
|
+
"typescript": "^5.5.3",
|
|
80
|
+
"vite": "^4.3.9",
|
|
81
|
+
"vite-plugin-dts": "^3.9.1",
|
|
82
|
+
"vitepress": "^0.21.4",
|
|
83
|
+
"vue-tsc": "^2"
|
|
84
|
+
}
|
|
85
|
+
}
|