@volverjs/ui-vue 0.0.6-beta.5 → 0.0.6-beta.7
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/auto-imports.d.ts +9 -0
- package/dist/Volver.d.ts +1 -1
- package/dist/components/VvAccordion/index.d.ts +1 -1
- package/dist/components/VvButton/VvButton.es.js +25 -19
- package/dist/components/VvButton/VvButton.umd.js +1 -1
- package/dist/components/VvCheckbox/VvCheckbox.es.js +151 -98
- package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -1
- package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +37 -1
- package/dist/components/VvCheckbox/index.d.ts +6 -1
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +187 -101
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +36 -0
- package/dist/components/VvCheckboxGroup/index.d.ts +5 -0
- package/dist/components/VvCombobox/VvCombobox.es.js +236 -140
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +25 -1
- package/dist/components/VvDialog/VvDialog.es.js +25 -19
- package/dist/components/VvDialog/VvDialog.umd.js +1 -1
- package/dist/components/VvDropdown/VvDropdown.es.js +19 -4
- package/dist/components/VvDropdown/VvDropdown.umd.js +1 -1
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +8 -4
- package/dist/components/VvDropdown/index.d.ts +1 -1
- package/dist/components/VvIcon/VvIcon.es.js +25 -19
- package/dist/components/VvIcon/VvIcon.umd.js +1 -1
- package/dist/components/VvIcon/VvIcon.vue.d.ts +2 -2
- package/dist/components/VvIcon/index.d.ts +2 -2
- package/dist/components/VvInputText/VvInputText.es.js +160 -136
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/VvInputText/VvInputText.vue.d.ts +24 -0
- package/dist/components/VvRadio/VvRadio.es.js +151 -98
- package/dist/components/VvRadio/VvRadio.umd.js +1 -1
- package/dist/components/VvRadio/VvRadio.vue.d.ts +37 -1
- package/dist/components/VvRadio/index.d.ts +6 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +187 -101
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +36 -0
- package/dist/components/VvRadioGroup/index.d.ts +5 -0
- package/dist/components/VvSelect/VvSelect.es.js +163 -137
- package/dist/components/VvSelect/VvSelect.umd.js +1 -1
- package/dist/components/VvSelect/VvSelect.vue.d.ts +24 -0
- package/dist/components/VvTextarea/VvTextarea.es.js +160 -136
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +24 -0
- package/dist/components/common/HintSlot.d.ts +38 -12
- package/dist/components/index.es.js +466 -168
- package/dist/components/index.umd.js +1 -1
- package/dist/composables/group/useInjectedGroupState.d.ts +1 -1
- package/dist/composables/useOptions.d.ts +2 -2
- package/dist/directives/index.d.ts +2 -2
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/props/index.d.ts +22 -0
- package/package.json +33 -33
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvCheckbox/VvCheckbox.vue +23 -2
- package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +15 -2
- package/src/components/VvCombobox/VvCombobox.vue +40 -16
- package/src/components/VvDropdown/VvDropdown.vue +20 -2
- package/src/components/VvIcon/VvIcon.vue +37 -34
- package/src/components/VvIcon/index.ts +2 -2
- package/src/components/VvInputText/VvInputText.vue +26 -9
- package/src/components/VvRadio/VvRadio.vue +23 -2
- package/src/components/VvRadioGroup/VvRadioGroup.vue +15 -2
- package/src/components/VvSelect/VvSelect.vue +26 -9
- package/src/components/VvTextarea/VvTextarea.vue +26 -9
- package/src/components/common/HintSlot.ts +129 -170
- package/src/composables/useOptions.ts +9 -7
- package/src/props/index.ts +2 -0
package/dist/props/index.d.ts
CHANGED
|
@@ -523,6 +523,17 @@ export declare const CheckboxRadioProps: {
|
|
|
523
523
|
* Input value
|
|
524
524
|
*/
|
|
525
525
|
modelValue: (StringConstructor | BooleanConstructor | ObjectConstructor | NumberConstructor)[];
|
|
526
|
+
/**
|
|
527
|
+
* Loading status
|
|
528
|
+
*/
|
|
529
|
+
loading: BooleanConstructor;
|
|
530
|
+
/**
|
|
531
|
+
* Loading label
|
|
532
|
+
*/
|
|
533
|
+
loadingLabel: {
|
|
534
|
+
type: StringConstructor;
|
|
535
|
+
default: string;
|
|
536
|
+
};
|
|
526
537
|
/**
|
|
527
538
|
* The item label
|
|
528
539
|
*/
|
|
@@ -598,6 +609,17 @@ export declare const CheckboxRadioGroupProps: {
|
|
|
598
609
|
* If true, the group will be displayed in a vertical column
|
|
599
610
|
*/
|
|
600
611
|
vertical: BooleanConstructor;
|
|
612
|
+
/**
|
|
613
|
+
* Loading status
|
|
614
|
+
*/
|
|
615
|
+
loading: BooleanConstructor;
|
|
616
|
+
/**
|
|
617
|
+
* Loading label
|
|
618
|
+
*/
|
|
619
|
+
loadingLabel: {
|
|
620
|
+
type: StringConstructor;
|
|
621
|
+
default: string;
|
|
622
|
+
};
|
|
601
623
|
/**
|
|
602
624
|
* The item label
|
|
603
625
|
*/
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "https://github.com/volverjs/ui-vue/issues"
|
|
21
21
|
},
|
|
22
|
-
"version": "0.0.6-beta.
|
|
22
|
+
"version": "0.0.6-beta.7",
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": ">= 16.x"
|
|
25
25
|
},
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@floating-ui/vue": "^0.2.1",
|
|
42
42
|
"@iconify/tools": "^2.2.6",
|
|
43
|
-
"@iconify/vue": "
|
|
44
|
-
"@volverjs/style": "0.1.9-beta.
|
|
45
|
-
"@vueuse/core": "^
|
|
43
|
+
"@iconify/vue": "4.1.1",
|
|
44
|
+
"@volverjs/style": "0.1.9-beta.7",
|
|
45
|
+
"@vueuse/core": "^10.0.0",
|
|
46
46
|
"jsdom": "^21.1.1",
|
|
47
|
-
"maska": "^2.1.
|
|
47
|
+
"maska": "^2.1.8",
|
|
48
48
|
"mitt": "^3.0.0",
|
|
49
49
|
"nanoid": "^4.0.2",
|
|
50
50
|
"vue": "^3.2.47"
|
|
@@ -57,30 +57,30 @@
|
|
|
57
57
|
"@iconify/utils": "^2.1.5",
|
|
58
58
|
"@mdx-js/react": "^2.3.0",
|
|
59
59
|
"@rushstack/eslint-patch": "^1.2.0",
|
|
60
|
-
"@storybook/addon-a11y": "7.0.
|
|
61
|
-
"@storybook/addon-actions": "7.0.
|
|
62
|
-
"@storybook/addon-docs": "7.0.
|
|
63
|
-
"@storybook/addon-essentials": "7.0.
|
|
64
|
-
"@storybook/addon-interactions": "7.0.
|
|
65
|
-
"@storybook/addon-links": "7.0.
|
|
66
|
-
"@storybook/builder-vite": "7.0.
|
|
67
|
-
"@storybook/channel-postmessage": "7.0.
|
|
68
|
-
"@storybook/channel-websocket": "7.0.
|
|
69
|
-
"@storybook/cli": "7.0.
|
|
70
|
-
"@storybook/client-api": "7.0.
|
|
71
|
-
"@storybook/client-logger": "7.0.
|
|
72
|
-
"@storybook/core-common": "7.0.
|
|
73
|
-
"@storybook/jest": "^0.
|
|
74
|
-
"@storybook/preview-api": "7.0.
|
|
75
|
-
"@storybook/preview-web": "7.0.
|
|
76
|
-
"@storybook/test-runner": "^0.10.0
|
|
77
|
-
"@storybook/testing-library": "^0.0
|
|
78
|
-
"@storybook/vue3": "7.0.
|
|
79
|
-
"@storybook/vue3-vite": "7.0.
|
|
60
|
+
"@storybook/addon-a11y": "7.0.4",
|
|
61
|
+
"@storybook/addon-actions": "7.0.4",
|
|
62
|
+
"@storybook/addon-docs": "7.0.4",
|
|
63
|
+
"@storybook/addon-essentials": "7.0.4",
|
|
64
|
+
"@storybook/addon-interactions": "7.0.4",
|
|
65
|
+
"@storybook/addon-links": "7.0.4",
|
|
66
|
+
"@storybook/builder-vite": "7.0.4",
|
|
67
|
+
"@storybook/channel-postmessage": "7.0.4",
|
|
68
|
+
"@storybook/channel-websocket": "7.0.4",
|
|
69
|
+
"@storybook/cli": "7.0.4",
|
|
70
|
+
"@storybook/client-api": "7.0.4",
|
|
71
|
+
"@storybook/client-logger": "7.0.4",
|
|
72
|
+
"@storybook/core-common": "7.0.4",
|
|
73
|
+
"@storybook/jest": "^0.1.0",
|
|
74
|
+
"@storybook/preview-api": "7.0.4",
|
|
75
|
+
"@storybook/preview-web": "7.0.4",
|
|
76
|
+
"@storybook/test-runner": "^0.10.0",
|
|
77
|
+
"@storybook/testing-library": "^0.1.0",
|
|
78
|
+
"@storybook/vue3": "7.0.4",
|
|
79
|
+
"@storybook/vue3-vite": "7.0.4",
|
|
80
80
|
"@types/jest-axe": "^3.5.5",
|
|
81
81
|
"@types/jsdom": "^21.1.1",
|
|
82
82
|
"@types/node": "18.15.11",
|
|
83
|
-
"@types/react": "^18.0.
|
|
83
|
+
"@types/react": "^18.0.35",
|
|
84
84
|
"@types/yargs": "^17.0.24",
|
|
85
85
|
"@vitejs/plugin-vue": "^4.1.0",
|
|
86
86
|
"@vue/compiler-sfc": "^3.2.47",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"@vue/test-utils": "^2.3.2",
|
|
90
90
|
"@vue/tsconfig": "^0.1.3",
|
|
91
91
|
"change-case": "^4.1.2",
|
|
92
|
-
"eslint": "^8.
|
|
92
|
+
"eslint": "^8.38.0",
|
|
93
93
|
"eslint-config-prettier": "^8.8.0",
|
|
94
94
|
"eslint-mdx": "^2.0.5",
|
|
95
95
|
"eslint-plugin-mdx": "^2.0.5",
|
|
@@ -106,15 +106,15 @@
|
|
|
106
106
|
"react": "^18.2.0",
|
|
107
107
|
"react-dom": "^18.2.0",
|
|
108
108
|
"remark": "^14.0.2",
|
|
109
|
-
"sass": "^1.
|
|
110
|
-
"storybook": "7.0.
|
|
109
|
+
"sass": "^1.62.0",
|
|
110
|
+
"storybook": "7.0.4",
|
|
111
111
|
"storybook-addon-markdown-docs": "^1.0.5",
|
|
112
|
-
"storybook-dark-mode": "^
|
|
112
|
+
"storybook-dark-mode": "^3.0.0",
|
|
113
113
|
"storybook-version": "^0.1.1",
|
|
114
|
-
"terser": "^5.16.
|
|
114
|
+
"terser": "^5.16.9",
|
|
115
115
|
"ts-node": "^10.9.1",
|
|
116
|
-
"typescript": "~
|
|
117
|
-
"unplugin-auto-import": "^0.15.
|
|
116
|
+
"typescript": "~5.0.4",
|
|
117
|
+
"unplugin-auto-import": "^0.15.3",
|
|
118
118
|
"unplugin-vue-components": "^0.24.1",
|
|
119
119
|
"vite": "^4.2.1",
|
|
120
120
|
"vite-plugin-eslint": "^1.8.1",
|