@volverjs/ui-vue 0.0.10-beta.70 → 0.0.10-beta.72

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 (30) 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 +10 -10
  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/VvSelect/VvSelect.es.js +34 -24
  19. package/dist/components/VvSelect/VvSelect.umd.js +1 -1
  20. package/dist/components/VvSelect/VvSelect.vue.d.ts +3 -1
  21. package/dist/components/VvSelect/index.d.ts +12 -19
  22. package/dist/components/VvTextarea/VvTextarea.es.js +48 -29
  23. package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
  24. package/dist/components/index.es.js +151 -81
  25. package/dist/components/index.umd.js +1 -1
  26. package/dist/icons.es.js +3 -3
  27. package/dist/icons.umd.js +1 -1
  28. package/dist/props/index.d.ts +24 -0
  29. package/dist/stories/Combobox/Combobox.stories.d.ts +1 -0
  30. package/package.json +5 -5
@@ -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.70",
4
+ "version": "0.0.10-beta.72",
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",
@@ -397,7 +397,7 @@
397
397
  },
398
398
  "devDependencies": {
399
399
  "@antfu/eslint-config": "4.13.2",
400
- "@babel/core": "^7.27.1",
400
+ "@babel/core": "^7.27.3",
401
401
  "@babel/preset-env": "^7.27.2",
402
402
  "@babel/preset-typescript": "^7.27.1",
403
403
  "@iconify/types": "^2.0.0",
@@ -425,7 +425,7 @@
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.15",
429
429
  "@vue/eslint-config-typescript": "^14.5.0",
430
430
  "@vue/test-utils": "^2.4.6",
431
431
  "@vue/tsconfig": "^0.7.0",
@@ -447,8 +447,8 @@
447
447
  "terser": "^5.39.2",
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"