@volverjs/ui-vue 0.0.10 → 0.0.11

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 (58) hide show
  1. package/dist/components/VvAccordion/VvAccordion.vue.d.ts +2 -1
  2. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +3 -2
  3. package/dist/components/VvAction/VvAction.vue.d.ts +2 -1
  4. package/dist/components/VvAlert/VvAlert.es.js +8 -8
  5. package/dist/components/VvAlert/VvAlert.umd.js +1 -1
  6. package/dist/components/VvAlert/VvAlert.vue.d.ts +2 -1
  7. package/dist/components/VvAlertGroup/VvAlertGroup.es.js +8 -8
  8. package/dist/components/VvAlertGroup/VvAlertGroup.umd.js +1 -1
  9. package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +2 -1
  10. package/dist/components/VvAvatar/VvAvatar.vue.d.ts +2 -1
  11. package/dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts +2 -1
  12. package/dist/components/VvBadge/VvBadge.vue.d.ts +2 -1
  13. package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +2 -1
  14. package/dist/components/VvButton/VvButton.es.js +8 -8
  15. package/dist/components/VvButton/VvButton.umd.js +1 -1
  16. package/dist/components/VvButton/VvButton.vue.d.ts +2 -1
  17. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +2 -1
  18. package/dist/components/VvCard/VvCard.vue.d.ts +2 -1
  19. package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +3 -2
  20. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +2 -1
  21. package/dist/components/VvCombobox/VvCombobox.es.js +8 -8
  22. package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
  23. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +256 -317
  24. package/dist/components/VvDialog/VvDialog.vue.d.ts +2 -1
  25. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +2 -1
  26. package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +3 -2
  27. package/dist/components/VvDropdown/VvDropdownItem.vue.d.ts +2 -1
  28. package/dist/components/VvDropdown/VvDropdownOptgroup.vue.d.ts +2 -1
  29. package/dist/components/VvDropdown/VvDropdownOption.vue.d.ts +2 -1
  30. package/dist/components/VvIcon/VvIcon.es.js +8 -8
  31. package/dist/components/VvIcon/VvIcon.umd.js +1 -1
  32. package/dist/components/VvIcon/VvIcon.vue.d.ts +2 -1
  33. package/dist/components/VvInputFile/VvInputFile.es.js +8 -8
  34. package/dist/components/VvInputFile/VvInputFile.umd.js +1 -1
  35. package/dist/components/VvInputFile/VvInputFile.vue.d.ts +2 -1
  36. package/dist/components/VvInputText/VvInputText.es.js +8 -8
  37. package/dist/components/VvInputText/VvInputText.umd.js +1 -1
  38. package/dist/components/VvInputText/VvInputText.vue.d.ts +2 -1
  39. package/dist/components/VvNav/VvNav.vue.d.ts +2 -1
  40. package/dist/components/VvNav/VvNavItem.vue.d.ts +2 -1
  41. package/dist/components/VvNav/VvNavSeparator.vue.d.ts +2 -1
  42. package/dist/components/VvProgress/VvProgress.vue.d.ts +2 -1
  43. package/dist/components/VvRadio/VvRadio.vue.d.ts +3 -2
  44. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +2 -1
  45. package/dist/components/VvSelect/VvSelect.es.js +8 -8
  46. package/dist/components/VvSelect/VvSelect.umd.js +1 -1
  47. package/dist/components/VvSelect/VvSelect.vue.d.ts +128 -71
  48. package/dist/components/VvTab/VvTab.vue.d.ts +2 -1
  49. package/dist/components/VvTextarea/VvTextarea.es.js +8 -8
  50. package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
  51. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +2 -1
  52. package/dist/components/VvTooltip/VvTooltip.vue.d.ts +2 -1
  53. package/dist/components/index.es.js +8 -8
  54. package/dist/components/index.umd.js +1 -1
  55. package/dist/icons.es.js +3 -3
  56. package/dist/icons.umd.js +1 -1
  57. package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +14 -14
  58. package/package.json +18 -18
@@ -27,7 +27,7 @@ declare const _default: {
27
27
  default?: ((props: {
28
28
  expandedAccordions: Set<string>;
29
29
  expand: (name?: string | string[]) => void;
30
- collapse: boolean & ((name?: string | string[]) => void);
30
+ collapse: (name?: string | string[]) => void;
31
31
  }) => any) | import("vue").VNodeChild;
32
32
  }>, "props"> | undefined;
33
33
  subcomponents?: Record<string, Omit<import("vue").ConcreteComponent<any>, "props">> | undefined;
@@ -181,7 +181,7 @@ declare const _default: {
181
181
  default?: (props: {
182
182
  expandedAccordions: Set<string>;
183
183
  expand: (name?: string | string[]) => void;
184
- collapse: boolean & ((name?: string | string[]) => void);
184
+ collapse: (name?: string | string[]) => void;
185
185
  }) => any;
186
186
  };
187
187
  })>> | undefined;
@@ -211,7 +211,7 @@ declare const _default: {
211
211
  default?: ((props: {
212
212
  expandedAccordions: Set<string>;
213
213
  expand: (name?: string | string[]) => void;
214
- collapse: boolean & ((name?: string | string[]) => void);
214
+ collapse: (name?: string | string[]) => void;
215
215
  }) => any) | import("vue").VNodeChild;
216
216
  }> | import("storybook/internal/csf").DecoratorFunction<import("@storybook/vue3").VueRenderer, {
217
217
  collapse?: boolean | undefined;
@@ -238,7 +238,7 @@ declare const _default: {
238
238
  default?: ((props: {
239
239
  expandedAccordions: Set<string>;
240
240
  expand: (name?: string | string[]) => void;
241
- collapse: boolean & ((name?: string | string[]) => void);
241
+ collapse: (name?: string | string[]) => void;
242
242
  }) => any) | import("vue").VNodeChild;
243
243
  }>[] | undefined;
244
244
  parameters?: import("@storybook/vue3").Parameters | undefined;
@@ -392,7 +392,7 @@ declare const _default: {
392
392
  default?: (props: {
393
393
  expandedAccordions: Set<string>;
394
394
  expand: (name?: string | string[]) => void;
395
- collapse: boolean & ((name?: string | string[]) => void);
395
+ collapse: (name?: string | string[]) => void;
396
396
  }) => any;
397
397
  };
398
398
  })>> | undefined;
@@ -546,7 +546,7 @@ declare const _default: {
546
546
  default?: (props: {
547
547
  expandedAccordions: Set<string>;
548
548
  expand: (name?: string | string[]) => void;
549
- collapse: boolean & ((name?: string | string[]) => void);
549
+ collapse: (name?: string | string[]) => void;
550
550
  }) => any;
551
551
  };
552
552
  })>>> | undefined;
@@ -700,7 +700,7 @@ declare const _default: {
700
700
  default?: (props: {
701
701
  expandedAccordions: Set<string>;
702
702
  expand: (name?: string | string[]) => void;
703
- collapse: boolean & ((name?: string | string[]) => void);
703
+ collapse: (name?: string | string[]) => void;
704
704
  }) => any;
705
705
  };
706
706
  })>> | import("storybook/internal/csf").LoaderFunction<import("@storybook/vue3").VueRenderer, import("@storybook/vue3").ComponentPropsAndSlots<{
@@ -853,7 +853,7 @@ declare const _default: {
853
853
  default?: (props: {
854
854
  expandedAccordions: Set<string>;
855
855
  expand: (name?: string | string[]) => void;
856
- collapse: boolean & ((name?: string | string[]) => void);
856
+ collapse: (name?: string | string[]) => void;
857
857
  }) => any;
858
858
  };
859
859
  })>>[] | undefined;
@@ -1007,7 +1007,7 @@ declare const _default: {
1007
1007
  default?: (props: {
1008
1008
  expandedAccordions: Set<string>;
1009
1009
  expand: (name?: string | string[]) => void;
1010
- collapse: boolean & ((name?: string | string[]) => void);
1010
+ collapse: (name?: string | string[]) => void;
1011
1011
  }) => any;
1012
1012
  };
1013
1013
  })>> | import("storybook/internal/csf").BeforeEach<import("@storybook/vue3").VueRenderer, import("@storybook/vue3").ComponentPropsAndSlots<{
@@ -1160,7 +1160,7 @@ declare const _default: {
1160
1160
  default?: (props: {
1161
1161
  expandedAccordions: Set<string>;
1162
1162
  expand: (name?: string | string[]) => void;
1163
- collapse: boolean & ((name?: string | string[]) => void);
1163
+ collapse: (name?: string | string[]) => void;
1164
1164
  }) => any;
1165
1165
  };
1166
1166
  })>>[] | undefined;
@@ -1314,7 +1314,7 @@ declare const _default: {
1314
1314
  default?: (props: {
1315
1315
  expandedAccordions: Set<string>;
1316
1316
  expand: (name?: string | string[]) => void;
1317
- collapse: boolean & ((name?: string | string[]) => void);
1317
+ collapse: (name?: string | string[]) => void;
1318
1318
  }) => any;
1319
1319
  };
1320
1320
  })>> | import("storybook/internal/csf").AfterEach<import("@storybook/vue3").VueRenderer, import("@storybook/vue3").ComponentPropsAndSlots<{
@@ -1467,7 +1467,7 @@ declare const _default: {
1467
1467
  default?: (props: {
1468
1468
  expandedAccordions: Set<string>;
1469
1469
  expand: (name?: string | string[]) => void;
1470
- collapse: boolean & ((name?: string | string[]) => void);
1470
+ collapse: (name?: string | string[]) => void;
1471
1471
  }) => any;
1472
1472
  };
1473
1473
  })>>[] | undefined;
@@ -1621,7 +1621,7 @@ declare const _default: {
1621
1621
  default?: (props: {
1622
1622
  expandedAccordions: Set<string>;
1623
1623
  expand: (name?: string | string[]) => void;
1624
- collapse: boolean & ((name?: string | string[]) => void);
1624
+ collapse: (name?: string | string[]) => void;
1625
1625
  }) => any;
1626
1626
  };
1627
1627
  })>> | undefined;
@@ -1776,7 +1776,7 @@ declare const _default: {
1776
1776
  default?: (props: {
1777
1777
  expandedAccordions: Set<string>;
1778
1778
  expand: (name?: string | string[]) => void;
1779
- collapse: boolean & ((name?: string | string[]) => void);
1779
+ collapse: (name?: string | string[]) => void;
1780
1780
  }) => any;
1781
1781
  };
1782
1782
  })>>) => (Component?: import("vue").ComponentOptions<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, any, any, any, string, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions> | import("vue").FunctionalComponent<any, {}, any, {}>, options?: {
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",
4
+ "version": "0.0.11",
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,7 +382,7 @@
382
382
  },
383
383
  "dependencies": {
384
384
  "@floating-ui/vue": "^1.1.9",
385
- "@iconify/tools": "^4.1.3",
385
+ "@iconify/tools": "^4.1.4",
386
386
  "@iconify/vue": "^5.0.0",
387
387
  "blurhash": "^2.0.5",
388
388
  "chokidar": "^4.0.3",
@@ -403,25 +403,25 @@
403
403
  "@iconify/types": "^2.0.0",
404
404
  "@iconify/utils": "^3.0.2",
405
405
  "@nabla/vite-plugin-eslint": "^2.0.6",
406
- "@storybook/addon-a11y": "^9.1.8",
407
- "@storybook/addon-docs": "^9.1.8",
408
- "@storybook/addon-links": "^9.1.8",
409
- "@storybook/cli": "^9.1.8",
406
+ "@storybook/addon-a11y": "^9.1.10",
407
+ "@storybook/addon-docs": "^9.1.10",
408
+ "@storybook/addon-links": "^9.1.10",
409
+ "@storybook/cli": "^9.1.10",
410
410
  "@storybook/test-runner": "^0.23.0",
411
- "@storybook/vue3-vite": "^9.1.8",
411
+ "@storybook/vue3-vite": "^9.1.10",
412
412
  "@tsconfig/node18": "^18.2.4",
413
413
  "@types/jest-axe": "^3.5.9",
414
- "@types/jsdom": "^21.1.7",
415
- "@types/node": "^24.5.2",
414
+ "@types/jsdom": "^27.0.0",
415
+ "@types/node": "^24.6.2",
416
416
  "@types/pica": "^9.0.5",
417
417
  "@types/yargs": "^17.0.33",
418
418
  "@vitejs/plugin-vue": "^6.0.1",
419
419
  "@volverjs/style": "^0.1.22",
420
- "@vue/compiler-sfc": "^3.5.21",
420
+ "@vue/compiler-sfc": "^3.5.22",
421
421
  "@vue/eslint-config-typescript": "^14.6.0",
422
422
  "@vue/test-utils": "^2.4.6",
423
423
  "@vue/tsconfig": "^0.8.1",
424
- "@vueless/storybook-dark-mode": "^9.0.8",
424
+ "@vueless/storybook-dark-mode": "^9.0.9",
425
425
  "@vueuse/core": "^13.9.0",
426
426
  "change-case": "^5.4.4",
427
427
  "eslint": "^9.36.0",
@@ -431,18 +431,18 @@
431
431
  "npm-run-all": "^4.1.5",
432
432
  "prettier": "^3.6.2",
433
433
  "remark": "^15.0.1",
434
- "sass-embedded": "1.93.1",
435
- "storybook": "^9.1.8",
434
+ "sass-embedded": "1.93.2",
435
+ "storybook": "^9.1.10",
436
436
  "storybook-addon-markdown-docs": "^2.0.0",
437
437
  "terser": "^5.44.0",
438
438
  "ts-node": "^10.9.2",
439
- "typescript": "~5.9.2",
440
- "unplugin-auto-import": "^20.1.0",
439
+ "typescript": "~5.9.3",
440
+ "unplugin-auto-import": "^20.2.0",
441
441
  "unplugin-vue-components": "^29.1.0",
442
- "vite": "^7.1.7",
442
+ "vite": "^7.1.8",
443
443
  "vite-plugin-externalize-deps": "^0.9.0",
444
- "vue": "^3.5.21",
445
- "vue-tsc": "^3.0.8"
444
+ "vue": "^3.5.22",
445
+ "vue-tsc": "^3.1.0"
446
446
  },
447
447
  "scripts": {
448
448
  "dev": "storybook dev -p 6006",