@volverjs/ui-vue 0.0.10-beta.71 → 0.0.10-beta.73

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 (37) hide show
  1. package/dist/components/VvAlert/VvAlert.es.js +4 -4
  2. package/dist/components/VvAlert/VvAlert.umd.js +1 -1
  3. package/dist/components/VvAlertGroup/VvAlertGroup.es.js +4 -4
  4. package/dist/components/VvAlertGroup/VvAlertGroup.umd.js +1 -1
  5. package/dist/components/VvButton/VvButton.es.js +4 -4
  6. package/dist/components/VvButton/VvButton.umd.js +1 -1
  7. package/dist/components/VvCombobox/VvCombobox.es.js +141 -71
  8. package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
  9. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +10 -3
  10. package/dist/components/VvCombobox/index.d.ts +35 -19
  11. package/dist/components/VvDropdown/VvDropdown.es.js +41 -22
  12. package/dist/components/VvDropdown/VvDropdown.umd.js +1 -1
  13. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +4 -0
  14. package/dist/components/VvInputFile/VvInputFile.es.js +9 -9
  15. package/dist/components/VvInputFile/VvInputFile.umd.js +1 -1
  16. package/dist/components/VvInputText/VvInputText.es.js +54 -35
  17. package/dist/components/VvInputText/VvInputText.umd.js +1 -1
  18. package/dist/components/VvNav/VvNav.es.js +3 -1
  19. package/dist/components/VvNav/VvNav.umd.js +1 -1
  20. package/dist/components/VvNav/VvNavItem.vue.d.ts +4 -0
  21. package/dist/components/VvNavItem/VvNavItem.es.js +3 -1
  22. package/dist/components/VvNavItem/VvNavItem.umd.js +1 -1
  23. package/dist/components/VvSelect/VvSelect.es.js +34 -24
  24. package/dist/components/VvSelect/VvSelect.umd.js +1 -1
  25. package/dist/components/VvSelect/VvSelect.vue.d.ts +3 -1
  26. package/dist/components/VvSelect/index.d.ts +12 -19
  27. package/dist/components/VvTab/VvTab.es.js +3 -1
  28. package/dist/components/VvTab/VvTab.umd.js +1 -1
  29. package/dist/components/VvTextarea/VvTextarea.es.js +48 -29
  30. package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
  31. package/dist/components/index.es.js +153 -81
  32. package/dist/components/index.umd.js +1 -1
  33. package/dist/icons.es.js +3 -3
  34. package/dist/icons.umd.js +1 -1
  35. package/dist/props/index.d.ts +24 -0
  36. package/dist/stories/Combobox/Combobox.stories.d.ts +1 -0
  37. package/package.json +11 -11
@@ -121,6 +121,30 @@ export declare const CurrentProps: {
121
121
  default: boolean;
122
122
  };
123
123
  };
124
+ export declare const ClearProps: {
125
+ /**
126
+ * If true, the clear button will be shown
127
+ */
128
+ showClearAction: {
129
+ type: BooleanConstructor;
130
+ default: boolean;
131
+ };
132
+ /**
133
+ * VvIcon name for clear button
134
+ * @see VvIcon
135
+ */
136
+ iconClear: {
137
+ type: PropType<string | VvIconProps>;
138
+ default: "close";
139
+ };
140
+ /**
141
+ * Label for clear button
142
+ */
143
+ labelClear: {
144
+ type: StringConstructor;
145
+ default: string;
146
+ };
147
+ };
124
148
  export declare const PressedProps: {
125
149
  /**
126
150
  * Whether the item is pressed
@@ -12,6 +12,7 @@ export declare const Invalid: Story;
12
12
  export declare const Hint: Story;
13
13
  export declare const Loading: Story;
14
14
  export declare const Searchable: Story;
15
+ export declare const Addable: Story;
15
16
  export declare const Floating: Story;
16
17
  export declare const Native: Story;
17
18
  export declare const Arrow: Story;
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.71",
4
+ "version": "0.0.10-beta.73",
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",
@@ -393,11 +393,11 @@
393
393
  "ts-dot-prop": "^2.1.4",
394
394
  "vue-imask": "^7.6.1",
395
395
  "vuedraggable": "^4.1.0",
396
- "yargs": "^17.7.2"
396
+ "yargs": "^18.0.0"
397
397
  },
398
398
  "devDependencies": {
399
- "@antfu/eslint-config": "4.13.2",
400
- "@babel/core": "^7.27.1",
399
+ "@antfu/eslint-config": "4.13.3",
400
+ "@babel/core": "^7.27.4",
401
401
  "@babel/preset-env": "^7.27.2",
402
402
  "@babel/preset-typescript": "^7.27.1",
403
403
  "@iconify/types": "^2.0.0",
@@ -421,16 +421,16 @@
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.15.21",
424
+ "@types/node": "^22.15.29",
425
425
  "@types/pica": "^9.0.5",
426
426
  "@types/yargs": "^17.0.33",
427
427
  "@vitejs/plugin-vue": "^5.2.4",
428
- "@vue/compiler-sfc": "^3.5.14",
428
+ "@vue/compiler-sfc": "^3.5.16",
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.27.0",
433
+ "eslint": "^9.28.0",
434
434
  "glob": "^11.0.2",
435
435
  "jest-axe": "^10.0.0",
436
436
  "jest-diff": "^29.7.0",
@@ -440,15 +440,15 @@
440
440
  "prettier": "^3.5.3",
441
441
  "pretty-format": "^29.7.0",
442
442
  "remark": "^15.0.1",
443
- "sass": "^1.89.0",
443
+ "sass-embedded": "1.89.0",
444
444
  "storybook": "^8.6.14",
445
445
  "storybook-addon-markdown-docs": "^2.0.0",
446
446
  "storybook-dark-mode": "^4.0.2",
447
- "terser": "^5.39.2",
447
+ "terser": "^5.40.0",
448
448
  "ts-node": "^10.9.2",
449
449
  "typescript": "~5.8.3",
450
- "unplugin-auto-import": "^19.2.0",
451
- "unplugin-vue-components": "^28.5.0",
450
+ "unplugin-auto-import": "^19.3.0",
451
+ "unplugin-vue-components": "^28.7.0",
452
452
  "vite": "^6.3.5",
453
453
  "vite-plugin-externalize-deps": "^0.9.0",
454
454
  "vue-tsc": "^2.2.10"