@volverjs/ui-vue 0.0.1-beta.12 → 0.0.1-beta.16

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 (431) hide show
  1. package/bin/icons.cjs +73 -0
  2. package/bin/icons.js +75 -0
  3. package/dist/Volver.d.ts +15 -2
  4. package/dist/components/VvAccordion/VvAccordion.es.js +133 -236
  5. package/dist/components/VvAccordion/VvAccordion.umd.js +1 -1
  6. package/dist/components/VvAccordion/VvAccordion.vue.d.ts +32 -97
  7. package/dist/components/VvAccordion/index.d.ts +46 -0
  8. package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +199 -277
  9. package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -1
  10. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +44 -151
  11. package/dist/components/VvAccordionGroup/{VvAccordionGroup.d.ts → index.d.ts} +9 -13
  12. package/dist/components/VvBadge/VvBadge.es.js +42 -151
  13. package/dist/components/VvBadge/VvBadge.umd.js +1 -1
  14. package/dist/components/VvBadge/VvBadge.vue.d.ts +12 -53
  15. package/dist/components/VvBadge/{VvBadge.d.ts → index.d.ts} +0 -0
  16. package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +55 -168
  17. package/dist/components/VvBreadcrumb/VvBreadcrumb.umd.js +1 -1
  18. package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +24 -104
  19. package/dist/components/VvBreadcrumb/{VvBreadcrumb.d.ts → index.d.ts} +1 -1
  20. package/dist/components/VvButton/VvButton.es.js +298 -312
  21. package/dist/components/VvButton/VvButton.umd.js +1 -1
  22. package/dist/components/VvButton/VvButton.vue.d.ts +91 -163
  23. package/dist/components/VvButton/{VvButton.d.ts → index.d.ts} +46 -9
  24. package/dist/components/VvButtonGroup/VvButtonGroup.es.js +59 -172
  25. package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -1
  26. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +30 -125
  27. package/dist/components/VvButtonGroup/{VvButtonGroup.d.ts → index.d.ts} +0 -0
  28. package/dist/components/VvCard/VvCard.es.js +55 -166
  29. package/dist/components/VvCard/VvCard.umd.js +1 -1
  30. package/dist/components/VvCard/VvCard.vue.d.ts +16 -61
  31. package/dist/components/VvCard/{VvCard.d.ts → index.d.ts} +1 -1
  32. package/dist/components/VvCheckbox/VvCheckbox.es.js +344 -0
  33. package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -0
  34. package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +87 -0
  35. package/dist/components/VvCheckbox/index.d.ts +86 -0
  36. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +415 -0
  37. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -0
  38. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +113 -0
  39. package/dist/components/{VvCheckGroup/VvCheckGroup.d.ts → VvCheckboxGroup/index.d.ts} +10 -10
  40. package/dist/components/VvDialog/VvDialog.es.js +108 -230
  41. package/dist/components/VvDialog/VvDialog.umd.js +1 -1
  42. package/dist/components/VvDialog/VvDialog.vue.d.ts +28 -132
  43. package/dist/components/VvDialog/{VvDialog.d.ts → index.d.ts} +2 -6
  44. package/dist/components/VvDropdown/VvDropdown.es.js +167 -186
  45. package/dist/components/VvDropdown/VvDropdown.umd.js +1 -1
  46. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +34 -136
  47. package/dist/components/VvDropdown/{VvDropdown.d.ts → index.d.ts} +7 -3
  48. package/dist/components/VvIcon/VvIcon.es.js +62 -174
  49. package/dist/components/VvIcon/VvIcon.umd.js +1 -1
  50. package/dist/components/VvIcon/VvIcon.vue.d.ts +36 -150
  51. package/dist/components/VvIcon/{VvIcon.d.ts → index.d.ts} +9 -0
  52. package/dist/components/VvInputText/VvInputClearAction.d.ts +36 -0
  53. package/dist/components/VvInputText/VvInputPasswordAction.d.ts +56 -0
  54. package/dist/components/VvInputText/VvInputStepAction.d.ts +37 -0
  55. package/dist/components/VvInputText/VvInputText.es.js +586 -577
  56. package/dist/components/VvInputText/VvInputText.umd.js +1 -2
  57. package/dist/components/VvInputText/VvInputText.vue.d.ts +187 -275
  58. package/dist/components/VvInputText/VvInputTextActions.d.ts +1 -1
  59. package/dist/components/VvInputText/index.d.ts +175 -0
  60. package/dist/components/VvNativeSelect/VvNativeSelect.es.js +299 -347
  61. package/dist/components/VvNativeSelect/VvNativeSelect.umd.js +1 -2
  62. package/dist/components/VvNativeSelect/VvNativeSelect.vue.d.ts +78 -190
  63. package/dist/components/VvNativeSelect/{VvNativeSelect.d.ts → index.d.ts} +35 -8
  64. package/dist/components/VvProgress/VvProgress.es.js +45 -162
  65. package/dist/components/VvProgress/VvProgress.umd.js +1 -1
  66. package/dist/components/VvProgress/VvProgress.vue.d.ts +17 -103
  67. package/dist/components/VvProgress/{VvProgress.d.ts → index.d.ts} +1 -7
  68. package/dist/components/VvRadio/VvRadio.es.js +292 -267
  69. package/dist/components/VvRadio/VvRadio.umd.js +1 -1
  70. package/dist/components/VvRadio/VvRadio.vue.d.ts +52 -122
  71. package/dist/components/VvRadio/index.d.ts +64 -0
  72. package/dist/components/VvRadioGroup/VvRadioGroup.es.js +342 -380
  73. package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -2
  74. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +58 -213
  75. package/dist/components/VvRadioGroup/{VvRadioGroup.d.ts → index.d.ts} +2 -2
  76. package/dist/components/VvSelect/VvSelect.es.js +556 -510
  77. package/dist/components/VvSelect/VvSelect.umd.js +1 -2
  78. package/dist/components/VvSelect/VvSelect.vue.d.ts +75 -240
  79. package/dist/components/VvSelect/{VvSelect.d.ts → index.d.ts} +12 -5
  80. package/dist/components/VvTextarea/VvTextarea.es.js +372 -481
  81. package/dist/components/VvTextarea/VvTextarea.umd.js +1 -2
  82. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +103 -299
  83. package/dist/components/VvTextarea/{VvTextarea.d.ts → index.d.ts} +36 -13
  84. package/dist/components/common/HintSlot.d.ts +10 -4
  85. package/dist/components/index.d.ts +13 -6
  86. package/dist/components/index.es.js +2070 -895
  87. package/dist/components/index.umd.js +1 -2
  88. package/dist/composables/debouncedInput/useDebouncedInput.d.ts +2 -2
  89. package/dist/composables/focus/useComponentFocus.d.ts +3 -3
  90. package/dist/composables/group/types/IAccordionGroupState.d.ts +1 -3
  91. package/dist/composables/group/types/IGroupState.d.ts +2 -2
  92. package/dist/composables/group/useInjectedGroupState.d.ts +4 -4
  93. package/dist/composables/group/useProvideGroupState.d.ts +1 -1
  94. package/dist/composables/icons/useComponentIcons.d.ts +2 -2
  95. package/dist/composables/textLimit/useTextLimit.d.ts +0 -3
  96. package/dist/constants.d.ts +4 -4
  97. package/dist/icons.d.ts +1881 -0
  98. package/dist/icons.es.js +4 -6
  99. package/dist/icons.umd.js +1 -1
  100. package/dist/index.es.js +2113 -932
  101. package/dist/index.umd.js +1 -2
  102. package/dist/props/index.d.ts +9 -3
  103. package/dist/resolvers/unplugin.d.ts +27 -0
  104. package/dist/resolvers/unplugin.es.js +40 -0
  105. package/dist/resolvers/unplugin.umd.js +1 -0
  106. package/dist/stories/Accordion/Accordion.test.d.ts +4 -0
  107. package/dist/stories/Badge/Badge.test.d.ts +2 -0
  108. package/dist/stories/Breadcrumb/Breadcrumb.test.d.ts +2 -0
  109. package/dist/stories/Button/Button.test.d.ts +3 -8
  110. package/dist/stories/Card/Card.test.d.ts +3 -0
  111. package/dist/stories/Dialog/Dialog.test.d.ts +2 -0
  112. package/dist/stories/Dropdown/Dropdown.test.d.ts +2 -0
  113. package/dist/stories/Icon/IconList.vue.d.ts +1 -43
  114. package/dist/stories/InputText/InputText.test.d.ts +6 -0
  115. package/dist/stories/Radio/Radio.test.d.ts +3 -0
  116. package/dist/stories/RadioGroup/RadioGroup.test.d.ts +8 -0
  117. package/dist/stories/Select/Select.test.d.ts +3 -0
  118. package/dist/stories/Textarea/Textarea.test.d.ts +8 -0
  119. package/dist/stories/utils.d.ts +1 -3
  120. package/dist/test/sleep.d.ts +1 -0
  121. package/dist/utils/ObjectUtilities.d.ts +82 -95
  122. package/env.d.ts +1 -0
  123. package/package.json +102 -68
  124. package/src/Volver.ts +32 -3
  125. package/src/assets/icons/detailed.json +1 -1
  126. package/src/assets/icons/normal.json +1 -1
  127. package/src/assets/icons/simple.json +1 -1
  128. package/src/components/VvAccordion/VvAccordion.vue +80 -76
  129. package/src/components/VvAccordion/index.ts +69 -0
  130. package/src/components/VvAccordionGroup/VvAccordionGroup.vue +77 -41
  131. package/src/components/VvAccordionGroup/{VvAccordionGroup.ts → index.ts} +8 -12
  132. package/src/components/VvBadge/VvBadge.vue +14 -10
  133. package/src/components/VvBadge/{VvBadge.ts → index.ts} +0 -0
  134. package/src/components/VvBreadcrumb/VvBreadcrumb.vue +18 -19
  135. package/src/components/VvBreadcrumb/{VvBreadcrumb.ts → index.ts} +1 -1
  136. package/src/components/VvButton/VvButton.vue +123 -113
  137. package/src/components/VvButton/index.ts +147 -0
  138. package/src/components/VvButtonGroup/VvButtonGroup.vue +21 -17
  139. package/src/components/VvButtonGroup/{VvButtonGroup.ts → index.ts} +0 -0
  140. package/src/components/VvCard/VvCard.vue +20 -22
  141. package/src/components/VvCard/{VvCard.ts → index.ts} +0 -0
  142. package/src/components/VvCheckbox/VvCheckbox.vue +124 -0
  143. package/src/components/VvCheckbox/index.ts +94 -0
  144. package/src/components/{VvCheckGroup/VvCheckGroup.vue → VvCheckboxGroup/VvCheckboxGroup.vue} +49 -54
  145. package/src/components/{VvCheckGroup/VvCheckGroup.ts → VvCheckboxGroup/index.ts} +9 -9
  146. package/src/components/VvDialog/VvDialog.vue +47 -50
  147. package/src/components/VvDialog/index.ts +10 -0
  148. package/src/components/VvDropdown/VvDropdown.vue +61 -40
  149. package/src/components/VvDropdown/{VvDropdown.ts → index.ts} +8 -4
  150. package/src/components/VvIcon/VvIcon.vue +31 -25
  151. package/src/components/VvIcon/{VvIcon.ts → index.ts} +9 -0
  152. package/src/components/VvInputText/VvInputClearAction.ts +53 -0
  153. package/src/components/VvInputText/VvInputPasswordAction.ts +70 -0
  154. package/src/components/VvInputText/VvInputStepAction.ts +49 -0
  155. package/src/components/VvInputText/VvInputText.vue +168 -170
  156. package/src/components/VvInputText/VvInputTextActions.ts +54 -108
  157. package/src/components/VvInputText/index.ts +135 -0
  158. package/src/components/VvNativeSelect/VvNativeSelect.vue +130 -68
  159. package/src/components/VvNativeSelect/{VvNativeSelect.ts → index.ts} +26 -7
  160. package/src/components/VvProgress/VvProgress.vue +25 -26
  161. package/src/components/VvProgress/{VvProgress.ts → index.ts} +4 -7
  162. package/src/components/VvRadio/VvRadio.vue +81 -108
  163. package/src/components/VvRadio/index.ts +78 -0
  164. package/src/components/VvRadioGroup/VvRadioGroup.vue +45 -45
  165. package/src/components/VvRadioGroup/{VvRadioGroup.ts → index.ts} +1 -1
  166. package/src/components/VvSelect/VvSelect.vue +90 -69
  167. package/src/components/VvSelect/{VvSelect.ts → index.ts} +12 -5
  168. package/src/components/VvTextarea/VvTextarea.vue +121 -128
  169. package/src/components/VvTextarea/{VvTextarea.ts → index.ts} +31 -11
  170. package/src/components/common/HintSlot.ts +157 -136
  171. package/src/components/index.ts +13 -6
  172. package/src/composables/debouncedInput/useDebouncedInput.ts +21 -15
  173. package/src/composables/focus/useComponentFocus.ts +6 -8
  174. package/src/composables/group/types/IAccordionGroupState.ts +1 -3
  175. package/src/composables/group/types/IGroupState.ts +2 -2
  176. package/src/composables/group/useInjectedGroupState.ts +20 -30
  177. package/src/composables/group/useProvideGroupState.ts +1 -2
  178. package/src/composables/icons/useComponentIcons.ts +2 -3
  179. package/src/composables/options/useOptions.ts +3 -0
  180. package/src/composables/textLimit/useTextLimit.ts +1 -4
  181. package/src/composables/useModifiers.ts +13 -15
  182. package/src/constants.ts +5 -7
  183. package/src/directives/{.README → .gitkeep} +0 -0
  184. package/src/icons.ts +7 -0
  185. package/src/index.ts +0 -1
  186. package/src/props/index.ts +7 -1
  187. package/src/resolvers/unplugin.ts +103 -0
  188. package/src/shims.d.ts +11 -0
  189. package/src/stories/Accordion/Accordion.stories.mdx +10 -9
  190. package/src/stories/Accordion/Accordion.test.ts +37 -0
  191. package/src/stories/Accordion/AccordionSlots.stories.mdx +40 -25
  192. package/src/stories/AccordionGroup/AccordionGroup.stories.mdx +10 -16
  193. package/src/stories/AccordionGroup/{accordionGroupTest.js → AccordionGroup.test.js} +15 -17
  194. package/src/stories/AccordionGroup/AccordionGroupCollapse.stories.mdx +38 -0
  195. package/src/stories/AccordionGroup/{AccordionItems.stories.mdx → AccordionGroupItems.stories.mdx} +7 -13
  196. package/src/stories/Badge/Badge.stories.mdx +8 -8
  197. package/src/stories/Badge/Badge.test.ts +16 -0
  198. package/src/stories/Badge/BadgeColor.stories.mdx +6 -7
  199. package/src/stories/Badge/BadgeDot.stories.mdx +4 -3
  200. package/src/stories/Badge/BadgeModifiers.stories.mdx +7 -6
  201. package/src/stories/Breadcrumb/Breadcrumb.stories.mdx +15 -7
  202. package/src/stories/Breadcrumb/Breadcrumb.test.ts +49 -0
  203. package/src/stories/Breadcrumb/BreadcrumbMultiline.stories.mdx +15 -7
  204. package/src/stories/Button/Button.stories.mdx +16 -17
  205. package/src/stories/Button/Button.test.ts +8 -12
  206. package/src/stories/Button/ButtonActive.stories.mdx +2 -1
  207. package/src/stories/Button/ButtonBadge.stories.mdx +2 -2
  208. package/src/stories/Button/ButtonDisabled.stories.mdx +1 -1
  209. package/src/stories/Button/ButtonIcon.stories.mdx +6 -3
  210. package/src/stories/Button/ButtonIconPosition.stories.mdx +1 -1
  211. package/src/stories/Button/ButtonLink.stories.mdx +1 -19
  212. package/src/stories/Button/ButtonLoading.stories.mdx +4 -4
  213. package/src/stories/Button/ButtonModifiers.stories.mdx +1 -1
  214. package/src/stories/Button/ButtonPressed.stories.mdx +31 -0
  215. package/src/stories/Button/ButtonSlots.stories.mdx +1 -1
  216. package/src/stories/ButtonGroup/ButtonGroup.stories.mdx +5 -6
  217. package/src/stories/ButtonGroup/{ButtonGroupTest.js → ButtonGroup.test.js} +6 -28
  218. package/src/stories/ButtonGroup/ButtonGroupAction.stories.mdx +5 -6
  219. package/src/stories/ButtonGroup/ButtonGroupActionQuiet.stories.mdx +3 -4
  220. package/src/stories/ButtonGroup/ButtonGroupBlock.stories.mdx +3 -4
  221. package/src/stories/ButtonGroup/ButtonGroupCompact.stories.mdx +3 -4
  222. package/src/stories/ButtonGroup/ButtonGroupRounded.stories.mdx +3 -4
  223. package/src/stories/ButtonGroup/ButtonGroupToggle.stories.mdx +11 -12
  224. package/src/stories/ButtonGroup/ButtonGroupVertical.stories.mdx +3 -4
  225. package/src/stories/Card/Card.stories.mdx +7 -5
  226. package/src/stories/Card/Card.test.ts +26 -0
  227. package/src/stories/Card/CardSlots.stories.mdx +5 -5
  228. package/src/stories/Card/CardVariant.stories.mdx +5 -4
  229. package/src/stories/Checkbox/Checkbox.stories.mdx +51 -0
  230. package/src/stories/Checkbox/Checkbox.test.js +115 -0
  231. package/src/stories/Checkbox/CheckboxBinary.stories.mdx +76 -0
  232. package/src/stories/{Check/CheckDisabled.stories.mdx → Checkbox/CheckboxDisabled.stories.mdx} +7 -7
  233. package/src/stories/Checkbox/CheckboxError.stories.mdx +43 -0
  234. package/src/stories/Checkbox/CheckboxHintLabel.stories.mdx +35 -0
  235. package/src/stories/{Check/CheckReadonly.stories.mdx → Checkbox/CheckboxReadonly.stories.mdx} +6 -8
  236. package/src/stories/Checkbox/CheckboxSlots.stories.mdx +69 -0
  237. package/src/stories/{Check/CheckSwitch.stories.mdx → Checkbox/CheckboxSwitch.stories.mdx} +8 -8
  238. package/src/stories/CheckboxGroup/CheckboxGroup.stories.mdx +69 -0
  239. package/src/stories/CheckboxGroup/CheckboxGroupDisabled.stories.mdx +26 -0
  240. package/src/stories/CheckboxGroup/CheckboxGroupError.stories.mdx +28 -0
  241. package/src/stories/CheckboxGroup/CheckboxGroupHintLabel.stories.mdx +27 -0
  242. package/src/stories/CheckboxGroup/CheckboxGroupLabel.stories.mdx +26 -0
  243. package/src/stories/{CheckGroup/CheckGroupOptionLabel.stories.mdx → CheckboxGroup/CheckboxGroupOptionLabel.stories.mdx} +14 -11
  244. package/src/stories/{CheckGroup/CheckGroupOptionValue.stories.mdx → CheckboxGroup/CheckboxGroupOptionValue.stories.mdx} +13 -10
  245. package/src/stories/{CheckGroup/CheckGroupOptions.stories.mdx → CheckboxGroup/CheckboxGroupOptions.stories.mdx} +8 -8
  246. package/src/stories/CheckboxGroup/CheckboxGroupReadonly.stories.mdx +26 -0
  247. package/src/stories/CheckboxGroup/CheckboxGroupSlots.stories.mdx +152 -0
  248. package/src/stories/CheckboxGroup/CheckboxGroupValid.stories.mdx +28 -0
  249. package/src/stories/CheckboxGroup/CheckboxGroupVertical.stories.mdx +26 -0
  250. package/src/stories/Dialog/Dialog.stories.mdx +5 -5
  251. package/src/stories/Dialog/Dialog.test.ts +26 -0
  252. package/src/stories/Dialog/DialogAutoClose.stories.mdx +1 -1
  253. package/src/stories/Dialog/DialogSize.stories.mdx +1 -1
  254. package/src/stories/Dropdown/Dropdown.stories.mdx +11 -7
  255. package/src/stories/Dropdown/Dropdown.test.ts +80 -0
  256. package/src/stories/Dropdown/DropdownDisabled.stories.mdx +9 -2
  257. package/src/stories/Dropdown/DropdownLabelNoResults.stories.mdx +2 -2
  258. package/src/stories/Dropdown/DropdownMaxValues.stories.mdx +4 -2
  259. package/src/stories/Dropdown/DropdownMultiple.stories.mdx +4 -2
  260. package/src/stories/Dropdown/DropdownOptions.stories.mdx +4 -4
  261. package/src/stories/Dropdown/DropdownUseObject.stories.mdx +4 -2
  262. package/src/stories/Icon/Icon.stories.mdx +8 -8
  263. package/src/stories/Icon/{IconTest.js → Icon.test.js} +2 -5
  264. package/src/stories/Icon/IconList.vue +5 -6
  265. package/src/stories/Icon/IconPrefix.stories.mdx +2 -2
  266. package/src/stories/Icon/IconRemote.stories.mdx +2 -2
  267. package/src/stories/Icon/IconsList.stories.mdx +2 -18
  268. package/src/stories/InputText/InputText.stories.mdx +25 -19
  269. package/src/stories/InputText/InputText.test.ts +156 -0
  270. package/src/stories/InputText/InputTextAutocomplete.stories.mdx +9 -2
  271. package/src/stories/InputText/InputTextAutofocus.stories.mdx +6 -3
  272. package/src/stories/InputText/InputTextDisabled.stories.mdx +10 -2
  273. package/src/stories/InputText/InputTextError.stories.mdx +10 -2
  274. package/src/stories/InputText/InputTextFloating.stories.mdx +10 -3
  275. package/src/stories/InputText/InputTextHintLabel.stories.mdx +10 -2
  276. package/src/stories/InputText/InputTextIcon.stories.mdx +6 -2
  277. package/src/stories/InputText/InputTextIconPosition.stories.mdx +10 -3
  278. package/src/stories/InputText/InputTextLabel.stories.mdx +8 -2
  279. package/src/stories/InputText/InputTextLoading.stories.mdx +10 -2
  280. package/src/stories/InputText/InputTextMax.stories.mdx +10 -3
  281. package/src/stories/InputText/InputTextMaxLength.stories.mdx +22 -5
  282. package/src/stories/InputText/InputTextMin.stories.mdx +10 -3
  283. package/src/stories/InputText/InputTextMinLength.stories.mdx +9 -2
  284. package/src/stories/InputText/InputTextPlaceholder.stories.mdx +8 -2
  285. package/src/stories/InputText/InputTextReadonly.stories.mdx +6 -2
  286. package/src/stories/InputText/InputTextSlots.stories.mdx +4 -5
  287. package/src/stories/InputText/InputTextStep.stories.mdx +9 -3
  288. package/src/stories/InputText/InputTextType.stories.mdx +110 -13
  289. package/src/stories/InputText/InputTextValid.stories.mdx +10 -2
  290. package/src/stories/NativeSelect/NativeSelect.stories.mdx +15 -11
  291. package/src/stories/NativeSelect/NativeSelect.test.js +151 -0
  292. package/src/stories/NativeSelect/NativeSelectDisabled.stories.mdx +6 -7
  293. package/src/stories/NativeSelect/NativeSelectError.stories.mdx +7 -3
  294. package/src/stories/NativeSelect/NativeSelectHintLabel.stories.mdx +7 -3
  295. package/src/stories/NativeSelect/NativeSelectIconLeftRight.stories.mdx +14 -12
  296. package/src/stories/NativeSelect/NativeSelectLoading.stories.mdx +7 -3
  297. package/src/stories/NativeSelect/NativeSelectOptions.stories.mdx +44 -38
  298. package/src/stories/NativeSelect/NativeSelectReadonly.stories.mdx +19 -11
  299. package/src/stories/NativeSelect/NativeSelectUseObject.stories.mdx +26 -30
  300. package/src/stories/NativeSelect/NativeSelectValid.stories.mdx +7 -3
  301. package/src/stories/NativeSelect/NativeSelectValueKey.stories.mdx +30 -30
  302. package/src/stories/Progress/Progress.stories.mdx +8 -11
  303. package/src/stories/Progress/{ProgressTest.js → Progress.test.js} +4 -10
  304. package/src/stories/Progress/ProgressDeterminate.stories.mdx +3 -6
  305. package/src/stories/Radio/Radio.stories.mdx +11 -17
  306. package/src/stories/Radio/Radio.test.ts +52 -0
  307. package/src/stories/Radio/RadioDisabled.stories.mdx +4 -7
  308. package/src/stories/Radio/RadioError.stories.mdx +8 -28
  309. package/src/stories/Radio/RadioHintLabel.stories.mdx +6 -7
  310. package/src/stories/Radio/RadioSlots.stories.mdx +21 -7
  311. package/src/stories/RadioGroup/RadioGroup.stories.mdx +20 -27
  312. package/src/stories/RadioGroup/RadioGroup.test.ts +139 -0
  313. package/src/stories/RadioGroup/RadioGroupDisabled.stories.mdx +6 -8
  314. package/src/stories/RadioGroup/RadioGroupError.stories.mdx +9 -11
  315. package/src/stories/RadioGroup/RadioGroupHintLabel.stories.mdx +8 -10
  316. package/src/stories/RadioGroup/RadioGroupLabel.stories.mdx +6 -8
  317. package/src/stories/RadioGroup/RadioGroupOptionLabel.stories.mdx +11 -13
  318. package/src/stories/RadioGroup/RadioGroupOptionValue.stories.mdx +9 -11
  319. package/src/stories/RadioGroup/RadioGroupOptions.stories.mdx +7 -9
  320. package/src/stories/RadioGroup/RadioGroupReadonly.stories.mdx +6 -8
  321. package/src/stories/RadioGroup/RadioGroupSlots.stories.mdx +39 -62
  322. package/src/stories/RadioGroup/RadioGroupValid.stories.mdx +9 -11
  323. package/src/stories/RadioGroup/RadioGroupVertical.stories.mdx +6 -8
  324. package/src/stories/Select/Select.stories.mdx +32 -29
  325. package/src/stories/Select/Select.test.ts +104 -0
  326. package/src/stories/Select/SelectDisabled.stories.mdx +3 -3
  327. package/src/stories/Select/SelectMaxValues.stories.mdx +3 -3
  328. package/src/stories/Select/SelectMultiple.stories.mdx +5 -6
  329. package/src/stories/Select/SelectNative.stories.mdx +6 -8
  330. package/src/stories/Select/SelectOptions.stories.mdx +4 -4
  331. package/src/stories/Select/SelectSearchable.stories.mdx +13 -12
  332. package/src/stories/Select/SelectSeparator.stories.mdx +3 -3
  333. package/src/stories/Select/SelectUseObject.stories.mdx +3 -3
  334. package/src/stories/Textarea/Textarea.stories.mdx +6 -10
  335. package/src/stories/Textarea/Textarea.test.ts +204 -0
  336. package/src/stories/Textarea/TextareaAutoclear.stories.mdx +3 -2
  337. package/src/stories/Textarea/TextareaAutocomplete.stories.mdx +3 -2
  338. package/src/stories/Textarea/TextareaAutofocus.stories.mdx +3 -2
  339. package/src/stories/Textarea/TextareaDebounce.stories.mdx +7 -6
  340. package/src/stories/Textarea/TextareaDisabled.stories.mdx +9 -3
  341. package/src/stories/Textarea/TextareaError.stories.mdx +7 -2
  342. package/src/stories/Textarea/TextareaErrorLabel.stories.mdx +12 -2
  343. package/src/stories/Textarea/TextareaFloating.stories.mdx +7 -2
  344. package/src/stories/Textarea/TextareaHintLabel.stories.mdx +7 -2
  345. package/src/stories/Textarea/TextareaIcon.stories.mdx +3 -2
  346. package/src/stories/Textarea/TextareaIconPosition.stories.mdx +4 -2
  347. package/src/stories/Textarea/TextareaId.stories.mdx +3 -2
  348. package/src/stories/Textarea/TextareaLabel.stories.mdx +3 -2
  349. package/src/stories/Textarea/TextareaLimit.stories.mdx +5 -2
  350. package/src/stories/Textarea/TextareaLoading.stories.mdx +7 -2
  351. package/src/stories/Textarea/TextareaLoadingLabel.stories.mdx +9 -3
  352. package/src/stories/Textarea/TextareaMaxLength.stories.mdx +5 -4
  353. package/src/stories/Textarea/TextareaMinLength.stories.mdx +3 -2
  354. package/src/stories/Textarea/TextareaModifiers.stories.mdx +10 -2
  355. package/src/stories/Textarea/TextareaName.stories.mdx +3 -2
  356. package/src/stories/Textarea/TextareaPlaceholder.stories.mdx +4 -3
  357. package/src/stories/Textarea/TextareaReadonly.stories.mdx +8 -3
  358. package/src/stories/Textarea/TextareaRequired.stories.mdx +3 -2
  359. package/src/stories/Textarea/TextareaResizable.stories.mdx +7 -2
  360. package/src/stories/Textarea/TextareaRowsCols.stories.mdx +4 -2
  361. package/src/stories/Textarea/TextareaSlots.stories.mdx +7 -8
  362. package/src/stories/Textarea/TextareaValid.stories.mdx +7 -1
  363. package/src/stories/Textarea/TextareaValidLabel.stories.mdx +14 -4
  364. package/src/stories/utils.ts +1 -1
  365. package/src/stories/volver-ui-vue.stories.mdx +1 -1
  366. package/src/test/expect.ts +3 -1
  367. package/src/test/sleep.ts +2 -0
  368. package/src/test/types.d.ts +14 -1
  369. package/src/types/{.README → .gitkeep} +0 -0
  370. package/src/utils/ObjectUtilities.ts +247 -241
  371. package/dist/components/VvAccordion/VvAccordion.d.ts +0 -32
  372. package/dist/components/VvAccordion/useAccordionProps.d.ts +0 -16
  373. package/dist/components/VvButton/useButtonGroupProps.d.ts +0 -18
  374. package/dist/components/VvCheck/VvCheck.d.ts +0 -47
  375. package/dist/components/VvCheck/VvCheck.es.js +0 -318
  376. package/dist/components/VvCheck/VvCheck.umd.js +0 -1
  377. package/dist/components/VvCheck/VvCheck.vue.d.ts +0 -165
  378. package/dist/components/VvCheck/useCheckProps.d.ts +0 -16
  379. package/dist/components/VvCheckGroup/VvCheckGroup.es.js +0 -451
  380. package/dist/components/VvCheckGroup/VvCheckGroup.umd.js +0 -2
  381. package/dist/components/VvCheckGroup/VvCheckGroup.vue.d.ts +0 -272
  382. package/dist/components/VvDialog/constants.d.ts +0 -5
  383. package/dist/components/VvInputText/VvInputText.d.ts +0 -73
  384. package/dist/components/VvInputText/constants.d.ts +0 -55
  385. package/dist/components/VvRadio/VvRadio.d.ts +0 -22
  386. package/dist/components/VvRadio/useRadioProps.d.ts +0 -15
  387. package/dist/components/VvTextarea/constants.d.ts +0 -19
  388. package/dist/stories/RadioGroup/RadioOption.test.d.ts +0 -4
  389. package/dist/stories/RadioGroup/RadioProperty.test.d.ts +0 -12
  390. package/dist/stories/RadioGroup/RadioSlots.test.d.ts +0 -6
  391. package/src/assets/icons/index.js +0 -7
  392. package/src/components/VvAccordion/VvAccordion.ts +0 -34
  393. package/src/components/VvAccordion/useAccordionProps.ts +0 -45
  394. package/src/components/VvButton/VvButton.ts +0 -87
  395. package/src/components/VvButton/useButtonGroupProps.ts +0 -43
  396. package/src/components/VvCheck/VvCheck.ts +0 -48
  397. package/src/components/VvCheck/VvCheck.vue +0 -147
  398. package/src/components/VvCheck/useCheckProps.ts +0 -41
  399. package/src/components/VvDialog/VvDialog.ts +0 -17
  400. package/src/components/VvDialog/constants.ts +0 -5
  401. package/src/components/VvInputText/VvInputText.ts +0 -66
  402. package/src/components/VvInputText/constants.ts +0 -34
  403. package/src/components/VvRadio/VvRadio.ts +0 -25
  404. package/src/components/VvRadio/useRadioProps.ts +0 -40
  405. package/src/components/VvTextarea/constants.ts +0 -14
  406. package/src/stories/Accordion/AccordionBordered.stories.mdx +0 -26
  407. package/src/stories/Accordion/AccordionIconRight.stories.mdx +0 -32
  408. package/src/stories/Accordion/accordionTest.js +0 -36
  409. package/src/stories/AccordionGroup/Accordion.stories.mdx +0 -42
  410. package/src/stories/Badge/BadgeTest.js +0 -21
  411. package/src/stories/Button/ButtonSelected.stories.mdx +0 -30
  412. package/src/stories/Check/Check.stories.mdx +0 -62
  413. package/src/stories/Check/CheckBinary.stories.mdx +0 -75
  414. package/src/stories/Check/CheckError.stories.mdx +0 -64
  415. package/src/stories/Check/CheckErrorTests.js +0 -74
  416. package/src/stories/Check/CheckHintLabel.stories.mdx +0 -30
  417. package/src/stories/Check/CheckPropertyTest.js +0 -102
  418. package/src/stories/Check/CheckSlots.stories.mdx +0 -51
  419. package/src/stories/CheckGroup/CheckGroup.stories.mdx +0 -69
  420. package/src/stories/CheckGroup/CheckGroupDisabled.stories.mdx +0 -26
  421. package/src/stories/CheckGroup/CheckGroupError.stories.mdx +0 -28
  422. package/src/stories/CheckGroup/CheckGroupHintLabel.stories.mdx +0 -27
  423. package/src/stories/CheckGroup/CheckGroupLabel.stories.mdx +0 -26
  424. package/src/stories/CheckGroup/CheckGroupReadonly.stories.mdx +0 -26
  425. package/src/stories/CheckGroup/CheckGroupSlots.stories.mdx +0 -152
  426. package/src/stories/CheckGroup/CheckGroupValid.stories.mdx +0 -28
  427. package/src/stories/CheckGroup/CheckGroupVertical.stories.mdx +0 -26
  428. package/src/stories/RadioGroup/RadioOption.test.ts +0 -45
  429. package/src/stories/RadioGroup/RadioProperty.test.ts +0 -87
  430. package/src/stories/RadioGroup/RadioSlots.test.ts +0 -29
  431. package/src/stories/stories.scss +0 -13
@@ -1,22 +1,7 @@
1
- import { computed as p, unref as u, defineComponent as k, ref as C, toRefs as b, inject as B, openBlock as h, createBlock as D, mergeProps as w, createCommentVNode as A, Transition as I, toHandlers as j, withCtx as q, withDirectives as x, createElementVNode as m, createElementBlock as $, renderSlot as S, createTextVNode as F, toDisplayString as V, withModifiers as N, createVNode as P, vShow as L } from "vue";
2
- import { useVModel as M, onClickOutside as T } from "@vueuse/core";
3
- import { iconExists as _, Icon as z, addIcon as R } from "@iconify/vue";
4
- const y = {
5
- normal: "",
6
- small: "small",
7
- fullscreen: "fullscreen"
8
- }, Z = ["open", "close", "update:open"], H = {
9
- id: { type: String, required: !0 },
10
- title: String,
11
- open: Boolean,
12
- transition: { type: String, default: "fade-block" },
13
- size: {
14
- type: String,
15
- default: y.normal,
16
- validator: (e) => Object.values(y).includes(e)
17
- },
18
- autoClose: { type: Boolean, default: !0 }
19
- }, W = "ds", G = {
1
+ import { computed as f, unref as a, defineComponent as V, ref as S, toRefs as B, inject as A, openBlock as h, createBlock as k, mergeProps as w, createCommentVNode as y, Transition as N, toHandlers as P, withCtx as E, withDirectives as I, createElementVNode as g, createElementBlock as C, renderSlot as $, createTextVNode as M, toDisplayString as O, withModifiers as z, createVNode as F, vShow as q } from "vue";
2
+ import { useVModel as x, onClickOutside as L } from "@vueuse/core";
3
+ import { iconExists as m, Icon as T, addIcon as Z } from "@iconify/vue";
4
+ const j = "ds", H = {
20
5
  color: String,
21
6
  width: {
22
7
  type: [String, Number]
@@ -47,263 +32,156 @@ const y = {
47
32
  modifiers: {
48
33
  type: [String, Array]
49
34
  }
50
- }, O = {
51
- equals(e, t, r) {
52
- return r ? this.resolveFieldData(e, r) === this.resolveFieldData(t, r) : this.deepEquals(e, t);
53
- },
54
- deepEquals(e, t) {
55
- if (e === t)
56
- return !0;
57
- if (e && t && typeof e == "object" && typeof t == "object") {
58
- const r = Array.isArray(e), o = Array.isArray(t);
59
- let n, l, a;
60
- if (r && o) {
61
- if (l = e.length, l != t.length)
62
- return !1;
63
- for (n = l; n-- !== 0; )
64
- if (!this.deepEquals(e[n], t[n]))
65
- return !1;
66
- return !0;
67
- }
68
- if (r != o)
69
- return !1;
70
- const c = e instanceof Date, d = t instanceof Date;
71
- if (c != d)
72
- return !1;
73
- if (c && d)
74
- return e.getTime() == t.getTime();
75
- const f = e instanceof RegExp, i = t instanceof RegExp;
76
- if (f != i)
77
- return !1;
78
- if (f && i)
79
- return e.toString() == t.toString();
80
- const s = Object.keys(e);
81
- if (l = s.length, l !== Object.keys(t).length)
82
- return !1;
83
- for (n = l; n-- !== 0; )
84
- if (!Object.prototype.hasOwnProperty.call(t, s[n]))
85
- return !1;
86
- for (n = l; n-- !== 0; )
87
- if (a = s[n], !this.deepEquals(e[a], t[a]))
88
- return !1;
89
- return !0;
90
- }
91
- return e !== e && t !== t;
92
- },
93
- resolveFieldData(e, t) {
94
- if (e && Object.keys(e).length && t) {
95
- if (t.indexOf(".") === -1)
96
- return e[t];
97
- {
98
- const r = t.split(".");
99
- let o = e;
100
- for (let n = 0, l = r.length; n < l; ++n) {
101
- if (e == null)
102
- return null;
103
- o = o[r[n]];
104
- }
105
- return o;
106
- }
107
- } else
108
- return null;
109
- },
110
- isFunction(e) {
111
- return !!(e && e.constructor && e.call && e.apply);
112
- },
113
- findIndexInList(e, t) {
114
- let r = -1;
115
- if (t) {
116
- for (let o = 0; o < t.length; o++)
117
- if (this.equals(t[o], e)) {
118
- r = o;
119
- break;
120
- }
121
- }
122
- return r;
123
- },
124
- contains(e, t) {
125
- if (e != null && t && t.length) {
126
- for (const r of t)
127
- if (this.equals(e, r))
128
- return !0;
129
- }
130
- return !1;
131
- },
132
- isEmpty(e) {
133
- return e == null || e === "" || Array.isArray(e) && e.length === 0 || !(e instanceof Date) && typeof e == "object" && Object.keys(e).length === 0;
134
- },
135
- isNotEmpty(e) {
136
- return !this.isEmpty(e);
137
- },
138
- pickBy(e, t) {
139
- return Object.fromEntries(
140
- Object.entries(e).filter(([r]) => t(r))
141
- );
142
- },
143
- removeFromList(e, t) {
144
- const r = this.findIndexInList(e, t);
145
- return r > -1 ? t.filter((o, n) => n !== r) : t;
146
- },
147
- isString(e) {
148
- return typeof e == "string" || e instanceof String;
149
- },
150
- propsToObject(e) {
151
- return Object.keys(e).reduce((t, r) => {
152
- var o, n, l, a, c;
153
- return this.isFunction(e[r]) ? t[r] = e[r]() : Array.isArray(e[r]) ? t[r] = e[r][0]() : (o = e[r]) != null && o.type && (Array.isArray(e[r].type) ? t[r] = ((n = e[r]) == null ? void 0 : n.default) || ((l = e[r]) == null ? void 0 : l.type[0]()) : t[r] = ((a = e[r]) == null ? void 0 : a.default) || ((c = e[r]) == null ? void 0 : c.type())), t;
154
- }, {});
155
- },
156
- filterArray(e, t, r) {
157
- return e.filter((o) => t.some((n) => typeof n == "string" ? o[r] == n : this.equals(
158
- o[r],
159
- n[r]
160
- )));
161
- },
162
- kebabCase(e) {
163
- var t, r;
164
- if (e)
165
- return (r = (t = e.match(
166
- /[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g
167
- )) == null ? void 0 : t.join("-")) == null ? void 0 : r.toLowerCase();
168
- }
169
35
  };
170
- function J(e, t) {
171
- const r = { [`${e}`]: !0 };
36
+ function b(i) {
37
+ var o, n;
38
+ if (i)
39
+ return (n = (o = i.match(
40
+ /[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g
41
+ )) == null ? void 0 : o.join("-")) == null ? void 0 : n.toLowerCase();
42
+ }
43
+ function R(i, o) {
44
+ const n = { [`${i}`]: !0 };
172
45
  return {
173
- bemCssClasses: p(() => Object.keys(t).reduce((n, l) => {
174
- const a = u(t[l]) || !1;
175
- if (!a)
176
- return n;
46
+ bemCssClasses: f(() => Object.keys(o).reduce((r, l) => {
47
+ const s = a(o[l]) || !1;
48
+ if (!s)
49
+ return r;
177
50
  if (l === "modifiers") {
178
- const c = Array.isArray(a) ? a : [a];
51
+ const p = Array.isArray(s) ? s : s.split(" ");
179
52
  return {
180
- ...n,
181
- ...c.reduce(
182
- (d, f) => ({
183
- ...d,
184
- [`${e}--${O.kebabCase(
185
- f
186
- )}`]: !0
53
+ ...r,
54
+ ...p.reduce(
55
+ (v, u) => ({
56
+ ...v,
57
+ [`${i}--${b(u)}`]: !0
187
58
  }),
188
59
  {}
189
60
  )
190
61
  };
191
62
  } else
192
63
  return {
193
- ...n,
194
- [`${e}--${O.kebabCase(l)}`]: a
64
+ ...r,
65
+ [`${i}--${b(l)}`]: s
195
66
  };
196
- }, r) || {})
67
+ }, n) || {})
197
68
  };
198
69
  }
199
- const U = /* @__PURE__ */ k({
200
- __name: "VvIcon",
201
- props: G,
202
- setup(e) {
203
- const t = e, r = C(!0), { modifiers: o } = b(t), n = B(W), { bemCssClasses: l } = J("vv-icon", {
204
- modifiers: o
205
- }), a = p(() => t.provider || (n == null ? void 0 : n.provider)), c = p(() => {
206
- const i = t.name || "", s = `@${a.value}:${t.prefix}:${t.name}`;
207
- return _(i) ? i : _(s) ? s : (n == null ? void 0 : n.iconsCollections.find((g) => {
208
- const v = `@${a.value}:${g.prefix}:${i}`;
209
- if (_(v))
210
- return v;
211
- })) || i;
70
+ const W = {
71
+ name: "VvIcon"
72
+ }, J = /* @__PURE__ */ V({
73
+ ...W,
74
+ props: H,
75
+ setup(i) {
76
+ const o = i, n = S(!0), { modifiers: c } = B(o), r = A(j), { bemCssClasses: l } = R("vv-icon", {
77
+ modifiers: c
78
+ }), s = f(() => o.provider || (r == null ? void 0 : r.provider)), p = f(() => {
79
+ const t = o.name || "", e = `@${s.value}:${o.prefix}:${o.name}`;
80
+ return m(t) ? t : m(e) ? e : (r == null ? void 0 : r.iconsCollections.find((d) => {
81
+ const _ = `@${s.value}:${d.prefix}:${t}`;
82
+ if (m(_))
83
+ return _;
84
+ })) || t;
212
85
  });
213
- function d(i) {
214
- let s = null;
86
+ function v(t) {
87
+ let e = null;
215
88
  if (typeof window > "u") {
216
- const { JSDOM: E } = require("jsdom");
217
- s = new E().window;
89
+ const { JSDOM: D } = require("jsdom");
90
+ e = new D().window;
218
91
  }
219
- return (s ? new s.DOMParser() : new window.DOMParser()).parseFromString(i, "text/html").querySelector("svg");
92
+ return (e ? new e.DOMParser() : new window.DOMParser()).parseFromString(t, "text/html").querySelector("svg");
220
93
  }
221
- function f(i) {
222
- const s = d(i), g = (s == null ? void 0 : s.innerHTML.trim()) || "";
223
- s && g && R(`@${a.value}:${t.prefix}:${t.name}`, {
224
- body: g,
225
- height: s.viewBox.baseVal.height,
226
- width: s.viewBox.baseVal.width
94
+ function u(t) {
95
+ const e = v(t), d = (e == null ? void 0 : e.innerHTML.trim()) || "";
96
+ e && d && Z(`@${s.value}:${o.prefix}:${o.name}`, {
97
+ body: d,
98
+ height: e.viewBox.baseVal.height,
99
+ width: e.viewBox.baseVal.width
227
100
  });
228
101
  }
229
- return n && (t.src ? (r.value = !1, n.fetchIcon(t.src).then((i) => {
230
- i && (f(i), r.value = !0);
231
- }).catch((i) => {
232
- throw new Error(`During fetch icon: ${i == null ? void 0 : i.message}`);
233
- })) : t.svg && f(t.svg)), (i, s) => r.value ? (h(), D(u(z), w({
102
+ return r && (o.src && !m(`@${s.value}:${o.prefix}:${o.name}`) ? (n.value = !1, r.fetchIcon(o.src).then((t) => {
103
+ t && (u(t), n.value = !0);
104
+ }).catch((t) => {
105
+ throw new Error(`During fetch icon: ${t == null ? void 0 : t.message}`);
106
+ })) : o.svg && u(o.svg)), (t, e) => n.value ? (h(), k(a(T), w({
234
107
  key: 0,
235
- class: u(l)
108
+ class: a(l)
236
109
  }, {
237
- ...i.$props,
238
- provider: u(a),
239
- icon: u(c)
240
- }), null, 16, ["class"])) : A("", !0);
110
+ ...t.$props,
111
+ provider: a(s),
112
+ icon: a(p)
113
+ }), null, 16, ["class"])) : y("", !0);
241
114
  }
242
- }), X = {
115
+ }), X = ["open", "close", "update:modelValue"], G = {
116
+ id: { type: String, required: !0 },
117
+ title: String,
118
+ modelValue: Boolean,
119
+ transition: { type: String, default: "fade-block" },
120
+ size: String,
121
+ autoClose: { type: Boolean, default: !0 }
122
+ }, K = {
243
123
  key: 0,
244
124
  class: "vv-dialog__header"
245
- }, K = ["onClick"], Q = { class: "vv-dialog__content" }, Y = {
125
+ }, Q = ["onClick"], U = { class: "vv-dialog__content" }, Y = {
246
126
  key: 1,
247
127
  class: "vv-dialog__footer"
248
- }, se = /* @__PURE__ */ k({
249
- __name: "VvDialog",
250
- props: H,
251
- emits: Z,
252
- setup(e, { emit: t }) {
253
- const r = e, o = M(r, "open", t), n = C(!0), l = C(null), a = p(() => {
254
- const { id: s } = r;
128
+ }, ee = {
129
+ name: "VvDialog"
130
+ }, se = /* @__PURE__ */ V({
131
+ ...ee,
132
+ props: G,
133
+ emits: X,
134
+ setup(i, { emit: o }) {
135
+ const n = i, c = x(n, "modelValue", o), r = S(!0), l = S(null), s = f(() => {
136
+ const { id: e } = n;
255
137
  return {
256
- id: s,
257
- open: n.value
138
+ id: e,
139
+ open: r.value
258
140
  };
259
- }), c = p(() => ({
260
- "vv-dialog": !0,
261
- "vv-dialog--small": r.size === y.small,
262
- "vv-dialog--fullscreen": r.size === y.fullscreen
263
- })), d = p(() => `vv-dialog--${r.transition}`), f = {
264
- "after-enter": () => {
265
- n.value = !0, t("open");
141
+ }), p = f(() => n.size ? ["vv-dialog", `vv-dialog--${n.size}`] : "vv-dialog"), v = f(() => `vv-dialog--${n.transition}`), u = {
142
+ "before-enter": () => {
143
+ r.value = !0, o("open");
266
144
  },
267
145
  "after-leave": () => {
268
- n.value = !1, t("close");
146
+ r.value = !1, o("close");
269
147
  }
270
148
  };
271
- T(l, () => {
272
- r.autoClose && (o.value = !1);
149
+ L(l, () => {
150
+ n.autoClose && (c.value = !1);
273
151
  });
274
- function i() {
275
- o.value = !1;
152
+ function t() {
153
+ c.value = !1;
276
154
  }
277
- return (s, g) => (h(), D(I, w({ name: u(d) }, j(f)), {
278
- default: q(() => [
279
- x(m("dialog", w(u(a), { class: u(c) }), [
280
- m("article", {
155
+ return (e, d) => (h(), k(N, w({ name: a(v) }, P(u)), {
156
+ default: E(() => [
157
+ I(g("dialog", w(a(s), { class: a(p) }), [
158
+ g("article", {
281
159
  ref_key: "modalWrapper",
282
160
  ref: l,
283
161
  class: "vv-dialog__wrapper"
284
162
  }, [
285
- s.$slots.header || s.title ? (h(), $("header", X, [
286
- S(s.$slots, "header", {}, () => [
287
- F(V(s.title) + " ", 1),
288
- m("button", {
163
+ e.$slots.header || e.title ? (h(), C("header", K, [
164
+ $(e.$slots, "header", {}, () => [
165
+ M(O(e.title) + " ", 1),
166
+ g("button", {
289
167
  type: "button",
290
168
  "aria-label": "Close",
291
169
  class: "vv-dialog__close",
292
- onClick: N(i, ["prevent"])
170
+ onClick: z(t, ["prevent"])
293
171
  }, [
294
- P(U, { name: "close" })
295
- ], 8, K)
172
+ F(J, { name: "close" })
173
+ ], 8, Q)
296
174
  ])
297
- ])) : A("", !0),
298
- m("div", Q, [
299
- S(s.$slots, "default")
175
+ ])) : y("", !0),
176
+ g("div", U, [
177
+ $(e.$slots, "default")
300
178
  ]),
301
- s.$slots.footer ? (h(), $("footer", Y, [
302
- S(s.$slots, "footer")
303
- ])) : A("", !0)
179
+ e.$slots.footer ? (h(), C("footer", Y, [
180
+ $(e.$slots, "footer")
181
+ ])) : y("", !0)
304
182
  ], 512)
305
183
  ], 16), [
306
- [L, u(o)]
184
+ [q, a(c)]
307
185
  ])
308
186
  ]),
309
187
  _: 3
@@ -1 +1 @@
1
- (function(r,m){typeof exports=="object"&&typeof module<"u"?module.exports=m(require("vue"),require("@vueuse/core"),require("@iconify/vue")):typeof define=="function"&&define.amd?define(["vue","@vueuse/core","@iconify/vue"],m):(r=typeof globalThis<"u"?globalThis:r||self,r.VvDialog=m(r.vue,r.core,r.vue$1))})(this,function(r,m,g){"use strict";const h={normal:"",small:"small",fullscreen:"fullscreen"},_=["open","close","update:open"],C={id:{type:String,required:!0},title:String,open:Boolean,transition:{type:String,default:"fade-block"},size:{type:String,default:h.normal,validator:e=>Object.values(h).includes(e)},autoClose:{type:Boolean,default:!0}},E="ds",k={color:String,width:{type:[String,Number]},height:{type:[String,Number]},name:{type:String,required:!0},provider:{type:String},prefix:{type:String,default:"normal"},src:String,horizontalFlip:Boolean,verticalFlip:Boolean,flip:String,mode:String,inline:Boolean,rotate:[Number,String],onLoad:Function,svg:String,modifiers:{type:[String,Array]}},S={equals(e,t,n){return n?this.resolveFieldData(e,n)===this.resolveFieldData(t,n):this.deepEquals(e,t)},deepEquals(e,t){if(e===t)return!0;if(e&&t&&typeof e=="object"&&typeof t=="object"){const n=Array.isArray(e),i=Array.isArray(t);let o,c,a;if(n&&i){if(c=e.length,c!=t.length)return!1;for(o=c;o--!==0;)if(!this.deepEquals(e[o],t[o]))return!1;return!0}if(n!=i)return!1;const f=e instanceof Date,u=t instanceof Date;if(f!=u)return!1;if(f&&u)return e.getTime()==t.getTime();const d=e instanceof RegExp,l=t instanceof RegExp;if(d!=l)return!1;if(d&&l)return e.toString()==t.toString();const s=Object.keys(e);if(c=s.length,c!==Object.keys(t).length)return!1;for(o=c;o--!==0;)if(!Object.prototype.hasOwnProperty.call(t,s[o]))return!1;for(o=c;o--!==0;)if(a=s[o],!this.deepEquals(e[a],t[a]))return!1;return!0}return e!==e&&t!==t},resolveFieldData(e,t){if(e&&Object.keys(e).length&&t){if(t.indexOf(".")===-1)return e[t];{const n=t.split(".");let i=e;for(let o=0,c=n.length;o<c;++o){if(e==null)return null;i=i[n[o]]}return i}}else return null},isFunction(e){return!!(e&&e.constructor&&e.call&&e.apply)},findIndexInList(e,t){let n=-1;if(t){for(let i=0;i<t.length;i++)if(this.equals(t[i],e)){n=i;break}}return n},contains(e,t){if(e!=null&&t&&t.length){for(const n of t)if(this.equals(e,n))return!0}return!1},isEmpty(e){return e==null||e===""||Array.isArray(e)&&e.length===0||!(e instanceof Date)&&typeof e=="object"&&Object.keys(e).length===0},isNotEmpty(e){return!this.isEmpty(e)},pickBy(e,t){return Object.fromEntries(Object.entries(e).filter(([n])=>t(n)))},removeFromList(e,t){const n=this.findIndexInList(e,t);return n>-1?t.filter((i,o)=>o!==n):t},isString(e){return typeof e=="string"||e instanceof String},propsToObject(e){return Object.keys(e).reduce((t,n)=>{var i,o,c,a,f;return this.isFunction(e[n])?t[n]=e[n]():Array.isArray(e[n])?t[n]=e[n][0]():(i=e[n])!=null&&i.type&&(Array.isArray(e[n].type)?t[n]=((o=e[n])==null?void 0:o.default)||((c=e[n])==null?void 0:c.type[0]()):t[n]=((a=e[n])==null?void 0:a.default)||((f=e[n])==null?void 0:f.type())),t},{})},filterArray(e,t,n){return e.filter(i=>t.some(o=>typeof o=="string"?i[n]==o:this.equals(i[n],o[n])))},kebabCase(e){var t,n;if(e)return(n=(t=e.match(/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g))==null?void 0:t.join("-"))==null?void 0:n.toLowerCase()}};function w(e,t){const n={[`${e}`]:!0};return{bemCssClasses:r.computed(()=>Object.keys(t).reduce((o,c)=>{const a=r.unref(t[c])||!1;if(!a)return o;if(c==="modifiers"){const f=Array.isArray(a)?a:[a];return{...o,...f.reduce((u,d)=>({...u,[`${e}--${S.kebabCase(d)}`]:!0}),{})}}else return{...o,[`${e}--${S.kebabCase(c)}`]:a}},n)||{})}}const A=r.defineComponent({__name:"VvIcon",props:k,setup(e){const t=e,n=r.ref(!0),{modifiers:i}=r.toRefs(t),o=r.inject(E),{bemCssClasses:c}=w("vv-icon",{modifiers:i}),a=r.computed(()=>t.provider||(o==null?void 0:o.provider)),f=r.computed(()=>{const l=t.name||"",s=`@${a.value}:${t.prefix}:${t.name}`;return g.iconExists(l)?l:g.iconExists(s)?s:(o==null?void 0:o.iconsCollections.find(p=>{const y=`@${a.value}:${p.prefix}:${l}`;if(g.iconExists(y))return y}))||l});function u(l){let s=null;if(typeof window>"u"){const{JSDOM:V}=require("jsdom");s=new V().window}return(s?new s.DOMParser:new window.DOMParser).parseFromString(l,"text/html").querySelector("svg")}function d(l){const s=u(l),p=(s==null?void 0:s.innerHTML.trim())||"";s&&p&&g.addIcon(`@${a.value}:${t.prefix}:${t.name}`,{body:p,height:s.viewBox.baseVal.height,width:s.viewBox.baseVal.width})}return o&&(t.src?(n.value=!1,o.fetchIcon(t.src).then(l=>{l&&(d(l),n.value=!0)}).catch(l=>{throw new Error(`During fetch icon: ${l==null?void 0:l.message}`)})):t.svg&&d(t.svg)),(l,s)=>n.value?(r.openBlock(),r.createBlock(r.unref(g.Icon),r.mergeProps({key:0,class:r.unref(c)},{...l.$props,provider:r.unref(a),icon:r.unref(f)}),null,16,["class"])):r.createCommentVNode("",!0)}}),D={key:0,class:"vv-dialog__header"},O=["onClick"],B={class:"vv-dialog__content"},$={key:1,class:"vv-dialog__footer"};return r.defineComponent({__name:"VvDialog",props:C,emits:_,setup(e,{emit:t}){const n=e,i=m.useVModel(n,"open",t),o=r.ref(!0),c=r.ref(null),a=r.computed(()=>{const{id:s}=n;return{id:s,open:o.value}}),f=r.computed(()=>({"vv-dialog":!0,"vv-dialog--small":n.size===h.small,"vv-dialog--fullscreen":n.size===h.fullscreen})),u=r.computed(()=>`vv-dialog--${n.transition}`),d={"after-enter":()=>{o.value=!0,t("open")},"after-leave":()=>{o.value=!1,t("close")}};m.onClickOutside(c,()=>{n.autoClose&&(i.value=!1)});function l(){i.value=!1}return(s,p)=>(r.openBlock(),r.createBlock(r.Transition,r.mergeProps({name:r.unref(u)},r.toHandlers(d)),{default:r.withCtx(()=>[r.withDirectives(r.createElementVNode("dialog",r.mergeProps(r.unref(a),{class:r.unref(f)}),[r.createElementVNode("article",{ref_key:"modalWrapper",ref:c,class:"vv-dialog__wrapper"},[s.$slots.header||s.title?(r.openBlock(),r.createElementBlock("header",D,[r.renderSlot(s.$slots,"header",{},()=>[r.createTextVNode(r.toDisplayString(s.title)+" ",1),r.createElementVNode("button",{type:"button","aria-label":"Close",class:"vv-dialog__close",onClick:r.withModifiers(l,["prevent"])},[r.createVNode(A,{name:"close"})],8,O)])])):r.createCommentVNode("",!0),r.createElementVNode("div",B,[r.renderSlot(s.$slots,"default")]),s.$slots.footer?(r.openBlock(),r.createElementBlock("footer",$,[r.renderSlot(s.$slots,"footer")])):r.createCommentVNode("",!0)],512)],16),[[r.vShow,r.unref(i)]])]),_:3},16,["name"]))}})});
1
+ (function(e,c){typeof exports=="object"&&typeof module<"u"?module.exports=c(require("vue"),require("@vueuse/core"),require("@iconify/vue")):typeof define=="function"&&define.amd?define(["vue","@vueuse/core","@iconify/vue"],c):(e=typeof globalThis<"u"?globalThis:e||self,e.VvDialog=c(e.vue,e.core,e.vue$1))})(this,function(e,c,d){"use strict";const S="ds",y={color:String,width:{type:[String,Number]},height:{type:[String,Number]},name:{type:String,required:!0},provider:{type:String},prefix:{type:String,default:"normal"},src:String,horizontalFlip:Boolean,verticalFlip:Boolean,flip:String,mode:String,inline:Boolean,rotate:[Number,String],onLoad:Function,svg:String,modifiers:{type:[String,Array]}};function _(a){var t,s;if(a)return(s=(t=a.match(/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g))==null?void 0:t.join("-"))==null?void 0:s.toLowerCase()}function C(a,t){const s={[`${a}`]:!0};return{bemCssClasses:e.computed(()=>Object.keys(t).reduce((r,l)=>{const i=e.unref(t[l])||!1;if(!i)return r;if(l==="modifiers"){const u=Array.isArray(i)?i:i.split(" ");return{...r,...u.reduce((g,p)=>({...g,[`${a}--${_(p)}`]:!0}),{})}}else return{...r,[`${a}--${_(l)}`]:i}},s)||{})}}const $={name:"VvIcon"},w=e.defineComponent({...$,props:y,setup(a){const t=a,s=e.ref(!0),{modifiers:f}=e.toRefs(t),r=e.inject(S),{bemCssClasses:l}=C("vv-icon",{modifiers:f}),i=e.computed(()=>t.provider||(r==null?void 0:r.provider)),u=e.computed(()=>{const n=t.name||"",o=`@${i.value}:${t.prefix}:${t.name}`;return d.iconExists(n)?n:d.iconExists(o)?o:(r==null?void 0:r.iconsCollections.find(m=>{const h=`@${i.value}:${m.prefix}:${n}`;if(d.iconExists(h))return h}))||n});function g(n){let o=null;if(typeof window>"u"){const{JSDOM:v}=require("jsdom");o=new v().window}return(o?new o.DOMParser:new window.DOMParser).parseFromString(n,"text/html").querySelector("svg")}function p(n){const o=g(n),m=(o==null?void 0:o.innerHTML.trim())||"";o&&m&&d.addIcon(`@${i.value}:${t.prefix}:${t.name}`,{body:m,height:o.viewBox.baseVal.height,width:o.viewBox.baseVal.width})}return r&&(t.src&&!d.iconExists(`@${i.value}:${t.prefix}:${t.name}`)?(s.value=!1,r.fetchIcon(t.src).then(n=>{n&&(p(n),s.value=!0)}).catch(n=>{throw new Error(`During fetch icon: ${n==null?void 0:n.message}`)})):t.svg&&p(t.svg)),(n,o)=>s.value?(e.openBlock(),e.createBlock(e.unref(d.Icon),e.mergeProps({key:0,class:e.unref(l)},{...n.$props,provider:e.unref(i),icon:e.unref(u)}),null,16,["class"])):e.createCommentVNode("",!0)}}),V=["open","close","update:modelValue"],k={id:{type:String,required:!0},title:String,modelValue:Boolean,transition:{type:String,default:"fade-block"},size:String,autoClose:{type:Boolean,default:!0}},b={key:0,class:"vv-dialog__header"},B=["onClick"],E={class:"vv-dialog__content"},D={key:1,class:"vv-dialog__footer"},N={name:"VvDialog"};return e.defineComponent({...N,props:k,emits:V,setup(a,{emit:t}){const s=a,f=c.useVModel(s,"modelValue",t),r=e.ref(!0),l=e.ref(null),i=e.computed(()=>{const{id:o}=s;return{id:o,open:r.value}}),u=e.computed(()=>s.size?["vv-dialog",`vv-dialog--${s.size}`]:"vv-dialog"),g=e.computed(()=>`vv-dialog--${s.transition}`),p={"before-enter":()=>{r.value=!0,t("open")},"after-leave":()=>{r.value=!1,t("close")}};c.onClickOutside(l,()=>{s.autoClose&&(f.value=!1)});function n(){f.value=!1}return(o,m)=>(e.openBlock(),e.createBlock(e.Transition,e.mergeProps({name:e.unref(g)},e.toHandlers(p)),{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("dialog",e.mergeProps(e.unref(i),{class:e.unref(u)}),[e.createElementVNode("article",{ref_key:"modalWrapper",ref:l,class:"vv-dialog__wrapper"},[o.$slots.header||o.title?(e.openBlock(),e.createElementBlock("header",b,[e.renderSlot(o.$slots,"header",{},()=>[e.createTextVNode(e.toDisplayString(o.title)+" ",1),e.createElementVNode("button",{type:"button","aria-label":"Close",class:"vv-dialog__close",onClick:e.withModifiers(n,["prevent"])},[e.createVNode(w,{name:"close"})],8,B)])])):e.createCommentVNode("",!0),e.createElementVNode("div",E,[e.renderSlot(o.$slots,"default")]),o.$slots.footer?(e.openBlock(),e.createElementBlock("footer",D,[e.renderSlot(o.$slots,"footer")])):e.createCommentVNode("",!0)],512)],16),[[e.vShow,e.unref(f)]])]),_:3},16,["name"]))}})});
@@ -1,153 +1,49 @@
1
- declare const _default: {
2
- new (...args: any[]): {
3
- $: import("vue").ComponentInternalInstance;
4
- $data: {};
5
- $props: Partial<{
6
- open: boolean;
7
- transition: string;
8
- size: string;
9
- autoClose: boolean;
10
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
11
- id: {
12
- type: StringConstructor;
13
- required: boolean;
14
- };
15
- title: StringConstructor;
16
- open: BooleanConstructor;
17
- transition: {
18
- type: StringConstructor;
19
- default: string;
20
- };
21
- size: {
22
- type: StringConstructor;
23
- default: string;
24
- validator: (value: string) => boolean;
25
- };
26
- autoClose: {
27
- type: BooleanConstructor;
28
- default: boolean;
29
- };
30
- }>> & {
31
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
32
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "open" | "transition" | "size" | "autoClose">;
33
- $attrs: {
34
- [x: string]: unknown;
35
- };
36
- $refs: {
37
- [x: string]: unknown;
38
- };
39
- $slots: Readonly<{
40
- [name: string]: import("vue").Slot | undefined;
41
- }>;
42
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
43
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
44
- $emit: (event: string, ...args: any[]) => void;
45
- $el: any;
46
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
47
- id: {
48
- type: StringConstructor;
49
- required: boolean;
50
- };
51
- title: StringConstructor;
52
- open: BooleanConstructor;
53
- transition: {
54
- type: StringConstructor;
55
- default: string;
56
- };
57
- size: {
58
- type: StringConstructor;
59
- default: string;
60
- validator: (value: string) => boolean;
61
- };
62
- autoClose: {
63
- type: BooleanConstructor;
64
- default: boolean;
65
- };
66
- }>> & {
67
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
68
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, {
69
- open: boolean;
70
- transition: string;
71
- size: string;
72
- autoClose: boolean;
73
- }, {}, string> & {
74
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
75
- created?: ((() => void) | (() => void)[]) | undefined;
76
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
77
- mounted?: ((() => void) | (() => void)[]) | undefined;
78
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
79
- updated?: ((() => void) | (() => void)[]) | undefined;
80
- activated?: ((() => void) | (() => void)[]) | undefined;
81
- deactivated?: ((() => void) | (() => void)[]) | undefined;
82
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
83
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
84
- destroyed?: ((() => void) | (() => void)[]) | undefined;
85
- unmounted?: ((() => void) | (() => void)[]) | undefined;
86
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
87
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
88
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
89
- };
90
- $forceUpdate: () => void;
91
- $nextTick: typeof import("vue").nextTick;
92
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
93
- } & Readonly<import("vue").ExtractPropTypes<{
94
- id: {
95
- type: StringConstructor;
96
- required: boolean;
97
- };
98
- title: StringConstructor;
99
- open: BooleanConstructor;
100
- transition: {
101
- type: StringConstructor;
102
- default: string;
103
- };
104
- size: {
105
- type: StringConstructor;
106
- default: string;
107
- validator: (value: string) => boolean;
108
- };
109
- autoClose: {
110
- type: BooleanConstructor;
111
- default: boolean;
112
- };
113
- }>> & {
114
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
115
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
116
- __isFragment?: undefined;
117
- __isTeleport?: undefined;
118
- __isSuspense?: undefined;
119
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
120
2
  id: {
121
3
  type: StringConstructor;
122
4
  required: boolean;
123
5
  };
124
6
  title: StringConstructor;
125
- open: BooleanConstructor;
7
+ modelValue: BooleanConstructor;
126
8
  transition: {
127
9
  type: StringConstructor;
128
10
  default: string;
129
11
  };
130
- size: {
12
+ size: StringConstructor;
13
+ autoClose: {
14
+ type: BooleanConstructor;
15
+ default: boolean;
16
+ };
17
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
18
+ id: {
19
+ type: StringConstructor;
20
+ required: boolean;
21
+ };
22
+ title: StringConstructor;
23
+ modelValue: BooleanConstructor;
24
+ transition: {
131
25
  type: StringConstructor;
132
26
  default: string;
133
- validator: (value: string) => boolean;
134
27
  };
28
+ size: StringConstructor;
135
29
  autoClose: {
136
30
  type: BooleanConstructor;
137
31
  default: boolean;
138
32
  };
139
33
  }>> & {
140
34
  [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
141
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, {
142
- open: boolean;
35
+ }, {
36
+ modelValue: boolean;
143
37
  transition: string;
144
- size: string;
145
38
  autoClose: boolean;
146
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
147
- $slots: {
148
- header: (_: {}) => any;
149
- default: (_: {}) => any;
150
- footer: (_: {}) => any;
151
- };
152
- });
39
+ }>, {
40
+ header: (_: {}) => any;
41
+ default: (_: {}) => any;
42
+ footer: (_: {}) => any;
43
+ }>;
153
44
  export default _default;
45
+ type __VLS_WithTemplateSlots<T, S> = T & {
46
+ new (): {
47
+ $slots: S;
48
+ };
49
+ };
@@ -5,16 +5,12 @@ export declare const VvDialogProps: {
5
5
  required: boolean;
6
6
  };
7
7
  title: StringConstructor;
8
- open: BooleanConstructor;
8
+ modelValue: BooleanConstructor;
9
9
  transition: {
10
10
  type: StringConstructor;
11
11
  default: string;
12
12
  };
13
- size: {
14
- type: StringConstructor;
15
- default: string;
16
- validator: (value: string) => boolean;
17
- };
13
+ size: StringConstructor;
18
14
  autoClose: {
19
15
  type: BooleanConstructor;
20
16
  default: boolean;