@julseb-lib/react 0.1.2 → 0.1.4

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 (1231) hide show
  1. package/.editorconfig +7 -0
  2. package/.prettierrc +5 -0
  3. package/README.md +1 -1
  4. package/eslint.config.js +177 -0
  5. package/index.html +14 -0
  6. package/package.json +41 -67
  7. package/plop/actions/index.ts +1 -0
  8. package/plop/actions/run-command.ts +21 -0
  9. package/plop/generators/component.ts +87 -0
  10. package/plop/generators/demo.ts +38 -0
  11. package/plop/generators/generator.ts +49 -0
  12. package/plop/generators/index.ts +6 -0
  13. package/plop/generators/preview.ts +58 -0
  14. package/plop/generators/subtype.ts +25 -0
  15. package/plop/partials/index.ts +2 -0
  16. package/plop/partials/kebab-name.ts +7 -0
  17. package/plop/partials/pascal-name.ts +7 -0
  18. package/plop/plopfile.ts +32 -0
  19. package/plop/templates/__preview__/preview-props.hbs +34 -0
  20. package/plop/templates/__preview__/preview.hbs +25 -0
  21. package/plop/templates/component/__preview__/preview.hbs +21 -0
  22. package/plop/templates/component/index.ts.hbs +1 -0
  23. package/plop/templates/component/types.ts.hbs +5 -0
  24. package/plop/templates/component/{{ pascalCase name }}.tsx.hbs +32 -0
  25. package/plop/templates/demo.hbs +9 -0
  26. package/plop/templates/generator.hbs +16 -0
  27. package/plop/templates/subtypes.hbs +3 -0
  28. package/plop/utils/addClosingBrackets.ts +13 -0
  29. package/plop/utils/addOpenBrackets.ts +13 -0
  30. package/plop/utils/all-components.ts +72 -0
  31. package/plop/utils/constants.ts +1 -0
  32. package/plop/utils/index.ts +5 -0
  33. package/plop/utils/surround-brackets.ts +12 -0
  34. package/public/favicon.svg +24 -0
  35. package/public/images/cover-img.avif +0 -0
  36. package/public/images/image-card.jpg +0 -0
  37. package/public/images/logo-fajny-css-white.svg +37 -0
  38. package/public/images/logo-fajny-css.svg +35 -0
  39. package/public/images/pic-avatar.jpg +0 -0
  40. package/public/images/slideshow-1.avif +0 -0
  41. package/public/images/slideshow-2.avif +0 -0
  42. package/public/images/slideshow-3.avif +0 -0
  43. package/public/images/slideshow-4.avif +0 -0
  44. package/public/vite.svg +1 -0
  45. package/src/App.tsx +6 -0
  46. package/src/components/ComponentPreview.tsx +46 -0
  47. package/src/components/GridItem.tsx +9 -0
  48. package/src/components/index.ts +4 -0
  49. package/src/components/layout/BasePage.tsx +27 -0
  50. package/src/components/layout/CoverLayout.tsx +97 -0
  51. package/src/components/layout/Nav.tsx +63 -0
  52. package/src/components/layout/Page.tsx +24 -0
  53. package/src/data/components.tsx +220 -0
  54. package/src/data/french-cities.ts +8683 -0
  55. package/src/data/index.ts +3 -0
  56. package/src/data/previews/styles/Colors.preview.tsx +94 -0
  57. package/src/data/previews/styles/Overlays.preview.tsx +48 -0
  58. package/src/data/previews/styles/Radiuses.preview.tsx +49 -0
  59. package/src/data/previews/styles/Shadows.preview.tsx +49 -0
  60. package/src/data/previews/styles/Spacers.preview.tsx +50 -0
  61. package/src/data/previews/styles/Theme.preview.tsx +32 -0
  62. package/src/data/site-data.ts +4 -0
  63. package/src/data/styles/colors.ts +1985 -0
  64. package/src/data/styles/index.ts +5 -0
  65. package/src/data/styles/overlays.ts +47 -0
  66. package/src/data/styles/radiuses.ts +68 -0
  67. package/src/data/styles/shadows.ts +61 -0
  68. package/src/data/styles/spacers.ts +54 -0
  69. package/src/data/types/index.ts +1 -0
  70. package/src/data/types/variables.ts +7 -0
  71. package/src/lib/Variables.ts +201 -0
  72. package/src/lib/components/Accordion/Accordion.tsx +73 -0
  73. package/src/lib/components/Accordion/AccordionContent.tsx +55 -0
  74. package/src/lib/components/Accordion/AccordionItem.tsx +66 -0
  75. package/src/lib/components/Accordion/AccordionTitle.tsx +79 -0
  76. package/src/lib/components/Accordion/__preview__/Accordion.preview.tsx +107 -0
  77. package/src/lib/components/Accordion/subtypes.ts +26 -0
  78. package/src/lib/components/Accordion/types.ts +37 -0
  79. package/src/lib/components/Alert/Alert.tsx +57 -0
  80. package/src/lib/components/Alert/__preview__/Alert.preview.tsx +72 -0
  81. package/src/lib/components/Alert/types.ts +8 -0
  82. package/src/lib/components/Aside/Aside.tsx +58 -0
  83. package/src/lib/components/Aside/__preview__/Aside.preview.tsx +59 -0
  84. package/src/lib/components/Aside/types.ts +6 -0
  85. package/src/lib/components/Autocomplete/Autocomplete.tsx +222 -0
  86. package/src/lib/components/Autocomplete/__preview__/Autocomplete.preview.tsx +181 -0
  87. package/src/lib/components/Autocomplete/__preview__/Preview.tsx +17 -0
  88. package/src/lib/components/Autocomplete/types.ts +35 -0
  89. package/src/lib/components/Avatar/Avatar.tsx +97 -0
  90. package/src/lib/components/Avatar/AvatarFn.tsx +44 -0
  91. package/src/lib/components/Avatar/__preview__/Avatar.preview.tsx +107 -0
  92. package/src/lib/components/Avatar/types.ts +37 -0
  93. package/src/lib/components/BackToTop/BackToTop.tsx +95 -0
  94. package/src/lib/components/BackToTop/__preview__/BackToTop.preview.tsx +115 -0
  95. package/src/lib/components/BackToTop/types.ts +9 -0
  96. package/src/lib/components/Badge/Badge.tsx +61 -0
  97. package/src/lib/components/Badge/__preview__/Badge.preview.tsx +84 -0
  98. package/src/lib/components/Badge/types.ts +7 -0
  99. package/src/lib/components/Breadcrumbs/Breadcrumbs.tsx +72 -0
  100. package/src/lib/components/Breadcrumbs/__preview__/Breadcrumbs.preview.tsx +55 -0
  101. package/src/lib/components/Breadcrumbs/types.ts +5 -0
  102. package/src/lib/components/Burger/Burger.tsx +103 -0
  103. package/src/lib/components/Burger/__preview__/Burger.preview.tsx +55 -0
  104. package/src/lib/components/Burger/__preview__/Preview.tsx +11 -0
  105. package/src/lib/components/Burger/types.ts +11 -0
  106. package/src/lib/components/Button/Button.tsx +108 -0
  107. package/src/lib/components/Button/__preview__/Button.preview.tsx +182 -0
  108. package/src/lib/components/Button/types.ts +30 -0
  109. package/src/lib/components/ButtonGroup/ButtonGroup.tsx +124 -0
  110. package/src/lib/components/ButtonGroup/__preview__/ButtonGroup.preview.tsx +101 -0
  111. package/src/lib/components/ButtonGroup/types.ts +28 -0
  112. package/src/lib/components/ButtonIcon/ButtonFn.tsx +74 -0
  113. package/src/lib/components/ButtonIcon/ButtonIcon.tsx +127 -0
  114. package/src/lib/components/ButtonIcon/__preview__/ButtonIcon.preview.tsx +239 -0
  115. package/src/lib/components/ButtonIcon/types.ts +52 -0
  116. package/src/lib/components/CodeContainer/CodeContainer.tsx +108 -0
  117. package/src/lib/components/CodeContainer/__preview__/CodeContainer.preview.tsx +280 -0
  118. package/src/lib/components/CodeContainer/types.ts +230 -0
  119. package/src/lib/components/Cover/Cover.tsx +91 -0
  120. package/src/lib/components/Cover/__preview__/Cover.preview.tsx +154 -0
  121. package/src/lib/components/Cover/types.ts +10 -0
  122. package/src/lib/components/DragList/DragList.tsx +111 -0
  123. package/src/lib/components/DragList/DragListItem.tsx +113 -0
  124. package/src/lib/components/DragList/__preview__/Draglist.preview.tsx +156 -0
  125. package/src/lib/components/DragList/types.ts +55 -0
  126. package/src/lib/components/Drawer/Drawer.tsx +145 -0
  127. package/src/lib/components/Drawer/__preview__/Drawer.preview.tsx +159 -0
  128. package/src/lib/components/Drawer/types.ts +24 -0
  129. package/src/lib/components/Dropdown/Dropdown.tsx +89 -0
  130. package/src/lib/components/Dropdown/DropdownItem.tsx +49 -0
  131. package/src/lib/components/Dropdown/__preview__/Dropdown.preview.tsx +83 -0
  132. package/src/lib/components/Dropdown/__preview__/Preview.tsx +52 -0
  133. package/src/lib/components/Dropdown/index.ts +2 -0
  134. package/src/lib/components/Dropdown/types.ts +35 -0
  135. package/src/lib/components/Fade/Fade.tsx +62 -0
  136. package/src/lib/components/Fade/__preview__/Fade.preview.tsx +33 -0
  137. package/src/lib/components/Fieldset/Fieldset.tsx +85 -0
  138. package/src/lib/components/Fieldset/__preview__/Fieldset.preview.tsx +99 -0
  139. package/src/lib/components/Fieldset/__preview__/Preview.tsx +70 -0
  140. package/src/lib/components/Fieldset/types.ts +15 -0
  141. package/src/lib/components/Flexbox/Flexbox.tsx +99 -0
  142. package/src/lib/components/Flexbox/__preview__/Flexbox.preview.tsx +155 -0
  143. package/src/lib/components/Flexbox/types.ts +23 -0
  144. package/src/lib/components/Form/Form.tsx +83 -0
  145. package/src/lib/components/Form/__preview__/Form.preview.tsx +124 -0
  146. package/src/lib/components/Form/types.ts +32 -0
  147. package/src/lib/components/Grid/Grid.tsx +98 -0
  148. package/src/lib/components/Grid/__preview__/Grid.preview.tsx +146 -0
  149. package/src/lib/components/Grid/types.ts +20 -0
  150. package/src/lib/components/Header/Header.tsx +232 -0
  151. package/src/lib/components/Header/HeaderSearch.tsx +50 -0
  152. package/src/lib/components/Header/__preview__/Header.preview.tsx +33 -0
  153. package/src/lib/components/Header/subtypes.ts +28 -0
  154. package/src/lib/components/Header/types.ts +57 -0
  155. package/src/lib/components/Highlight/Highlight.tsx +45 -0
  156. package/src/lib/components/Highlight/__preview__/Highlight.preview.tsx +60 -0
  157. package/src/lib/components/Highlight/types.ts +9 -0
  158. package/src/lib/components/Hr/Hr.tsx +48 -0
  159. package/src/lib/components/Hr/__preview__/Hr.preview.tsx +75 -0
  160. package/src/lib/components/Hr/types.ts +8 -0
  161. package/src/lib/components/IconMenu/IconMenu.module.css +240 -0
  162. package/src/lib/components/IconMenu/IconMenu.tsx +101 -0
  163. package/src/lib/components/IconMenu/IconMenuItem.tsx +51 -0
  164. package/src/lib/components/IconMenu/__preview__/IconMenu.preview.tsx +55 -0
  165. package/src/lib/components/IconMenu/index.ts +1 -0
  166. package/src/lib/components/IconMenu/types.ts +48 -0
  167. package/src/lib/components/Image/Image.tsx +92 -0
  168. package/src/lib/components/Image/__preview__/Image.preview.tsx +71 -0
  169. package/src/lib/components/Image/types.ts +25 -0
  170. package/src/lib/components/Input/Input.tsx +130 -0
  171. package/src/lib/components/Input/__preview__/Input.preview.tsx +237 -0
  172. package/src/lib/components/Input/__preview__/Previews.tsx +67 -0
  173. package/src/lib/components/Input/classes.ts +1 -0
  174. package/src/lib/components/Input/subtypes.ts +173 -0
  175. package/src/lib/components/Input/templates/ColorInput.tsx +40 -0
  176. package/src/lib/components/Input/templates/DateInput.tsx +63 -0
  177. package/src/lib/components/Input/templates/FileInput.tsx +42 -0
  178. package/src/lib/components/Input/templates/PasswordInput.tsx +73 -0
  179. package/src/lib/components/Input/templates/SearchInput.tsx +89 -0
  180. package/src/lib/components/Input/templates/SelectInput.tsx +79 -0
  181. package/src/lib/components/Input/templates/TextInput.tsx +58 -0
  182. package/src/lib/components/Input/templates/TextareaInput.tsx +27 -0
  183. package/src/lib/components/Input/templates/TimeInput.tsx +67 -0
  184. package/src/lib/components/Input/types.ts +22 -0
  185. package/src/lib/components/InputCheck/InputCheck.tsx +161 -0
  186. package/src/lib/components/InputCheck/__preview__/InputCheck.preview.tsx +84 -0
  187. package/src/lib/components/InputCheck/__preview__/Previews.tsx +136 -0
  188. package/src/lib/components/InputCheck/types.ts +27 -0
  189. package/src/lib/components/InputComponents/InputButton.tsx +26 -0
  190. package/src/lib/components/InputComponents/InputIcon.tsx +28 -0
  191. package/src/lib/components/InputComponents/InputList.tsx +53 -0
  192. package/src/lib/components/InputComponents/InputListItem.tsx +68 -0
  193. package/src/lib/components/InputComponents/InputPrefix.tsx +15 -0
  194. package/src/lib/components/InputComponents/InputSuffix.tsx +15 -0
  195. package/src/lib/components/InputComponents/InputValidation.tsx +32 -0
  196. package/src/lib/components/InputComponents/InputWithListWrapper.tsx +29 -0
  197. package/src/lib/components/InputComponents/InputWrapper.tsx +45 -0
  198. package/src/lib/components/InputComponents/classes.ts +101 -0
  199. package/src/lib/components/InputComponents/index.ts +11 -0
  200. package/src/lib/components/InputComponents/types.ts +63 -0
  201. package/src/lib/components/InputContainer/InputContainer.tsx +149 -0
  202. package/src/lib/components/InputContainer/types.ts +11 -0
  203. package/src/lib/components/InputCounter/InputCounter.tsx +141 -0
  204. package/src/lib/components/InputCounter/__preview__/InputCounter.preview.tsx +153 -0
  205. package/src/lib/components/InputCounter/__preview__/Preview.tsx +13 -0
  206. package/src/lib/components/InputCounter/types.ts +45 -0
  207. package/src/lib/components/InputImage/EmptyContainer.tsx +17 -0
  208. package/src/lib/components/InputImage/HoverContainer.tsx +21 -0
  209. package/src/lib/components/InputImage/InputImage.tsx +104 -0
  210. package/src/lib/components/InputImage/__preview__/InputImage.preview.tsx +133 -0
  211. package/src/lib/components/InputImage/__preview__/Preview.tsx +29 -0
  212. package/src/lib/components/InputImage/subtypes.ts +7 -0
  213. package/src/lib/components/InputImage/types.ts +24 -0
  214. package/src/lib/components/InputPhone/InputPhone.tsx +256 -0
  215. package/src/lib/components/InputPhone/__preview__/InputPhone.preview.tsx +165 -0
  216. package/src/lib/components/InputPhone/__preview__/Preview.tsx +42 -0
  217. package/src/lib/components/InputPhone/types.ts +32 -0
  218. package/src/lib/components/InputPin/InputPin.tsx +119 -0
  219. package/src/lib/components/InputPin/__preview__/InputPin.preview.tsx +154 -0
  220. package/src/lib/components/InputPin/types.ts +22 -0
  221. package/src/lib/components/InputSlider/InputSlider.tsx +176 -0
  222. package/src/lib/components/InputSlider/__preview__/InputSlider.preview.tsx +128 -0
  223. package/src/lib/components/InputSlider/__preview__/Preview.tsx +17 -0
  224. package/src/lib/components/InputSlider/types.ts +22 -0
  225. package/src/lib/components/Key/Key.tsx +84 -0
  226. package/src/lib/components/Key/__preview__/Key.preview.tsx +80 -0
  227. package/src/lib/components/Key/types.ts +16 -0
  228. package/src/lib/components/Linkify/Linkify.tsx +67 -0
  229. package/src/lib/components/Linkify/__preview__/Linkify.preview.tsx +33 -0
  230. package/src/lib/components/Linkify/types.ts +8 -0
  231. package/src/lib/components/ListGroup/ListGroup.tsx +96 -0
  232. package/src/lib/components/ListGroup/ListGroupItem.tsx +86 -0
  233. package/src/lib/components/ListGroup/ListGroupTitle.tsx +84 -0
  234. package/src/lib/components/ListGroup/__preview__/ListGroup.preview.tsx +246 -0
  235. package/src/lib/components/ListGroup/index.ts +3 -0
  236. package/src/lib/components/ListGroup/types.ts +69 -0
  237. package/src/lib/components/Loader/Loader.tsx +38 -0
  238. package/src/lib/components/Loader/__preview__/Loader.preview.tsx +38 -0
  239. package/src/lib/components/Loader/templates/LoaderOne.tsx +27 -0
  240. package/src/lib/components/Loader/templates/LoaderThree.tsx +47 -0
  241. package/src/lib/components/Loader/templates/LoaderTwo.tsx +61 -0
  242. package/src/lib/components/Loader/types.ts +13 -0
  243. package/src/lib/components/Loader/utils/gen-border-bottom.ts +95 -0
  244. package/src/lib/components/Main/Main.tsx +63 -0
  245. package/src/lib/components/Main/__preview__/Main.preview.tsx +67 -0
  246. package/src/lib/components/Main/types.ts +12 -0
  247. package/src/lib/components/MarkdownContainer/MarkdownContainer.tsx +50 -0
  248. package/src/lib/components/MarkdownContainer/__preview__/MarkdownContainer.preview.tsx +34 -0
  249. package/src/lib/components/MarkdownContainer/types.ts +8 -0
  250. package/src/lib/components/MarkdownEditor/MarkdownButtons.tsx +42 -0
  251. package/src/lib/components/MarkdownEditor/MarkdownEditor.tsx +186 -0
  252. package/src/lib/components/MarkdownEditor/MarkdownEditorTitles.tsx +86 -0
  253. package/src/lib/components/MarkdownEditor/MarkdownViewButtons.tsx +48 -0
  254. package/src/lib/components/MarkdownEditor/__preview__/MarkdownEditor.preview.tsx +143 -0
  255. package/src/lib/components/MarkdownEditor/buttons/icons.tsx +85 -0
  256. package/src/lib/components/MarkdownEditor/buttons/markdown-buttons.tsx +176 -0
  257. package/src/lib/components/MarkdownEditor/types.ts +42 -0
  258. package/src/lib/components/Masonry/Masonry.tsx +83 -0
  259. package/src/lib/components/Masonry/__preview__/Masonry.preview.tsx +58 -0
  260. package/src/lib/components/Masonry/types.ts +8 -0
  261. package/src/lib/components/Masonry/utils.tsx +28 -0
  262. package/src/lib/components/Modal/Modal.tsx +107 -0
  263. package/src/lib/components/Modal/__preview__/Modal.preview.tsx +125 -0
  264. package/src/lib/components/Modal/types.ts +21 -0
  265. package/src/lib/components/PageLoading/PageLoading.tsx +64 -0
  266. package/src/lib/components/PageLoading/__preview__/PageLoading.preview.tsx +66 -0
  267. package/src/lib/components/PageLoading/types.ts +13 -0
  268. package/src/lib/components/Pagination/Pagination.tsx +163 -0
  269. package/src/lib/components/Pagination/PaginationButton.tsx +65 -0
  270. package/src/lib/components/Pagination/__preview__/Pagination.preview.tsx +264 -0
  271. package/src/lib/components/Pagination/types.ts +56 -0
  272. package/src/lib/components/Paginator/Paginator.tsx +136 -0
  273. package/src/lib/components/Paginator/__preview__/Paginator.preview.tsx +212 -0
  274. package/src/lib/components/Paginator/types.ts +16 -0
  275. package/src/lib/components/ProgressBar/ProgressBar.tsx +90 -0
  276. package/src/lib/components/ProgressBar/__preview__/ProgressBar.preview.tsx +63 -0
  277. package/src/lib/components/ProgressBar/types.ts +14 -0
  278. package/src/lib/components/ProgressCircle/ProgressCircle.tsx +142 -0
  279. package/src/lib/components/ProgressCircle/__preview__/ProgressCircle.preview.tsx +107 -0
  280. package/src/lib/components/ProgressCircle/types.ts +32 -0
  281. package/src/lib/components/Rating/Rating.tsx +116 -0
  282. package/src/lib/components/Rating/__preview__/Rating.preview.tsx +133 -0
  283. package/src/lib/components/Rating/types.ts +25 -0
  284. package/src/lib/components/Section/Section.tsx +51 -0
  285. package/src/lib/components/Section/__preview__/Section.preview.tsx +35 -0
  286. package/src/lib/components/Section/types.ts +5 -0
  287. package/src/lib/components/Select/Select.tsx +191 -0
  288. package/src/lib/components/Select/__preview__/Select.preview.tsx +168 -0
  289. package/src/lib/components/Select/types.ts +23 -0
  290. package/src/lib/components/Skeleton/Skeleton.tsx +54 -0
  291. package/src/lib/components/Skeleton/SkeletonCard.tsx +57 -0
  292. package/src/lib/components/Skeleton/__preview__/Skeleton.preview.tsx +240 -0
  293. package/src/lib/components/Skeleton/index.ts +2 -0
  294. package/src/lib/components/Skeleton/types.ts +27 -0
  295. package/src/lib/components/Slideshow/Slideshow.tsx +324 -0
  296. package/src/lib/components/Slideshow/SlideshowButton.tsx +63 -0
  297. package/src/lib/components/Slideshow/SlideshowPagination.tsx +111 -0
  298. package/src/lib/components/Slideshow/__preview__/Slideshow.preview.tsx +133 -0
  299. package/src/lib/components/Slideshow/subtypes.ts +62 -0
  300. package/src/lib/components/Slideshow/types.ts +41 -0
  301. package/src/lib/components/Sticky/Sticky.tsx +58 -0
  302. package/src/lib/components/Sticky/__preview__/Sticky.preview.tsx +188 -0
  303. package/src/lib/components/Sticky/types.ts +5 -0
  304. package/src/lib/components/Table/Table.tsx +138 -0
  305. package/src/lib/components/Table/__preview__/Table.preview.tsx +173 -0
  306. package/src/lib/components/Table/index.ts +1 -0
  307. package/src/lib/components/Table/types.ts +43 -0
  308. package/src/lib/components/Tabs/Tabs.tsx +88 -0
  309. package/src/lib/components/Tabs/TabsButton.tsx +71 -0
  310. package/src/lib/components/Tabs/TabsButtonsContainer.tsx +58 -0
  311. package/src/lib/components/Tabs/TabsContainer.tsx +49 -0
  312. package/src/lib/components/Tabs/TabsContent.tsx +52 -0
  313. package/src/lib/components/Tabs/__preview__/Tabs.preview.tsx +155 -0
  314. package/src/lib/components/Tabs/index.ts +5 -0
  315. package/src/lib/components/Tabs/types.ts +46 -0
  316. package/src/lib/components/Tag/Tag.tsx +77 -0
  317. package/src/lib/components/Tag/__preview__/Tag.preview.tsx +128 -0
  318. package/src/lib/components/Tag/types.ts +13 -0
  319. package/src/lib/components/Text/Text.tsx +88 -0
  320. package/src/lib/components/Text/__preview__/Text.preview.tsx +97 -0
  321. package/src/lib/components/Text/__preview__/previews/Description.tsx +18 -0
  322. package/src/lib/components/Text/__preview__/previews/Ordered.tsx +13 -0
  323. package/src/lib/components/Text/__preview__/previews/Paragraphs.tsx +26 -0
  324. package/src/lib/components/Text/__preview__/previews/Quote.tsx +5 -0
  325. package/src/lib/components/Text/__preview__/previews/Small.tsx +5 -0
  326. package/src/lib/components/Text/__preview__/previews/TextDisplay.tsx +27 -0
  327. package/src/lib/components/Text/__preview__/previews/TextTitles.tsx +19 -0
  328. package/src/lib/components/Text/__preview__/previews/Unordered.tsx +13 -0
  329. package/src/lib/components/Text/templates/Blockquote.tsx +41 -0
  330. package/src/lib/components/Text/templates/Dl.tsx +42 -0
  331. package/src/lib/components/Text/templates/Em.tsx +40 -0
  332. package/src/lib/components/Text/templates/H1.tsx +44 -0
  333. package/src/lib/components/Text/templates/H2.tsx +44 -0
  334. package/src/lib/components/Text/templates/H3.tsx +44 -0
  335. package/src/lib/components/Text/templates/H4.tsx +44 -0
  336. package/src/lib/components/Text/templates/H5.tsx +44 -0
  337. package/src/lib/components/Text/templates/H6.tsx +41 -0
  338. package/src/lib/components/Text/templates/Ol.tsx +41 -0
  339. package/src/lib/components/Text/templates/P.tsx +40 -0
  340. package/src/lib/components/Text/templates/Small.tsx +40 -0
  341. package/src/lib/components/Text/templates/Strong.tsx +40 -0
  342. package/src/lib/components/Text/templates/Ul.tsx +41 -0
  343. package/src/lib/components/Text/types.ts +36 -0
  344. package/src/lib/components/Toast/Toast.tsx +112 -0
  345. package/src/lib/components/Toast/ToastContainer.tsx +43 -0
  346. package/src/lib/components/Toast/ToastFn.tsx +236 -0
  347. package/src/lib/components/Toast/__preview__/Toast.preview.tsx +115 -0
  348. package/src/lib/components/Toast/index.ts +3 -0
  349. package/src/lib/components/Toast/types.ts +18 -0
  350. package/src/lib/components/Toast/utils.ts +9 -0
  351. package/src/lib/components/Tooltip/Tooltip.tsx +190 -0
  352. package/src/lib/components/Tooltip/__preview__/Tooltip.preview.tsx +117 -0
  353. package/src/lib/components/Tooltip/types.ts +23 -0
  354. package/src/lib/components/Wrapper/Wrapper.tsx +75 -0
  355. package/src/lib/components/Wrapper/__preview__/Wrapper.preview.tsx +78 -0
  356. package/src/lib/components/Wrapper/types.ts +12 -0
  357. package/src/lib/context/Theme.context.tsx +66 -0
  358. package/src/lib/context/index.ts +1 -0
  359. package/src/lib/hooks/useClickOutside.tsx +50 -0
  360. package/src/lib/hooks/useCopyToClipboard.tsx +50 -0
  361. package/src/lib/hooks/useDebounce.tsx +37 -0
  362. package/src/lib/hooks/useExportData.tsx +78 -0
  363. package/src/lib/hooks/useFetch.tsx +42 -0
  364. package/src/lib/hooks/useForm.tsx +51 -0
  365. package/src/lib/hooks/useIsOverflow.ts +61 -0
  366. package/src/lib/hooks/useKeyPress.tsx +110 -0
  367. package/src/lib/hooks/useMaxWidth.tsx +40 -0
  368. package/src/lib/hooks/useMergeRefs.ts +45 -0
  369. package/src/lib/hooks/useMinWidth.tsx +40 -0
  370. package/src/lib/hooks/usePaginatedData.tsx +52 -0
  371. package/src/lib/hooks/usePagination.tsx +75 -0
  372. package/src/lib/hooks/useTouchScreen.tsx +34 -0
  373. package/src/lib/hooks/useTranslation.tsx +58 -0
  374. package/src/lib/index.css +443 -0
  375. package/src/lib/index.ts +126 -0
  376. package/src/lib/lib-utils/get-highlighted-text.tsx +30 -0
  377. package/src/lib/lib-utils/index.ts +3 -0
  378. package/src/lib/lib-utils/use-keyboard-navigation.tsx +79 -0
  379. package/src/lib/types/components-items-props.ts +207 -0
  380. package/src/lib/types/components-props.ts +63 -0
  381. package/src/lib/types/global.ts +855 -0
  382. package/src/lib/types/index.ts +4 -0
  383. package/src/lib/types/tailwind.ts +9041 -0
  384. package/src/lib/utils/clsx.tsx +6 -0
  385. package/src/lib/utils/design-tokens.ts +789 -0
  386. package/src/lib/utils/gen-align.ts +24 -0
  387. package/src/lib/utils/gen-bg-color.ts +158 -0
  388. package/src/lib/utils/gen-border-color.ts +110 -0
  389. package/src/lib/utils/gen-border-radius.ts +13 -0
  390. package/src/lib/utils/gen-border.ts +30 -0
  391. package/src/lib/utils/gen-box-shadow.ts +12 -0
  392. package/src/lib/utils/gen-button-color.ts +9 -0
  393. package/src/lib/utils/gen-gap.ts +34 -0
  394. package/src/lib/utils/gen-justify.ts +25 -0
  395. package/src/lib/utils/gen-link-color.ts +29 -0
  396. package/src/lib/utils/gen-max-width.ts +30 -0
  397. package/src/lib/utils/gen-object-fit.ts +9 -0
  398. package/src/lib/utils/gen-text-align.ts +10 -0
  399. package/src/lib/utils/gen-text-color.ts +111 -0
  400. package/src/lib/utils/gen-vertical-align.ts +12 -0
  401. package/src/lib/utils/index.ts +18 -0
  402. package/src/lib/utils/linkify-text.tsx +26 -0
  403. package/src/lib/utils/options-markdown.ts +60 -0
  404. package/src/lib/utils/tools.ts +15 -0
  405. package/src/main.tsx +11 -0
  406. package/src/pages/Component.tsx +29 -0
  407. package/src/pages/Homepage.tsx +53 -0
  408. package/src/pages/NotFound.tsx +10 -0
  409. package/src/pages/demos/AsideBothDemo.tsx +22 -0
  410. package/src/pages/demos/AsideDefaultDemo.tsx +18 -0
  411. package/src/pages/demos/AsideRightDemo.tsx +18 -0
  412. package/src/pages/demos/CoverBottomDemo.tsx +24 -0
  413. package/src/pages/demos/CoverBottomOverlayDemo.tsx +25 -0
  414. package/src/pages/demos/CoverCenterDemo.tsx +24 -0
  415. package/src/pages/demos/CoverCenterOverlayDemo.tsx +25 -0
  416. package/src/pages/demos/HeaderDemo.tsx +76 -0
  417. package/src/pages/demos/MainDefaultDemo.tsx +14 -0
  418. package/src/pages/demos/MainFormDemo.tsx +14 -0
  419. package/src/pages/demos/MainLargeDemo.tsx +14 -0
  420. package/src/pages/demos/PageLoadingDemo.tsx +10 -0
  421. package/src/routes/index.tsx +59 -0
  422. package/src/types/global.d.ts +11 -0
  423. package/src/vite-env.d.ts +1 -0
  424. package/tailwind.config.ts +19 -0
  425. package/tsconfig.app.json +28 -0
  426. package/tsconfig.json +7 -0
  427. package/tsconfig.node.json +25 -0
  428. package/vite.config.ts +53 -0
  429. package/dist/index.cjs.js +0 -4174
  430. package/dist/index.css +0 -1491
  431. package/dist/index.d.ts +0 -1
  432. package/dist/index.es.js +0 -21211
  433. package/dist/index.umd.js +0 -4180
  434. package/dist/lib/Mixins.tsx +0 -990
  435. package/dist/lib/Variables.ts +0 -266
  436. package/dist/lib/components/Accordion/Accordion.tsx +0 -83
  437. package/dist/lib/components/Accordion/AccordionButton.tsx +0 -70
  438. package/dist/lib/components/Accordion/AccordionContent.tsx +0 -26
  439. package/dist/lib/components/Accordion/AccordionItem.tsx +0 -72
  440. package/dist/lib/components/Accordion/styles.tsx +0 -163
  441. package/dist/lib/components/Accordion/subtypes.ts +0 -20
  442. package/dist/lib/components/Accordion/types.ts +0 -31
  443. package/dist/lib/components/Alert/Alert.tsx +0 -122
  444. package/dist/lib/components/Alert/styles.tsx +0 -37
  445. package/dist/lib/components/Alert/types.ts +0 -31
  446. package/dist/lib/components/Aside/Aside.tsx +0 -41
  447. package/dist/lib/components/Aside/styles.tsx +0 -47
  448. package/dist/lib/components/Aside/types.ts +0 -5
  449. package/dist/lib/components/Autocomplete/Autocomplete.tsx +0 -356
  450. package/dist/lib/components/Autocomplete/styles.tsx +0 -11
  451. package/dist/lib/components/Autocomplete/types.ts +0 -41
  452. package/dist/lib/components/Avatar/Avatar.tsx +0 -147
  453. package/dist/lib/components/Avatar/AvatarFunction.tsx +0 -119
  454. package/dist/lib/components/Avatar/styles.tsx +0 -88
  455. package/dist/lib/components/Avatar/types.ts +0 -84
  456. package/dist/lib/components/BackToTop/BackToTop.tsx +0 -104
  457. package/dist/lib/components/BackToTop/styles.tsx +0 -33
  458. package/dist/lib/components/BackToTop/types.ts +0 -6
  459. package/dist/lib/components/Badge/Badge.tsx +0 -99
  460. package/dist/lib/components/Badge/styles.tsx +0 -39
  461. package/dist/lib/components/Badge/types.ts +0 -32
  462. package/dist/lib/components/Breadcrumbs/BreadcrumbItem.tsx +0 -41
  463. package/dist/lib/components/Breadcrumbs/Breadcrumbs.tsx +0 -62
  464. package/dist/lib/components/Breadcrumbs/BreadcrumbsFn.tsx +0 -64
  465. package/dist/lib/components/Breadcrumbs/styles.tsx +0 -62
  466. package/dist/lib/components/Breadcrumbs/subtypes.ts +0 -10
  467. package/dist/lib/components/Breadcrumbs/types.ts +0 -29
  468. package/dist/lib/components/Burger/Burger.tsx +0 -62
  469. package/dist/lib/components/Burger/styles.tsx +0 -91
  470. package/dist/lib/components/Burger/types.ts +0 -11
  471. package/dist/lib/components/Button/Button.tsx +0 -136
  472. package/dist/lib/components/Button/styles.tsx +0 -30
  473. package/dist/lib/components/Button/subtypes.ts +0 -10
  474. package/dist/lib/components/Button/types.ts +0 -70
  475. package/dist/lib/components/ButtonGroup/ButtonGroup.tsx +0 -136
  476. package/dist/lib/components/ButtonGroup/ButtonGroupButton.tsx +0 -76
  477. package/dist/lib/components/ButtonGroup/ButtonGroupToggle.tsx +0 -88
  478. package/dist/lib/components/ButtonGroup/styles.tsx +0 -89
  479. package/dist/lib/components/ButtonGroup/subtypes.ts +0 -43
  480. package/dist/lib/components/ButtonGroup/types.ts +0 -34
  481. package/dist/lib/components/ButtonIcon/ButtonFunction.tsx +0 -84
  482. package/dist/lib/components/ButtonIcon/ButtonIcon.tsx +0 -140
  483. package/dist/lib/components/ButtonIcon/styles.tsx +0 -29
  484. package/dist/lib/components/ButtonIcon/subtypes.ts +0 -10
  485. package/dist/lib/components/ButtonIcon/types.ts +0 -88
  486. package/dist/lib/components/Card/Card.tsx +0 -132
  487. package/dist/lib/components/Card/index.ts +0 -1
  488. package/dist/lib/components/Card/styles.tsx +0 -77
  489. package/dist/lib/components/Card/types.ts +0 -29
  490. package/dist/lib/components/CodeContainer/CodeContainer.tsx +0 -133
  491. package/dist/lib/components/CodeContainer/styles.tsx +0 -63
  492. package/dist/lib/components/CodeContainer/types.ts +0 -233
  493. package/dist/lib/components/ComponentsMixins/ComponentsMixins.tsx +0 -434
  494. package/dist/lib/components/ComponentsMixins/hooks/useKeyboardNavigation.tsx +0 -79
  495. package/dist/lib/components/ComponentsMixins/index.ts +0 -3
  496. package/dist/lib/components/ComponentsMixins/types.ts +0 -35
  497. package/dist/lib/components/Cover/Cover.tsx +0 -79
  498. package/dist/lib/components/Cover/styles.tsx +0 -78
  499. package/dist/lib/components/Cover/types.ts +0 -12
  500. package/dist/lib/components/Datepicker/Calendar.tsx +0 -394
  501. package/dist/lib/components/Datepicker/Datepicker.tsx +0 -255
  502. package/dist/lib/components/Datepicker/data.ts +0 -31
  503. package/dist/lib/components/Datepicker/index.ts +0 -1
  504. package/dist/lib/components/Datepicker/styles.tsx +0 -454
  505. package/dist/lib/components/Datepicker/types.ts +0 -66
  506. package/dist/lib/components/DragList/DragList.tsx +0 -121
  507. package/dist/lib/components/DragList/DragListItem.tsx +0 -184
  508. package/dist/lib/components/DragList/styles.tsx +0 -73
  509. package/dist/lib/components/DragList/types.ts +0 -59
  510. package/dist/lib/components/Drawer/Drawer.tsx +0 -113
  511. package/dist/lib/components/Drawer/styles.tsx +0 -134
  512. package/dist/lib/components/Drawer/types.ts +0 -26
  513. package/dist/lib/components/Dropdown/Dropdown.tsx +0 -98
  514. package/dist/lib/components/Dropdown/DropdownContainer.tsx +0 -48
  515. package/dist/lib/components/Dropdown/DropdownItem.tsx +0 -97
  516. package/dist/lib/components/Dropdown/index.ts +0 -3
  517. package/dist/lib/components/Dropdown/styles.tsx +0 -155
  518. package/dist/lib/components/Dropdown/types.ts +0 -63
  519. package/dist/lib/components/Fade/Fade.tsx +0 -54
  520. package/dist/lib/components/Fade/styles.tsx +0 -17
  521. package/dist/lib/components/Fallback/Fallback.tsx +0 -40
  522. package/dist/lib/components/Fallback/index.ts +0 -1
  523. package/dist/lib/components/Fieldset/Fieldset.tsx +0 -111
  524. package/dist/lib/components/Fieldset/styles.tsx +0 -48
  525. package/dist/lib/components/Fieldset/types.ts +0 -32
  526. package/dist/lib/components/Flexbox/Flexbox.tsx +0 -73
  527. package/dist/lib/components/Flexbox/styles.tsx +0 -32
  528. package/dist/lib/components/Flexbox/types.ts +0 -25
  529. package/dist/lib/components/Footer/Footer.tsx +0 -103
  530. package/dist/lib/components/Footer/FooterLink.tsx +0 -31
  531. package/dist/lib/components/Footer/FooterLogo.tsx +0 -29
  532. package/dist/lib/components/Footer/index.ts +0 -1
  533. package/dist/lib/components/Footer/styles.tsx +0 -124
  534. package/dist/lib/components/Footer/subtypes.ts +0 -14
  535. package/dist/lib/components/Footer/types.ts +0 -70
  536. package/dist/lib/components/Form/Form.tsx +0 -157
  537. package/dist/lib/components/Form/styles.tsx +0 -22
  538. package/dist/lib/components/Form/types.ts +0 -30
  539. package/dist/lib/components/FullBleed/FullBleed.tsx +0 -48
  540. package/dist/lib/components/FullBleed/index.ts +0 -1
  541. package/dist/lib/components/FullBleed/styles.tsx +0 -30
  542. package/dist/lib/components/FullBleed/types.ts +0 -7
  543. package/dist/lib/components/Grid/Grid.tsx +0 -71
  544. package/dist/lib/components/Grid/styles.tsx +0 -29
  545. package/dist/lib/components/Grid/types.ts +0 -22
  546. package/dist/lib/components/Header/Header.tsx +0 -223
  547. package/dist/lib/components/Header/HeaderBurger.tsx +0 -52
  548. package/dist/lib/components/Header/HeaderLogo.tsx +0 -68
  549. package/dist/lib/components/Header/HeaderNav.tsx +0 -89
  550. package/dist/lib/components/Header/HeaderNavLink.tsx +0 -31
  551. package/dist/lib/components/Header/HeaderSearch.tsx +0 -81
  552. package/dist/lib/components/Header/styles.tsx +0 -350
  553. package/dist/lib/components/Header/subtypes.ts +0 -79
  554. package/dist/lib/components/Header/types.ts +0 -89
  555. package/dist/lib/components/Highlight/Highlight.tsx +0 -47
  556. package/dist/lib/components/Highlight/types.ts +0 -9
  557. package/dist/lib/components/Hr/Hr.tsx +0 -52
  558. package/dist/lib/components/Hr/styles.tsx +0 -27
  559. package/dist/lib/components/Hr/types.ts +0 -10
  560. package/dist/lib/components/Icon/Icon.tsx +0 -42
  561. package/dist/lib/components/Icon/index.ts +0 -1
  562. package/dist/lib/components/Icon/styles.tsx +0 -19
  563. package/dist/lib/components/Icon/types.ts +0 -13
  564. package/dist/lib/components/IconMenu/IconMenu.tsx +0 -148
  565. package/dist/lib/components/IconMenu/IconMenuItem.tsx +0 -75
  566. package/dist/lib/components/IconMenu/index.ts +0 -2
  567. package/dist/lib/components/IconMenu/styles.tsx +0 -114
  568. package/dist/lib/components/IconMenu/types.ts +0 -50
  569. package/dist/lib/components/Image/Image.tsx +0 -124
  570. package/dist/lib/components/Image/ImageFunction.tsx +0 -47
  571. package/dist/lib/components/Image/styles.tsx +0 -85
  572. package/dist/lib/components/Image/types.ts +0 -46
  573. package/dist/lib/components/Input/Input.tsx +0 -163
  574. package/dist/lib/components/Input/styles.tsx +0 -39
  575. package/dist/lib/components/Input/subtypes.ts +0 -166
  576. package/dist/lib/components/Input/templates/ColorInput.tsx +0 -34
  577. package/dist/lib/components/Input/templates/DateInput.tsx +0 -118
  578. package/dist/lib/components/Input/templates/FileInput.tsx +0 -55
  579. package/dist/lib/components/Input/templates/PasswordInput.tsx +0 -185
  580. package/dist/lib/components/Input/templates/SearchInput.tsx +0 -132
  581. package/dist/lib/components/Input/templates/SelectInput.tsx +0 -110
  582. package/dist/lib/components/Input/templates/TextInput.tsx +0 -110
  583. package/dist/lib/components/Input/templates/TextareaInput.tsx +0 -37
  584. package/dist/lib/components/Input/templates/TimeInput.tsx +0 -117
  585. package/dist/lib/components/Input/types.ts +0 -22
  586. package/dist/lib/components/InputCheck/InputCheck.tsx +0 -145
  587. package/dist/lib/components/InputCheck/styles.tsx +0 -282
  588. package/dist/lib/components/InputCheck/types.ts +0 -34
  589. package/dist/lib/components/InputComponents/components/InputAndListContainer.tsx +0 -42
  590. package/dist/lib/components/InputComponents/components/InputButton.tsx +0 -61
  591. package/dist/lib/components/InputComponents/components/InputContainer.tsx +0 -69
  592. package/dist/lib/components/InputComponents/components/InputIcon.tsx +0 -57
  593. package/dist/lib/components/InputComponents/components/InputLeftContainer.tsx +0 -28
  594. package/dist/lib/components/InputComponents/components/InputPrefix.tsx +0 -30
  595. package/dist/lib/components/InputComponents/components/InputRightContainer.tsx +0 -34
  596. package/dist/lib/components/InputComponents/components/InputSuffix.tsx +0 -30
  597. package/dist/lib/components/InputComponents/components/InputValidationHelper.tsx +0 -97
  598. package/dist/lib/components/InputComponents/components/InputValidationIcon.tsx +0 -65
  599. package/dist/lib/components/InputComponents/components/InputWrapper.tsx +0 -45
  600. package/dist/lib/components/InputComponents/components/ListInput.tsx +0 -42
  601. package/dist/lib/components/InputComponents/components/ListInputItem.tsx +0 -48
  602. package/dist/lib/components/InputComponents/index.ts +0 -13
  603. package/dist/lib/components/InputComponents/styles.tsx +0 -716
  604. package/dist/lib/components/InputComponents/types.ts +0 -262
  605. package/dist/lib/components/InputContainer/HelperBottom.tsx +0 -94
  606. package/dist/lib/components/InputContainer/InputContainer.tsx +0 -143
  607. package/dist/lib/components/InputContainer/styles.tsx +0 -87
  608. package/dist/lib/components/InputContainer/subtypes.ts +0 -8
  609. package/dist/lib/components/InputContainer/types.ts +0 -23
  610. package/dist/lib/components/InputCounter/InputCounter.tsx +0 -296
  611. package/dist/lib/components/InputCounter/styles.tsx +0 -51
  612. package/dist/lib/components/InputCounter/subtypes.ts +0 -7
  613. package/dist/lib/components/InputCounter/types.ts +0 -49
  614. package/dist/lib/components/InputImage/EmptyContainer.tsx +0 -40
  615. package/dist/lib/components/InputImage/HoverContainer.tsx +0 -47
  616. package/dist/lib/components/InputImage/InputImage.tsx +0 -160
  617. package/dist/lib/components/InputImage/styles.tsx +0 -113
  618. package/dist/lib/components/InputImage/subtypes.ts +0 -28
  619. package/dist/lib/components/InputImage/types.ts +0 -23
  620. package/dist/lib/components/InputPhone/InputPhone.tsx +0 -392
  621. package/dist/lib/components/InputPhone/styles.tsx +0 -216
  622. package/dist/lib/components/InputPhone/types.ts +0 -33
  623. package/dist/lib/components/InputPin/InputPin.tsx +0 -137
  624. package/dist/lib/components/InputPin/styles.tsx +0 -68
  625. package/dist/lib/components/InputPin/subtypes.ts +0 -9
  626. package/dist/lib/components/InputPin/types.ts +0 -29
  627. package/dist/lib/components/InputSlider/InputSlider.tsx +0 -193
  628. package/dist/lib/components/InputSlider/Slider.tsx +0 -43
  629. package/dist/lib/components/InputSlider/styles.tsx +0 -290
  630. package/dist/lib/components/InputSlider/types.ts +0 -13
  631. package/dist/lib/components/Key/Key.tsx +0 -46
  632. package/dist/lib/components/Key/styles.tsx +0 -27
  633. package/dist/lib/components/Key/types.ts +0 -9
  634. package/dist/lib/components/LibIcon/LibIcon.tsx +0 -34
  635. package/dist/lib/components/LibIcon/index.ts +0 -1
  636. package/dist/lib/components/LibIcon/types.ts +0 -7
  637. package/dist/lib/components/Link/Link.tsx +0 -88
  638. package/dist/lib/components/Link/index.ts +0 -1
  639. package/dist/lib/components/Link/types.ts +0 -7
  640. package/dist/lib/components/Linkify/Linkify.tsx +0 -58
  641. package/dist/lib/components/Linkify/types.ts +0 -6
  642. package/dist/lib/components/ListGroup/ListGroup.tsx +0 -110
  643. package/dist/lib/components/ListGroup/ListGroupItem.tsx +0 -171
  644. package/dist/lib/components/ListGroup/ListGroupTitle.tsx +0 -56
  645. package/dist/lib/components/ListGroup/index.ts +0 -3
  646. package/dist/lib/components/ListGroup/styles.tsx +0 -177
  647. package/dist/lib/components/ListGroup/types.ts +0 -106
  648. package/dist/lib/components/Loader/Loader.tsx +0 -45
  649. package/dist/lib/components/Loader/styles.tsx +0 -138
  650. package/dist/lib/components/Loader/templates/LoaderFour.tsx +0 -27
  651. package/dist/lib/components/Loader/templates/LoaderOne.tsx +0 -21
  652. package/dist/lib/components/Loader/templates/LoaderThree.tsx +0 -30
  653. package/dist/lib/components/Loader/templates/LoaderTwo.tsx +0 -25
  654. package/dist/lib/components/Loader/types.ts +0 -23
  655. package/dist/lib/components/Main/Main.tsx +0 -48
  656. package/dist/lib/components/Main/styles.tsx +0 -61
  657. package/dist/lib/components/Main/types.ts +0 -15
  658. package/dist/lib/components/MarkdownContainer/MarkdownContainer.tsx +0 -42
  659. package/dist/lib/components/MarkdownContainer/styles.tsx +0 -15
  660. package/dist/lib/components/MarkdownContainer/types.ts +0 -7
  661. package/dist/lib/components/MarkdownEditor/MarkdownEditor.tsx +0 -200
  662. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtonTitles.tsx +0 -75
  663. package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtons.tsx +0 -73
  664. package/dist/lib/components/MarkdownEditor/MdEditorButtons/MarkdownButtons.tsx +0 -52
  665. package/dist/lib/components/MarkdownEditor/MdEditorInput.tsx +0 -88
  666. package/dist/lib/components/MarkdownEditor/markdown-buttons.tsx +0 -180
  667. package/dist/lib/components/MarkdownEditor/styles.tsx +0 -187
  668. package/dist/lib/components/MarkdownEditor/subtypes.ts +0 -54
  669. package/dist/lib/components/MarkdownEditor/types.ts +0 -57
  670. package/dist/lib/components/Masonry/Masonry.tsx +0 -73
  671. package/dist/lib/components/Masonry/styles.tsx +0 -22
  672. package/dist/lib/components/Masonry/types.ts +0 -8
  673. package/dist/lib/components/Masonry/utils.ts +0 -28
  674. package/dist/lib/components/Messaging/Message.tsx +0 -112
  675. package/dist/lib/components/Messaging/MessageForm.tsx +0 -153
  676. package/dist/lib/components/Messaging/MessagesContainer.tsx +0 -42
  677. package/dist/lib/components/Messaging/MessagesList.tsx +0 -140
  678. package/dist/lib/components/Messaging/Messaging.tsx +0 -123
  679. package/dist/lib/components/Messaging/index.ts +0 -5
  680. package/dist/lib/components/Messaging/styles.tsx +0 -176
  681. package/dist/lib/components/Messaging/types.ts +0 -119
  682. package/dist/lib/components/Meta/Meta.tsx +0 -125
  683. package/dist/lib/components/Meta/index.ts +0 -3
  684. package/dist/lib/components/Meta/types.ts +0 -17
  685. package/dist/lib/components/Modal/Modal.tsx +0 -134
  686. package/dist/lib/components/Modal/styles.tsx +0 -60
  687. package/dist/lib/components/Modal/types.ts +0 -36
  688. package/dist/lib/components/PageLayout/PageLayout.tsx +0 -96
  689. package/dist/lib/components/PageLayout/index.ts +0 -1
  690. package/dist/lib/components/PageLayout/types.ts +0 -45
  691. package/dist/lib/components/PageLoading/PageLoading.tsx +0 -67
  692. package/dist/lib/components/PageLoading/styles.tsx +0 -22
  693. package/dist/lib/components/PageLoading/types.ts +0 -13
  694. package/dist/lib/components/Pagination/Pagination.tsx +0 -262
  695. package/dist/lib/components/Pagination/PaginationButton.tsx +0 -52
  696. package/dist/lib/components/Pagination/styles.tsx +0 -70
  697. package/dist/lib/components/Pagination/types.ts +0 -55
  698. package/dist/lib/components/Paginator/Paginator.tsx +0 -169
  699. package/dist/lib/components/Paginator/styles.tsx +0 -34
  700. package/dist/lib/components/Paginator/types.ts +0 -14
  701. package/dist/lib/components/ProgressBar/ProgressBar.tsx +0 -74
  702. package/dist/lib/components/ProgressBar/styles.tsx +0 -76
  703. package/dist/lib/components/ProgressBar/types.ts +0 -11
  704. package/dist/lib/components/ProgressCircle/Circle.tsx +0 -29
  705. package/dist/lib/components/ProgressCircle/ProgressCircle.tsx +0 -96
  706. package/dist/lib/components/ProgressCircle/ProgressCircleFn.tsx +0 -42
  707. package/dist/lib/components/ProgressCircle/Value.tsx +0 -30
  708. package/dist/lib/components/ProgressCircle/clean-percentage.ts +0 -5
  709. package/dist/lib/components/ProgressCircle/styles.tsx +0 -53
  710. package/dist/lib/components/ProgressCircle/subtypes.ts +0 -9
  711. package/dist/lib/components/ProgressCircle/types.ts +0 -29
  712. package/dist/lib/components/Rating/Rating.tsx +0 -178
  713. package/dist/lib/components/Rating/styles.tsx +0 -50
  714. package/dist/lib/components/Rating/types.ts +0 -22
  715. package/dist/lib/components/ResetScroll/ResetScroll.tsx +0 -27
  716. package/dist/lib/components/ResetScroll/index.ts +0 -1
  717. package/dist/lib/components/Section/Section.tsx +0 -45
  718. package/dist/lib/components/Section/styles.tsx +0 -22
  719. package/dist/lib/components/Section/types.ts +0 -5
  720. package/dist/lib/components/Select/Select.tsx +0 -290
  721. package/dist/lib/components/Select/SelectButton.tsx +0 -52
  722. package/dist/lib/components/Select/styles.tsx +0 -20
  723. package/dist/lib/components/Select/subtypes.ts +0 -31
  724. package/dist/lib/components/Select/types.ts +0 -31
  725. package/dist/lib/components/Skeleton/Skeleton.tsx +0 -62
  726. package/dist/lib/components/Skeleton/SkeletonCard.tsx +0 -81
  727. package/dist/lib/components/Skeleton/SkeletonShine.tsx +0 -30
  728. package/dist/lib/components/Skeleton/index.ts +0 -3
  729. package/dist/lib/components/Skeleton/styles.tsx +0 -94
  730. package/dist/lib/components/Skeleton/subtypes.ts +0 -14
  731. package/dist/lib/components/Skeleton/types.ts +0 -37
  732. package/dist/lib/components/Slideshow/Slideshow.tsx +0 -191
  733. package/dist/lib/components/Slideshow/SlideshowButton.tsx +0 -98
  734. package/dist/lib/components/Slideshow/SlideshowPagination.tsx +0 -83
  735. package/dist/lib/components/Slideshow/styles.tsx +0 -359
  736. package/dist/lib/components/Slideshow/subtypes.ts +0 -20
  737. package/dist/lib/components/Slideshow/types.ts +0 -97
  738. package/dist/lib/components/SrOnly/SrOnly.tsx +0 -34
  739. package/dist/lib/components/SrOnly/index.ts +0 -1
  740. package/dist/lib/components/SrOnly/styles.tsx +0 -19
  741. package/dist/lib/components/SrOnly/types.ts +0 -3
  742. package/dist/lib/components/Stepper/Step.tsx +0 -122
  743. package/dist/lib/components/Stepper/Stepper.tsx +0 -92
  744. package/dist/lib/components/Stepper/index.ts +0 -2
  745. package/dist/lib/components/Stepper/styles.tsx +0 -113
  746. package/dist/lib/components/Stepper/types.ts +0 -42
  747. package/dist/lib/components/Sticky/Sticky.tsx +0 -44
  748. package/dist/lib/components/Sticky/styles.tsx +0 -13
  749. package/dist/lib/components/Sticky/types.ts +0 -5
  750. package/dist/lib/components/Table/TBody.tsx +0 -27
  751. package/dist/lib/components/Table/THead.tsx +0 -27
  752. package/dist/lib/components/Table/Table.tsx +0 -128
  753. package/dist/lib/components/Table/Td.tsx +0 -35
  754. package/dist/lib/components/Table/Tr.tsx +0 -23
  755. package/dist/lib/components/Table/index.ts +0 -5
  756. package/dist/lib/components/Table/styles.tsx +0 -112
  757. package/dist/lib/components/Table/types.ts +0 -40
  758. package/dist/lib/components/Tabs/TabButton.tsx +0 -54
  759. package/dist/lib/components/Tabs/TabItem.tsx +0 -45
  760. package/dist/lib/components/Tabs/Tabs.tsx +0 -140
  761. package/dist/lib/components/Tabs/TabsButtonsContainer.tsx +0 -48
  762. package/dist/lib/components/Tabs/TabsContainer.tsx +0 -36
  763. package/dist/lib/components/Tabs/index.ts +0 -5
  764. package/dist/lib/components/Tabs/styles.tsx +0 -176
  765. package/dist/lib/components/Tabs/types.ts +0 -48
  766. package/dist/lib/components/Tag/Tag.tsx +0 -101
  767. package/dist/lib/components/Tag/styles.tsx +0 -39
  768. package/dist/lib/components/Tag/types.ts +0 -41
  769. package/dist/lib/components/Text/Text.tsx +0 -71
  770. package/dist/lib/components/Text/styles.tsx +0 -250
  771. package/dist/lib/components/Text/subtypes.ts +0 -13
  772. package/dist/lib/components/Text/templates/Blockquote.tsx +0 -28
  773. package/dist/lib/components/Text/templates/Dl.tsx +0 -28
  774. package/dist/lib/components/Text/templates/Em.tsx +0 -28
  775. package/dist/lib/components/Text/templates/H1.tsx +0 -30
  776. package/dist/lib/components/Text/templates/H2.tsx +0 -30
  777. package/dist/lib/components/Text/templates/H3.tsx +0 -30
  778. package/dist/lib/components/Text/templates/H4.tsx +0 -30
  779. package/dist/lib/components/Text/templates/H5.tsx +0 -30
  780. package/dist/lib/components/Text/templates/H6.tsx +0 -28
  781. package/dist/lib/components/Text/templates/Ol.tsx +0 -28
  782. package/dist/lib/components/Text/templates/P.tsx +0 -28
  783. package/dist/lib/components/Text/templates/Small.tsx +0 -28
  784. package/dist/lib/components/Text/templates/Strong.tsx +0 -28
  785. package/dist/lib/components/Text/templates/Ul.tsx +0 -28
  786. package/dist/lib/components/Text/types.ts +0 -26
  787. package/dist/lib/components/TextIcon/TextIcon.tsx +0 -100
  788. package/dist/lib/components/TextIcon/index.ts +0 -1
  789. package/dist/lib/components/TextIcon/styles.tsx +0 -36
  790. package/dist/lib/components/TextIcon/types.ts +0 -19
  791. package/dist/lib/components/TextIcon/utils.ts +0 -56
  792. package/dist/lib/components/Timepicker/Timepicker.tsx +0 -306
  793. package/dist/lib/components/Timepicker/index.ts +0 -1
  794. package/dist/lib/components/Timepicker/styles.tsx +0 -32
  795. package/dist/lib/components/Timepicker/types.ts +0 -67
  796. package/dist/lib/components/Toast/Toast.tsx +0 -202
  797. package/dist/lib/components/Toast/Toaster.tsx +0 -156
  798. package/dist/lib/components/Toast/index.ts +0 -1
  799. package/dist/lib/components/Toast/styles.tsx +0 -247
  800. package/dist/lib/components/Toast/types.ts +0 -30
  801. package/dist/lib/components/Tooltip/Tooltip.tsx +0 -129
  802. package/dist/lib/components/Tooltip/styles.tsx +0 -149
  803. package/dist/lib/components/Tooltip/types.ts +0 -21
  804. package/dist/lib/components/Truncate/Truncate.tsx +0 -128
  805. package/dist/lib/components/Truncate/index.ts +0 -1
  806. package/dist/lib/components/Truncate/styles.tsx +0 -36
  807. package/dist/lib/components/Truncate/types.ts +0 -5
  808. package/dist/lib/components/Video/Video.tsx +0 -74
  809. package/dist/lib/components/Video/index.ts +0 -1
  810. package/dist/lib/components/Video/styles.tsx +0 -22
  811. package/dist/lib/components/Video/types.ts +0 -20
  812. package/dist/lib/components/Wrapper/Wrapper.tsx +0 -50
  813. package/dist/lib/components/Wrapper/styles.tsx +0 -33
  814. package/dist/lib/components/Wrapper/types.ts +0 -7
  815. package/dist/lib/components/Youtube/Youtube.tsx +0 -49
  816. package/dist/lib/components/Youtube/index.ts +0 -1
  817. package/dist/lib/components/Youtube/styles.tsx +0 -18
  818. package/dist/lib/components/Youtube/types.ts +0 -10
  819. package/dist/lib/context/Theme.context.tsx +0 -116
  820. package/dist/lib/context/Toaster/Toaster.context.tsx +0 -131
  821. package/dist/lib/context/Toaster/index.ts +0 -3
  822. package/dist/lib/context/Toaster/toast.reducer.ts +0 -34
  823. package/dist/lib/design-tokens.ts +0 -2217
  824. package/dist/lib/hooks/useClickOutside.tsx +0 -42
  825. package/dist/lib/hooks/useCopyToClipboard.tsx +0 -38
  826. package/dist/lib/hooks/useDebounce.tsx +0 -26
  827. package/dist/lib/hooks/useExportData.tsx +0 -65
  828. package/dist/lib/hooks/useFetch.tsx +0 -30
  829. package/dist/lib/hooks/useForm.tsx +0 -38
  830. package/dist/lib/hooks/useIsOverflow.ts +0 -46
  831. package/dist/lib/hooks/useKeyPress.tsx +0 -101
  832. package/dist/lib/hooks/useMaxWidth.tsx +0 -32
  833. package/dist/lib/hooks/useMergeRefs.ts +0 -36
  834. package/dist/lib/hooks/useMinWidth.tsx +0 -32
  835. package/dist/lib/hooks/usePaginatedData.tsx +0 -42
  836. package/dist/lib/hooks/usePagination.tsx +0 -122
  837. package/dist/lib/hooks/useTouchScreen.tsx +0 -25
  838. package/dist/lib/hooks/useTranslation.tsx +0 -43
  839. package/dist/lib/icons/ArrowUp.tsx +0 -31
  840. package/dist/lib/icons/Bold.tsx +0 -31
  841. package/dist/lib/icons/Calendar.tsx +0 -39
  842. package/dist/lib/icons/CaretDown.tsx +0 -31
  843. package/dist/lib/icons/Check.tsx +0 -31
  844. package/dist/lib/icons/CheckCircle.tsx +0 -37
  845. package/dist/lib/icons/ChevronDown.tsx +0 -31
  846. package/dist/lib/icons/ChevronLeft.tsx +0 -31
  847. package/dist/lib/icons/ChevronRight.tsx +0 -31
  848. package/dist/lib/icons/ChevronUp.tsx +0 -31
  849. package/dist/lib/icons/Clipboard.tsx +0 -31
  850. package/dist/lib/icons/Clock.tsx +0 -34
  851. package/dist/lib/icons/Close.tsx +0 -31
  852. package/dist/lib/icons/CloseCircle.tsx +0 -37
  853. package/dist/lib/icons/Code.tsx +0 -31
  854. package/dist/lib/icons/CodeBlock.tsx +0 -41
  855. package/dist/lib/icons/Comment.tsx +0 -41
  856. package/dist/lib/icons/Drag.tsx +0 -31
  857. package/dist/lib/icons/Edit.tsx +0 -37
  858. package/dist/lib/icons/EditorCode.tsx +0 -35
  859. package/dist/lib/icons/EditorLive.tsx +0 -35
  860. package/dist/lib/icons/EditorPreview.tsx +0 -35
  861. package/dist/lib/icons/Hide.tsx +0 -31
  862. package/dist/lib/icons/Image.tsx +0 -41
  863. package/dist/lib/icons/Italic.tsx +0 -31
  864. package/dist/lib/icons/Link.tsx +0 -35
  865. package/dist/lib/icons/Minus.tsx +0 -28
  866. package/dist/lib/icons/OrderedList.tsx +0 -31
  867. package/dist/lib/icons/Plus.tsx +0 -31
  868. package/dist/lib/icons/Quote.tsx +0 -31
  869. package/dist/lib/icons/Search.tsx +0 -37
  870. package/dist/lib/icons/Send.tsx +0 -31
  871. package/dist/lib/icons/Separator.tsx +0 -31
  872. package/dist/lib/icons/Show.tsx +0 -37
  873. package/dist/lib/icons/Star.tsx +0 -31
  874. package/dist/lib/icons/StarFull.tsx +0 -31
  875. package/dist/lib/icons/Strikethrough.tsx +0 -31
  876. package/dist/lib/icons/Underline.tsx +0 -31
  877. package/dist/lib/icons/UnorderedList.tsx +0 -31
  878. package/dist/lib/icons/index.ts +0 -39
  879. package/dist/lib/icons/styles.tsx +0 -17
  880. package/dist/lib/icons/types.ts +0 -9
  881. package/dist/lib/index.css +0 -1491
  882. package/dist/lib/index.ts +0 -159
  883. package/dist/lib/lib-utils/append-styles.ts +0 -7
  884. package/dist/lib/lib-utils/colors-maps.ts +0 -174
  885. package/dist/lib/lib-utils/generate-lib-tokens.ts +0 -38
  886. package/dist/lib/lib-utils/get-highlighted-text.tsx +0 -29
  887. package/dist/lib/lib-utils/get-icon-size-from-font.ts +0 -25
  888. package/dist/lib/lib-utils/index.ts +0 -9
  889. package/dist/lib/lib-utils/round-icon-size.ts +0 -5
  890. package/dist/lib/modules-declare.d.ts +0 -19
  891. package/dist/lib/types/component-items.ts +0 -511
  892. package/dist/lib/types/components-props.ts +0 -80
  893. package/dist/lib/types/generate-int-range.ts +0 -17
  894. package/dist/lib/types/global.ts +0 -436
  895. package/dist/lib/types/index.ts +0 -5
  896. package/dist/lib/types/theme.ts +0 -166
  897. package/dist/lib/utils/StyleSheetManager.tsx +0 -30
  898. package/dist/lib/utils/index.ts +0 -4
  899. package/dist/lib/utils/lib-tokens.json +0 -860
  900. package/dist/lib/utils/linkify-text.tsx +0 -26
  901. package/dist/lib/utils/options-markdown.ts +0 -132
  902. package/dist/lib/utils/set-default-theme.ts +0 -12
  903. package/dist/styles-BCSPldCD.js +0 -16
  904. package/dist/styles-CtcGw3Gv.cjs +0 -7
  905. /package/{license.md → LICENSE} +0 -0
  906. /package/{dist → src}/lib/components/Accordion/index.ts +0 -0
  907. /package/{dist → src}/lib/components/Alert/index.ts +0 -0
  908. /package/{dist → src}/lib/components/Aside/index.ts +0 -0
  909. /package/{dist → src}/lib/components/Autocomplete/index.ts +0 -0
  910. /package/{dist → src}/lib/components/Avatar/index.ts +0 -0
  911. /package/{dist → src}/lib/components/BackToTop/index.ts +0 -0
  912. /package/{dist → src}/lib/components/Badge/index.ts +0 -0
  913. /package/{dist → src}/lib/components/Breadcrumbs/index.ts +0 -0
  914. /package/{dist → src}/lib/components/Burger/index.ts +0 -0
  915. /package/{dist → src}/lib/components/Button/index.ts +0 -0
  916. /package/{dist → src}/lib/components/ButtonGroup/index.ts +0 -0
  917. /package/{dist → src}/lib/components/ButtonIcon/index.ts +0 -0
  918. /package/{dist → src}/lib/components/CodeContainer/index.ts +0 -0
  919. /package/{dist → src}/lib/components/Cover/index.ts +0 -0
  920. /package/{dist → src}/lib/components/DragList/index.ts +0 -0
  921. /package/{dist → src}/lib/components/Drawer/index.ts +0 -0
  922. /package/{dist → src}/lib/components/Fade/index.ts +0 -0
  923. /package/{dist → src}/lib/components/Fade/types.ts +0 -0
  924. /package/{dist → src}/lib/components/Fieldset/index.ts +0 -0
  925. /package/{dist → src}/lib/components/Flexbox/index.ts +0 -0
  926. /package/{dist → src}/lib/components/Form/index.ts +0 -0
  927. /package/{dist → src}/lib/components/Grid/index.ts +0 -0
  928. /package/{dist → src}/lib/components/Header/index.ts +0 -0
  929. /package/{dist → src}/lib/components/Highlight/index.ts +0 -0
  930. /package/{dist → src}/lib/components/Hr/index.ts +0 -0
  931. /package/{dist → src}/lib/components/Image/index.ts +0 -0
  932. /package/{dist → src}/lib/components/Input/index.ts +0 -0
  933. /package/{dist → src}/lib/components/InputCheck/index.ts +0 -0
  934. /package/{dist → src}/lib/components/InputContainer/index.ts +0 -0
  935. /package/{dist → src}/lib/components/InputCounter/index.ts +0 -0
  936. /package/{dist → src}/lib/components/InputImage/index.ts +0 -0
  937. /package/{dist → src}/lib/components/InputPhone/index.ts +0 -0
  938. /package/{dist → src}/lib/components/InputPhone/utils/countries.ts +0 -0
  939. /package/{dist → src}/lib/components/InputPhone/utils/flags/ac.svg +0 -0
  940. /package/{dist → src}/lib/components/InputPhone/utils/flags/ad.svg +0 -0
  941. /package/{dist → src}/lib/components/InputPhone/utils/flags/ae.svg +0 -0
  942. /package/{dist → src}/lib/components/InputPhone/utils/flags/af.svg +0 -0
  943. /package/{dist → src}/lib/components/InputPhone/utils/flags/ag.svg +0 -0
  944. /package/{dist → src}/lib/components/InputPhone/utils/flags/ai.svg +0 -0
  945. /package/{dist → src}/lib/components/InputPhone/utils/flags/al.svg +0 -0
  946. /package/{dist → src}/lib/components/InputPhone/utils/flags/am.svg +0 -0
  947. /package/{dist → src}/lib/components/InputPhone/utils/flags/ao.svg +0 -0
  948. /package/{dist → src}/lib/components/InputPhone/utils/flags/aq.svg +0 -0
  949. /package/{dist → src}/lib/components/InputPhone/utils/flags/ar.svg +0 -0
  950. /package/{dist → src}/lib/components/InputPhone/utils/flags/as.svg +0 -0
  951. /package/{dist → src}/lib/components/InputPhone/utils/flags/at.svg +0 -0
  952. /package/{dist → src}/lib/components/InputPhone/utils/flags/au.svg +0 -0
  953. /package/{dist → src}/lib/components/InputPhone/utils/flags/aw.svg +0 -0
  954. /package/{dist → src}/lib/components/InputPhone/utils/flags/ax.svg +0 -0
  955. /package/{dist → src}/lib/components/InputPhone/utils/flags/az.svg +0 -0
  956. /package/{dist → src}/lib/components/InputPhone/utils/flags/ba.svg +0 -0
  957. /package/{dist → src}/lib/components/InputPhone/utils/flags/bb.svg +0 -0
  958. /package/{dist → src}/lib/components/InputPhone/utils/flags/bd.svg +0 -0
  959. /package/{dist → src}/lib/components/InputPhone/utils/flags/be.svg +0 -0
  960. /package/{dist → src}/lib/components/InputPhone/utils/flags/bf.svg +0 -0
  961. /package/{dist → src}/lib/components/InputPhone/utils/flags/bg.svg +0 -0
  962. /package/{dist → src}/lib/components/InputPhone/utils/flags/bh.svg +0 -0
  963. /package/{dist → src}/lib/components/InputPhone/utils/flags/bi.svg +0 -0
  964. /package/{dist → src}/lib/components/InputPhone/utils/flags/bj.svg +0 -0
  965. /package/{dist → src}/lib/components/InputPhone/utils/flags/bl.svg +0 -0
  966. /package/{dist → src}/lib/components/InputPhone/utils/flags/bm.svg +0 -0
  967. /package/{dist → src}/lib/components/InputPhone/utils/flags/bn.svg +0 -0
  968. /package/{dist → src}/lib/components/InputPhone/utils/flags/bo.svg +0 -0
  969. /package/{dist → src}/lib/components/InputPhone/utils/flags/bq.svg +0 -0
  970. /package/{dist → src}/lib/components/InputPhone/utils/flags/br.svg +0 -0
  971. /package/{dist → src}/lib/components/InputPhone/utils/flags/bs.svg +0 -0
  972. /package/{dist → src}/lib/components/InputPhone/utils/flags/bt.svg +0 -0
  973. /package/{dist → src}/lib/components/InputPhone/utils/flags/bv.svg +0 -0
  974. /package/{dist → src}/lib/components/InputPhone/utils/flags/bw.svg +0 -0
  975. /package/{dist → src}/lib/components/InputPhone/utils/flags/by.svg +0 -0
  976. /package/{dist → src}/lib/components/InputPhone/utils/flags/bz.svg +0 -0
  977. /package/{dist → src}/lib/components/InputPhone/utils/flags/ca.svg +0 -0
  978. /package/{dist → src}/lib/components/InputPhone/utils/flags/cc.svg +0 -0
  979. /package/{dist → src}/lib/components/InputPhone/utils/flags/cd.svg +0 -0
  980. /package/{dist → src}/lib/components/InputPhone/utils/flags/cefta.svg +0 -0
  981. /package/{dist → src}/lib/components/InputPhone/utils/flags/cf.svg +0 -0
  982. /package/{dist → src}/lib/components/InputPhone/utils/flags/cg.svg +0 -0
  983. /package/{dist → src}/lib/components/InputPhone/utils/flags/ch.svg +0 -0
  984. /package/{dist → src}/lib/components/InputPhone/utils/flags/ci.svg +0 -0
  985. /package/{dist → src}/lib/components/InputPhone/utils/flags/ck.svg +0 -0
  986. /package/{dist → src}/lib/components/InputPhone/utils/flags/cl.svg +0 -0
  987. /package/{dist → src}/lib/components/InputPhone/utils/flags/cm.svg +0 -0
  988. /package/{dist → src}/lib/components/InputPhone/utils/flags/cn.svg +0 -0
  989. /package/{dist → src}/lib/components/InputPhone/utils/flags/co.svg +0 -0
  990. /package/{dist → src}/lib/components/InputPhone/utils/flags/cp.svg +0 -0
  991. /package/{dist → src}/lib/components/InputPhone/utils/flags/cr.svg +0 -0
  992. /package/{dist → src}/lib/components/InputPhone/utils/flags/cu.svg +0 -0
  993. /package/{dist → src}/lib/components/InputPhone/utils/flags/cv.svg +0 -0
  994. /package/{dist → src}/lib/components/InputPhone/utils/flags/cw.svg +0 -0
  995. /package/{dist → src}/lib/components/InputPhone/utils/flags/cx.svg +0 -0
  996. /package/{dist → src}/lib/components/InputPhone/utils/flags/cy.svg +0 -0
  997. /package/{dist → src}/lib/components/InputPhone/utils/flags/cz.svg +0 -0
  998. /package/{dist → src}/lib/components/InputPhone/utils/flags/de.svg +0 -0
  999. /package/{dist → src}/lib/components/InputPhone/utils/flags/dg.svg +0 -0
  1000. /package/{dist → src}/lib/components/InputPhone/utils/flags/dj.svg +0 -0
  1001. /package/{dist → src}/lib/components/InputPhone/utils/flags/dk.svg +0 -0
  1002. /package/{dist → src}/lib/components/InputPhone/utils/flags/dm.svg +0 -0
  1003. /package/{dist → src}/lib/components/InputPhone/utils/flags/do.svg +0 -0
  1004. /package/{dist → src}/lib/components/InputPhone/utils/flags/dz.svg +0 -0
  1005. /package/{dist → src}/lib/components/InputPhone/utils/flags/ea.svg +0 -0
  1006. /package/{dist → src}/lib/components/InputPhone/utils/flags/ec.svg +0 -0
  1007. /package/{dist → src}/lib/components/InputPhone/utils/flags/ee.svg +0 -0
  1008. /package/{dist → src}/lib/components/InputPhone/utils/flags/eg.svg +0 -0
  1009. /package/{dist → src}/lib/components/InputPhone/utils/flags/eh.svg +0 -0
  1010. /package/{dist → src}/lib/components/InputPhone/utils/flags/er.svg +0 -0
  1011. /package/{dist → src}/lib/components/InputPhone/utils/flags/es-ct.svg +0 -0
  1012. /package/{dist → src}/lib/components/InputPhone/utils/flags/es-ga.svg +0 -0
  1013. /package/{dist → src}/lib/components/InputPhone/utils/flags/es.svg +0 -0
  1014. /package/{dist → src}/lib/components/InputPhone/utils/flags/et.svg +0 -0
  1015. /package/{dist → src}/lib/components/InputPhone/utils/flags/eu.svg +0 -0
  1016. /package/{dist → src}/lib/components/InputPhone/utils/flags/fi.svg +0 -0
  1017. /package/{dist → src}/lib/components/InputPhone/utils/flags/fj.svg +0 -0
  1018. /package/{dist → src}/lib/components/InputPhone/utils/flags/fk.svg +0 -0
  1019. /package/{dist → src}/lib/components/InputPhone/utils/flags/fm.svg +0 -0
  1020. /package/{dist → src}/lib/components/InputPhone/utils/flags/fo.svg +0 -0
  1021. /package/{dist → src}/lib/components/InputPhone/utils/flags/fr.svg +0 -0
  1022. /package/{dist → src}/lib/components/InputPhone/utils/flags/ga.svg +0 -0
  1023. /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-eng.svg +0 -0
  1024. /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-nir.svg +0 -0
  1025. /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-sct.svg +0 -0
  1026. /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-wls.svg +0 -0
  1027. /package/{dist → src}/lib/components/InputPhone/utils/flags/gb.svg +0 -0
  1028. /package/{dist → src}/lib/components/InputPhone/utils/flags/gd.svg +0 -0
  1029. /package/{dist → src}/lib/components/InputPhone/utils/flags/ge.svg +0 -0
  1030. /package/{dist → src}/lib/components/InputPhone/utils/flags/gf.svg +0 -0
  1031. /package/{dist → src}/lib/components/InputPhone/utils/flags/gg.svg +0 -0
  1032. /package/{dist → src}/lib/components/InputPhone/utils/flags/gh.svg +0 -0
  1033. /package/{dist → src}/lib/components/InputPhone/utils/flags/gi.svg +0 -0
  1034. /package/{dist → src}/lib/components/InputPhone/utils/flags/gl.svg +0 -0
  1035. /package/{dist → src}/lib/components/InputPhone/utils/flags/gm.svg +0 -0
  1036. /package/{dist → src}/lib/components/InputPhone/utils/flags/gn.svg +0 -0
  1037. /package/{dist → src}/lib/components/InputPhone/utils/flags/gp.svg +0 -0
  1038. /package/{dist → src}/lib/components/InputPhone/utils/flags/gq.svg +0 -0
  1039. /package/{dist → src}/lib/components/InputPhone/utils/flags/gr.svg +0 -0
  1040. /package/{dist → src}/lib/components/InputPhone/utils/flags/gs.svg +0 -0
  1041. /package/{dist → src}/lib/components/InputPhone/utils/flags/gt.svg +0 -0
  1042. /package/{dist → src}/lib/components/InputPhone/utils/flags/gu.svg +0 -0
  1043. /package/{dist → src}/lib/components/InputPhone/utils/flags/gw.svg +0 -0
  1044. /package/{dist → src}/lib/components/InputPhone/utils/flags/gy.svg +0 -0
  1045. /package/{dist → src}/lib/components/InputPhone/utils/flags/hk.svg +0 -0
  1046. /package/{dist → src}/lib/components/InputPhone/utils/flags/hm.svg +0 -0
  1047. /package/{dist → src}/lib/components/InputPhone/utils/flags/hn.svg +0 -0
  1048. /package/{dist → src}/lib/components/InputPhone/utils/flags/hr.svg +0 -0
  1049. /package/{dist → src}/lib/components/InputPhone/utils/flags/ht.svg +0 -0
  1050. /package/{dist → src}/lib/components/InputPhone/utils/flags/hu.svg +0 -0
  1051. /package/{dist → src}/lib/components/InputPhone/utils/flags/ic.svg +0 -0
  1052. /package/{dist → src}/lib/components/InputPhone/utils/flags/id.svg +0 -0
  1053. /package/{dist → src}/lib/components/InputPhone/utils/flags/ie.svg +0 -0
  1054. /package/{dist → src}/lib/components/InputPhone/utils/flags/il.svg +0 -0
  1055. /package/{dist → src}/lib/components/InputPhone/utils/flags/im.svg +0 -0
  1056. /package/{dist → src}/lib/components/InputPhone/utils/flags/in.svg +0 -0
  1057. /package/{dist → src}/lib/components/InputPhone/utils/flags/io.svg +0 -0
  1058. /package/{dist → src}/lib/components/InputPhone/utils/flags/iq.svg +0 -0
  1059. /package/{dist → src}/lib/components/InputPhone/utils/flags/ir.svg +0 -0
  1060. /package/{dist → src}/lib/components/InputPhone/utils/flags/is.svg +0 -0
  1061. /package/{dist → src}/lib/components/InputPhone/utils/flags/it.svg +0 -0
  1062. /package/{dist → src}/lib/components/InputPhone/utils/flags/je.svg +0 -0
  1063. /package/{dist → src}/lib/components/InputPhone/utils/flags/jm.svg +0 -0
  1064. /package/{dist → src}/lib/components/InputPhone/utils/flags/jo.svg +0 -0
  1065. /package/{dist → src}/lib/components/InputPhone/utils/flags/jp.svg +0 -0
  1066. /package/{dist → src}/lib/components/InputPhone/utils/flags/ke.svg +0 -0
  1067. /package/{dist → src}/lib/components/InputPhone/utils/flags/kg.svg +0 -0
  1068. /package/{dist → src}/lib/components/InputPhone/utils/flags/kh.svg +0 -0
  1069. /package/{dist → src}/lib/components/InputPhone/utils/flags/ki.svg +0 -0
  1070. /package/{dist → src}/lib/components/InputPhone/utils/flags/km.svg +0 -0
  1071. /package/{dist → src}/lib/components/InputPhone/utils/flags/kn.svg +0 -0
  1072. /package/{dist → src}/lib/components/InputPhone/utils/flags/kp.svg +0 -0
  1073. /package/{dist → src}/lib/components/InputPhone/utils/flags/kr.svg +0 -0
  1074. /package/{dist → src}/lib/components/InputPhone/utils/flags/kw.svg +0 -0
  1075. /package/{dist → src}/lib/components/InputPhone/utils/flags/ky.svg +0 -0
  1076. /package/{dist → src}/lib/components/InputPhone/utils/flags/kz.svg +0 -0
  1077. /package/{dist → src}/lib/components/InputPhone/utils/flags/la.svg +0 -0
  1078. /package/{dist → src}/lib/components/InputPhone/utils/flags/lb.svg +0 -0
  1079. /package/{dist → src}/lib/components/InputPhone/utils/flags/lc.svg +0 -0
  1080. /package/{dist → src}/lib/components/InputPhone/utils/flags/li.svg +0 -0
  1081. /package/{dist → src}/lib/components/InputPhone/utils/flags/lk.svg +0 -0
  1082. /package/{dist → src}/lib/components/InputPhone/utils/flags/lr.svg +0 -0
  1083. /package/{dist → src}/lib/components/InputPhone/utils/flags/ls.svg +0 -0
  1084. /package/{dist → src}/lib/components/InputPhone/utils/flags/lt.svg +0 -0
  1085. /package/{dist → src}/lib/components/InputPhone/utils/flags/lu.svg +0 -0
  1086. /package/{dist → src}/lib/components/InputPhone/utils/flags/lv.svg +0 -0
  1087. /package/{dist → src}/lib/components/InputPhone/utils/flags/ly.svg +0 -0
  1088. /package/{dist → src}/lib/components/InputPhone/utils/flags/ma.svg +0 -0
  1089. /package/{dist → src}/lib/components/InputPhone/utils/flags/mc.svg +0 -0
  1090. /package/{dist → src}/lib/components/InputPhone/utils/flags/md.svg +0 -0
  1091. /package/{dist → src}/lib/components/InputPhone/utils/flags/me.svg +0 -0
  1092. /package/{dist → src}/lib/components/InputPhone/utils/flags/mf.svg +0 -0
  1093. /package/{dist → src}/lib/components/InputPhone/utils/flags/mg.svg +0 -0
  1094. /package/{dist → src}/lib/components/InputPhone/utils/flags/mh.svg +0 -0
  1095. /package/{dist → src}/lib/components/InputPhone/utils/flags/mk.svg +0 -0
  1096. /package/{dist → src}/lib/components/InputPhone/utils/flags/ml.svg +0 -0
  1097. /package/{dist → src}/lib/components/InputPhone/utils/flags/mm.svg +0 -0
  1098. /package/{dist → src}/lib/components/InputPhone/utils/flags/mn.svg +0 -0
  1099. /package/{dist → src}/lib/components/InputPhone/utils/flags/mo.svg +0 -0
  1100. /package/{dist → src}/lib/components/InputPhone/utils/flags/mp.svg +0 -0
  1101. /package/{dist → src}/lib/components/InputPhone/utils/flags/mq.svg +0 -0
  1102. /package/{dist → src}/lib/components/InputPhone/utils/flags/mr.svg +0 -0
  1103. /package/{dist → src}/lib/components/InputPhone/utils/flags/ms.svg +0 -0
  1104. /package/{dist → src}/lib/components/InputPhone/utils/flags/mt.svg +0 -0
  1105. /package/{dist → src}/lib/components/InputPhone/utils/flags/mu.svg +0 -0
  1106. /package/{dist → src}/lib/components/InputPhone/utils/flags/mv.svg +0 -0
  1107. /package/{dist → src}/lib/components/InputPhone/utils/flags/mw.svg +0 -0
  1108. /package/{dist → src}/lib/components/InputPhone/utils/flags/mx.svg +0 -0
  1109. /package/{dist → src}/lib/components/InputPhone/utils/flags/my.svg +0 -0
  1110. /package/{dist → src}/lib/components/InputPhone/utils/flags/mz.svg +0 -0
  1111. /package/{dist → src}/lib/components/InputPhone/utils/flags/na.svg +0 -0
  1112. /package/{dist → src}/lib/components/InputPhone/utils/flags/nc.svg +0 -0
  1113. /package/{dist → src}/lib/components/InputPhone/utils/flags/ne.svg +0 -0
  1114. /package/{dist → src}/lib/components/InputPhone/utils/flags/nf.svg +0 -0
  1115. /package/{dist → src}/lib/components/InputPhone/utils/flags/ng.svg +0 -0
  1116. /package/{dist → src}/lib/components/InputPhone/utils/flags/ni.svg +0 -0
  1117. /package/{dist → src}/lib/components/InputPhone/utils/flags/nl.svg +0 -0
  1118. /package/{dist → src}/lib/components/InputPhone/utils/flags/no.svg +0 -0
  1119. /package/{dist → src}/lib/components/InputPhone/utils/flags/np.svg +0 -0
  1120. /package/{dist → src}/lib/components/InputPhone/utils/flags/nr.svg +0 -0
  1121. /package/{dist → src}/lib/components/InputPhone/utils/flags/nu.svg +0 -0
  1122. /package/{dist → src}/lib/components/InputPhone/utils/flags/nz.svg +0 -0
  1123. /package/{dist → src}/lib/components/InputPhone/utils/flags/om.svg +0 -0
  1124. /package/{dist → src}/lib/components/InputPhone/utils/flags/pa.svg +0 -0
  1125. /package/{dist → src}/lib/components/InputPhone/utils/flags/pe.svg +0 -0
  1126. /package/{dist → src}/lib/components/InputPhone/utils/flags/pf.svg +0 -0
  1127. /package/{dist → src}/lib/components/InputPhone/utils/flags/pg.svg +0 -0
  1128. /package/{dist → src}/lib/components/InputPhone/utils/flags/ph.svg +0 -0
  1129. /package/{dist → src}/lib/components/InputPhone/utils/flags/pk.svg +0 -0
  1130. /package/{dist → src}/lib/components/InputPhone/utils/flags/pl.svg +0 -0
  1131. /package/{dist → src}/lib/components/InputPhone/utils/flags/pm.svg +0 -0
  1132. /package/{dist → src}/lib/components/InputPhone/utils/flags/pn.svg +0 -0
  1133. /package/{dist → src}/lib/components/InputPhone/utils/flags/pr.svg +0 -0
  1134. /package/{dist → src}/lib/components/InputPhone/utils/flags/ps.svg +0 -0
  1135. /package/{dist → src}/lib/components/InputPhone/utils/flags/pt.svg +0 -0
  1136. /package/{dist → src}/lib/components/InputPhone/utils/flags/pw.svg +0 -0
  1137. /package/{dist → src}/lib/components/InputPhone/utils/flags/py.svg +0 -0
  1138. /package/{dist → src}/lib/components/InputPhone/utils/flags/qa.svg +0 -0
  1139. /package/{dist → src}/lib/components/InputPhone/utils/flags/re.svg +0 -0
  1140. /package/{dist → src}/lib/components/InputPhone/utils/flags/ro.svg +0 -0
  1141. /package/{dist → src}/lib/components/InputPhone/utils/flags/rs.svg +0 -0
  1142. /package/{dist → src}/lib/components/InputPhone/utils/flags/ru.svg +0 -0
  1143. /package/{dist → src}/lib/components/InputPhone/utils/flags/rw.svg +0 -0
  1144. /package/{dist → src}/lib/components/InputPhone/utils/flags/sa.svg +0 -0
  1145. /package/{dist → src}/lib/components/InputPhone/utils/flags/sb.svg +0 -0
  1146. /package/{dist → src}/lib/components/InputPhone/utils/flags/sc.svg +0 -0
  1147. /package/{dist → src}/lib/components/InputPhone/utils/flags/sd.svg +0 -0
  1148. /package/{dist → src}/lib/components/InputPhone/utils/flags/se.svg +0 -0
  1149. /package/{dist → src}/lib/components/InputPhone/utils/flags/sg.svg +0 -0
  1150. /package/{dist → src}/lib/components/InputPhone/utils/flags/sh.svg +0 -0
  1151. /package/{dist → src}/lib/components/InputPhone/utils/flags/si.svg +0 -0
  1152. /package/{dist → src}/lib/components/InputPhone/utils/flags/sj.svg +0 -0
  1153. /package/{dist → src}/lib/components/InputPhone/utils/flags/sk.svg +0 -0
  1154. /package/{dist → src}/lib/components/InputPhone/utils/flags/sl.svg +0 -0
  1155. /package/{dist → src}/lib/components/InputPhone/utils/flags/sm.svg +0 -0
  1156. /package/{dist → src}/lib/components/InputPhone/utils/flags/sn.svg +0 -0
  1157. /package/{dist → src}/lib/components/InputPhone/utils/flags/so.svg +0 -0
  1158. /package/{dist → src}/lib/components/InputPhone/utils/flags/sr.svg +0 -0
  1159. /package/{dist → src}/lib/components/InputPhone/utils/flags/ss.svg +0 -0
  1160. /package/{dist → src}/lib/components/InputPhone/utils/flags/st.svg +0 -0
  1161. /package/{dist → src}/lib/components/InputPhone/utils/flags/sv.svg +0 -0
  1162. /package/{dist → src}/lib/components/InputPhone/utils/flags/sx.svg +0 -0
  1163. /package/{dist → src}/lib/components/InputPhone/utils/flags/sy.svg +0 -0
  1164. /package/{dist → src}/lib/components/InputPhone/utils/flags/sz.svg +0 -0
  1165. /package/{dist → src}/lib/components/InputPhone/utils/flags/ta.svg +0 -0
  1166. /package/{dist → src}/lib/components/InputPhone/utils/flags/tc.svg +0 -0
  1167. /package/{dist → src}/lib/components/InputPhone/utils/flags/td.svg +0 -0
  1168. /package/{dist → src}/lib/components/InputPhone/utils/flags/tf.svg +0 -0
  1169. /package/{dist → src}/lib/components/InputPhone/utils/flags/tg.svg +0 -0
  1170. /package/{dist → src}/lib/components/InputPhone/utils/flags/th.svg +0 -0
  1171. /package/{dist → src}/lib/components/InputPhone/utils/flags/tj.svg +0 -0
  1172. /package/{dist → src}/lib/components/InputPhone/utils/flags/tk.svg +0 -0
  1173. /package/{dist → src}/lib/components/InputPhone/utils/flags/tl.svg +0 -0
  1174. /package/{dist → src}/lib/components/InputPhone/utils/flags/tm.svg +0 -0
  1175. /package/{dist → src}/lib/components/InputPhone/utils/flags/tn.svg +0 -0
  1176. /package/{dist → src}/lib/components/InputPhone/utils/flags/to.svg +0 -0
  1177. /package/{dist → src}/lib/components/InputPhone/utils/flags/tr.svg +0 -0
  1178. /package/{dist → src}/lib/components/InputPhone/utils/flags/tt.svg +0 -0
  1179. /package/{dist → src}/lib/components/InputPhone/utils/flags/tv.svg +0 -0
  1180. /package/{dist → src}/lib/components/InputPhone/utils/flags/tw.svg +0 -0
  1181. /package/{dist → src}/lib/components/InputPhone/utils/flags/tz.svg +0 -0
  1182. /package/{dist → src}/lib/components/InputPhone/utils/flags/ua.svg +0 -0
  1183. /package/{dist → src}/lib/components/InputPhone/utils/flags/ug.svg +0 -0
  1184. /package/{dist → src}/lib/components/InputPhone/utils/flags/um.svg +0 -0
  1185. /package/{dist → src}/lib/components/InputPhone/utils/flags/un.svg +0 -0
  1186. /package/{dist → src}/lib/components/InputPhone/utils/flags/us.svg +0 -0
  1187. /package/{dist → src}/lib/components/InputPhone/utils/flags/uy.svg +0 -0
  1188. /package/{dist → src}/lib/components/InputPhone/utils/flags/uz.svg +0 -0
  1189. /package/{dist → src}/lib/components/InputPhone/utils/flags/va.svg +0 -0
  1190. /package/{dist → src}/lib/components/InputPhone/utils/flags/vc.svg +0 -0
  1191. /package/{dist → src}/lib/components/InputPhone/utils/flags/ve.svg +0 -0
  1192. /package/{dist → src}/lib/components/InputPhone/utils/flags/vg.svg +0 -0
  1193. /package/{dist → src}/lib/components/InputPhone/utils/flags/vi.svg +0 -0
  1194. /package/{dist → src}/lib/components/InputPhone/utils/flags/vn.svg +0 -0
  1195. /package/{dist → src}/lib/components/InputPhone/utils/flags/vu.svg +0 -0
  1196. /package/{dist → src}/lib/components/InputPhone/utils/flags/wf.svg +0 -0
  1197. /package/{dist → src}/lib/components/InputPhone/utils/flags/ws.svg +0 -0
  1198. /package/{dist → src}/lib/components/InputPhone/utils/flags/xk.svg +0 -0
  1199. /package/{dist → src}/lib/components/InputPhone/utils/flags/xx.svg +0 -0
  1200. /package/{dist → src}/lib/components/InputPhone/utils/flags/ye.svg +0 -0
  1201. /package/{dist → src}/lib/components/InputPhone/utils/flags/yt.svg +0 -0
  1202. /package/{dist → src}/lib/components/InputPhone/utils/flags/za.svg +0 -0
  1203. /package/{dist → src}/lib/components/InputPhone/utils/flags/zm.svg +0 -0
  1204. /package/{dist → src}/lib/components/InputPhone/utils/flags/zw.svg +0 -0
  1205. /package/{dist → src}/lib/components/InputPin/index.ts +0 -0
  1206. /package/{dist → src}/lib/components/InputSlider/index.ts +0 -0
  1207. /package/{dist → src}/lib/components/Key/index.ts +0 -0
  1208. /package/{dist → src}/lib/components/Linkify/index.ts +0 -0
  1209. /package/{dist → src}/lib/components/Loader/index.ts +0 -0
  1210. /package/{dist → src}/lib/components/Main/index.ts +0 -0
  1211. /package/{dist → src}/lib/components/MarkdownContainer/index.ts +0 -0
  1212. /package/{dist → src}/lib/components/MarkdownEditor/index.ts +0 -0
  1213. /package/{dist → src}/lib/components/Masonry/index.ts +0 -0
  1214. /package/{dist → src}/lib/components/Modal/index.ts +0 -0
  1215. /package/{dist → src}/lib/components/PageLoading/index.ts +0 -0
  1216. /package/{dist → src}/lib/components/Pagination/index.ts +0 -0
  1217. /package/{dist → src}/lib/components/Paginator/index.ts +0 -0
  1218. /package/{dist → src}/lib/components/ProgressBar/index.ts +0 -0
  1219. /package/{dist → src}/lib/components/ProgressCircle/index.ts +0 -0
  1220. /package/{dist → src}/lib/components/Rating/index.ts +0 -0
  1221. /package/{dist → src}/lib/components/Section/index.ts +0 -0
  1222. /package/{dist → src}/lib/components/Select/index.ts +0 -0
  1223. /package/{dist → src}/lib/components/Slideshow/index.ts +0 -0
  1224. /package/{dist → src}/lib/components/Sticky/index.ts +0 -0
  1225. /package/{dist → src}/lib/components/Tag/index.ts +0 -0
  1226. /package/{dist → src}/lib/components/Text/index.ts +0 -0
  1227. /package/{dist → src}/lib/components/Tooltip/index.ts +0 -0
  1228. /package/{dist → src}/lib/components/Wrapper/index.ts +0 -0
  1229. /package/{dist → src}/lib/hooks/index.ts +0 -0
  1230. /package/{dist → src}/lib/lib-utils/transfom-search-keys.ts +0 -0
  1231. /package/{dist → src}/lib/types/require-at-least-one.ts +0 -0
@@ -1,2217 +0,0 @@
1
- const textDisplayTags = {
2
- h1: "h1",
3
- h2: "h2",
4
- h3: "h3",
5
- h4: "h4",
6
- h5: "h5",
7
- } as const
8
-
9
- const textTags = {
10
- h6: "h6",
11
- p: "p",
12
- strong: "strong",
13
- em: "em",
14
- small: "small",
15
- blockquote: "blockquote",
16
- ul: "ul",
17
- ol: "ol",
18
- dl: "dl",
19
- } as const
20
-
21
- export const designTokens = {
22
- libColors: {
23
- black: "black",
24
- white: "white",
25
- "gray-50": "gray-50",
26
- "gray-100": "gray-100",
27
- "gray-200": "gray-200",
28
- "gray-300": "gray-300",
29
- "gray-400": "gray-400",
30
- "gray-500": "gray-500",
31
- "gray-600": "gray-600",
32
- "gray-700": "gray-700",
33
- "gray-800": "gray-800",
34
- "gray-900": "gray-900",
35
- "primary-50": "primary-50",
36
- "primary-100": "primary-100",
37
- "primary-200": "primary-200",
38
- "primary-300": "primary-300",
39
- "primary-400": "primary-400",
40
- "primary-500": "primary-500",
41
- "primary-600": "primary-600",
42
- "primary-700": "primary-700",
43
- "primary-800": "primary-800",
44
- "primary-900": "primary-900",
45
- "secondary-50": "secondary-50",
46
- "secondary-100": "secondary-100",
47
- "secondary-200": "secondary-200",
48
- "secondary-300": "secondary-300",
49
- "secondary-400": "secondary-400",
50
- "secondary-500": "secondary-500",
51
- "secondary-600": "secondary-600",
52
- "secondary-700": "secondary-700",
53
- "secondary-800": "secondary-800",
54
- "secondary-900": "secondary-900",
55
- "success-50": "success-50",
56
- "success-100": "success-100",
57
- "success-200": "success-200",
58
- "success-300": "success-300",
59
- "success-400": "success-400",
60
- "success-500": "success-500",
61
- "success-600": "success-600",
62
- "success-700": "success-700",
63
- "success-800": "success-800",
64
- "success-900": "success-900",
65
- "danger-50": "danger-50",
66
- "danger-100": "danger-100",
67
- "danger-200": "danger-200",
68
- "danger-300": "danger-300",
69
- "danger-400": "danger-400",
70
- "danger-500": "danger-500",
71
- "danger-600": "danger-600",
72
- "danger-700": "danger-700",
73
- "danger-800": "danger-800",
74
- "danger-900": "danger-900",
75
- "warning-50": "warning-50",
76
- "warning-100": "warning-100",
77
- "warning-200": "warning-200",
78
- "warning-300": "warning-300",
79
- "warning-400": "warning-400",
80
- "warning-500": "warning-500",
81
- "warning-600": "warning-600",
82
- "warning-700": "warning-700",
83
- "warning-800": "warning-800",
84
- "warning-900": "warning-900",
85
- background: "background",
86
- font: "font",
87
- currentColor: "currentColor",
88
- transparent: "transparent",
89
- },
90
-
91
- colorsShort: {
92
- primary: "primary",
93
- secondary: "secondary",
94
- success: "success",
95
- danger: "danger",
96
- warning: "warning",
97
- gray: "gray",
98
- black: "black",
99
- white: "white",
100
- },
101
-
102
- colorsHover: {
103
- primary: "primary",
104
- secondary: "secondary",
105
- success: "success",
106
- danger: "danger",
107
- warning: "warning",
108
- white: "white",
109
- gray: "gray",
110
- font: "font",
111
- background: "background",
112
- },
113
-
114
- theme: { light: "light", dark: "dark" },
115
-
116
- overlays: {
117
- "black-50": "black-50",
118
- "black-80": "black-80",
119
- "white-50": "white-50",
120
- "white-80": "white-80",
121
- "gradient-black": "gradient-black",
122
- "gradient-white": "gradient-white",
123
- },
124
-
125
- fontFamilies: { body: "body", code: "code" },
126
-
127
- fontSizes: {
128
- "display-h1": "display-h1",
129
- "display-h2": "display-h2",
130
- "display-h3": "display-h3",
131
- "display-h4": "display-h4",
132
- "display-h5": "display-h5",
133
- h1: "h1",
134
- h2: "h2",
135
- h3: "h3",
136
- h4: "h4",
137
- h5: "h5",
138
- h6: "h6",
139
- body: "body",
140
- small: "small",
141
- },
142
-
143
- fontWeights: { regular: "regular", bold: "bold", black: "black" },
144
-
145
- lineHeights: { body: "body", code: "code" },
146
-
147
- shadows: { xxl: "xxl", xl: "xl", l: "l", m: "m", s: "s", xs: "xs" },
148
-
149
- spacers: {
150
- xxl: "xxl",
151
- xl: "xl",
152
- l: "l",
153
- m: "m",
154
- s: "s",
155
- xs: "xs",
156
- xxs: "xxs",
157
- },
158
-
159
- radiuses: {
160
- xxl: "xxl",
161
- xl: "xl",
162
- l: "l",
163
- m: "m",
164
- s: "s",
165
- xs: "xs",
166
- round: "round",
167
- circle: "circle",
168
- },
169
-
170
- transitions: { short: "short", long: "long", bezier: "bezier" },
171
-
172
- inputVariants: { rounded: "rounded", pill: "pill" },
173
-
174
- inputBackgrounds: { light: "light", dark: "dark" },
175
-
176
- toastStatus: {
177
- success: "success",
178
- error: "error",
179
- warning: "warning",
180
- info: "info",
181
- loading: "loading",
182
- },
183
-
184
- toasterPositions: {
185
- "top-left": "top-left",
186
- "top-right": "top-right",
187
- "bottom-left": "bottom-left",
188
- "bottom-right": "bottom-right",
189
- },
190
-
191
- tabsVariants: { basic: "basic", rounded: "rounded" },
192
-
193
- tabsJustify: { start: "start", stretch: "stretch" },
194
-
195
- slideshowPagination: {
196
- dots: "dots",
197
- "dots-outline": "dots-outline",
198
- bars: "bars",
199
- thumbnails: "thumbnails",
200
- },
201
-
202
- slideshowPaginationPosition: { inside: "inside", outside: "outside" },
203
-
204
- slideshowButtonsPositions: { left: "left", right: "right" },
205
-
206
- slideshowButtonsSizes: { small: "small", large: "large" },
207
-
208
- tableVariants: {
209
- bordered: "bordered",
210
- stripped: "stripped",
211
- "border-bottom": "border-bottom",
212
- },
213
-
214
- messageType: { sent: "sent", received: "received" },
215
-
216
- markdownEditorEditor: {
217
- editorCode: "editorCode",
218
- editorLive: "editorLive",
219
- editorPreview: "editorPreview",
220
- },
221
-
222
- markdownEditorButtons: {
223
- bold: "bold",
224
- italic: "italic",
225
- strikethrough: "strikethrough",
226
- underline: "underline",
227
- ul: "ul",
228
- ol: "ol",
229
- link: "link",
230
- quote: "quote",
231
- hr: "hr",
232
- code: "code",
233
- codeBlock: "codeBlock",
234
- comment: "comment",
235
- image: "image",
236
- },
237
-
238
- markdownEditorTitles: { ...textDisplayTags, h6: textTags.h6 },
239
-
240
- navBurgerPositions: { left: "left", right: "right" },
241
-
242
- navMobileVariants: { full: "full", top: "top", drawer: "drawer" },
243
-
244
- headerVariants: {
245
- primary: "primary",
246
- white: "white",
247
- transparent: "transparent",
248
- },
249
-
250
- iconMenuDirections: {
251
- left: "left",
252
- up: "up",
253
- right: "right",
254
- down: "down",
255
- },
256
-
257
- iconMenuIcon: { plus: "plus", burger: "burger" },
258
-
259
- footerDirections: { horizontal: "horizontal", vertical: "vertical" },
260
-
261
- footerSeparators: { dot: "dot", dash: "dash", none: "none" },
262
-
263
- buttonGroupToggleSelects: { single: "single", multi: "multi" },
264
-
265
- drawerPositions: { left: "left", right: "right" },
266
-
267
- pageLayoutTemplates: { single: "single", multi: "multi" },
268
-
269
- timepickerSteps: {
270
- "1h": "1h",
271
- "30min": "30min",
272
- "15min": "15min",
273
- "1min": "1min",
274
- },
275
-
276
- messagingDateFormats: { short: "short", long: "long" },
277
-
278
- hours: {
279
- "00:00": "00:00",
280
- "01:00": "01:00",
281
- "02:00": "02:00",
282
- "03:00": "03:00",
283
- "04:00": "04:00",
284
- "05:00": "05:00",
285
- "06:00": "06:00",
286
- "07:00": "07:00",
287
- "08:00": "08:00",
288
- "09:00": "09:00",
289
- "10:00": "10:00",
290
- "11:00": "11:00",
291
- "12:00": "12:00",
292
- "13:00": "13:00",
293
- "14:00": "14:00",
294
- "15:00": "15:00",
295
- "16:00": "16:00",
296
- "17:00": "17:00",
297
- "18:00": "18:00",
298
- "19:00": "19:00",
299
- "20:00": "20:00",
300
- "21:00": "21:00",
301
- "22:00": "22:00",
302
- "23:00": "23:00",
303
- },
304
-
305
- halfHours: {
306
- "00:00": "00:00",
307
- "00:30": "00:30",
308
- "01:00": "01:00",
309
- "01:30": "01:30",
310
- "02:00": "02:00",
311
- "02:30": "02:30",
312
- "03:00": "03:00",
313
- "03:30": "03:30",
314
- "04:00": "04:00",
315
- "04:30": "04:30",
316
- "05:00": "05:00",
317
- "05:30": "05:30",
318
- "06:00": "06:00",
319
- "06:30": "06:30",
320
- "07:00": "07:00",
321
- "07:30": "07:30",
322
- "08:00": "08:00",
323
- "08:30": "08:30",
324
- "09:00": "09:00",
325
- "09:30": "09:30",
326
- "10:00": "10:00",
327
- "10:30": "10:30",
328
- "11:00": "11:00",
329
- "11:30": "11:30",
330
- "12:00": "12:00",
331
- "12:30": "12:30",
332
- "13:00": "13:00",
333
- "13:30": "13:30",
334
- "14:00": "14:00",
335
- "14:30": "14:30",
336
- "15:00": "15:00",
337
- "15:30": "15:30",
338
- "16:00": "16:00",
339
- "16:30": "16:30",
340
- "17:00": "17:00",
341
- "17:30": "17:30",
342
- "18:00": "18:00",
343
- "18:30": "18:30",
344
- "19:00": "19:00",
345
- "19:30": "19:30",
346
- "20:00": "20:00",
347
- "20:30": "20:30",
348
- "21:00": "21:00",
349
- "21:30": "21:30",
350
- "22:00": "22:00",
351
- "22:30": "22:30",
352
- "23:00": "23:00",
353
- "23:30": "23:30",
354
- },
355
-
356
- quarterHours: {
357
- "00:00": "00:00",
358
- "00:15": "00:15",
359
- "00:30": "00:30",
360
- "00:45": "00:45",
361
- "01:00": "01:00",
362
- "01:15": "01:15",
363
- "01:30": "01:30",
364
- "01:45": "01:45",
365
- "02:00": "02:00",
366
- "02:15": "02:15",
367
- "02:30": "02:30",
368
- "02:45": "02:45",
369
- "03:00": "03:00",
370
- "03:15": "03:15",
371
- "03:30": "03:30",
372
- "03:45": "03:45",
373
- "04:00": "04:00",
374
- "04:15": "04:15",
375
- "04:30": "04:30",
376
- "04:45": "04:45",
377
- "05:00": "05:00",
378
- "05:15": "05:15",
379
- "05:30": "05:30",
380
- "05:45": "05:45",
381
- "06:00": "06:00",
382
- "06:15": "06:15",
383
- "06:30": "06:30",
384
- "06:45": "06:45",
385
- "07:00": "07:00",
386
- "07:15": "07:15",
387
- "07:30": "07:30",
388
- "07:45": "07:45",
389
- "08:00": "08:00",
390
- "08:15": "08:15",
391
- "08:30": "08:30",
392
- "08:45": "08:45",
393
- "09:00": "09:00",
394
- "09:15": "09:15",
395
- "09:30": "09:30",
396
- "09:45": "09:45",
397
- "10:00": "10:00",
398
- "10:15": "10:15",
399
- "10:30": "10:30",
400
- "10:45": "10:45",
401
- "11:00": "11:00",
402
- "11:15": "11:15",
403
- "11:30": "11:30",
404
- "11:45": "11:45",
405
- "12:00": "12:00",
406
- "12:15": "12:15",
407
- "12:30": "12:30",
408
- "12:45": "12:45",
409
- "13:00": "13:00",
410
- "13:15": "13:15",
411
- "13:30": "13:30",
412
- "13:45": "13:45",
413
- "14:00": "14:00",
414
- "14:15": "14:15",
415
- "14:30": "14:30",
416
- "14:45": "14:45",
417
- "15:00": "15:00",
418
- "15:15": "15:15",
419
- "15:30": "15:30",
420
- "15:45": "15:45",
421
- "16:00": "16:00",
422
- "16:15": "16:15",
423
- "16:30": "16:30",
424
- "16:45": "16:45",
425
- "17:00": "17:00",
426
- "17:15": "17:15",
427
- "17:30": "17:30",
428
- "17:45": "17:45",
429
- "18:00": "18:00",
430
- "18:15": "18:15",
431
- "18:30": "18:30",
432
- "18:45": "18:45",
433
- "19:00": "19:00",
434
- "19:15": "19:15",
435
- "19:30": "19:30",
436
- "19:45": "19:45",
437
- "20:00": "20:00",
438
- "20:15": "20:15",
439
- "20:30": "20:30",
440
- "20:45": "20:45",
441
- "21:00": "21:00",
442
- "21:15": "21:15",
443
- "21:30": "21:30",
444
- "21:45": "21:45",
445
- "22:00": "22:00",
446
- "22:15": "22:15",
447
- "22:30": "22:30",
448
- "22:45": "22:45",
449
- "23:00": "23:00",
450
- "23:15": "23:15",
451
- "23:30": "23:30",
452
- "23:45": "23:45",
453
- },
454
-
455
- minutes: {
456
- "00:00": "00:00",
457
- "00:01": "00:01",
458
- "00:02": "00:02",
459
- "00:03": "00:03",
460
- "00:04": "00:04",
461
- "00:05": "00:05",
462
- "00:06": "00:06",
463
- "00:07": "00:07",
464
- "00:08": "00:08",
465
- "00:09": "00:09",
466
- "00:10": "00:10",
467
- "00:11": "00:11",
468
- "00:12": "00:12",
469
- "00:13": "00:13",
470
- "00:14": "00:14",
471
- "00:15": "00:15",
472
- "00:16": "00:16",
473
- "00:17": "00:17",
474
- "00:18": "00:18",
475
- "00:19": "00:19",
476
- "00:20": "00:20",
477
- "00:21": "00:21",
478
- "00:22": "00:22",
479
- "00:23": "00:23",
480
- "00:24": "00:24",
481
- "00:25": "00:25",
482
- "00:26": "00:26",
483
- "00:27": "00:27",
484
- "00:28": "00:28",
485
- "00:29": "00:29",
486
- "00:30": "00:30",
487
- "00:31": "00:31",
488
- "00:32": "00:32",
489
- "00:33": "00:33",
490
- "00:34": "00:34",
491
- "00:35": "00:35",
492
- "00:36": "00:36",
493
- "00:37": "00:37",
494
- "00:38": "00:38",
495
- "00:39": "00:39",
496
- "00:40": "00:40",
497
- "00:41": "00:41",
498
- "00:42": "00:42",
499
- "00:43": "00:43",
500
- "00:44": "00:44",
501
- "00:45": "00:45",
502
- "00:46": "00:46",
503
- "00:47": "00:47",
504
- "00:48": "00:48",
505
- "00:49": "00:49",
506
- "00:50": "00:50",
507
- "00:51": "00:51",
508
- "00:52": "00:52",
509
- "00:53": "00:53",
510
- "00:54": "00:54",
511
- "00:55": "00:55",
512
- "00:56": "00:56",
513
- "00:57": "00:57",
514
- "00:58": "00:58",
515
- "00:59": "00:59",
516
- "01:00": "01:00",
517
- "01:01": "01:01",
518
- "01:02": "01:02",
519
- "01:03": "01:03",
520
- "01:04": "01:04",
521
- "01:05": "01:05",
522
- "01:06": "01:06",
523
- "01:07": "01:07",
524
- "01:08": "01:08",
525
- "01:09": "01:09",
526
- "01:10": "01:10",
527
- "01:11": "01:11",
528
- "01:12": "01:12",
529
- "01:13": "01:13",
530
- "01:14": "01:14",
531
- "01:15": "01:15",
532
- "01:16": "01:16",
533
- "01:17": "01:17",
534
- "01:18": "01:18",
535
- "01:19": "01:19",
536
- "01:20": "01:20",
537
- "01:21": "01:21",
538
- "01:22": "01:22",
539
- "01:23": "01:23",
540
- "01:24": "01:24",
541
- "01:25": "01:25",
542
- "01:26": "01:26",
543
- "01:27": "01:27",
544
- "01:28": "01:28",
545
- "01:29": "01:29",
546
- "01:30": "01:30",
547
- "01:31": "01:31",
548
- "01:32": "01:32",
549
- "01:33": "01:33",
550
- "01:34": "01:34",
551
- "01:35": "01:35",
552
- "01:36": "01:36",
553
- "01:37": "01:37",
554
- "01:38": "01:38",
555
- "01:39": "01:39",
556
- "01:40": "01:40",
557
- "01:41": "01:41",
558
- "01:42": "01:42",
559
- "01:43": "01:43",
560
- "01:44": "01:44",
561
- "01:45": "01:45",
562
- "01:46": "01:46",
563
- "01:47": "01:47",
564
- "01:48": "01:48",
565
- "01:49": "01:49",
566
- "01:50": "01:50",
567
- "01:51": "01:51",
568
- "01:52": "01:52",
569
- "01:53": "01:53",
570
- "01:54": "01:54",
571
- "01:55": "01:55",
572
- "01:56": "01:56",
573
- "01:57": "01:57",
574
- "01:58": "01:58",
575
- "01:59": "01:59",
576
- "02:00": "02:00",
577
- "02:01": "02:01",
578
- "02:02": "02:02",
579
- "02:03": "02:03",
580
- "02:04": "02:04",
581
- "02:05": "02:05",
582
- "02:06": "02:06",
583
- "02:07": "02:07",
584
- "02:08": "02:08",
585
- "02:09": "02:09",
586
- "02:10": "02:10",
587
- "02:11": "02:11",
588
- "02:12": "02:12",
589
- "02:13": "02:13",
590
- "02:14": "02:14",
591
- "02:15": "02:15",
592
- "02:16": "02:16",
593
- "02:17": "02:17",
594
- "02:18": "02:18",
595
- "02:19": "02:19",
596
- "02:20": "02:20",
597
- "02:21": "02:21",
598
- "02:22": "02:22",
599
- "02:23": "02:23",
600
- "02:24": "02:24",
601
- "02:25": "02:25",
602
- "02:26": "02:26",
603
- "02:27": "02:27",
604
- "02:28": "02:28",
605
- "02:29": "02:29",
606
- "02:30": "02:30",
607
- "02:31": "02:31",
608
- "02:32": "02:32",
609
- "02:33": "02:33",
610
- "02:34": "02:34",
611
- "02:35": "02:35",
612
- "02:36": "02:36",
613
- "02:37": "02:37",
614
- "02:38": "02:38",
615
- "02:39": "02:39",
616
- "02:40": "02:40",
617
- "02:41": "02:41",
618
- "02:42": "02:42",
619
- "02:43": "02:43",
620
- "02:44": "02:44",
621
- "02:45": "02:45",
622
- "02:46": "02:46",
623
- "02:47": "02:47",
624
- "02:48": "02:48",
625
- "02:49": "02:49",
626
- "02:50": "02:50",
627
- "02:51": "02:51",
628
- "02:52": "02:52",
629
- "02:53": "02:53",
630
- "02:54": "02:54",
631
- "02:55": "02:55",
632
- "02:56": "02:56",
633
- "02:57": "02:57",
634
- "02:58": "02:58",
635
- "02:59": "02:59",
636
- "03:00": "03:00",
637
- "03:01": "03:01",
638
- "03:02": "03:02",
639
- "03:03": "03:03",
640
- "03:04": "03:04",
641
- "03:05": "03:05",
642
- "03:06": "03:06",
643
- "03:07": "03:07",
644
- "03:08": "03:08",
645
- "03:09": "03:09",
646
- "03:10": "03:10",
647
- "03:11": "03:11",
648
- "03:12": "03:12",
649
- "03:13": "03:13",
650
- "03:14": "03:14",
651
- "03:15": "03:15",
652
- "03:16": "03:16",
653
- "03:17": "03:17",
654
- "03:18": "03:18",
655
- "03:19": "03:19",
656
- "03:20": "03:20",
657
- "03:21": "03:21",
658
- "03:22": "03:22",
659
- "03:23": "03:23",
660
- "03:24": "03:24",
661
- "03:25": "03:25",
662
- "03:26": "03:26",
663
- "03:27": "03:27",
664
- "03:28": "03:28",
665
- "03:29": "03:29",
666
- "03:30": "03:30",
667
- "03:31": "03:31",
668
- "03:32": "03:32",
669
- "03:33": "03:33",
670
- "03:34": "03:34",
671
- "03:35": "03:35",
672
- "03:36": "03:36",
673
- "03:37": "03:37",
674
- "03:38": "03:38",
675
- "03:39": "03:39",
676
- "03:40": "03:40",
677
- "03:41": "03:41",
678
- "03:42": "03:42",
679
- "03:43": "03:43",
680
- "03:44": "03:44",
681
- "03:45": "03:45",
682
- "03:46": "03:46",
683
- "03:47": "03:47",
684
- "03:48": "03:48",
685
- "03:49": "03:49",
686
- "03:50": "03:50",
687
- "03:51": "03:51",
688
- "03:52": "03:52",
689
- "03:53": "03:53",
690
- "03:54": "03:54",
691
- "03:55": "03:55",
692
- "03:56": "03:56",
693
- "03:57": "03:57",
694
- "03:58": "03:58",
695
- "03:59": "03:59",
696
- "04:00": "04:00",
697
- "04:01": "04:01",
698
- "04:02": "04:02",
699
- "04:03": "04:03",
700
- "04:04": "04:04",
701
- "04:05": "04:05",
702
- "04:06": "04:06",
703
- "04:07": "04:07",
704
- "04:08": "04:08",
705
- "04:09": "04:09",
706
- "04:10": "04:10",
707
- "04:11": "04:11",
708
- "04:12": "04:12",
709
- "04:13": "04:13",
710
- "04:14": "04:14",
711
- "04:15": "04:15",
712
- "04:16": "04:16",
713
- "04:17": "04:17",
714
- "04:18": "04:18",
715
- "04:19": "04:19",
716
- "04:20": "04:20",
717
- "04:21": "04:21",
718
- "04:22": "04:22",
719
- "04:23": "04:23",
720
- "04:24": "04:24",
721
- "04:25": "04:25",
722
- "04:26": "04:26",
723
- "04:27": "04:27",
724
- "04:28": "04:28",
725
- "04:29": "04:29",
726
- "04:30": "04:30",
727
- "04:31": "04:31",
728
- "04:32": "04:32",
729
- "04:33": "04:33",
730
- "04:34": "04:34",
731
- "04:35": "04:35",
732
- "04:36": "04:36",
733
- "04:37": "04:37",
734
- "04:38": "04:38",
735
- "04:39": "04:39",
736
- "04:40": "04:40",
737
- "04:41": "04:41",
738
- "04:42": "04:42",
739
- "04:43": "04:43",
740
- "04:44": "04:44",
741
- "04:45": "04:45",
742
- "04:46": "04:46",
743
- "04:47": "04:47",
744
- "04:48": "04:48",
745
- "04:49": "04:49",
746
- "04:50": "04:50",
747
- "04:51": "04:51",
748
- "04:52": "04:52",
749
- "04:53": "04:53",
750
- "04:54": "04:54",
751
- "04:55": "04:55",
752
- "04:56": "04:56",
753
- "04:57": "04:57",
754
- "04:58": "04:58",
755
- "04:59": "04:59",
756
- "05:00": "05:00",
757
- "05:01": "05:01",
758
- "05:02": "05:02",
759
- "05:03": "05:03",
760
- "05:04": "05:04",
761
- "05:05": "05:05",
762
- "05:06": "05:06",
763
- "05:07": "05:07",
764
- "05:08": "05:08",
765
- "05:09": "05:09",
766
- "05:10": "05:10",
767
- "05:11": "05:11",
768
- "05:12": "05:12",
769
- "05:13": "05:13",
770
- "05:14": "05:14",
771
- "05:15": "05:15",
772
- "05:16": "05:16",
773
- "05:17": "05:17",
774
- "05:18": "05:18",
775
- "05:19": "05:19",
776
- "05:20": "05:20",
777
- "05:21": "05:21",
778
- "05:22": "05:22",
779
- "05:23": "05:23",
780
- "05:24": "05:24",
781
- "05:25": "05:25",
782
- "05:26": "05:26",
783
- "05:27": "05:27",
784
- "05:28": "05:28",
785
- "05:29": "05:29",
786
- "05:30": "05:30",
787
- "05:31": "05:31",
788
- "05:32": "05:32",
789
- "05:33": "05:33",
790
- "05:34": "05:34",
791
- "05:35": "05:35",
792
- "05:36": "05:36",
793
- "05:37": "05:37",
794
- "05:38": "05:38",
795
- "05:39": "05:39",
796
- "05:40": "05:40",
797
- "05:41": "05:41",
798
- "05:42": "05:42",
799
- "05:43": "05:43",
800
- "05:44": "05:44",
801
- "05:45": "05:45",
802
- "05:46": "05:46",
803
- "05:47": "05:47",
804
- "05:48": "05:48",
805
- "05:49": "05:49",
806
- "05:50": "05:50",
807
- "05:51": "05:51",
808
- "05:52": "05:52",
809
- "05:53": "05:53",
810
- "05:54": "05:54",
811
- "05:55": "05:55",
812
- "05:56": "05:56",
813
- "05:57": "05:57",
814
- "05:58": "05:58",
815
- "05:59": "05:59",
816
- "06:00": "06:00",
817
- "06:01": "06:01",
818
- "06:02": "06:02",
819
- "06:03": "06:03",
820
- "06:04": "06:04",
821
- "06:05": "06:05",
822
- "06:06": "06:06",
823
- "06:07": "06:07",
824
- "06:08": "06:08",
825
- "06:09": "06:09",
826
- "06:10": "06:10",
827
- "06:11": "06:11",
828
- "06:12": "06:12",
829
- "06:13": "06:13",
830
- "06:14": "06:14",
831
- "06:15": "06:15",
832
- "06:16": "06:16",
833
- "06:17": "06:17",
834
- "06:18": "06:18",
835
- "06:19": "06:19",
836
- "06:20": "06:20",
837
- "06:21": "06:21",
838
- "06:22": "06:22",
839
- "06:23": "06:23",
840
- "06:24": "06:24",
841
- "06:25": "06:25",
842
- "06:26": "06:26",
843
- "06:27": "06:27",
844
- "06:28": "06:28",
845
- "06:29": "06:29",
846
- "06:30": "06:30",
847
- "06:31": "06:31",
848
- "06:32": "06:32",
849
- "06:33": "06:33",
850
- "06:34": "06:34",
851
- "06:35": "06:35",
852
- "06:36": "06:36",
853
- "06:37": "06:37",
854
- "06:38": "06:38",
855
- "06:39": "06:39",
856
- "06:40": "06:40",
857
- "06:41": "06:41",
858
- "06:42": "06:42",
859
- "06:43": "06:43",
860
- "06:44": "06:44",
861
- "06:45": "06:45",
862
- "06:46": "06:46",
863
- "06:47": "06:47",
864
- "06:48": "06:48",
865
- "06:49": "06:49",
866
- "06:50": "06:50",
867
- "06:51": "06:51",
868
- "06:52": "06:52",
869
- "06:53": "06:53",
870
- "06:54": "06:54",
871
- "06:55": "06:55",
872
- "06:56": "06:56",
873
- "06:57": "06:57",
874
- "06:58": "06:58",
875
- "06:59": "06:59",
876
- "07:00": "07:00",
877
- "07:01": "07:01",
878
- "07:02": "07:02",
879
- "07:03": "07:03",
880
- "07:04": "07:04",
881
- "07:05": "07:05",
882
- "07:06": "07:06",
883
- "07:07": "07:07",
884
- "07:08": "07:08",
885
- "07:09": "07:09",
886
- "07:10": "07:10",
887
- "07:11": "07:11",
888
- "07:12": "07:12",
889
- "07:13": "07:13",
890
- "07:14": "07:14",
891
- "07:15": "07:15",
892
- "07:16": "07:16",
893
- "07:17": "07:17",
894
- "07:18": "07:18",
895
- "07:19": "07:19",
896
- "07:20": "07:20",
897
- "07:21": "07:21",
898
- "07:22": "07:22",
899
- "07:23": "07:23",
900
- "07:24": "07:24",
901
- "07:25": "07:25",
902
- "07:26": "07:26",
903
- "07:27": "07:27",
904
- "07:28": "07:28",
905
- "07:29": "07:29",
906
- "07:30": "07:30",
907
- "07:31": "07:31",
908
- "07:32": "07:32",
909
- "07:33": "07:33",
910
- "07:34": "07:34",
911
- "07:35": "07:35",
912
- "07:36": "07:36",
913
- "07:37": "07:37",
914
- "07:38": "07:38",
915
- "07:39": "07:39",
916
- "07:40": "07:40",
917
- "07:41": "07:41",
918
- "07:42": "07:42",
919
- "07:43": "07:43",
920
- "07:44": "07:44",
921
- "07:45": "07:45",
922
- "07:46": "07:46",
923
- "07:47": "07:47",
924
- "07:48": "07:48",
925
- "07:49": "07:49",
926
- "07:50": "07:50",
927
- "07:51": "07:51",
928
- "07:52": "07:52",
929
- "07:53": "07:53",
930
- "07:54": "07:54",
931
- "07:55": "07:55",
932
- "07:56": "07:56",
933
- "07:57": "07:57",
934
- "07:58": "07:58",
935
- "07:59": "07:59",
936
- "08:00": "08:00",
937
- "08:01": "08:01",
938
- "08:02": "08:02",
939
- "08:03": "08:03",
940
- "08:04": "08:04",
941
- "08:05": "08:05",
942
- "08:06": "08:06",
943
- "08:07": "08:07",
944
- "08:08": "08:08",
945
- "08:09": "08:09",
946
- "08:10": "08:10",
947
- "08:11": "08:11",
948
- "08:12": "08:12",
949
- "08:13": "08:13",
950
- "08:14": "08:14",
951
- "08:15": "08:15",
952
- "08:16": "08:16",
953
- "08:17": "08:17",
954
- "08:18": "08:18",
955
- "08:19": "08:19",
956
- "08:20": "08:20",
957
- "08:21": "08:21",
958
- "08:22": "08:22",
959
- "08:23": "08:23",
960
- "08:24": "08:24",
961
- "08:25": "08:25",
962
- "08:26": "08:26",
963
- "08:27": "08:27",
964
- "08:28": "08:28",
965
- "08:29": "08:29",
966
- "08:30": "08:30",
967
- "08:31": "08:31",
968
- "08:32": "08:32",
969
- "08:33": "08:33",
970
- "08:34": "08:34",
971
- "08:35": "08:35",
972
- "08:36": "08:36",
973
- "08:37": "08:37",
974
- "08:38": "08:38",
975
- "08:39": "08:39",
976
- "08:40": "08:40",
977
- "08:41": "08:41",
978
- "08:42": "08:42",
979
- "08:43": "08:43",
980
- "08:44": "08:44",
981
- "08:45": "08:45",
982
- "08:46": "08:46",
983
- "08:47": "08:47",
984
- "08:48": "08:48",
985
- "08:49": "08:49",
986
- "08:50": "08:50",
987
- "08:51": "08:51",
988
- "08:52": "08:52",
989
- "08:53": "08:53",
990
- "08:54": "08:54",
991
- "08:55": "08:55",
992
- "08:56": "08:56",
993
- "08:57": "08:57",
994
- "08:58": "08:58",
995
- "08:59": "08:59",
996
- "09:00": "09:00",
997
- "09:01": "09:01",
998
- "09:02": "09:02",
999
- "09:03": "09:03",
1000
- "09:04": "09:04",
1001
- "09:05": "09:05",
1002
- "09:06": "09:06",
1003
- "09:07": "09:07",
1004
- "09:08": "09:08",
1005
- "09:09": "09:09",
1006
- "09:10": "09:10",
1007
- "09:11": "09:11",
1008
- "09:12": "09:12",
1009
- "09:13": "09:13",
1010
- "09:14": "09:14",
1011
- "09:15": "09:15",
1012
- "09:16": "09:16",
1013
- "09:17": "09:17",
1014
- "09:18": "09:18",
1015
- "09:19": "09:19",
1016
- "09:20": "09:20",
1017
- "09:21": "09:21",
1018
- "09:22": "09:22",
1019
- "09:23": "09:23",
1020
- "09:24": "09:24",
1021
- "09:25": "09:25",
1022
- "09:26": "09:26",
1023
- "09:27": "09:27",
1024
- "09:28": "09:28",
1025
- "09:29": "09:29",
1026
- "09:30": "09:30",
1027
- "09:31": "09:31",
1028
- "09:32": "09:32",
1029
- "09:33": "09:33",
1030
- "09:34": "09:34",
1031
- "09:35": "09:35",
1032
- "09:36": "09:36",
1033
- "09:37": "09:37",
1034
- "09:38": "09:38",
1035
- "09:39": "09:39",
1036
- "09:40": "09:40",
1037
- "09:41": "09:41",
1038
- "09:42": "09:42",
1039
- "09:43": "09:43",
1040
- "09:44": "09:44",
1041
- "09:45": "09:45",
1042
- "09:46": "09:46",
1043
- "09:47": "09:47",
1044
- "09:48": "09:48",
1045
- "09:49": "09:49",
1046
- "09:50": "09:50",
1047
- "09:51": "09:51",
1048
- "09:52": "09:52",
1049
- "09:53": "09:53",
1050
- "09:54": "09:54",
1051
- "09:55": "09:55",
1052
- "09:56": "09:56",
1053
- "09:57": "09:57",
1054
- "09:58": "09:58",
1055
- "09:59": "09:59",
1056
- "10:00": "10:00",
1057
- "10:01": "10:01",
1058
- "10:02": "10:02",
1059
- "10:03": "10:03",
1060
- "10:04": "10:04",
1061
- "10:05": "10:05",
1062
- "10:06": "10:06",
1063
- "10:07": "10:07",
1064
- "10:08": "10:08",
1065
- "10:09": "10:09",
1066
- "10:10": "10:10",
1067
- "10:11": "10:11",
1068
- "10:12": "10:12",
1069
- "10:13": "10:13",
1070
- "10:14": "10:14",
1071
- "10:15": "10:15",
1072
- "10:16": "10:16",
1073
- "10:17": "10:17",
1074
- "10:18": "10:18",
1075
- "10:19": "10:19",
1076
- "10:20": "10:20",
1077
- "10:21": "10:21",
1078
- "10:22": "10:22",
1079
- "10:23": "10:23",
1080
- "10:24": "10:24",
1081
- "10:25": "10:25",
1082
- "10:26": "10:26",
1083
- "10:27": "10:27",
1084
- "10:28": "10:28",
1085
- "10:29": "10:29",
1086
- "10:30": "10:30",
1087
- "10:31": "10:31",
1088
- "10:32": "10:32",
1089
- "10:33": "10:33",
1090
- "10:34": "10:34",
1091
- "10:35": "10:35",
1092
- "10:36": "10:36",
1093
- "10:37": "10:37",
1094
- "10:38": "10:38",
1095
- "10:39": "10:39",
1096
- "10:40": "10:40",
1097
- "10:41": "10:41",
1098
- "10:42": "10:42",
1099
- "10:43": "10:43",
1100
- "10:44": "10:44",
1101
- "10:45": "10:45",
1102
- "10:46": "10:46",
1103
- "10:47": "10:47",
1104
- "10:48": "10:48",
1105
- "10:49": "10:49",
1106
- "10:50": "10:50",
1107
- "10:51": "10:51",
1108
- "10:52": "10:52",
1109
- "10:53": "10:53",
1110
- "10:54": "10:54",
1111
- "10:55": "10:55",
1112
- "10:56": "10:56",
1113
- "10:57": "10:57",
1114
- "10:58": "10:58",
1115
- "10:59": "10:59",
1116
- "11:00": "11:00",
1117
- "11:01": "11:01",
1118
- "11:02": "11:02",
1119
- "11:03": "11:03",
1120
- "11:04": "11:04",
1121
- "11:05": "11:05",
1122
- "11:06": "11:06",
1123
- "11:07": "11:07",
1124
- "11:08": "11:08",
1125
- "11:09": "11:09",
1126
- "11:10": "11:10",
1127
- "11:11": "11:11",
1128
- "11:12": "11:12",
1129
- "11:13": "11:13",
1130
- "11:14": "11:14",
1131
- "11:15": "11:15",
1132
- "11:16": "11:16",
1133
- "11:17": "11:17",
1134
- "11:18": "11:18",
1135
- "11:19": "11:19",
1136
- "11:20": "11:20",
1137
- "11:21": "11:21",
1138
- "11:22": "11:22",
1139
- "11:23": "11:23",
1140
- "11:24": "11:24",
1141
- "11:25": "11:25",
1142
- "11:26": "11:26",
1143
- "11:27": "11:27",
1144
- "11:28": "11:28",
1145
- "11:29": "11:29",
1146
- "11:30": "11:30",
1147
- "11:31": "11:31",
1148
- "11:32": "11:32",
1149
- "11:33": "11:33",
1150
- "11:34": "11:34",
1151
- "11:35": "11:35",
1152
- "11:36": "11:36",
1153
- "11:37": "11:37",
1154
- "11:38": "11:38",
1155
- "11:39": "11:39",
1156
- "11:40": "11:40",
1157
- "11:41": "11:41",
1158
- "11:42": "11:42",
1159
- "11:43": "11:43",
1160
- "11:44": "11:44",
1161
- "11:45": "11:45",
1162
- "11:46": "11:46",
1163
- "11:47": "11:47",
1164
- "11:48": "11:48",
1165
- "11:49": "11:49",
1166
- "11:50": "11:50",
1167
- "11:51": "11:51",
1168
- "11:52": "11:52",
1169
- "11:53": "11:53",
1170
- "11:54": "11:54",
1171
- "11:55": "11:55",
1172
- "11:56": "11:56",
1173
- "11:57": "11:57",
1174
- "11:58": "11:58",
1175
- "11:59": "11:59",
1176
- "12:00": "12:00",
1177
- "12:01": "12:01",
1178
- "12:02": "12:02",
1179
- "12:03": "12:03",
1180
- "12:04": "12:04",
1181
- "12:05": "12:05",
1182
- "12:06": "12:06",
1183
- "12:07": "12:07",
1184
- "12:08": "12:08",
1185
- "12:09": "12:09",
1186
- "12:10": "12:10",
1187
- "12:11": "12:11",
1188
- "12:12": "12:12",
1189
- "12:13": "12:13",
1190
- "12:14": "12:14",
1191
- "12:15": "12:15",
1192
- "12:16": "12:16",
1193
- "12:17": "12:17",
1194
- "12:18": "12:18",
1195
- "12:19": "12:19",
1196
- "12:20": "12:20",
1197
- "12:21": "12:21",
1198
- "12:22": "12:22",
1199
- "12:23": "12:23",
1200
- "12:24": "12:24",
1201
- "12:25": "12:25",
1202
- "12:26": "12:26",
1203
- "12:27": "12:27",
1204
- "12:28": "12:28",
1205
- "12:29": "12:29",
1206
- "12:30": "12:30",
1207
- "12:31": "12:31",
1208
- "12:32": "12:32",
1209
- "12:33": "12:33",
1210
- "12:34": "12:34",
1211
- "12:35": "12:35",
1212
- "12:36": "12:36",
1213
- "12:37": "12:37",
1214
- "12:38": "12:38",
1215
- "12:39": "12:39",
1216
- "12:40": "12:40",
1217
- "12:41": "12:41",
1218
- "12:42": "12:42",
1219
- "12:43": "12:43",
1220
- "12:44": "12:44",
1221
- "12:45": "12:45",
1222
- "12:46": "12:46",
1223
- "12:47": "12:47",
1224
- "12:48": "12:48",
1225
- "12:49": "12:49",
1226
- "12:50": "12:50",
1227
- "12:51": "12:51",
1228
- "12:52": "12:52",
1229
- "12:53": "12:53",
1230
- "12:54": "12:54",
1231
- "12:55": "12:55",
1232
- "12:56": "12:56",
1233
- "12:57": "12:57",
1234
- "12:58": "12:58",
1235
- "12:59": "12:59",
1236
- "13:00": "13:00",
1237
- "13:01": "13:01",
1238
- "13:02": "13:02",
1239
- "13:03": "13:03",
1240
- "13:04": "13:04",
1241
- "13:05": "13:05",
1242
- "13:06": "13:06",
1243
- "13:07": "13:07",
1244
- "13:08": "13:08",
1245
- "13:09": "13:09",
1246
- "13:10": "13:10",
1247
- "13:11": "13:11",
1248
- "13:12": "13:12",
1249
- "13:13": "13:13",
1250
- "13:14": "13:14",
1251
- "13:15": "13:15",
1252
- "13:16": "13:16",
1253
- "13:17": "13:17",
1254
- "13:18": "13:18",
1255
- "13:19": "13:19",
1256
- "13:20": "13:20",
1257
- "13:21": "13:21",
1258
- "13:22": "13:22",
1259
- "13:23": "13:23",
1260
- "13:24": "13:24",
1261
- "13:25": "13:25",
1262
- "13:26": "13:26",
1263
- "13:27": "13:27",
1264
- "13:28": "13:28",
1265
- "13:29": "13:29",
1266
- "13:30": "13:30",
1267
- "13:31": "13:31",
1268
- "13:32": "13:32",
1269
- "13:33": "13:33",
1270
- "13:34": "13:34",
1271
- "13:35": "13:35",
1272
- "13:36": "13:36",
1273
- "13:37": "13:37",
1274
- "13:38": "13:38",
1275
- "13:39": "13:39",
1276
- "13:40": "13:40",
1277
- "13:41": "13:41",
1278
- "13:42": "13:42",
1279
- "13:43": "13:43",
1280
- "13:44": "13:44",
1281
- "13:45": "13:45",
1282
- "13:46": "13:46",
1283
- "13:47": "13:47",
1284
- "13:48": "13:48",
1285
- "13:49": "13:49",
1286
- "13:50": "13:50",
1287
- "13:51": "13:51",
1288
- "13:52": "13:52",
1289
- "13:53": "13:53",
1290
- "13:54": "13:54",
1291
- "13:55": "13:55",
1292
- "13:56": "13:56",
1293
- "13:57": "13:57",
1294
- "13:58": "13:58",
1295
- "13:59": "13:59",
1296
- "14:00": "14:00",
1297
- "14:01": "14:01",
1298
- "14:02": "14:02",
1299
- "14:03": "14:03",
1300
- "14:04": "14:04",
1301
- "14:05": "14:05",
1302
- "14:06": "14:06",
1303
- "14:07": "14:07",
1304
- "14:08": "14:08",
1305
- "14:09": "14:09",
1306
- "14:10": "14:10",
1307
- "14:11": "14:11",
1308
- "14:12": "14:12",
1309
- "14:13": "14:13",
1310
- "14:14": "14:14",
1311
- "14:15": "14:15",
1312
- "14:16": "14:16",
1313
- "14:17": "14:17",
1314
- "14:18": "14:18",
1315
- "14:19": "14:19",
1316
- "14:20": "14:20",
1317
- "14:21": "14:21",
1318
- "14:22": "14:22",
1319
- "14:23": "14:23",
1320
- "14:24": "14:24",
1321
- "14:25": "14:25",
1322
- "14:26": "14:26",
1323
- "14:27": "14:27",
1324
- "14:28": "14:28",
1325
- "14:29": "14:29",
1326
- "14:30": "14:30",
1327
- "14:31": "14:31",
1328
- "14:32": "14:32",
1329
- "14:33": "14:33",
1330
- "14:34": "14:34",
1331
- "14:35": "14:35",
1332
- "14:36": "14:36",
1333
- "14:37": "14:37",
1334
- "14:38": "14:38",
1335
- "14:39": "14:39",
1336
- "14:40": "14:40",
1337
- "14:41": "14:41",
1338
- "14:42": "14:42",
1339
- "14:43": "14:43",
1340
- "14:44": "14:44",
1341
- "14:45": "14:45",
1342
- "14:46": "14:46",
1343
- "14:47": "14:47",
1344
- "14:48": "14:48",
1345
- "14:49": "14:49",
1346
- "14:50": "14:50",
1347
- "14:51": "14:51",
1348
- "14:52": "14:52",
1349
- "14:53": "14:53",
1350
- "14:54": "14:54",
1351
- "14:55": "14:55",
1352
- "14:56": "14:56",
1353
- "14:57": "14:57",
1354
- "14:58": "14:58",
1355
- "14:59": "14:59",
1356
- "15:00": "15:00",
1357
- "15:01": "15:01",
1358
- "15:02": "15:02",
1359
- "15:03": "15:03",
1360
- "15:04": "15:04",
1361
- "15:05": "15:05",
1362
- "15:06": "15:06",
1363
- "15:07": "15:07",
1364
- "15:08": "15:08",
1365
- "15:09": "15:09",
1366
- "15:10": "15:10",
1367
- "15:11": "15:11",
1368
- "15:12": "15:12",
1369
- "15:13": "15:13",
1370
- "15:14": "15:14",
1371
- "15:15": "15:15",
1372
- "15:16": "15:16",
1373
- "15:17": "15:17",
1374
- "15:18": "15:18",
1375
- "15:19": "15:19",
1376
- "15:20": "15:20",
1377
- "15:21": "15:21",
1378
- "15:22": "15:22",
1379
- "15:23": "15:23",
1380
- "15:24": "15:24",
1381
- "15:25": "15:25",
1382
- "15:26": "15:26",
1383
- "15:27": "15:27",
1384
- "15:28": "15:28",
1385
- "15:29": "15:29",
1386
- "15:30": "15:30",
1387
- "15:31": "15:31",
1388
- "15:32": "15:32",
1389
- "15:33": "15:33",
1390
- "15:34": "15:34",
1391
- "15:35": "15:35",
1392
- "15:36": "15:36",
1393
- "15:37": "15:37",
1394
- "15:38": "15:38",
1395
- "15:39": "15:39",
1396
- "15:40": "15:40",
1397
- "15:41": "15:41",
1398
- "15:42": "15:42",
1399
- "15:43": "15:43",
1400
- "15:44": "15:44",
1401
- "15:45": "15:45",
1402
- "15:46": "15:46",
1403
- "15:47": "15:47",
1404
- "15:48": "15:48",
1405
- "15:49": "15:49",
1406
- "15:50": "15:50",
1407
- "15:51": "15:51",
1408
- "15:52": "15:52",
1409
- "15:53": "15:53",
1410
- "15:54": "15:54",
1411
- "15:55": "15:55",
1412
- "15:56": "15:56",
1413
- "15:57": "15:57",
1414
- "15:58": "15:58",
1415
- "15:59": "15:59",
1416
- "16:00": "16:00",
1417
- "16:01": "16:01",
1418
- "16:02": "16:02",
1419
- "16:03": "16:03",
1420
- "16:04": "16:04",
1421
- "16:05": "16:05",
1422
- "16:06": "16:06",
1423
- "16:07": "16:07",
1424
- "16:08": "16:08",
1425
- "16:09": "16:09",
1426
- "16:10": "16:10",
1427
- "16:11": "16:11",
1428
- "16:12": "16:12",
1429
- "16:13": "16:13",
1430
- "16:14": "16:14",
1431
- "16:15": "16:15",
1432
- "16:16": "16:16",
1433
- "16:17": "16:17",
1434
- "16:18": "16:18",
1435
- "16:19": "16:19",
1436
- "16:20": "16:20",
1437
- "16:21": "16:21",
1438
- "16:22": "16:22",
1439
- "16:23": "16:23",
1440
- "16:24": "16:24",
1441
- "16:25": "16:25",
1442
- "16:26": "16:26",
1443
- "16:27": "16:27",
1444
- "16:28": "16:28",
1445
- "16:29": "16:29",
1446
- "16:30": "16:30",
1447
- "16:31": "16:31",
1448
- "16:32": "16:32",
1449
- "16:33": "16:33",
1450
- "16:34": "16:34",
1451
- "16:35": "16:35",
1452
- "16:36": "16:36",
1453
- "16:37": "16:37",
1454
- "16:38": "16:38",
1455
- "16:39": "16:39",
1456
- "16:40": "16:40",
1457
- "16:41": "16:41",
1458
- "16:42": "16:42",
1459
- "16:43": "16:43",
1460
- "16:44": "16:44",
1461
- "16:45": "16:45",
1462
- "16:46": "16:46",
1463
- "16:47": "16:47",
1464
- "16:48": "16:48",
1465
- "16:49": "16:49",
1466
- "16:50": "16:50",
1467
- "16:51": "16:51",
1468
- "16:52": "16:52",
1469
- "16:53": "16:53",
1470
- "16:54": "16:54",
1471
- "16:55": "16:55",
1472
- "16:56": "16:56",
1473
- "16:57": "16:57",
1474
- "16:58": "16:58",
1475
- "16:59": "16:59",
1476
- "17:00": "17:00",
1477
- "17:01": "17:01",
1478
- "17:02": "17:02",
1479
- "17:03": "17:03",
1480
- "17:04": "17:04",
1481
- "17:05": "17:05",
1482
- "17:06": "17:06",
1483
- "17:07": "17:07",
1484
- "17:08": "17:08",
1485
- "17:09": "17:09",
1486
- "17:10": "17:10",
1487
- "17:11": "17:11",
1488
- "17:12": "17:12",
1489
- "17:13": "17:13",
1490
- "17:14": "17:14",
1491
- "17:15": "17:15",
1492
- "17:16": "17:16",
1493
- "17:17": "17:17",
1494
- "17:18": "17:18",
1495
- "17:19": "17:19",
1496
- "17:20": "17:20",
1497
- "17:21": "17:21",
1498
- "17:22": "17:22",
1499
- "17:23": "17:23",
1500
- "17:24": "17:24",
1501
- "17:25": "17:25",
1502
- "17:26": "17:26",
1503
- "17:27": "17:27",
1504
- "17:28": "17:28",
1505
- "17:29": "17:29",
1506
- "17:30": "17:30",
1507
- "17:31": "17:31",
1508
- "17:32": "17:32",
1509
- "17:33": "17:33",
1510
- "17:34": "17:34",
1511
- "17:35": "17:35",
1512
- "17:36": "17:36",
1513
- "17:37": "17:37",
1514
- "17:38": "17:38",
1515
- "17:39": "17:39",
1516
- "17:40": "17:40",
1517
- "17:41": "17:41",
1518
- "17:42": "17:42",
1519
- "17:43": "17:43",
1520
- "17:44": "17:44",
1521
- "17:45": "17:45",
1522
- "17:46": "17:46",
1523
- "17:47": "17:47",
1524
- "17:48": "17:48",
1525
- "17:49": "17:49",
1526
- "17:50": "17:50",
1527
- "17:51": "17:51",
1528
- "17:52": "17:52",
1529
- "17:53": "17:53",
1530
- "17:54": "17:54",
1531
- "17:55": "17:55",
1532
- "17:56": "17:56",
1533
- "17:57": "17:57",
1534
- "17:58": "17:58",
1535
- "17:59": "17:59",
1536
- "18:00": "18:00",
1537
- "18:01": "18:01",
1538
- "18:02": "18:02",
1539
- "18:03": "18:03",
1540
- "18:04": "18:04",
1541
- "18:05": "18:05",
1542
- "18:06": "18:06",
1543
- "18:07": "18:07",
1544
- "18:08": "18:08",
1545
- "18:09": "18:09",
1546
- "18:10": "18:10",
1547
- "18:11": "18:11",
1548
- "18:12": "18:12",
1549
- "18:13": "18:13",
1550
- "18:14": "18:14",
1551
- "18:15": "18:15",
1552
- "18:16": "18:16",
1553
- "18:17": "18:17",
1554
- "18:18": "18:18",
1555
- "18:19": "18:19",
1556
- "18:20": "18:20",
1557
- "18:21": "18:21",
1558
- "18:22": "18:22",
1559
- "18:23": "18:23",
1560
- "18:24": "18:24",
1561
- "18:25": "18:25",
1562
- "18:26": "18:26",
1563
- "18:27": "18:27",
1564
- "18:28": "18:28",
1565
- "18:29": "18:29",
1566
- "18:30": "18:30",
1567
- "18:31": "18:31",
1568
- "18:32": "18:32",
1569
- "18:33": "18:33",
1570
- "18:34": "18:34",
1571
- "18:35": "18:35",
1572
- "18:36": "18:36",
1573
- "18:37": "18:37",
1574
- "18:38": "18:38",
1575
- "18:39": "18:39",
1576
- "18:40": "18:40",
1577
- "18:41": "18:41",
1578
- "18:42": "18:42",
1579
- "18:43": "18:43",
1580
- "18:44": "18:44",
1581
- "18:45": "18:45",
1582
- "18:46": "18:46",
1583
- "18:47": "18:47",
1584
- "18:48": "18:48",
1585
- "18:49": "18:49",
1586
- "18:50": "18:50",
1587
- "18:51": "18:51",
1588
- "18:52": "18:52",
1589
- "18:53": "18:53",
1590
- "18:54": "18:54",
1591
- "18:55": "18:55",
1592
- "18:56": "18:56",
1593
- "18:57": "18:57",
1594
- "18:58": "18:58",
1595
- "18:59": "18:59",
1596
- "19:00": "19:00",
1597
- "19:01": "19:01",
1598
- "19:02": "19:02",
1599
- "19:03": "19:03",
1600
- "19:04": "19:04",
1601
- "19:05": "19:05",
1602
- "19:06": "19:06",
1603
- "19:07": "19:07",
1604
- "19:08": "19:08",
1605
- "19:09": "19:09",
1606
- "19:10": "19:10",
1607
- "19:11": "19:11",
1608
- "19:12": "19:12",
1609
- "19:13": "19:13",
1610
- "19:14": "19:14",
1611
- "19:15": "19:15",
1612
- "19:16": "19:16",
1613
- "19:17": "19:17",
1614
- "19:18": "19:18",
1615
- "19:19": "19:19",
1616
- "19:20": "19:20",
1617
- "19:21": "19:21",
1618
- "19:22": "19:22",
1619
- "19:23": "19:23",
1620
- "19:24": "19:24",
1621
- "19:25": "19:25",
1622
- "19:26": "19:26",
1623
- "19:27": "19:27",
1624
- "19:28": "19:28",
1625
- "19:29": "19:29",
1626
- "19:30": "19:30",
1627
- "19:31": "19:31",
1628
- "19:32": "19:32",
1629
- "19:33": "19:33",
1630
- "19:34": "19:34",
1631
- "19:35": "19:35",
1632
- "19:36": "19:36",
1633
- "19:37": "19:37",
1634
- "19:38": "19:38",
1635
- "19:39": "19:39",
1636
- "19:40": "19:40",
1637
- "19:41": "19:41",
1638
- "19:42": "19:42",
1639
- "19:43": "19:43",
1640
- "19:44": "19:44",
1641
- "19:45": "19:45",
1642
- "19:46": "19:46",
1643
- "19:47": "19:47",
1644
- "19:48": "19:48",
1645
- "19:49": "19:49",
1646
- "19:50": "19:50",
1647
- "19:51": "19:51",
1648
- "19:52": "19:52",
1649
- "19:53": "19:53",
1650
- "19:54": "19:54",
1651
- "19:55": "19:55",
1652
- "19:56": "19:56",
1653
- "19:57": "19:57",
1654
- "19:58": "19:58",
1655
- "19:59": "19:59",
1656
- "20:00": "20:00",
1657
- "20:01": "20:01",
1658
- "20:02": "20:02",
1659
- "20:03": "20:03",
1660
- "20:04": "20:04",
1661
- "20:05": "20:05",
1662
- "20:06": "20:06",
1663
- "20:07": "20:07",
1664
- "20:08": "20:08",
1665
- "20:09": "20:09",
1666
- "20:10": "20:10",
1667
- "20:11": "20:11",
1668
- "20:12": "20:12",
1669
- "20:13": "20:13",
1670
- "20:14": "20:14",
1671
- "20:15": "20:15",
1672
- "20:16": "20:16",
1673
- "20:17": "20:17",
1674
- "20:18": "20:18",
1675
- "20:19": "20:19",
1676
- "20:20": "20:20",
1677
- "20:21": "20:21",
1678
- "20:22": "20:22",
1679
- "20:23": "20:23",
1680
- "20:24": "20:24",
1681
- "20:25": "20:25",
1682
- "20:26": "20:26",
1683
- "20:27": "20:27",
1684
- "20:28": "20:28",
1685
- "20:29": "20:29",
1686
- "20:30": "20:30",
1687
- "20:31": "20:31",
1688
- "20:32": "20:32",
1689
- "20:33": "20:33",
1690
- "20:34": "20:34",
1691
- "20:35": "20:35",
1692
- "20:36": "20:36",
1693
- "20:37": "20:37",
1694
- "20:38": "20:38",
1695
- "20:39": "20:39",
1696
- "20:40": "20:40",
1697
- "20:41": "20:41",
1698
- "20:42": "20:42",
1699
- "20:43": "20:43",
1700
- "20:44": "20:44",
1701
- "20:45": "20:45",
1702
- "20:46": "20:46",
1703
- "20:47": "20:47",
1704
- "20:48": "20:48",
1705
- "20:49": "20:49",
1706
- "20:50": "20:50",
1707
- "20:51": "20:51",
1708
- "20:52": "20:52",
1709
- "20:53": "20:53",
1710
- "20:54": "20:54",
1711
- "20:55": "20:55",
1712
- "20:56": "20:56",
1713
- "20:57": "20:57",
1714
- "20:58": "20:58",
1715
- "20:59": "20:59",
1716
- "21:00": "21:00",
1717
- "21:01": "21:01",
1718
- "21:02": "21:02",
1719
- "21:03": "21:03",
1720
- "21:04": "21:04",
1721
- "21:05": "21:05",
1722
- "21:06": "21:06",
1723
- "21:07": "21:07",
1724
- "21:08": "21:08",
1725
- "21:09": "21:09",
1726
- "21:10": "21:10",
1727
- "21:11": "21:11",
1728
- "21:12": "21:12",
1729
- "21:13": "21:13",
1730
- "21:14": "21:14",
1731
- "21:15": "21:15",
1732
- "21:16": "21:16",
1733
- "21:17": "21:17",
1734
- "21:18": "21:18",
1735
- "21:19": "21:19",
1736
- "21:20": "21:20",
1737
- "21:21": "21:21",
1738
- "21:22": "21:22",
1739
- "21:23": "21:23",
1740
- "21:24": "21:24",
1741
- "21:25": "21:25",
1742
- "21:26": "21:26",
1743
- "21:27": "21:27",
1744
- "21:28": "21:28",
1745
- "21:29": "21:29",
1746
- "21:30": "21:30",
1747
- "21:31": "21:31",
1748
- "21:32": "21:32",
1749
- "21:33": "21:33",
1750
- "21:34": "21:34",
1751
- "21:35": "21:35",
1752
- "21:36": "21:36",
1753
- "21:37": "21:37",
1754
- "21:38": "21:38",
1755
- "21:39": "21:39",
1756
- "21:40": "21:40",
1757
- "21:41": "21:41",
1758
- "21:42": "21:42",
1759
- "21:43": "21:43",
1760
- "21:44": "21:44",
1761
- "21:45": "21:45",
1762
- "21:46": "21:46",
1763
- "21:47": "21:47",
1764
- "21:48": "21:48",
1765
- "21:49": "21:49",
1766
- "21:50": "21:50",
1767
- "21:51": "21:51",
1768
- "21:52": "21:52",
1769
- "21:53": "21:53",
1770
- "21:54": "21:54",
1771
- "21:55": "21:55",
1772
- "21:56": "21:56",
1773
- "21:57": "21:57",
1774
- "21:58": "21:58",
1775
- "21:59": "21:59",
1776
- "22:00": "22:00",
1777
- "22:01": "22:01",
1778
- "22:02": "22:02",
1779
- "22:03": "22:03",
1780
- "22:04": "22:04",
1781
- "22:05": "22:05",
1782
- "22:06": "22:06",
1783
- "22:07": "22:07",
1784
- "22:08": "22:08",
1785
- "22:09": "22:09",
1786
- "22:10": "22:10",
1787
- "22:11": "22:11",
1788
- "22:12": "22:12",
1789
- "22:13": "22:13",
1790
- "22:14": "22:14",
1791
- "22:15": "22:15",
1792
- "22:16": "22:16",
1793
- "22:17": "22:17",
1794
- "22:18": "22:18",
1795
- "22:19": "22:19",
1796
- "22:20": "22:20",
1797
- "22:21": "22:21",
1798
- "22:22": "22:22",
1799
- "22:23": "22:23",
1800
- "22:24": "22:24",
1801
- "22:25": "22:25",
1802
- "22:26": "22:26",
1803
- "22:27": "22:27",
1804
- "22:28": "22:28",
1805
- "22:29": "22:29",
1806
- "22:30": "22:30",
1807
- "22:31": "22:31",
1808
- "22:32": "22:32",
1809
- "22:33": "22:33",
1810
- "22:34": "22:34",
1811
- "22:35": "22:35",
1812
- "22:36": "22:36",
1813
- "22:37": "22:37",
1814
- "22:38": "22:38",
1815
- "22:39": "22:39",
1816
- "22:40": "22:40",
1817
- "22:41": "22:41",
1818
- "22:42": "22:42",
1819
- "22:43": "22:43",
1820
- "22:44": "22:44",
1821
- "22:45": "22:45",
1822
- "22:46": "22:46",
1823
- "22:47": "22:47",
1824
- "22:48": "22:48",
1825
- "22:49": "22:49",
1826
- "22:50": "22:50",
1827
- "22:51": "22:51",
1828
- "22:52": "22:52",
1829
- "22:53": "22:53",
1830
- "22:54": "22:54",
1831
- "22:55": "22:55",
1832
- "22:56": "22:56",
1833
- "22:57": "22:57",
1834
- "22:58": "22:58",
1835
- "22:59": "22:59",
1836
- "23:00": "23:00",
1837
- "23:01": "23:01",
1838
- "23:02": "23:02",
1839
- "23:03": "23:03",
1840
- "23:04": "23:04",
1841
- "23:05": "23:05",
1842
- "23:06": "23:06",
1843
- "23:07": "23:07",
1844
- "23:08": "23:08",
1845
- "23:09": "23:09",
1846
- "23:10": "23:10",
1847
- "23:11": "23:11",
1848
- "23:12": "23:12",
1849
- "23:13": "23:13",
1850
- "23:14": "23:14",
1851
- "23:15": "23:15",
1852
- "23:16": "23:16",
1853
- "23:17": "23:17",
1854
- "23:18": "23:18",
1855
- "23:19": "23:19",
1856
- "23:20": "23:20",
1857
- "23:21": "23:21",
1858
- "23:22": "23:22",
1859
- "23:23": "23:23",
1860
- "23:24": "23:24",
1861
- "23:25": "23:25",
1862
- "23:26": "23:26",
1863
- "23:27": "23:27",
1864
- "23:28": "23:28",
1865
- "23:29": "23:29",
1866
- "23:30": "23:30",
1867
- "23:31": "23:31",
1868
- "23:32": "23:32",
1869
- "23:33": "23:33",
1870
- "23:34": "23:34",
1871
- "23:35": "23:35",
1872
- "23:36": "23:36",
1873
- "23:37": "23:37",
1874
- "23:38": "23:38",
1875
- "23:39": "23:39",
1876
- "23:40": "23:40",
1877
- "23:41": "23:41",
1878
- "23:42": "23:42",
1879
- "23:43": "23:43",
1880
- "23:44": "23:44",
1881
- "23:45": "23:45",
1882
- "23:46": "23:46",
1883
- "23:47": "23:47",
1884
- "23:48": "23:48",
1885
- "23:49": "23:49",
1886
- "23:50": "23:50",
1887
- "23:51": "23:51",
1888
- "23:52": "23:52",
1889
- "23:53": "23:53",
1890
- "23:54": "23:54",
1891
- "23:55": "23:55",
1892
- "23:56": "23:56",
1893
- "23:57": "23:57",
1894
- "23:58": "23:58",
1895
- "23:59": "23:59",
1896
- },
1897
-
1898
- countryCodes: {
1899
- af: "af",
1900
- ax: "ax",
1901
- al: "al",
1902
- dz: "dz",
1903
- as: "as",
1904
- ad: "ad",
1905
- ao: "ao",
1906
- ai: "ai",
1907
- aq: "aq",
1908
- ag: "ag",
1909
- ar: "ar",
1910
- am: "am",
1911
- aw: "aw",
1912
- au: "au",
1913
- at: "at",
1914
- az: "az",
1915
- bs: "bs",
1916
- bh: "bh",
1917
- bd: "bd",
1918
- bb: "bb",
1919
- by: "by",
1920
- be: "be",
1921
- bz: "bz",
1922
- bj: "bj",
1923
- bm: "bm",
1924
- bt: "bt",
1925
- bo: "bo",
1926
- ba: "ba",
1927
- bw: "bw",
1928
- br: "br",
1929
- io: "io",
1930
- bn: "bn",
1931
- bg: "bg",
1932
- bf: "bf",
1933
- bi: "bi",
1934
- kh: "kh",
1935
- cm: "cm",
1936
- ca: "ca",
1937
- cv: "cv",
1938
- ky: "ky",
1939
- cf: "cf",
1940
- td: "td",
1941
- cl: "cl",
1942
- cn: "cn",
1943
- cx: "cx",
1944
- cc: "cc",
1945
- co: "co",
1946
- km: "km",
1947
- cg: "cg",
1948
- cd: "cd",
1949
- ck: "ck",
1950
- cr: "cr",
1951
- ci: "ci",
1952
- hr: "hr",
1953
- cu: "cu",
1954
- cy: "cy",
1955
- cz: "cz",
1956
- dk: "dk",
1957
- dj: "dj",
1958
- dm: "dm",
1959
- do: "do",
1960
- ec: "ec",
1961
- eg: "eg",
1962
- sv: "sv",
1963
- gq: "gq",
1964
- er: "er",
1965
- ee: "ee",
1966
- et: "et",
1967
- fk: "fk",
1968
- fo: "fo",
1969
- fj: "fj",
1970
- fi: "fi",
1971
- fr: "fr",
1972
- gf: "gf",
1973
- pf: "pf",
1974
- ga: "ga",
1975
- gm: "gm",
1976
- ge: "ge",
1977
- de: "de",
1978
- gh: "gh",
1979
- gi: "gi",
1980
- gr: "gr",
1981
- gl: "gl",
1982
- gd: "gd",
1983
- gp: "gp",
1984
- gu: "gu",
1985
- gt: "gt",
1986
- gg: "gg",
1987
- gn: "gn",
1988
- gw: "gw",
1989
- gy: "gy",
1990
- ht: "ht",
1991
- va: "va",
1992
- hn: "hn",
1993
- hk: "hk",
1994
- hu: "hu",
1995
- is: "is",
1996
- in: "in",
1997
- id: "id",
1998
- ir: "ir",
1999
- iq: "iq",
2000
- ie: "ie",
2001
- im: "im",
2002
- il: "il",
2003
- it: "it",
2004
- jm: "jm",
2005
- jp: "jp",
2006
- je: "je",
2007
- jo: "jo",
2008
- kz: "kz",
2009
- ke: "ke",
2010
- ki: "ki",
2011
- kp: "kp",
2012
- kr: "kr",
2013
- kw: "kw",
2014
- kg: "kg",
2015
- la: "la",
2016
- lv: "lv",
2017
- lb: "lb",
2018
- ls: "ls",
2019
- lr: "lr",
2020
- ly: "ly",
2021
- li: "li",
2022
- lt: "lt",
2023
- lu: "lu",
2024
- mo: "mo",
2025
- mk: "mk",
2026
- mg: "mg",
2027
- mw: "mw",
2028
- my: "my",
2029
- mv: "mv",
2030
- ml: "ml",
2031
- mt: "mt",
2032
- mh: "mh",
2033
- mq: "mq",
2034
- mr: "mr",
2035
- mu: "mu",
2036
- yt: "yt",
2037
- mx: "mx",
2038
- fm: "fm",
2039
- md: "md",
2040
- mc: "mc",
2041
- mn: "mn",
2042
- me: "me",
2043
- ms: "ms",
2044
- ma: "ma",
2045
- mz: "mz",
2046
- mm: "mm",
2047
- na: "na",
2048
- nr: "nr",
2049
- np: "np",
2050
- nl: "nl",
2051
- nc: "nc",
2052
- nz: "nz",
2053
- ni: "ni",
2054
- ne: "ne",
2055
- ng: "ng",
2056
- nu: "nu",
2057
- nf: "nf",
2058
- mp: "mp",
2059
- no: "no",
2060
- om: "om",
2061
- pk: "pk",
2062
- pw: "pw",
2063
- ps: "ps",
2064
- pa: "pa",
2065
- pg: "pg",
2066
- py: "py",
2067
- pe: "pe",
2068
- ph: "ph",
2069
- pn: "pn",
2070
- pl: "pl",
2071
- pt: "pt",
2072
- pr: "pr",
2073
- qa: "qa",
2074
- ro: "ro",
2075
- ru: "ru",
2076
- rw: "rw",
2077
- re: "re",
2078
- bl: "bl",
2079
- sh: "sh",
2080
- kn: "kn",
2081
- lc: "lc",
2082
- mf: "mf",
2083
- pm: "pm",
2084
- vc: "vc",
2085
- ws: "ws",
2086
- sm: "sm",
2087
- st: "st",
2088
- sa: "sa",
2089
- sn: "sn",
2090
- rs: "rs",
2091
- sc: "sc",
2092
- sl: "sl",
2093
- sg: "sg",
2094
- sk: "sk",
2095
- si: "si",
2096
- sb: "sb",
2097
- so: "so",
2098
- za: "za",
2099
- ss: "ss",
2100
- gs: "gs",
2101
- es: "es",
2102
- lk: "lk",
2103
- sd: "sd",
2104
- sr: "sr",
2105
- sj: "sj",
2106
- sz: "sz",
2107
- se: "se",
2108
- ch: "ch",
2109
- sy: "sy",
2110
- tw: "tw",
2111
- tj: "tj",
2112
- tz: "tz",
2113
- th: "th",
2114
- tl: "tl",
2115
- tg: "tg",
2116
- tk: "tk",
2117
- to: "to",
2118
- tt: "tt",
2119
- tn: "tn",
2120
- tr: "tr",
2121
- tm: "tm",
2122
- tc: "tc",
2123
- tv: "tv",
2124
- ug: "ug",
2125
- ua: "ua",
2126
- ae: "ae",
2127
- gb: "gb",
2128
- us: "us",
2129
- uy: "uy",
2130
- uz: "uz",
2131
- vu: "vu",
2132
- ve: "ve",
2133
- vn: "vn",
2134
- vg: "vg",
2135
- vi: "vi",
2136
- wf: "wf",
2137
- ye: "ye",
2138
- zm: "zm",
2139
- zw: "zw",
2140
- },
2141
-
2142
- keySizes: { large: "large", small: "small" },
2143
-
2144
- asideSizes: { default: "default", small: "small" },
2145
-
2146
- mainSizes: {
2147
- default: "default",
2148
- large: "large",
2149
- form: "form",
2150
- full: "full",
2151
- },
2152
-
2153
- accordionVariants: { basic: "basic", rounded: "rounded" },
2154
-
2155
- accordionIcons: { plus: "plus", chevron: "chevron" },
2156
-
2157
- avatarBadgePosition: { top: "top", bottom: "bottom" },
2158
-
2159
- breadcrumbSeparators: { slash: "slash", chevron: "chevron" },
2160
-
2161
- inputTypes: {
2162
- color: "color",
2163
- date: "date",
2164
- "datetime-local": "datetime-local",
2165
- month: "month",
2166
- week: "week",
2167
- file: "file",
2168
- password: "password",
2169
- search: "search",
2170
- email: "email",
2171
- number: "number",
2172
- tel: "tel",
2173
- text: "text",
2174
- url: "url",
2175
- time: "time",
2176
- select: "select",
2177
- textarea: "textarea",
2178
- },
2179
-
2180
- checkInputVariants: {
2181
- tile: "tile",
2182
- toggle: "toggle",
2183
- selector: "selector",
2184
- },
2185
-
2186
- loaderVariants: { 1: 1, 2: 2, 3: 3, 4: 4 },
2187
-
2188
- skeletonAnimations: { pulse: "pulse", shine: "shine" },
2189
-
2190
- stepperDirections: { column: "column", row: "row" },
2191
-
2192
- textDisplayTags,
2193
-
2194
- textTags,
2195
-
2196
- allTextTags: { ...textDisplayTags, ...textTags },
2197
-
2198
- tooltipTriggers: { hover: "hover", click: "click" },
2199
-
2200
- tooltipPositions: {
2201
- top: "top",
2202
- bottom: "bottom",
2203
- left: "left",
2204
- right: "right",
2205
- },
2206
-
2207
- buttonVariants: {
2208
- plain: "plain",
2209
- outline: "outline",
2210
- ghost: "ghost",
2211
- transparent: "transparent",
2212
- },
2213
-
2214
- buttonSizes: { default: "default", small: "small" },
2215
-
2216
- listInputDirections: { up: "up", down: "down" },
2217
- } as const