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