@julseb-lib/react 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +7 -0
- package/.prettierrc +5 -0
- package/README.md +1 -1
- package/eslint.config.js +177 -0
- package/index.html +14 -0
- package/package.json +41 -67
- package/plop/actions/index.ts +1 -0
- package/plop/actions/run-command.ts +21 -0
- package/plop/generators/component.ts +87 -0
- package/plop/generators/demo.ts +38 -0
- package/plop/generators/generator.ts +49 -0
- package/plop/generators/index.ts +6 -0
- package/plop/generators/preview.ts +58 -0
- package/plop/generators/subtype.ts +25 -0
- package/plop/partials/index.ts +2 -0
- package/plop/partials/kebab-name.ts +7 -0
- package/plop/partials/pascal-name.ts +7 -0
- package/plop/plopfile.ts +32 -0
- package/plop/templates/__preview__/preview-props.hbs +34 -0
- package/plop/templates/__preview__/preview.hbs +25 -0
- package/plop/templates/component/__preview__/preview.hbs +21 -0
- package/plop/templates/component/index.ts.hbs +1 -0
- package/plop/templates/component/types.ts.hbs +5 -0
- package/plop/templates/component/{{ pascalCase name }}.tsx.hbs +32 -0
- package/plop/templates/demo.hbs +9 -0
- package/plop/templates/generator.hbs +16 -0
- package/plop/templates/subtypes.hbs +3 -0
- package/plop/utils/addClosingBrackets.ts +13 -0
- package/plop/utils/addOpenBrackets.ts +13 -0
- package/plop/utils/all-components.ts +72 -0
- package/plop/utils/constants.ts +1 -0
- package/plop/utils/index.ts +5 -0
- package/plop/utils/surround-brackets.ts +12 -0
- package/public/favicon.svg +24 -0
- package/public/images/cover-img.avif +0 -0
- package/public/images/image-card.jpg +0 -0
- package/public/images/logo-fajny-css-white.svg +37 -0
- package/public/images/logo-fajny-css.svg +35 -0
- package/public/images/pic-avatar.jpg +0 -0
- package/public/images/slideshow-1.avif +0 -0
- package/public/images/slideshow-2.avif +0 -0
- package/public/images/slideshow-3.avif +0 -0
- package/public/images/slideshow-4.avif +0 -0
- package/public/vite.svg +1 -0
- package/src/App.tsx +6 -0
- package/src/components/ComponentPreview.tsx +46 -0
- package/src/components/GridItem.tsx +9 -0
- package/src/components/index.ts +4 -0
- package/src/components/layout/BasePage.tsx +27 -0
- package/src/components/layout/CoverLayout.tsx +97 -0
- package/src/components/layout/Nav.tsx +63 -0
- package/src/components/layout/Page.tsx +24 -0
- package/src/data/components.tsx +220 -0
- package/src/data/french-cities.ts +8683 -0
- package/src/data/index.ts +3 -0
- package/src/data/previews/styles/Colors.preview.tsx +94 -0
- package/src/data/previews/styles/Overlays.preview.tsx +48 -0
- package/src/data/previews/styles/Radiuses.preview.tsx +49 -0
- package/src/data/previews/styles/Shadows.preview.tsx +49 -0
- package/src/data/previews/styles/Spacers.preview.tsx +50 -0
- package/src/data/previews/styles/Theme.preview.tsx +32 -0
- package/src/data/site-data.ts +4 -0
- package/src/data/styles/colors.ts +1985 -0
- package/src/data/styles/index.ts +5 -0
- package/src/data/styles/overlays.ts +47 -0
- package/src/data/styles/radiuses.ts +68 -0
- package/src/data/styles/shadows.ts +61 -0
- package/src/data/styles/spacers.ts +54 -0
- package/src/data/types/index.ts +1 -0
- package/src/data/types/variables.ts +7 -0
- package/src/lib/Variables.ts +201 -0
- package/src/lib/components/Accordion/Accordion.tsx +73 -0
- package/src/lib/components/Accordion/AccordionContent.tsx +55 -0
- package/src/lib/components/Accordion/AccordionItem.tsx +66 -0
- package/src/lib/components/Accordion/AccordionTitle.tsx +79 -0
- package/src/lib/components/Accordion/__preview__/Accordion.preview.tsx +107 -0
- package/src/lib/components/Accordion/subtypes.ts +26 -0
- package/src/lib/components/Accordion/types.ts +37 -0
- package/src/lib/components/Alert/Alert.tsx +57 -0
- package/src/lib/components/Alert/__preview__/Alert.preview.tsx +72 -0
- package/src/lib/components/Alert/types.ts +8 -0
- package/src/lib/components/Aside/Aside.tsx +58 -0
- package/src/lib/components/Aside/__preview__/Aside.preview.tsx +59 -0
- package/src/lib/components/Aside/types.ts +6 -0
- package/src/lib/components/Autocomplete/Autocomplete.tsx +222 -0
- package/src/lib/components/Autocomplete/__preview__/Autocomplete.preview.tsx +181 -0
- package/src/lib/components/Autocomplete/__preview__/Preview.tsx +17 -0
- package/src/lib/components/Autocomplete/types.ts +35 -0
- package/src/lib/components/Avatar/Avatar.tsx +97 -0
- package/src/lib/components/Avatar/AvatarFn.tsx +44 -0
- package/src/lib/components/Avatar/__preview__/Avatar.preview.tsx +107 -0
- package/src/lib/components/Avatar/types.ts +37 -0
- package/src/lib/components/BackToTop/BackToTop.tsx +95 -0
- package/src/lib/components/BackToTop/__preview__/BackToTop.preview.tsx +115 -0
- package/src/lib/components/BackToTop/types.ts +9 -0
- package/src/lib/components/Badge/Badge.tsx +61 -0
- package/src/lib/components/Badge/__preview__/Badge.preview.tsx +84 -0
- package/src/lib/components/Badge/types.ts +7 -0
- package/src/lib/components/Breadcrumbs/Breadcrumbs.tsx +72 -0
- package/src/lib/components/Breadcrumbs/__preview__/Breadcrumbs.preview.tsx +55 -0
- package/src/lib/components/Breadcrumbs/types.ts +5 -0
- package/src/lib/components/Burger/Burger.tsx +103 -0
- package/src/lib/components/Burger/__preview__/Burger.preview.tsx +55 -0
- package/src/lib/components/Burger/__preview__/Preview.tsx +11 -0
- package/src/lib/components/Burger/types.ts +11 -0
- package/src/lib/components/Button/Button.tsx +108 -0
- package/src/lib/components/Button/__preview__/Button.preview.tsx +182 -0
- package/src/lib/components/Button/types.ts +30 -0
- package/src/lib/components/ButtonGroup/ButtonGroup.tsx +124 -0
- package/src/lib/components/ButtonGroup/__preview__/ButtonGroup.preview.tsx +101 -0
- package/src/lib/components/ButtonGroup/types.ts +28 -0
- package/src/lib/components/ButtonIcon/ButtonFn.tsx +74 -0
- package/src/lib/components/ButtonIcon/ButtonIcon.tsx +127 -0
- package/src/lib/components/ButtonIcon/__preview__/ButtonIcon.preview.tsx +239 -0
- package/src/lib/components/ButtonIcon/types.ts +52 -0
- package/src/lib/components/CodeContainer/CodeContainer.tsx +108 -0
- package/src/lib/components/CodeContainer/__preview__/CodeContainer.preview.tsx +280 -0
- package/src/lib/components/CodeContainer/types.ts +230 -0
- package/src/lib/components/Cover/Cover.tsx +91 -0
- package/src/lib/components/Cover/__preview__/Cover.preview.tsx +154 -0
- package/src/lib/components/Cover/types.ts +10 -0
- package/src/lib/components/DragList/DragList.tsx +111 -0
- package/src/lib/components/DragList/DragListItem.tsx +113 -0
- package/src/lib/components/DragList/__preview__/Draglist.preview.tsx +156 -0
- package/src/lib/components/DragList/types.ts +55 -0
- package/src/lib/components/Drawer/Drawer.tsx +145 -0
- package/src/lib/components/Drawer/__preview__/Drawer.preview.tsx +159 -0
- package/src/lib/components/Drawer/types.ts +24 -0
- package/src/lib/components/Dropdown/Dropdown.tsx +89 -0
- package/src/lib/components/Dropdown/DropdownItem.tsx +49 -0
- package/src/lib/components/Dropdown/__preview__/Dropdown.preview.tsx +83 -0
- package/src/lib/components/Dropdown/__preview__/Preview.tsx +52 -0
- package/src/lib/components/Dropdown/index.ts +2 -0
- package/src/lib/components/Dropdown/types.ts +35 -0
- package/src/lib/components/Fade/Fade.tsx +62 -0
- package/src/lib/components/Fade/__preview__/Fade.preview.tsx +33 -0
- package/src/lib/components/Fieldset/Fieldset.tsx +85 -0
- package/src/lib/components/Fieldset/__preview__/Fieldset.preview.tsx +99 -0
- package/src/lib/components/Fieldset/__preview__/Preview.tsx +70 -0
- package/src/lib/components/Fieldset/types.ts +15 -0
- package/src/lib/components/Flexbox/Flexbox.tsx +99 -0
- package/src/lib/components/Flexbox/__preview__/Flexbox.preview.tsx +155 -0
- package/src/lib/components/Flexbox/types.ts +23 -0
- package/src/lib/components/Form/Form.tsx +83 -0
- package/src/lib/components/Form/__preview__/Form.preview.tsx +124 -0
- package/src/lib/components/Form/types.ts +32 -0
- package/src/lib/components/Grid/Grid.tsx +98 -0
- package/src/lib/components/Grid/__preview__/Grid.preview.tsx +146 -0
- package/src/lib/components/Grid/types.ts +20 -0
- package/src/lib/components/Header/Header.tsx +232 -0
- package/src/lib/components/Header/HeaderSearch.tsx +50 -0
- package/src/lib/components/Header/__preview__/Header.preview.tsx +33 -0
- package/src/lib/components/Header/subtypes.ts +28 -0
- package/src/lib/components/Header/types.ts +57 -0
- package/src/lib/components/Highlight/Highlight.tsx +45 -0
- package/src/lib/components/Highlight/__preview__/Highlight.preview.tsx +60 -0
- package/src/lib/components/Highlight/types.ts +9 -0
- package/src/lib/components/Hr/Hr.tsx +48 -0
- package/src/lib/components/Hr/__preview__/Hr.preview.tsx +75 -0
- package/src/lib/components/Hr/types.ts +8 -0
- package/src/lib/components/IconMenu/IconMenu.module.css +240 -0
- package/src/lib/components/IconMenu/IconMenu.tsx +101 -0
- package/src/lib/components/IconMenu/IconMenuItem.tsx +51 -0
- package/src/lib/components/IconMenu/__preview__/IconMenu.preview.tsx +55 -0
- package/src/lib/components/IconMenu/index.ts +1 -0
- package/src/lib/components/IconMenu/types.ts +48 -0
- package/src/lib/components/Image/Image.tsx +92 -0
- package/src/lib/components/Image/__preview__/Image.preview.tsx +71 -0
- package/src/lib/components/Image/types.ts +25 -0
- package/src/lib/components/Input/Input.tsx +130 -0
- package/src/lib/components/Input/__preview__/Input.preview.tsx +237 -0
- package/src/lib/components/Input/__preview__/Previews.tsx +67 -0
- package/src/lib/components/Input/classes.ts +1 -0
- package/src/lib/components/Input/subtypes.ts +173 -0
- package/src/lib/components/Input/templates/ColorInput.tsx +40 -0
- package/src/lib/components/Input/templates/DateInput.tsx +63 -0
- package/src/lib/components/Input/templates/FileInput.tsx +42 -0
- package/src/lib/components/Input/templates/PasswordInput.tsx +73 -0
- package/src/lib/components/Input/templates/SearchInput.tsx +89 -0
- package/src/lib/components/Input/templates/SelectInput.tsx +79 -0
- package/src/lib/components/Input/templates/TextInput.tsx +58 -0
- package/src/lib/components/Input/templates/TextareaInput.tsx +27 -0
- package/src/lib/components/Input/templates/TimeInput.tsx +67 -0
- package/src/lib/components/Input/types.ts +22 -0
- package/src/lib/components/InputCheck/InputCheck.tsx +161 -0
- package/src/lib/components/InputCheck/__preview__/InputCheck.preview.tsx +84 -0
- package/src/lib/components/InputCheck/__preview__/Previews.tsx +136 -0
- package/src/lib/components/InputCheck/types.ts +27 -0
- package/src/lib/components/InputComponents/InputButton.tsx +26 -0
- package/src/lib/components/InputComponents/InputIcon.tsx +28 -0
- package/src/lib/components/InputComponents/InputList.tsx +53 -0
- package/src/lib/components/InputComponents/InputListItem.tsx +68 -0
- package/src/lib/components/InputComponents/InputPrefix.tsx +15 -0
- package/src/lib/components/InputComponents/InputSuffix.tsx +15 -0
- package/src/lib/components/InputComponents/InputValidation.tsx +32 -0
- package/src/lib/components/InputComponents/InputWithListWrapper.tsx +29 -0
- package/src/lib/components/InputComponents/InputWrapper.tsx +45 -0
- package/src/lib/components/InputComponents/classes.ts +101 -0
- package/src/lib/components/InputComponents/index.ts +11 -0
- package/src/lib/components/InputComponents/types.ts +63 -0
- package/src/lib/components/InputContainer/InputContainer.tsx +149 -0
- package/src/lib/components/InputContainer/types.ts +11 -0
- package/src/lib/components/InputCounter/InputCounter.tsx +141 -0
- package/src/lib/components/InputCounter/__preview__/InputCounter.preview.tsx +153 -0
- package/src/lib/components/InputCounter/__preview__/Preview.tsx +13 -0
- package/src/lib/components/InputCounter/types.ts +45 -0
- package/src/lib/components/InputImage/EmptyContainer.tsx +17 -0
- package/src/lib/components/InputImage/HoverContainer.tsx +21 -0
- package/src/lib/components/InputImage/InputImage.tsx +104 -0
- package/src/lib/components/InputImage/__preview__/InputImage.preview.tsx +133 -0
- package/src/lib/components/InputImage/__preview__/Preview.tsx +29 -0
- package/src/lib/components/InputImage/subtypes.ts +7 -0
- package/src/lib/components/InputImage/types.ts +24 -0
- package/src/lib/components/InputPhone/InputPhone.tsx +256 -0
- package/src/lib/components/InputPhone/__preview__/InputPhone.preview.tsx +165 -0
- package/src/lib/components/InputPhone/__preview__/Preview.tsx +42 -0
- package/src/lib/components/InputPhone/types.ts +32 -0
- package/src/lib/components/InputPin/InputPin.tsx +119 -0
- package/src/lib/components/InputPin/__preview__/InputPin.preview.tsx +154 -0
- package/src/lib/components/InputPin/types.ts +22 -0
- package/src/lib/components/InputSlider/InputSlider.tsx +176 -0
- package/src/lib/components/InputSlider/__preview__/InputSlider.preview.tsx +128 -0
- package/src/lib/components/InputSlider/__preview__/Preview.tsx +17 -0
- package/src/lib/components/InputSlider/types.ts +22 -0
- package/src/lib/components/Key/Key.tsx +84 -0
- package/src/lib/components/Key/__preview__/Key.preview.tsx +80 -0
- package/src/lib/components/Key/types.ts +16 -0
- package/src/lib/components/Linkify/Linkify.tsx +67 -0
- package/src/lib/components/Linkify/__preview__/Linkify.preview.tsx +33 -0
- package/src/lib/components/Linkify/types.ts +8 -0
- package/src/lib/components/ListGroup/ListGroup.tsx +96 -0
- package/src/lib/components/ListGroup/ListGroupItem.tsx +86 -0
- package/src/lib/components/ListGroup/ListGroupTitle.tsx +84 -0
- package/src/lib/components/ListGroup/__preview__/ListGroup.preview.tsx +246 -0
- package/src/lib/components/ListGroup/index.ts +3 -0
- package/src/lib/components/ListGroup/types.ts +69 -0
- package/src/lib/components/Loader/Loader.tsx +38 -0
- package/src/lib/components/Loader/__preview__/Loader.preview.tsx +38 -0
- package/src/lib/components/Loader/templates/LoaderOne.tsx +27 -0
- package/src/lib/components/Loader/templates/LoaderThree.tsx +47 -0
- package/src/lib/components/Loader/templates/LoaderTwo.tsx +61 -0
- package/src/lib/components/Loader/types.ts +13 -0
- package/src/lib/components/Loader/utils/gen-border-bottom.ts +95 -0
- package/src/lib/components/Main/Main.tsx +63 -0
- package/src/lib/components/Main/__preview__/Main.preview.tsx +67 -0
- package/src/lib/components/Main/types.ts +12 -0
- package/src/lib/components/MarkdownContainer/MarkdownContainer.tsx +50 -0
- package/src/lib/components/MarkdownContainer/__preview__/MarkdownContainer.preview.tsx +34 -0
- package/src/lib/components/MarkdownContainer/types.ts +8 -0
- package/src/lib/components/MarkdownEditor/MarkdownButtons.tsx +42 -0
- package/src/lib/components/MarkdownEditor/MarkdownEditor.tsx +186 -0
- package/src/lib/components/MarkdownEditor/MarkdownEditorTitles.tsx +86 -0
- package/src/lib/components/MarkdownEditor/MarkdownViewButtons.tsx +48 -0
- package/src/lib/components/MarkdownEditor/__preview__/MarkdownEditor.preview.tsx +143 -0
- package/src/lib/components/MarkdownEditor/buttons/icons.tsx +85 -0
- package/src/lib/components/MarkdownEditor/buttons/markdown-buttons.tsx +176 -0
- package/src/lib/components/MarkdownEditor/types.ts +42 -0
- package/src/lib/components/Masonry/Masonry.tsx +83 -0
- package/src/lib/components/Masonry/__preview__/Masonry.preview.tsx +58 -0
- package/src/lib/components/Masonry/types.ts +8 -0
- package/src/lib/components/Masonry/utils.tsx +28 -0
- package/src/lib/components/Modal/Modal.tsx +107 -0
- package/src/lib/components/Modal/__preview__/Modal.preview.tsx +125 -0
- package/src/lib/components/Modal/types.ts +21 -0
- package/src/lib/components/PageLoading/PageLoading.tsx +64 -0
- package/src/lib/components/PageLoading/__preview__/PageLoading.preview.tsx +66 -0
- package/src/lib/components/PageLoading/types.ts +13 -0
- package/src/lib/components/Pagination/Pagination.tsx +163 -0
- package/src/lib/components/Pagination/PaginationButton.tsx +65 -0
- package/src/lib/components/Pagination/__preview__/Pagination.preview.tsx +264 -0
- package/src/lib/components/Pagination/types.ts +56 -0
- package/src/lib/components/Paginator/Paginator.tsx +136 -0
- package/src/lib/components/Paginator/__preview__/Paginator.preview.tsx +212 -0
- package/src/lib/components/Paginator/types.ts +16 -0
- package/src/lib/components/ProgressBar/ProgressBar.tsx +90 -0
- package/src/lib/components/ProgressBar/__preview__/ProgressBar.preview.tsx +63 -0
- package/src/lib/components/ProgressBar/types.ts +14 -0
- package/src/lib/components/ProgressCircle/ProgressCircle.tsx +142 -0
- package/src/lib/components/ProgressCircle/__preview__/ProgressCircle.preview.tsx +107 -0
- package/src/lib/components/ProgressCircle/types.ts +32 -0
- package/src/lib/components/Rating/Rating.tsx +116 -0
- package/src/lib/components/Rating/__preview__/Rating.preview.tsx +133 -0
- package/src/lib/components/Rating/types.ts +25 -0
- package/src/lib/components/Section/Section.tsx +51 -0
- package/src/lib/components/Section/__preview__/Section.preview.tsx +35 -0
- package/src/lib/components/Section/types.ts +5 -0
- package/src/lib/components/Select/Select.tsx +191 -0
- package/src/lib/components/Select/__preview__/Select.preview.tsx +168 -0
- package/src/lib/components/Select/types.ts +23 -0
- package/src/lib/components/Skeleton/Skeleton.tsx +54 -0
- package/src/lib/components/Skeleton/SkeletonCard.tsx +57 -0
- package/src/lib/components/Skeleton/__preview__/Skeleton.preview.tsx +240 -0
- package/src/lib/components/Skeleton/index.ts +2 -0
- package/src/lib/components/Skeleton/types.ts +27 -0
- package/src/lib/components/Slideshow/Slideshow.tsx +324 -0
- package/src/lib/components/Slideshow/SlideshowButton.tsx +63 -0
- package/src/lib/components/Slideshow/SlideshowPagination.tsx +111 -0
- package/src/lib/components/Slideshow/__preview__/Slideshow.preview.tsx +133 -0
- package/src/lib/components/Slideshow/subtypes.ts +62 -0
- package/src/lib/components/Slideshow/types.ts +41 -0
- package/src/lib/components/Sticky/Sticky.tsx +58 -0
- package/src/lib/components/Sticky/__preview__/Sticky.preview.tsx +188 -0
- package/src/lib/components/Sticky/types.ts +5 -0
- package/src/lib/components/Table/Table.tsx +138 -0
- package/src/lib/components/Table/__preview__/Table.preview.tsx +173 -0
- package/src/lib/components/Table/index.ts +1 -0
- package/src/lib/components/Table/types.ts +43 -0
- package/src/lib/components/Tabs/Tabs.tsx +88 -0
- package/src/lib/components/Tabs/TabsButton.tsx +71 -0
- package/src/lib/components/Tabs/TabsButtonsContainer.tsx +58 -0
- package/src/lib/components/Tabs/TabsContainer.tsx +49 -0
- package/src/lib/components/Tabs/TabsContent.tsx +52 -0
- package/src/lib/components/Tabs/__preview__/Tabs.preview.tsx +155 -0
- package/src/lib/components/Tabs/index.ts +5 -0
- package/src/lib/components/Tabs/types.ts +46 -0
- package/src/lib/components/Tag/Tag.tsx +77 -0
- package/src/lib/components/Tag/__preview__/Tag.preview.tsx +128 -0
- package/src/lib/components/Tag/types.ts +13 -0
- package/src/lib/components/Text/Text.tsx +88 -0
- package/src/lib/components/Text/__preview__/Text.preview.tsx +97 -0
- package/src/lib/components/Text/__preview__/previews/Description.tsx +18 -0
- package/src/lib/components/Text/__preview__/previews/Ordered.tsx +13 -0
- package/src/lib/components/Text/__preview__/previews/Paragraphs.tsx +26 -0
- package/src/lib/components/Text/__preview__/previews/Quote.tsx +5 -0
- package/src/lib/components/Text/__preview__/previews/Small.tsx +5 -0
- package/src/lib/components/Text/__preview__/previews/TextDisplay.tsx +27 -0
- package/src/lib/components/Text/__preview__/previews/TextTitles.tsx +19 -0
- package/src/lib/components/Text/__preview__/previews/Unordered.tsx +13 -0
- package/src/lib/components/Text/templates/Blockquote.tsx +41 -0
- package/src/lib/components/Text/templates/Dl.tsx +42 -0
- package/src/lib/components/Text/templates/Em.tsx +40 -0
- package/src/lib/components/Text/templates/H1.tsx +44 -0
- package/src/lib/components/Text/templates/H2.tsx +44 -0
- package/src/lib/components/Text/templates/H3.tsx +44 -0
- package/src/lib/components/Text/templates/H4.tsx +44 -0
- package/src/lib/components/Text/templates/H5.tsx +44 -0
- package/src/lib/components/Text/templates/H6.tsx +41 -0
- package/src/lib/components/Text/templates/Ol.tsx +41 -0
- package/src/lib/components/Text/templates/P.tsx +40 -0
- package/src/lib/components/Text/templates/Small.tsx +40 -0
- package/src/lib/components/Text/templates/Strong.tsx +40 -0
- package/src/lib/components/Text/templates/Ul.tsx +41 -0
- package/src/lib/components/Text/types.ts +36 -0
- package/src/lib/components/Toast/Toast.tsx +112 -0
- package/src/lib/components/Toast/ToastContainer.tsx +43 -0
- package/src/lib/components/Toast/ToastFn.tsx +236 -0
- package/src/lib/components/Toast/__preview__/Toast.preview.tsx +115 -0
- package/src/lib/components/Toast/index.ts +3 -0
- package/src/lib/components/Toast/types.ts +18 -0
- package/src/lib/components/Toast/utils.ts +9 -0
- package/src/lib/components/Tooltip/Tooltip.tsx +190 -0
- package/src/lib/components/Tooltip/__preview__/Tooltip.preview.tsx +117 -0
- package/src/lib/components/Tooltip/types.ts +23 -0
- package/src/lib/components/Wrapper/Wrapper.tsx +75 -0
- package/src/lib/components/Wrapper/__preview__/Wrapper.preview.tsx +78 -0
- package/src/lib/components/Wrapper/types.ts +12 -0
- package/src/lib/context/Theme.context.tsx +66 -0
- package/src/lib/context/index.ts +1 -0
- package/src/lib/hooks/useClickOutside.tsx +50 -0
- package/src/lib/hooks/useCopyToClipboard.tsx +50 -0
- package/src/lib/hooks/useDebounce.tsx +37 -0
- package/src/lib/hooks/useExportData.tsx +78 -0
- package/src/lib/hooks/useFetch.tsx +42 -0
- package/src/lib/hooks/useForm.tsx +51 -0
- package/src/lib/hooks/useIsOverflow.ts +61 -0
- package/src/lib/hooks/useKeyPress.tsx +110 -0
- package/src/lib/hooks/useMaxWidth.tsx +40 -0
- package/src/lib/hooks/useMergeRefs.ts +45 -0
- package/src/lib/hooks/useMinWidth.tsx +40 -0
- package/src/lib/hooks/usePaginatedData.tsx +52 -0
- package/src/lib/hooks/usePagination.tsx +75 -0
- package/src/lib/hooks/useTouchScreen.tsx +34 -0
- package/src/lib/hooks/useTranslation.tsx +58 -0
- package/src/lib/index.css +443 -0
- package/src/lib/index.ts +126 -0
- package/src/lib/lib-utils/get-highlighted-text.tsx +30 -0
- package/src/lib/lib-utils/index.ts +3 -0
- package/src/lib/lib-utils/use-keyboard-navigation.tsx +79 -0
- package/src/lib/types/components-items-props.ts +207 -0
- package/src/lib/types/components-props.ts +63 -0
- package/src/lib/types/global.ts +855 -0
- package/src/lib/types/index.ts +4 -0
- package/src/lib/types/tailwind.ts +9041 -0
- package/src/lib/utils/clsx.tsx +6 -0
- package/src/lib/utils/design-tokens.ts +789 -0
- package/src/lib/utils/gen-align.ts +24 -0
- package/src/lib/utils/gen-bg-color.ts +158 -0
- package/src/lib/utils/gen-border-color.ts +110 -0
- package/src/lib/utils/gen-border-radius.ts +13 -0
- package/src/lib/utils/gen-border.ts +30 -0
- package/src/lib/utils/gen-box-shadow.ts +12 -0
- package/src/lib/utils/gen-button-color.ts +9 -0
- package/src/lib/utils/gen-gap.ts +34 -0
- package/src/lib/utils/gen-justify.ts +25 -0
- package/src/lib/utils/gen-link-color.ts +29 -0
- package/src/lib/utils/gen-max-width.ts +30 -0
- package/src/lib/utils/gen-object-fit.ts +9 -0
- package/src/lib/utils/gen-text-align.ts +10 -0
- package/src/lib/utils/gen-text-color.ts +111 -0
- package/src/lib/utils/gen-vertical-align.ts +12 -0
- package/src/lib/utils/index.ts +18 -0
- package/src/lib/utils/linkify-text.tsx +26 -0
- package/src/lib/utils/options-markdown.ts +60 -0
- package/src/lib/utils/tools.ts +15 -0
- package/src/main.tsx +11 -0
- package/src/pages/Component.tsx +29 -0
- package/src/pages/Homepage.tsx +53 -0
- package/src/pages/NotFound.tsx +10 -0
- package/src/pages/demos/AsideBothDemo.tsx +22 -0
- package/src/pages/demos/AsideDefaultDemo.tsx +18 -0
- package/src/pages/demos/AsideRightDemo.tsx +18 -0
- package/src/pages/demos/CoverBottomDemo.tsx +24 -0
- package/src/pages/demos/CoverBottomOverlayDemo.tsx +25 -0
- package/src/pages/demos/CoverCenterDemo.tsx +24 -0
- package/src/pages/demos/CoverCenterOverlayDemo.tsx +25 -0
- package/src/pages/demos/HeaderDemo.tsx +76 -0
- package/src/pages/demos/MainDefaultDemo.tsx +14 -0
- package/src/pages/demos/MainFormDemo.tsx +14 -0
- package/src/pages/demos/MainLargeDemo.tsx +14 -0
- package/src/pages/demos/PageLoadingDemo.tsx +10 -0
- package/src/routes/index.tsx +59 -0
- package/src/types/global.d.ts +11 -0
- package/src/vite-env.d.ts +1 -0
- package/tailwind.config.ts +19 -0
- package/tsconfig.app.json +28 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +25 -0
- package/vite.config.ts +53 -0
- package/dist/index.cjs.js +0 -4174
- package/dist/index.css +0 -1491
- package/dist/index.d.ts +0 -1
- package/dist/index.es.js +0 -21211
- package/dist/index.umd.js +0 -4180
- package/dist/lib/Mixins.tsx +0 -990
- package/dist/lib/Variables.ts +0 -266
- package/dist/lib/components/Accordion/Accordion.tsx +0 -83
- package/dist/lib/components/Accordion/AccordionButton.tsx +0 -70
- package/dist/lib/components/Accordion/AccordionContent.tsx +0 -26
- package/dist/lib/components/Accordion/AccordionItem.tsx +0 -72
- package/dist/lib/components/Accordion/styles.tsx +0 -163
- package/dist/lib/components/Accordion/subtypes.ts +0 -20
- package/dist/lib/components/Accordion/types.ts +0 -31
- package/dist/lib/components/Alert/Alert.tsx +0 -122
- package/dist/lib/components/Alert/styles.tsx +0 -37
- package/dist/lib/components/Alert/types.ts +0 -31
- package/dist/lib/components/Aside/Aside.tsx +0 -41
- package/dist/lib/components/Aside/styles.tsx +0 -47
- package/dist/lib/components/Aside/types.ts +0 -5
- package/dist/lib/components/Autocomplete/Autocomplete.tsx +0 -356
- package/dist/lib/components/Autocomplete/styles.tsx +0 -11
- package/dist/lib/components/Autocomplete/types.ts +0 -41
- package/dist/lib/components/Avatar/Avatar.tsx +0 -147
- package/dist/lib/components/Avatar/AvatarFunction.tsx +0 -119
- package/dist/lib/components/Avatar/styles.tsx +0 -88
- package/dist/lib/components/Avatar/types.ts +0 -84
- package/dist/lib/components/BackToTop/BackToTop.tsx +0 -104
- package/dist/lib/components/BackToTop/styles.tsx +0 -33
- package/dist/lib/components/BackToTop/types.ts +0 -6
- package/dist/lib/components/Badge/Badge.tsx +0 -99
- package/dist/lib/components/Badge/styles.tsx +0 -39
- package/dist/lib/components/Badge/types.ts +0 -32
- package/dist/lib/components/Breadcrumbs/BreadcrumbItem.tsx +0 -41
- package/dist/lib/components/Breadcrumbs/Breadcrumbs.tsx +0 -62
- package/dist/lib/components/Breadcrumbs/BreadcrumbsFn.tsx +0 -64
- package/dist/lib/components/Breadcrumbs/styles.tsx +0 -62
- package/dist/lib/components/Breadcrumbs/subtypes.ts +0 -10
- package/dist/lib/components/Breadcrumbs/types.ts +0 -29
- package/dist/lib/components/Burger/Burger.tsx +0 -62
- package/dist/lib/components/Burger/styles.tsx +0 -91
- package/dist/lib/components/Burger/types.ts +0 -11
- package/dist/lib/components/Button/Button.tsx +0 -136
- package/dist/lib/components/Button/styles.tsx +0 -30
- package/dist/lib/components/Button/subtypes.ts +0 -10
- package/dist/lib/components/Button/types.ts +0 -70
- package/dist/lib/components/ButtonGroup/ButtonGroup.tsx +0 -136
- package/dist/lib/components/ButtonGroup/ButtonGroupButton.tsx +0 -76
- package/dist/lib/components/ButtonGroup/ButtonGroupToggle.tsx +0 -88
- package/dist/lib/components/ButtonGroup/styles.tsx +0 -89
- package/dist/lib/components/ButtonGroup/subtypes.ts +0 -43
- package/dist/lib/components/ButtonGroup/types.ts +0 -34
- package/dist/lib/components/ButtonIcon/ButtonFunction.tsx +0 -84
- package/dist/lib/components/ButtonIcon/ButtonIcon.tsx +0 -140
- package/dist/lib/components/ButtonIcon/styles.tsx +0 -29
- package/dist/lib/components/ButtonIcon/subtypes.ts +0 -10
- package/dist/lib/components/ButtonIcon/types.ts +0 -88
- package/dist/lib/components/Card/Card.tsx +0 -132
- package/dist/lib/components/Card/index.ts +0 -1
- package/dist/lib/components/Card/styles.tsx +0 -77
- package/dist/lib/components/Card/types.ts +0 -29
- package/dist/lib/components/CodeContainer/CodeContainer.tsx +0 -133
- package/dist/lib/components/CodeContainer/styles.tsx +0 -63
- package/dist/lib/components/CodeContainer/types.ts +0 -233
- package/dist/lib/components/ComponentsMixins/ComponentsMixins.tsx +0 -434
- package/dist/lib/components/ComponentsMixins/hooks/useKeyboardNavigation.tsx +0 -79
- package/dist/lib/components/ComponentsMixins/index.ts +0 -3
- package/dist/lib/components/ComponentsMixins/types.ts +0 -35
- package/dist/lib/components/Cover/Cover.tsx +0 -79
- package/dist/lib/components/Cover/styles.tsx +0 -78
- package/dist/lib/components/Cover/types.ts +0 -12
- package/dist/lib/components/Datepicker/Calendar.tsx +0 -394
- package/dist/lib/components/Datepicker/Datepicker.tsx +0 -255
- package/dist/lib/components/Datepicker/data.ts +0 -31
- package/dist/lib/components/Datepicker/index.ts +0 -1
- package/dist/lib/components/Datepicker/styles.tsx +0 -454
- package/dist/lib/components/Datepicker/types.ts +0 -66
- package/dist/lib/components/DragList/DragList.tsx +0 -121
- package/dist/lib/components/DragList/DragListItem.tsx +0 -184
- package/dist/lib/components/DragList/styles.tsx +0 -73
- package/dist/lib/components/DragList/types.ts +0 -59
- package/dist/lib/components/Drawer/Drawer.tsx +0 -113
- package/dist/lib/components/Drawer/styles.tsx +0 -134
- package/dist/lib/components/Drawer/types.ts +0 -26
- package/dist/lib/components/Dropdown/Dropdown.tsx +0 -98
- package/dist/lib/components/Dropdown/DropdownContainer.tsx +0 -48
- package/dist/lib/components/Dropdown/DropdownItem.tsx +0 -97
- package/dist/lib/components/Dropdown/index.ts +0 -3
- package/dist/lib/components/Dropdown/styles.tsx +0 -155
- package/dist/lib/components/Dropdown/types.ts +0 -63
- package/dist/lib/components/Fade/Fade.tsx +0 -54
- package/dist/lib/components/Fade/styles.tsx +0 -17
- package/dist/lib/components/Fallback/Fallback.tsx +0 -40
- package/dist/lib/components/Fallback/index.ts +0 -1
- package/dist/lib/components/Fieldset/Fieldset.tsx +0 -111
- package/dist/lib/components/Fieldset/styles.tsx +0 -48
- package/dist/lib/components/Fieldset/types.ts +0 -32
- package/dist/lib/components/Flexbox/Flexbox.tsx +0 -73
- package/dist/lib/components/Flexbox/styles.tsx +0 -32
- package/dist/lib/components/Flexbox/types.ts +0 -25
- package/dist/lib/components/Footer/Footer.tsx +0 -103
- package/dist/lib/components/Footer/FooterLink.tsx +0 -31
- package/dist/lib/components/Footer/FooterLogo.tsx +0 -29
- package/dist/lib/components/Footer/index.ts +0 -1
- package/dist/lib/components/Footer/styles.tsx +0 -124
- package/dist/lib/components/Footer/subtypes.ts +0 -14
- package/dist/lib/components/Footer/types.ts +0 -70
- package/dist/lib/components/Form/Form.tsx +0 -157
- package/dist/lib/components/Form/styles.tsx +0 -22
- package/dist/lib/components/Form/types.ts +0 -30
- package/dist/lib/components/FullBleed/FullBleed.tsx +0 -48
- package/dist/lib/components/FullBleed/index.ts +0 -1
- package/dist/lib/components/FullBleed/styles.tsx +0 -30
- package/dist/lib/components/FullBleed/types.ts +0 -7
- package/dist/lib/components/Grid/Grid.tsx +0 -71
- package/dist/lib/components/Grid/styles.tsx +0 -29
- package/dist/lib/components/Grid/types.ts +0 -22
- package/dist/lib/components/Header/Header.tsx +0 -223
- package/dist/lib/components/Header/HeaderBurger.tsx +0 -52
- package/dist/lib/components/Header/HeaderLogo.tsx +0 -68
- package/dist/lib/components/Header/HeaderNav.tsx +0 -89
- package/dist/lib/components/Header/HeaderNavLink.tsx +0 -31
- package/dist/lib/components/Header/HeaderSearch.tsx +0 -81
- package/dist/lib/components/Header/styles.tsx +0 -350
- package/dist/lib/components/Header/subtypes.ts +0 -79
- package/dist/lib/components/Header/types.ts +0 -89
- package/dist/lib/components/Highlight/Highlight.tsx +0 -47
- package/dist/lib/components/Highlight/types.ts +0 -9
- package/dist/lib/components/Hr/Hr.tsx +0 -52
- package/dist/lib/components/Hr/styles.tsx +0 -27
- package/dist/lib/components/Hr/types.ts +0 -10
- package/dist/lib/components/Icon/Icon.tsx +0 -42
- package/dist/lib/components/Icon/index.ts +0 -1
- package/dist/lib/components/Icon/styles.tsx +0 -19
- package/dist/lib/components/Icon/types.ts +0 -13
- package/dist/lib/components/IconMenu/IconMenu.tsx +0 -148
- package/dist/lib/components/IconMenu/IconMenuItem.tsx +0 -75
- package/dist/lib/components/IconMenu/index.ts +0 -2
- package/dist/lib/components/IconMenu/styles.tsx +0 -114
- package/dist/lib/components/IconMenu/types.ts +0 -50
- package/dist/lib/components/Image/Image.tsx +0 -124
- package/dist/lib/components/Image/ImageFunction.tsx +0 -47
- package/dist/lib/components/Image/styles.tsx +0 -85
- package/dist/lib/components/Image/types.ts +0 -46
- package/dist/lib/components/Input/Input.tsx +0 -163
- package/dist/lib/components/Input/styles.tsx +0 -39
- package/dist/lib/components/Input/subtypes.ts +0 -166
- package/dist/lib/components/Input/templates/ColorInput.tsx +0 -34
- package/dist/lib/components/Input/templates/DateInput.tsx +0 -118
- package/dist/lib/components/Input/templates/FileInput.tsx +0 -55
- package/dist/lib/components/Input/templates/PasswordInput.tsx +0 -185
- package/dist/lib/components/Input/templates/SearchInput.tsx +0 -132
- package/dist/lib/components/Input/templates/SelectInput.tsx +0 -110
- package/dist/lib/components/Input/templates/TextInput.tsx +0 -110
- package/dist/lib/components/Input/templates/TextareaInput.tsx +0 -37
- package/dist/lib/components/Input/templates/TimeInput.tsx +0 -117
- package/dist/lib/components/Input/types.ts +0 -22
- package/dist/lib/components/InputCheck/InputCheck.tsx +0 -145
- package/dist/lib/components/InputCheck/styles.tsx +0 -282
- package/dist/lib/components/InputCheck/types.ts +0 -34
- package/dist/lib/components/InputComponents/components/InputAndListContainer.tsx +0 -42
- package/dist/lib/components/InputComponents/components/InputButton.tsx +0 -61
- package/dist/lib/components/InputComponents/components/InputContainer.tsx +0 -69
- package/dist/lib/components/InputComponents/components/InputIcon.tsx +0 -57
- package/dist/lib/components/InputComponents/components/InputLeftContainer.tsx +0 -28
- package/dist/lib/components/InputComponents/components/InputPrefix.tsx +0 -30
- package/dist/lib/components/InputComponents/components/InputRightContainer.tsx +0 -34
- package/dist/lib/components/InputComponents/components/InputSuffix.tsx +0 -30
- package/dist/lib/components/InputComponents/components/InputValidationHelper.tsx +0 -97
- package/dist/lib/components/InputComponents/components/InputValidationIcon.tsx +0 -65
- package/dist/lib/components/InputComponents/components/InputWrapper.tsx +0 -45
- package/dist/lib/components/InputComponents/components/ListInput.tsx +0 -42
- package/dist/lib/components/InputComponents/components/ListInputItem.tsx +0 -48
- package/dist/lib/components/InputComponents/index.ts +0 -13
- package/dist/lib/components/InputComponents/styles.tsx +0 -716
- package/dist/lib/components/InputComponents/types.ts +0 -262
- package/dist/lib/components/InputContainer/HelperBottom.tsx +0 -94
- package/dist/lib/components/InputContainer/InputContainer.tsx +0 -143
- package/dist/lib/components/InputContainer/styles.tsx +0 -87
- package/dist/lib/components/InputContainer/subtypes.ts +0 -8
- package/dist/lib/components/InputContainer/types.ts +0 -23
- package/dist/lib/components/InputCounter/InputCounter.tsx +0 -296
- package/dist/lib/components/InputCounter/styles.tsx +0 -51
- package/dist/lib/components/InputCounter/subtypes.ts +0 -7
- package/dist/lib/components/InputCounter/types.ts +0 -49
- package/dist/lib/components/InputImage/EmptyContainer.tsx +0 -40
- package/dist/lib/components/InputImage/HoverContainer.tsx +0 -47
- package/dist/lib/components/InputImage/InputImage.tsx +0 -160
- package/dist/lib/components/InputImage/styles.tsx +0 -113
- package/dist/lib/components/InputImage/subtypes.ts +0 -28
- package/dist/lib/components/InputImage/types.ts +0 -23
- package/dist/lib/components/InputPhone/InputPhone.tsx +0 -392
- package/dist/lib/components/InputPhone/styles.tsx +0 -216
- package/dist/lib/components/InputPhone/types.ts +0 -33
- package/dist/lib/components/InputPin/InputPin.tsx +0 -137
- package/dist/lib/components/InputPin/styles.tsx +0 -68
- package/dist/lib/components/InputPin/subtypes.ts +0 -9
- package/dist/lib/components/InputPin/types.ts +0 -29
- package/dist/lib/components/InputSlider/InputSlider.tsx +0 -193
- package/dist/lib/components/InputSlider/Slider.tsx +0 -43
- package/dist/lib/components/InputSlider/styles.tsx +0 -290
- package/dist/lib/components/InputSlider/types.ts +0 -13
- package/dist/lib/components/Key/Key.tsx +0 -46
- package/dist/lib/components/Key/styles.tsx +0 -27
- package/dist/lib/components/Key/types.ts +0 -9
- package/dist/lib/components/LibIcon/LibIcon.tsx +0 -34
- package/dist/lib/components/LibIcon/index.ts +0 -1
- package/dist/lib/components/LibIcon/types.ts +0 -7
- package/dist/lib/components/Link/Link.tsx +0 -88
- package/dist/lib/components/Link/index.ts +0 -1
- package/dist/lib/components/Link/types.ts +0 -7
- package/dist/lib/components/Linkify/Linkify.tsx +0 -58
- package/dist/lib/components/Linkify/types.ts +0 -6
- package/dist/lib/components/ListGroup/ListGroup.tsx +0 -110
- package/dist/lib/components/ListGroup/ListGroupItem.tsx +0 -171
- package/dist/lib/components/ListGroup/ListGroupTitle.tsx +0 -56
- package/dist/lib/components/ListGroup/index.ts +0 -3
- package/dist/lib/components/ListGroup/styles.tsx +0 -177
- package/dist/lib/components/ListGroup/types.ts +0 -106
- package/dist/lib/components/Loader/Loader.tsx +0 -45
- package/dist/lib/components/Loader/styles.tsx +0 -138
- package/dist/lib/components/Loader/templates/LoaderFour.tsx +0 -27
- package/dist/lib/components/Loader/templates/LoaderOne.tsx +0 -21
- package/dist/lib/components/Loader/templates/LoaderThree.tsx +0 -30
- package/dist/lib/components/Loader/templates/LoaderTwo.tsx +0 -25
- package/dist/lib/components/Loader/types.ts +0 -23
- package/dist/lib/components/Main/Main.tsx +0 -48
- package/dist/lib/components/Main/styles.tsx +0 -61
- package/dist/lib/components/Main/types.ts +0 -15
- package/dist/lib/components/MarkdownContainer/MarkdownContainer.tsx +0 -42
- package/dist/lib/components/MarkdownContainer/styles.tsx +0 -15
- package/dist/lib/components/MarkdownContainer/types.ts +0 -7
- package/dist/lib/components/MarkdownEditor/MarkdownEditor.tsx +0 -200
- package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtonTitles.tsx +0 -75
- package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtons.tsx +0 -73
- package/dist/lib/components/MarkdownEditor/MdEditorButtons/MarkdownButtons.tsx +0 -52
- package/dist/lib/components/MarkdownEditor/MdEditorInput.tsx +0 -88
- package/dist/lib/components/MarkdownEditor/markdown-buttons.tsx +0 -180
- package/dist/lib/components/MarkdownEditor/styles.tsx +0 -187
- package/dist/lib/components/MarkdownEditor/subtypes.ts +0 -54
- package/dist/lib/components/MarkdownEditor/types.ts +0 -57
- package/dist/lib/components/Masonry/Masonry.tsx +0 -73
- package/dist/lib/components/Masonry/styles.tsx +0 -22
- package/dist/lib/components/Masonry/types.ts +0 -8
- package/dist/lib/components/Masonry/utils.ts +0 -28
- package/dist/lib/components/Messaging/Message.tsx +0 -112
- package/dist/lib/components/Messaging/MessageForm.tsx +0 -153
- package/dist/lib/components/Messaging/MessagesContainer.tsx +0 -42
- package/dist/lib/components/Messaging/MessagesList.tsx +0 -140
- package/dist/lib/components/Messaging/Messaging.tsx +0 -123
- package/dist/lib/components/Messaging/index.ts +0 -5
- package/dist/lib/components/Messaging/styles.tsx +0 -176
- package/dist/lib/components/Messaging/types.ts +0 -119
- package/dist/lib/components/Meta/Meta.tsx +0 -125
- package/dist/lib/components/Meta/index.ts +0 -3
- package/dist/lib/components/Meta/types.ts +0 -17
- package/dist/lib/components/Modal/Modal.tsx +0 -134
- package/dist/lib/components/Modal/styles.tsx +0 -60
- package/dist/lib/components/Modal/types.ts +0 -36
- package/dist/lib/components/PageLayout/PageLayout.tsx +0 -96
- package/dist/lib/components/PageLayout/index.ts +0 -1
- package/dist/lib/components/PageLayout/types.ts +0 -45
- package/dist/lib/components/PageLoading/PageLoading.tsx +0 -67
- package/dist/lib/components/PageLoading/styles.tsx +0 -22
- package/dist/lib/components/PageLoading/types.ts +0 -13
- package/dist/lib/components/Pagination/Pagination.tsx +0 -262
- package/dist/lib/components/Pagination/PaginationButton.tsx +0 -52
- package/dist/lib/components/Pagination/styles.tsx +0 -70
- package/dist/lib/components/Pagination/types.ts +0 -55
- package/dist/lib/components/Paginator/Paginator.tsx +0 -169
- package/dist/lib/components/Paginator/styles.tsx +0 -34
- package/dist/lib/components/Paginator/types.ts +0 -14
- package/dist/lib/components/ProgressBar/ProgressBar.tsx +0 -74
- package/dist/lib/components/ProgressBar/styles.tsx +0 -76
- package/dist/lib/components/ProgressBar/types.ts +0 -11
- package/dist/lib/components/ProgressCircle/Circle.tsx +0 -29
- package/dist/lib/components/ProgressCircle/ProgressCircle.tsx +0 -96
- package/dist/lib/components/ProgressCircle/ProgressCircleFn.tsx +0 -42
- package/dist/lib/components/ProgressCircle/Value.tsx +0 -30
- package/dist/lib/components/ProgressCircle/clean-percentage.ts +0 -5
- package/dist/lib/components/ProgressCircle/styles.tsx +0 -53
- package/dist/lib/components/ProgressCircle/subtypes.ts +0 -9
- package/dist/lib/components/ProgressCircle/types.ts +0 -29
- package/dist/lib/components/Rating/Rating.tsx +0 -178
- package/dist/lib/components/Rating/styles.tsx +0 -50
- package/dist/lib/components/Rating/types.ts +0 -22
- package/dist/lib/components/ResetScroll/ResetScroll.tsx +0 -27
- package/dist/lib/components/ResetScroll/index.ts +0 -1
- package/dist/lib/components/Section/Section.tsx +0 -45
- package/dist/lib/components/Section/styles.tsx +0 -22
- package/dist/lib/components/Section/types.ts +0 -5
- package/dist/lib/components/Select/Select.tsx +0 -290
- package/dist/lib/components/Select/SelectButton.tsx +0 -52
- package/dist/lib/components/Select/styles.tsx +0 -20
- package/dist/lib/components/Select/subtypes.ts +0 -31
- package/dist/lib/components/Select/types.ts +0 -31
- package/dist/lib/components/Skeleton/Skeleton.tsx +0 -62
- package/dist/lib/components/Skeleton/SkeletonCard.tsx +0 -81
- package/dist/lib/components/Skeleton/SkeletonShine.tsx +0 -30
- package/dist/lib/components/Skeleton/index.ts +0 -3
- package/dist/lib/components/Skeleton/styles.tsx +0 -94
- package/dist/lib/components/Skeleton/subtypes.ts +0 -14
- package/dist/lib/components/Skeleton/types.ts +0 -37
- package/dist/lib/components/Slideshow/Slideshow.tsx +0 -191
- package/dist/lib/components/Slideshow/SlideshowButton.tsx +0 -98
- package/dist/lib/components/Slideshow/SlideshowPagination.tsx +0 -83
- package/dist/lib/components/Slideshow/styles.tsx +0 -359
- package/dist/lib/components/Slideshow/subtypes.ts +0 -20
- package/dist/lib/components/Slideshow/types.ts +0 -97
- package/dist/lib/components/SrOnly/SrOnly.tsx +0 -34
- package/dist/lib/components/SrOnly/index.ts +0 -1
- package/dist/lib/components/SrOnly/styles.tsx +0 -19
- package/dist/lib/components/SrOnly/types.ts +0 -3
- package/dist/lib/components/Stepper/Step.tsx +0 -122
- package/dist/lib/components/Stepper/Stepper.tsx +0 -92
- package/dist/lib/components/Stepper/index.ts +0 -2
- package/dist/lib/components/Stepper/styles.tsx +0 -113
- package/dist/lib/components/Stepper/types.ts +0 -42
- package/dist/lib/components/Sticky/Sticky.tsx +0 -44
- package/dist/lib/components/Sticky/styles.tsx +0 -13
- package/dist/lib/components/Sticky/types.ts +0 -5
- package/dist/lib/components/Table/TBody.tsx +0 -27
- package/dist/lib/components/Table/THead.tsx +0 -27
- package/dist/lib/components/Table/Table.tsx +0 -128
- package/dist/lib/components/Table/Td.tsx +0 -35
- package/dist/lib/components/Table/Tr.tsx +0 -23
- package/dist/lib/components/Table/index.ts +0 -5
- package/dist/lib/components/Table/styles.tsx +0 -112
- package/dist/lib/components/Table/types.ts +0 -40
- package/dist/lib/components/Tabs/TabButton.tsx +0 -54
- package/dist/lib/components/Tabs/TabItem.tsx +0 -45
- package/dist/lib/components/Tabs/Tabs.tsx +0 -140
- package/dist/lib/components/Tabs/TabsButtonsContainer.tsx +0 -48
- package/dist/lib/components/Tabs/TabsContainer.tsx +0 -36
- package/dist/lib/components/Tabs/index.ts +0 -5
- package/dist/lib/components/Tabs/styles.tsx +0 -176
- package/dist/lib/components/Tabs/types.ts +0 -48
- package/dist/lib/components/Tag/Tag.tsx +0 -101
- package/dist/lib/components/Tag/styles.tsx +0 -39
- package/dist/lib/components/Tag/types.ts +0 -41
- package/dist/lib/components/Text/Text.tsx +0 -71
- package/dist/lib/components/Text/styles.tsx +0 -250
- package/dist/lib/components/Text/subtypes.ts +0 -13
- package/dist/lib/components/Text/templates/Blockquote.tsx +0 -28
- package/dist/lib/components/Text/templates/Dl.tsx +0 -28
- package/dist/lib/components/Text/templates/Em.tsx +0 -28
- package/dist/lib/components/Text/templates/H1.tsx +0 -30
- package/dist/lib/components/Text/templates/H2.tsx +0 -30
- package/dist/lib/components/Text/templates/H3.tsx +0 -30
- package/dist/lib/components/Text/templates/H4.tsx +0 -30
- package/dist/lib/components/Text/templates/H5.tsx +0 -30
- package/dist/lib/components/Text/templates/H6.tsx +0 -28
- package/dist/lib/components/Text/templates/Ol.tsx +0 -28
- package/dist/lib/components/Text/templates/P.tsx +0 -28
- package/dist/lib/components/Text/templates/Small.tsx +0 -28
- package/dist/lib/components/Text/templates/Strong.tsx +0 -28
- package/dist/lib/components/Text/templates/Ul.tsx +0 -28
- package/dist/lib/components/Text/types.ts +0 -26
- package/dist/lib/components/TextIcon/TextIcon.tsx +0 -100
- package/dist/lib/components/TextIcon/index.ts +0 -1
- package/dist/lib/components/TextIcon/styles.tsx +0 -36
- package/dist/lib/components/TextIcon/types.ts +0 -19
- package/dist/lib/components/TextIcon/utils.ts +0 -56
- package/dist/lib/components/Timepicker/Timepicker.tsx +0 -306
- package/dist/lib/components/Timepicker/index.ts +0 -1
- package/dist/lib/components/Timepicker/styles.tsx +0 -32
- package/dist/lib/components/Timepicker/types.ts +0 -67
- package/dist/lib/components/Toast/Toast.tsx +0 -202
- package/dist/lib/components/Toast/Toaster.tsx +0 -156
- package/dist/lib/components/Toast/index.ts +0 -1
- package/dist/lib/components/Toast/styles.tsx +0 -247
- package/dist/lib/components/Toast/types.ts +0 -30
- package/dist/lib/components/Tooltip/Tooltip.tsx +0 -129
- package/dist/lib/components/Tooltip/styles.tsx +0 -149
- package/dist/lib/components/Tooltip/types.ts +0 -21
- package/dist/lib/components/Truncate/Truncate.tsx +0 -128
- package/dist/lib/components/Truncate/index.ts +0 -1
- package/dist/lib/components/Truncate/styles.tsx +0 -36
- package/dist/lib/components/Truncate/types.ts +0 -5
- package/dist/lib/components/Video/Video.tsx +0 -74
- package/dist/lib/components/Video/index.ts +0 -1
- package/dist/lib/components/Video/styles.tsx +0 -22
- package/dist/lib/components/Video/types.ts +0 -20
- package/dist/lib/components/Wrapper/Wrapper.tsx +0 -50
- package/dist/lib/components/Wrapper/styles.tsx +0 -33
- package/dist/lib/components/Wrapper/types.ts +0 -7
- package/dist/lib/components/Youtube/Youtube.tsx +0 -49
- package/dist/lib/components/Youtube/index.ts +0 -1
- package/dist/lib/components/Youtube/styles.tsx +0 -18
- package/dist/lib/components/Youtube/types.ts +0 -10
- package/dist/lib/context/Theme.context.tsx +0 -116
- package/dist/lib/context/Toaster/Toaster.context.tsx +0 -131
- package/dist/lib/context/Toaster/index.ts +0 -3
- package/dist/lib/context/Toaster/toast.reducer.ts +0 -34
- package/dist/lib/design-tokens.ts +0 -2217
- package/dist/lib/hooks/useClickOutside.tsx +0 -42
- package/dist/lib/hooks/useCopyToClipboard.tsx +0 -38
- package/dist/lib/hooks/useDebounce.tsx +0 -26
- package/dist/lib/hooks/useExportData.tsx +0 -65
- package/dist/lib/hooks/useFetch.tsx +0 -30
- package/dist/lib/hooks/useForm.tsx +0 -38
- package/dist/lib/hooks/useIsOverflow.ts +0 -46
- package/dist/lib/hooks/useKeyPress.tsx +0 -101
- package/dist/lib/hooks/useMaxWidth.tsx +0 -32
- package/dist/lib/hooks/useMergeRefs.ts +0 -36
- package/dist/lib/hooks/useMinWidth.tsx +0 -32
- package/dist/lib/hooks/usePaginatedData.tsx +0 -42
- package/dist/lib/hooks/usePagination.tsx +0 -122
- package/dist/lib/hooks/useTouchScreen.tsx +0 -25
- package/dist/lib/hooks/useTranslation.tsx +0 -43
- package/dist/lib/icons/ArrowUp.tsx +0 -31
- package/dist/lib/icons/Bold.tsx +0 -31
- package/dist/lib/icons/Calendar.tsx +0 -39
- package/dist/lib/icons/CaretDown.tsx +0 -31
- package/dist/lib/icons/Check.tsx +0 -31
- package/dist/lib/icons/CheckCircle.tsx +0 -37
- package/dist/lib/icons/ChevronDown.tsx +0 -31
- package/dist/lib/icons/ChevronLeft.tsx +0 -31
- package/dist/lib/icons/ChevronRight.tsx +0 -31
- package/dist/lib/icons/ChevronUp.tsx +0 -31
- package/dist/lib/icons/Clipboard.tsx +0 -31
- package/dist/lib/icons/Clock.tsx +0 -34
- package/dist/lib/icons/Close.tsx +0 -31
- package/dist/lib/icons/CloseCircle.tsx +0 -37
- package/dist/lib/icons/Code.tsx +0 -31
- package/dist/lib/icons/CodeBlock.tsx +0 -41
- package/dist/lib/icons/Comment.tsx +0 -41
- package/dist/lib/icons/Drag.tsx +0 -31
- package/dist/lib/icons/Edit.tsx +0 -37
- package/dist/lib/icons/EditorCode.tsx +0 -35
- package/dist/lib/icons/EditorLive.tsx +0 -35
- package/dist/lib/icons/EditorPreview.tsx +0 -35
- package/dist/lib/icons/Hide.tsx +0 -31
- package/dist/lib/icons/Image.tsx +0 -41
- package/dist/lib/icons/Italic.tsx +0 -31
- package/dist/lib/icons/Link.tsx +0 -35
- package/dist/lib/icons/Minus.tsx +0 -28
- package/dist/lib/icons/OrderedList.tsx +0 -31
- package/dist/lib/icons/Plus.tsx +0 -31
- package/dist/lib/icons/Quote.tsx +0 -31
- package/dist/lib/icons/Search.tsx +0 -37
- package/dist/lib/icons/Send.tsx +0 -31
- package/dist/lib/icons/Separator.tsx +0 -31
- package/dist/lib/icons/Show.tsx +0 -37
- package/dist/lib/icons/Star.tsx +0 -31
- package/dist/lib/icons/StarFull.tsx +0 -31
- package/dist/lib/icons/Strikethrough.tsx +0 -31
- package/dist/lib/icons/Underline.tsx +0 -31
- package/dist/lib/icons/UnorderedList.tsx +0 -31
- package/dist/lib/icons/index.ts +0 -39
- package/dist/lib/icons/styles.tsx +0 -17
- package/dist/lib/icons/types.ts +0 -9
- package/dist/lib/index.css +0 -1491
- package/dist/lib/index.ts +0 -159
- package/dist/lib/lib-utils/append-styles.ts +0 -7
- package/dist/lib/lib-utils/colors-maps.ts +0 -174
- package/dist/lib/lib-utils/generate-lib-tokens.ts +0 -38
- package/dist/lib/lib-utils/get-highlighted-text.tsx +0 -29
- package/dist/lib/lib-utils/get-icon-size-from-font.ts +0 -25
- package/dist/lib/lib-utils/index.ts +0 -9
- package/dist/lib/lib-utils/round-icon-size.ts +0 -5
- package/dist/lib/modules-declare.d.ts +0 -19
- package/dist/lib/types/component-items.ts +0 -511
- package/dist/lib/types/components-props.ts +0 -80
- package/dist/lib/types/generate-int-range.ts +0 -17
- package/dist/lib/types/global.ts +0 -436
- package/dist/lib/types/index.ts +0 -5
- package/dist/lib/types/theme.ts +0 -166
- package/dist/lib/utils/StyleSheetManager.tsx +0 -30
- package/dist/lib/utils/index.ts +0 -4
- package/dist/lib/utils/lib-tokens.json +0 -860
- package/dist/lib/utils/linkify-text.tsx +0 -26
- package/dist/lib/utils/options-markdown.ts +0 -132
- package/dist/lib/utils/set-default-theme.ts +0 -12
- package/dist/styles-BCSPldCD.js +0 -16
- package/dist/styles-CtcGw3Gv.cjs +0 -7
- /package/{license.md → LICENSE} +0 -0
- /package/{dist → src}/lib/components/Accordion/index.ts +0 -0
- /package/{dist → src}/lib/components/Alert/index.ts +0 -0
- /package/{dist → src}/lib/components/Aside/index.ts +0 -0
- /package/{dist → src}/lib/components/Autocomplete/index.ts +0 -0
- /package/{dist → src}/lib/components/Avatar/index.ts +0 -0
- /package/{dist → src}/lib/components/BackToTop/index.ts +0 -0
- /package/{dist → src}/lib/components/Badge/index.ts +0 -0
- /package/{dist → src}/lib/components/Breadcrumbs/index.ts +0 -0
- /package/{dist → src}/lib/components/Burger/index.ts +0 -0
- /package/{dist → src}/lib/components/Button/index.ts +0 -0
- /package/{dist → src}/lib/components/ButtonGroup/index.ts +0 -0
- /package/{dist → src}/lib/components/ButtonIcon/index.ts +0 -0
- /package/{dist → src}/lib/components/CodeContainer/index.ts +0 -0
- /package/{dist → src}/lib/components/Cover/index.ts +0 -0
- /package/{dist → src}/lib/components/DragList/index.ts +0 -0
- /package/{dist → src}/lib/components/Drawer/index.ts +0 -0
- /package/{dist → src}/lib/components/Fade/index.ts +0 -0
- /package/{dist → src}/lib/components/Fade/types.ts +0 -0
- /package/{dist → src}/lib/components/Fieldset/index.ts +0 -0
- /package/{dist → src}/lib/components/Flexbox/index.ts +0 -0
- /package/{dist → src}/lib/components/Form/index.ts +0 -0
- /package/{dist → src}/lib/components/Grid/index.ts +0 -0
- /package/{dist → src}/lib/components/Header/index.ts +0 -0
- /package/{dist → src}/lib/components/Highlight/index.ts +0 -0
- /package/{dist → src}/lib/components/Hr/index.ts +0 -0
- /package/{dist → src}/lib/components/Image/index.ts +0 -0
- /package/{dist → src}/lib/components/Input/index.ts +0 -0
- /package/{dist → src}/lib/components/InputCheck/index.ts +0 -0
- /package/{dist → src}/lib/components/InputContainer/index.ts +0 -0
- /package/{dist → src}/lib/components/InputCounter/index.ts +0 -0
- /package/{dist → src}/lib/components/InputImage/index.ts +0 -0
- /package/{dist → src}/lib/components/InputPhone/index.ts +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/countries.ts +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ac.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ad.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ae.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/af.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ag.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ai.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/al.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/am.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ao.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/aq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ar.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/as.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/at.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/au.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/aw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ax.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/az.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ba.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bb.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bd.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/be.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bi.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bo.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/br.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bs.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/by.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ca.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cd.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cefta.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ch.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ci.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ck.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/co.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cx.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cy.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/de.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/do.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ea.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ec.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ee.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/eg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/eh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/er.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/es-ct.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/es-ga.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/es.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/et.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/eu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fi.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fo.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ga.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-eng.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-nir.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-sct.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-wls.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gd.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ge.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gi.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gs.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gy.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ht.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ic.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/id.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ie.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/il.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/im.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/in.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/io.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/iq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ir.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/is.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/it.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/je.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/jm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/jo.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/jp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ke.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ki.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/km.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ky.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/la.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lb.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/li.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ls.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ly.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ma.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/md.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/me.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ml.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mo.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ms.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mx.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/my.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/na.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ne.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ng.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ni.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/no.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/np.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/om.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pa.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pe.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ph.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ps.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/py.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/qa.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/re.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ro.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/rs.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ru.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/rw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sa.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sb.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sd.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/se.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/si.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/so.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ss.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/st.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sx.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sy.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ta.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/td.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/th.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/to.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ua.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ug.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/um.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/un.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/us.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/uy.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/uz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/va.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ve.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vi.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/wf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ws.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/xk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/xx.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ye.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/yt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/za.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/zm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/zw.svg +0 -0
- /package/{dist → src}/lib/components/InputPin/index.ts +0 -0
- /package/{dist → src}/lib/components/InputSlider/index.ts +0 -0
- /package/{dist → src}/lib/components/Key/index.ts +0 -0
- /package/{dist → src}/lib/components/Linkify/index.ts +0 -0
- /package/{dist → src}/lib/components/Loader/index.ts +0 -0
- /package/{dist → src}/lib/components/Main/index.ts +0 -0
- /package/{dist → src}/lib/components/MarkdownContainer/index.ts +0 -0
- /package/{dist → src}/lib/components/MarkdownEditor/index.ts +0 -0
- /package/{dist → src}/lib/components/Masonry/index.ts +0 -0
- /package/{dist → src}/lib/components/Modal/index.ts +0 -0
- /package/{dist → src}/lib/components/PageLoading/index.ts +0 -0
- /package/{dist → src}/lib/components/Pagination/index.ts +0 -0
- /package/{dist → src}/lib/components/Paginator/index.ts +0 -0
- /package/{dist → src}/lib/components/ProgressBar/index.ts +0 -0
- /package/{dist → src}/lib/components/ProgressCircle/index.ts +0 -0
- /package/{dist → src}/lib/components/Rating/index.ts +0 -0
- /package/{dist → src}/lib/components/Section/index.ts +0 -0
- /package/{dist → src}/lib/components/Select/index.ts +0 -0
- /package/{dist → src}/lib/components/Slideshow/index.ts +0 -0
- /package/{dist → src}/lib/components/Sticky/index.ts +0 -0
- /package/{dist → src}/lib/components/Tag/index.ts +0 -0
- /package/{dist → src}/lib/components/Text/index.ts +0 -0
- /package/{dist → src}/lib/components/Tooltip/index.ts +0 -0
- /package/{dist → src}/lib/components/Wrapper/index.ts +0 -0
- /package/{dist → src}/lib/hooks/index.ts +0 -0
- /package/{dist → src}/lib/lib-utils/transfom-search-keys.ts +0 -0
- /package/{dist → src}/lib/types/require-at-least-one.ts +0 -0
package/dist/index.css
DELETED
|
@@ -1,1491 +0,0 @@
|
|
|
1
|
-
@charset "UTF-8";
|
|
2
|
-
|
|
3
|
-
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
|
|
4
|
-
|
|
5
|
-
:root {
|
|
6
|
-
--color-black: rgb(0, 0, 0);
|
|
7
|
-
--color-white: rgb(255, 255, 255);
|
|
8
|
-
|
|
9
|
-
--color-light-gray-50: rgb(248, 248, 248);
|
|
10
|
-
--color-light-gray-100: rgb(228, 228, 228);
|
|
11
|
-
--color-light-gray-200: rgb(200, 200, 200);
|
|
12
|
-
--color-light-gray-300: rgb(173, 173, 173);
|
|
13
|
-
--color-light-gray-400: rgb(145, 145, 145);
|
|
14
|
-
--color-light-gray-500: rgb(118, 118, 118);
|
|
15
|
-
--color-light-gray-600: rgb(94, 94, 94);
|
|
16
|
-
--color-light-gray-700: rgb(71, 71, 71);
|
|
17
|
-
--color-light-gray-800: rgb(47, 47, 47);
|
|
18
|
-
--color-light-gray-900: rgb(24, 24, 24);
|
|
19
|
-
--color-light-primary-50: rgb(244, 246, 247);
|
|
20
|
-
--color-light-primary-100: rgb(209, 218, 225);
|
|
21
|
-
--color-light-primary-200: rgb(164, 181, 195);
|
|
22
|
-
--color-light-primary-300: rgb(118, 143, 164);
|
|
23
|
-
--color-light-primary-400: rgb(73, 106, 134);
|
|
24
|
-
--color-light-primary-500: rgb(27, 69, 104);
|
|
25
|
-
--color-light-primary-600: rgb(22, 55, 83);
|
|
26
|
-
--color-light-primary-700: rgb(16, 41, 62);
|
|
27
|
-
--color-light-primary-800: rgb(11, 28, 42);
|
|
28
|
-
--color-light-primary-900: rgb(5, 14, 21);
|
|
29
|
-
--color-light-secondary-50: rgb(244, 248, 253);
|
|
30
|
-
--color-light-secondary-100: rgb(212, 226, 246);
|
|
31
|
-
--color-light-secondary-200: rgb(168, 197, 237);
|
|
32
|
-
--color-light-secondary-300: rgb(125, 167, 229);
|
|
33
|
-
--color-light-secondary-400: rgb(81, 138, 220);
|
|
34
|
-
--color-light-secondary-500: rgb(38, 109, 211);
|
|
35
|
-
--color-light-secondary-600: rgb(30, 87, 169);
|
|
36
|
-
--color-light-secondary-700: rgb(23, 65, 127);
|
|
37
|
-
--color-light-secondary-800: rgb(15, 44, 84);
|
|
38
|
-
--color-light-secondary-900: rgb(8, 22, 42);
|
|
39
|
-
--color-light-success-50: rgb(243, 249, 246);
|
|
40
|
-
--color-light-success-100: rgb(206, 230, 219);
|
|
41
|
-
--color-light-success-200: rgb(157, 205, 183);
|
|
42
|
-
--color-light-success-300: rgb(107, 179, 146);
|
|
43
|
-
--color-light-success-400: rgb(58, 154, 110);
|
|
44
|
-
--color-light-success-500: rgb(9, 129, 74);
|
|
45
|
-
--color-light-success-600: rgb(7, 103, 59);
|
|
46
|
-
--color-light-success-700: rgb(5, 77, 44);
|
|
47
|
-
--color-light-success-800: rgb(4, 52, 30);
|
|
48
|
-
--color-light-success-900: rgb(2, 26, 15);
|
|
49
|
-
--color-light-danger-50: rgb(251, 242, 244);
|
|
50
|
-
--color-light-danger-100: rgb(240, 204, 209);
|
|
51
|
-
--color-light-danger-200: rgb(225, 153, 164);
|
|
52
|
-
--color-light-danger-300: rgb(209, 102, 118);
|
|
53
|
-
--color-light-danger-400: rgb(194, 51, 73);
|
|
54
|
-
--color-light-danger-500: rgb(179, 0, 27);
|
|
55
|
-
--color-light-danger-600: rgb(143, 0, 22);
|
|
56
|
-
--color-light-danger-700: rgb(107, 0, 16);
|
|
57
|
-
--color-light-danger-800: rgb(72, 0, 11);
|
|
58
|
-
--color-light-danger-900: rgb(36, 0, 5);
|
|
59
|
-
--color-light-warning-50: rgb(252, 246, 242);
|
|
60
|
-
--color-light-warning-100: rgb(243, 219, 204);
|
|
61
|
-
--color-light-warning-200: rgb(231, 182, 153);
|
|
62
|
-
--color-light-warning-300: rgb(220, 146, 102);
|
|
63
|
-
--color-light-warning-400: rgb(208, 109, 51);
|
|
64
|
-
--color-light-warning-500: rgb(196, 73, 0);
|
|
65
|
-
--color-light-warning-600: rgb(157, 58, 0);
|
|
66
|
-
--color-light-warning-700: rgb(118, 44, 0);
|
|
67
|
-
--color-light-warning-800: rgb(78, 29, 0);
|
|
68
|
-
--color-light-warning-900: rgb(39, 15, 0);
|
|
69
|
-
--color-light-background: var(--color-white);
|
|
70
|
-
--color-light-font: var(--color-black);
|
|
71
|
-
|
|
72
|
-
--color-light-link-font-default: var(--color-light-font);
|
|
73
|
-
--color-light-link-font-hover: var(--color-light-gray-700);
|
|
74
|
-
--color-light-link-font-active: var(--color-light-gray-900);
|
|
75
|
-
|
|
76
|
-
--color-light-link-background-default: var(--color-light-background);
|
|
77
|
-
--color-light-link-background-hover: var(--color-light-gray-300);
|
|
78
|
-
--color-light-link-background-active: var(--color-light-gray-100);
|
|
79
|
-
|
|
80
|
-
--color-light-font-ghost-default: var(--color-light-gray-900);
|
|
81
|
-
--color-light-font-ghost-hover: var(--color-light-gray-700);
|
|
82
|
-
--color-light-font-ghost-active: var(--color-light-gray-800);
|
|
83
|
-
|
|
84
|
-
--color-light-background-ghost-default: var(--color-light-gray-50);
|
|
85
|
-
--color-light-background-ghost-hover: var(--color-light-gray-200);
|
|
86
|
-
--color-light-background-ghost-active: var(--color-light-gray-100);
|
|
87
|
-
|
|
88
|
-
--color-dark-gray-50: rgba(24, 24, 24, 1);
|
|
89
|
-
--color-dark-gray-100: rgba(47, 47, 47, 1);
|
|
90
|
-
--color-dark-gray-200: rgba(71, 71, 71, 1);
|
|
91
|
-
--color-dark-gray-300: rgba(94, 94, 94, 1);
|
|
92
|
-
--color-dark-gray-400: rgba(118, 118, 118, 1);
|
|
93
|
-
--color-dark-gray-500: rgba(145, 145, 145, 1);
|
|
94
|
-
--color-dark-gray-600: rgba(173, 173, 173, 1);
|
|
95
|
-
--color-dark-gray-700: rgba(200, 200, 200, 1);
|
|
96
|
-
--color-dark-gray-800: rgba(228, 228, 228, 1);
|
|
97
|
-
--color-dark-gray-900: rgba(248, 248, 248, 1);
|
|
98
|
-
--color-dark-primary-50: rgb(20, 30, 51);
|
|
99
|
-
--color-dark-primary-100: rgb(41, 61, 102);
|
|
100
|
-
--color-dark-primary-200: rgb(61, 91, 153);
|
|
101
|
-
--color-dark-primary-300: rgb(82, 122, 204);
|
|
102
|
-
--color-dark-primary-400: rgb(102, 152, 255);
|
|
103
|
-
--color-dark-primary-500: rgb(133, 173, 255);
|
|
104
|
-
--color-dark-primary-600: rgb(163, 193, 255);
|
|
105
|
-
--color-dark-primary-700: rgb(194, 214, 255);
|
|
106
|
-
--color-dark-primary-800: rgb(224, 234, 255);
|
|
107
|
-
--color-dark-primary-900: rgb(247, 250, 255);
|
|
108
|
-
--color-dark-secondary-50: rgb(23, 45, 46);
|
|
109
|
-
--color-dark-secondary-100: rgb(46, 89, 92);
|
|
110
|
-
--color-dark-secondary-200: rgb(68, 134, 139);
|
|
111
|
-
--color-dark-secondary-300: rgb(91, 178, 185);
|
|
112
|
-
--color-dark-secondary-400: rgb(114, 223, 231);
|
|
113
|
-
--color-dark-secondary-500: rgb(142, 229, 236);
|
|
114
|
-
--color-dark-secondary-600: rgb(170, 236, 241);
|
|
115
|
-
--color-dark-secondary-700: rgb(199, 242, 245);
|
|
116
|
-
--color-dark-secondary-800: rgb(227, 249, 250);
|
|
117
|
-
--color-dark-secondary-900: rgb(248, 254, 254);
|
|
118
|
-
--color-dark-success-50: rgb(17, 47, 32);
|
|
119
|
-
--color-dark-success-100: rgb(35, 94, 64);
|
|
120
|
-
--color-dark-success-200: rgb(52, 141, 97);
|
|
121
|
-
--color-dark-success-300: rgb(70, 188, 129);
|
|
122
|
-
--color-dark-success-400: rgb(87, 235, 161);
|
|
123
|
-
--color-dark-success-500: rgb(121, 239, 180);
|
|
124
|
-
--color-dark-success-600: rgb(154, 243, 199);
|
|
125
|
-
--color-dark-success-700: rgb(188, 247, 217);
|
|
126
|
-
--color-dark-success-800: rgb(221, 251, 236);
|
|
127
|
-
--color-dark-success-900: rgb(247, 254, 250);
|
|
128
|
-
--color-dark-danger-50: rgb(51, 26, 26);
|
|
129
|
-
--color-dark-danger-100: rgb(102, 51, 51);
|
|
130
|
-
--color-dark-danger-200: rgb(153, 77, 77);
|
|
131
|
-
--color-dark-danger-300: rgb(204, 102, 102);
|
|
132
|
-
--color-dark-danger-400: rgb(255, 128, 128);
|
|
133
|
-
--color-dark-danger-500: rgb(255, 153, 153);
|
|
134
|
-
--color-dark-danger-600: rgb(255, 179, 179);
|
|
135
|
-
--color-dark-danger-700: rgb(255, 204, 204);
|
|
136
|
-
--color-dark-danger-800: rgb(255, 230, 230);
|
|
137
|
-
--color-dark-danger-900: rgb(255, 249, 249);
|
|
138
|
-
--color-dark-warning-50: rgb(51, 41, 23);
|
|
139
|
-
--color-dark-warning-100: rgb(101, 82, 46);
|
|
140
|
-
--color-dark-warning-200: rgb(152, 122, 70);
|
|
141
|
-
--color-dark-warning-300: rgb(202, 163, 93);
|
|
142
|
-
--color-dark-warning-400: rgb(253, 204, 116);
|
|
143
|
-
--color-dark-warning-500: rgb(254, 214, 144);
|
|
144
|
-
--color-dark-warning-600: rgb(254, 224, 172);
|
|
145
|
-
--color-dark-warning-700: rgb(254, 235, 199);
|
|
146
|
-
--color-dark-warning-800: rgb(255, 245, 227);
|
|
147
|
-
--color-dark-warning-900: rgb(255, 253, 248);
|
|
148
|
-
--color-dark-background: rgb(18, 18, 18);
|
|
149
|
-
--color-dark-font: var(--color-white);
|
|
150
|
-
|
|
151
|
-
--color-dark-link-font-default: var(--color-dark-font);
|
|
152
|
-
--color-dark-link-font-hover: var(--color-dark-gray-300);
|
|
153
|
-
--color-dark-link-font-active: var(--color-dark-gray-100);
|
|
154
|
-
|
|
155
|
-
--color-dark-link-background-default: var(--color-dark-background);
|
|
156
|
-
--color-dark-link-background-hover: var(--color-dark-gray-700);
|
|
157
|
-
--color-dark-link-background-active: var(--color-dark-gray-900);
|
|
158
|
-
|
|
159
|
-
--color-dark-font-ghost-default: var(--color-dark-gray-900);
|
|
160
|
-
--color-dark-font-ghost-hover: var(--color-dark-gray-700);
|
|
161
|
-
--color-dark-font-ghost-active: var(--color-dark-gray-800);
|
|
162
|
-
|
|
163
|
-
--color-dark-background-ghost-default: var(--color-dark-gray-50);
|
|
164
|
-
--color-dark-background-ghost-hover: var(--color-dark-gray-200);
|
|
165
|
-
--color-dark-background-ghost-active: var(--color-dark-gray-100);
|
|
166
|
-
|
|
167
|
-
--overlay-black-50: rgba(0, 0, 0, 0.5);
|
|
168
|
-
--overlay-black-80: rgba(0, 0, 0, 0.8);
|
|
169
|
-
--overlay-white-50: rgba(255, 255, 255, 0.5);
|
|
170
|
-
--overlay-white-80: rgba(255, 255, 255, 0.8);
|
|
171
|
-
--overlay-gradient-black: linear-gradient(
|
|
172
|
-
180deg,
|
|
173
|
-
rgba(255, 255, 255, 0) 0%,
|
|
174
|
-
rgba(0, 0, 0, 0.56) 100%
|
|
175
|
-
);
|
|
176
|
-
--overlay-gradient-white: linear-gradient(
|
|
177
|
-
180deg,
|
|
178
|
-
rgba(0, 0, 0, 0) 0%,
|
|
179
|
-
rgba(255, 255, 255, 0.35) 100%
|
|
180
|
-
);
|
|
181
|
-
|
|
182
|
-
/* Font families */
|
|
183
|
-
|
|
184
|
-
--font-family-body: "Lato-regular", sans-serif;
|
|
185
|
-
--font-family-code: "Roboto Mono", monospace;
|
|
186
|
-
|
|
187
|
-
/* Font sizes */
|
|
188
|
-
|
|
189
|
-
--font-size-display-h1: 5rem;
|
|
190
|
-
--font-size-display-h2: 4rem;
|
|
191
|
-
--font-size-display-h3: 3.5rem;
|
|
192
|
-
--font-size-display-h4: 3rem;
|
|
193
|
-
--font-size-display-h5: 2.5rem;
|
|
194
|
-
--font-size-h1: 2.5rem;
|
|
195
|
-
--font-size-h2: 2rem;
|
|
196
|
-
--font-size-h3: 1.8rem;
|
|
197
|
-
--font-size-h4: 1.5rem;
|
|
198
|
-
--font-size-h5: 1.3rem;
|
|
199
|
-
--font-size-h6: 1.1rem;
|
|
200
|
-
--font-size-body: 1rem;
|
|
201
|
-
--font-size-small: 0.875rem;
|
|
202
|
-
|
|
203
|
-
/* Font weights */
|
|
204
|
-
|
|
205
|
-
--font-weight-regular: 400;
|
|
206
|
-
--font-weight-bold: 700;
|
|
207
|
-
--font-weight-black: 900;
|
|
208
|
-
|
|
209
|
-
/* Line height */
|
|
210
|
-
|
|
211
|
-
--line-height-body: 1.5;
|
|
212
|
-
--line-height-code: 1.8;
|
|
213
|
-
|
|
214
|
-
--shadow-xxl: 0px 10px 14px 8px rgba(0, 0, 0, 0.2),
|
|
215
|
-
0px 4px 4px rgba(0, 0, 0, 0.3);
|
|
216
|
-
--shadow-xl: 0px 8px 12px 6px rgba(0, 0, 0, 0.15),
|
|
217
|
-
0px 4px 4px rgba(0, 0, 0, 0.3);
|
|
218
|
-
--shadow-l: 0px 6px 10px 4px rgba(0, 0, 0, 0.15),
|
|
219
|
-
0px 2px 3px rgba(0, 0, 0, 0.3);
|
|
220
|
-
--shadow-m: 0px 4px 8px 3px rgba(0, 0, 0, 0.15),
|
|
221
|
-
0px 1px 3px rgba(0, 0, 0, 0.3);
|
|
222
|
-
--shadow-s: 0px 1px 2px rgba(0, 0, 0, 0.3),
|
|
223
|
-
0px 2px 6px 2px rgba(0, 0, 0, 0.15);
|
|
224
|
-
--shadow-xs: 0px 1px 2px rgba(0, 0, 0, 0.3),
|
|
225
|
-
0px 1px 3px 1px rgba(0, 0, 0, 0.15);
|
|
226
|
-
|
|
227
|
-
--spacer-xxl: 48px;
|
|
228
|
-
--spacer-xl: 32px;
|
|
229
|
-
--spacer-l: 24px;
|
|
230
|
-
--spacer-m: 16px;
|
|
231
|
-
--spacer-s: 12px;
|
|
232
|
-
--spacer-xs: 8px;
|
|
233
|
-
--spacer-xxs: 4px;
|
|
234
|
-
|
|
235
|
-
--radius-xxl: 24px;
|
|
236
|
-
--radius-xl: 16px;
|
|
237
|
-
--radius-l: 12px;
|
|
238
|
-
--radius-m: 8px;
|
|
239
|
-
--radius-s: 4px;
|
|
240
|
-
--radius-xs: 2px;
|
|
241
|
-
--radius-round: 99em;
|
|
242
|
-
--radius-circle: 50%;
|
|
243
|
-
|
|
244
|
-
/* Main */
|
|
245
|
-
|
|
246
|
-
--main-default: 600px;
|
|
247
|
-
--main-large: 800px;
|
|
248
|
-
--main-form: 400px;
|
|
249
|
-
--main-full: 100%;
|
|
250
|
-
|
|
251
|
-
/* Aside */
|
|
252
|
-
|
|
253
|
-
--aside-default: 250px;
|
|
254
|
-
--aside-small: 200px;
|
|
255
|
-
|
|
256
|
-
--transition-short: all 200ms ease;
|
|
257
|
-
--transition-long: all 500ms ease;
|
|
258
|
-
--transition-bezier: all 0.5s cubic-bezier(0.25, 0.75, 0, 0.66);
|
|
259
|
-
--transition-progress-circle: all 1000ms ease-in-out;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
@media screen and (max-width: 1024px) {
|
|
263
|
-
:root {
|
|
264
|
-
--main-default: 90%;
|
|
265
|
-
--main-large: 90%;
|
|
266
|
-
--main-form: 90%;
|
|
267
|
-
--aside-default: 90%;
|
|
268
|
-
--aside-small: 90%;
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
*,
|
|
273
|
-
*:before,
|
|
274
|
-
*:after {
|
|
275
|
-
-webkit-box-sizing: border-box;
|
|
276
|
-
box-sizing: border-box;
|
|
277
|
-
max-width: 100%;
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
*[hidden] {
|
|
281
|
-
display: none !important;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
html,
|
|
285
|
-
body,
|
|
286
|
-
div,
|
|
287
|
-
span,
|
|
288
|
-
applet,
|
|
289
|
-
object,
|
|
290
|
-
iframe,
|
|
291
|
-
h1,
|
|
292
|
-
h2,
|
|
293
|
-
h3,
|
|
294
|
-
h4,
|
|
295
|
-
h5,
|
|
296
|
-
h6,
|
|
297
|
-
p,
|
|
298
|
-
blockquote,
|
|
299
|
-
pre,
|
|
300
|
-
a,
|
|
301
|
-
abbr,
|
|
302
|
-
acronym,
|
|
303
|
-
address,
|
|
304
|
-
big,
|
|
305
|
-
cite,
|
|
306
|
-
code,
|
|
307
|
-
del,
|
|
308
|
-
dfn,
|
|
309
|
-
em,
|
|
310
|
-
img,
|
|
311
|
-
ins,
|
|
312
|
-
kbd,
|
|
313
|
-
q,
|
|
314
|
-
s,
|
|
315
|
-
samp,
|
|
316
|
-
small,
|
|
317
|
-
strike,
|
|
318
|
-
strong,
|
|
319
|
-
sub,
|
|
320
|
-
sup,
|
|
321
|
-
tt,
|
|
322
|
-
var,
|
|
323
|
-
b,
|
|
324
|
-
u,
|
|
325
|
-
i,
|
|
326
|
-
center,
|
|
327
|
-
dl,
|
|
328
|
-
dt,
|
|
329
|
-
dd,
|
|
330
|
-
li,
|
|
331
|
-
fieldset,
|
|
332
|
-
form,
|
|
333
|
-
label,
|
|
334
|
-
legend,
|
|
335
|
-
table,
|
|
336
|
-
caption,
|
|
337
|
-
tbody,
|
|
338
|
-
tfoot,
|
|
339
|
-
thead,
|
|
340
|
-
tr,
|
|
341
|
-
th,
|
|
342
|
-
td,
|
|
343
|
-
article,
|
|
344
|
-
aside,
|
|
345
|
-
canvas,
|
|
346
|
-
details,
|
|
347
|
-
embed,
|
|
348
|
-
figure,
|
|
349
|
-
figcaption,
|
|
350
|
-
footer,
|
|
351
|
-
header,
|
|
352
|
-
hgroup,
|
|
353
|
-
menu,
|
|
354
|
-
nav,
|
|
355
|
-
output,
|
|
356
|
-
ruby,
|
|
357
|
-
section,
|
|
358
|
-
summary,
|
|
359
|
-
time,
|
|
360
|
-
mark,
|
|
361
|
-
audio,
|
|
362
|
-
video,
|
|
363
|
-
hr,
|
|
364
|
-
ul,
|
|
365
|
-
ol,
|
|
366
|
-
dl {
|
|
367
|
-
margin: 0;
|
|
368
|
-
padding: 0;
|
|
369
|
-
border: 0;
|
|
370
|
-
vertical-align: baseline;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
article,
|
|
374
|
-
aside,
|
|
375
|
-
details,
|
|
376
|
-
figcaption,
|
|
377
|
-
figure,
|
|
378
|
-
footer,
|
|
379
|
-
header,
|
|
380
|
-
hgroup,
|
|
381
|
-
menu,
|
|
382
|
-
nav,
|
|
383
|
-
section {
|
|
384
|
-
display: block;
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
body {
|
|
388
|
-
-webkit-font-smoothing: antialiased;
|
|
389
|
-
-moz-osx-font-smoothing: grayscale;
|
|
390
|
-
background-color: var(--color-light-background);
|
|
391
|
-
color: var(--color-light-font);
|
|
392
|
-
font-family: var(--font-family-body);
|
|
393
|
-
font-weight: var(--font-weight-regular);
|
|
394
|
-
line-height: var(--line-height-body);
|
|
395
|
-
position: relative;
|
|
396
|
-
overflow-x: hidden;
|
|
397
|
-
tab-size: 4;
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
body.dark {
|
|
401
|
-
background-color: var(--color-dark-background);
|
|
402
|
-
color: var(--color-dark-font);
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
table {
|
|
406
|
-
border-collapse: collapse;
|
|
407
|
-
border-spacing: 0;
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
button,
|
|
411
|
-
a {
|
|
412
|
-
cursor: pointer;
|
|
413
|
-
-webkit-transition: var(--transition-short);
|
|
414
|
-
-o-transition: var(--transition-short);
|
|
415
|
-
transition: var(--transition-short);
|
|
416
|
-
font-weight: var(--font-weight-black);
|
|
417
|
-
font-size: var(--font-size-body);
|
|
418
|
-
font-family: var(--font-family-body);
|
|
419
|
-
line-height: var(--line-height);
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
button:disabled,
|
|
423
|
-
a:disabled {
|
|
424
|
-
cursor: not-allowed;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
u {
|
|
428
|
-
text-decoration: underline;
|
|
429
|
-
color: currentColor;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
.stop-scrolling {
|
|
433
|
-
height: 100vh;
|
|
434
|
-
overflow: hidden;
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
.text-left {
|
|
438
|
-
text-align: left !important;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
.text-center {
|
|
442
|
-
text-align: center !important;
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
.text-right {
|
|
446
|
-
text-align: right !important;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
.clear-float {
|
|
450
|
-
float: none !important;
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
.hidden {
|
|
454
|
-
position: fixed;
|
|
455
|
-
top: -999em;
|
|
456
|
-
left: -999em;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
.no-marg {
|
|
460
|
-
margin-top: 0 !important;
|
|
461
|
-
margin-bottom: 0 !important;
|
|
462
|
-
margin-right: 0 !important;
|
|
463
|
-
margin-left: 0 !important;
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
.no-marg-top {
|
|
467
|
-
margin-top: 0 !important;
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
.no-marg-bottom {
|
|
471
|
-
margin-bottom: 0 !important;
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
.no-marg-left {
|
|
475
|
-
margin-left: 0 !important;
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
.no-marg-right {
|
|
479
|
-
margin-right: 0 !important;
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
.no-padd {
|
|
483
|
-
padding-top: 0 !important;
|
|
484
|
-
padding-bottom: 0 !important;
|
|
485
|
-
padding-right: 0 !important;
|
|
486
|
-
padding-left: 0 !important;
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
.no-padd-top {
|
|
490
|
-
padding-top: 0 !important;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.no-padd-bottom {
|
|
494
|
-
padding-bottom: 0 !important;
|
|
495
|
-
}
|
|
496
|
-
|
|
497
|
-
.no-padd-left {
|
|
498
|
-
padding-left: 0 !important;
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
.no-padd-right {
|
|
502
|
-
padding-right: 0 !important;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
.no-select {
|
|
506
|
-
-webkit-user-select: none !important;
|
|
507
|
-
-moz-user-select: none !important;
|
|
508
|
-
-ms-user-select: none !important;
|
|
509
|
-
user-select: none !important;
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
.center {
|
|
513
|
-
display: -webkit-box;
|
|
514
|
-
display: -webkit-flex;
|
|
515
|
-
display: -ms-flexbox;
|
|
516
|
-
display: flex;
|
|
517
|
-
-webkit-box-align: center;
|
|
518
|
-
-webkit-align-items: center;
|
|
519
|
-
-ms-flex-align: center;
|
|
520
|
-
align-items: center;
|
|
521
|
-
-webkit-box-pack: center;
|
|
522
|
-
-webkit-justify-content: center;
|
|
523
|
-
-ms-flex-pack: center;
|
|
524
|
-
justify-content: center;
|
|
525
|
-
gap: nowrap;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
.sr-only {
|
|
529
|
-
border: 0 !important;
|
|
530
|
-
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
531
|
-
-webkit-clip-path: inset(50%) !important;
|
|
532
|
-
clip-path: inset(50%) !important;
|
|
533
|
-
height: 1px !important;
|
|
534
|
-
margin: -1px !important;
|
|
535
|
-
overflow: hidden !important;
|
|
536
|
-
padding: 0 !important;
|
|
537
|
-
position: absolute !important;
|
|
538
|
-
width: 1px !important;
|
|
539
|
-
white-space: nowrap !important;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
.smooth {
|
|
543
|
-
scroll-behavior: smooth;
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
.lato-thin {
|
|
547
|
-
font-family: "Lato", sans-serif !important;
|
|
548
|
-
font-weight: 100 !important;
|
|
549
|
-
font-style: normal !important;
|
|
550
|
-
}
|
|
551
|
-
|
|
552
|
-
.lato-light {
|
|
553
|
-
font-family: "Lato", sans-serif !important;
|
|
554
|
-
font-weight: 300 !important;
|
|
555
|
-
font-style: normal !important;
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
.lato-regular {
|
|
559
|
-
font-family: "Lato", sans-serif !important;
|
|
560
|
-
font-weight: 400 !important;
|
|
561
|
-
font-style: normal !important;
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
.lato-bold {
|
|
565
|
-
font-family: "Lato", sans-serif !important;
|
|
566
|
-
font-weight: 700 !important;
|
|
567
|
-
font-style: normal !important;
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.lato-black {
|
|
571
|
-
font-family: "Lato", sans-serif !important;
|
|
572
|
-
font-weight: 900 !important;
|
|
573
|
-
font-style: normal !important;
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
.lato-thin-italic {
|
|
577
|
-
font-family: "Lato", sans-serif !important;
|
|
578
|
-
font-weight: 100 !important;
|
|
579
|
-
font-style: italic !important;
|
|
580
|
-
}
|
|
581
|
-
|
|
582
|
-
.lato-light-italic {
|
|
583
|
-
font-family: "Lato", sans-serif !important;
|
|
584
|
-
font-weight: 300 !important;
|
|
585
|
-
font-style: italic !important;
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
.lato-regular-italic {
|
|
589
|
-
font-family: "Lato", sans-serif !important;
|
|
590
|
-
font-weight: 400 !important;
|
|
591
|
-
font-style: italic !important;
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
.lato-bold-italic {
|
|
595
|
-
font-family: "Lato", sans-serif !important;
|
|
596
|
-
font-weight: 700 !important;
|
|
597
|
-
font-style: italic !important;
|
|
598
|
-
}
|
|
599
|
-
|
|
600
|
-
.lato-black-italic {
|
|
601
|
-
font-family: "Lato", sans-serif !important;
|
|
602
|
-
font-weight: 900 !important;
|
|
603
|
-
font-style: italic !important;
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
.roboto-mono-100 {
|
|
607
|
-
font-family: "Roboto Mono", monospace !important;
|
|
608
|
-
font-optical-sizing: auto !important;
|
|
609
|
-
font-weight: 100 !important;
|
|
610
|
-
font-style: normal !important;
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
.roboto-mono-200 {
|
|
614
|
-
font-family: "Roboto Mono", monospace !important;
|
|
615
|
-
font-optical-sizing: auto !important;
|
|
616
|
-
font-weight: 200 !important;
|
|
617
|
-
font-style: normal !important;
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
.roboto-mono-300 {
|
|
621
|
-
font-family: "Roboto Mono", monospace !important;
|
|
622
|
-
font-optical-sizing: auto !important;
|
|
623
|
-
font-weight: 300 !important;
|
|
624
|
-
font-style: normal !important;
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
.roboto-mono-400 {
|
|
628
|
-
font-family: "Roboto Mono", monospace !important;
|
|
629
|
-
font-optical-sizing: auto !important;
|
|
630
|
-
font-weight: 400 !important;
|
|
631
|
-
font-style: normal !important;
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
.roboto-mono-500 {
|
|
635
|
-
font-family: "Roboto Mono", monospace !important;
|
|
636
|
-
font-optical-sizing: auto !important;
|
|
637
|
-
font-weight: 500 !important;
|
|
638
|
-
font-style: normal !important;
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
.roboto-mono-600 {
|
|
642
|
-
font-family: "Roboto Mono", monospace !important;
|
|
643
|
-
font-optical-sizing: auto !important;
|
|
644
|
-
font-weight: 600 !important;
|
|
645
|
-
font-style: normal !important;
|
|
646
|
-
}
|
|
647
|
-
|
|
648
|
-
.roboto-mono-700 {
|
|
649
|
-
font-family: "Roboto Mono", monospace !important;
|
|
650
|
-
font-optical-sizing: auto !important;
|
|
651
|
-
font-weight: 700 !important;
|
|
652
|
-
font-style: normal !important;
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
.bg-black {
|
|
656
|
-
background-color: var(--color-black) !important;
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
.bg-white {
|
|
660
|
-
background-color: var(--color-white) !important;
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
.bg-gray-50 {
|
|
664
|
-
background-color: var(--color-gray-50) !important;
|
|
665
|
-
}
|
|
666
|
-
|
|
667
|
-
.bg-gray-100 {
|
|
668
|
-
background-color: var(--color-gray-100) !important;
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
.bg-gray-200 {
|
|
672
|
-
background-color: var(--color-gray-200) !important;
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
.bg-gray-300 {
|
|
676
|
-
background-color: var(--color-gray-300) !important;
|
|
677
|
-
}
|
|
678
|
-
|
|
679
|
-
.bg-gray-400 {
|
|
680
|
-
background-color: var(--color-gray-400) !important;
|
|
681
|
-
}
|
|
682
|
-
|
|
683
|
-
.bg-gray-500 {
|
|
684
|
-
background-color: var(--color-gray-500) !important;
|
|
685
|
-
}
|
|
686
|
-
|
|
687
|
-
.bg-gray-600 {
|
|
688
|
-
background-color: var(--color-gray-600) !important;
|
|
689
|
-
}
|
|
690
|
-
|
|
691
|
-
.bg-gray-700 {
|
|
692
|
-
background-color: var(--color-gray-700) !important;
|
|
693
|
-
}
|
|
694
|
-
|
|
695
|
-
.bg-gray-800 {
|
|
696
|
-
background-color: var(--color-gray-800) !important;
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
.bg-gray-900 {
|
|
700
|
-
background-color: var(--color-gray-900) !important;
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
.bg-primary-50 {
|
|
704
|
-
background-color: var(--color-primary-50) !important;
|
|
705
|
-
}
|
|
706
|
-
|
|
707
|
-
.bg-primary-100 {
|
|
708
|
-
background-color: var(--color-primary-100) !important;
|
|
709
|
-
}
|
|
710
|
-
|
|
711
|
-
.bg-primary-200 {
|
|
712
|
-
background-color: var(--color-primary-200) !important;
|
|
713
|
-
}
|
|
714
|
-
|
|
715
|
-
.bg-primary-300 {
|
|
716
|
-
background-color: var(--color-primary-300) !important;
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
.bg-primary-400 {
|
|
720
|
-
background-color: var(--color-primary-400) !important;
|
|
721
|
-
}
|
|
722
|
-
|
|
723
|
-
.bg-primary-500 {
|
|
724
|
-
background-color: var(--color-primary-500) !important;
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
.bg-primary-600 {
|
|
728
|
-
background-color: var(--color-primary-600) !important;
|
|
729
|
-
}
|
|
730
|
-
|
|
731
|
-
.bg-primary-700 {
|
|
732
|
-
background-color: var(--color-primary-700) !important;
|
|
733
|
-
}
|
|
734
|
-
|
|
735
|
-
.bg-primary-800 {
|
|
736
|
-
background-color: var(--color-primary-800) !important;
|
|
737
|
-
}
|
|
738
|
-
|
|
739
|
-
.bg-primary-900 {
|
|
740
|
-
background-color: var(--color-primary-900) !important;
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
.bg-secondary-50 {
|
|
744
|
-
background-color: var(--color-secondary-50) !important;
|
|
745
|
-
}
|
|
746
|
-
|
|
747
|
-
.bg-secondary-100 {
|
|
748
|
-
background-color: var(--color-secondary-100) !important;
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
.bg-secondary-200 {
|
|
752
|
-
background-color: var(--color-secondary-200) !important;
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
.bg-secondary-300 {
|
|
756
|
-
background-color: var(--color-secondary-300) !important;
|
|
757
|
-
}
|
|
758
|
-
|
|
759
|
-
.bg-secondary-400 {
|
|
760
|
-
background-color: var(--color-secondary-400) !important;
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
.bg-secondary-500 {
|
|
764
|
-
background-color: var(--color-secondary-500) !important;
|
|
765
|
-
}
|
|
766
|
-
|
|
767
|
-
.bg-secondary-600 {
|
|
768
|
-
background-color: var(--color-secondary-600) !important;
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
.bg-secondary-700 {
|
|
772
|
-
background-color: var(--color-secondary-700) !important;
|
|
773
|
-
}
|
|
774
|
-
|
|
775
|
-
.bg-secondary-800 {
|
|
776
|
-
background-color: var(--color-secondary-800) !important;
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
.bg-secondary-900 {
|
|
780
|
-
background-color: var(--color-secondary-900) !important;
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
.bg-success-50 {
|
|
784
|
-
background-color: var(--color-success-50) !important;
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
.bg-success-100 {
|
|
788
|
-
background-color: var(--color-success-100) !important;
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
.bg-success-200 {
|
|
792
|
-
background-color: var(--color-success-200) !important;
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
.bg-success-300 {
|
|
796
|
-
background-color: var(--color-success-300) !important;
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
.bg-success-400 {
|
|
800
|
-
background-color: var(--color-success-400) !important;
|
|
801
|
-
}
|
|
802
|
-
|
|
803
|
-
.bg-success-500 {
|
|
804
|
-
background-color: var(--color-success-500) !important;
|
|
805
|
-
}
|
|
806
|
-
|
|
807
|
-
.bg-success-600 {
|
|
808
|
-
background-color: var(--color-success-600) !important;
|
|
809
|
-
}
|
|
810
|
-
|
|
811
|
-
.bg-success-700 {
|
|
812
|
-
background-color: var(--color-success-700) !important;
|
|
813
|
-
}
|
|
814
|
-
|
|
815
|
-
.bg-success-800 {
|
|
816
|
-
background-color: var(--color-success-800) !important;
|
|
817
|
-
}
|
|
818
|
-
|
|
819
|
-
.bg-success-900 {
|
|
820
|
-
background-color: var(--color-success-900) !important;
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
.bg-danger-50 {
|
|
824
|
-
background-color: var(--color-danger-50) !important;
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
.bg-danger-100 {
|
|
828
|
-
background-color: var(--color-danger-100) !important;
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
.bg-danger-200 {
|
|
832
|
-
background-color: var(--color-danger-200) !important;
|
|
833
|
-
}
|
|
834
|
-
|
|
835
|
-
.bg-danger-300 {
|
|
836
|
-
background-color: var(--color-danger-300) !important;
|
|
837
|
-
}
|
|
838
|
-
|
|
839
|
-
.bg-danger-400 {
|
|
840
|
-
background-color: var(--color-danger-400) !important;
|
|
841
|
-
}
|
|
842
|
-
|
|
843
|
-
.bg-danger-500 {
|
|
844
|
-
background-color: var(--color-danger-500) !important;
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
.bg-danger-600 {
|
|
848
|
-
background-color: var(--color-danger-600) !important;
|
|
849
|
-
}
|
|
850
|
-
|
|
851
|
-
.bg-danger-700 {
|
|
852
|
-
background-color: var(--color-danger-700) !important;
|
|
853
|
-
}
|
|
854
|
-
|
|
855
|
-
.bg-danger-800 {
|
|
856
|
-
background-color: var(--color-danger-800) !important;
|
|
857
|
-
}
|
|
858
|
-
|
|
859
|
-
.bg-danger-900 {
|
|
860
|
-
background-color: var(--color-danger-900) !important;
|
|
861
|
-
}
|
|
862
|
-
|
|
863
|
-
.bg-warning-50 {
|
|
864
|
-
background-color: var(--color-warning-50) !important;
|
|
865
|
-
}
|
|
866
|
-
|
|
867
|
-
.bg-warning-100 {
|
|
868
|
-
background-color: var(--color-warning-100) !important;
|
|
869
|
-
}
|
|
870
|
-
|
|
871
|
-
.bg-warning-200 {
|
|
872
|
-
background-color: var(--color-warning-200) !important;
|
|
873
|
-
}
|
|
874
|
-
|
|
875
|
-
.bg-warning-300 {
|
|
876
|
-
background-color: var(--color-warning-300) !important;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
.bg-warning-400 {
|
|
880
|
-
background-color: var(--color-warning-400) !important;
|
|
881
|
-
}
|
|
882
|
-
|
|
883
|
-
.bg-warning-500 {
|
|
884
|
-
background-color: var(--color-warning-500) !important;
|
|
885
|
-
}
|
|
886
|
-
|
|
887
|
-
.bg-warning-600 {
|
|
888
|
-
background-color: var(--color-warning-600) !important;
|
|
889
|
-
}
|
|
890
|
-
|
|
891
|
-
.bg-warning-700 {
|
|
892
|
-
background-color: var(--color-warning-700) !important;
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
.bg-warning-800 {
|
|
896
|
-
background-color: var(--color-warning-800) !important;
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
.bg-warning-900 {
|
|
900
|
-
background-color: var(--color-warning-900) !important;
|
|
901
|
-
}
|
|
902
|
-
|
|
903
|
-
.bg-overlay-black-50 {
|
|
904
|
-
background: var(--overlay-black-50) !important;
|
|
905
|
-
}
|
|
906
|
-
|
|
907
|
-
.bg-overlay-black-80 {
|
|
908
|
-
background: var(--overlay-black-80) !important;
|
|
909
|
-
}
|
|
910
|
-
|
|
911
|
-
.bg-overlay-white-50 {
|
|
912
|
-
background: var(--overlay-white-50) !important;
|
|
913
|
-
}
|
|
914
|
-
|
|
915
|
-
.bg-overlay-white-80 {
|
|
916
|
-
background: var(--overlay-white-80) !important;
|
|
917
|
-
}
|
|
918
|
-
|
|
919
|
-
.bg-overlay-gradient-black {
|
|
920
|
-
background: var(--overlay-gradient-black) !important;
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
.bg-overlay-gradient-white {
|
|
924
|
-
background: var(--overlay-gradient-white) !important;
|
|
925
|
-
}
|
|
926
|
-
|
|
927
|
-
.font-black {
|
|
928
|
-
color: var(--color-black) !important;
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
.font-white {
|
|
932
|
-
color: var(--color-white) !important;
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
.font-gray-50 {
|
|
936
|
-
color: var(--color-gray-50) !important;
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
.font-gray-100 {
|
|
940
|
-
color: var(--color-gray-100) !important;
|
|
941
|
-
}
|
|
942
|
-
|
|
943
|
-
.font-gray-200 {
|
|
944
|
-
color: var(--color-gray-200) !important;
|
|
945
|
-
}
|
|
946
|
-
|
|
947
|
-
.font-gray-300 {
|
|
948
|
-
color: var(--color-gray-300) !important;
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
.font-gray-400 {
|
|
952
|
-
color: var(--color-gray-400) !important;
|
|
953
|
-
}
|
|
954
|
-
|
|
955
|
-
.font-gray-500 {
|
|
956
|
-
color: var(--color-gray-500) !important;
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
.font-gray-600 {
|
|
960
|
-
color: var(--color-gray-600) !important;
|
|
961
|
-
}
|
|
962
|
-
|
|
963
|
-
.font-gray-700 {
|
|
964
|
-
color: var(--color-gray-700) !important;
|
|
965
|
-
}
|
|
966
|
-
|
|
967
|
-
.font-gray-800 {
|
|
968
|
-
color: var(--color-gray-800) !important;
|
|
969
|
-
}
|
|
970
|
-
|
|
971
|
-
.font-gray-900 {
|
|
972
|
-
color: var(--color-gray-900) !important;
|
|
973
|
-
}
|
|
974
|
-
|
|
975
|
-
.font-primary-50 {
|
|
976
|
-
color: var(--color-primary-50) !important;
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
.font-primary-100 {
|
|
980
|
-
color: var(--color-primary-100) !important;
|
|
981
|
-
}
|
|
982
|
-
|
|
983
|
-
.font-primary-200 {
|
|
984
|
-
color: var(--color-primary-200) !important;
|
|
985
|
-
}
|
|
986
|
-
|
|
987
|
-
.font-primary-300 {
|
|
988
|
-
color: var(--color-primary-300) !important;
|
|
989
|
-
}
|
|
990
|
-
|
|
991
|
-
.font-primary-400 {
|
|
992
|
-
color: var(--color-primary-400) !important;
|
|
993
|
-
}
|
|
994
|
-
|
|
995
|
-
.font-primary-500 {
|
|
996
|
-
color: var(--color-primary-500) !important;
|
|
997
|
-
}
|
|
998
|
-
|
|
999
|
-
.font-primary-600 {
|
|
1000
|
-
color: var(--color-primary-600) !important;
|
|
1001
|
-
}
|
|
1002
|
-
|
|
1003
|
-
.font-primary-700 {
|
|
1004
|
-
color: var(--color-primary-700) !important;
|
|
1005
|
-
}
|
|
1006
|
-
|
|
1007
|
-
.font-primary-800 {
|
|
1008
|
-
color: var(--color-primary-800) !important;
|
|
1009
|
-
}
|
|
1010
|
-
|
|
1011
|
-
.font-primary-900 {
|
|
1012
|
-
color: var(--color-primary-900) !important;
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1015
|
-
.font-secondary-50 {
|
|
1016
|
-
color: var(--color-secondary-50) !important;
|
|
1017
|
-
}
|
|
1018
|
-
|
|
1019
|
-
.font-secondary-100 {
|
|
1020
|
-
color: var(--color-secondary-100) !important;
|
|
1021
|
-
}
|
|
1022
|
-
|
|
1023
|
-
.font-secondary-200 {
|
|
1024
|
-
color: var(--color-secondary-200) !important;
|
|
1025
|
-
}
|
|
1026
|
-
|
|
1027
|
-
.font-secondary-300 {
|
|
1028
|
-
color: var(--color-secondary-300) !important;
|
|
1029
|
-
}
|
|
1030
|
-
|
|
1031
|
-
.font-secondary-400 {
|
|
1032
|
-
color: var(--color-secondary-400) !important;
|
|
1033
|
-
}
|
|
1034
|
-
|
|
1035
|
-
.font-secondary-500 {
|
|
1036
|
-
color: var(--color-secondary-500) !important;
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
|
-
.font-secondary-600 {
|
|
1040
|
-
color: var(--color-secondary-600) !important;
|
|
1041
|
-
}
|
|
1042
|
-
|
|
1043
|
-
.font-secondary-700 {
|
|
1044
|
-
color: var(--color-secondary-700) !important;
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
|
-
.font-secondary-800 {
|
|
1048
|
-
color: var(--color-secondary-800) !important;
|
|
1049
|
-
}
|
|
1050
|
-
|
|
1051
|
-
.font-secondary-900 {
|
|
1052
|
-
color: var(--color-secondary-900) !important;
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1055
|
-
.font-success-50 {
|
|
1056
|
-
color: var(--color-success-50) !important;
|
|
1057
|
-
}
|
|
1058
|
-
|
|
1059
|
-
.font-success-100 {
|
|
1060
|
-
color: var(--color-success-100) !important;
|
|
1061
|
-
}
|
|
1062
|
-
|
|
1063
|
-
.font-success-200 {
|
|
1064
|
-
color: var(--color-success-200) !important;
|
|
1065
|
-
}
|
|
1066
|
-
|
|
1067
|
-
.font-success-300 {
|
|
1068
|
-
color: var(--color-success-300) !important;
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1071
|
-
.font-success-400 {
|
|
1072
|
-
color: var(--color-success-400) !important;
|
|
1073
|
-
}
|
|
1074
|
-
|
|
1075
|
-
.font-success-500 {
|
|
1076
|
-
color: var(--color-success-500) !important;
|
|
1077
|
-
}
|
|
1078
|
-
|
|
1079
|
-
.font-success-600 {
|
|
1080
|
-
color: var(--color-success-600) !important;
|
|
1081
|
-
}
|
|
1082
|
-
|
|
1083
|
-
.font-success-700 {
|
|
1084
|
-
color: var(--color-success-700) !important;
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
|
-
.font-success-800 {
|
|
1088
|
-
color: var(--color-success-800) !important;
|
|
1089
|
-
}
|
|
1090
|
-
|
|
1091
|
-
.font-success-900 {
|
|
1092
|
-
color: var(--color-success-900) !important;
|
|
1093
|
-
}
|
|
1094
|
-
|
|
1095
|
-
.font-danger-50 {
|
|
1096
|
-
color: var(--color-danger-50) !important;
|
|
1097
|
-
}
|
|
1098
|
-
|
|
1099
|
-
.font-danger-100 {
|
|
1100
|
-
color: var(--color-danger-100) !important;
|
|
1101
|
-
}
|
|
1102
|
-
|
|
1103
|
-
.font-danger-200 {
|
|
1104
|
-
color: var(--color-danger-200) !important;
|
|
1105
|
-
}
|
|
1106
|
-
|
|
1107
|
-
.font-danger-300 {
|
|
1108
|
-
color: var(--color-danger-300) !important;
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1111
|
-
.font-danger-400 {
|
|
1112
|
-
color: var(--color-danger-400) !important;
|
|
1113
|
-
}
|
|
1114
|
-
|
|
1115
|
-
.font-danger-500 {
|
|
1116
|
-
color: var(--color-danger-500) !important;
|
|
1117
|
-
}
|
|
1118
|
-
|
|
1119
|
-
.font-danger-600 {
|
|
1120
|
-
color: var(--color-danger-600) !important;
|
|
1121
|
-
}
|
|
1122
|
-
|
|
1123
|
-
.font-danger-700 {
|
|
1124
|
-
color: var(--color-danger-700) !important;
|
|
1125
|
-
}
|
|
1126
|
-
|
|
1127
|
-
.font-danger-800 {
|
|
1128
|
-
color: var(--color-danger-800) !important;
|
|
1129
|
-
}
|
|
1130
|
-
|
|
1131
|
-
.font-danger-900 {
|
|
1132
|
-
color: var(--color-danger-900) !important;
|
|
1133
|
-
}
|
|
1134
|
-
|
|
1135
|
-
.font-warning-50 {
|
|
1136
|
-
color: var(--color-warning-50) !important;
|
|
1137
|
-
}
|
|
1138
|
-
|
|
1139
|
-
.font-warning-100 {
|
|
1140
|
-
color: var(--color-warning-100) !important;
|
|
1141
|
-
}
|
|
1142
|
-
|
|
1143
|
-
.font-warning-200 {
|
|
1144
|
-
color: var(--color-warning-200) !important;
|
|
1145
|
-
}
|
|
1146
|
-
|
|
1147
|
-
.font-warning-300 {
|
|
1148
|
-
color: var(--color-warning-300) !important;
|
|
1149
|
-
}
|
|
1150
|
-
|
|
1151
|
-
.font-warning-400 {
|
|
1152
|
-
color: var(--color-warning-400) !important;
|
|
1153
|
-
}
|
|
1154
|
-
|
|
1155
|
-
.font-warning-500 {
|
|
1156
|
-
color: var(--color-warning-500) !important;
|
|
1157
|
-
}
|
|
1158
|
-
|
|
1159
|
-
.font-warning-600 {
|
|
1160
|
-
color: var(--color-warning-600) !important;
|
|
1161
|
-
}
|
|
1162
|
-
|
|
1163
|
-
.font-warning-700 {
|
|
1164
|
-
color: var(--color-warning-700) !important;
|
|
1165
|
-
}
|
|
1166
|
-
|
|
1167
|
-
.font-warning-800 {
|
|
1168
|
-
color: var(--color-warning-800) !important;
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1171
|
-
.font-warning-900 {
|
|
1172
|
-
color: var(--color-warning-900) !important;
|
|
1173
|
-
}
|
|
1174
|
-
|
|
1175
|
-
.border-black {
|
|
1176
|
-
border-color: var(--color-black) !important;
|
|
1177
|
-
}
|
|
1178
|
-
|
|
1179
|
-
.border-white {
|
|
1180
|
-
border-color: var(--color-white) !important;
|
|
1181
|
-
}
|
|
1182
|
-
|
|
1183
|
-
.border-gray-50 {
|
|
1184
|
-
border-color: var(--color-gray-50) !important;
|
|
1185
|
-
}
|
|
1186
|
-
|
|
1187
|
-
.border-gray-100 {
|
|
1188
|
-
border-color: var(--color-gray-100) !important;
|
|
1189
|
-
}
|
|
1190
|
-
|
|
1191
|
-
.border-gray-200 {
|
|
1192
|
-
border-color: var(--color-gray-200) !important;
|
|
1193
|
-
}
|
|
1194
|
-
|
|
1195
|
-
.border-gray-300 {
|
|
1196
|
-
border-color: var(--color-gray-300) !important;
|
|
1197
|
-
}
|
|
1198
|
-
|
|
1199
|
-
.border-gray-400 {
|
|
1200
|
-
border-color: var(--color-gray-400) !important;
|
|
1201
|
-
}
|
|
1202
|
-
|
|
1203
|
-
.border-gray-500 {
|
|
1204
|
-
border-color: var(--color-gray-500) !important;
|
|
1205
|
-
}
|
|
1206
|
-
|
|
1207
|
-
.border-gray-600 {
|
|
1208
|
-
border-color: var(--color-gray-600) !important;
|
|
1209
|
-
}
|
|
1210
|
-
|
|
1211
|
-
.border-gray-700 {
|
|
1212
|
-
border-color: var(--color-gray-700) !important;
|
|
1213
|
-
}
|
|
1214
|
-
|
|
1215
|
-
.border-gray-800 {
|
|
1216
|
-
border-color: var(--color-gray-800) !important;
|
|
1217
|
-
}
|
|
1218
|
-
|
|
1219
|
-
.border-gray-900 {
|
|
1220
|
-
border-color: var(--color-gray-900) !important;
|
|
1221
|
-
}
|
|
1222
|
-
|
|
1223
|
-
.border-primary-50 {
|
|
1224
|
-
border-color: var(--color-primary-50) !important;
|
|
1225
|
-
}
|
|
1226
|
-
|
|
1227
|
-
.border-primary-100 {
|
|
1228
|
-
border-color: var(--color-primary-100) !important;
|
|
1229
|
-
}
|
|
1230
|
-
|
|
1231
|
-
.border-primary-200 {
|
|
1232
|
-
border-color: var(--color-primary-200) !important;
|
|
1233
|
-
}
|
|
1234
|
-
|
|
1235
|
-
.border-primary-300 {
|
|
1236
|
-
border-color: var(--color-primary-300) !important;
|
|
1237
|
-
}
|
|
1238
|
-
|
|
1239
|
-
.border-primary-400 {
|
|
1240
|
-
border-color: var(--color-primary-400) !important;
|
|
1241
|
-
}
|
|
1242
|
-
|
|
1243
|
-
.border-primary-500 {
|
|
1244
|
-
border-color: var(--color-primary-500) !important;
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
|
-
.border-primary-600 {
|
|
1248
|
-
border-color: var(--color-primary-600) !important;
|
|
1249
|
-
}
|
|
1250
|
-
|
|
1251
|
-
.border-primary-700 {
|
|
1252
|
-
border-color: var(--color-primary-700) !important;
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
.border-primary-800 {
|
|
1256
|
-
border-color: var(--color-primary-800) !important;
|
|
1257
|
-
}
|
|
1258
|
-
|
|
1259
|
-
.border-primary-900 {
|
|
1260
|
-
border-color: var(--color-primary-900) !important;
|
|
1261
|
-
}
|
|
1262
|
-
|
|
1263
|
-
.border-secondary-50 {
|
|
1264
|
-
border-color: var(--color-secondary-50) !important;
|
|
1265
|
-
}
|
|
1266
|
-
|
|
1267
|
-
.border-secondary-100 {
|
|
1268
|
-
border-color: var(--color-secondary-100) !important;
|
|
1269
|
-
}
|
|
1270
|
-
|
|
1271
|
-
.border-secondary-200 {
|
|
1272
|
-
border-color: var(--color-secondary-200) !important;
|
|
1273
|
-
}
|
|
1274
|
-
|
|
1275
|
-
.border-secondary-300 {
|
|
1276
|
-
border-color: var(--color-secondary-300) !important;
|
|
1277
|
-
}
|
|
1278
|
-
|
|
1279
|
-
.border-secondary-400 {
|
|
1280
|
-
border-color: var(--color-secondary-400) !important;
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
.border-secondary-500 {
|
|
1284
|
-
border-color: var(--color-secondary-500) !important;
|
|
1285
|
-
}
|
|
1286
|
-
|
|
1287
|
-
.border-secondary-600 {
|
|
1288
|
-
border-color: var(--color-secondary-600) !important;
|
|
1289
|
-
}
|
|
1290
|
-
|
|
1291
|
-
.border-secondary-700 {
|
|
1292
|
-
border-color: var(--color-secondary-700) !important;
|
|
1293
|
-
}
|
|
1294
|
-
|
|
1295
|
-
.border-secondary-800 {
|
|
1296
|
-
border-color: var(--color-secondary-800) !important;
|
|
1297
|
-
}
|
|
1298
|
-
|
|
1299
|
-
.border-secondary-900 {
|
|
1300
|
-
border-color: var(--color-secondary-900) !important;
|
|
1301
|
-
}
|
|
1302
|
-
|
|
1303
|
-
.border-success-50 {
|
|
1304
|
-
border-color: var(--color-success-50) !important;
|
|
1305
|
-
}
|
|
1306
|
-
|
|
1307
|
-
.border-success-100 {
|
|
1308
|
-
border-color: var(--color-success-100) !important;
|
|
1309
|
-
}
|
|
1310
|
-
|
|
1311
|
-
.border-success-200 {
|
|
1312
|
-
border-color: var(--color-success-200) !important;
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
|
-
.border-success-300 {
|
|
1316
|
-
border-color: var(--color-success-300) !important;
|
|
1317
|
-
}
|
|
1318
|
-
|
|
1319
|
-
.border-success-400 {
|
|
1320
|
-
border-color: var(--color-success-400) !important;
|
|
1321
|
-
}
|
|
1322
|
-
|
|
1323
|
-
.border-success-500 {
|
|
1324
|
-
border-color: var(--color-success-500) !important;
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
.border-success-600 {
|
|
1328
|
-
border-color: var(--color-success-600) !important;
|
|
1329
|
-
}
|
|
1330
|
-
|
|
1331
|
-
.border-success-700 {
|
|
1332
|
-
border-color: var(--color-success-700) !important;
|
|
1333
|
-
}
|
|
1334
|
-
|
|
1335
|
-
.border-success-800 {
|
|
1336
|
-
border-color: var(--color-success-800) !important;
|
|
1337
|
-
}
|
|
1338
|
-
|
|
1339
|
-
.border-success-900 {
|
|
1340
|
-
border-color: var(--color-success-900) !important;
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
.border-danger-50 {
|
|
1344
|
-
border-color: var(--color-danger-50) !important;
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
|
-
.border-danger-100 {
|
|
1348
|
-
border-color: var(--color-danger-100) !important;
|
|
1349
|
-
}
|
|
1350
|
-
|
|
1351
|
-
.border-danger-200 {
|
|
1352
|
-
border-color: var(--color-danger-200) !important;
|
|
1353
|
-
}
|
|
1354
|
-
|
|
1355
|
-
.border-danger-300 {
|
|
1356
|
-
border-color: var(--color-danger-300) !important;
|
|
1357
|
-
}
|
|
1358
|
-
|
|
1359
|
-
.border-danger-400 {
|
|
1360
|
-
border-color: var(--color-danger-400) !important;
|
|
1361
|
-
}
|
|
1362
|
-
|
|
1363
|
-
.border-danger-500 {
|
|
1364
|
-
border-color: var(--color-danger-500) !important;
|
|
1365
|
-
}
|
|
1366
|
-
|
|
1367
|
-
.border-danger-600 {
|
|
1368
|
-
border-color: var(--color-danger-600) !important;
|
|
1369
|
-
}
|
|
1370
|
-
|
|
1371
|
-
.border-danger-700 {
|
|
1372
|
-
border-color: var(--color-danger-700) !important;
|
|
1373
|
-
}
|
|
1374
|
-
|
|
1375
|
-
.border-danger-800 {
|
|
1376
|
-
border-color: var(--color-danger-800) !important;
|
|
1377
|
-
}
|
|
1378
|
-
|
|
1379
|
-
.border-danger-900 {
|
|
1380
|
-
border-color: var(--color-danger-900) !important;
|
|
1381
|
-
}
|
|
1382
|
-
|
|
1383
|
-
.border-warning-50 {
|
|
1384
|
-
border-color: var(--color-warning-50) !important;
|
|
1385
|
-
}
|
|
1386
|
-
|
|
1387
|
-
.border-warning-100 {
|
|
1388
|
-
border-color: var(--color-warning-100) !important;
|
|
1389
|
-
}
|
|
1390
|
-
|
|
1391
|
-
.border-warning-200 {
|
|
1392
|
-
border-color: var(--color-warning-200) !important;
|
|
1393
|
-
}
|
|
1394
|
-
|
|
1395
|
-
.border-warning-300 {
|
|
1396
|
-
border-color: var(--color-warning-300) !important;
|
|
1397
|
-
}
|
|
1398
|
-
|
|
1399
|
-
.border-warning-400 {
|
|
1400
|
-
border-color: var(--color-warning-400) !important;
|
|
1401
|
-
}
|
|
1402
|
-
|
|
1403
|
-
.border-warning-500 {
|
|
1404
|
-
border-color: var(--color-warning-500) !important;
|
|
1405
|
-
}
|
|
1406
|
-
|
|
1407
|
-
.border-warning-600 {
|
|
1408
|
-
border-color: var(--color-warning-600) !important;
|
|
1409
|
-
}
|
|
1410
|
-
|
|
1411
|
-
.border-warning-700 {
|
|
1412
|
-
border-color: var(--color-warning-700) !important;
|
|
1413
|
-
}
|
|
1414
|
-
|
|
1415
|
-
.border-warning-800 {
|
|
1416
|
-
border-color: var(--color-warning-800) !important;
|
|
1417
|
-
}
|
|
1418
|
-
|
|
1419
|
-
.border-warning-900 {
|
|
1420
|
-
border-color: var(--color-warning-900) !important;
|
|
1421
|
-
}
|
|
1422
|
-
|
|
1423
|
-
.radius-xxl {
|
|
1424
|
-
-webkit-border-radius: var(--radius-xxl) !important;
|
|
1425
|
-
border-radius: var(--radius-xxl) !important;
|
|
1426
|
-
}
|
|
1427
|
-
|
|
1428
|
-
.radius-xl {
|
|
1429
|
-
-webkit-border-radius: var(--radius-xl) !important;
|
|
1430
|
-
border-radius: var(--radius-xl) !important;
|
|
1431
|
-
}
|
|
1432
|
-
|
|
1433
|
-
.radius-l {
|
|
1434
|
-
-webkit-border-radius: var(--radius-l) !important;
|
|
1435
|
-
border-radius: var(--radius-l) !important;
|
|
1436
|
-
}
|
|
1437
|
-
|
|
1438
|
-
.radius-m {
|
|
1439
|
-
-webkit-border-radius: var(--radius-m) !important;
|
|
1440
|
-
border-radius: var(--radius-m) !important;
|
|
1441
|
-
}
|
|
1442
|
-
|
|
1443
|
-
.radius-s {
|
|
1444
|
-
-webkit-border-radius: var(--radius-s) !important;
|
|
1445
|
-
border-radius: var(--radius-s) !important;
|
|
1446
|
-
}
|
|
1447
|
-
|
|
1448
|
-
.radius-xs {
|
|
1449
|
-
-webkit-border-radius: var(--radius-xs) !important;
|
|
1450
|
-
border-radius: var(--radius-xs) !important;
|
|
1451
|
-
}
|
|
1452
|
-
|
|
1453
|
-
.radius-round {
|
|
1454
|
-
-webkit-border-radius: var(--radius-round) !important;
|
|
1455
|
-
border-radius: var(--radius-round) !important;
|
|
1456
|
-
}
|
|
1457
|
-
|
|
1458
|
-
.radius-circle {
|
|
1459
|
-
-webkit-border-radius: var(--radius-circle) !important;
|
|
1460
|
-
border-radius: var(--radius-circle) !important;
|
|
1461
|
-
}
|
|
1462
|
-
|
|
1463
|
-
.shadow-xxl {
|
|
1464
|
-
-webkit-box-shadow: var(--shadow-xxl) !important;
|
|
1465
|
-
box-shadow: var(--shadow-xxl) !important;
|
|
1466
|
-
}
|
|
1467
|
-
|
|
1468
|
-
.shadow-xl {
|
|
1469
|
-
-webkit-box-shadow: var(--shadow-xl) !important;
|
|
1470
|
-
box-shadow: var(--shadow-xl) !important;
|
|
1471
|
-
}
|
|
1472
|
-
|
|
1473
|
-
.shadow-l {
|
|
1474
|
-
-webkit-box-shadow: var(--shadow-l) !important;
|
|
1475
|
-
box-shadow: var(--shadow-l) !important;
|
|
1476
|
-
}
|
|
1477
|
-
|
|
1478
|
-
.shadow-m {
|
|
1479
|
-
-webkit-box-shadow: var(--shadow-m) !important;
|
|
1480
|
-
box-shadow: var(--shadow-m) !important;
|
|
1481
|
-
}
|
|
1482
|
-
|
|
1483
|
-
.shadow-s {
|
|
1484
|
-
-webkit-box-shadow: var(--shadow-s) !important;
|
|
1485
|
-
box-shadow: var(--shadow-s) !important;
|
|
1486
|
-
}
|
|
1487
|
-
|
|
1488
|
-
.shadow-xs {
|
|
1489
|
-
-webkit-box-shadow: var(--shadow-xs) !important;
|
|
1490
|
-
box-shadow: var(--shadow-xs) !important;
|
|
1491
|
-
}
|