@volverjs/ui-vue 0.0.10-beta.3 → 0.0.10-beta.31

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 (294) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +106 -10
  3. package/auto-imports.d.ts +7 -2
  4. package/bin/icons.cjs +1 -1
  5. package/bin/icons.js +22 -15
  6. package/dist/Volver.d.ts +1 -1
  7. package/dist/components/VvAccordion/VvAccordion.es.js +192 -103
  8. package/dist/components/VvAccordion/VvAccordion.umd.js +1 -1
  9. package/dist/components/VvAccordion/VvAccordion.vue.d.ts +160 -8
  10. package/dist/components/VvAccordion/index.d.ts +8 -9
  11. package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +451 -172
  12. package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -1
  13. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +58 -13
  14. package/dist/components/VvAccordionGroup/index.d.ts +14 -6
  15. package/dist/components/VvAction/VvAction.es.js +78 -27
  16. package/dist/components/VvAction/VvAction.umd.js +1 -1
  17. package/dist/components/VvAction/VvAction.vue.d.ts +57 -22
  18. package/dist/components/VvAction/index.d.ts +25 -9
  19. package/dist/components/VvAlert/VvAlert.es.js +204 -171
  20. package/dist/components/VvAlert/VvAlert.umd.js +1 -1
  21. package/dist/components/VvAlert/VvAlert.vue.d.ts +24 -14
  22. package/dist/components/VvAlert/index.d.ts +17 -9
  23. package/dist/components/VvAlertGroup/VvAlertGroup.es.js +250 -188
  24. package/dist/components/VvAlertGroup/VvAlertGroup.umd.js +1 -1
  25. package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +16 -9
  26. package/dist/components/VvAlertGroup/index.d.ts +6 -14
  27. package/dist/components/VvAvatar/VvAvatar.es.js +61 -21
  28. package/dist/components/VvAvatar/VvAvatar.umd.js +1 -1
  29. package/dist/components/VvAvatar/VvAvatar.vue.d.ts +12 -4
  30. package/dist/components/VvAvatar/index.d.ts +4 -1
  31. package/dist/components/VvAvatarGroup/VvAvatarGroup.es.js +118 -48
  32. package/dist/components/VvAvatarGroup/VvAvatarGroup.umd.js +1 -1
  33. package/dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts +10 -3
  34. package/dist/components/VvAvatarGroup/index.d.ts +4 -1
  35. package/dist/components/VvBadge/VvBadge.es.js +78 -28
  36. package/dist/components/VvBadge/VvBadge.umd.js +1 -1
  37. package/dist/components/VvBadge/VvBadge.vue.d.ts +12 -4
  38. package/dist/components/VvBadge/index.d.ts +4 -1
  39. package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +276 -60
  40. package/dist/components/VvBreadcrumb/VvBreadcrumb.umd.js +1 -1
  41. package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +27 -7
  42. package/dist/components/VvBreadcrumb/index.d.ts +6 -10
  43. package/dist/components/VvButton/VvButton.es.js +291 -252
  44. package/dist/components/VvButton/VvButton.umd.js +1 -1
  45. package/dist/components/VvButton/VvButton.vue.d.ts +94 -40
  46. package/dist/components/VvButton/index.d.ts +51 -29
  47. package/dist/components/VvButtonGroup/VvButtonGroup.es.js +81 -40
  48. package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -1
  49. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +24 -11
  50. package/dist/components/VvButtonGroup/index.d.ts +8 -2
  51. package/dist/components/VvCard/VvCard.es.js +86 -36
  52. package/dist/components/VvCard/VvCard.umd.js +1 -1
  53. package/dist/components/VvCard/VvCard.vue.d.ts +12 -4
  54. package/dist/components/VvCard/index.d.ts +4 -1
  55. package/dist/components/VvCheckbox/VvCheckbox.es.js +177 -120
  56. package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -1
  57. package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +105 -33
  58. package/dist/components/VvCheckbox/index.d.ts +47 -14
  59. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +190 -107
  60. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
  61. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +101 -30
  62. package/dist/components/VvCheckboxGroup/index.d.ts +45 -12
  63. package/dist/components/VvCombobox/VvCombobox.es.js +806 -581
  64. package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
  65. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +171 -104
  66. package/dist/components/VvCombobox/index.d.ts +62 -26
  67. package/dist/components/VvDialog/VvDialog.es.js +140 -153
  68. package/dist/components/VvDialog/VvDialog.umd.js +1 -1
  69. package/dist/components/VvDialog/VvDialog.vue.d.ts +4 -4
  70. package/dist/components/VvDropdown/VvDropdown.es.js +138 -71
  71. package/dist/components/VvDropdown/VvDropdown.umd.js +1 -1
  72. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +101 -75
  73. package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +66 -25
  74. package/dist/components/VvDropdown/VvDropdownItem.vue.d.ts +13 -1
  75. package/dist/components/VvDropdown/VvDropdownOptgroup.vue.d.ts +12 -4
  76. package/dist/components/VvDropdown/VvDropdownOption.vue.d.ts +35 -7
  77. package/dist/components/VvDropdown/index.d.ts +52 -10
  78. package/dist/components/VvDropdownAction/VvDropdownAction.es.js +152 -39
  79. package/dist/components/VvDropdownAction/VvDropdownAction.umd.js +1 -1
  80. package/dist/components/VvDropdownItem/VvDropdownItem.es.js +335 -8
  81. package/dist/components/VvDropdownItem/VvDropdownItem.umd.js +1 -1
  82. package/dist/components/VvDropdownOptgroup/VvDropdownOptgroup.es.js +63 -20
  83. package/dist/components/VvDropdownOptgroup/VvDropdownOptgroup.umd.js +1 -1
  84. package/dist/components/VvDropdownOption/VvDropdownOption.es.js +188 -80
  85. package/dist/components/VvDropdownOption/VvDropdownOption.umd.js +1 -1
  86. package/dist/components/VvIcon/VvIcon.es.js +23 -96
  87. package/dist/components/VvIcon/VvIcon.umd.js +1 -1
  88. package/dist/components/VvIcon/VvIcon.vue.d.ts +23 -66
  89. package/dist/components/VvIcon/index.d.ts +33 -48
  90. package/dist/components/VvInputFile/VvInputFile.es.js +1777 -0
  91. package/dist/components/VvInputFile/VvInputFile.umd.js +1 -0
  92. package/dist/components/VvInputFile/VvInputFile.vue.d.ts +359 -0
  93. package/dist/components/VvInputFile/index.d.ts +200 -0
  94. package/dist/components/VvInputText/VvInputClearAction.d.ts +7 -5
  95. package/dist/components/VvInputText/VvInputPasswordAction.d.ts +10 -8
  96. package/dist/components/VvInputText/VvInputStepAction.d.ts +2 -2
  97. package/dist/components/VvInputText/VvInputText.es.js +1237 -324
  98. package/dist/components/VvInputText/VvInputText.umd.js +1 -1
  99. package/dist/components/VvInputText/VvInputText.vue.d.ts +207 -57
  100. package/dist/components/VvInputText/index.d.ts +99 -29
  101. package/dist/components/VvNav/VvNav.es.js +135 -56
  102. package/dist/components/VvNav/VvNav.umd.js +1 -1
  103. package/dist/components/VvNav/VvNav.vue.d.ts +32 -9
  104. package/dist/components/VvNav/VvNavItem.vue.d.ts +1 -1
  105. package/dist/components/VvNav/VvNavSeparator.vue.d.ts +1 -1
  106. package/dist/components/VvNav/index.d.ts +5 -2
  107. package/dist/components/VvNavItem/VvNavItem.es.js +91 -33
  108. package/dist/components/VvNavItem/VvNavItem.umd.js +1 -1
  109. package/dist/components/VvProgress/VvProgress.es.js +72 -26
  110. package/dist/components/VvProgress/VvProgress.umd.js +1 -1
  111. package/dist/components/VvProgress/VvProgress.vue.d.ts +10 -3
  112. package/dist/components/VvProgress/index.d.ts +4 -1
  113. package/dist/components/VvRadio/VvRadio.es.js +160 -103
  114. package/dist/components/VvRadio/VvRadio.umd.js +1 -1
  115. package/dist/components/VvRadio/VvRadio.vue.d.ts +103 -31
  116. package/dist/components/VvRadio/index.d.ts +50 -17
  117. package/dist/components/VvRadioGroup/VvRadioGroup.es.js +190 -107
  118. package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
  119. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +101 -30
  120. package/dist/components/VvRadioGroup/index.d.ts +45 -12
  121. package/dist/components/VvSelect/VvSelect.es.js +251 -238
  122. package/dist/components/VvSelect/VvSelect.umd.js +1 -1
  123. package/dist/components/VvSelect/VvSelect.vue.d.ts +117 -44
  124. package/dist/components/VvSelect/index.d.ts +48 -14
  125. package/dist/components/VvTab/VvTab.es.js +191 -75
  126. package/dist/components/VvTab/VvTab.umd.js +1 -1
  127. package/dist/components/VvTab/VvTab.vue.d.ts +31 -7
  128. package/dist/components/VvTab/index.d.ts +4 -1
  129. package/dist/components/VvTextarea/VvTextarea.es.js +232 -224
  130. package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
  131. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +156 -49
  132. package/dist/components/VvTextarea/index.d.ts +68 -19
  133. package/dist/components/VvTooltip/VvTooltip.es.js +79 -29
  134. package/dist/components/VvTooltip/VvTooltip.umd.js +1 -1
  135. package/dist/components/VvTooltip/VvTooltip.vue.d.ts +13 -6
  136. package/dist/components/VvTooltip/index.d.ts +5 -2
  137. package/dist/components/common/HintSlot.d.ts +1 -1
  138. package/dist/components/index.d.ts +10 -0
  139. package/dist/components/index.es.js +3534 -1650
  140. package/dist/components/index.umd.js +1 -1
  141. package/dist/composables/alert/useAlert.d.ts +99 -4
  142. package/dist/composables/alert/useInjectAlert.d.ts +1 -6
  143. package/dist/composables/dropdown/useInjectDropdown.d.ts +3 -23
  144. package/dist/composables/dropdown/useProvideDropdown.d.ts +3 -4
  145. package/dist/composables/group/useInjectedGroupState.d.ts +4 -5
  146. package/dist/composables/group/useProvideGroupState.d.ts +3 -3
  147. package/dist/composables/index.d.ts +1 -0
  148. package/dist/composables/index.es.js +92 -3
  149. package/dist/composables/index.umd.js +1 -1
  150. package/dist/composables/useBlurhash.d.ts +7 -0
  151. package/dist/composables/useComponentIcon.d.ts +9 -8
  152. package/dist/composables/usePersistence.d.ts +2 -0
  153. package/dist/composables/useVolver.d.ts +1 -1
  154. package/dist/constants.d.ts +34 -32
  155. package/dist/directives/index.d.ts +3 -5
  156. package/dist/directives/index.es.js +99 -43
  157. package/dist/directives/index.umd.js +1 -1
  158. package/dist/directives/v-tooltip.es.js +97 -38
  159. package/dist/directives/v-tooltip.umd.js +1 -1
  160. package/dist/icons.es.js +267 -267
  161. package/dist/icons.umd.js +1 -1
  162. package/dist/index.d.ts +3 -1
  163. package/dist/index.es.js +90 -16
  164. package/dist/index.umd.js +1 -1
  165. package/dist/props/index.d.ts +272 -81
  166. package/dist/resolvers/unplugin.d.ts +6 -1
  167. package/dist/resolvers/unplugin.es.js +87 -10
  168. package/dist/resolvers/unplugin.umd.js +1 -1
  169. package/dist/stories/AccordionGroup/AccordionGroup.stories.d.ts +143 -89
  170. package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +1075 -492
  171. package/dist/stories/AlertGroup/AlertGroupWithComposable.stories.d.ts +1 -1
  172. package/dist/stories/Blurhash/BlurhashComposable.stories.d.ts +4 -0
  173. package/dist/stories/Button/Button.settings.d.ts +0 -1
  174. package/dist/stories/Combobox/Combobox.settings.d.ts +8 -0
  175. package/dist/stories/Icon/Icon.settings.d.ts +1 -0
  176. package/dist/stories/InputFile/InputFile.settings.d.ts +56 -0
  177. package/dist/stories/InputFile/InputFile.stories.d.ts +12 -0
  178. package/dist/stories/InputFile/InputFileDropArea.stories.d.ts +9 -0
  179. package/dist/stories/InputFile/InputFileIconPosition.stories.d.ts +8 -0
  180. package/dist/stories/InputFile/InputFileSlots.stories.d.ts +7 -0
  181. package/dist/stories/Tab/Tab.settings.d.ts +2 -15
  182. package/dist/test/expect.d.ts +1 -1
  183. package/dist/types/alert.d.ts +9 -7
  184. package/dist/types/blurhash.d.ts +12 -0
  185. package/dist/types/generic.d.ts +1 -2
  186. package/dist/types/group.d.ts +37 -15
  187. package/dist/types/index.d.ts +7 -0
  188. package/dist/types/input-file.d.ts +16 -0
  189. package/dist/types/nav.d.ts +2 -2
  190. package/dist/utils/ObjectUtilities.d.ts +0 -1
  191. package/dist/workers/blurhash.d.ts +1 -0
  192. package/package.json +78 -78
  193. package/src/Volver.ts +31 -20
  194. package/src/assets/icons/detailed.json +1 -1
  195. package/src/assets/icons/normal.json +1 -1
  196. package/src/assets/icons/simple.json +1 -1
  197. package/src/components/VvAccordion/VvAccordion.vue +121 -58
  198. package/src/components/VvAccordion/index.ts +8 -23
  199. package/src/components/VvAccordionGroup/VvAccordionGroup.vue +164 -47
  200. package/src/components/VvAccordionGroup/index.ts +6 -6
  201. package/src/components/VvAction/VvAction.vue +17 -5
  202. package/src/components/VvAlert/index.ts +14 -9
  203. package/src/components/VvAlertGroup/index.ts +3 -15
  204. package/src/components/VvBreadcrumb/VvBreadcrumb.vue +20 -19
  205. package/src/components/VvBreadcrumb/index.ts +2 -8
  206. package/src/components/VvButton/VvButton.vue +17 -7
  207. package/src/components/VvButton/index.ts +9 -16
  208. package/src/components/VvButtonGroup/VvButtonGroup.vue +1 -2
  209. package/src/components/VvCheckbox/index.ts +2 -2
  210. package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +1 -2
  211. package/src/components/VvCombobox/VvCombobox.vue +15 -12
  212. package/src/components/VvCombobox/index.ts +4 -0
  213. package/src/components/VvDropdown/VvDropdown.vue +11 -2
  214. package/src/components/VvDropdown/VvDropdownItem.vue +4 -1
  215. package/src/components/VvDropdown/VvDropdownOption.vue +4 -21
  216. package/src/components/VvDropdown/index.ts +35 -1
  217. package/src/components/VvIcon/VvIcon.vue +2 -2
  218. package/src/components/VvIcon/index.ts +35 -48
  219. package/src/components/VvInputFile/VvInputFile.vue +395 -0
  220. package/src/components/VvInputFile/index.ts +135 -0
  221. package/src/components/VvInputText/VvInputClearAction.ts +10 -6
  222. package/src/components/VvInputText/VvInputPasswordAction.ts +13 -9
  223. package/src/components/VvInputText/VvInputText.vue +141 -33
  224. package/src/components/VvInputText/index.ts +31 -16
  225. package/src/components/VvNav/VvNav.vue +4 -2
  226. package/src/components/VvRadio/index.ts +5 -5
  227. package/src/components/VvRadioGroup/VvRadioGroup.vue +1 -2
  228. package/src/components/VvSelect/VvSelect.vue +5 -8
  229. package/src/components/VvTab/VvTab.vue +5 -1
  230. package/src/components/VvTextarea/VvTextarea.vue +6 -9
  231. package/src/components/index.ts +10 -0
  232. package/src/composables/alert/useAlert.ts +12 -9
  233. package/src/composables/dropdown/useProvideDropdown.ts +4 -4
  234. package/src/composables/group/useInjectedGroupState.ts +20 -16
  235. package/src/composables/group/useProvideGroupState.ts +10 -15
  236. package/src/composables/index.ts +1 -0
  237. package/src/composables/useBlurhash.ts +76 -0
  238. package/src/composables/useComponentIcon.ts +15 -14
  239. package/src/composables/usePersistence.ts +76 -0
  240. package/src/composables/useUniqueId.ts +2 -2
  241. package/src/constants.ts +47 -32
  242. package/src/directives/index.ts +3 -6
  243. package/src/directives/v-tooltip.ts +19 -10
  244. package/src/index.ts +3 -1
  245. package/src/props/index.ts +108 -31
  246. package/src/resolvers/unplugin.ts +24 -14
  247. package/src/stories/Accordion/Accordion.test.ts +1 -1
  248. package/src/stories/AccordionGroup/AccordionGroup.settings.ts +2 -2
  249. package/src/stories/AccordionGroup/AccordionGroup.test.ts +17 -11
  250. package/src/stories/AccordionGroup/AccordionGroupSlots.stories.ts +1 -1
  251. package/src/stories/Alert/Alert.test.ts +1 -1
  252. package/src/stories/AlertGroup/AlertGroup.test.ts +1 -1
  253. package/src/stories/AlertGroup/AlertGroupWithComposable.stories.ts +2 -2
  254. package/src/stories/Avatar/Avatar.test.ts +1 -1
  255. package/src/stories/AvatarGroup/AvatarGroup.test.ts +1 -1
  256. package/src/stories/Badge/Badge.test.ts +1 -1
  257. package/src/stories/Blurhash/BlurhashComposable.stories.ts +195 -0
  258. package/src/stories/Button/Button.settings.ts +1 -4
  259. package/src/stories/Button/Button.test.ts +1 -1
  260. package/src/stories/ButtonGroup/ButtonGroup.test.ts +1 -1
  261. package/src/stories/Card/Card.test.ts +1 -1
  262. package/src/stories/Checkbox/Checkbox.test.ts +1 -1
  263. package/src/stories/CheckboxGroup/CheckboxGroup.test.ts +1 -1
  264. package/src/stories/Combobox/Combobox.settings.ts +8 -0
  265. package/src/stories/Combobox/Combobox.test.ts +1 -1
  266. package/src/stories/Dialog/Dialog.test.ts +2 -2
  267. package/src/stories/Dropdown/Dropdown.test.ts +1 -1
  268. package/src/stories/Icon/Icon.settings.ts +3 -3
  269. package/src/stories/InputFile/InputFile.settings.ts +36 -0
  270. package/src/stories/InputFile/InputFile.stories.ts +89 -0
  271. package/src/stories/InputFile/InputFileDropArea.stories.ts +56 -0
  272. package/src/stories/InputFile/InputFileIconPosition.stories.ts +43 -0
  273. package/src/stories/InputFile/InputFileSlots.stories.ts +33 -0
  274. package/src/stories/InputText/InputText.test.ts +1 -1
  275. package/src/stories/Nav/Nav.test.ts +1 -1
  276. package/src/stories/Progress/Progress.test.ts +1 -1
  277. package/src/stories/Radio/Radio.test.ts +1 -1
  278. package/src/stories/RadioGroup/RadioGroup.test.ts +1 -1
  279. package/src/stories/Select/Select.test.ts +1 -1
  280. package/src/stories/Tab/Tab.settings.ts +2 -2
  281. package/src/stories/Tab/Tab.test.ts +1 -1
  282. package/src/stories/Textarea/Textarea.test.ts +1 -1
  283. package/src/stories/Tooltip/Tooltip.test.ts +1 -1
  284. package/src/stories/argTypes.ts +1 -1
  285. package/src/test/expect.ts +2 -4
  286. package/src/types/alert.ts +11 -7
  287. package/src/types/blurhash.ts +21 -0
  288. package/src/types/generic.ts +3 -3
  289. package/src/types/group.ts +22 -14
  290. package/src/types/index.ts +7 -0
  291. package/src/types/input-file.ts +18 -0
  292. package/src/types/nav.ts +2 -3
  293. package/src/utils/ObjectUtilities.ts +0 -11
  294. package/src/workers/blurhash.ts +9 -0
@@ -1,7 +1,8 @@
1
1
  import type { PropType } from 'vue';
2
2
  import type { Option } from '@/types/generic';
3
3
  import type { NavItem } from '@/types/nav';
4
- import { Placement, Strategy, Position, Side, AnchorTarget, ButtonType } from '@/constants';
4
+ import { Placement, Strategy, Position, Side, ButtonType, ActionTag, StorageType } from '@/constants';
5
+ import type { VvIconProps } from '@/components/VvIcon';
5
6
  export declare const LinkProps: {
6
7
  /**
7
8
  * The router-link/nuxt-link property, if it is defined the button is rendered as a ruouter-link or nuxt-link.
@@ -17,10 +18,7 @@ export declare const LinkProps: {
17
18
  /**
18
19
  * Anchor target
19
20
  */
20
- target: {
21
- type: PropType<"_blank" | "_self" | "_parent" | "_top">;
22
- validator: (value: AnchorTarget) => boolean;
23
- };
21
+ target: StringConstructor;
24
22
  /**
25
23
  * Anchor rel
26
24
  */
@@ -33,27 +31,42 @@ export declare const ValidProps: {
33
31
  /**
34
32
  * Valid status
35
33
  */
36
- valid: BooleanConstructor;
34
+ valid: {
35
+ type: BooleanConstructor;
36
+ default: boolean;
37
+ };
37
38
  /**
38
39
  * Valid label
39
40
  */
40
- validLabel: (ArrayConstructor | StringConstructor)[];
41
+ validLabel: {
42
+ type: (ArrayConstructor | StringConstructor)[];
43
+ default: undefined;
44
+ };
41
45
  };
42
46
  export declare const InvalidProps: {
43
47
  /**
44
48
  * Invalid status
45
49
  */
46
- invalid: BooleanConstructor;
50
+ invalid: {
51
+ type: BooleanConstructor;
52
+ default: boolean;
53
+ };
47
54
  /**
48
55
  * Invalid label
49
56
  */
50
- invalidLabel: (ArrayConstructor | StringConstructor)[];
57
+ invalidLabel: {
58
+ type: (ArrayConstructor | StringConstructor)[];
59
+ default: undefined;
60
+ };
51
61
  };
52
62
  export declare const LoadingProps: {
53
63
  /**
54
64
  * Loading status
55
65
  */
56
- loading: BooleanConstructor;
66
+ loading: {
67
+ type: BooleanConstructor;
68
+ default: boolean;
69
+ };
57
70
  /**
58
71
  * Loading label
59
72
  */
@@ -66,49 +79,73 @@ export declare const DisabledProps: {
66
79
  /**
67
80
  * Whether the form control is disabled
68
81
  */
69
- disabled: BooleanConstructor;
82
+ disabled: {
83
+ type: BooleanConstructor;
84
+ default: boolean;
85
+ };
70
86
  };
71
87
  export declare const SelectedProps: {
72
88
  /**
73
89
  * Whether the item is selected
74
90
  */
75
- selected: BooleanConstructor;
91
+ selected: {
92
+ type: BooleanConstructor;
93
+ default: boolean;
94
+ };
76
95
  };
77
96
  export declare const ActiveProps: {
78
97
  /**
79
98
  * Whether the item is active
80
99
  */
81
- active: BooleanConstructor;
100
+ active: {
101
+ type: BooleanConstructor;
102
+ default: boolean;
103
+ };
82
104
  };
83
105
  export declare const CurrentProps: {
84
106
  /**
85
107
  * Whether the item is current
86
108
  */
87
- current: BooleanConstructor;
109
+ current: {
110
+ type: BooleanConstructor;
111
+ default: boolean;
112
+ };
88
113
  };
89
114
  export declare const PressedProps: {
90
115
  /**
91
116
  * Whether the item is pressed
92
117
  */
93
- pressed: BooleanConstructor;
118
+ pressed: {
119
+ type: BooleanConstructor;
120
+ default: boolean;
121
+ };
94
122
  };
95
123
  export declare const LabelProps: {
96
124
  /**
97
125
  * The item label
98
126
  */
99
- label: (StringConstructor | NumberConstructor)[];
127
+ label: {
128
+ type: (StringConstructor | NumberConstructor)[];
129
+ default: undefined;
130
+ };
100
131
  };
101
132
  export declare const ReadonlyProps: {
102
133
  /**
103
134
  * The value is not editable
104
135
  */
105
- readonly: BooleanConstructor;
136
+ readonly: {
137
+ type: BooleanConstructor;
138
+ default: boolean;
139
+ };
106
140
  };
107
141
  export declare const ModifiersProps: {
108
142
  /**
109
143
  * Component BEM modifiers
110
144
  */
111
- modifiers: PropType<string | string[]>;
145
+ modifiers: {
146
+ type: PropType<string | string[]>;
147
+ default: undefined;
148
+ };
112
149
  };
113
150
  export declare const HintProps: {
114
151
  hintLabel: {
@@ -151,7 +188,7 @@ export declare const CountProps: {
151
188
  * Show character limit
152
189
  */
153
190
  count: {
154
- type: (StringConstructor | BooleanConstructor)[];
191
+ type: (BooleanConstructor | StringConstructor)[];
155
192
  default: boolean;
156
193
  validator: (value: string) => boolean;
157
194
  };
@@ -160,7 +197,10 @@ export declare const DebounceProps: {
160
197
  /**
161
198
  * Milliseconds to wait before emitting the input event
162
199
  */
163
- debounce: (StringConstructor | NumberConstructor)[];
200
+ debounce: {
201
+ type: (StringConstructor | NumberConstructor)[];
202
+ default: undefined;
203
+ };
164
204
  };
165
205
  export declare const IconProps: {
166
206
  /**
@@ -168,7 +208,8 @@ export declare const IconProps: {
168
208
  * @see VVIcon
169
209
  */
170
210
  icon: {
171
- type: (ObjectConstructor | StringConstructor)[];
211
+ type: PropType<string | VvIconProps>;
212
+ default: undefined;
172
213
  };
173
214
  /**
174
215
  * VvIcon position
@@ -193,7 +234,10 @@ export declare const FloatingLabelProps: {
193
234
  /**
194
235
  * If true the label will be floating
195
236
  */
196
- floating: BooleanConstructor;
237
+ floating: {
238
+ type: BooleanConstructor;
239
+ default: boolean;
240
+ };
197
241
  };
198
242
  export declare const UnselectableProps: {
199
243
  /**
@@ -216,7 +260,7 @@ export declare const DropdownProps: {
216
260
  * Dropdown placement
217
261
  */
218
262
  placement: {
219
- type: PropType<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end">;
263
+ type: PropType<"top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
220
264
  default: Side;
221
265
  validator: (value: Side & Placement) => boolean;
222
266
  };
@@ -233,6 +277,7 @@ export declare const DropdownProps: {
233
277
  */
234
278
  transitionName: {
235
279
  type: StringConstructor;
280
+ default: undefined;
236
281
  };
237
282
  /**
238
283
  * Offset of the dropdown from the trigger
@@ -255,11 +300,11 @@ export declare const DropdownProps: {
255
300
  crossAxis?: boolean | undefined;
256
301
  mainAxis?: boolean | undefined;
257
302
  limiter?: {
258
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
303
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
259
304
  options?: any;
260
305
  } | undefined;
261
306
  boundary?: import("@floating-ui/dom").Boundary | undefined;
262
- } | import("@floating-ui/dom").Derivable<{
307
+ } | import("@floating-ui/core").Derivable<{
263
308
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
264
309
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
265
310
  altBoundary?: boolean | undefined;
@@ -267,7 +312,7 @@ export declare const DropdownProps: {
267
312
  crossAxis?: boolean | undefined;
268
313
  mainAxis?: boolean | undefined;
269
314
  limiter?: {
270
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
315
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
271
316
  options?: any;
272
317
  } | undefined;
273
318
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -287,11 +332,11 @@ export declare const DropdownProps: {
287
332
  crossAxis?: boolean | undefined;
288
333
  mainAxis?: boolean | undefined;
289
334
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
290
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
335
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
291
336
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
292
337
  flipAlignment?: boolean | undefined;
293
338
  boundary?: import("@floating-ui/dom").Boundary | undefined;
294
- } | import("@floating-ui/dom").Derivable<{
339
+ } | import("@floating-ui/core").Derivable<{
295
340
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
296
341
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
297
342
  altBoundary?: boolean | undefined;
@@ -299,7 +344,7 @@ export declare const DropdownProps: {
299
344
  crossAxis?: boolean | undefined;
300
345
  mainAxis?: boolean | undefined;
301
346
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
302
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
347
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
303
348
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
304
349
  flipAlignment?: boolean | undefined;
305
350
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -331,7 +376,7 @@ export declare const DropdownProps: {
331
376
  availableWidth: number;
332
377
  availableHeight: number;
333
378
  }) => void | Promise<void>) | undefined;
334
- } | import("@floating-ui/dom").Derivable<{
379
+ } | import("@floating-ui/core").Derivable<{
335
380
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
336
381
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
337
382
  altBoundary?: boolean | undefined;
@@ -371,7 +416,7 @@ export declare const DropdownProps: {
371
416
  autoAlignment?: boolean | undefined;
372
417
  allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
373
418
  boundary?: import("@floating-ui/dom").Boundary | undefined;
374
- } | import("@floating-ui/dom").Derivable<{
419
+ } | import("@floating-ui/core").Derivable<{
375
420
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
376
421
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
377
422
  altBoundary?: boolean | undefined;
@@ -411,6 +456,7 @@ export declare const DropdownProps: {
411
456
  */
412
457
  triggerWidth: {
413
458
  type: BooleanConstructor;
459
+ default: boolean;
414
460
  };
415
461
  };
416
462
  export declare const IdNameProps: {
@@ -434,7 +480,10 @@ export declare const AutofocusProps: {
434
480
  * Global attribute autofocus
435
481
  * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus
436
482
  */
437
- autofocus: BooleanConstructor;
483
+ autofocus: {
484
+ type: BooleanConstructor;
485
+ default: boolean;
486
+ };
438
487
  };
439
488
  export declare const AutocompleteProps: {
440
489
  /**
@@ -453,42 +502,61 @@ export declare const InputTextareaProps: {
453
502
  * Available for input types: text, search, url, tel, email, password
454
503
  * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#minlength
455
504
  */
456
- minlength: (StringConstructor | NumberConstructor)[];
505
+ minlength: {
506
+ type: (StringConstructor | NumberConstructor)[];
507
+ default: undefined;
508
+ };
457
509
  /**
458
510
  * Input / Textarea maxlength
459
511
  * Maximum length (number of characters) of value
460
512
  * Available for input types: text, search, url, tel, email, password
461
513
  * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#maxlength
462
514
  */
463
- maxlength: (StringConstructor | NumberConstructor)[];
515
+ maxlength: {
516
+ type: (StringConstructor | NumberConstructor)[];
517
+ default: undefined;
518
+ };
464
519
  /**
465
520
  * Input / Textarea placeholder
466
521
  * Text that appears in the form control when it has no value set
467
522
  * Available for input types: text, search, url, tel, email, password, number
468
523
  * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#placeholder
469
524
  */
470
- placeholder: StringConstructor;
525
+ placeholder: {
526
+ type: StringConstructor;
527
+ default: undefined;
528
+ };
471
529
  /**
472
530
  * Input / Textarea required
473
531
  * A value is required or must be check for the form to be submittable
474
532
  * Available for all input types except color
475
533
  * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#required
476
534
  */
477
- required: BooleanConstructor;
535
+ required: {
536
+ type: BooleanConstructor;
537
+ default: boolean;
538
+ };
478
539
  /**
479
540
  * The item label
480
541
  */
481
- label: (StringConstructor | NumberConstructor)[];
542
+ label: {
543
+ type: (StringConstructor | NumberConstructor)[];
544
+ default: undefined;
545
+ };
482
546
  /**
483
547
  * If true the label will be floating
484
548
  */
485
- floating: BooleanConstructor;
549
+ floating: {
550
+ type: BooleanConstructor;
551
+ default: boolean;
552
+ };
486
553
  /**
487
554
  * VvIcon name or props
488
555
  * @see VVIcon
489
556
  */
490
557
  icon: {
491
- type: (ObjectConstructor | StringConstructor)[];
558
+ type: PropType<string | VvIconProps>;
559
+ default: undefined;
492
560
  };
493
561
  /**
494
562
  * VvIcon position
@@ -501,23 +569,32 @@ export declare const InputTextareaProps: {
501
569
  /**
502
570
  * Milliseconds to wait before emitting the input event
503
571
  */
504
- debounce: (StringConstructor | NumberConstructor)[];
572
+ debounce: {
573
+ type: (StringConstructor | NumberConstructor)[];
574
+ default: undefined;
575
+ };
505
576
  /**
506
577
  * Show character limit
507
578
  */
508
579
  count: {
509
- type: (StringConstructor | BooleanConstructor)[];
580
+ type: (BooleanConstructor | StringConstructor)[];
510
581
  default: boolean;
511
582
  validator: (value: string) => boolean;
512
583
  };
513
584
  /**
514
585
  * Component BEM modifiers
515
586
  */
516
- modifiers: PropType<string | string[]>;
587
+ modifiers: {
588
+ type: PropType<string | string[]>;
589
+ default: undefined;
590
+ };
517
591
  /**
518
592
  * Loading status
519
593
  */
520
- loading: BooleanConstructor;
594
+ loading: {
595
+ type: BooleanConstructor;
596
+ default: boolean;
597
+ };
521
598
  /**
522
599
  * Loading label
523
600
  */
@@ -532,27 +609,45 @@ export declare const InputTextareaProps: {
532
609
  /**
533
610
  * Invalid status
534
611
  */
535
- invalid: BooleanConstructor;
612
+ invalid: {
613
+ type: BooleanConstructor;
614
+ default: boolean;
615
+ };
536
616
  /**
537
617
  * Invalid label
538
618
  */
539
- invalidLabel: (ArrayConstructor | StringConstructor)[];
619
+ invalidLabel: {
620
+ type: (ArrayConstructor | StringConstructor)[];
621
+ default: undefined;
622
+ };
540
623
  /**
541
624
  * Valid status
542
625
  */
543
- valid: BooleanConstructor;
626
+ valid: {
627
+ type: BooleanConstructor;
628
+ default: boolean;
629
+ };
544
630
  /**
545
631
  * Valid label
546
632
  */
547
- validLabel: (ArrayConstructor | StringConstructor)[];
633
+ validLabel: {
634
+ type: (ArrayConstructor | StringConstructor)[];
635
+ default: undefined;
636
+ };
548
637
  /**
549
638
  * The value is not editable
550
639
  */
551
- readonly: BooleanConstructor;
640
+ readonly: {
641
+ type: BooleanConstructor;
642
+ default: boolean;
643
+ };
552
644
  /**
553
645
  * Whether the form control is disabled
554
646
  */
555
- disabled: BooleanConstructor;
647
+ disabled: {
648
+ type: BooleanConstructor;
649
+ default: boolean;
650
+ };
556
651
  /**
557
652
  * Global attribute tabindex
558
653
  * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex
@@ -573,7 +668,10 @@ export declare const InputTextareaProps: {
573
668
  * Global attribute autofocus
574
669
  * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus
575
670
  */
576
- autofocus: BooleanConstructor;
671
+ autofocus: {
672
+ type: BooleanConstructor;
673
+ default: boolean;
674
+ };
577
675
  /**
578
676
  * Input / Textarea name
579
677
  * Name of the form control. Submitted with the form as part of a name/value pair
@@ -594,15 +692,24 @@ export declare const CheckboxRadioProps: {
594
692
  * Input value
595
693
  * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#value
596
694
  */
597
- value: (StringConstructor | BooleanConstructor | NumberConstructor)[];
695
+ value: {
696
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
697
+ default: undefined;
698
+ };
598
699
  /**
599
700
  * Input value
600
701
  */
601
- modelValue: (ObjectConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
702
+ modelValue: {
703
+ type: (ObjectConstructor | BooleanConstructor | StringConstructor | NumberConstructor)[];
704
+ default: undefined;
705
+ };
602
706
  /**
603
707
  * Loading status
604
708
  */
605
- loading: BooleanConstructor;
709
+ loading: {
710
+ type: BooleanConstructor;
711
+ default: boolean;
712
+ };
606
713
  /**
607
714
  * Loading label
608
715
  */
@@ -613,19 +720,31 @@ export declare const CheckboxRadioProps: {
613
720
  /**
614
721
  * The item label
615
722
  */
616
- label: (StringConstructor | NumberConstructor)[];
723
+ label: {
724
+ type: (StringConstructor | NumberConstructor)[];
725
+ default: undefined;
726
+ };
617
727
  /**
618
728
  * Component BEM modifiers
619
729
  */
620
- modifiers: PropType<string | string[]>;
730
+ modifiers: {
731
+ type: PropType<string | string[]>;
732
+ default: undefined;
733
+ };
621
734
  /**
622
735
  * The value is not editable
623
736
  */
624
- readonly: BooleanConstructor;
737
+ readonly: {
738
+ type: BooleanConstructor;
739
+ default: boolean;
740
+ };
625
741
  /**
626
742
  * Whether the form control is disabled
627
743
  */
628
- disabled: BooleanConstructor;
744
+ disabled: {
745
+ type: BooleanConstructor;
746
+ default: boolean;
747
+ };
629
748
  hintLabel: {
630
749
  type: StringConstructor;
631
750
  default: string;
@@ -633,19 +752,31 @@ export declare const CheckboxRadioProps: {
633
752
  /**
634
753
  * Invalid status
635
754
  */
636
- invalid: BooleanConstructor;
755
+ invalid: {
756
+ type: BooleanConstructor;
757
+ default: boolean;
758
+ };
637
759
  /**
638
760
  * Invalid label
639
761
  */
640
- invalidLabel: (ArrayConstructor | StringConstructor)[];
762
+ invalidLabel: {
763
+ type: (ArrayConstructor | StringConstructor)[];
764
+ default: undefined;
765
+ };
641
766
  /**
642
767
  * Valid status
643
768
  */
644
- valid: BooleanConstructor;
769
+ valid: {
770
+ type: BooleanConstructor;
771
+ default: boolean;
772
+ };
645
773
  /**
646
774
  * Valid label
647
775
  */
648
- validLabel: (ArrayConstructor | StringConstructor)[];
776
+ validLabel: {
777
+ type: (ArrayConstructor | StringConstructor)[];
778
+ default: undefined;
779
+ };
649
780
  /**
650
781
  * Global attribute tabindex
651
782
  * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex
@@ -673,7 +804,10 @@ export declare const CheckboxRadioGroupProps: {
673
804
  /**
674
805
  * Input value
675
806
  */
676
- modelValue: (SymbolConstructor | ArrayConstructor | StringConstructor | BooleanConstructor | NumberConstructor)[];
807
+ modelValue: {
808
+ type: (SymbolConstructor | ArrayConstructor | BooleanConstructor | StringConstructor | NumberConstructor)[];
809
+ default: undefined;
810
+ };
677
811
  /**
678
812
  * Input name
679
813
  */
@@ -684,11 +818,17 @@ export declare const CheckboxRadioGroupProps: {
684
818
  /**
685
819
  * If true, the group will be displayed in a vertical column
686
820
  */
687
- vertical: BooleanConstructor;
821
+ vertical: {
822
+ type: BooleanConstructor;
823
+ default: boolean;
824
+ };
688
825
  /**
689
826
  * Loading status
690
827
  */
691
- loading: BooleanConstructor;
828
+ loading: {
829
+ type: BooleanConstructor;
830
+ default: boolean;
831
+ };
692
832
  /**
693
833
  * Loading label
694
834
  */
@@ -699,19 +839,31 @@ export declare const CheckboxRadioGroupProps: {
699
839
  /**
700
840
  * The item label
701
841
  */
702
- label: (StringConstructor | NumberConstructor)[];
842
+ label: {
843
+ type: (StringConstructor | NumberConstructor)[];
844
+ default: undefined;
845
+ };
703
846
  /**
704
847
  * Component BEM modifiers
705
848
  */
706
- modifiers: PropType<string | string[]>;
849
+ modifiers: {
850
+ type: PropType<string | string[]>;
851
+ default: undefined;
852
+ };
707
853
  /**
708
854
  * The value is not editable
709
855
  */
710
- readonly: BooleanConstructor;
856
+ readonly: {
857
+ type: BooleanConstructor;
858
+ default: boolean;
859
+ };
711
860
  /**
712
861
  * Whether the form control is disabled
713
862
  */
714
- disabled: BooleanConstructor;
863
+ disabled: {
864
+ type: BooleanConstructor;
865
+ default: boolean;
866
+ };
715
867
  hintLabel: {
716
868
  type: StringConstructor;
717
869
  default: string;
@@ -747,19 +899,31 @@ export declare const CheckboxRadioGroupProps: {
747
899
  /**
748
900
  * Invalid status
749
901
  */
750
- invalid: BooleanConstructor;
902
+ invalid: {
903
+ type: BooleanConstructor;
904
+ default: boolean;
905
+ };
751
906
  /**
752
907
  * Invalid label
753
908
  */
754
- invalidLabel: (ArrayConstructor | StringConstructor)[];
909
+ invalidLabel: {
910
+ type: (ArrayConstructor | StringConstructor)[];
911
+ default: undefined;
912
+ };
755
913
  /**
756
914
  * Valid status
757
915
  */
758
- valid: BooleanConstructor;
916
+ valid: {
917
+ type: BooleanConstructor;
918
+ default: boolean;
919
+ };
759
920
  /**
760
921
  * Valid label
761
922
  */
762
- validLabel: (ArrayConstructor | StringConstructor)[];
923
+ validLabel: {
924
+ type: (ArrayConstructor | StringConstructor)[];
925
+ default: undefined;
926
+ };
763
927
  };
764
928
  export declare const ActionProps: {
765
929
  /**
@@ -777,6 +941,13 @@ export declare const ActionProps: {
777
941
  type: StringConstructor;
778
942
  default: undefined;
779
943
  };
944
+ /**
945
+ * Default tag for the action
946
+ */
947
+ defaultTag: {
948
+ type: StringConstructor;
949
+ default: ActionTag;
950
+ };
780
951
  /**
781
952
  * The router-link/nuxt-link property, if it is defined the button is rendered as a ruouter-link or nuxt-link.
782
953
  * @see Documentation of [router-link](https://router.vuejs.org/api/#router-link) and [nuxt-link](https://nuxtjs.org/api/components-nuxt-link/)
@@ -791,10 +962,7 @@ export declare const ActionProps: {
791
962
  /**
792
963
  * Anchor target
793
964
  */
794
- target: {
795
- type: PropType<"_blank" | "_self" | "_parent" | "_top">;
796
- validator: (value: AnchorTarget) => boolean;
797
- };
965
+ target: StringConstructor;
798
966
  /**
799
967
  * Anchor rel
800
968
  */
@@ -805,23 +973,38 @@ export declare const ActionProps: {
805
973
  /**
806
974
  * Whether the item is current
807
975
  */
808
- current: BooleanConstructor;
976
+ current: {
977
+ type: BooleanConstructor;
978
+ default: boolean;
979
+ };
809
980
  /**
810
981
  * Whether the item is active
811
982
  */
812
- active: BooleanConstructor;
983
+ active: {
984
+ type: BooleanConstructor;
985
+ default: boolean;
986
+ };
813
987
  /**
814
988
  * Whether the item is pressed
815
989
  */
816
- pressed: BooleanConstructor;
990
+ pressed: {
991
+ type: BooleanConstructor;
992
+ default: boolean;
993
+ };
817
994
  /**
818
995
  * The item label
819
996
  */
820
- label: (StringConstructor | NumberConstructor)[];
997
+ label: {
998
+ type: (StringConstructor | NumberConstructor)[];
999
+ default: undefined;
1000
+ };
821
1001
  /**
822
1002
  * Whether the form control is disabled
823
1003
  */
824
- disabled: BooleanConstructor;
1004
+ disabled: {
1005
+ type: BooleanConstructor;
1006
+ default: boolean;
1007
+ };
825
1008
  };
826
1009
  export declare const NavProps: {
827
1010
  items: {
@@ -829,3 +1012,11 @@ export declare const NavProps: {
829
1012
  default: () => never[];
830
1013
  };
831
1014
  };
1015
+ export declare const StorageProps: {
1016
+ storageType: {
1017
+ type: PropType<"local" | "session">;
1018
+ default: StorageType;
1019
+ validator: (value: StorageType) => boolean;
1020
+ };
1021
+ storageKey: StringConstructor;
1022
+ };