@volverjs/ui-vue 0.0.10-beta.45 → 0.0.10-beta.46

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 (53) hide show
  1. package/dist/components/VvAvatar/VvAvatar.es.js +1 -6
  2. package/dist/components/VvAvatar/VvAvatar.umd.js +1 -1
  3. package/dist/components/VvAvatarGroup/VvAvatarGroup.es.js +2 -7
  4. package/dist/components/VvAvatarGroup/VvAvatarGroup.umd.js +1 -1
  5. package/dist/components/VvBadge/VvBadge.es.js +1 -6
  6. package/dist/components/VvBadge/VvBadge.umd.js +1 -1
  7. package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +1 -6
  8. package/dist/components/VvBreadcrumb/VvBreadcrumb.umd.js +1 -1
  9. package/dist/components/VvButton/VvButton.es.js +0 -22
  10. package/dist/components/VvButton/VvButton.umd.js +1 -1
  11. package/dist/components/VvButtonGroup/VvButtonGroup.es.js +1 -6
  12. package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -1
  13. package/dist/components/VvCard/VvCard.es.js +1 -6
  14. package/dist/components/VvCard/VvCard.umd.js +1 -1
  15. package/dist/components/VvCheckbox/VvCheckbox.es.js +0 -22
  16. package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -1
  17. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +0 -22
  18. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
  19. package/dist/components/VvCombobox/VvCombobox.es.js +0 -22
  20. package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
  21. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +18 -18
  22. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +8 -8
  23. package/dist/components/VvDropdownAction/VvDropdownAction.es.js +0 -5
  24. package/dist/components/VvDropdownAction/VvDropdownAction.umd.js +1 -1
  25. package/dist/components/VvIcon/VvIcon.es.js +1 -6
  26. package/dist/components/VvIcon/VvIcon.umd.js +1 -1
  27. package/dist/components/VvInputFile/VvInputFile.es.js +0 -22
  28. package/dist/components/VvInputFile/VvInputFile.umd.js +1 -1
  29. package/dist/components/VvInputText/VvInputText.es.js +19 -4
  30. package/dist/components/VvInputText/VvInputText.umd.js +1 -1
  31. package/dist/components/VvInputText/VvInputText.vue.d.ts +3 -3
  32. package/dist/components/VvNav/VvNav.es.js +0 -5
  33. package/dist/components/VvNav/VvNav.umd.js +1 -1
  34. package/dist/components/VvRadio/VvRadio.es.js +0 -22
  35. package/dist/components/VvRadio/VvRadio.umd.js +1 -1
  36. package/dist/components/VvRadioGroup/VvRadioGroup.es.js +0 -22
  37. package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
  38. package/dist/components/VvSelect/VvSelect.vue.d.ts +2 -2
  39. package/dist/components/VvTab/VvTab.es.js +0 -5
  40. package/dist/components/VvTab/VvTab.umd.js +1 -1
  41. package/dist/components/index.es.js +19 -26
  42. package/dist/components/index.umd.js +1 -1
  43. package/dist/composables/alert/useAlert.d.ts +46 -46
  44. package/dist/composables/index.es.js +4 -4
  45. package/dist/composables/index.umd.js +1 -1
  46. package/dist/icons.es.js +3 -3
  47. package/dist/icons.umd.js +1 -1
  48. package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +20 -20
  49. package/package.json +36 -36
  50. package/src/assets/icons/detailed.json +1 -1
  51. package/src/assets/icons/normal.json +1 -1
  52. package/src/assets/icons/simple.json +1 -1
  53. package/src/components/VvInputText/VvInputText.vue +21 -7
@@ -248,16 +248,16 @@ declare const _default: {
248
248
  itemModifiers?: string | string[] | undefined;
249
249
  storageType?: "local" | "session" | undefined;
250
250
  style?: unknown;
251
- ref?: import("vue").VNodeRef;
252
- key?: PropertyKey;
253
- ref_for?: boolean;
254
- ref_key?: string;
255
- onVnodeBeforeMount?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
256
- onVnodeMounted?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
257
- onVnodeBeforeUpdate?: ((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[];
258
- onVnodeUpdated?: ((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[];
259
- onVnodeBeforeUnmount?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
260
- onVnodeUnmounted?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
251
+ ref?: import("vue").VNodeRef | undefined;
252
+ key?: PropertyKey | undefined;
253
+ ref_for?: boolean | undefined;
254
+ ref_key?: string | undefined;
255
+ onVnodeBeforeMount?: (((vnode: VNode) => void) | ((vnode: VNode) => void)[]) | undefined;
256
+ onVnodeMounted?: (((vnode: VNode) => void) | ((vnode: VNode) => void)[]) | undefined;
257
+ onVnodeBeforeUpdate?: (((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[]) | undefined;
258
+ onVnodeUpdated?: (((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[]) | undefined;
259
+ onVnodeBeforeUnmount?: (((vnode: VNode) => void) | ((vnode: VNode) => void)[]) | undefined;
260
+ onVnodeUnmounted?: (((vnode: VNode) => void) | ((vnode: VNode) => void)[]) | undefined;
261
261
  class?: unknown;
262
262
  readonly storageKey?: string | undefined;
263
263
  default?: import("vue").VNodeChild | ((_: {
@@ -275,16 +275,16 @@ declare const _default: {
275
275
  itemModifiers?: string | string[] | undefined;
276
276
  storageType?: "local" | "session" | undefined;
277
277
  style?: unknown;
278
- ref?: import("vue").VNodeRef;
279
- key?: PropertyKey;
280
- ref_for?: boolean;
281
- ref_key?: string;
282
- onVnodeBeforeMount?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
283
- onVnodeMounted?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
284
- onVnodeBeforeUpdate?: ((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[];
285
- onVnodeUpdated?: ((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[];
286
- onVnodeBeforeUnmount?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
287
- onVnodeUnmounted?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
278
+ ref?: import("vue").VNodeRef | undefined;
279
+ key?: PropertyKey | undefined;
280
+ ref_for?: boolean | undefined;
281
+ ref_key?: string | undefined;
282
+ onVnodeBeforeMount?: (((vnode: VNode) => void) | ((vnode: VNode) => void)[]) | undefined;
283
+ onVnodeMounted?: (((vnode: VNode) => void) | ((vnode: VNode) => void)[]) | undefined;
284
+ onVnodeBeforeUpdate?: (((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[]) | undefined;
285
+ onVnodeUpdated?: (((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[]) | undefined;
286
+ onVnodeBeforeUnmount?: (((vnode: VNode) => void) | ((vnode: VNode) => void)[]) | undefined;
287
+ onVnodeUnmounted?: (((vnode: VNode) => void) | ((vnode: VNode) => void)[]) | undefined;
288
288
  class?: unknown;
289
289
  readonly storageKey?: string | undefined;
290
290
  default?: import("vue").VNodeChild | ((_: {
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.45",
4
+ "version": "0.0.10-beta.46",
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",
@@ -381,78 +381,78 @@
381
381
  "@volverjs/style": "0.*"
382
382
  },
383
383
  "dependencies": {
384
- "@floating-ui/vue": "^1.1.1",
385
- "@iconify/tools": "^4.0.4",
384
+ "@floating-ui/vue": "^1.1.4",
385
+ "@iconify/tools": "^4.0.5",
386
386
  "@iconify/vue": "^4.1.2",
387
- "@storybook/test": "^8.2.3",
388
- "@vueuse/core": "^10.11.0",
387
+ "@storybook/test": "^8.2.9",
388
+ "@vueuse/core": "^11.0.1",
389
389
  "blurhash": "^2.0.5",
390
390
  "comlink": "^4.4.1",
391
- "jsdom": "^24.1.0",
391
+ "jsdom": "^24.1.1",
392
392
  "mitt": "^3.0.1",
393
393
  "pica": "^9.0.1",
394
394
  "ts-dot-prop": "^2.1.4",
395
395
  "uid": "^2.0.2",
396
- "vue": "^3.4.31",
396
+ "vue": "^3.4.38",
397
397
  "vue-imask": "^7.6.1",
398
398
  "vuedraggable": "^4.1.0"
399
399
  },
400
400
  "devDependencies": {
401
- "@antfu/eslint-config": "^2.22.2",
402
- "@babel/core": "^7.24.9",
403
- "@babel/preset-env": "^7.24.8",
401
+ "@antfu/eslint-config": "^2.26.0",
402
+ "@babel/core": "^7.25.2",
403
+ "@babel/preset-env": "^7.25.3",
404
404
  "@babel/preset-typescript": "^7.24.7",
405
405
  "@iconify/types": "^2.0.0",
406
- "@iconify/utils": "^2.1.25",
406
+ "@iconify/utils": "^2.1.31",
407
407
  "@nabla/vite-plugin-eslint": "^2.0.4",
408
- "@storybook/addon-a11y": "^8.2.3",
409
- "@storybook/addon-actions": "^8.2.3",
410
- "@storybook/addon-docs": "^8.2.3",
411
- "@storybook/addon-essentials": "^8.2.3",
412
- "@storybook/addon-interactions": "^8.2.3",
413
- "@storybook/addon-links": "^8.2.3",
414
- "@storybook/cli": "^8.2.3",
415
- "@storybook/client-logger": "^8.2.3",
416
- "@storybook/core-common": "^8.2.3",
417
- "@storybook/preview-api": "^8.2.3",
408
+ "@storybook/addon-a11y": "^8.2.9",
409
+ "@storybook/addon-actions": "^8.2.9",
410
+ "@storybook/addon-docs": "^8.2.9",
411
+ "@storybook/addon-essentials": "^8.2.9",
412
+ "@storybook/addon-interactions": "^8.2.9",
413
+ "@storybook/addon-links": "^8.2.9",
414
+ "@storybook/cli": "^8.2.9",
415
+ "@storybook/client-logger": "^8.2.9",
416
+ "@storybook/core-common": "^8.2.9",
417
+ "@storybook/preview-api": "^8.2.9",
418
418
  "@storybook/test-runner": "^0.19.1",
419
- "@storybook/vue3": "^8.2.2",
420
- "@storybook/vue3-vite": "^8.2.3",
419
+ "@storybook/vue3": "^8.2.9",
420
+ "@storybook/vue3-vite": "^8.2.9",
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": "^20.14.10",
424
+ "@types/node": "^22.4.2",
425
425
  "@types/pica": "^9.0.4",
426
- "@types/yargs": "^17.0.32",
427
- "@vitejs/plugin-vue": "^5.0.5",
428
- "@vue/compiler-sfc": "^3.4.31",
426
+ "@types/yargs": "^17.0.33",
427
+ "@vitejs/plugin-vue": "^5.1.2",
428
+ "@vue/compiler-sfc": "^3.4.38",
429
429
  "@vue/eslint-config-typescript": "^13.0.0",
430
430
  "@vue/test-utils": "^2.4.6",
431
431
  "@vue/tsconfig": "^0.5.1",
432
432
  "change-case": "^5.4.4",
433
433
  "chokidar": "^3.6.0",
434
- "eslint": "^9.7.0",
434
+ "eslint": "^9.9.0",
435
435
  "glob": "7.2.3",
436
436
  "jest-axe": "^9.0.0",
437
437
  "jest-diff": "^29.7.0",
438
438
  "jest-get-type": "^29.6.3",
439
- "jsdom": "^24.1.0",
439
+ "jsdom": "^24.1.1",
440
440
  "npm-run-all": "^4.1.5",
441
441
  "prettier": "^3.3.3",
442
442
  "pretty-format": "^29.7.0",
443
443
  "remark": "^15.0.1",
444
444
  "sass": "^1.77.8",
445
- "storybook": "^8.2.3",
445
+ "storybook": "^8.2.9",
446
446
  "storybook-addon-markdown-docs": "^2.0.0",
447
447
  "storybook-dark-mode": "^4.0.2",
448
- "terser": "^5.31.2",
448
+ "terser": "^5.31.6",
449
449
  "ts-node": "^10.9.2",
450
- "typescript": "~5.5.3",
451
- "unplugin-auto-import": "^0.18.0",
452
- "unplugin-vue-components": "^0.27.2",
453
- "vite": "^5.3.3",
450
+ "typescript": "~5.5.4",
451
+ "unplugin-auto-import": "^0.18.2",
452
+ "unplugin-vue-components": "^0.27.4",
453
+ "vite": "^5.4.2",
454
454
  "vite-plugin-externalize-deps": "^0.8.0",
455
- "vue-tsc": "^2.0.26",
455
+ "vue-tsc": "^2.0.29",
456
456
  "yargs": "^17.7.2"
457
457
  },
458
458
  "scripts": {