@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.
Files changed (70) hide show
  1. package/auto-imports.d.ts +9 -0
  2. package/dist/Volver.d.ts +1 -1
  3. package/dist/components/VvAccordion/index.d.ts +1 -1
  4. package/dist/components/VvButton/VvButton.es.js +25 -19
  5. package/dist/components/VvButton/VvButton.umd.js +1 -1
  6. package/dist/components/VvCheckbox/VvCheckbox.es.js +151 -98
  7. package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -1
  8. package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +37 -1
  9. package/dist/components/VvCheckbox/index.d.ts +6 -1
  10. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +187 -101
  11. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
  12. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +36 -0
  13. package/dist/components/VvCheckboxGroup/index.d.ts +5 -0
  14. package/dist/components/VvCombobox/VvCombobox.es.js +236 -140
  15. package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
  16. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +25 -1
  17. package/dist/components/VvDialog/VvDialog.es.js +25 -19
  18. package/dist/components/VvDialog/VvDialog.umd.js +1 -1
  19. package/dist/components/VvDropdown/VvDropdown.es.js +19 -4
  20. package/dist/components/VvDropdown/VvDropdown.umd.js +1 -1
  21. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +8 -4
  22. package/dist/components/VvDropdown/index.d.ts +1 -1
  23. package/dist/components/VvIcon/VvIcon.es.js +25 -19
  24. package/dist/components/VvIcon/VvIcon.umd.js +1 -1
  25. package/dist/components/VvIcon/VvIcon.vue.d.ts +2 -2
  26. package/dist/components/VvIcon/index.d.ts +2 -2
  27. package/dist/components/VvInputText/VvInputText.es.js +160 -136
  28. package/dist/components/VvInputText/VvInputText.umd.js +1 -1
  29. package/dist/components/VvInputText/VvInputText.vue.d.ts +24 -0
  30. package/dist/components/VvRadio/VvRadio.es.js +151 -98
  31. package/dist/components/VvRadio/VvRadio.umd.js +1 -1
  32. package/dist/components/VvRadio/VvRadio.vue.d.ts +37 -1
  33. package/dist/components/VvRadio/index.d.ts +6 -1
  34. package/dist/components/VvRadioGroup/VvRadioGroup.es.js +187 -101
  35. package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
  36. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +36 -0
  37. package/dist/components/VvRadioGroup/index.d.ts +5 -0
  38. package/dist/components/VvSelect/VvSelect.es.js +163 -137
  39. package/dist/components/VvSelect/VvSelect.umd.js +1 -1
  40. package/dist/components/VvSelect/VvSelect.vue.d.ts +24 -0
  41. package/dist/components/VvTextarea/VvTextarea.es.js +160 -136
  42. package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
  43. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +24 -0
  44. package/dist/components/common/HintSlot.d.ts +38 -12
  45. package/dist/components/index.es.js +466 -168
  46. package/dist/components/index.umd.js +1 -1
  47. package/dist/composables/group/useInjectedGroupState.d.ts +1 -1
  48. package/dist/composables/useOptions.d.ts +2 -2
  49. package/dist/directives/index.d.ts +2 -2
  50. package/dist/icons.es.js +3 -3
  51. package/dist/icons.umd.js +1 -1
  52. package/dist/props/index.d.ts +22 -0
  53. package/package.json +33 -33
  54. package/src/assets/icons/detailed.json +1 -1
  55. package/src/assets/icons/normal.json +1 -1
  56. package/src/assets/icons/simple.json +1 -1
  57. package/src/components/VvCheckbox/VvCheckbox.vue +23 -2
  58. package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +15 -2
  59. package/src/components/VvCombobox/VvCombobox.vue +40 -16
  60. package/src/components/VvDropdown/VvDropdown.vue +20 -2
  61. package/src/components/VvIcon/VvIcon.vue +37 -34
  62. package/src/components/VvIcon/index.ts +2 -2
  63. package/src/components/VvInputText/VvInputText.vue +26 -9
  64. package/src/components/VvRadio/VvRadio.vue +23 -2
  65. package/src/components/VvRadioGroup/VvRadioGroup.vue +15 -2
  66. package/src/components/VvSelect/VvSelect.vue +26 -9
  67. package/src/components/VvTextarea/VvTextarea.vue +26 -9
  68. package/src/components/common/HintSlot.ts +129 -170
  69. package/src/composables/useOptions.ts +9 -7
  70. package/src/props/index.ts +2 -0
@@ -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.5",
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": "^4.1.0",
44
- "@volverjs/style": "0.1.9-beta.6",
45
- "@vueuse/core": "^9.13.0",
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.7",
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.0-beta.40",
61
- "@storybook/addon-actions": "7.0.0-beta.40",
62
- "@storybook/addon-docs": "7.0.0-beta.40",
63
- "@storybook/addon-essentials": "7.0.0-beta.40",
64
- "@storybook/addon-interactions": "7.0.0-beta.40",
65
- "@storybook/addon-links": "7.0.0-beta.40",
66
- "@storybook/builder-vite": "7.0.0-beta.40",
67
- "@storybook/channel-postmessage": "7.0.0-beta.40",
68
- "@storybook/channel-websocket": "7.0.0-beta.40",
69
- "@storybook/cli": "7.0.0-beta.40",
70
- "@storybook/client-api": "7.0.0-beta.40",
71
- "@storybook/client-logger": "7.0.0-beta.40",
72
- "@storybook/core-common": "7.0.0-beta.40",
73
- "@storybook/jest": "^0.0.11-next.0",
74
- "@storybook/preview-api": "7.0.0-beta.40",
75
- "@storybook/preview-web": "7.0.0-beta.40",
76
- "@storybook/test-runner": "^0.10.0-next.8",
77
- "@storybook/testing-library": "^0.0.14-next.1",
78
- "@storybook/vue3": "7.0.0-beta.40",
79
- "@storybook/vue3-vite": "7.0.0-beta.40",
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.31",
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.37.0",
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.60.0",
110
- "storybook": "7.0.0-beta.40",
109
+ "sass": "^1.62.0",
110
+ "storybook": "7.0.4",
111
111
  "storybook-addon-markdown-docs": "^1.0.5",
112
- "storybook-dark-mode": "^2.1.1",
112
+ "storybook-dark-mode": "^3.0.0",
113
113
  "storybook-version": "^0.1.1",
114
- "terser": "^5.16.8",
114
+ "terser": "^5.16.9",
115
115
  "ts-node": "^10.9.1",
116
- "typescript": "~4.9.5",
117
- "unplugin-auto-import": "^0.15.2",
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",