cleek 2.10.16 → 2.10.18

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.
Files changed (30) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +24 -66
  3. package/dist/cleek-styles/clear-app.styl +34 -34
  4. package/dist/cleek-styles/cleek-classes.styl +6 -6
  5. package/dist/cleek-styles/cleek-mixins.styl +127 -127
  6. package/dist/cleek-styles/tiny-tailwind/.custom.styl +8 -8
  7. package/dist/cleek-styles/tiny-tailwind/align-items.styl +10 -10
  8. package/dist/cleek-styles/tiny-tailwind/cursor.styl +72 -72
  9. package/dist/cleek-styles/tiny-tailwind/display.styl +42 -42
  10. package/dist/cleek-styles/tiny-tailwind/flex-shrink.styl +4 -4
  11. package/dist/cleek-styles/tiny-tailwind/flex-wrap.styl +6 -6
  12. package/dist/cleek-styles/tiny-tailwind/font-weight.styl +18 -18
  13. package/dist/cleek-styles/tiny-tailwind/index.styl +15 -15
  14. package/dist/cleek-styles/tiny-tailwind/justify-content.styl +12 -12
  15. package/dist/cleek-styles/tiny-tailwind/margin.styl +576 -576
  16. package/dist/cleek-styles/tiny-tailwind/padding.styl +576 -576
  17. package/dist/cleek-styles/tiny-tailwind/position.styl +10 -10
  18. package/dist/cleek-styles/tiny-tailwind/text-align.styl +8 -8
  19. package/dist/cleek-styles/tiny-tailwind/whitespace.styl +10 -10
  20. package/dist/cleek-styles/tiny-tailwind/width.styl +72 -72
  21. package/dist/main.cjs.js +43 -43
  22. package/dist/main.css +1 -1
  23. package/dist/main.es.js +34551 -34475
  24. package/dist/types/components/ck-dropdown/ck-dropdown.vue.d.ts +4 -1
  25. package/dist/types/components/ck-select.vue.d.ts +241 -89
  26. package/dist/types/components/ck-switch-options.vue.d.ts +6 -6
  27. package/dist/types/components/index.d.ts +1 -0
  28. package/dist/types/composables/use-scroll-listener.composable.d.ts +3 -0
  29. package/dist/types/utils/string-helpers.d.ts +1 -0
  30. package/package.json +85 -85
@@ -1,5 +1,6 @@
1
1
  import { Align, Layout } from '../../cleek-options/cleek-options.types';
2
2
 
3
+ declare function close(): void;
3
4
  declare function __VLS_template(): {
4
5
  trigger?(_: {}): any;
5
6
  content?(_: {}): any;
@@ -8,7 +9,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
8
9
  align?: Align;
9
10
  dark?: boolean;
10
11
  layout?: Layout;
11
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
12
+ }>>, {
13
+ close: typeof close;
14
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
12
15
  align?: Align;
13
16
  dark?: boolean;
14
17
  layout?: Layout;
@@ -1,97 +1,249 @@
1
1
  import { Align, AlignVertical, Color, Icon, IconPack, Layout, WidthBreaks } from '../cleek-options/cleek-options.types';
2
2
 
3
- type SelectOption = any;
3
+ type OptionValue = any;
4
+ type Option = any;
4
5
  declare function focus(): void;
5
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
- modelValue: any;
7
- prop?: string;
8
- reduceValueProp?: string;
9
- reduceValueMethod?: string;
10
- reduceNameProp?: string;
11
- reduceNameMethod?: string;
12
- autofocus?: boolean;
13
- notReduce?: boolean;
14
- notReduceValue?: boolean;
15
- options?: SelectOption[];
16
- reduceNameFunction?: (option: SelectOption) => string;
17
- reduceValueFunction?: (option: SelectOption) => any;
18
- notClearable?: boolean;
19
- clearValue?: any;
20
- searchable?: boolean | string;
21
- width?: string;
22
- minWidth?: string;
23
- layout?: Layout;
24
- noBorder?: boolean;
25
- borderColor?: Color;
26
- bgTransparent?: boolean;
27
- disabled?: boolean;
28
- group?: Align;
29
- groupVertical?: AlignVertical;
30
- widthBreaks?: WidthBreaks;
31
- icon?: Icon;
32
- iconRight?: Icon;
33
- iconPack?: IconPack;
34
- iconColor?: Color;
35
- label?: string;
36
- labelAlign?: Align;
37
- optional?: boolean;
38
- placeholder?: string;
39
- emptyOptionsMsg?: string;
40
- backgroundColor?: Color;
41
- }>>, {
6
+ declare function blur(): void;
7
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
8
+ modelValue: {
9
+ required: true;
10
+ type: import('vue').PropType<OptionValue>;
11
+ };
12
+ label: {
13
+ type: import('vue').PropType<string>;
14
+ };
15
+ layout: {
16
+ type: import('vue').PropType<Layout>;
17
+ };
18
+ borderColor: {
19
+ type: import('vue').PropType<string>;
20
+ };
21
+ backgroundColor: {
22
+ type: import('vue').PropType<string>;
23
+ };
24
+ clearValue: {
25
+ type: import('vue').PropType<any>;
26
+ };
27
+ group: {
28
+ type: import('vue').PropType<Align>;
29
+ };
30
+ groupVertical: {
31
+ type: import('vue').PropType<AlignVertical>;
32
+ };
33
+ widthBreaks: {
34
+ type: import('vue').PropType<WidthBreaks>;
35
+ };
36
+ width: {
37
+ type: import('vue').PropType<string>;
38
+ };
39
+ icon: {
40
+ type: import('vue').PropType<Icon>;
41
+ };
42
+ iconPack: {
43
+ type: import('vue').PropType<IconPack>;
44
+ };
45
+ disabled: {
46
+ type: import('vue').PropType<boolean>;
47
+ };
48
+ iconRight: {
49
+ type: import('vue').PropType<Icon>;
50
+ };
51
+ labelAlign: {
52
+ type: import('vue').PropType<Align>;
53
+ };
54
+ placeholder: {
55
+ type: import('vue').PropType<string>;
56
+ default: string;
57
+ };
58
+ iconColor: {
59
+ type: import('vue').PropType<string>;
60
+ default: string;
61
+ };
62
+ optional: {
63
+ type: import('vue').PropType<boolean>;
64
+ };
65
+ autofocus: {
66
+ type: import('vue').PropType<boolean>;
67
+ };
68
+ options: {
69
+ type: import('vue').PropType<any[]>;
70
+ required: true;
71
+ };
72
+ optionsLimit: {
73
+ type: import('vue').PropType<number>;
74
+ default: number;
75
+ };
76
+ reduceValueProp: {
77
+ type: import('vue').PropType<string>;
78
+ default: string;
79
+ };
80
+ reduceValueMethod: {
81
+ type: import('vue').PropType<string>;
82
+ };
83
+ reduceValueFunction: {
84
+ type: import('vue').PropType<(option: Option) => OptionValue>;
85
+ };
86
+ reduceNameProp: {
87
+ type: import('vue').PropType<string>;
88
+ default: string;
89
+ };
90
+ reduceNameMethod: {
91
+ type: import('vue').PropType<string>;
92
+ };
93
+ reduceNameFunction: {
94
+ type: import('vue').PropType<(option: Option) => string>;
95
+ };
96
+ notReduce: {
97
+ type: import('vue').PropType<boolean>;
98
+ };
99
+ notReduceValue: {
100
+ type: import('vue').PropType<boolean>;
101
+ };
102
+ notClearable: {
103
+ type: import('vue').PropType<boolean>;
104
+ };
105
+ minWidth: {
106
+ type: import('vue').PropType<string>;
107
+ default: string;
108
+ };
109
+ noBorder: {
110
+ type: import('vue').PropType<boolean>;
111
+ };
112
+ bgTransparent: {
113
+ type: import('vue').PropType<boolean>;
114
+ };
115
+ emptyOptionsMsg: {
116
+ type: import('vue').PropType<string>;
117
+ default: string;
118
+ };
119
+ }>, {
42
120
  focus: typeof focus;
121
+ blur: typeof blur;
43
122
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
44
- "update:modelValue": (value: any) => void;
45
123
  click: (event: Event) => void;
46
- change: (event?: Event) => void;
47
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
48
- modelValue: any;
49
- prop?: string;
50
- reduceValueProp?: string;
51
- reduceValueMethod?: string;
52
- reduceNameProp?: string;
53
- reduceNameMethod?: string;
54
- autofocus?: boolean;
55
- notReduce?: boolean;
56
- notReduceValue?: boolean;
57
- options?: SelectOption[];
58
- reduceNameFunction?: (option: SelectOption) => string;
59
- reduceValueFunction?: (option: SelectOption) => any;
60
- notClearable?: boolean;
61
- clearValue?: any;
62
- searchable?: boolean | string;
63
- width?: string;
64
- minWidth?: string;
65
- layout?: Layout;
66
- noBorder?: boolean;
67
- borderColor?: Color;
68
- bgTransparent?: boolean;
69
- disabled?: boolean;
70
- group?: Align;
71
- groupVertical?: AlignVertical;
72
- widthBreaks?: WidthBreaks;
73
- icon?: Icon;
74
- iconRight?: Icon;
75
- iconPack?: IconPack;
76
- iconColor?: Color;
77
- label?: string;
78
- labelAlign?: Align;
79
- optional?: boolean;
80
- placeholder?: string;
81
- emptyOptionsMsg?: string;
82
- backgroundColor?: Color;
83
- }>>> & Readonly<{
84
- onClick?: (event: Event) => any;
85
- onChange?: (event?: Event) => any;
86
- "onUpdate:modelValue"?: (value: any) => any;
87
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
88
- export default _default;
89
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
90
- type __VLS_TypePropsToRuntimeProps<T> = {
91
- [K in keyof T]-?: {} extends Pick<T, K> ? {
92
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
93
- } : {
94
- type: import('vue').PropType<T[K]>;
124
+ change: (event: Event) => void;
125
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
126
+ modelValue: {
95
127
  required: true;
128
+ type: import('vue').PropType<OptionValue>;
129
+ };
130
+ label: {
131
+ type: import('vue').PropType<string>;
132
+ };
133
+ layout: {
134
+ type: import('vue').PropType<Layout>;
135
+ };
136
+ borderColor: {
137
+ type: import('vue').PropType<string>;
138
+ };
139
+ backgroundColor: {
140
+ type: import('vue').PropType<string>;
141
+ };
142
+ clearValue: {
143
+ type: import('vue').PropType<any>;
144
+ };
145
+ group: {
146
+ type: import('vue').PropType<Align>;
147
+ };
148
+ groupVertical: {
149
+ type: import('vue').PropType<AlignVertical>;
150
+ };
151
+ widthBreaks: {
152
+ type: import('vue').PropType<WidthBreaks>;
153
+ };
154
+ width: {
155
+ type: import('vue').PropType<string>;
156
+ };
157
+ icon: {
158
+ type: import('vue').PropType<Icon>;
159
+ };
160
+ iconPack: {
161
+ type: import('vue').PropType<IconPack>;
162
+ };
163
+ disabled: {
164
+ type: import('vue').PropType<boolean>;
165
+ };
166
+ iconRight: {
167
+ type: import('vue').PropType<Icon>;
168
+ };
169
+ labelAlign: {
170
+ type: import('vue').PropType<Align>;
171
+ };
172
+ placeholder: {
173
+ type: import('vue').PropType<string>;
174
+ default: string;
175
+ };
176
+ iconColor: {
177
+ type: import('vue').PropType<string>;
178
+ default: string;
179
+ };
180
+ optional: {
181
+ type: import('vue').PropType<boolean>;
182
+ };
183
+ autofocus: {
184
+ type: import('vue').PropType<boolean>;
96
185
  };
97
- };
186
+ options: {
187
+ type: import('vue').PropType<any[]>;
188
+ required: true;
189
+ };
190
+ optionsLimit: {
191
+ type: import('vue').PropType<number>;
192
+ default: number;
193
+ };
194
+ reduceValueProp: {
195
+ type: import('vue').PropType<string>;
196
+ default: string;
197
+ };
198
+ reduceValueMethod: {
199
+ type: import('vue').PropType<string>;
200
+ };
201
+ reduceValueFunction: {
202
+ type: import('vue').PropType<(option: Option) => OptionValue>;
203
+ };
204
+ reduceNameProp: {
205
+ type: import('vue').PropType<string>;
206
+ default: string;
207
+ };
208
+ reduceNameMethod: {
209
+ type: import('vue').PropType<string>;
210
+ };
211
+ reduceNameFunction: {
212
+ type: import('vue').PropType<(option: Option) => string>;
213
+ };
214
+ notReduce: {
215
+ type: import('vue').PropType<boolean>;
216
+ };
217
+ notReduceValue: {
218
+ type: import('vue').PropType<boolean>;
219
+ };
220
+ notClearable: {
221
+ type: import('vue').PropType<boolean>;
222
+ };
223
+ minWidth: {
224
+ type: import('vue').PropType<string>;
225
+ default: string;
226
+ };
227
+ noBorder: {
228
+ type: import('vue').PropType<boolean>;
229
+ };
230
+ bgTransparent: {
231
+ type: import('vue').PropType<boolean>;
232
+ };
233
+ emptyOptionsMsg: {
234
+ type: import('vue').PropType<string>;
235
+ default: string;
236
+ };
237
+ }>> & Readonly<{
238
+ onClick?: (event: Event) => any;
239
+ onChange?: (event: Event) => any;
240
+ }>, {
241
+ placeholder: string;
242
+ iconColor: Color;
243
+ optionsLimit: number;
244
+ reduceValueProp: string;
245
+ reduceNameProp: string;
246
+ minWidth: string;
247
+ emptyOptionsMsg: string;
248
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
249
+ export default _default;
@@ -24,13 +24,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
24
24
  options: {
25
25
  type: import('vue').PropType<Option[]>;
26
26
  };
27
+ notReduce: {
28
+ type: import('vue').PropType<boolean>;
29
+ };
27
30
  prop: {
28
31
  type: import('vue').PropType<string>;
29
32
  default: string;
30
33
  };
31
- notReduce: {
32
- type: import('vue').PropType<boolean>;
33
- };
34
34
  reduceFunction: {
35
35
  type: import('vue').PropType<(option: Option) => any>;
36
36
  };
@@ -62,13 +62,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
62
62
  options: {
63
63
  type: import('vue').PropType<Option[]>;
64
64
  };
65
+ notReduce: {
66
+ type: import('vue').PropType<boolean>;
67
+ };
65
68
  prop: {
66
69
  type: import('vue').PropType<string>;
67
70
  default: string;
68
71
  };
69
- notReduce: {
70
- type: import('vue').PropType<boolean>;
71
- };
72
72
  reduceFunction: {
73
73
  type: import('vue').PropType<(option: Option) => any>;
74
74
  };
@@ -47,6 +47,7 @@ export declare class SelectedRows {
47
47
  constructor(list: RowId[], settings?: {
48
48
  toggleable: boolean;
49
49
  });
50
+ getIdsAsArray(): any[];
50
51
  isRowSelected(id: RowId): boolean;
51
52
  isAnyRowsSelected(ids: RowId[]): boolean;
52
53
  areAllRowsSelecteds(ids: RowId[]): boolean;
@@ -0,0 +1,3 @@
1
+ import { Ref } from 'vue';
2
+
3
+ export declare function useScrollListener(element: Ref<HTMLElement>, handleScroll: (event: Event) => void): void;
@@ -0,0 +1 @@
1
+ export declare function normalizeText(text: string): string;
package/package.json CHANGED
@@ -1,85 +1,85 @@
1
- {
2
- "name": "cleek",
3
- "description": "Complete UX Vue library",
4
- "version": "2.10.16",
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": "^2.1.7",
49
- "pinia-plugin-persistedstate": "^3.2.1",
50
- "quantic-methods": "1.6.70",
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": "^5.5.2",
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": "^0.38.2"
84
- }
85
- }
1
+ {
2
+ "name": "cleek",
3
+ "description": "Complete UX Vue library",
4
+ "version": "2.10.18",
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": "^2.1.7",
49
+ "pinia-plugin-persistedstate": "^3.2.1",
50
+ "quantic-methods": "1.6.70",
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": "^5.5.2",
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": "^0.38.2"
84
+ }
85
+ }