@volverjs/ui-vue 0.0.1-beta.8 → 0.0.2

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 (561) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +108 -56
  3. package/bin/icons.cjs +73 -0
  4. package/bin/icons.js +75 -0
  5. package/dist/{DesignSystem.d.ts → Volver.d.ts} +22 -18
  6. package/dist/components/VvAccordion/VvAccordion.es.js +165 -0
  7. package/dist/components/VvAccordion/VvAccordion.umd.js +1 -0
  8. package/dist/components/VvAccordion/VvAccordion.vue.d.ts +32 -97
  9. package/dist/components/VvAccordion/index.d.ts +46 -0
  10. package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +243 -0
  11. package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -0
  12. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +77 -151
  13. package/dist/components/VvAccordionGroup/{VvAccordionGroup.d.ts → index.d.ts} +30 -13
  14. package/dist/components/VvBadge/VvBadge.es.js +62 -0
  15. package/dist/components/VvBadge/VvBadge.umd.js +1 -0
  16. package/dist/components/VvBadge/VvBadge.vue.d.ts +13 -54
  17. package/dist/components/VvBadge/{VvBadge.d.ts → index.d.ts} +1 -1
  18. package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +93 -0
  19. package/dist/components/VvBreadcrumb/VvBreadcrumb.umd.js +1 -0
  20. package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +33 -107
  21. package/dist/components/VvBreadcrumb/{VvBreadcrumb.d.ts → index.d.ts} +2 -3
  22. package/dist/components/VvButton/VvButton.es.js +439 -0
  23. package/dist/components/VvButton/VvButton.umd.js +1 -0
  24. package/dist/components/VvButton/VvButton.vue.d.ts +100 -199
  25. package/dist/components/VvButton/index.d.ts +132 -0
  26. package/dist/components/VvButtonGroup/VvButtonGroup.es.js +107 -0
  27. package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -0
  28. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +92 -186
  29. package/dist/components/VvButtonGroup/index.d.ts +54 -0
  30. package/dist/components/VvCard/VvCard.es.js +77 -0
  31. package/dist/components/VvCard/VvCard.umd.js +1 -0
  32. package/dist/components/VvCard/VvCard.vue.d.ts +16 -61
  33. package/dist/components/VvCard/{VvCard.d.ts → index.d.ts} +1 -1
  34. package/dist/components/VvCheckbox/VvCheckbox.es.js +357 -0
  35. package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -0
  36. package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +74 -0
  37. package/dist/components/VvCheckbox/index.d.ts +54 -0
  38. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +435 -0
  39. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -0
  40. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +82 -0
  41. package/dist/components/VvCheckboxGroup/index.d.ts +32 -0
  42. package/dist/components/VvCombobox/VvCombobox.es.js +775 -0
  43. package/dist/components/VvCombobox/VvCombobox.umd.js +1 -0
  44. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +175 -0
  45. package/dist/components/VvCombobox/index.d.ts +108 -0
  46. package/dist/components/VvDialog/VvDialog.es.js +200 -0
  47. package/dist/components/VvDialog/VvDialog.umd.js +1 -0
  48. package/dist/components/VvDialog/VvDialog.vue.d.ts +28 -132
  49. package/dist/components/VvDialog/{VvDialog.d.ts → index.d.ts} +2 -6
  50. package/dist/components/VvDropdown/VvDropdown.es.js +227 -0
  51. package/dist/components/VvDropdown/VvDropdown.umd.js +1 -0
  52. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +59 -146
  53. package/dist/components/VvDropdown/index.d.ts +49 -0
  54. package/dist/components/VvIcon/VvIcon.es.js +124 -0
  55. package/dist/components/VvIcon/VvIcon.umd.js +1 -0
  56. package/dist/components/VvIcon/VvIcon.vue.d.ts +36 -150
  57. package/dist/components/VvIcon/{VvIcon.d.ts → index.d.ts} +9 -0
  58. package/dist/components/VvInputText/VvInputClearAction.d.ts +36 -0
  59. package/dist/components/VvInputText/VvInputPasswordAction.d.ts +56 -0
  60. package/dist/components/VvInputText/VvInputStepAction.d.ts +37 -0
  61. package/dist/components/VvInputText/VvInputText.es.js +772 -0
  62. package/dist/components/VvInputText/VvInputText.umd.js +1 -0
  63. package/dist/components/VvInputText/VvInputText.vue.d.ts +211 -288
  64. package/dist/components/VvInputText/VvInputTextActions.d.ts +1 -1
  65. package/dist/components/VvInputText/index.d.ts +182 -0
  66. package/dist/components/VvProgress/VvProgress.es.js +71 -0
  67. package/dist/components/VvProgress/VvProgress.umd.js +1 -0
  68. package/dist/components/VvProgress/VvProgress.vue.d.ts +20 -107
  69. package/dist/components/VvProgress/index.d.ts +30 -0
  70. package/dist/components/VvRadio/VvRadio.es.js +320 -0
  71. package/dist/components/VvRadio/VvRadio.umd.js +1 -0
  72. package/dist/components/VvRadio/VvRadio.vue.d.ts +55 -125
  73. package/dist/components/VvRadio/index.d.ts +40 -0
  74. package/dist/components/VvRadioGroup/VvRadioGroup.es.js +398 -0
  75. package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -0
  76. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +56 -238
  77. package/dist/components/VvRadioGroup/index.d.ts +32 -0
  78. package/dist/components/VvSelect/VvSelect.es.js +434 -0
  79. package/dist/components/VvSelect/VvSelect.umd.js +1 -0
  80. package/dist/components/VvSelect/VvSelect.vue.d.ts +125 -263
  81. package/dist/components/VvSelect/index.d.ts +89 -0
  82. package/dist/components/VvTextarea/VvTextarea.es.js +471 -0
  83. package/dist/components/VvTextarea/VvTextarea.umd.js +1 -0
  84. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +140 -321
  85. package/dist/components/VvTextarea/index.d.ts +102 -0
  86. package/dist/components/common/HintSlot.d.ts +12 -6
  87. package/dist/components/index.d.ts +19 -12
  88. package/dist/components/index.es.js +2379 -0
  89. package/dist/components/index.umd.js +1 -0
  90. package/dist/composables/group/types/IAccordionGroupState.d.ts +3 -4
  91. package/dist/composables/group/types/IButtonGroupState.d.ts +5 -11
  92. package/dist/composables/group/types/IGroupState.d.ts +3 -6
  93. package/dist/composables/group/types/IInputGroup.d.ts +1 -4
  94. package/dist/composables/group/useInjectedGroupState.d.ts +4 -4
  95. package/dist/composables/group/useProvideGroupState.d.ts +2 -2
  96. package/dist/composables/useComponentFocus.d.ts +4 -0
  97. package/dist/composables/{icons/useComponentIcons.d.ts → useComponentIcons.d.ts} +3 -2
  98. package/dist/composables/useDebouncedInput.d.ts +2 -0
  99. package/dist/composables/useOptions.d.ts +6 -0
  100. package/dist/composables/useTextCount.d.ts +10 -0
  101. package/dist/constants.d.ts +4 -4
  102. package/dist/icons.d.ts +1881 -0
  103. package/dist/icons.es.js +12 -14
  104. package/dist/icons.umd.js +1 -1
  105. package/dist/index.d.ts +9 -4
  106. package/dist/index.es.js +2420 -0
  107. package/dist/index.umd.js +1 -0
  108. package/dist/props/index.d.ts +328 -30
  109. package/dist/resolvers/unplugin.d.ts +27 -0
  110. package/dist/resolvers/unplugin.es.js +42 -0
  111. package/dist/resolvers/unplugin.umd.js +1 -0
  112. package/dist/stories/Accordion/Accordion.settings.d.ts +63 -0
  113. package/dist/stories/Accordion/Accordion.test.d.ts +2 -0
  114. package/dist/stories/AccordionGroup/AccordionGroup.settings.d.ts +58 -0
  115. package/dist/stories/AccordionGroup/AccordionGroup.test.d.ts +2 -0
  116. package/dist/stories/Badge/Badge.settings.d.ts +32 -0
  117. package/dist/stories/Badge/Badge.test.d.ts +2 -0
  118. package/dist/stories/Breadcrumb/Breadcrumb.settings.d.ts +29 -0
  119. package/dist/stories/Breadcrumb/Breadcrumb.test.d.ts +2 -0
  120. package/dist/stories/Button/Button.settings.d.ts +198 -0
  121. package/dist/stories/Button/Button.test.d.ts +1 -10
  122. package/dist/stories/ButtonGroup/ButtonGroup.settings.d.ts +47 -0
  123. package/dist/stories/ButtonGroup/ButtonGroup.test.d.ts +2 -0
  124. package/dist/stories/Card/Card.settings.d.ts +70 -0
  125. package/dist/stories/Card/Card.test.d.ts +2 -0
  126. package/dist/stories/Checkbox/Checkbox.settings.d.ts +165 -0
  127. package/dist/stories/Checkbox/Checkbox.test.d.ts +2 -0
  128. package/dist/stories/CheckboxGroup/CheckboxGroup.settings.d.ts +164 -0
  129. package/dist/stories/CheckboxGroup/CheckboxGroup.test.d.ts +2 -0
  130. package/dist/stories/Combobox/Combobox.settings.d.ts +286 -0
  131. package/dist/stories/Combobox/Combobox.test.d.ts +2 -0
  132. package/dist/stories/Dialog/Dialog.settings.d.ts +55 -0
  133. package/dist/stories/Dialog/Dialog.test.d.ts +2 -0
  134. package/dist/stories/Dropdown/Dropdown.settings.d.ts +85 -0
  135. package/dist/stories/Dropdown/Dropdown.test.d.ts +2 -0
  136. package/dist/stories/Icon/Icon.settings.d.ts +74 -0
  137. package/dist/stories/InputText/InputText.settings.d.ts +445 -0
  138. package/dist/stories/InputText/InputText.test.d.ts +2 -0
  139. package/dist/stories/Progress/Progress.settings.d.ts +38 -0
  140. package/dist/stories/Progress/Progress.test.d.ts +2 -0
  141. package/dist/stories/Radio/Radio.settings.d.ts +139 -0
  142. package/dist/stories/Radio/Radio.test.d.ts +2 -0
  143. package/dist/stories/RadioGroup/RadioGroup.settings.d.ts +164 -0
  144. package/dist/stories/RadioGroup/RadioGroup.test.d.ts +2 -0
  145. package/dist/stories/Select/Select.settings.d.ts +284 -0
  146. package/dist/stories/Select/Select.test.d.ts +2 -0
  147. package/dist/stories/Textarea/Textarea.settings.d.ts +336 -0
  148. package/dist/stories/Textarea/Textarea.test.d.ts +2 -0
  149. package/dist/stories/argTypes.d.ts +842 -0
  150. package/dist/test/expect.d.ts +3 -0
  151. package/dist/test/options.d.ts +1 -0
  152. package/dist/test/sleep.d.ts +1 -0
  153. package/dist/utils/ObjectUtilities.d.ts +82 -95
  154. package/env.d.ts +1 -0
  155. package/package.json +199 -126
  156. package/src/{DesignSystem.ts → Volver.ts} +57 -29
  157. package/src/assets/icons/detailed.json +1 -1
  158. package/src/assets/icons/normal.json +1 -1
  159. package/src/assets/icons/simple.json +1 -1
  160. package/src/components/VvAccordion/VvAccordion.vue +94 -78
  161. package/src/components/VvAccordion/index.ts +72 -0
  162. package/src/components/VvAccordionGroup/VvAccordionGroup.vue +93 -53
  163. package/src/components/VvAccordionGroup/{VvAccordionGroup.ts → index.ts} +18 -14
  164. package/src/components/VvBadge/VvBadge.vue +17 -8
  165. package/src/components/VvBadge/index.ts +6 -0
  166. package/src/components/VvBreadcrumb/VvBreadcrumb.vue +26 -24
  167. package/src/components/VvBreadcrumb/{VvBreadcrumb.ts → index.ts} +1 -2
  168. package/src/components/VvButton/VvButton.vue +174 -153
  169. package/src/components/VvButton/index.ts +189 -0
  170. package/src/components/VvButtonGroup/VvButtonGroup.vue +76 -48
  171. package/src/components/VvButtonGroup/index.ts +16 -0
  172. package/src/components/VvCard/VvCard.vue +20 -22
  173. package/src/components/VvCard/{VvCard.ts → index.ts} +1 -1
  174. package/src/components/VvCheckbox/VvCheckbox.vue +172 -0
  175. package/src/components/VvCheckbox/index.ts +60 -0
  176. package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +85 -0
  177. package/src/components/VvCheckboxGroup/index.ts +5 -0
  178. package/src/components/VvCombobox/VvCombobox.vue +261 -0
  179. package/src/components/VvCombobox/index.ts +88 -0
  180. package/src/components/VvDialog/VvDialog.vue +69 -67
  181. package/src/components/VvDialog/index.ts +10 -0
  182. package/src/components/VvDropdown/VvDropdown.vue +115 -114
  183. package/src/components/VvDropdown/index.ts +35 -0
  184. package/src/components/VvIcon/README.md +64 -0
  185. package/src/components/VvIcon/VvIcon.vue +122 -107
  186. package/src/components/VvIcon/{VvIcon.ts → index.ts} +17 -8
  187. package/src/components/VvInputText/VvInputClearAction.ts +53 -0
  188. package/src/components/VvInputText/VvInputPasswordAction.ts +70 -0
  189. package/src/components/VvInputText/VvInputStepAction.ts +49 -0
  190. package/src/components/VvInputText/VvInputText.vue +307 -238
  191. package/src/components/VvInputText/VvInputTextActions.ts +63 -114
  192. package/src/components/VvInputText/index.ts +140 -0
  193. package/src/components/VvProgress/VvProgress.vue +29 -29
  194. package/src/components/VvProgress/index.ts +32 -0
  195. package/src/components/VvRadio/VvRadio.vue +90 -119
  196. package/src/components/VvRadio/index.ts +40 -0
  197. package/src/components/VvRadioGroup/VvRadioGroup.vue +76 -69
  198. package/src/components/VvRadioGroup/index.ts +5 -0
  199. package/src/components/VvSelect/VvSelect.vue +187 -186
  200. package/src/components/VvSelect/index.ts +71 -0
  201. package/src/components/VvTextarea/VvTextarea.vue +188 -174
  202. package/src/components/VvTextarea/index.ts +50 -0
  203. package/src/components/common/HintSlot.ts +167 -137
  204. package/src/components/index.ts +19 -12
  205. package/src/composables/group/types/IAccordionGroupState.ts +3 -4
  206. package/src/composables/group/types/IButtonGroupState.ts +5 -11
  207. package/src/composables/group/types/IGroupState.ts +4 -6
  208. package/src/composables/group/types/IInputGroup.ts +1 -4
  209. package/src/composables/group/useInjectedGroupState.ts +23 -35
  210. package/src/composables/group/useProvideGroupState.ts +5 -7
  211. package/src/composables/useComponentFocus.ts +17 -0
  212. package/src/composables/{icons/useComponentIcons.ts → useComponentIcons.ts} +29 -20
  213. package/src/composables/useDebouncedInput.ts +25 -0
  214. package/src/composables/useModifiers.ts +18 -20
  215. package/src/composables/useOptions.ts +31 -0
  216. package/src/composables/useTextCount.ts +57 -0
  217. package/src/constants.ts +5 -7
  218. package/src/directives/{.README → .gitkeep} +0 -0
  219. package/src/icons.ts +7 -0
  220. package/src/index.ts +12 -5
  221. package/src/props/index.ts +204 -36
  222. package/src/resolvers/unplugin.ts +112 -0
  223. package/src/shims.d.ts +13 -0
  224. package/src/stories/Accordion/Accordion.settings.ts +46 -0
  225. package/src/stories/Accordion/Accordion.stories.mdx +21 -21
  226. package/src/stories/Accordion/Accordion.test.ts +61 -0
  227. package/src/stories/Accordion/AccordionSlots.stories.mdx +46 -70
  228. package/src/stories/AccordionGroup/AccordionGroup.settings.ts +55 -0
  229. package/src/stories/AccordionGroup/AccordionGroup.stories.mdx +24 -27
  230. package/src/stories/AccordionGroup/AccordionGroup.test.ts +50 -0
  231. package/src/stories/AccordionGroup/AccordionGroupSlots.stories.mdx +56 -0
  232. package/src/stories/Badge/Badge.settings.ts +26 -0
  233. package/src/stories/Badge/Badge.stories.mdx +36 -24
  234. package/src/stories/Badge/Badge.test.ts +12 -0
  235. package/src/stories/Badge/BadgeSlots.stories.mdx +20 -0
  236. package/src/stories/Breadcrumb/Breadcrumb.settings.ts +41 -0
  237. package/src/stories/Breadcrumb/Breadcrumb.stories.mdx +32 -29
  238. package/src/stories/Breadcrumb/Breadcrumb.test.ts +50 -0
  239. package/src/stories/Breadcrumb/BreadcrumbSlots.stories.mdx +43 -0
  240. package/src/stories/Button/Button.settings.ts +145 -0
  241. package/src/stories/Button/Button.stories.mdx +20 -54
  242. package/src/stories/Button/Button.test.ts +35 -46
  243. package/src/stories/Button/ButtonIcon.stories.mdx +139 -29
  244. package/src/stories/Button/ButtonLink.stories.mdx +58 -111
  245. package/src/stories/Button/ButtonLoading.stories.mdx +89 -62
  246. package/src/stories/Button/ButtonModifiers.stories.mdx +198 -121
  247. package/src/stories/Button/ButtonSlots.stories.mdx +83 -95
  248. package/src/stories/Button/ButtonState.stories.mdx +75 -0
  249. package/src/stories/Button/ButtonToggle.stories.mdx +50 -0
  250. package/src/stories/ButtonGroup/ButtonGroup.settings.ts +33 -0
  251. package/src/stories/ButtonGroup/ButtonGroup.stories.mdx +16 -18
  252. package/src/stories/ButtonGroup/ButtonGroup.test.ts +35 -0
  253. package/src/stories/ButtonGroup/ButtonGroupModifiers.stories.mdx +52 -0
  254. package/src/stories/ButtonGroup/ButtonGroupSlots.stories.mdx +37 -0
  255. package/src/stories/ButtonGroup/ButtonGroupToggle.stories.mdx +52 -110
  256. package/src/stories/Card/Card.settings.ts +55 -0
  257. package/src/stories/Card/Card.stories.mdx +27 -11
  258. package/src/stories/Card/Card.test.ts +23 -0
  259. package/src/stories/Card/CardSlots.stories.mdx +80 -24
  260. package/src/stories/Checkbox/Checkbox.settings.ts +43 -0
  261. package/src/stories/Checkbox/Checkbox.stories.mdx +163 -0
  262. package/src/stories/Checkbox/Checkbox.test.ts +81 -0
  263. package/src/stories/Checkbox/CheckboxBinary.stories.mdx +68 -0
  264. package/src/stories/Checkbox/CheckboxSlots.stories.mdx +46 -0
  265. package/src/stories/CheckboxGroup/CheckboxGroup.settings.ts +15 -0
  266. package/src/stories/CheckboxGroup/CheckboxGroup.stories.mdx +134 -0
  267. package/src/stories/CheckboxGroup/CheckboxGroup.test.ts +83 -0
  268. package/src/stories/CheckboxGroup/CheckboxGroupOptions.stories.mdx +100 -0
  269. package/src/stories/CheckboxGroup/CheckboxGroupSlots.stories.mdx +67 -0
  270. package/src/stories/Combobox/Combobox.settings.ts +127 -0
  271. package/src/stories/Combobox/Combobox.stories.mdx +204 -0
  272. package/src/stories/Combobox/Combobox.test.ts +103 -0
  273. package/src/stories/Combobox/ComboboxMultiple.stories.mdx +74 -0
  274. package/src/stories/Combobox/ComboboxOptions.stories.mdx +100 -0
  275. package/src/stories/Combobox/ComboboxSlots.stories.mdx +48 -0
  276. package/src/stories/Dialog/Dialog.settings.ts +45 -0
  277. package/src/stories/Dialog/Dialog.stories.mdx +42 -16
  278. package/src/stories/Dialog/Dialog.test.ts +69 -0
  279. package/src/stories/Dialog/DialogSlots.stories.mdx +63 -0
  280. package/src/stories/Dropdown/Dropdown.settings.ts +51 -0
  281. package/src/stories/Dropdown/Dropdown.stories.mdx +102 -29
  282. package/src/stories/Dropdown/Dropdown.test.ts +43 -0
  283. package/src/stories/Dropdown/DropdownOptions.stories.mdx +87 -67
  284. package/src/stories/Icon/Icon.settings.ts +72 -0
  285. package/src/stories/Icon/Icon.stories.mdx +76 -59
  286. package/src/stories/Icon/IconsCollection.stories.mdx +68 -0
  287. package/src/stories/InputText/InputText.settings.ts +221 -0
  288. package/src/stories/InputText/InputText.stories.mdx +142 -69
  289. package/src/stories/InputText/InputText.test.ts +125 -0
  290. package/src/stories/InputText/InputTextIconPosition.stories.mdx +63 -16
  291. package/src/stories/InputText/InputTextLength.stories.mdx +110 -0
  292. package/src/stories/InputText/InputTextMinMax.stories.mdx +112 -0
  293. package/src/stories/InputText/InputTextSlots.stories.mdx +61 -22
  294. package/src/stories/InputText/InputTextType.stories.mdx +207 -29
  295. package/src/stories/Progress/Progress.settings.ts +33 -0
  296. package/src/stories/Progress/Progress.stories.mdx +12 -14
  297. package/src/stories/Progress/Progress.test.ts +9 -0
  298. package/src/stories/Radio/Radio.settings.ts +15 -0
  299. package/src/stories/Radio/Radio.stories.mdx +102 -42
  300. package/src/stories/Radio/Radio.test.ts +70 -0
  301. package/src/stories/Radio/RadioSlots.stories.mdx +39 -22
  302. package/src/stories/RadioGroup/RadioGroup.settings.ts +15 -0
  303. package/src/stories/RadioGroup/RadioGroup.stories.mdx +115 -54
  304. package/src/stories/RadioGroup/RadioGroup.test.ts +83 -0
  305. package/src/stories/RadioGroup/RadioGroupOptions.stories.mdx +83 -41
  306. package/src/stories/RadioGroup/RadioGroupSlots.stories.mdx +49 -144
  307. package/src/stories/Select/Select.settings.ts +86 -0
  308. package/src/stories/Select/Select.stories.mdx +173 -33
  309. package/src/stories/Select/Select.test.ts +82 -0
  310. package/src/stories/Select/SelectOptions.stories.mdx +91 -69
  311. package/src/stories/Select/SelectSlots.stories.mdx +48 -0
  312. package/src/stories/Textarea/Textarea.settings.ts +96 -0
  313. package/src/stories/Textarea/Textarea.stories.mdx +167 -47
  314. package/src/stories/Textarea/Textarea.test.ts +90 -0
  315. package/src/stories/Textarea/TextareaLength.stories.mdx +110 -0
  316. package/src/stories/Textarea/TextareaSlots.stories.mdx +61 -23
  317. package/src/stories/Textarea/TextareatIconPosition.stories.mdx +78 -0
  318. package/src/stories/argTypes.ts +457 -0
  319. package/src/test/expect.ts +27 -6
  320. package/src/test/options.ts +17 -0
  321. package/src/test/sleep.ts +2 -0
  322. package/src/test/types.d.ts +14 -0
  323. package/src/types/generic.d.ts +5 -0
  324. package/src/utils/ObjectUtilities.ts +253 -244
  325. package/dist/components/VvAccordion/VvAccordion.d.ts +0 -32
  326. package/dist/components/VvAccordion/useAccordionProps.d.ts +0 -16
  327. package/dist/components/VvAccordion/vv-accordion.es.js +0 -262
  328. package/dist/components/VvAccordion/vv-accordion.umd.js +0 -1
  329. package/dist/components/VvAccordionGroup/vv-accordion-group.es.js +0 -315
  330. package/dist/components/VvAccordionGroup/vv-accordion-group.umd.js +0 -1
  331. package/dist/components/VvBadge/vv-badge.es.js +0 -18
  332. package/dist/components/VvBadge/vv-badge.umd.js +0 -1
  333. package/dist/components/VvBreadcrumb/vv-breadcrumb.es.js +0 -206
  334. package/dist/components/VvBreadcrumb/vv-breadcrumb.umd.js +0 -1
  335. package/dist/components/VvButton/VvButton.d.ts +0 -115
  336. package/dist/components/VvButton/useButtonGroupProps.d.ts +0 -23
  337. package/dist/components/VvButton/vv-button.es.js +0 -422
  338. package/dist/components/VvButton/vv-button.umd.js +0 -1
  339. package/dist/components/VvButtonGroup/VvButtonGroup.d.ts +0 -57
  340. package/dist/components/VvButtonGroup/vv-button-group.es.js +0 -210
  341. package/dist/components/VvButtonGroup/vv-button-group.umd.js +0 -1
  342. package/dist/components/VvCard/vv-card.es.js +0 -188
  343. package/dist/components/VvCard/vv-card.umd.js +0 -1
  344. package/dist/components/VvCheck/VvCheck.d.ts +0 -47
  345. package/dist/components/VvCheck/VvCheck.vue.d.ts +0 -165
  346. package/dist/components/VvCheck/useCheckProps.d.ts +0 -16
  347. package/dist/components/VvCheck/vv-check.es.js +0 -321
  348. package/dist/components/VvCheck/vv-check.umd.js +0 -1
  349. package/dist/components/VvCheckGroup/VvCheckGroup.d.ts +0 -65
  350. package/dist/components/VvCheckGroup/VvCheckGroup.vue.d.ts +0 -272
  351. package/dist/components/VvCheckGroup/vv-check-group.es.js +0 -452
  352. package/dist/components/VvCheckGroup/vv-check-group.umd.js +0 -2
  353. package/dist/components/VvDialog/constants.d.ts +0 -5
  354. package/dist/components/VvDialog/vv-dialog.es.js +0 -315
  355. package/dist/components/VvDialog/vv-dialog.umd.js +0 -1
  356. package/dist/components/VvDropdown/VvDropdown.d.ts +0 -52
  357. package/dist/components/VvDropdown/vv-dropdown.es.js +0 -236
  358. package/dist/components/VvDropdown/vv-dropdown.umd.js +0 -1
  359. package/dist/components/VvIcon/vv-icon.es.js +0 -229
  360. package/dist/components/VvIcon/vv-icon.umd.js +0 -1
  361. package/dist/components/VvInputText/VvInputText.d.ts +0 -73
  362. package/dist/components/VvInputText/constants.d.ts +0 -55
  363. package/dist/components/VvInputText/vv-input-text.es.js +0 -725
  364. package/dist/components/VvInputText/vv-input-text.umd.js +0 -2
  365. package/dist/components/VvNativeSelect/VvNativeSelect.d.ts +0 -70
  366. package/dist/components/VvNativeSelect/VvNativeSelect.vue.d.ts +0 -228
  367. package/dist/components/VvNativeSelect/vv-native-select.es.js +0 -414
  368. package/dist/components/VvNativeSelect/vv-native-select.umd.js +0 -2
  369. package/dist/components/VvProgress/VvProgress.d.ts +0 -29
  370. package/dist/components/VvProgress/vv-progress.es.js +0 -185
  371. package/dist/components/VvProgress/vv-progress.umd.js +0 -1
  372. package/dist/components/VvRadio/VvRadio.d.ts +0 -22
  373. package/dist/components/VvRadio/useRadioProps.d.ts +0 -15
  374. package/dist/components/VvRadio/vv-radio.es.js +0 -309
  375. package/dist/components/VvRadio/vv-radio.umd.js +0 -1
  376. package/dist/components/VvRadioGroup/VvRadioGroup.d.ts +0 -54
  377. package/dist/components/VvRadioGroup/vv-radio-group.es.js +0 -441
  378. package/dist/components/VvRadioGroup/vv-radio-group.umd.js +0 -2
  379. package/dist/components/VvSelect/VvSelect.d.ts +0 -99
  380. package/dist/components/VvSelect/vv-select.es.js +0 -445
  381. package/dist/components/VvSelect/vv-select.umd.js +0 -2
  382. package/dist/components/VvTextarea/VvTextarea.d.ts +0 -88
  383. package/dist/components/VvTextarea/constants.d.ts +0 -19
  384. package/dist/components/VvTextarea/vv-textarea.es.js +0 -548
  385. package/dist/components/VvTextarea/vv-textarea.umd.js +0 -2
  386. package/dist/composables/debouncedInput/useDebouncedInput.d.ts +0 -2
  387. package/dist/composables/focus/useComponentFocus.d.ts +0 -7
  388. package/dist/composables/options/useOptions.d.ts +0 -5
  389. package/dist/composables/textLimit/useTextLimit.d.ts +0 -14
  390. package/dist/stories/Icon/IconList.vue.d.ts +0 -44
  391. package/dist/stories/utils.d.ts +0 -5
  392. package/dist/ui-vue.es.js +0 -3001
  393. package/dist/ui-vue.umd.js +0 -2
  394. package/src/assets/icons/index.js +0 -7
  395. package/src/components/VvAccordion/VvAccordion.ts +0 -34
  396. package/src/components/VvAccordion/useAccordionProps.ts +0 -45
  397. package/src/components/VvBadge/VvBadge.ts +0 -4
  398. package/src/components/VvButton/VvButton.ts +0 -117
  399. package/src/components/VvButton/useButtonGroupProps.ts +0 -51
  400. package/src/components/VvButtonGroup/VvButtonGroup.ts +0 -37
  401. package/src/components/VvCheck/VvCheck.ts +0 -48
  402. package/src/components/VvCheck/VvCheck.vue +0 -149
  403. package/src/components/VvCheck/useCheckProps.ts +0 -41
  404. package/src/components/VvCheckGroup/VvCheckGroup.ts +0 -34
  405. package/src/components/VvCheckGroup/VvCheckGroup.vue +0 -84
  406. package/src/components/VvDialog/VvDialog.ts +0 -17
  407. package/src/components/VvDialog/constants.ts +0 -5
  408. package/src/components/VvDropdown/VvDropdown.ts +0 -46
  409. package/src/components/VvInputText/VvInputText.ts +0 -66
  410. package/src/components/VvInputText/constants.ts +0 -34
  411. package/src/components/VvNativeSelect/VvNativeSelect.ts +0 -70
  412. package/src/components/VvNativeSelect/VvNativeSelect.vue +0 -106
  413. package/src/components/VvProgress/VvProgress.ts +0 -28
  414. package/src/components/VvRadio/VvRadio.ts +0 -25
  415. package/src/components/VvRadio/useRadioProps.ts +0 -40
  416. package/src/components/VvRadioGroup/VvRadioGroup.ts +0 -25
  417. package/src/components/VvSelect/VvSelect.ts +0 -91
  418. package/src/components/VvTextarea/VvTextarea.ts +0 -64
  419. package/src/components/VvTextarea/constants.ts +0 -14
  420. package/src/composables/debouncedInput/useDebouncedInput.ts +0 -19
  421. package/src/composables/focus/useComponentFocus.ts +0 -22
  422. package/src/composables/options/useOptions.ts +0 -27
  423. package/src/composables/textLimit/useTextLimit.ts +0 -44
  424. package/src/stories/Accordion/AccordionBordered.stories.mdx +0 -26
  425. package/src/stories/Accordion/AccordionIconRight.stories.mdx +0 -32
  426. package/src/stories/Accordion/accordionTest.js +0 -36
  427. package/src/stories/AccordionGroup/Accordion.stories.mdx +0 -42
  428. package/src/stories/AccordionGroup/AccordionItems.stories.mdx +0 -51
  429. package/src/stories/AccordionGroup/accordionGroupTest.js +0 -51
  430. package/src/stories/Badge/BadgeColor.stories.mdx +0 -54
  431. package/src/stories/Badge/BadgeDot.stories.mdx +0 -20
  432. package/src/stories/Badge/BadgeTest.js +0 -21
  433. package/src/stories/Breadcrumb/BreadcrumbMultiline.stories.mdx +0 -41
  434. package/src/stories/Button/ButtonBadge.stories.mdx +0 -34
  435. package/src/stories/Button/ButtonIconPosition.stories.mdx +0 -106
  436. package/src/stories/Button/ButtonVariant.stories.mdx +0 -205
  437. package/src/stories/Button/test.js +0 -41
  438. package/src/stories/ButtonGroup/ButtonGroupAction.stories.mdx +0 -83
  439. package/src/stories/ButtonGroup/ButtonGroupActionQuiet.stories.mdx +0 -50
  440. package/src/stories/ButtonGroup/ButtonGroupBlock.stories.mdx +0 -40
  441. package/src/stories/ButtonGroup/ButtonGroupCompact.stories.mdx +0 -38
  442. package/src/stories/ButtonGroup/ButtonGroupRounded.stories.mdx +0 -77
  443. package/src/stories/ButtonGroup/ButtonGroupTest.js +0 -61
  444. package/src/stories/ButtonGroup/ButtonGroupVertical.stories.mdx +0 -38
  445. package/src/stories/Card/CardVariant.stories.mdx +0 -37
  446. package/src/stories/Check/Check.stories.mdx +0 -62
  447. package/src/stories/Check/CheckBinary.stories.mdx +0 -80
  448. package/src/stories/Check/CheckDisabled.stories.mdx +0 -30
  449. package/src/stories/Check/CheckError.stories.mdx +0 -64
  450. package/src/stories/Check/CheckErrorTests.js +0 -72
  451. package/src/stories/Check/CheckHintLabel.stories.mdx +0 -30
  452. package/src/stories/Check/CheckPropertyTest.js +0 -101
  453. package/src/stories/Check/CheckReadonly.stories.mdx +0 -30
  454. package/src/stories/Check/CheckSlots.stories.mdx +0 -51
  455. package/src/stories/Check/CheckSwitch.stories.mdx +0 -30
  456. package/src/stories/CheckGroup/CheckGroup.stories.mdx +0 -69
  457. package/src/stories/CheckGroup/CheckGroupDisabled.stories.mdx +0 -26
  458. package/src/stories/CheckGroup/CheckGroupError.stories.mdx +0 -28
  459. package/src/stories/CheckGroup/CheckGroupHintLabel.stories.mdx +0 -27
  460. package/src/stories/CheckGroup/CheckGroupLabel.stories.mdx +0 -26
  461. package/src/stories/CheckGroup/CheckGroupOptionLabel.stories.mdx +0 -48
  462. package/src/stories/CheckGroup/CheckGroupOptionValue.stories.mdx +0 -48
  463. package/src/stories/CheckGroup/CheckGroupOptions.stories.mdx +0 -40
  464. package/src/stories/CheckGroup/CheckGroupReadonly.stories.mdx +0 -26
  465. package/src/stories/CheckGroup/CheckGroupSlots.stories.mdx +0 -152
  466. package/src/stories/CheckGroup/CheckGroupValid.stories.mdx +0 -28
  467. package/src/stories/CheckGroup/CheckGroupVertical.stories.mdx +0 -26
  468. package/src/stories/Dialog/DialogAutoClose.stories.mdx +0 -18
  469. package/src/stories/Dialog/DialogSize.stories.mdx +0 -36
  470. package/src/stories/Dropdown/DropdownDisabled.stories.mdx +0 -25
  471. package/src/stories/Dropdown/DropdownLabelNoResults.stories.mdx +0 -25
  472. package/src/stories/Dropdown/DropdownMaxValues.stories.mdx +0 -26
  473. package/src/stories/Dropdown/DropdownMultiple.stories.mdx +0 -56
  474. package/src/stories/Dropdown/DropdownUseObject.stories.mdx +0 -58
  475. package/src/stories/Icon/IconList.vue +0 -34
  476. package/src/stories/Icon/IconPrefix.stories.mdx +0 -79
  477. package/src/stories/Icon/IconRemote.stories.mdx +0 -39
  478. package/src/stories/Icon/IconTest.js +0 -27
  479. package/src/stories/Icon/IconsList.stories.mdx +0 -35
  480. package/src/stories/InputText/InputTextAutocomplete.stories.mdx +0 -15
  481. package/src/stories/InputText/InputTextAutofocus.stories.mdx +0 -20
  482. package/src/stories/InputText/InputTextDisabled.stories.mdx +0 -19
  483. package/src/stories/InputText/InputTextError.stories.mdx +0 -19
  484. package/src/stories/InputText/InputTextFloating.stories.mdx +0 -20
  485. package/src/stories/InputText/InputTextHintLabel.stories.mdx +0 -18
  486. package/src/stories/InputText/InputTextIcon.stories.mdx +0 -18
  487. package/src/stories/InputText/InputTextLabel.stories.mdx +0 -15
  488. package/src/stories/InputText/InputTextLoading.stories.mdx +0 -19
  489. package/src/stories/InputText/InputTextMax.stories.mdx +0 -31
  490. package/src/stories/InputText/InputTextMaxLength.stories.mdx +0 -36
  491. package/src/stories/InputText/InputTextMin.stories.mdx +0 -31
  492. package/src/stories/InputText/InputTextMinLength.stories.mdx +0 -15
  493. package/src/stories/InputText/InputTextPlaceholder.stories.mdx +0 -15
  494. package/src/stories/InputText/InputTextReadonly.stories.mdx +0 -19
  495. package/src/stories/InputText/InputTextStep.stories.mdx +0 -31
  496. package/src/stories/InputText/InputTextValid.stories.mdx +0 -19
  497. package/src/stories/NativeSelect/NativeSelect.stories.mdx +0 -53
  498. package/src/stories/NativeSelect/NativeSelectDisabled.stories.mdx +0 -32
  499. package/src/stories/NativeSelect/NativeSelectError.stories.mdx +0 -36
  500. package/src/stories/NativeSelect/NativeSelectHintLabel.stories.mdx +0 -34
  501. package/src/stories/NativeSelect/NativeSelectIconLeftRight.stories.mdx +0 -42
  502. package/src/stories/NativeSelect/NativeSelectLoading.stories.mdx +0 -27
  503. package/src/stories/NativeSelect/NativeSelectOptions.stories.mdx +0 -78
  504. package/src/stories/NativeSelect/NativeSelectReadonly.stories.mdx +0 -34
  505. package/src/stories/NativeSelect/NativeSelectUseObject.stories.mdx +0 -66
  506. package/src/stories/NativeSelect/NativeSelectValid.stories.mdx +0 -36
  507. package/src/stories/NativeSelect/NativeSelectValueKey.stories.mdx +0 -66
  508. package/src/stories/Progress/ProgressDeterminate.stories.mdx +0 -19
  509. package/src/stories/Radio/RadioDisabled.stories.mdx +0 -30
  510. package/src/stories/Radio/RadioError.stories.mdx +0 -64
  511. package/src/stories/Radio/RadioHintLabel.stories.mdx +0 -30
  512. package/src/stories/Radio/RadioTest.js +0 -89
  513. package/src/stories/RadioGroup/RadioGroupDisabled.stories.mdx +0 -29
  514. package/src/stories/RadioGroup/RadioGroupError.stories.mdx +0 -31
  515. package/src/stories/RadioGroup/RadioGroupHintLabel.stories.mdx +0 -28
  516. package/src/stories/RadioGroup/RadioGroupLabel.stories.mdx +0 -29
  517. package/src/stories/RadioGroup/RadioGroupOptionLabel.stories.mdx +0 -65
  518. package/src/stories/RadioGroup/RadioGroupOptionValue.stories.mdx +0 -65
  519. package/src/stories/RadioGroup/RadioGroupReadonly.stories.mdx +0 -29
  520. package/src/stories/RadioGroup/RadioGroupValid.stories.mdx +0 -31
  521. package/src/stories/RadioGroup/RadioGroupVertical.stories.mdx +0 -29
  522. package/src/stories/RadioGroup/RadioOptionsTest.js +0 -78
  523. package/src/stories/RadioGroup/RadioPropertyTest.js +0 -131
  524. package/src/stories/RadioGroup/RadioSlotsTest.js +0 -20
  525. package/src/stories/Select/SelectDisabled.stories.mdx +0 -32
  526. package/src/stories/Select/SelectMaxValues.stories.mdx +0 -33
  527. package/src/stories/Select/SelectMultiple.stories.mdx +0 -64
  528. package/src/stories/Select/SelectSearchable.stories.mdx +0 -80
  529. package/src/stories/Select/SelectSeparator.stories.mdx +0 -64
  530. package/src/stories/Select/SelectUseObject.stories.mdx +0 -66
  531. package/src/stories/Textarea/TextareaAutoclear.stories.mdx +0 -23
  532. package/src/stories/Textarea/TextareaAutocomplete.stories.mdx +0 -23
  533. package/src/stories/Textarea/TextareaAutofocus.stories.mdx +0 -24
  534. package/src/stories/Textarea/TextareaDebounce.stories.mdx +0 -23
  535. package/src/stories/Textarea/TextareaDisabled.stories.mdx +0 -23
  536. package/src/stories/Textarea/TextareaError.stories.mdx +0 -22
  537. package/src/stories/Textarea/TextareaErrorLabel.stories.mdx +0 -37
  538. package/src/stories/Textarea/TextareaFloating.stories.mdx +0 -25
  539. package/src/stories/Textarea/TextareaHintLabel.stories.mdx +0 -22
  540. package/src/stories/Textarea/TextareaIcon.stories.mdx +0 -22
  541. package/src/stories/Textarea/TextareaIconPosition.stories.mdx +0 -39
  542. package/src/stories/Textarea/TextareaId.stories.mdx +0 -19
  543. package/src/stories/Textarea/TextareaLabel.stories.mdx +0 -19
  544. package/src/stories/Textarea/TextareaLimit.stories.mdx +0 -50
  545. package/src/stories/Textarea/TextareaLoading.stories.mdx +0 -22
  546. package/src/stories/Textarea/TextareaLoadingLabel.stories.mdx +0 -23
  547. package/src/stories/Textarea/TextareaMaxLength.stories.mdx +0 -19
  548. package/src/stories/Textarea/TextareaMinLength.stories.mdx +0 -19
  549. package/src/stories/Textarea/TextareaModifiers.stories.mdx +0 -24
  550. package/src/stories/Textarea/TextareaName.stories.mdx +0 -23
  551. package/src/stories/Textarea/TextareaPlaceholder.stories.mdx +0 -19
  552. package/src/stories/Textarea/TextareaReadonly.stories.mdx +0 -23
  553. package/src/stories/Textarea/TextareaRequired.stories.mdx +0 -22
  554. package/src/stories/Textarea/TextareaResizable.stories.mdx +0 -22
  555. package/src/stories/Textarea/TextareaRowsCols.stories.mdx +0 -39
  556. package/src/stories/Textarea/TextareaValid.stories.mdx +0 -22
  557. package/src/stories/Textarea/TextareaValidLabel.stories.mdx +0 -35
  558. package/src/stories/stories.scss +0 -35
  559. package/src/stories/utils.ts +0 -12
  560. package/src/stories/volver-ui-vue.stories.mdx +0 -77
  561. package/src/types/.README +0 -0
package/dist/icons.es.js CHANGED
@@ -130,7 +130,7 @@ const t = {
130
130
  body: '<g stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g transform="translate(3 3)"><circle cx="9" cy="9" r="9" fill="currentColor" stroke="none"/><circle cx="9" cy="9" r="8" fill="none"/></g><path fill="none" stroke-linecap="round" d="m9 15 6-6M9 9l6 6"/></g>'
131
131
  },
132
132
  "clear-style": {
133
- body: '<defs><clipPath id="svgIDa"><path stroke="rgba(0,0,0,0)" d="M0 0h10v16H0z"/></clipPath></defs><g fill="currentColor" stroke="rgba(0,0,0,0)" clip-path="url(#svgIDa)" transform="translate(5 4)"><path d="M1 4a1 1 0 001-1h4v1.758L9.758 1H2a1 1 0 00-2 0v2a1 1 0 001 1m8 10H8v-2.758l-2 2V14h-.758l-1.2 1.2A.985.985 0 005 16h4a1 1 0 000-2"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 20 20 4"/>'
133
+ body: '<defs><clipPath id="svgID0"><path stroke="rgba(0,0,0,0)" d="M0 0h10v16H0z"/></clipPath></defs><g fill="currentColor" stroke="rgba(0,0,0,0)" clip-path="url(#svgID0)" transform="translate(5 4)"><path d="M1 4a1 1 0 001-1h4v1.758L9.758 1H2a1 1 0 00-2 0v2a1 1 0 001 1m8 10H8v-2.758l-2 2V14h-.758l-1.2 1.2A.985.985 0 005 16h4a1 1 0 000-2"/></g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 20 20 4"/>'
134
134
  },
135
135
  close: {
136
136
  body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M6 18 18 6M6 6l12 12"/>'
@@ -147,7 +147,7 @@ const t = {
147
147
  height: 25
148
148
  },
149
149
  color: {
150
- body: '<defs><radialGradient id="svgIDa" cx=".5" cy=".5" r=".5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="currentColor"/><stop offset=".148" stop-color="currentColor"/><stop offset=".32" stop-color="currentColor"/><stop offset=".493" stop-color="currentColor"/><stop offset=".66" stop-color="currentColor"/><stop offset=".833" stop-color="currentColor"/><stop offset="1" stop-color="currentColor"/></radialGradient></defs><g fill="url(#svgIDa)" stroke="currentColor" transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9.5" fill="none"/></g>'
150
+ body: '<defs><radialGradient id="svgID0" cx=".5" cy=".5" r=".5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="currentColor"/><stop offset=".148" stop-color="currentColor"/><stop offset=".32" stop-color="currentColor"/><stop offset=".493" stop-color="currentColor"/><stop offset=".66" stop-color="currentColor"/><stop offset=".833" stop-color="currentColor"/><stop offset="1" stop-color="currentColor"/></radialGradient></defs><g fill="url(#svgID0)" stroke="currentColor" transform="translate(2 2)"><circle cx="10" cy="10" r="10" stroke="none"/><circle cx="10" cy="10" r="9.5" fill="none"/></g>'
151
151
  },
152
152
  "contact-us": {
153
153
  body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M17.999 11V8.461c0-2.623-2.635-5.461-6-5.461s-6 2.838-6 5.461v1.2"/><path d="M15.995 10.002v1.251a4.847 4.847 0 01-1.5 3.75M8.999 4.001c0 2.571 6 6 9 6m-7.5-3a5.966 5.966 0 00-2.5 4v1a4.76 4.76 0 002.5 4m2.499 4a1.113 1.113 0 01-1.2 1h-.6a1.113 1.113 0 01-1.2-1h0a1.112 1.112 0 011.2-1h.6a1.114 1.114 0 011.2 1Zm0-.005h.469c2.493.013 4.522-2.587 4.531-5.8v-.2m.502-3.994H18v4h.5c.276 0 .5-.4.5-.889V10.89c0-.49-.224-.887-.5-.888Zm-13 0H6v4h-.5c-.276 0-.5-.4-.5-.887v-2.223c0-.491.223-.889.5-.89h0Z"/></g>'
@@ -339,7 +339,7 @@ const t = {
339
339
  body: '<path fill="none" d="M0 0h24v24H0z"/><g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M8 8h8m-8 4h5"/><g transform="translate(3 3)"><rect width="18" height="18" rx="2" stroke="none"/><rect width="16" height="16" x="1" y="1" rx="1"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M5 20c2.65 0 4-4 4-4l10 3.945L5 20Z"/></g>'
340
340
  },
341
341
  "number-code": {
342
- body: '<defs><path id="svgIDa" d="M13.014 9v5m2-3.75-4 2.5m4 0-4-2.5"/></defs><g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(7 6)"><rect width="10" height="8" rx="3" stroke="none"/><rect width="8" height="6" x="1" y="1" rx="2"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M10.005 6V4.7a1.869 1.869 0 012-1.7h0a1.869 1.869 0 012 1.7V6"/></g><use xlink:href="#svgIDa" fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(-7.014 7)"/><use xlink:href="#svgIDa" fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(-1.014 7)"/><use xlink:href="#svgIDa" fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(4.986 7)"/>'
342
+ body: '<defs><path id="svgID0" d="M13.014 9v5m2-3.75-4 2.5m4 0-4-2.5"/></defs><g fill="none" stroke="currentColor" stroke-width="2"><g stroke-miterlimit="10" transform="translate(7 6)"><rect width="10" height="8" rx="3" stroke="none"/><rect width="8" height="6" x="1" y="1" rx="2"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M10.005 6V4.7a1.869 1.869 0 012-1.7h0a1.869 1.869 0 012 1.7V6"/></g><use href="#svgID0" fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(-7.014 7)"/><use href="#svgID0" fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(-1.014 7)"/><use href="#svgID0" fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(4.986 7)"/>'
343
343
  },
344
344
  "numbered-list": {
345
345
  body: '<path fill="none" d="M0 0h24v24H0z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M7.999 16.998h5m-5-4.999h12M7.999 7h8"/><path fill="currentColor" stroke="rgba(0,0,0,0)" d="M4.044 7.455h.472v-1.72L4 5.886v-.585l1.083-.3v2.455H5.5v.545H4.044Zm-.04 4.914a.824.824 0 01.429-.831l.454-.274c.1-.063.135-.14.135-.308v-.158c0-.154-.055-.224-.169-.224h-.22c-.116 0-.171.067-.171.224v.32h-.458v-.287c0-.558.235-.83.659-.83h.171c.427 0 .658.276.658.82v.159a.816.816 0 01-.428.821l-.452.275a.277.277 0 00-.139.274v.1h1.031v.556h-1.5Zm1.495 4.726v.09c0 .545-.225.817-.649.817h-.2c-.425 0-.65-.271-.65-.806v-.242h.456v.276c0 .14.057.21.169.21h.245c.111 0 .17-.073.17-.22v-.257c0-.142-.05-.215-.158-.215h-.363v-.519h.337c.107 0 .157-.07.157-.214v-.236c0-.145-.057-.215-.165-.215h-.206c-.107 0-.163.068-.163.205v.251h-.458v-.216c0-.533.224-.8.648-.8h.157c.423 0 .647.269.647.817v.074c0 .314-.118.531-.344.59.246.042.37.284.37.61Z"/>'
@@ -393,7 +393,7 @@ const t = {
393
393
  body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M15.001 6h6m-3-3v6"/><g fill="rgba(0,0,0,0)"><path d="M8 16a3.997 3.997 0 01-3.333-1.788l-.166-.25-.277-.117a1.998 1.998 0 01-1.222-1.844c0-.807.48-1.53 1.222-1.844l.278-.117.166-.25A3.994 3.994 0 018.001 8c1.344 0 2.59.67 3.335 1.79l.167.25.277.118A1.998 1.998 0 0113 12c0 .806-.48 1.53-1.222 1.843l-.276.117-.167.25A3.997 3.997 0 018 16Z"/><path fill="currentColor" d="M8 15a3 3 0 002.503-1.342l.333-.5.554-.235a1 1 0 000-1.844l-.554-.235-.333-.5a3 3 0 00-5.002-.001l-.333.501-.555.234a.999.999 0 00-.61.923 1 1 0 00.61.923l.554.234.333.5A2.999 2.999 0 008 15.001m0 2a4.995 4.995 0 01-4.165-2.235 3 3 0 01.001-5.53A4.993 4.993 0 018 7c1.74 0 3.272.889 4.168 2.237a3 3 0 010 5.529A4.996 4.996 0 018 17Z"/></g><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M4.001 22a4 4 0 018 0"/><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(2 9)"><rect width="6" height="6.001" rx="3" stroke="none"/><rect width="4" height="4.001" x="1" y="1" rx="2"/></g><g fill="none" stroke="currentColor" stroke-width="2" transform="translate(8.001 9)"><rect width="6" height="6.001" rx="3" stroke="none"/><rect width="4" height="4.001" x="1" y="1" rx="2"/></g>'
394
394
  },
395
395
  "push-pin-off": {
396
- body: '<defs><clipPath id="svgIDa"><path fill="none" stroke="#000" d="M0 0h17.997v17.996H0z"/></clipPath></defs><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g clip-path="url(#svgIDa)" transform="translate(3 3)"><path d="M8.955 4.786 7.143 2.975A.821.821 0 016.9 2.4V1.395a.4.4 0 00-.681-.279L1.114 6.224a.4.4 0 00.279.68H2.4a.808.808 0 01.574.239l1.812 1.812m2.463 6.021a7.548 7.548 0 001.111 1.731.822.822 0 001.16.092.63.63 0 00.047-.043l7.191-7.191a.824.824 0 000-1.164l-.045-.041a7.552 7.552 0 00-1.732-1.111"/></g><path stroke-linecap="round" d="m17 17 3 3M4 20 20 4"/></g>'
396
+ body: '<defs><clipPath id="svgID0"><path fill="none" stroke="#000" d="M0 0h17.997v17.996H0z"/></clipPath></defs><g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><g clip-path="url(#svgID0)" transform="translate(3 3)"><path d="M8.955 4.786 7.143 2.975A.821.821 0 016.9 2.4V1.395a.4.4 0 00-.681-.279L1.114 6.224a.4.4 0 00.279.68H2.4a.808.808 0 01.574.239l1.812 1.812m2.463 6.021a7.548 7.548 0 001.111 1.731.822.822 0 001.16.092.63.63 0 00.047-.043l7.191-7.191a.824.824 0 000-1.164l-.045-.041a7.552 7.552 0 00-1.732-1.111"/></g><path stroke-linecap="round" d="m17 17 3 3M4 20 20 4"/></g>'
397
397
  },
398
398
  "push-pin-on": {
399
399
  body: '<g fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="2"><path d="M19.711 11.362c-2.283-1.92-4.212-1.7-5.044-1.466a.818.818 0 01-.806-.206l-3.715-3.714a.816.816 0 01-.24-.574V4.396a.4.4 0 00-.681-.279L4.117 9.225a.4.4 0 00.279.68h1.006a.816.816 0 01.574.239l3.715 3.715a.818.818 0 01.206.806c-.235.832-.454 2.762 1.466 5.044a.823.823 0 001.207.049l7.191-7.191a.823.823 0 00-.05-1.205Z"/><path stroke-linecap="round" d="m17 17 3 3"/></g>'
@@ -601,11 +601,11 @@ const t = {
601
601
  }
602
602
  }, o = 24, e = 24, l = {
603
603
  prefix: r,
604
- lastModified: 1668188662,
604
+ lastModified: 1674122148,
605
605
  icons: t,
606
606
  width: o,
607
607
  height: e
608
- }, n = "detailed", i = 1668188662, a = {
608
+ }, n = "detailed", i = 1674122148, a = {
609
609
  add: {
610
610
  body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 15.999h24m-12-12v24"/>'
611
611
  },
@@ -748,7 +748,7 @@ const t = {
748
748
  body: '<g fill="none" stroke="currentColor" stroke-width="2"><g stroke-linejoin="round"><path d="M7 10.999h16a1 1 0 011 1v7a8 8 0 01-8 8h-2a8 8 0 01-8-8v-7a1 1 0 011-1Z" stroke="none"/><path d="M7 11.999h16v7a7 7 0 01-7 7h-2a7 7 0 01-7-7v-7Z"/></g><g stroke-linejoin="round"><path d="M22.001 18.999v-8h3a3 3 0 013 3v2a3 3 0 01-3 3h-3Z" stroke="none"/><path d="M23.001 17.999v-6h2a2 2 0 012 2v2a2 2 0 01-2 2h-2Z"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M4 26.999h22"/><path stroke-linecap="round" d="M10 7.999v-2m5 2v-2m5 2v-2"/></g>'
749
749
  },
750
750
  color: {
751
- body: '<defs><radialGradient id="svgIDa" cx=".5" cy=".5" r=".5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="currentColor"/><stop offset=".148" stop-color="currentColor"/><stop offset=".32" stop-color="currentColor"/><stop offset=".493" stop-color="currentColor"/><stop offset=".66" stop-color="currentColor"/><stop offset=".833" stop-color="currentColor"/><stop offset="1" stop-color="currentColor"/></radialGradient></defs><g fill="url(#svgIDa)" stroke="currentColor" transform="translate(4 4)"><circle cx="12" cy="12" r="12" stroke="none"/><circle cx="12" cy="12" r="11.5" fill="none"/></g>'
751
+ body: '<defs><radialGradient id="svgID0" cx=".5" cy=".5" r=".5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="currentColor"/><stop offset=".148" stop-color="currentColor"/><stop offset=".32" stop-color="currentColor"/><stop offset=".493" stop-color="currentColor"/><stop offset=".66" stop-color="currentColor"/><stop offset=".833" stop-color="currentColor"/><stop offset="1" stop-color="currentColor"/></radialGradient></defs><g fill="url(#svgID0)" stroke="currentColor" transform="translate(4 4)"><circle cx="12" cy="12" r="12" stroke="none"/><circle cx="12" cy="12" r="11.5" fill="none"/></g>'
752
752
  },
753
753
  "contact-us": {
754
754
  body: '<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M24 16.001v-3.808c0-3.934-3.513-8.192-8-8.192s-8 4.257-8 8.192v1.8"/><path d="M21 12.001v3.912a7.6 7.6 0 01-2 5.588m-9.001-14.5c0 2.143 7.7 5 11 5M13 10.5c-.862.606-1.949 3.279-2 4.889v1.222a6.65 6.65 0 002 4.889m5.999 5.501a1.113 1.113 0 01-1.2 1h-.6a1.113 1.113 0 01-1.2-1h0a1.112 1.112 0 011.2-1h.6a1.114 1.114 0 011.2 1Zm.002-.003h.469c2.493.021 4.522-4.31 4.531-9.671v-.328"/><path d="M25 14h-1v4h1a.95.95 0 001-.889v-2.223A.951.951 0 0025 14Zm-18 .002h1v4H7a.949.949 0 01-1-.887v-2.223a.949.949 0 011-.89h0Z"/></g>'
@@ -942,7 +942,7 @@ const t = {
942
942
  body: '<g fill="none" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M8 9h16M8 15h9"/><g transform="translate(2 2)"><rect width="28" height="28" rx="2" stroke="none"/><rect width="26" height="26" x="1" y="1" rx="1"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M4 29c4.543 0 6.857-7 6.857-7L28 28.9 4 29Z"/></g>'
943
943
  },
944
944
  "number-code": {
945
- body: '<defs><path id="svgIDa" d="M2 0v5m2-3.75-4 2.5m4 0-4-2.5"/></defs><g fill="none" stroke="currentColor"><g stroke-width="2"><g stroke-miterlimit="10" transform="translate(8 9)"><rect width="16" height="11" rx="3" stroke="none"/><rect width="14" height="9" x="1" y="1" rx="2"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M12.005 9V6.835c0-1.565 1.791-2.835 4-2.835h0c2.209 0 4 1.269 4 2.835V9"/></g><use xlink:href="#svgIDa" stroke-linecap="round" transform="translate(6 23)"/><use xlink:href="#svgIDa" stroke-linecap="round" transform="translate(14 23)"/><use xlink:href="#svgIDa" stroke-linecap="round" transform="translate(22 23)"/></g>'
945
+ body: '<defs><path id="svgID0" d="M2 0v5m2-3.75-4 2.5m4 0-4-2.5"/></defs><g fill="none" stroke="currentColor"><g stroke-width="2"><g stroke-miterlimit="10" transform="translate(8 9)"><rect width="16" height="11" rx="3" stroke="none"/><rect width="14" height="9" x="1" y="1" rx="2"/></g><path stroke-linecap="round" stroke-linejoin="round" d="M12.005 9V6.835c0-1.565 1.791-2.835 4-2.835h0c2.209 0 4 1.269 4 2.835V9"/></g><use href="#svgID0" stroke-linecap="round" transform="translate(6 23)"/><use href="#svgID0" stroke-linecap="round" transform="translate(14 23)"/><use href="#svgID0" stroke-linecap="round" transform="translate(22 23)"/></g>'
946
946
  },
947
947
  "numbered-list": {
948
948
  body: '<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M12 22h6m-6-5.999h15M12 10h10"/><path fill="currentColor" stroke="rgba(0,0,0,0)" d="M6.059 11.275h.629V8.981l-.688.2V8.4L7.443 8v3.273H8V12H6.059Zm-.054 5.884a1.1 1.1 0 01.572-1.108l.606-.365c.134-.085.181-.187.181-.411v-.21c0-.205-.073-.3-.226-.3h-.293c-.154 0-.227.089-.227.3v.427h-.62v-.383c0-.744.313-1.107.879-1.107h.227c.569 0 .878.367.878 1.094v.211a1.087 1.087 0 01-.571 1.095l-.6.366a.369.369 0 00-.186.365v.128h1.38v.741h-2ZM8 22.793v.12c0 .727-.3 1.089-.865 1.089h-.269c-.566 0-.866-.361-.866-1.074v-.323h.608v.364c0 .186.076.28.225.28h.326c.148 0 .227-.1.227-.293v-.343c0-.189-.066-.287-.211-.287h-.484v-.692h.449c.143 0 .209-.093.209-.286v-.314c0-.194-.075-.287-.22-.287h-.275c-.143 0-.217.091-.217.274v.335h-.611v-.287c0-.711.3-1.07.864-1.07h.21c.564 0 .863.359.863 1.089v.1c0 .418-.157.707-.459.786.331.062.496.385.496.819Z"/>'
@@ -1209,7 +1209,7 @@ const t = {
1209
1209
  icons: a,
1210
1210
  width: c,
1211
1211
  height: h
1212
- }, d = "simple", k = 1668188662, m = {
1212
+ }, d = "simple", k = 1674122148, m = {
1213
1213
  add: {
1214
1214
  body: '<path fill="none" stroke="currentColor" stroke-linecap="round" d="M.5 8h15M8 .5v15"/>'
1215
1215
  },
@@ -1372,7 +1372,7 @@ const t = {
1372
1372
  height: 17
1373
1373
  },
1374
1374
  color: {
1375
- body: '<defs><radialGradient id="svgIDa" cx=".5" cy=".5" r=".5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="currentColor"/><stop offset=".148" stop-color="currentColor"/><stop offset=".32" stop-color="currentColor"/><stop offset=".493" stop-color="currentColor"/><stop offset=".66" stop-color="currentColor"/><stop offset=".833" stop-color="currentColor"/><stop offset="1" stop-color="currentColor"/></radialGradient></defs><g fill="url(#svgIDa)" stroke="currentColor"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g>'
1375
+ body: '<defs><radialGradient id="svgID0" cx=".5" cy=".5" r=".5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="currentColor"/><stop offset=".148" stop-color="currentColor"/><stop offset=".32" stop-color="currentColor"/><stop offset=".493" stop-color="currentColor"/><stop offset=".66" stop-color="currentColor"/><stop offset=".833" stop-color="currentColor"/><stop offset="1" stop-color="currentColor"/></radialGradient></defs><g fill="url(#svgID0)" stroke="currentColor"><circle cx="8" cy="8" r="8" stroke="none"/><circle cx="8" cy="8" r="7.5" fill="none"/></g>'
1376
1376
  },
1377
1377
  "contact-us": {
1378
1378
  body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M13.501 8.501V5.962a5.5 5.5 0 00-11 0v1.2"/><path stroke-linecap="round" stroke-linejoin="round" d="M11.499 5.501v2.471a5.592 5.592 0 01-1 3.529m-6-9.5c0 1.733 6.184 3.375 8.5 3.5M6.5 4a5.4 5.4 0 00-2 3.556v.889a4.306 4.306 0 002 3.556m2.999 2.498h.375c1.995.011 3.618-2.156 3.625-4.837v-.164M14.5 6.5h-1v4h1a.95.95 0 001-.889V7.388a.951.951 0 00-1-.888Zm-13-.002h1v4h-1a.949.949 0 01-1-.887V7.388a.949.949 0 011-.89h0Z"/><g transform="translate(7 13)"><circle cx="1.5" cy="1.5" r="1.5" stroke="none"/><circle cx="1.5" cy="1.5" r="1"/></g></g>'
@@ -1585,7 +1585,7 @@ const t = {
1585
1585
  body: '<g fill="none" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M3.5 4.5h9m-9 3h6"/><rect width="16" height="16" rx="2" stroke="none"/><rect width="15" height="15" x=".5" y=".5" rx="1.5"/><path stroke-linecap="round" stroke-linejoin="round" d="M2 15.501c2 0 3-4 3-4l9 4Z"/></g>'
1586
1586
  },
1587
1587
  "number-code": {
1588
- body: '<defs><path id="svgIDa" d="M1.5-.166v3M3 .333l-3 2m3 0-3-2"/></defs><g fill="none" stroke="currentColor"><g stroke-miterlimit="10" transform="translate(2 3)"><rect width="12" height="8" rx="2" stroke="none"/><rect width="11" height="7" x=".5" y=".5" rx="1.5"/></g><path stroke-linecap="square" stroke-linejoin="round" d="M5.506 2.768A2.393 2.393 0 018.006.5h0a2.392 2.392 0 012.5 2.268"/><use xlink:href="#svgIDa" stroke-linecap="round" transform="translate(3 12.667)"/><use xlink:href="#svgIDa" stroke-linecap="round" transform="translate(10 12.667)"/></g>',
1588
+ body: '<defs><path id="svgID0" d="M1.5-.166v3M3 .333l-3 2m3 0-3-2"/></defs><g fill="none" stroke="currentColor"><g stroke-miterlimit="10" transform="translate(2 3)"><rect width="12" height="8" rx="2" stroke="none"/><rect width="11" height="7" x=".5" y=".5" rx="1.5"/></g><path stroke-linecap="square" stroke-linejoin="round" d="M5.506 2.768A2.393 2.393 0 018.006.5h0a2.392 2.392 0 012.5 2.268"/><use href="#svgID0" stroke-linecap="round" transform="translate(3 12.667)"/><use href="#svgID0" stroke-linecap="round" transform="translate(10 12.667)"/></g>',
1589
1589
  height: 16.001
1590
1590
  },
1591
1591
  "numbered-list": {
@@ -1879,7 +1879,5 @@ const t = {
1879
1879
  }, u = [l, s, g];
1880
1880
  export {
1881
1881
  u as default,
1882
- s as detailed,
1883
- l as normal,
1884
- g as simple
1882
+ l as normal
1885
1883
  };