@volverjs/ui-vue 0.0.9-beta.11 → 0.0.9-beta.13
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/auto-imports.d.ts +2 -2
- package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +3 -3
- package/dist/components/VvAlertGroup/index.d.ts +1 -1
- package/dist/components/VvCombobox/VvCombobox.es.js +4 -4
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +291 -84
- package/dist/components/VvCombobox/index.d.ts +96 -27
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +290 -83
- package/dist/components/VvDropdown/index.d.ts +96 -27
- package/dist/components/VvSelect/VvSelect.vue.d.ts +1 -1
- package/dist/components/index.es.js +4 -4
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/props/index.d.ts +96 -27
- package/dist/stories/AccordionGroup/AccordionGroup.stories.d.ts +2 -2
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +18 -18
- package/package.json +37 -37
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvCombobox/VvCombobox.vue +3 -3
package/dist/props/index.d.ts
CHANGED
|
@@ -240,12 +240,30 @@ export declare const DropdownProps: {
|
|
|
240
240
|
* @see https://floating-ui.com/docs/shift
|
|
241
241
|
*/
|
|
242
242
|
shift: {
|
|
243
|
-
type: PropType<boolean |
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
243
|
+
type: PropType<boolean | {
|
|
244
|
+
mainAxis?: boolean | undefined;
|
|
245
|
+
crossAxis?: boolean | undefined;
|
|
246
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
247
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
248
|
+
altBoundary?: boolean | undefined;
|
|
249
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
250
|
+
limiter?: {
|
|
251
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
252
|
+
options?: any;
|
|
253
|
+
} | undefined;
|
|
254
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
255
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
256
|
+
mainAxis?: boolean | undefined;
|
|
257
|
+
crossAxis?: boolean | undefined;
|
|
258
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
259
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
260
|
+
altBoundary?: boolean | undefined;
|
|
261
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
262
|
+
limiter?: {
|
|
263
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
264
|
+
options?: any;
|
|
265
|
+
} | undefined;
|
|
266
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
249
267
|
}> | undefined>;
|
|
250
268
|
default: boolean;
|
|
251
269
|
};
|
|
@@ -254,12 +272,30 @@ export declare const DropdownProps: {
|
|
|
254
272
|
* @see https://floating-ui.com/docs/flip
|
|
255
273
|
*/
|
|
256
274
|
flip: {
|
|
257
|
-
type: PropType<boolean |
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
275
|
+
type: PropType<boolean | {
|
|
276
|
+
mainAxis?: boolean | undefined;
|
|
277
|
+
crossAxis?: boolean | undefined;
|
|
278
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
279
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
280
|
+
altBoundary?: boolean | undefined;
|
|
281
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
282
|
+
fallbackPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
283
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
284
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
285
|
+
flipAlignment?: boolean | undefined;
|
|
286
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
287
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
288
|
+
mainAxis?: boolean | undefined;
|
|
289
|
+
crossAxis?: boolean | undefined;
|
|
290
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
291
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
292
|
+
altBoundary?: boolean | undefined;
|
|
293
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
294
|
+
fallbackPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
295
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
296
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
297
|
+
flipAlignment?: boolean | undefined;
|
|
298
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
263
299
|
}> | undefined>;
|
|
264
300
|
default: boolean;
|
|
265
301
|
};
|
|
@@ -268,13 +304,38 @@ export declare const DropdownProps: {
|
|
|
268
304
|
* @see https://floating-ui.com/docs/size
|
|
269
305
|
*/
|
|
270
306
|
size: {
|
|
271
|
-
type: PropType<boolean |
|
|
272
|
-
|
|
307
|
+
type: PropType<boolean | {
|
|
308
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
309
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
310
|
+
altBoundary?: boolean | undefined;
|
|
311
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
312
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
313
|
+
apply?: ((args: {
|
|
273
314
|
x: number;
|
|
274
315
|
y: number;
|
|
316
|
+
initialPlacement: import("@floating-ui/core").Placement;
|
|
275
317
|
placement: import("@floating-ui/core").Placement;
|
|
276
318
|
strategy: import("@floating-ui/core").Strategy;
|
|
319
|
+
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
320
|
+
rects: import("@floating-ui/core").ElementRects;
|
|
321
|
+
platform: import("@floating-ui/core").Platform;
|
|
322
|
+
elements: import("@floating-ui/dom").Elements;
|
|
323
|
+
} & {
|
|
324
|
+
availableWidth: number;
|
|
325
|
+
availableHeight: number;
|
|
326
|
+
}) => void | Promise<void>) | undefined;
|
|
327
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
328
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
329
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
330
|
+
altBoundary?: boolean | undefined;
|
|
331
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
332
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
333
|
+
apply?: ((args: {
|
|
334
|
+
x: number;
|
|
335
|
+
y: number;
|
|
277
336
|
initialPlacement: import("@floating-ui/core").Placement;
|
|
337
|
+
placement: import("@floating-ui/core").Placement;
|
|
338
|
+
strategy: import("@floating-ui/core").Strategy;
|
|
278
339
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
279
340
|
rects: import("@floating-ui/core").ElementRects;
|
|
280
341
|
platform: import("@floating-ui/core").Platform;
|
|
@@ -282,13 +343,7 @@ export declare const DropdownProps: {
|
|
|
282
343
|
} & {
|
|
283
344
|
availableWidth: number;
|
|
284
345
|
availableHeight: number;
|
|
285
|
-
}) => void | Promise<void
|
|
286
|
-
} & {
|
|
287
|
-
rootBoundary: import("@floating-ui/core").RootBoundary;
|
|
288
|
-
elementContext: import("@floating-ui/core").ElementContext;
|
|
289
|
-
altBoundary: boolean;
|
|
290
|
-
padding: import("@floating-ui/core").Padding;
|
|
291
|
-
boundary: import("@floating-ui/dom").Boundary;
|
|
346
|
+
}) => void | Promise<void>) | undefined;
|
|
292
347
|
}> | undefined>;
|
|
293
348
|
default: () => {
|
|
294
349
|
padding: number;
|
|
@@ -299,12 +354,26 @@ export declare const DropdownProps: {
|
|
|
299
354
|
* @see https://floating-ui.com/docs/autoPlacement
|
|
300
355
|
*/
|
|
301
356
|
autoPlacement: {
|
|
302
|
-
type: PropType<boolean |
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
357
|
+
type: PropType<boolean | {
|
|
358
|
+
crossAxis?: boolean | undefined;
|
|
359
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
360
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
361
|
+
altBoundary?: boolean | undefined;
|
|
362
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
363
|
+
alignment?: import("@floating-ui/core").Alignment | null | undefined;
|
|
364
|
+
autoAlignment?: boolean | undefined;
|
|
365
|
+
allowedPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
366
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
367
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
368
|
+
crossAxis?: boolean | undefined;
|
|
369
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
370
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
371
|
+
altBoundary?: boolean | undefined;
|
|
372
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
373
|
+
alignment?: import("@floating-ui/core").Alignment | null | undefined;
|
|
374
|
+
autoAlignment?: boolean | undefined;
|
|
375
|
+
allowedPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
376
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
308
377
|
}> | undefined>;
|
|
309
378
|
default: boolean;
|
|
310
379
|
};
|
|
@@ -15,10 +15,10 @@ declare const _default: Meta<{
|
|
|
15
15
|
readonly modelValue?: string | unknown[] | undefined;
|
|
16
16
|
readonly modifiers?: string | string[] | undefined;
|
|
17
17
|
key?: string | number | symbol | undefined;
|
|
18
|
+
style?: unknown;
|
|
19
|
+
class?: unknown;
|
|
18
20
|
ref_for?: boolean | undefined;
|
|
19
21
|
ref_key?: string | undefined;
|
|
20
|
-
class?: unknown;
|
|
21
|
-
style?: unknown;
|
|
22
22
|
readonly storeKey?: string | undefined;
|
|
23
23
|
};
|
|
24
24
|
$attrs: {
|
|
@@ -15,16 +15,16 @@ declare const _default: {
|
|
|
15
15
|
readonly modelValue?: string | unknown[] | undefined;
|
|
16
16
|
readonly modifiers?: string | string[] | undefined;
|
|
17
17
|
key?: string | number | symbol | undefined;
|
|
18
|
+
style?: unknown;
|
|
19
|
+
class?: unknown;
|
|
18
20
|
ref_for?: boolean | undefined;
|
|
19
21
|
ref_key?: string | undefined;
|
|
20
|
-
class?: unknown;
|
|
21
|
-
style?: unknown;
|
|
22
22
|
readonly storeKey?: string | undefined;
|
|
23
23
|
} & {
|
|
24
24
|
default?: import("vue").VNodeChild | ((_: {}) => any);
|
|
25
25
|
}>, "props"> | undefined;
|
|
26
26
|
subcomponents?: Record<string, Omit<import("vue").ConcreteComponent<unknown>, "props">> | undefined;
|
|
27
|
-
play?: import("@storybook/types").PlayFunction<import("@storybook/vue3/dist/render-
|
|
27
|
+
play?: import("@storybook/types").PlayFunction<import("@storybook/vue3/dist/render-32b7dd3f").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
28
28
|
new (...args: any[]): {
|
|
29
29
|
$: import("vue").ComponentInternalInstance;
|
|
30
30
|
$data: {};
|
|
@@ -39,10 +39,10 @@ declare const _default: {
|
|
|
39
39
|
readonly modelValue?: string | unknown[] | undefined;
|
|
40
40
|
readonly modifiers?: string | string[] | undefined;
|
|
41
41
|
key?: string | number | symbol | undefined;
|
|
42
|
+
style?: unknown;
|
|
43
|
+
class?: unknown;
|
|
42
44
|
ref_for?: boolean | undefined;
|
|
43
45
|
ref_key?: string | undefined;
|
|
44
|
-
class?: unknown;
|
|
45
|
-
style?: unknown;
|
|
46
46
|
readonly storeKey?: string | undefined;
|
|
47
47
|
};
|
|
48
48
|
$attrs: {
|
|
@@ -151,7 +151,7 @@ declare const _default: {
|
|
|
151
151
|
};
|
|
152
152
|
})>> | undefined;
|
|
153
153
|
tags?: string[] | undefined;
|
|
154
|
-
decorators?: import("@storybook/types").DecoratorFunction<import("@storybook/vue3/dist/render-
|
|
154
|
+
decorators?: import("@storybook/types").DecoratorFunction<import("@storybook/vue3/dist/render-32b7dd3f").V, {
|
|
155
155
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
156
156
|
disabled?: boolean | undefined;
|
|
157
157
|
not?: boolean | undefined;
|
|
@@ -162,10 +162,10 @@ declare const _default: {
|
|
|
162
162
|
readonly modelValue?: string | unknown[] | undefined;
|
|
163
163
|
readonly modifiers?: string | string[] | undefined;
|
|
164
164
|
key?: string | number | symbol | undefined;
|
|
165
|
+
style?: unknown;
|
|
166
|
+
class?: unknown;
|
|
165
167
|
ref_for?: boolean | undefined;
|
|
166
168
|
ref_key?: string | undefined;
|
|
167
|
-
class?: unknown;
|
|
168
|
-
style?: unknown;
|
|
169
169
|
readonly storeKey?: string | undefined;
|
|
170
170
|
default?: import("vue").VNodeChild | ((_: {}) => any);
|
|
171
171
|
}>[] | undefined;
|
|
@@ -185,10 +185,10 @@ declare const _default: {
|
|
|
185
185
|
readonly modelValue?: string | unknown[] | undefined;
|
|
186
186
|
readonly modifiers?: string | string[] | undefined;
|
|
187
187
|
key?: string | number | symbol | undefined;
|
|
188
|
+
style?: unknown;
|
|
189
|
+
class?: unknown;
|
|
188
190
|
ref_for?: boolean | undefined;
|
|
189
191
|
ref_key?: string | undefined;
|
|
190
|
-
class?: unknown;
|
|
191
|
-
style?: unknown;
|
|
192
192
|
readonly storeKey?: string | undefined;
|
|
193
193
|
};
|
|
194
194
|
$attrs: {
|
|
@@ -311,10 +311,10 @@ declare const _default: {
|
|
|
311
311
|
readonly modelValue?: string | unknown[] | undefined;
|
|
312
312
|
readonly modifiers?: string | string[] | undefined;
|
|
313
313
|
key?: string | number | symbol | undefined;
|
|
314
|
+
style?: unknown;
|
|
315
|
+
class?: unknown;
|
|
314
316
|
ref_for?: boolean | undefined;
|
|
315
317
|
ref_key?: string | undefined;
|
|
316
|
-
class?: unknown;
|
|
317
|
-
style?: unknown;
|
|
318
318
|
readonly storeKey?: string | undefined;
|
|
319
319
|
};
|
|
320
320
|
$attrs: {
|
|
@@ -422,7 +422,7 @@ declare const _default: {
|
|
|
422
422
|
default?(_: {}): any;
|
|
423
423
|
};
|
|
424
424
|
})>>> | undefined;
|
|
425
|
-
loaders?: import("@storybook/types").LoaderFunction<import("@storybook/vue3/dist/render-
|
|
425
|
+
loaders?: import("@storybook/types").LoaderFunction<import("@storybook/vue3/dist/render-32b7dd3f").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
426
426
|
new (...args: any[]): {
|
|
427
427
|
$: import("vue").ComponentInternalInstance;
|
|
428
428
|
$data: {};
|
|
@@ -437,10 +437,10 @@ declare const _default: {
|
|
|
437
437
|
readonly modelValue?: string | unknown[] | undefined;
|
|
438
438
|
readonly modifiers?: string | string[] | undefined;
|
|
439
439
|
key?: string | number | symbol | undefined;
|
|
440
|
+
style?: unknown;
|
|
441
|
+
class?: unknown;
|
|
440
442
|
ref_for?: boolean | undefined;
|
|
441
443
|
ref_key?: string | undefined;
|
|
442
|
-
class?: unknown;
|
|
443
|
-
style?: unknown;
|
|
444
444
|
readonly storeKey?: string | undefined;
|
|
445
445
|
};
|
|
446
446
|
$attrs: {
|
|
@@ -548,7 +548,7 @@ declare const _default: {
|
|
|
548
548
|
default?(_: {}): any;
|
|
549
549
|
};
|
|
550
550
|
})>>[] | undefined;
|
|
551
|
-
render?: import("@storybook/types").ArgsStoryFn<import("@storybook/vue3/dist/render-
|
|
551
|
+
render?: import("@storybook/types").ArgsStoryFn<import("@storybook/vue3/dist/render-32b7dd3f").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
552
552
|
new (...args: any[]): {
|
|
553
553
|
$: import("vue").ComponentInternalInstance;
|
|
554
554
|
$data: {};
|
|
@@ -563,10 +563,10 @@ declare const _default: {
|
|
|
563
563
|
readonly modelValue?: string | unknown[] | undefined;
|
|
564
564
|
readonly modifiers?: string | string[] | undefined;
|
|
565
565
|
key?: string | number | symbol | undefined;
|
|
566
|
+
style?: unknown;
|
|
567
|
+
class?: unknown;
|
|
566
568
|
ref_for?: boolean | undefined;
|
|
567
569
|
ref_key?: string | undefined;
|
|
568
|
-
class?: unknown;
|
|
569
|
-
style?: unknown;
|
|
570
570
|
readonly storeKey?: string | undefined;
|
|
571
571
|
};
|
|
572
572
|
$attrs: {
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "https://github.com/volverjs/ui-vue/issues"
|
|
21
21
|
},
|
|
22
|
-
"version": "0.0.9-beta.
|
|
22
|
+
"version": "0.0.9-beta.13",
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": ">= 16.x"
|
|
25
25
|
},
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
"*.d.ts"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@floating-ui/vue": "^1.0.
|
|
41
|
+
"@floating-ui/vue": "^1.0.2",
|
|
42
42
|
"@iconify/tools": "^3.0.2",
|
|
43
43
|
"@iconify/vue": "^4.1.1",
|
|
44
44
|
"@vueuse/core": "^10.2.1",
|
|
45
45
|
"jsdom": "^22.1.0",
|
|
46
46
|
"maska": "^2.1.9",
|
|
47
|
-
"mitt": "^3.0.
|
|
47
|
+
"mitt": "^3.0.1",
|
|
48
48
|
"nanoid": "^4.0.2",
|
|
49
49
|
"ts-dot-prop": "^2.1.3",
|
|
50
50
|
"vue": "^3.3.4"
|
|
@@ -53,77 +53,77 @@
|
|
|
53
53
|
"@volverjs/style": "0.*"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@babel/core": "^7.22.
|
|
57
|
-
"@babel/preset-env": "^7.22.
|
|
56
|
+
"@babel/core": "^7.22.9",
|
|
57
|
+
"@babel/preset-env": "^7.22.9",
|
|
58
58
|
"@babel/preset-typescript": "^7.22.5",
|
|
59
59
|
"@iconify/types": "^2.0.0",
|
|
60
60
|
"@iconify/utils": "^2.1.7",
|
|
61
61
|
"@mdx-js/react": "^2.3.0",
|
|
62
62
|
"@rushstack/eslint-patch": "^1.3.2",
|
|
63
|
-
"@storybook/addon-a11y": "^7.0
|
|
64
|
-
"@storybook/addon-actions": "^7.0
|
|
65
|
-
"@storybook/addon-docs": "^7.0
|
|
66
|
-
"@storybook/addon-essentials": "^7.0
|
|
67
|
-
"@storybook/addon-interactions": "^7.0
|
|
68
|
-
"@storybook/addon-links": "^7.0
|
|
69
|
-
"@storybook/channel-postmessage": "^7.0
|
|
70
|
-
"@storybook/channel-websocket": "^7.0
|
|
71
|
-
"@storybook/cli": "^7.0
|
|
72
|
-
"@storybook/client-api": "^7.0
|
|
73
|
-
"@storybook/client-logger": "^7.0
|
|
74
|
-
"@storybook/core-common": "^7.0
|
|
63
|
+
"@storybook/addon-a11y": "^7.1.0",
|
|
64
|
+
"@storybook/addon-actions": "^7.1.0",
|
|
65
|
+
"@storybook/addon-docs": "^7.1.0",
|
|
66
|
+
"@storybook/addon-essentials": "^7.1.0",
|
|
67
|
+
"@storybook/addon-interactions": "^7.1.0",
|
|
68
|
+
"@storybook/addon-links": "^7.1.0",
|
|
69
|
+
"@storybook/channel-postmessage": "^7.1.0",
|
|
70
|
+
"@storybook/channel-websocket": "^7.1.0",
|
|
71
|
+
"@storybook/cli": "^7.1.0",
|
|
72
|
+
"@storybook/client-api": "^7.1.0",
|
|
73
|
+
"@storybook/client-logger": "^7.1.0",
|
|
74
|
+
"@storybook/core-common": "^7.1.0",
|
|
75
75
|
"@storybook/jest": "^0.1.0",
|
|
76
|
-
"@storybook/preview-api": "^7.0
|
|
77
|
-
"@storybook/preview-web": "^7.0
|
|
76
|
+
"@storybook/preview-api": "^7.1.0",
|
|
77
|
+
"@storybook/preview-web": "^7.1.0",
|
|
78
78
|
"@storybook/test-runner": "^0.11.0",
|
|
79
79
|
"@storybook/testing-library": "^0.2.0",
|
|
80
|
-
"@storybook/vue3": "^7.0
|
|
81
|
-
"@storybook/vue3-vite": "^7.0
|
|
80
|
+
"@storybook/vue3": "^7.1.0",
|
|
81
|
+
"@storybook/vue3-vite": "^7.1.0",
|
|
82
82
|
"@tsconfig/node18": "^18.2.0",
|
|
83
83
|
"@types/jest-axe": "^3.5.5",
|
|
84
84
|
"@types/jsdom": "^21.1.1",
|
|
85
|
-
"@types/node": "^20.
|
|
86
|
-
"@types/react": "^18.2.
|
|
85
|
+
"@types/node": "^20.4.2",
|
|
86
|
+
"@types/react": "^18.2.15",
|
|
87
87
|
"@types/yargs": "^17.0.24",
|
|
88
88
|
"@vitejs/plugin-vue": "^4.2.3",
|
|
89
89
|
"@volverjs/style": "0.1.12-beta.4",
|
|
90
90
|
"@vue/compiler-sfc": "^3.3.4",
|
|
91
|
-
"@vue/eslint-config-prettier": "^
|
|
91
|
+
"@vue/eslint-config-prettier": "^8.0.0",
|
|
92
92
|
"@vue/eslint-config-typescript": "^11.0.3",
|
|
93
|
-
"@vue/test-utils": "^2.4.
|
|
93
|
+
"@vue/test-utils": "^2.4.1",
|
|
94
94
|
"@vue/tsconfig": "^0.4.0",
|
|
95
95
|
"change-case": "^4.1.2",
|
|
96
|
-
"eslint": "^8.
|
|
96
|
+
"eslint": "^8.45.0",
|
|
97
97
|
"eslint-config-prettier": "^8.8.0",
|
|
98
98
|
"eslint-mdx": "^2.1.0",
|
|
99
99
|
"eslint-plugin-mdx": "^2.1.0",
|
|
100
|
-
"eslint-plugin-storybook": "^0.6.
|
|
100
|
+
"eslint-plugin-storybook": "^0.6.13",
|
|
101
101
|
"eslint-plugin-vue": "^9.15.1",
|
|
102
102
|
"glob": "7.2.3",
|
|
103
|
-
"jest-axe": "^
|
|
104
|
-
"jest-diff": "^29.
|
|
103
|
+
"jest-axe": "^8.0.0",
|
|
104
|
+
"jest-diff": "^29.6.1",
|
|
105
105
|
"jest-get-type": "^29.4.3",
|
|
106
106
|
"jsdom": "^22.1.0",
|
|
107
107
|
"npm-run-all": "^4.1.5",
|
|
108
|
-
"prettier": "^
|
|
109
|
-
"pretty-format": "^29.
|
|
108
|
+
"prettier": "^3.0.0",
|
|
109
|
+
"pretty-format": "^29.6.1",
|
|
110
110
|
"react": "^18.2.0",
|
|
111
111
|
"react-dom": "^18.2.0",
|
|
112
112
|
"remark": "^14.0.3",
|
|
113
|
-
"sass": "^1.
|
|
114
|
-
"storybook": "^7.0
|
|
113
|
+
"sass": "^1.64.0",
|
|
114
|
+
"storybook": "^7.1.0",
|
|
115
115
|
"storybook-addon-markdown-docs": "^2.0.0",
|
|
116
116
|
"storybook-dark-mode": "^3.0.0",
|
|
117
117
|
"storybook-version": "^0.1.1",
|
|
118
|
-
"terser": "^5.
|
|
118
|
+
"terser": "^5.19.1",
|
|
119
119
|
"ts-node": "^10.9.1",
|
|
120
120
|
"typescript": "~5.1.6",
|
|
121
|
-
"unplugin-auto-import": "^0.16.
|
|
121
|
+
"unplugin-auto-import": "^0.16.6",
|
|
122
122
|
"unplugin-vue-components": "^0.25.1",
|
|
123
|
-
"vite": "^4.
|
|
123
|
+
"vite": "^4.4.5",
|
|
124
124
|
"vite-plugin-eslint": "^1.8.1",
|
|
125
125
|
"vite-plugin-externalize-deps": "^0.7.0",
|
|
126
|
-
"vue-tsc": "^1.8.
|
|
126
|
+
"vue-tsc": "^1.8.5",
|
|
127
127
|
"yargs": "^17.7.2"
|
|
128
128
|
},
|
|
129
129
|
"typesVersions": {
|