@julseb-lib/react 0.0.52 → 0.0.53

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