@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.
- 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 +9 -9
- 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/VvNav/VvNav.es.js +3 -1
- package/dist/components/VvNav/VvNav.umd.js +1 -1
- package/dist/components/VvNav/VvNavItem.vue.d.ts +4 -0
- package/dist/components/VvNavItem/VvNavItem.es.js +3 -1
- package/dist/components/VvNavItem/VvNavItem.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/VvTab/VvTab.es.js +3 -1
- package/dist/components/VvTab/VvTab.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.es.js +48 -29
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/index.es.js +153 -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 +11 -11
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.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": "^
|
|
396
|
+
"yargs": "^18.0.0"
|
|
397
397
|
},
|
|
398
398
|
"devDependencies": {
|
|
399
|
-
"@antfu/eslint-config": "4.13.
|
|
400
|
-
"@babel/core": "^7.27.
|
|
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.
|
|
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.
|
|
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.
|
|
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": "
|
|
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.
|
|
447
|
+
"terser": "^5.40.0",
|
|
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"
|