@volverjs/ui-vue 0.0.10-beta.67 → 0.0.10-beta.68
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/components/VvInputText/VvInputText.es.js +4 -0
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.es.js +3 -1
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/index.es.js +7 -1
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +2 -27
- package/package.json +29 -29
|
@@ -4,33 +4,8 @@ declare const _default: {
|
|
|
4
4
|
id?: import("@storybook/types").ComponentId;
|
|
5
5
|
includeStories?: RegExp | string[];
|
|
6
6
|
excludeStories?: RegExp | string[];
|
|
7
|
-
component?: Omit<import("vue").ConcreteComponent<
|
|
8
|
-
|
|
9
|
-
disabled: boolean;
|
|
10
|
-
modelValue: string | string[] | undefined;
|
|
11
|
-
not: boolean;
|
|
12
|
-
modifiers: string | string[];
|
|
13
|
-
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
14
|
-
itemModifiers: string | string[];
|
|
15
|
-
storageType: "local" | "session";
|
|
16
|
-
}> & Omit<{
|
|
17
|
-
readonly collapse: boolean;
|
|
18
|
-
readonly disabled: boolean;
|
|
19
|
-
readonly not: boolean;
|
|
20
|
-
readonly items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
21
|
-
readonly itemModifiers: string | string[];
|
|
22
|
-
readonly storageType: "local" | "session";
|
|
23
|
-
readonly modelValue?: string | string[] | undefined;
|
|
24
|
-
readonly modifiers?: string | string[] | undefined;
|
|
25
|
-
readonly storageKey?: string | undefined;
|
|
26
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "collapse" | "disabled" | "modelValue" | "not" | "modifiers" | "items" | "itemModifiers" | "storageType"> & {
|
|
27
|
-
default?: ((props: {
|
|
28
|
-
expandedAccordions: Set<string>;
|
|
29
|
-
expand: (name?: string | string[]) => void;
|
|
30
|
-
collapse: boolean & ((name?: string | string[]) => void);
|
|
31
|
-
}) => any) | import("vue").VNodeChild;
|
|
32
|
-
}>, "props"> | undefined;
|
|
33
|
-
subcomponents?: Record<string, Omit<import("vue").ConcreteComponent<unknown>, "props">> | undefined;
|
|
7
|
+
component?: Omit<import("vue").ConcreteComponent<any>, "props"> | undefined;
|
|
8
|
+
subcomponents?: Record<string, Omit<import("vue").ConcreteComponent<any>, "props">> | undefined;
|
|
34
9
|
play?: import("@storybook/types").PlayFunction<import("@storybook/vue3").VueRenderer, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
35
10
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
36
11
|
modelValue: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volverjs/ui-vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.10-beta.
|
|
4
|
+
"version": "0.0.10-beta.68",
|
|
5
5
|
"description": "@volverjs/ui-vue is a lightweight Vue 3 component library to accompany @volverjs/style.",
|
|
6
6
|
"author": "8 wave S.r.l.",
|
|
7
7
|
"license": "MIT",
|
|
@@ -382,12 +382,12 @@
|
|
|
382
382
|
},
|
|
383
383
|
"dependencies": {
|
|
384
384
|
"@floating-ui/vue": "^1.1.6",
|
|
385
|
-
"@iconify/tools": "^4.1.
|
|
385
|
+
"@iconify/tools": "^4.1.2",
|
|
386
386
|
"@iconify/vue": "^4.3.0",
|
|
387
387
|
"blurhash": "^2.0.5",
|
|
388
388
|
"chokidar": "^4.0.3",
|
|
389
389
|
"comlink": "^4.4.2",
|
|
390
|
-
"jsdom": "^26.
|
|
390
|
+
"jsdom": "^26.1.0",
|
|
391
391
|
"mitt": "^3.0.1",
|
|
392
392
|
"pica": "^9.0.1",
|
|
393
393
|
"ts-dot-prop": "^2.1.4",
|
|
@@ -396,60 +396,60 @@
|
|
|
396
396
|
"yargs": "^17.7.2"
|
|
397
397
|
},
|
|
398
398
|
"devDependencies": {
|
|
399
|
-
"@antfu/eslint-config": "4.
|
|
399
|
+
"@antfu/eslint-config": "4.12.0",
|
|
400
400
|
"@babel/core": "^7.26.10",
|
|
401
401
|
"@babel/preset-env": "^7.26.9",
|
|
402
|
-
"@babel/preset-typescript": "^7.
|
|
402
|
+
"@babel/preset-typescript": "^7.27.0",
|
|
403
403
|
"@iconify/types": "^2.0.0",
|
|
404
404
|
"@iconify/utils": "^2.3.0",
|
|
405
405
|
"@nabla/vite-plugin-eslint": "^2.0.5",
|
|
406
|
-
"@storybook/addon-a11y": "^8.6.
|
|
407
|
-
"@storybook/addon-actions": "^8.6.
|
|
408
|
-
"@storybook/addon-docs": "^8.6.
|
|
409
|
-
"@storybook/addon-essentials": "^8.6.
|
|
410
|
-
"@storybook/addon-interactions": "^8.6.
|
|
411
|
-
"@storybook/addon-links": "^8.6.
|
|
412
|
-
"@storybook/cli": "^8.6.
|
|
413
|
-
"@storybook/client-logger": "^8.6.
|
|
414
|
-
"@storybook/core-common": "^8.6.
|
|
415
|
-
"@storybook/preview-api": "^8.6.
|
|
416
|
-
"@storybook/test": "^8.6.
|
|
406
|
+
"@storybook/addon-a11y": "^8.6.12",
|
|
407
|
+
"@storybook/addon-actions": "^8.6.12",
|
|
408
|
+
"@storybook/addon-docs": "^8.6.12",
|
|
409
|
+
"@storybook/addon-essentials": "^8.6.12",
|
|
410
|
+
"@storybook/addon-interactions": "^8.6.12",
|
|
411
|
+
"@storybook/addon-links": "^8.6.12",
|
|
412
|
+
"@storybook/cli": "^8.6.12",
|
|
413
|
+
"@storybook/client-logger": "^8.6.12",
|
|
414
|
+
"@storybook/core-common": "^8.6.12",
|
|
415
|
+
"@storybook/preview-api": "^8.6.12",
|
|
416
|
+
"@storybook/test": "^8.6.12",
|
|
417
417
|
"@storybook/test-runner": "^0.22.0",
|
|
418
|
-
"@storybook/types": "^8.6.
|
|
419
|
-
"@storybook/vue3": "^8.6.
|
|
420
|
-
"@storybook/vue3-vite": "^8.6.
|
|
418
|
+
"@storybook/types": "^8.6.12",
|
|
419
|
+
"@storybook/vue3": "^8.6.12",
|
|
420
|
+
"@storybook/vue3-vite": "^8.6.12",
|
|
421
421
|
"@tsconfig/node18": "^18.2.4",
|
|
422
422
|
"@types/jest-axe": "^3.5.9",
|
|
423
423
|
"@types/jsdom": "^21.1.7",
|
|
424
|
-
"@types/node": "^22.
|
|
424
|
+
"@types/node": "^22.14.1",
|
|
425
425
|
"@types/pica": "^9.0.5",
|
|
426
426
|
"@types/yargs": "^17.0.33",
|
|
427
|
-
"@vitejs/plugin-vue": "^5.2.
|
|
427
|
+
"@vitejs/plugin-vue": "^5.2.3",
|
|
428
428
|
"@vue/compiler-sfc": "^3.5.13",
|
|
429
429
|
"@vue/eslint-config-typescript": "^14.5.0",
|
|
430
430
|
"@vue/test-utils": "^2.4.6",
|
|
431
431
|
"@vue/tsconfig": "^0.7.0",
|
|
432
432
|
"change-case": "^5.4.4",
|
|
433
|
-
"eslint": "^9.
|
|
433
|
+
"eslint": "^9.24.0",
|
|
434
434
|
"glob": "^11.0.1",
|
|
435
435
|
"jest-axe": "^10.0.0",
|
|
436
436
|
"jest-diff": "^29.7.0",
|
|
437
437
|
"jest-get-type": "^29.6.3",
|
|
438
|
-
"jsdom": "^26.
|
|
438
|
+
"jsdom": "^26.1.0",
|
|
439
439
|
"npm-run-all": "^4.1.5",
|
|
440
440
|
"prettier": "^3.5.3",
|
|
441
441
|
"pretty-format": "^29.7.0",
|
|
442
442
|
"remark": "^15.0.1",
|
|
443
|
-
"sass": "^1.
|
|
444
|
-
"storybook": "^8.6.
|
|
443
|
+
"sass": "^1.86.3",
|
|
444
|
+
"storybook": "^8.6.12",
|
|
445
445
|
"storybook-addon-markdown-docs": "^2.0.0",
|
|
446
446
|
"storybook-dark-mode": "^4.0.2",
|
|
447
447
|
"terser": "^5.39.0",
|
|
448
448
|
"ts-node": "^10.9.2",
|
|
449
|
-
"typescript": "~5.8.
|
|
450
|
-
"unplugin-auto-import": "^19.1.
|
|
451
|
-
"unplugin-vue-components": "^28.
|
|
452
|
-
"vite": "^6.
|
|
449
|
+
"typescript": "~5.8.3",
|
|
450
|
+
"unplugin-auto-import": "^19.1.2",
|
|
451
|
+
"unplugin-vue-components": "^28.5.0",
|
|
452
|
+
"vite": "^6.3.1",
|
|
453
453
|
"vite-plugin-externalize-deps": "^0.9.0",
|
|
454
454
|
"vue-tsc": "^2.2.8"
|
|
455
455
|
},
|