@volverjs/ui-vue 0.0.1-beta.6 → 0.0.1

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 (548) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +101 -7
  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 +427 -0
  23. package/dist/components/VvButton/VvButton.umd.js +1 -0
  24. package/dist/components/VvButton/VvButton.vue.d.ts +108 -199
  25. package/dist/components/VvButton/index.d.ts +132 -0
  26. package/dist/components/VvButtonGroup/VvButtonGroup.es.js +108 -0
  27. package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -0
  28. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +89 -183
  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 +594 -0
  43. package/dist/components/VvCombobox/VvCombobox.umd.js +1 -0
  44. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +153 -0
  45. package/dist/components/{VvSelect/VvSelect.d.ts → VvCombobox/index.d.ts} +33 -36
  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 +218 -0
  51. package/dist/components/VvDropdown/VvDropdown.umd.js +1 -0
  52. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +41 -147
  53. package/dist/components/VvDropdown/index.d.ts +37 -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 +764 -0
  62. package/dist/components/VvInputText/VvInputText.umd.js +1 -0
  63. package/dist/components/VvInputText/VvInputText.vue.d.ts +214 -256
  64. package/dist/components/VvInputText/VvInputTextActions.d.ts +3 -0
  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 +415 -0
  79. package/dist/components/VvSelect/VvSelect.umd.js +1 -0
  80. package/dist/components/VvSelect/VvSelect.vue.d.ts +112 -262
  81. package/dist/components/VvSelect/index.d.ts +96 -0
  82. package/dist/components/VvTextarea/VvTextarea.es.js +463 -0
  83. package/dist/components/VvTextarea/VvTextarea.umd.js +1 -0
  84. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +147 -273
  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 +2309 -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} +8 -1
  98. package/dist/composables/useDebouncedInput.d.ts +2 -0
  99. package/dist/composables/useModifiers.d.ts +3 -2
  100. package/dist/composables/useOptions.d.ts +6 -0
  101. package/dist/composables/useTextCount.d.ts +10 -0
  102. package/dist/constants.d.ts +4 -4
  103. package/dist/icons.d.ts +1881 -0
  104. package/dist/icons.es.js +12 -14
  105. package/dist/icons.umd.js +1 -1
  106. package/dist/index.d.ts +9 -4
  107. package/dist/index.es.js +2350 -0
  108. package/dist/index.umd.js +1 -0
  109. package/dist/props/index.d.ts +322 -13
  110. package/dist/resolvers/unplugin.d.ts +27 -0
  111. package/dist/resolvers/unplugin.es.js +40 -0
  112. package/dist/resolvers/unplugin.umd.js +1 -0
  113. package/dist/stories/Accordion/Accordion.settings.d.ts +63 -0
  114. package/dist/stories/Accordion/Accordion.test.d.ts +2 -0
  115. package/dist/stories/AccordionGroup/AccordionGroup.settings.d.ts +58 -0
  116. package/dist/stories/AccordionGroup/AccordionGroup.test.d.ts +2 -0
  117. package/dist/stories/Badge/Badge.settings.d.ts +32 -0
  118. package/dist/stories/Badge/Badge.test.d.ts +2 -0
  119. package/dist/stories/Breadcrumb/Breadcrumb.settings.d.ts +29 -0
  120. package/dist/stories/Breadcrumb/Breadcrumb.test.d.ts +2 -0
  121. package/dist/stories/Button/Button.settings.d.ts +200 -0
  122. package/dist/stories/Button/Button.test.d.ts +1 -10
  123. package/dist/stories/ButtonGroup/ButtonGroup.settings.d.ts +38 -0
  124. package/dist/stories/ButtonGroup/ButtonGroup.test.d.ts +2 -0
  125. package/dist/stories/Card/Card.settings.d.ts +70 -0
  126. package/dist/stories/Card/Card.test.d.ts +2 -0
  127. package/dist/stories/Checkbox/Checkbox.settings.d.ts +165 -0
  128. package/dist/stories/Checkbox/Checkbox.test.d.ts +2 -0
  129. package/dist/stories/CheckboxGroup/CheckboxGroup.settings.d.ts +164 -0
  130. package/dist/stories/CheckboxGroup/CheckboxGroup.test.d.ts +2 -0
  131. package/dist/stories/Combobox/Combobox.settings.d.ts +267 -0
  132. package/dist/stories/Combobox/Combobox.test.d.ts +2 -0
  133. package/dist/stories/Dialog/Dialog.settings.d.ts +55 -0
  134. package/dist/stories/Dialog/Dialog.test.d.ts +2 -0
  135. package/dist/stories/Dropdown/Dropdown.settings.d.ts +75 -0
  136. package/dist/stories/Dropdown/Dropdown.test.d.ts +2 -0
  137. package/dist/stories/Icon/Icon.settings.d.ts +74 -0
  138. package/dist/stories/InputText/InputText.settings.d.ts +445 -0
  139. package/dist/stories/InputText/InputText.test.d.ts +2 -0
  140. package/dist/stories/Progress/Progress.settings.d.ts +38 -0
  141. package/dist/stories/Progress/Progress.test.d.ts +2 -0
  142. package/dist/stories/Radio/Radio.settings.d.ts +139 -0
  143. package/dist/stories/Radio/Radio.test.d.ts +2 -0
  144. package/dist/stories/RadioGroup/RadioGroup.settings.d.ts +164 -0
  145. package/dist/stories/RadioGroup/RadioGroup.test.d.ts +2 -0
  146. package/dist/stories/Select/Select.settings.d.ts +265 -0
  147. package/dist/stories/Select/Select.test.d.ts +2 -0
  148. package/dist/stories/Textarea/Textarea.settings.d.ts +336 -0
  149. package/dist/stories/Textarea/Textarea.test.d.ts +2 -0
  150. package/dist/stories/argTypes.d.ts +793 -0
  151. package/dist/test/expect.d.ts +3 -0
  152. package/dist/test/options.d.ts +1 -0
  153. package/dist/test/sleep.d.ts +1 -0
  154. package/dist/utils/ObjectUtilities.d.ts +82 -95
  155. package/env.d.ts +1 -0
  156. package/package.json +198 -124
  157. package/src/{DesignSystem.ts → Volver.ts} +57 -29
  158. package/src/assets/icons/detailed.json +1 -1
  159. package/src/assets/icons/normal.json +1 -1
  160. package/src/assets/icons/simple.json +1 -1
  161. package/src/components/VvAccordion/VvAccordion.vue +94 -78
  162. package/src/components/VvAccordion/index.ts +72 -0
  163. package/src/components/VvAccordionGroup/VvAccordionGroup.vue +93 -53
  164. package/src/components/VvAccordionGroup/{VvAccordionGroup.ts → index.ts} +18 -14
  165. package/src/components/VvBadge/VvBadge.vue +17 -8
  166. package/src/components/VvBadge/index.ts +6 -0
  167. package/src/components/VvBreadcrumb/VvBreadcrumb.vue +26 -24
  168. package/src/components/VvBreadcrumb/{VvBreadcrumb.ts → index.ts} +1 -2
  169. package/src/components/VvButton/VvButton.vue +174 -154
  170. package/src/components/VvButton/index.ts +171 -0
  171. package/src/components/VvButtonGroup/VvButtonGroup.vue +76 -48
  172. package/src/components/VvButtonGroup/index.ts +19 -0
  173. package/src/components/VvCard/VvCard.vue +20 -22
  174. package/src/components/VvCard/{VvCard.ts → index.ts} +1 -1
  175. package/src/components/VvCheckbox/VvCheckbox.vue +172 -0
  176. package/src/components/VvCheckbox/index.ts +60 -0
  177. package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +85 -0
  178. package/src/components/VvCheckboxGroup/index.ts +5 -0
  179. package/src/components/VvCombobox/VvCombobox.vue +227 -0
  180. package/src/components/VvCombobox/index.ts +82 -0
  181. package/src/components/VvDialog/VvDialog.vue +69 -67
  182. package/src/components/VvDialog/index.ts +10 -0
  183. package/src/components/VvDropdown/VvDropdown.vue +112 -114
  184. package/src/components/VvDropdown/index.ts +25 -0
  185. package/src/components/VvIcon/README.md +64 -0
  186. package/src/components/VvIcon/VvIcon.vue +122 -107
  187. package/src/components/VvIcon/{VvIcon.ts → index.ts} +17 -8
  188. package/src/components/VvInputText/VvInputClearAction.ts +53 -0
  189. package/src/components/VvInputText/VvInputPasswordAction.ts +70 -0
  190. package/src/components/VvInputText/VvInputStepAction.ts +49 -0
  191. package/src/components/VvInputText/VvInputText.vue +293 -252
  192. package/src/components/VvInputText/VvInputTextActions.ts +100 -0
  193. package/src/components/VvInputText/index.ts +140 -0
  194. package/src/components/VvProgress/VvProgress.vue +29 -29
  195. package/src/components/VvProgress/index.ts +32 -0
  196. package/src/components/VvRadio/VvRadio.vue +90 -119
  197. package/src/components/VvRadio/index.ts +40 -0
  198. package/src/components/VvRadioGroup/VvRadioGroup.vue +76 -69
  199. package/src/components/VvRadioGroup/index.ts +5 -0
  200. package/src/components/VvSelect/VvSelect.vue +165 -186
  201. package/src/components/VvSelect/index.ts +74 -0
  202. package/src/components/VvTextarea/VvTextarea.vue +188 -180
  203. package/src/components/VvTextarea/index.ts +50 -0
  204. package/src/components/common/HintSlot.ts +169 -121
  205. package/src/components/index.ts +19 -12
  206. package/src/composables/group/types/IAccordionGroupState.ts +3 -4
  207. package/src/composables/group/types/IButtonGroupState.ts +5 -11
  208. package/src/composables/group/types/IGroupState.ts +4 -6
  209. package/src/composables/group/types/IInputGroup.ts +1 -4
  210. package/src/composables/group/useInjectedGroupState.ts +21 -33
  211. package/src/composables/group/useProvideGroupState.ts +5 -7
  212. package/src/composables/useComponentFocus.ts +17 -0
  213. package/src/composables/useComponentIcons.ts +96 -0
  214. package/src/composables/useDebouncedInput.ts +25 -0
  215. package/src/composables/useModifiers.ts +58 -14
  216. package/src/composables/useOptions.ts +31 -0
  217. package/src/composables/useTextCount.ts +57 -0
  218. package/src/constants.ts +5 -7
  219. package/src/directives/{.README → .gitkeep} +0 -0
  220. package/src/icons.ts +7 -0
  221. package/src/index.ts +12 -5
  222. package/src/props/index.ts +204 -15
  223. package/src/resolvers/unplugin.ts +103 -0
  224. package/src/shims.d.ts +13 -0
  225. package/src/stories/Accordion/Accordion.settings.ts +46 -0
  226. package/src/stories/Accordion/Accordion.stories.mdx +21 -21
  227. package/src/stories/Accordion/Accordion.test.ts +61 -0
  228. package/src/stories/Accordion/AccordionSlots.stories.mdx +46 -70
  229. package/src/stories/AccordionGroup/AccordionGroup.settings.ts +55 -0
  230. package/src/stories/AccordionGroup/AccordionGroup.stories.mdx +24 -27
  231. package/src/stories/AccordionGroup/AccordionGroup.test.ts +50 -0
  232. package/src/stories/AccordionGroup/AccordionGroupSlots.stories.mdx +56 -0
  233. package/src/stories/Badge/Badge.settings.ts +26 -0
  234. package/src/stories/Badge/Badge.stories.mdx +36 -24
  235. package/src/stories/Badge/Badge.test.ts +12 -0
  236. package/src/stories/Badge/BadgeSlots.stories.mdx +20 -0
  237. package/src/stories/Breadcrumb/Breadcrumb.settings.ts +41 -0
  238. package/src/stories/Breadcrumb/Breadcrumb.stories.mdx +32 -29
  239. package/src/stories/Breadcrumb/Breadcrumb.test.ts +50 -0
  240. package/src/stories/Breadcrumb/BreadcrumbSlots.stories.mdx +43 -0
  241. package/src/stories/Button/Button.settings.ts +150 -0
  242. package/src/stories/Button/Button.stories.mdx +20 -54
  243. package/src/stories/Button/Button.test.ts +35 -46
  244. package/src/stories/Button/ButtonIcon.stories.mdx +139 -29
  245. package/src/stories/Button/ButtonLink.stories.mdx +58 -111
  246. package/src/stories/Button/ButtonLoading.stories.mdx +89 -62
  247. package/src/stories/Button/ButtonModifiers.stories.mdx +198 -121
  248. package/src/stories/Button/ButtonSlots.stories.mdx +83 -95
  249. package/src/stories/Button/ButtonState.stories.mdx +75 -0
  250. package/src/stories/Button/ButtonToggle.stories.mdx +50 -0
  251. package/src/stories/ButtonGroup/ButtonGroup.settings.ts +28 -0
  252. package/src/stories/ButtonGroup/ButtonGroup.stories.mdx +16 -18
  253. package/src/stories/ButtonGroup/ButtonGroup.test.ts +35 -0
  254. package/src/stories/ButtonGroup/ButtonGroupModifiers.stories.mdx +52 -0
  255. package/src/stories/ButtonGroup/ButtonGroupToggle.stories.mdx +45 -114
  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 +122 -0
  271. package/src/stories/Combobox/Combobox.stories.mdx +153 -0
  272. package/src/stories/Combobox/Combobox.test.ts +96 -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 +42 -0
  281. package/src/stories/Dropdown/Dropdown.stories.mdx +85 -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 +100 -0
  308. package/src/stories/Select/Select.stories.mdx +113 -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 +160 -58
  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 +433 -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 -424
  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 -434
  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 -59
  362. package/dist/components/VvInputText/constants.d.ts +0 -55
  363. package/dist/components/VvInputText/useInputNumber.d.ts +0 -16
  364. package/dist/components/VvInputText/useInputPassword.d.ts +0 -16
  365. package/dist/components/VvInputText/vv-input-text.es.js +0 -596
  366. package/dist/components/VvInputText/vv-input-text.umd.js +0 -2
  367. package/dist/components/VvNativeSelect/VvNativeSelect.d.ts +0 -70
  368. package/dist/components/VvNativeSelect/VvNativeSelect.vue.d.ts +0 -228
  369. package/dist/components/VvNativeSelect/vv-native-select.es.js +0 -395
  370. package/dist/components/VvNativeSelect/vv-native-select.umd.js +0 -2
  371. package/dist/components/VvProgress/VvProgress.d.ts +0 -29
  372. package/dist/components/VvProgress/vv-progress.es.js +0 -185
  373. package/dist/components/VvProgress/vv-progress.umd.js +0 -1
  374. package/dist/components/VvRadio/VvRadio.d.ts +0 -22
  375. package/dist/components/VvRadio/useRadioProps.d.ts +0 -15
  376. package/dist/components/VvRadio/vv-radio.es.js +0 -309
  377. package/dist/components/VvRadio/vv-radio.umd.js +0 -1
  378. package/dist/components/VvRadioGroup/VvRadioGroup.d.ts +0 -54
  379. package/dist/components/VvRadioGroup/vv-radio-group.es.js +0 -423
  380. package/dist/components/VvRadioGroup/vv-radio-group.umd.js +0 -2
  381. package/dist/components/VvSelect/vv-select.es.js +0 -427
  382. package/dist/components/VvSelect/vv-select.umd.js +0 -2
  383. package/dist/components/VvTextarea/VvTextarea.d.ts +0 -67
  384. package/dist/components/VvTextarea/constants.d.ts +0 -19
  385. package/dist/components/VvTextarea/vv-textarea.es.js +0 -472
  386. package/dist/components/VvTextarea/vv-textarea.umd.js +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/stories/Icon/IconList.vue.d.ts +0 -44
  390. package/dist/ui-vue.es.js +0 -2985
  391. package/dist/ui-vue.umd.js +0 -2
  392. package/src/assets/icons/index.js +0 -7
  393. package/src/components/VvAccordion/VvAccordion.ts +0 -34
  394. package/src/components/VvAccordion/useAccordionProps.ts +0 -45
  395. package/src/components/VvBadge/VvBadge.ts +0 -4
  396. package/src/components/VvButton/VvButton.ts +0 -117
  397. package/src/components/VvButton/useButtonGroupProps.ts +0 -51
  398. package/src/components/VvButtonGroup/VvButtonGroup.ts +0 -37
  399. package/src/components/VvCheck/VvCheck.ts +0 -48
  400. package/src/components/VvCheck/VvCheck.vue +0 -149
  401. package/src/components/VvCheck/useCheckProps.ts +0 -41
  402. package/src/components/VvCheckGroup/VvCheckGroup.ts +0 -34
  403. package/src/components/VvCheckGroup/VvCheckGroup.vue +0 -84
  404. package/src/components/VvDialog/VvDialog.ts +0 -17
  405. package/src/components/VvDialog/constants.ts +0 -5
  406. package/src/components/VvDropdown/VvDropdown.ts +0 -46
  407. package/src/components/VvInputText/VvInputText.ts +0 -49
  408. package/src/components/VvInputText/constants.ts +0 -34
  409. package/src/components/VvInputText/useInputNumber.ts +0 -40
  410. package/src/components/VvInputText/useInputPassword.ts +0 -38
  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 -55
  419. package/src/components/VvTextarea/constants.ts +0 -14
  420. package/src/composables/focus/useComponentFocus.ts +0 -22
  421. package/src/composables/icons/useComponentIcons.ts +0 -52
  422. package/src/composables/options/useOptions.ts +0 -27
  423. package/src/stories/Accordion/AccordionBordered.stories.mdx +0 -26
  424. package/src/stories/Accordion/AccordionIconRight.stories.mdx +0 -32
  425. package/src/stories/Accordion/accordionTest.js +0 -36
  426. package/src/stories/AccordionGroup/Accordion.stories.mdx +0 -42
  427. package/src/stories/AccordionGroup/AccordionItems.stories.mdx +0 -51
  428. package/src/stories/AccordionGroup/accordionGroupTest.js +0 -51
  429. package/src/stories/Badge/BadgeColor.stories.mdx +0 -54
  430. package/src/stories/Badge/BadgeDot.stories.mdx +0 -20
  431. package/src/stories/Badge/BadgeTest.js +0 -21
  432. package/src/stories/Breadcrumb/BreadcrumbMultiline.stories.mdx +0 -41
  433. package/src/stories/Button/ButtonBadge.stories.mdx +0 -34
  434. package/src/stories/Button/ButtonIconPosition.stories.mdx +0 -106
  435. package/src/stories/Button/ButtonVariant.stories.mdx +0 -205
  436. package/src/stories/Button/test.js +0 -41
  437. package/src/stories/ButtonGroup/ButtonGroupAction.stories.mdx +0 -83
  438. package/src/stories/ButtonGroup/ButtonGroupActionQuiet.stories.mdx +0 -50
  439. package/src/stories/ButtonGroup/ButtonGroupBlock.stories.mdx +0 -40
  440. package/src/stories/ButtonGroup/ButtonGroupCompact.stories.mdx +0 -38
  441. package/src/stories/ButtonGroup/ButtonGroupRounded.stories.mdx +0 -77
  442. package/src/stories/ButtonGroup/ButtonGroupTest.js +0 -61
  443. package/src/stories/ButtonGroup/ButtonGroupVertical.stories.mdx +0 -38
  444. package/src/stories/Card/CardVariant.stories.mdx +0 -37
  445. package/src/stories/Check/Check.stories.mdx +0 -62
  446. package/src/stories/Check/CheckBinary.stories.mdx +0 -80
  447. package/src/stories/Check/CheckDisabled.stories.mdx +0 -30
  448. package/src/stories/Check/CheckError.stories.mdx +0 -64
  449. package/src/stories/Check/CheckErrorTests.js +0 -72
  450. package/src/stories/Check/CheckHintLabel.stories.mdx +0 -30
  451. package/src/stories/Check/CheckPropertyTest.js +0 -101
  452. package/src/stories/Check/CheckReadonly.stories.mdx +0 -30
  453. package/src/stories/Check/CheckSlots.stories.mdx +0 -51
  454. package/src/stories/Check/CheckSwitch.stories.mdx +0 -30
  455. package/src/stories/CheckGroup/CheckGroup.stories.mdx +0 -69
  456. package/src/stories/CheckGroup/CheckGroupDisabled.stories.mdx +0 -26
  457. package/src/stories/CheckGroup/CheckGroupError.stories.mdx +0 -28
  458. package/src/stories/CheckGroup/CheckGroupHintLabel.stories.mdx +0 -27
  459. package/src/stories/CheckGroup/CheckGroupLabel.stories.mdx +0 -26
  460. package/src/stories/CheckGroup/CheckGroupOptionLabel.stories.mdx +0 -48
  461. package/src/stories/CheckGroup/CheckGroupOptionValue.stories.mdx +0 -48
  462. package/src/stories/CheckGroup/CheckGroupOptions.stories.mdx +0 -40
  463. package/src/stories/CheckGroup/CheckGroupReadonly.stories.mdx +0 -26
  464. package/src/stories/CheckGroup/CheckGroupSlots.stories.mdx +0 -152
  465. package/src/stories/CheckGroup/CheckGroupValid.stories.mdx +0 -28
  466. package/src/stories/CheckGroup/CheckGroupVertical.stories.mdx +0 -26
  467. package/src/stories/Dialog/DialogAutoClose.stories.mdx +0 -18
  468. package/src/stories/Dialog/DialogSize.stories.mdx +0 -36
  469. package/src/stories/Dropdown/DropdownDisabled.stories.mdx +0 -25
  470. package/src/stories/Dropdown/DropdownLabelNoResults.stories.mdx +0 -25
  471. package/src/stories/Dropdown/DropdownMaxValues.stories.mdx +0 -26
  472. package/src/stories/Dropdown/DropdownMultiple.stories.mdx +0 -56
  473. package/src/stories/Dropdown/DropdownUseObject.stories.mdx +0 -58
  474. package/src/stories/Icon/IconList.vue +0 -34
  475. package/src/stories/Icon/IconPrefix.stories.mdx +0 -79
  476. package/src/stories/Icon/IconRemote.stories.mdx +0 -39
  477. package/src/stories/Icon/IconTest.js +0 -27
  478. package/src/stories/Icon/IconsList.stories.mdx +0 -35
  479. package/src/stories/InputText/InputTextAutocomplete.stories.mdx +0 -15
  480. package/src/stories/InputText/InputTextAutofocus.stories.mdx +0 -20
  481. package/src/stories/InputText/InputTextDisabled.stories.mdx +0 -19
  482. package/src/stories/InputText/InputTextError.stories.mdx +0 -19
  483. package/src/stories/InputText/InputTextFloating.stories.mdx +0 -20
  484. package/src/stories/InputText/InputTextHintLabel.stories.mdx +0 -18
  485. package/src/stories/InputText/InputTextIcon.stories.mdx +0 -18
  486. package/src/stories/InputText/InputTextLabel.stories.mdx +0 -15
  487. package/src/stories/InputText/InputTextLoading.stories.mdx +0 -19
  488. package/src/stories/InputText/InputTextMax.stories.mdx +0 -31
  489. package/src/stories/InputText/InputTextMaxLength.stories.mdx +0 -15
  490. package/src/stories/InputText/InputTextMin.stories.mdx +0 -31
  491. package/src/stories/InputText/InputTextMinLength.stories.mdx +0 -15
  492. package/src/stories/InputText/InputTextPlaceholder.stories.mdx +0 -15
  493. package/src/stories/InputText/InputTextReadonly.stories.mdx +0 -19
  494. package/src/stories/InputText/InputTextStep.stories.mdx +0 -31
  495. package/src/stories/InputText/InputTextValid.stories.mdx +0 -19
  496. package/src/stories/NativeSelect/NativeSelect.stories.mdx +0 -53
  497. package/src/stories/NativeSelect/NativeSelectDisabled.stories.mdx +0 -32
  498. package/src/stories/NativeSelect/NativeSelectError.stories.mdx +0 -36
  499. package/src/stories/NativeSelect/NativeSelectHintLabel.stories.mdx +0 -34
  500. package/src/stories/NativeSelect/NativeSelectIconLeftRight.stories.mdx +0 -42
  501. package/src/stories/NativeSelect/NativeSelectLoading.stories.mdx +0 -27
  502. package/src/stories/NativeSelect/NativeSelectOptions.stories.mdx +0 -78
  503. package/src/stories/NativeSelect/NativeSelectReadonly.stories.mdx +0 -34
  504. package/src/stories/NativeSelect/NativeSelectUseObject.stories.mdx +0 -66
  505. package/src/stories/NativeSelect/NativeSelectValid.stories.mdx +0 -36
  506. package/src/stories/NativeSelect/NativeSelectValueKey.stories.mdx +0 -66
  507. package/src/stories/Progress/ProgressDeterminate.stories.mdx +0 -19
  508. package/src/stories/Radio/RadioDisabled.stories.mdx +0 -30
  509. package/src/stories/Radio/RadioError.stories.mdx +0 -64
  510. package/src/stories/Radio/RadioHintLabel.stories.mdx +0 -30
  511. package/src/stories/Radio/RadioTest.js +0 -89
  512. package/src/stories/RadioGroup/RadioGroupDisabled.stories.mdx +0 -29
  513. package/src/stories/RadioGroup/RadioGroupError.stories.mdx +0 -31
  514. package/src/stories/RadioGroup/RadioGroupHintLabel.stories.mdx +0 -28
  515. package/src/stories/RadioGroup/RadioGroupLabel.stories.mdx +0 -29
  516. package/src/stories/RadioGroup/RadioGroupOptionLabel.stories.mdx +0 -65
  517. package/src/stories/RadioGroup/RadioGroupOptionValue.stories.mdx +0 -65
  518. package/src/stories/RadioGroup/RadioGroupReadonly.stories.mdx +0 -29
  519. package/src/stories/RadioGroup/RadioGroupValid.stories.mdx +0 -31
  520. package/src/stories/RadioGroup/RadioGroupVertical.stories.mdx +0 -29
  521. package/src/stories/RadioGroup/RadioOptionsTest.js +0 -78
  522. package/src/stories/RadioGroup/RadioPropertyTest.js +0 -131
  523. package/src/stories/RadioGroup/RadioSlotsTest.js +0 -20
  524. package/src/stories/Select/SelectDisabled.stories.mdx +0 -32
  525. package/src/stories/Select/SelectMaxValues.stories.mdx +0 -33
  526. package/src/stories/Select/SelectMultiple.stories.mdx +0 -64
  527. package/src/stories/Select/SelectSearchable.stories.mdx +0 -80
  528. package/src/stories/Select/SelectSeparator.stories.mdx +0 -64
  529. package/src/stories/Select/SelectUseObject.stories.mdx +0 -66
  530. package/src/stories/Textarea/TextareaAutocomplete.stories.mdx +0 -15
  531. package/src/stories/Textarea/TextareaAutofocus.stories.mdx +0 -20
  532. package/src/stories/Textarea/TextareaDisabled.stories.mdx +0 -19
  533. package/src/stories/Textarea/TextareaError.stories.mdx +0 -19
  534. package/src/stories/Textarea/TextareaFloating.stories.mdx +0 -20
  535. package/src/stories/Textarea/TextareaHintLabel.stories.mdx +0 -18
  536. package/src/stories/Textarea/TextareaIcon.stories.mdx +0 -18
  537. package/src/stories/Textarea/TextareaIconPosition.stories.mdx +0 -31
  538. package/src/stories/Textarea/TextareaLabel.stories.mdx +0 -15
  539. package/src/stories/Textarea/TextareaLoading.stories.mdx +0 -19
  540. package/src/stories/Textarea/TextareaMaxLength.stories.mdx +0 -15
  541. package/src/stories/Textarea/TextareaMinLength.stories.mdx +0 -15
  542. package/src/stories/Textarea/TextareaPlaceholder.stories.mdx +0 -15
  543. package/src/stories/Textarea/TextareaReadonly.stories.mdx +0 -19
  544. package/src/stories/Textarea/TextareaRowsCols.stories.mdx +0 -31
  545. package/src/stories/Textarea/TextareaValid.stories.mdx +0 -19
  546. package/src/stories/stories.scss +0 -24
  547. package/src/stories/volver-ui-vue.stories.mdx +0 -71
  548. package/src/types/.README +0 -0
@@ -0,0 +1,1881 @@
1
+ import normal from './assets/icons/normal.json';
2
+ declare const _default: ({
3
+ prefix: string;
4
+ lastModified: number;
5
+ icons: {
6
+ add: {
7
+ body: string;
8
+ };
9
+ "add-circle": {
10
+ body: string;
11
+ };
12
+ "align-center": {
13
+ body: string;
14
+ };
15
+ "align-justify": {
16
+ body: string;
17
+ };
18
+ "align-left": {
19
+ body: string;
20
+ };
21
+ "align-right": {
22
+ body: string;
23
+ };
24
+ analysis: {
25
+ body: string;
26
+ };
27
+ "analysis-2": {
28
+ body: string;
29
+ };
30
+ "analysis-3": {
31
+ body: string;
32
+ };
33
+ apple: {
34
+ body: string;
35
+ };
36
+ "arrow-down": {
37
+ body: string;
38
+ };
39
+ "arrow-left": {
40
+ body: string;
41
+ };
42
+ "arrow-right": {
43
+ body: string;
44
+ };
45
+ "arrow-up": {
46
+ body: string;
47
+ };
48
+ attachment: {
49
+ body: string;
50
+ };
51
+ "back-to-front": {
52
+ body: string;
53
+ };
54
+ bell: {
55
+ body: string;
56
+ };
57
+ "bell-active": {
58
+ body: string;
59
+ };
60
+ bold: {
61
+ body: string;
62
+ };
63
+ bookmark: {
64
+ body: string;
65
+ };
66
+ "bookmark-active": {
67
+ body: string;
68
+ };
69
+ building: {
70
+ body: string;
71
+ };
72
+ "bulleted-list": {
73
+ body: string;
74
+ };
75
+ calendar: {
76
+ body: string;
77
+ };
78
+ "camera-off": {
79
+ body: string;
80
+ };
81
+ "camera-on": {
82
+ body: string;
83
+ };
84
+ catalog: {
85
+ body: string;
86
+ };
87
+ certificate: {
88
+ body: string;
89
+ };
90
+ chat: {
91
+ body: string;
92
+ };
93
+ check: {
94
+ body: string;
95
+ };
96
+ "check-badge": {
97
+ body: string;
98
+ };
99
+ "check-circle": {
100
+ body: string;
101
+ };
102
+ checkbox: {
103
+ body: string;
104
+ };
105
+ "chevron-down": {
106
+ body: string;
107
+ };
108
+ "chevron-down-circle": {
109
+ body: string;
110
+ };
111
+ "chevron-left": {
112
+ body: string;
113
+ };
114
+ "chevron-left-circle": {
115
+ body: string;
116
+ };
117
+ "chevron-right": {
118
+ body: string;
119
+ };
120
+ "chevron-right-circle": {
121
+ body: string;
122
+ };
123
+ "chevron-up": {
124
+ body: string;
125
+ };
126
+ "chevron-up-circle": {
127
+ body: string;
128
+ };
129
+ classroom: {
130
+ body: string;
131
+ };
132
+ "clear-field": {
133
+ body: string;
134
+ };
135
+ "clear-style": {
136
+ body: string;
137
+ };
138
+ close: {
139
+ body: string;
140
+ };
141
+ "close-circle": {
142
+ body: string;
143
+ };
144
+ "close-loader": {
145
+ body: string;
146
+ };
147
+ coffee: {
148
+ body: string;
149
+ width: number;
150
+ height: number;
151
+ };
152
+ color: {
153
+ body: string;
154
+ };
155
+ "contact-us": {
156
+ body: string;
157
+ };
158
+ copy: {
159
+ body: string;
160
+ };
161
+ courses: {
162
+ body: string;
163
+ };
164
+ dashboard: {
165
+ body: string;
166
+ };
167
+ download: {
168
+ body: string;
169
+ };
170
+ drag: {
171
+ body: string;
172
+ };
173
+ dulicate: {
174
+ body: string;
175
+ };
176
+ edit: {
177
+ body: string;
178
+ };
179
+ elearning: {
180
+ body: string;
181
+ };
182
+ email: {
183
+ body: string;
184
+ };
185
+ error: {
186
+ body: string;
187
+ };
188
+ "error-2": {
189
+ body: string;
190
+ };
191
+ exercise: {
192
+ body: string;
193
+ };
194
+ "external-link": {
195
+ body: string;
196
+ };
197
+ extract: {
198
+ body: string;
199
+ };
200
+ "eye-off": {
201
+ body: string;
202
+ };
203
+ "eye-on": {
204
+ body: string;
205
+ };
206
+ fail: {
207
+ body: string;
208
+ };
209
+ "fast-back": {
210
+ body: string;
211
+ };
212
+ "fast-forward": {
213
+ body: string;
214
+ };
215
+ file: {
216
+ body: string;
217
+ };
218
+ "file-add": {
219
+ body: string;
220
+ };
221
+ "file-duplicate": {
222
+ body: string;
223
+ };
224
+ "file-remove": {
225
+ body: string;
226
+ };
227
+ "file-required": {
228
+ body: string;
229
+ };
230
+ filter: {
231
+ body: string;
232
+ };
233
+ "filter-2": {
234
+ body: string;
235
+ };
236
+ "filter-active": {
237
+ body: string;
238
+ };
239
+ flag: {
240
+ body: string;
241
+ };
242
+ folder: {
243
+ body: string;
244
+ };
245
+ "full-width": {
246
+ body: string;
247
+ };
248
+ "go-to-back": {
249
+ body: string;
250
+ };
251
+ grid: {
252
+ body: string;
253
+ };
254
+ group: {
255
+ body: string;
256
+ };
257
+ "group-add": {
258
+ body: string;
259
+ };
260
+ heart: {
261
+ body: string;
262
+ };
263
+ "heart-active": {
264
+ body: string;
265
+ };
266
+ highlighter: {
267
+ body: string;
268
+ };
269
+ home: {
270
+ body: string;
271
+ };
272
+ hourglass: {
273
+ body: string;
274
+ };
275
+ image: {
276
+ body: string;
277
+ };
278
+ "info-badge": {
279
+ body: string;
280
+ };
281
+ information: {
282
+ body: string;
283
+ };
284
+ italic: {
285
+ body: string;
286
+ };
287
+ key: {
288
+ body: string;
289
+ };
290
+ language: {
291
+ body: string;
292
+ };
293
+ "learning-path": {
294
+ body: string;
295
+ };
296
+ "light-off": {
297
+ body: string;
298
+ };
299
+ "light-on": {
300
+ body: string;
301
+ };
302
+ link: {
303
+ body: string;
304
+ };
305
+ lock: {
306
+ body: string;
307
+ };
308
+ login: {
309
+ body: string;
310
+ };
311
+ logout: {
312
+ body: string;
313
+ };
314
+ maximize: {
315
+ body: string;
316
+ };
317
+ menu: {
318
+ body: string;
319
+ };
320
+ merge: {
321
+ body: string;
322
+ };
323
+ minimize: {
324
+ body: string;
325
+ };
326
+ "mixed-class": {
327
+ body: string;
328
+ };
329
+ "more-horizontal": {
330
+ body: string;
331
+ };
332
+ "more-vertical": {
333
+ body: string;
334
+ };
335
+ news: {
336
+ body: string;
337
+ };
338
+ "no-prerequisites": {
339
+ body: string;
340
+ };
341
+ notes: {
342
+ body: string;
343
+ };
344
+ "number-code": {
345
+ body: string;
346
+ };
347
+ "numbered-list": {
348
+ body: string;
349
+ };
350
+ "on-site": {
351
+ body: string;
352
+ };
353
+ "order-down": {
354
+ body: string;
355
+ };
356
+ "order-up": {
357
+ body: string;
358
+ };
359
+ paste: {
360
+ body: string;
361
+ };
362
+ pausa: {
363
+ body: string;
364
+ };
365
+ pdf: {
366
+ body: string;
367
+ };
368
+ phone: {
369
+ body: string;
370
+ };
371
+ pin: {
372
+ body: string;
373
+ };
374
+ "pin-map": {
375
+ body: string;
376
+ };
377
+ pizza: {
378
+ body: string;
379
+ };
380
+ play: {
381
+ body: string;
382
+ };
383
+ "plug-in": {
384
+ body: string;
385
+ };
386
+ pointer: {
387
+ body: string;
388
+ };
389
+ printer: {
390
+ body: string;
391
+ };
392
+ profile: {
393
+ body: string;
394
+ };
395
+ "profile-add": {
396
+ body: string;
397
+ };
398
+ "push-pin-off": {
399
+ body: string;
400
+ };
401
+ "push-pin-on": {
402
+ body: string;
403
+ };
404
+ qrcode: {
405
+ body: string;
406
+ };
407
+ "question-badge": {
408
+ body: string;
409
+ };
410
+ radio: {
411
+ body: string;
412
+ };
413
+ redo: {
414
+ body: string;
415
+ };
416
+ relations: {
417
+ body: string;
418
+ };
419
+ reload: {
420
+ body: string;
421
+ };
422
+ remove: {
423
+ body: string;
424
+ };
425
+ "remove-circle": {
426
+ body: string;
427
+ };
428
+ reorder: {
429
+ body: string;
430
+ };
431
+ repeat: {
432
+ body: string;
433
+ };
434
+ repository: {
435
+ body: string;
436
+ };
437
+ "request-form": {
438
+ body: string;
439
+ };
440
+ "resize-100": {
441
+ body: string;
442
+ };
443
+ "resize-height": {
444
+ body: string;
445
+ };
446
+ "resize-width": {
447
+ body: string;
448
+ };
449
+ search: {
450
+ body: string;
451
+ };
452
+ "sequential-prerequisites": {
453
+ body: string;
454
+ };
455
+ settings: {
456
+ body: string;
457
+ };
458
+ share: {
459
+ body: string;
460
+ };
461
+ sketch: {
462
+ body: string;
463
+ };
464
+ skills: {
465
+ body: string;
466
+ };
467
+ "skip-back": {
468
+ body: string;
469
+ };
470
+ "skip-forward": {
471
+ body: string;
472
+ };
473
+ sms: {
474
+ body: string;
475
+ };
476
+ "sso-access": {
477
+ body: string;
478
+ };
479
+ star: {
480
+ body: string;
481
+ };
482
+ "star-active": {
483
+ body: string;
484
+ };
485
+ success: {
486
+ body: string;
487
+ };
488
+ sun: {
489
+ body: string;
490
+ };
491
+ sunrise: {
492
+ body: string;
493
+ };
494
+ support: {
495
+ body: string;
496
+ };
497
+ survey: {
498
+ body: string;
499
+ };
500
+ table: {
501
+ body: string;
502
+ };
503
+ "tematic-channels": {
504
+ body: string;
505
+ };
506
+ test: {
507
+ body: string;
508
+ };
509
+ "text-body": {
510
+ body: string;
511
+ };
512
+ "text-edit": {
513
+ body: string;
514
+ };
515
+ "text-style": {
516
+ body: string;
517
+ };
518
+ time: {
519
+ body: string;
520
+ };
521
+ "toilet-paper": {
522
+ body: string;
523
+ };
524
+ "training-points": {
525
+ body: string;
526
+ };
527
+ trash: {
528
+ body: string;
529
+ };
530
+ underline: {
531
+ body: string;
532
+ };
533
+ undo: {
534
+ body: string;
535
+ };
536
+ unlock: {
537
+ body: string;
538
+ };
539
+ upload: {
540
+ body: string;
541
+ };
542
+ user: {
543
+ body: string;
544
+ };
545
+ "user-add": {
546
+ body: string;
547
+ };
548
+ "user-badge": {
549
+ body: string;
550
+ };
551
+ "video-off": {
552
+ body: string;
553
+ };
554
+ "video-on": {
555
+ body: string;
556
+ };
557
+ "video-rec": {
558
+ body: string;
559
+ };
560
+ view: {
561
+ body: string;
562
+ };
563
+ "view-card": {
564
+ body: string;
565
+ };
566
+ "view-list": {
567
+ body: string;
568
+ };
569
+ "voice-off": {
570
+ body: string;
571
+ };
572
+ "voice-on": {
573
+ body: string;
574
+ };
575
+ "volume-down": {
576
+ body: string;
577
+ };
578
+ "volume-off": {
579
+ body: string;
580
+ };
581
+ "volume-up": {
582
+ body: string;
583
+ };
584
+ warning: {
585
+ body: string;
586
+ };
587
+ webinar: {
588
+ body: string;
589
+ };
590
+ whiteboard: {
591
+ body: string;
592
+ };
593
+ wine: {
594
+ body: string;
595
+ };
596
+ zip: {
597
+ body: string;
598
+ };
599
+ "zoom-in": {
600
+ body: string;
601
+ };
602
+ "zoom-out": {
603
+ body: string;
604
+ };
605
+ };
606
+ width: number;
607
+ height: number;
608
+ } | {
609
+ prefix: string;
610
+ lastModified: number;
611
+ icons: {
612
+ add: {
613
+ body: string;
614
+ };
615
+ "add-circle": {
616
+ body: string;
617
+ };
618
+ "align-center": {
619
+ body: string;
620
+ };
621
+ "align-justify": {
622
+ body: string;
623
+ };
624
+ "align-left": {
625
+ body: string;
626
+ };
627
+ "align-right": {
628
+ body: string;
629
+ };
630
+ analysis: {
631
+ body: string;
632
+ };
633
+ "analysis-2": {
634
+ body: string;
635
+ };
636
+ "analysis-3": {
637
+ body: string;
638
+ };
639
+ apple: {
640
+ body: string;
641
+ };
642
+ "arrow-down": {
643
+ body: string;
644
+ };
645
+ "arrow-left": {
646
+ body: string;
647
+ };
648
+ "arrow-right": {
649
+ body: string;
650
+ };
651
+ "arrow-up": {
652
+ body: string;
653
+ };
654
+ attachment: {
655
+ body: string;
656
+ };
657
+ "back-to-front": {
658
+ body: string;
659
+ };
660
+ bell: {
661
+ body: string;
662
+ };
663
+ "bell-active": {
664
+ body: string;
665
+ };
666
+ bold: {
667
+ body: string;
668
+ };
669
+ bookmark: {
670
+ body: string;
671
+ };
672
+ "bookmark-active": {
673
+ body: string;
674
+ };
675
+ building: {
676
+ body: string;
677
+ };
678
+ "bullet-list": {
679
+ body: string;
680
+ };
681
+ calendar: {
682
+ body: string;
683
+ };
684
+ "camera-off": {
685
+ body: string;
686
+ };
687
+ "camera-on": {
688
+ body: string;
689
+ };
690
+ catalog: {
691
+ body: string;
692
+ };
693
+ certificate: {
694
+ body: string;
695
+ };
696
+ chat: {
697
+ body: string;
698
+ };
699
+ check: {
700
+ body: string;
701
+ };
702
+ "check-badge": {
703
+ body: string;
704
+ };
705
+ "check-circle": {
706
+ body: string;
707
+ };
708
+ checkbox: {
709
+ body: string;
710
+ };
711
+ "chevron-down": {
712
+ body: string;
713
+ };
714
+ "chevron-down-circle": {
715
+ body: string;
716
+ };
717
+ "chevron-left": {
718
+ body: string;
719
+ };
720
+ "chevron-left-circle": {
721
+ body: string;
722
+ };
723
+ "chevron-right-circle": {
724
+ body: string;
725
+ };
726
+ "chevron-up": {
727
+ body: string;
728
+ };
729
+ "chevron-up-circle": {
730
+ body: string;
731
+ };
732
+ classroom: {
733
+ body: string;
734
+ };
735
+ "clear-field": {
736
+ body: string;
737
+ };
738
+ "clear-style": {
739
+ body: string;
740
+ };
741
+ close: {
742
+ body: string;
743
+ };
744
+ "close-circle": {
745
+ body: string;
746
+ };
747
+ "close-loader": {
748
+ body: string;
749
+ };
750
+ coffee: {
751
+ body: string;
752
+ };
753
+ color: {
754
+ body: string;
755
+ };
756
+ "contact-us": {
757
+ body: string;
758
+ };
759
+ copy: {
760
+ body: string;
761
+ };
762
+ courses: {
763
+ body: string;
764
+ };
765
+ dashboard: {
766
+ body: string;
767
+ };
768
+ download: {
769
+ body: string;
770
+ };
771
+ drag: {
772
+ body: string;
773
+ };
774
+ duplicate: {
775
+ body: string;
776
+ };
777
+ edit: {
778
+ body: string;
779
+ };
780
+ elearning: {
781
+ body: string;
782
+ };
783
+ email: {
784
+ body: string;
785
+ };
786
+ error: {
787
+ body: string;
788
+ };
789
+ "error-2": {
790
+ body: string;
791
+ };
792
+ exercise: {
793
+ body: string;
794
+ };
795
+ "external-link": {
796
+ body: string;
797
+ };
798
+ extract: {
799
+ body: string;
800
+ width: number;
801
+ height: number;
802
+ };
803
+ "eye-off": {
804
+ body: string;
805
+ };
806
+ "eye-on": {
807
+ body: string;
808
+ };
809
+ fail: {
810
+ body: string;
811
+ };
812
+ "fast-back": {
813
+ body: string;
814
+ };
815
+ "fast-forward": {
816
+ body: string;
817
+ };
818
+ file: {
819
+ body: string;
820
+ };
821
+ "file-add": {
822
+ body: string;
823
+ };
824
+ "file-duplicate": {
825
+ body: string;
826
+ };
827
+ "file-remove": {
828
+ body: string;
829
+ };
830
+ "file-required": {
831
+ body: string;
832
+ };
833
+ filter: {
834
+ body: string;
835
+ };
836
+ "filter-2": {
837
+ body: string;
838
+ };
839
+ "filter-active": {
840
+ body: string;
841
+ };
842
+ flag: {
843
+ body: string;
844
+ };
845
+ folder: {
846
+ body: string;
847
+ };
848
+ "full-width": {
849
+ body: string;
850
+ };
851
+ "go-to-back": {
852
+ body: string;
853
+ };
854
+ grid: {
855
+ body: string;
856
+ };
857
+ group: {
858
+ body: string;
859
+ };
860
+ "group-add": {
861
+ body: string;
862
+ };
863
+ heart: {
864
+ body: string;
865
+ };
866
+ "heart-active": {
867
+ body: string;
868
+ };
869
+ highlighter: {
870
+ body: string;
871
+ };
872
+ home: {
873
+ body: string;
874
+ };
875
+ hourglass: {
876
+ body: string;
877
+ };
878
+ image: {
879
+ body: string;
880
+ };
881
+ "info-badge": {
882
+ body: string;
883
+ };
884
+ information: {
885
+ body: string;
886
+ };
887
+ italic: {
888
+ body: string;
889
+ };
890
+ key: {
891
+ body: string;
892
+ };
893
+ language: {
894
+ body: string;
895
+ };
896
+ "learning-path": {
897
+ body: string;
898
+ };
899
+ "light-off": {
900
+ body: string;
901
+ };
902
+ "light-on": {
903
+ body: string;
904
+ };
905
+ link: {
906
+ body: string;
907
+ };
908
+ lock: {
909
+ body: string;
910
+ };
911
+ login: {
912
+ body: string;
913
+ };
914
+ logout: {
915
+ body: string;
916
+ };
917
+ maximaze: {
918
+ body: string;
919
+ };
920
+ menu: {
921
+ body: string;
922
+ };
923
+ merge: {
924
+ body: string;
925
+ };
926
+ minimize: {
927
+ body: string;
928
+ };
929
+ "mixed-class": {
930
+ body: string;
931
+ };
932
+ "more-horizontal": {
933
+ body: string;
934
+ };
935
+ "more-vertical": {
936
+ body: string;
937
+ };
938
+ news: {
939
+ body: string;
940
+ };
941
+ "no-prerequisites": {
942
+ body: string;
943
+ };
944
+ notes: {
945
+ body: string;
946
+ };
947
+ "number-code": {
948
+ body: string;
949
+ };
950
+ "numbered-list": {
951
+ body: string;
952
+ };
953
+ "on-site": {
954
+ body: string;
955
+ };
956
+ "order-down": {
957
+ body: string;
958
+ };
959
+ "order-up": {
960
+ body: string;
961
+ };
962
+ paste: {
963
+ body: string;
964
+ };
965
+ pausa: {
966
+ body: string;
967
+ };
968
+ pdf: {
969
+ body: string;
970
+ };
971
+ phone: {
972
+ body: string;
973
+ };
974
+ pin: {
975
+ body: string;
976
+ };
977
+ "pin-map": {
978
+ body: string;
979
+ };
980
+ pizza: {
981
+ body: string;
982
+ };
983
+ play: {
984
+ body: string;
985
+ };
986
+ "plug-in": {
987
+ body: string;
988
+ };
989
+ pointer: {
990
+ body: string;
991
+ };
992
+ printer: {
993
+ body: string;
994
+ };
995
+ profile: {
996
+ body: string;
997
+ };
998
+ "profile-add": {
999
+ body: string;
1000
+ };
1001
+ "push-pin-off": {
1002
+ body: string;
1003
+ };
1004
+ "push-pin-on": {
1005
+ body: string;
1006
+ };
1007
+ qrcode: {
1008
+ body: string;
1009
+ };
1010
+ "question-badge": {
1011
+ body: string;
1012
+ };
1013
+ radio: {
1014
+ body: string;
1015
+ };
1016
+ redo: {
1017
+ body: string;
1018
+ };
1019
+ relations: {
1020
+ body: string;
1021
+ };
1022
+ reload: {
1023
+ body: string;
1024
+ };
1025
+ remove: {
1026
+ body: string;
1027
+ };
1028
+ "remove-circle": {
1029
+ body: string;
1030
+ };
1031
+ reorder: {
1032
+ body: string;
1033
+ };
1034
+ repeat: {
1035
+ body: string;
1036
+ };
1037
+ repository: {
1038
+ body: string;
1039
+ };
1040
+ "request-form": {
1041
+ body: string;
1042
+ };
1043
+ "resize-100": {
1044
+ body: string;
1045
+ };
1046
+ "resize-height": {
1047
+ body: string;
1048
+ };
1049
+ "resize-width": {
1050
+ body: string;
1051
+ };
1052
+ search: {
1053
+ body: string;
1054
+ };
1055
+ "sequential-prerequisites": {
1056
+ body: string;
1057
+ };
1058
+ settings: {
1059
+ body: string;
1060
+ };
1061
+ share: {
1062
+ body: string;
1063
+ };
1064
+ sketch: {
1065
+ body: string;
1066
+ };
1067
+ skills: {
1068
+ body: string;
1069
+ };
1070
+ "skip-back": {
1071
+ body: string;
1072
+ };
1073
+ "skip-forward": {
1074
+ body: string;
1075
+ };
1076
+ sms: {
1077
+ body: string;
1078
+ };
1079
+ "sso-access": {
1080
+ body: string;
1081
+ };
1082
+ star: {
1083
+ body: string;
1084
+ };
1085
+ "star-active": {
1086
+ body: string;
1087
+ };
1088
+ success: {
1089
+ body: string;
1090
+ };
1091
+ sun: {
1092
+ body: string;
1093
+ };
1094
+ sunrise: {
1095
+ body: string;
1096
+ };
1097
+ support: {
1098
+ body: string;
1099
+ };
1100
+ survey: {
1101
+ body: string;
1102
+ };
1103
+ table: {
1104
+ body: string;
1105
+ };
1106
+ "tematic-channels": {
1107
+ body: string;
1108
+ };
1109
+ test: {
1110
+ body: string;
1111
+ };
1112
+ "text-body": {
1113
+ body: string;
1114
+ };
1115
+ "text-edit": {
1116
+ body: string;
1117
+ };
1118
+ "text-style": {
1119
+ body: string;
1120
+ };
1121
+ time: {
1122
+ body: string;
1123
+ };
1124
+ "toilet-piper": {
1125
+ body: string;
1126
+ };
1127
+ "training-points": {
1128
+ body: string;
1129
+ };
1130
+ trash: {
1131
+ body: string;
1132
+ };
1133
+ underline: {
1134
+ body: string;
1135
+ };
1136
+ undo: {
1137
+ body: string;
1138
+ };
1139
+ unlock: {
1140
+ body: string;
1141
+ };
1142
+ upload: {
1143
+ body: string;
1144
+ };
1145
+ user: {
1146
+ body: string;
1147
+ };
1148
+ "user-add": {
1149
+ body: string;
1150
+ };
1151
+ "user-badge": {
1152
+ body: string;
1153
+ };
1154
+ "video-off": {
1155
+ body: string;
1156
+ };
1157
+ "video-on": {
1158
+ body: string;
1159
+ };
1160
+ "video-rec": {
1161
+ body: string;
1162
+ };
1163
+ view: {
1164
+ body: string;
1165
+ };
1166
+ "view-card": {
1167
+ body: string;
1168
+ };
1169
+ "view-list": {
1170
+ body: string;
1171
+ };
1172
+ "voice-off": {
1173
+ body: string;
1174
+ width: number;
1175
+ };
1176
+ "voice-on": {
1177
+ body: string;
1178
+ };
1179
+ "volume-down": {
1180
+ body: string;
1181
+ };
1182
+ "volume-off": {
1183
+ body: string;
1184
+ };
1185
+ "volume-up": {
1186
+ body: string;
1187
+ };
1188
+ warning: {
1189
+ body: string;
1190
+ };
1191
+ webinar: {
1192
+ body: string;
1193
+ };
1194
+ whiteboard: {
1195
+ body: string;
1196
+ };
1197
+ wine: {
1198
+ body: string;
1199
+ };
1200
+ zip: {
1201
+ body: string;
1202
+ };
1203
+ "zoom-in": {
1204
+ body: string;
1205
+ };
1206
+ "zoom-out": {
1207
+ body: string;
1208
+ };
1209
+ };
1210
+ width: number;
1211
+ height: number;
1212
+ } | {
1213
+ prefix: string;
1214
+ lastModified: number;
1215
+ icons: {
1216
+ add: {
1217
+ body: string;
1218
+ };
1219
+ "add-circle": {
1220
+ body: string;
1221
+ };
1222
+ "align-center": {
1223
+ body: string;
1224
+ };
1225
+ "align-justify": {
1226
+ body: string;
1227
+ };
1228
+ "align-left": {
1229
+ body: string;
1230
+ };
1231
+ "align-right": {
1232
+ body: string;
1233
+ };
1234
+ analysis: {
1235
+ body: string;
1236
+ };
1237
+ "analysis-2": {
1238
+ body: string;
1239
+ };
1240
+ "analysis-3": {
1241
+ body: string;
1242
+ };
1243
+ apple: {
1244
+ body: string;
1245
+ height: number;
1246
+ };
1247
+ "arrow-down": {
1248
+ body: string;
1249
+ height: number;
1250
+ };
1251
+ "arrow-left": {
1252
+ body: string;
1253
+ };
1254
+ "arrow-right": {
1255
+ body: string;
1256
+ };
1257
+ "arrow-up": {
1258
+ body: string;
1259
+ };
1260
+ attachment: {
1261
+ body: string;
1262
+ width: number;
1263
+ height: number;
1264
+ };
1265
+ "bck-to-front": {
1266
+ body: string;
1267
+ height: number;
1268
+ };
1269
+ bell: {
1270
+ body: string;
1271
+ };
1272
+ "bell-active": {
1273
+ body: string;
1274
+ };
1275
+ bold: {
1276
+ body: string;
1277
+ };
1278
+ bookmark: {
1279
+ body: string;
1280
+ };
1281
+ "bookmark-active": {
1282
+ body: string;
1283
+ };
1284
+ building: {
1285
+ body: string;
1286
+ height: number;
1287
+ };
1288
+ "bulleted-list": {
1289
+ body: string;
1290
+ };
1291
+ calendar: {
1292
+ body: string;
1293
+ };
1294
+ "camera-off": {
1295
+ body: string;
1296
+ };
1297
+ "camera-on": {
1298
+ body: string;
1299
+ };
1300
+ catalog: {
1301
+ body: string;
1302
+ };
1303
+ certificate: {
1304
+ body: string;
1305
+ width: number;
1306
+ height: number;
1307
+ };
1308
+ chat: {
1309
+ body: string;
1310
+ width: number;
1311
+ height: number;
1312
+ };
1313
+ check: {
1314
+ body: string;
1315
+ };
1316
+ "check-badge": {
1317
+ body: string;
1318
+ };
1319
+ "check-circle": {
1320
+ body: string;
1321
+ };
1322
+ checkbox: {
1323
+ body: string;
1324
+ };
1325
+ "chevron-down": {
1326
+ body: string;
1327
+ };
1328
+ "chevron-down-circle": {
1329
+ body: string;
1330
+ };
1331
+ "chevron-left": {
1332
+ body: string;
1333
+ };
1334
+ "chevron-left-circle": {
1335
+ body: string;
1336
+ };
1337
+ "chevron-right": {
1338
+ body: string;
1339
+ };
1340
+ "chevron-right-circle": {
1341
+ body: string;
1342
+ };
1343
+ "chevron-up": {
1344
+ body: string;
1345
+ };
1346
+ "chevron-up-circle": {
1347
+ body: string;
1348
+ };
1349
+ classroom: {
1350
+ body: string;
1351
+ };
1352
+ "clear-field": {
1353
+ body: string;
1354
+ width: number;
1355
+ height: number;
1356
+ };
1357
+ "clear-style": {
1358
+ body: string;
1359
+ height: number;
1360
+ };
1361
+ close: {
1362
+ body: string;
1363
+ width: number;
1364
+ height: number;
1365
+ };
1366
+ "close-circle": {
1367
+ body: string;
1368
+ };
1369
+ "close-loader": {
1370
+ body: string;
1371
+ };
1372
+ coffee: {
1373
+ body: string;
1374
+ width: number;
1375
+ height: number;
1376
+ };
1377
+ color: {
1378
+ body: string;
1379
+ };
1380
+ "contact-us": {
1381
+ body: string;
1382
+ };
1383
+ copy: {
1384
+ body: string;
1385
+ };
1386
+ courses: {
1387
+ body: string;
1388
+ };
1389
+ dashboard: {
1390
+ body: string;
1391
+ };
1392
+ download: {
1393
+ body: string;
1394
+ };
1395
+ drag: {
1396
+ body: string;
1397
+ };
1398
+ duplicate: {
1399
+ body: string;
1400
+ height: number;
1401
+ };
1402
+ edit: {
1403
+ body: string;
1404
+ height: number;
1405
+ };
1406
+ elearning: {
1407
+ body: string;
1408
+ height: number;
1409
+ };
1410
+ email: {
1411
+ body: string;
1412
+ };
1413
+ error: {
1414
+ body: string;
1415
+ };
1416
+ "error-2": {
1417
+ body: string;
1418
+ };
1419
+ exercise: {
1420
+ body: string;
1421
+ };
1422
+ "external-link": {
1423
+ body: string;
1424
+ width: number;
1425
+ height: number;
1426
+ };
1427
+ extract: {
1428
+ body: string;
1429
+ };
1430
+ "eye-off": {
1431
+ body: string;
1432
+ width: number;
1433
+ };
1434
+ "eye-on": {
1435
+ body: string;
1436
+ width: number;
1437
+ };
1438
+ fail: {
1439
+ body: string;
1440
+ height: number;
1441
+ };
1442
+ "fast-back": {
1443
+ body: string;
1444
+ };
1445
+ "fast-forward": {
1446
+ body: string;
1447
+ };
1448
+ file: {
1449
+ body: string;
1450
+ };
1451
+ "file-add": {
1452
+ body: string;
1453
+ };
1454
+ "file-duplicate": {
1455
+ body: string;
1456
+ };
1457
+ "file-remove": {
1458
+ body: string;
1459
+ };
1460
+ "file-required": {
1461
+ body: string;
1462
+ };
1463
+ filter: {
1464
+ body: string;
1465
+ height: number;
1466
+ };
1467
+ "filter-2": {
1468
+ body: string;
1469
+ };
1470
+ "filter-active": {
1471
+ body: string;
1472
+ height: number;
1473
+ };
1474
+ flag: {
1475
+ body: string;
1476
+ };
1477
+ folder: {
1478
+ body: string;
1479
+ };
1480
+ "full-width": {
1481
+ body: string;
1482
+ };
1483
+ "go-to-back": {
1484
+ body: string;
1485
+ width: number;
1486
+ };
1487
+ grid: {
1488
+ body: string;
1489
+ };
1490
+ group: {
1491
+ body: string;
1492
+ };
1493
+ "group-add": {
1494
+ body: string;
1495
+ height: number;
1496
+ };
1497
+ heart: {
1498
+ body: string;
1499
+ };
1500
+ "heart-active": {
1501
+ body: string;
1502
+ };
1503
+ highlighter: {
1504
+ body: string;
1505
+ };
1506
+ home: {
1507
+ body: string;
1508
+ };
1509
+ hourglass: {
1510
+ body: string;
1511
+ };
1512
+ image: {
1513
+ body: string;
1514
+ };
1515
+ "info-badge": {
1516
+ body: string;
1517
+ height: number;
1518
+ };
1519
+ information: {
1520
+ body: string;
1521
+ };
1522
+ italic: {
1523
+ body: string;
1524
+ height: number;
1525
+ };
1526
+ key: {
1527
+ body: string;
1528
+ height: number;
1529
+ };
1530
+ language: {
1531
+ body: string;
1532
+ };
1533
+ "learning-path": {
1534
+ body: string;
1535
+ height: number;
1536
+ };
1537
+ "light-off": {
1538
+ body: string;
1539
+ };
1540
+ "light-on": {
1541
+ body: string;
1542
+ };
1543
+ link: {
1544
+ body: string;
1545
+ height: number;
1546
+ };
1547
+ lock: {
1548
+ body: string;
1549
+ };
1550
+ login: {
1551
+ body: string;
1552
+ width: number;
1553
+ };
1554
+ logout: {
1555
+ body: string;
1556
+ };
1557
+ maximaze: {
1558
+ body: string;
1559
+ };
1560
+ menu: {
1561
+ body: string;
1562
+ };
1563
+ merge: {
1564
+ body: string;
1565
+ };
1566
+ minimaze: {
1567
+ body: string;
1568
+ };
1569
+ "mixed-class": {
1570
+ body: string;
1571
+ width: number;
1572
+ height: number;
1573
+ };
1574
+ "more-horizontal": {
1575
+ body: string;
1576
+ };
1577
+ "more-vertical": {
1578
+ body: string;
1579
+ height: number;
1580
+ };
1581
+ news: {
1582
+ body: string;
1583
+ };
1584
+ "no-prerequisites": {
1585
+ body: string;
1586
+ };
1587
+ notes: {
1588
+ body: string;
1589
+ };
1590
+ "number-code": {
1591
+ body: string;
1592
+ height: number;
1593
+ };
1594
+ "numbered-list": {
1595
+ body: string;
1596
+ };
1597
+ "on-site": {
1598
+ body: string;
1599
+ };
1600
+ "order-down": {
1601
+ body: string;
1602
+ };
1603
+ "order-up": {
1604
+ body: string;
1605
+ };
1606
+ paste: {
1607
+ body: string;
1608
+ height: number;
1609
+ };
1610
+ pausa: {
1611
+ body: string;
1612
+ };
1613
+ pdf: {
1614
+ body: string;
1615
+ };
1616
+ phone: {
1617
+ body: string;
1618
+ };
1619
+ pin: {
1620
+ body: string;
1621
+ };
1622
+ "pin-map": {
1623
+ body: string;
1624
+ height: number;
1625
+ };
1626
+ pizza: {
1627
+ body: string;
1628
+ width: number;
1629
+ };
1630
+ play: {
1631
+ body: string;
1632
+ };
1633
+ "plug-in": {
1634
+ body: string;
1635
+ width: number;
1636
+ };
1637
+ pointer: {
1638
+ body: string;
1639
+ };
1640
+ printer: {
1641
+ body: string;
1642
+ };
1643
+ profile: {
1644
+ body: string;
1645
+ };
1646
+ "profile-add": {
1647
+ body: string;
1648
+ };
1649
+ "push-pin-off": {
1650
+ body: string;
1651
+ };
1652
+ "push-pin-on": {
1653
+ body: string;
1654
+ width: number;
1655
+ height: number;
1656
+ };
1657
+ qrcode: {
1658
+ body: string;
1659
+ };
1660
+ "question-badge": {
1661
+ body: string;
1662
+ };
1663
+ radio: {
1664
+ body: string;
1665
+ };
1666
+ redo: {
1667
+ body: string;
1668
+ };
1669
+ relations: {
1670
+ body: string;
1671
+ };
1672
+ reload: {
1673
+ body: string;
1674
+ };
1675
+ remove: {
1676
+ body: string;
1677
+ };
1678
+ "remove-circle": {
1679
+ body: string;
1680
+ };
1681
+ repeart: {
1682
+ body: string;
1683
+ width: number;
1684
+ height: number;
1685
+ };
1686
+ repository: {
1687
+ body: string;
1688
+ };
1689
+ "request-form": {
1690
+ body: string;
1691
+ };
1692
+ "resize-100": {
1693
+ body: string;
1694
+ };
1695
+ "resize-height": {
1696
+ body: string;
1697
+ };
1698
+ "resize-width": {
1699
+ body: string;
1700
+ height: number;
1701
+ };
1702
+ search: {
1703
+ body: string;
1704
+ };
1705
+ "sequential-prerequisites": {
1706
+ body: string;
1707
+ };
1708
+ settings: {
1709
+ body: string;
1710
+ };
1711
+ share: {
1712
+ body: string;
1713
+ width: number;
1714
+ };
1715
+ sketch: {
1716
+ body: string;
1717
+ };
1718
+ skills: {
1719
+ body: string;
1720
+ };
1721
+ "skip-back": {
1722
+ body: string;
1723
+ };
1724
+ "skip-forward": {
1725
+ body: string;
1726
+ };
1727
+ sms: {
1728
+ body: string;
1729
+ };
1730
+ "sso-access": {
1731
+ body: string;
1732
+ };
1733
+ star: {
1734
+ body: string;
1735
+ };
1736
+ "star-active": {
1737
+ body: string;
1738
+ };
1739
+ success: {
1740
+ body: string;
1741
+ height: number;
1742
+ };
1743
+ sun: {
1744
+ body: string;
1745
+ };
1746
+ sunrise: {
1747
+ body: string;
1748
+ };
1749
+ support: {
1750
+ body: string;
1751
+ };
1752
+ survey: {
1753
+ body: string;
1754
+ width: number;
1755
+ height: number;
1756
+ };
1757
+ table: {
1758
+ body: string;
1759
+ };
1760
+ "tematic-channels": {
1761
+ body: string;
1762
+ width: number;
1763
+ height: number;
1764
+ };
1765
+ test: {
1766
+ body: string;
1767
+ };
1768
+ "text-body": {
1769
+ body: string;
1770
+ };
1771
+ "text-edit": {
1772
+ body: string;
1773
+ };
1774
+ "text-style": {
1775
+ body: string;
1776
+ };
1777
+ time: {
1778
+ body: string;
1779
+ };
1780
+ "toilet-paper": {
1781
+ body: string;
1782
+ height: number;
1783
+ };
1784
+ "training-points": {
1785
+ body: string;
1786
+ width: number;
1787
+ height: number;
1788
+ };
1789
+ trash: {
1790
+ body: string;
1791
+ };
1792
+ underline: {
1793
+ body: string;
1794
+ };
1795
+ undo: {
1796
+ body: string;
1797
+ width: number;
1798
+ };
1799
+ unlock: {
1800
+ body: string;
1801
+ height: number;
1802
+ };
1803
+ upload: {
1804
+ body: string;
1805
+ };
1806
+ user: {
1807
+ body: string;
1808
+ };
1809
+ "user-add": {
1810
+ body: string;
1811
+ };
1812
+ "user-badge": {
1813
+ body: string;
1814
+ width: number;
1815
+ height: number;
1816
+ };
1817
+ "video-off": {
1818
+ body: string;
1819
+ };
1820
+ "video-on": {
1821
+ body: string;
1822
+ };
1823
+ "video-rec": {
1824
+ body: string;
1825
+ };
1826
+ view: {
1827
+ body: string;
1828
+ width: number;
1829
+ };
1830
+ "view-card": {
1831
+ body: string;
1832
+ };
1833
+ "view-list": {
1834
+ body: string;
1835
+ };
1836
+ "voice-off": {
1837
+ body: string;
1838
+ };
1839
+ "voice-on": {
1840
+ body: string;
1841
+ height: number;
1842
+ };
1843
+ "volume-down": {
1844
+ body: string;
1845
+ width: number;
1846
+ };
1847
+ "volume-off": {
1848
+ body: string;
1849
+ width: number;
1850
+ };
1851
+ "volume-up": {
1852
+ body: string;
1853
+ width: number;
1854
+ };
1855
+ warning: {
1856
+ body: string;
1857
+ };
1858
+ webinar: {
1859
+ body: string;
1860
+ };
1861
+ whiteboard: {
1862
+ body: string;
1863
+ height: number;
1864
+ };
1865
+ wine: {
1866
+ body: string;
1867
+ height: number;
1868
+ };
1869
+ zip: {
1870
+ body: string;
1871
+ };
1872
+ "zoom-in": {
1873
+ body: string;
1874
+ };
1875
+ "zoom-out": {
1876
+ body: string;
1877
+ };
1878
+ };
1879
+ })[];
1880
+ export default _default;
1881
+ export { normal };