@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.
- package/dist/components/VvAlert/VvAlert.es.js +4 -4
- package/dist/components/VvAlert/VvAlert.umd.js +1 -1
- package/dist/components/VvAlertGroup/VvAlertGroup.es.js +4 -4
- package/dist/components/VvAlertGroup/VvAlertGroup.umd.js +1 -1
- package/dist/components/VvButton/VvButton.es.js +4 -4
- package/dist/components/VvButton/VvButton.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.es.js +141 -71
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +10 -3
- package/dist/components/VvCombobox/index.d.ts +35 -19
- package/dist/components/VvDropdown/VvDropdown.es.js +41 -22
- package/dist/components/VvDropdown/VvDropdown.umd.js +1 -1
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +4 -0
- package/dist/components/VvInputFile/VvInputFile.es.js +10 -10
- package/dist/components/VvInputFile/VvInputFile.umd.js +1 -1
- package/dist/components/VvInputText/VvInputText.es.js +54 -35
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/VvSelect/VvSelect.es.js +34 -24
- package/dist/components/VvSelect/VvSelect.umd.js +1 -1
- package/dist/components/VvSelect/VvSelect.vue.d.ts +3 -1
- package/dist/components/VvSelect/index.d.ts +12 -19
- package/dist/components/VvTextarea/VvTextarea.es.js +48 -29
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/index.es.js +151 -81
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/props/index.d.ts +24 -0
- package/dist/stories/Combobox/Combobox.stories.d.ts +1 -0
- package/package.json +5 -5
package/dist/props/index.d.ts
CHANGED
|
@@ -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.
|
|
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.
|
|
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.
|
|
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.
|
|
451
|
-
"unplugin-vue-components": "^28.
|
|
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"
|