@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
|
@@ -1,860 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"colors": {
|
|
3
|
-
"light": {
|
|
4
|
-
"black": {
|
|
5
|
-
"rgb": "rgb(0, 0, 0)",
|
|
6
|
-
"hex": "#000000",
|
|
7
|
-
"css": "var(--color-black)",
|
|
8
|
-
"variable": "COLORS_LIGHT.BLACK"
|
|
9
|
-
},
|
|
10
|
-
"white": {
|
|
11
|
-
"rgb": "rgb(255, 255, 255)",
|
|
12
|
-
"hex": "#FFFFFF",
|
|
13
|
-
"css": "var(--color-white)",
|
|
14
|
-
"variable": "COLORS_LIGHT.WHITE"
|
|
15
|
-
},
|
|
16
|
-
"gray-50": {
|
|
17
|
-
"rgb": "rgb(248, 248, 248)",
|
|
18
|
-
"hex": "#F8F8F8",
|
|
19
|
-
"css": "var(--color-light-gray-50)",
|
|
20
|
-
"variable": "COLORS_LIGHT.GRAY_50"
|
|
21
|
-
},
|
|
22
|
-
"gray-100": {
|
|
23
|
-
"rgb": "rgb(228, 228, 228)",
|
|
24
|
-
"hex": "#E4E4E4",
|
|
25
|
-
"css": "var(--color-light-gray-100)",
|
|
26
|
-
"variable": "COLORS_LIGHT.GRAY_100"
|
|
27
|
-
},
|
|
28
|
-
"gray-200": {
|
|
29
|
-
"rgb": "rgb(200, 200, 200)",
|
|
30
|
-
"hex": "#C8C8C8",
|
|
31
|
-
"css": "var(--color-light-gray-200)",
|
|
32
|
-
"variable": "COLORS_LIGHT.GRAY_200"
|
|
33
|
-
},
|
|
34
|
-
"gray-300": {
|
|
35
|
-
"rgb": "rgb(173, 173, 173)",
|
|
36
|
-
"hex": "#ADADAD",
|
|
37
|
-
"css": "var(--color-light-gray-300)",
|
|
38
|
-
"variable": "COLORS_LIGHT.GRAY_300"
|
|
39
|
-
},
|
|
40
|
-
"gray-400": {
|
|
41
|
-
"rgb": "rgb(145, 145, 145)",
|
|
42
|
-
"hex": "#919191",
|
|
43
|
-
"css": "var(--color-light-gray-400)",
|
|
44
|
-
"variable": "COLORS_LIGHT.GRAY_400"
|
|
45
|
-
},
|
|
46
|
-
"gray-500": {
|
|
47
|
-
"rgb": "rgb(118, 118, 118)",
|
|
48
|
-
"hex": "#767676",
|
|
49
|
-
"css": "var(--color-light-gray-500)",
|
|
50
|
-
"variable": "COLORS_LIGHT.GRAY_500"
|
|
51
|
-
},
|
|
52
|
-
"gray-600": {
|
|
53
|
-
"rgb": "rgb(94, 94, 94)",
|
|
54
|
-
"hex": "#5E5E5E",
|
|
55
|
-
"css": "var(--color-light-gray-600)",
|
|
56
|
-
"variable": "COLORS_LIGHT.GRAY_600"
|
|
57
|
-
},
|
|
58
|
-
"gray-700": {
|
|
59
|
-
"rgb": "rgb(71, 71, 71)",
|
|
60
|
-
"hex": "#474747",
|
|
61
|
-
"css": "var(--color-light-gray-700)",
|
|
62
|
-
"variable": "COLORS_LIGHT.GRAY_700"
|
|
63
|
-
},
|
|
64
|
-
"gray-800": {
|
|
65
|
-
"rgb": "rgb(47, 47, 47)",
|
|
66
|
-
"hex": "#2F2F2F",
|
|
67
|
-
"css": "var(--color-light-gray-800)",
|
|
68
|
-
"variable": "COLORS_LIGHT.GRAY_800"
|
|
69
|
-
},
|
|
70
|
-
"gray-900": {
|
|
71
|
-
"rgb": "rgb(24, 24, 24)",
|
|
72
|
-
"hex": "#181818",
|
|
73
|
-
"css": "var(--color-light-gray-900)",
|
|
74
|
-
"variable": "COLORS_LIGHT.GRAY_900"
|
|
75
|
-
},
|
|
76
|
-
"primary-50": {
|
|
77
|
-
"rgb": "rgb(244, 246, 247)",
|
|
78
|
-
"hex": "#F4F6F7",
|
|
79
|
-
"css": "var(--color-light-primary-50)",
|
|
80
|
-
"variable": "COLORS_LIGHT.PRIMARY_50"
|
|
81
|
-
},
|
|
82
|
-
"primary-100": {
|
|
83
|
-
"rgb": "rgb(209, 218, 225)",
|
|
84
|
-
"hex": "#D1DAE1",
|
|
85
|
-
"css": "var(--color-light-primary-100)",
|
|
86
|
-
"variable": "COLORS_LIGHT.PRIMARY_100"
|
|
87
|
-
},
|
|
88
|
-
"primary-200": {
|
|
89
|
-
"rgb": "rgb(164, 181, 195)",
|
|
90
|
-
"hex": "#A4B5C3",
|
|
91
|
-
"css": "var(--color-light-primary-200)",
|
|
92
|
-
"variable": "COLORS_LIGHT.PRIMARY_200"
|
|
93
|
-
},
|
|
94
|
-
"primary-300": {
|
|
95
|
-
"rgb": "rgb(118, 143, 164)",
|
|
96
|
-
"hex": "#768FA4",
|
|
97
|
-
"css": "var(--color-light-primary-300)",
|
|
98
|
-
"variable": "COLORS_LIGHT.PRIMARY_300"
|
|
99
|
-
},
|
|
100
|
-
"primary-400": {
|
|
101
|
-
"rgb": "rgb(73, 106, 134)",
|
|
102
|
-
"hex": "#496A86",
|
|
103
|
-
"css": "var(--color-light-primary-400)",
|
|
104
|
-
"variable": "COLORS_LIGHT.PRIMARY_400"
|
|
105
|
-
},
|
|
106
|
-
"primary-500": {
|
|
107
|
-
"rgb": "rgb(27, 69, 104)",
|
|
108
|
-
"hex": "#1B4568",
|
|
109
|
-
"css": "var(--color-light-primary-500)",
|
|
110
|
-
"variable": "COLORS_LIGHT.PRIMARY_500"
|
|
111
|
-
},
|
|
112
|
-
"primary-600": {
|
|
113
|
-
"rgb": "rgb(22, 55, 83)",
|
|
114
|
-
"hex": "#163753",
|
|
115
|
-
"css": "var(--color-light-primary-600)",
|
|
116
|
-
"variable": "COLORS_LIGHT.PRIMARY_600"
|
|
117
|
-
},
|
|
118
|
-
"primary-700": {
|
|
119
|
-
"rgb": "rgb(16, 41, 62)",
|
|
120
|
-
"hex": "#10293E",
|
|
121
|
-
"css": "var(--color-light-primary-700)",
|
|
122
|
-
"variable": "COLORS_LIGHT.PRIMARY_700"
|
|
123
|
-
},
|
|
124
|
-
"primary-800": {
|
|
125
|
-
"rgb": "rgb(11, 28, 42)",
|
|
126
|
-
"hex": "#0B1C2A",
|
|
127
|
-
"css": "var(--color-light-primary-800)",
|
|
128
|
-
"variable": "COLORS_LIGHT.PRIMARY_800"
|
|
129
|
-
},
|
|
130
|
-
"primary-900": {
|
|
131
|
-
"rgb": "rgb(5, 14, 21)",
|
|
132
|
-
"hex": "#050E15",
|
|
133
|
-
"css": "var(--color-light-primary-900)",
|
|
134
|
-
"variable": "COLORS_LIGHT.PRIMARY_900"
|
|
135
|
-
},
|
|
136
|
-
"secondary-50": {
|
|
137
|
-
"rgb": "rgb(244, 248, 253)",
|
|
138
|
-
"hex": "#F4F8FD",
|
|
139
|
-
"css": "var(--color-light-secondary-50)",
|
|
140
|
-
"variable": "COLORS_LIGHT.SECONDARY_50"
|
|
141
|
-
},
|
|
142
|
-
"secondary-100": {
|
|
143
|
-
"rgb": "rgb(212, 226, 246)",
|
|
144
|
-
"hex": "#D4E2F6",
|
|
145
|
-
"css": "var(--color-light-secondary-100)",
|
|
146
|
-
"variable": "COLORS_LIGHT.SECONDARY_100"
|
|
147
|
-
},
|
|
148
|
-
"secondary-200": {
|
|
149
|
-
"rgb": "rgb(168, 197, 237)",
|
|
150
|
-
"hex": "#A8C5ED",
|
|
151
|
-
"css": "var(--color-light-secondary-200)",
|
|
152
|
-
"variable": "COLORS_LIGHT.SECONDARY_200"
|
|
153
|
-
},
|
|
154
|
-
"secondary-300": {
|
|
155
|
-
"rgb": "rgb(125, 167, 229)",
|
|
156
|
-
"hex": "#7DA7E5",
|
|
157
|
-
"css": "var(--color-light-secondary-300)",
|
|
158
|
-
"variable": "COLORS_LIGHT.SECONDARY_300"
|
|
159
|
-
},
|
|
160
|
-
"secondary-400": {
|
|
161
|
-
"rgb": "rgb(81, 138, 220)",
|
|
162
|
-
"hex": "#518ADC",
|
|
163
|
-
"css": "var(--color-light-secondary-400)",
|
|
164
|
-
"variable": "COLORS_LIGHT.SECONDARY_400"
|
|
165
|
-
},
|
|
166
|
-
"secondary-500": {
|
|
167
|
-
"rgb": "rgb(38, 109, 211)",
|
|
168
|
-
"hex": "#266DD3",
|
|
169
|
-
"css": "var(--color-light-secondary-500)",
|
|
170
|
-
"variable": "COLORS_LIGHT.SECONDARY_500"
|
|
171
|
-
},
|
|
172
|
-
"secondary-600": {
|
|
173
|
-
"rgb": "rgb(30, 87, 169)",
|
|
174
|
-
"hex": "#1E57A9",
|
|
175
|
-
"css": "var(--color-light-secondary-600)",
|
|
176
|
-
"variable": "COLORS_LIGHT.SECONDARY_600"
|
|
177
|
-
},
|
|
178
|
-
"secondary-700": {
|
|
179
|
-
"rgb": "rgb(23, 65, 127)",
|
|
180
|
-
"hex": "#17417F",
|
|
181
|
-
"css": "var(--color-light-secondary-700)",
|
|
182
|
-
"variable": "COLORS_LIGHT.SECONDARY_700"
|
|
183
|
-
},
|
|
184
|
-
"secondary-800": {
|
|
185
|
-
"rgb": "rgb(15, 44, 84)",
|
|
186
|
-
"hex": "#0F2C54",
|
|
187
|
-
"css": "var(--color-light-secondary-800)",
|
|
188
|
-
"variable": "COLORS_LIGHT.SECONDARY_800"
|
|
189
|
-
},
|
|
190
|
-
"secondary-900": {
|
|
191
|
-
"rgb": "rgb(8, 22, 42)",
|
|
192
|
-
"hex": "#08162A",
|
|
193
|
-
"css": "var(--color-light-secondary-900)",
|
|
194
|
-
"variable": "COLORS_LIGHT.SECONDARY_900"
|
|
195
|
-
},
|
|
196
|
-
"success-50": {
|
|
197
|
-
"rgb": "rgb(243, 249, 246)",
|
|
198
|
-
"hex": "#F3F9F6",
|
|
199
|
-
"css": "var(--color-light-success-50)",
|
|
200
|
-
"variable": "COLORS_LIGHT.SUCCESS_50"
|
|
201
|
-
},
|
|
202
|
-
"success-100": {
|
|
203
|
-
"rgb": "rgb(206, 230, 219)",
|
|
204
|
-
"hex": "#CEE6DB",
|
|
205
|
-
"css": "var(--color-light-success-100)",
|
|
206
|
-
"variable": "COLORS_LIGHT.SUCCESS_100"
|
|
207
|
-
},
|
|
208
|
-
"success-200": {
|
|
209
|
-
"rgb": "rgb(157, 205, 183)",
|
|
210
|
-
"hex": "#9DCDB7",
|
|
211
|
-
"css": "var(--color-light-success-200)",
|
|
212
|
-
"variable": "COLORS_LIGHT.SUCCESS_200"
|
|
213
|
-
},
|
|
214
|
-
"success-300": {
|
|
215
|
-
"rgb": "rgb(107, 179, 146)",
|
|
216
|
-
"hex": "#6BB392",
|
|
217
|
-
"css": "var(--color-light-success-300)",
|
|
218
|
-
"variable": "COLORS_LIGHT.SUCCESS_300"
|
|
219
|
-
},
|
|
220
|
-
"success-400": {
|
|
221
|
-
"rgb": "rgb(58, 154, 110)",
|
|
222
|
-
"hex": "#3A9A6E",
|
|
223
|
-
"css": "var(--color-light-success-400)",
|
|
224
|
-
"variable": "COLORS_LIGHT.SUCCESS_400"
|
|
225
|
-
},
|
|
226
|
-
"success-500": {
|
|
227
|
-
"rgb": "rgb(9, 129, 74)",
|
|
228
|
-
"hex": "#09814A",
|
|
229
|
-
"css": "var(--color-light-success-500)",
|
|
230
|
-
"variable": "COLORS_LIGHT.SUCCESS_500"
|
|
231
|
-
},
|
|
232
|
-
"success-600": {
|
|
233
|
-
"rgb": "rgb(7, 103, 59)",
|
|
234
|
-
"hex": "#07673B",
|
|
235
|
-
"css": "var(--color-light-success-600)",
|
|
236
|
-
"variable": "COLORS_LIGHT.SUCCESS_600"
|
|
237
|
-
},
|
|
238
|
-
"success-700": {
|
|
239
|
-
"rgb": "rgb(5, 77, 44)",
|
|
240
|
-
"hex": "#054D2C",
|
|
241
|
-
"css": "var(--color-light-success-700)",
|
|
242
|
-
"variable": "COLORS_LIGHT.SUCCESS_700"
|
|
243
|
-
},
|
|
244
|
-
"success-800": {
|
|
245
|
-
"rgb": "rgb(4, 52, 30)",
|
|
246
|
-
"hex": "#04341E",
|
|
247
|
-
"css": "var(--color-light-success-800)",
|
|
248
|
-
"variable": "COLORS_LIGHT.SUCCESS_800"
|
|
249
|
-
},
|
|
250
|
-
"success-900": {
|
|
251
|
-
"rgb": "rgb(2, 26, 15)",
|
|
252
|
-
"hex": "#021A0F",
|
|
253
|
-
"css": "var(--color-light-success-900)",
|
|
254
|
-
"variable": "COLORS_LIGHT.SUCCESS_900"
|
|
255
|
-
},
|
|
256
|
-
"danger-50": {
|
|
257
|
-
"rgb": "rgb(251, 242, 244)",
|
|
258
|
-
"hex": "#FBF2F4",
|
|
259
|
-
"css": "var(--color-light-danger-50)",
|
|
260
|
-
"variable": "COLORS_LIGHT.DANGER_50"
|
|
261
|
-
},
|
|
262
|
-
"danger-100": {
|
|
263
|
-
"rgb": "rgb(240, 204, 209)",
|
|
264
|
-
"hex": "#F0CCD1",
|
|
265
|
-
"css": "var(--color-light-danger-100)",
|
|
266
|
-
"variable": "COLORS_LIGHT.DANGER_100"
|
|
267
|
-
},
|
|
268
|
-
"danger-200": {
|
|
269
|
-
"rgb": "rgb(225, 153, 164)",
|
|
270
|
-
"hex": "#E199A4",
|
|
271
|
-
"css": "var(--color-light-danger-200)",
|
|
272
|
-
"variable": "COLORS_LIGHT.DANGER_200"
|
|
273
|
-
},
|
|
274
|
-
"danger-300": {
|
|
275
|
-
"rgb": "rgb(209, 102, 118)",
|
|
276
|
-
"hex": "#D16676",
|
|
277
|
-
"css": "var(--color-light-danger-300)",
|
|
278
|
-
"variable": "COLORS_LIGHT.DANGER_300"
|
|
279
|
-
},
|
|
280
|
-
"danger-400": {
|
|
281
|
-
"rgb": "rgb(194, 51, 73)",
|
|
282
|
-
"hex": "#C23349",
|
|
283
|
-
"css": "var(--color-light-danger-400)",
|
|
284
|
-
"variable": "COLORS_LIGHT.DANGER_400"
|
|
285
|
-
},
|
|
286
|
-
"danger-500": {
|
|
287
|
-
"rgb": "rgb(179, 0, 27)",
|
|
288
|
-
"hex": "#B3001B",
|
|
289
|
-
"css": "var(--color-light-danger-500)",
|
|
290
|
-
"variable": "COLORS_LIGHT.DANGER_500"
|
|
291
|
-
},
|
|
292
|
-
"danger-600": {
|
|
293
|
-
"rgb": "rgb(143, 0, 22)",
|
|
294
|
-
"hex": "#8F0016",
|
|
295
|
-
"css": "var(--color-light-danger-600)",
|
|
296
|
-
"variable": "COLORS_LIGHT.DANGER_600"
|
|
297
|
-
},
|
|
298
|
-
"danger-700": {
|
|
299
|
-
"rgb": "rgb(107, 0, 16)",
|
|
300
|
-
"hex": "#6B0010",
|
|
301
|
-
"css": "var(--color-light-danger-700)",
|
|
302
|
-
"variable": "COLORS_LIGHT.DANGER_700"
|
|
303
|
-
},
|
|
304
|
-
"danger-800": {
|
|
305
|
-
"rgb": "rgb(72, 0, 11)",
|
|
306
|
-
"hex": "#48000B",
|
|
307
|
-
"css": "var(--color-light-danger-800)",
|
|
308
|
-
"variable": "COLORS_LIGHT.DANGER_800"
|
|
309
|
-
},
|
|
310
|
-
"danger-900": {
|
|
311
|
-
"rgb": "rgb(36, 0, 5)",
|
|
312
|
-
"hex": "#240005",
|
|
313
|
-
"css": "var(--color-light-danger-900)",
|
|
314
|
-
"variable": "COLORS_LIGHT.DANGER_900"
|
|
315
|
-
},
|
|
316
|
-
"warning-50": {
|
|
317
|
-
"rgb": "rgb(252, 246, 242)",
|
|
318
|
-
"hex": "#FCF6F2",
|
|
319
|
-
"css": "var(--color-light-warning-50)",
|
|
320
|
-
"variable": "COLORS_LIGHT.WARNING_50"
|
|
321
|
-
},
|
|
322
|
-
"warning-100": {
|
|
323
|
-
"rgb": "rgb(243, 219, 204)",
|
|
324
|
-
"hex": "#F3DBCC",
|
|
325
|
-
"css": "var(--color-light-warning-100)",
|
|
326
|
-
"variable": "COLORS_LIGHT.WARNING_100"
|
|
327
|
-
},
|
|
328
|
-
"warning-200": {
|
|
329
|
-
"rgb": "rgb(231, 182, 153)",
|
|
330
|
-
"hex": "#E7B699",
|
|
331
|
-
"css": "var(--color-light-warning-200)",
|
|
332
|
-
"variable": "COLORS_LIGHT.WARNING_200"
|
|
333
|
-
},
|
|
334
|
-
"warning-300": {
|
|
335
|
-
"rgb": "rgb(220, 146, 102)",
|
|
336
|
-
"hex": "#DC9266",
|
|
337
|
-
"css": "var(--color-light-warning-300)",
|
|
338
|
-
"variable": "COLORS_LIGHT.WARNING_300"
|
|
339
|
-
},
|
|
340
|
-
"warning-400": {
|
|
341
|
-
"rgb": "rgb(208, 109, 51)",
|
|
342
|
-
"hex": "#D06D33",
|
|
343
|
-
"css": "var(--color-light-warning-400)",
|
|
344
|
-
"variable": "COLORS_LIGHT.WARNING_400"
|
|
345
|
-
},
|
|
346
|
-
"warning-500": {
|
|
347
|
-
"rgb": "rgb(196, 73, 0)",
|
|
348
|
-
"hex": "#C44900",
|
|
349
|
-
"css": "var(--color-light-warning-500)",
|
|
350
|
-
"variable": "COLORS_LIGHT.WARNING_500"
|
|
351
|
-
},
|
|
352
|
-
"warning-600": {
|
|
353
|
-
"rgb": "rgb(157, 58, 0)",
|
|
354
|
-
"hex": "#9D3A00",
|
|
355
|
-
"css": "var(--color-light-warning-600)",
|
|
356
|
-
"variable": "COLORS_LIGHT.WARNING_600"
|
|
357
|
-
},
|
|
358
|
-
"warning-700": {
|
|
359
|
-
"rgb": "rgb(118, 44, 0)",
|
|
360
|
-
"hex": "#762C00",
|
|
361
|
-
"css": "var(--color-light-warning-700)",
|
|
362
|
-
"variable": "COLORS_LIGHT.WARNING_700"
|
|
363
|
-
},
|
|
364
|
-
"warning-800": {
|
|
365
|
-
"rgb": "rgb(78, 29, 0)",
|
|
366
|
-
"hex": "#4E1D00",
|
|
367
|
-
"css": "var(--color-light-warning-800)",
|
|
368
|
-
"variable": "COLORS_LIGHT.WARNING_800"
|
|
369
|
-
},
|
|
370
|
-
"warning-900": {
|
|
371
|
-
"rgb": "rgb(39, 15, 0)",
|
|
372
|
-
"hex": "#270F00",
|
|
373
|
-
"css": "var(--color-light-warning-900)",
|
|
374
|
-
"variable": "COLORS_LIGHT.WARNING_900"
|
|
375
|
-
},
|
|
376
|
-
"background": {
|
|
377
|
-
"rgb": "rgb(255, 255, 255)",
|
|
378
|
-
"hex": "#FFFFFF",
|
|
379
|
-
"css": "var(--color-light-background)",
|
|
380
|
-
"variable": "COLORS_LIGHT.BACKGROUND"
|
|
381
|
-
},
|
|
382
|
-
"font": {
|
|
383
|
-
"rgb": "rgb(0, 0, 0)",
|
|
384
|
-
"hex": "#000000",
|
|
385
|
-
"css": "var(--color-light-font)",
|
|
386
|
-
"variable": "COLORS_LIGHT.FONT"
|
|
387
|
-
},
|
|
388
|
-
"transparent": { "rgb": "rgba(0, 0, 0, 0)" }
|
|
389
|
-
},
|
|
390
|
-
"dark": {
|
|
391
|
-
"black": {
|
|
392
|
-
"rgb": "rgb(0, 0, 0)",
|
|
393
|
-
"hex": "#000000",
|
|
394
|
-
"css": "var(--color-black)",
|
|
395
|
-
"variable": "COLORS_LIGHT.BLACK"
|
|
396
|
-
},
|
|
397
|
-
"white": {
|
|
398
|
-
"rgb": "rgb(255, 255, 255)",
|
|
399
|
-
"hex": "#FFFFFF",
|
|
400
|
-
"css": "var(--color-white)",
|
|
401
|
-
"variable": "COLORS_LIGHT.WHITE"
|
|
402
|
-
},
|
|
403
|
-
"primary-50": {
|
|
404
|
-
"rgb": " rgb(0, 0, 0)",
|
|
405
|
-
"hex": "#000000",
|
|
406
|
-
"css": "--color-dark-primary-50",
|
|
407
|
-
"variable": "COLORS_DARK.PRIMARY_50"
|
|
408
|
-
},
|
|
409
|
-
"primary-100": {
|
|
410
|
-
"rgb": " rgb(4, 5, 6)",
|
|
411
|
-
"hex": "#040506",
|
|
412
|
-
"css": "--color-dark-primary-100",
|
|
413
|
-
"variable": "COLORS_DARK.PRIMARY_100"
|
|
414
|
-
},
|
|
415
|
-
"primary-200": {
|
|
416
|
-
"rgb": " rgb(13, 14, 18)",
|
|
417
|
-
"hex": "#0d0e12",
|
|
418
|
-
"css": "--color-dark-primary-200",
|
|
419
|
-
"variable": "COLORS_DARK.PRIMARY_200"
|
|
420
|
-
},
|
|
421
|
-
"primary-300": {
|
|
422
|
-
"rgb": " rgb(21, 24, 30)",
|
|
423
|
-
"hex": "#15181e",
|
|
424
|
-
"css": "--color-dark-primary-300",
|
|
425
|
-
"variable": "COLORS_DARK.PRIMARY_300"
|
|
426
|
-
},
|
|
427
|
-
"primary-400": {
|
|
428
|
-
"rgb": " rgb(29, 34, 42)",
|
|
429
|
-
"hex": "#1d222a",
|
|
430
|
-
"css": "--color-dark-primary-400",
|
|
431
|
-
"variable": "COLORS_DARK.PRIMARY_400"
|
|
432
|
-
},
|
|
433
|
-
"primary-500": {
|
|
434
|
-
"rgb": " rgb(38, 44, 54)",
|
|
435
|
-
"hex": "#262c36",
|
|
436
|
-
"css": "--color-dark-primary-500",
|
|
437
|
-
"variable": "COLORS_DARK.PRIMARY_500"
|
|
438
|
-
},
|
|
439
|
-
"primary-600": {
|
|
440
|
-
"rgb": " rgb(46, 54, 66)",
|
|
441
|
-
"hex": "#2e3642",
|
|
442
|
-
"css": "--color-dark-primary-600",
|
|
443
|
-
"variable": "COLORS_DARK.PRIMARY_600"
|
|
444
|
-
},
|
|
445
|
-
"primary-700": {
|
|
446
|
-
"rgb": " rgb(54, 64, 78)",
|
|
447
|
-
"hex": "#36404e",
|
|
448
|
-
"css": "--color-dark-primary-700",
|
|
449
|
-
"variable": "COLORS_DARK.PRIMARY_700"
|
|
450
|
-
},
|
|
451
|
-
"primary-800": {
|
|
452
|
-
"rgb": " rgb(63, 74, 90)",
|
|
453
|
-
"hex": "#3f4a5a",
|
|
454
|
-
"css": "--color-dark-primary-800",
|
|
455
|
-
"variable": "COLORS_DARK.PRIMARY_800"
|
|
456
|
-
},
|
|
457
|
-
"primary-900": {
|
|
458
|
-
"rgb": " rgb(71, 84, 102)",
|
|
459
|
-
"hex": "#475466",
|
|
460
|
-
"css": "--color-dark-primary-900",
|
|
461
|
-
"variable": "COLORS_DARK.PRIMARY_900"
|
|
462
|
-
},
|
|
463
|
-
"secondary-50": {
|
|
464
|
-
"rgb": " rgb(16, 17, 19)",
|
|
465
|
-
"hex": "#101113",
|
|
466
|
-
"css": "--color-dark-secondary-50",
|
|
467
|
-
"variable": "COLORS_DARK.SECONDARY_50"
|
|
468
|
-
},
|
|
469
|
-
"secondary-100": {
|
|
470
|
-
"rgb": " rgb(21, 22, 25)",
|
|
471
|
-
"hex": "#151619",
|
|
472
|
-
"css": "--color-dark-secondary-100",
|
|
473
|
-
"variable": "COLORS_DARK.SECONDARY_100"
|
|
474
|
-
},
|
|
475
|
-
"secondary-200": {
|
|
476
|
-
"rgb": " rgb(30, 32, 37)",
|
|
477
|
-
"hex": "#1e2025",
|
|
478
|
-
"css": "--color-dark-secondary-200",
|
|
479
|
-
"variable": "COLORS_DARK.SECONDARY_200"
|
|
480
|
-
},
|
|
481
|
-
"secondary-300": {
|
|
482
|
-
"rgb": " rgb(39, 42, 48)",
|
|
483
|
-
"hex": "#272a30",
|
|
484
|
-
"css": "--color-dark-secondary-300",
|
|
485
|
-
"variable": "COLORS_DARK.SECONDARY_300"
|
|
486
|
-
},
|
|
487
|
-
"secondary-400": {
|
|
488
|
-
"rgb": " rgb(48, 52, 59)",
|
|
489
|
-
"hex": "#30343b",
|
|
490
|
-
"css": "--color-dark-secondary-400",
|
|
491
|
-
"variable": "COLORS_DARK.SECONDARY_400"
|
|
492
|
-
},
|
|
493
|
-
"secondary-500": {
|
|
494
|
-
"rgb": " rgb(57, 62, 70)",
|
|
495
|
-
"hex": "#393e46",
|
|
496
|
-
"css": "--color-dark-secondary-500",
|
|
497
|
-
"variable": "COLORS_DARK.SECONDARY_500"
|
|
498
|
-
},
|
|
499
|
-
"secondary-600": {
|
|
500
|
-
"rgb": " rgb(66, 72, 82)",
|
|
501
|
-
"hex": "#424852",
|
|
502
|
-
"css": "--color-dark-secondary-600",
|
|
503
|
-
"variable": "COLORS_DARK.SECONDARY_600"
|
|
504
|
-
},
|
|
505
|
-
"secondary-700": {
|
|
506
|
-
"rgb": " rgb(75, 82, 93)",
|
|
507
|
-
"hex": "#4b525d",
|
|
508
|
-
"css": "--color-dark-secondary-700",
|
|
509
|
-
"variable": "COLORS_DARK.SECONDARY_700"
|
|
510
|
-
},
|
|
511
|
-
"secondary-800": {
|
|
512
|
-
"rgb": " rgb(84, 92, 104)",
|
|
513
|
-
"hex": "#545c68",
|
|
514
|
-
"css": "--color-dark-secondary-800",
|
|
515
|
-
"variable": "COLORS_DARK.SECONDARY_800"
|
|
516
|
-
},
|
|
517
|
-
"secondary-900": {
|
|
518
|
-
"rgb": " rgb(93, 102, 116)",
|
|
519
|
-
"hex": "#5d6674",
|
|
520
|
-
"css": "--color-dark-secondary-900",
|
|
521
|
-
"variable": "COLORS_DARK.SECONDARY_900"
|
|
522
|
-
},
|
|
523
|
-
"success-50": {
|
|
524
|
-
"rgb": " rgb(1, 45, 34)",
|
|
525
|
-
"hex": "#012d22",
|
|
526
|
-
"css": "--color-dark-success-50",
|
|
527
|
-
"variable": "COLORS_DARK.SUCCESS_50"
|
|
528
|
-
},
|
|
529
|
-
"success-100": {
|
|
530
|
-
"rgb": " rgb(2, 69, 52)",
|
|
531
|
-
"hex": "#024534",
|
|
532
|
-
"css": "--color-dark-success-100",
|
|
533
|
-
"variable": "COLORS_DARK.SUCCESS_100"
|
|
534
|
-
},
|
|
535
|
-
"success-200": {
|
|
536
|
-
"rgb": " rgb(3, 94, 70)",
|
|
537
|
-
"hex": "#035e46",
|
|
538
|
-
"css": "--color-dark-success-200",
|
|
539
|
-
"variable": "COLORS_DARK.SUCCESS_200"
|
|
540
|
-
},
|
|
541
|
-
"success-300": {
|
|
542
|
-
"rgb": " rgb(4, 118, 88)",
|
|
543
|
-
"hex": "#047658",
|
|
544
|
-
"css": "--color-dark-success-300",
|
|
545
|
-
"variable": "COLORS_DARK.SUCCESS_300"
|
|
546
|
-
},
|
|
547
|
-
"success-400": {
|
|
548
|
-
"rgb": " rgb(5, 143, 107)",
|
|
549
|
-
"hex": "#058f6b",
|
|
550
|
-
"css": "--color-dark-success-400",
|
|
551
|
-
"variable": "COLORS_DARK.SUCCESS_400"
|
|
552
|
-
},
|
|
553
|
-
"success-500": {
|
|
554
|
-
"rgb": " rgb(6, 167, 125)",
|
|
555
|
-
"hex": "#06a77d",
|
|
556
|
-
"css": "--color-dark-success-500",
|
|
557
|
-
"variable": "COLORS_DARK.SUCCESS_500"
|
|
558
|
-
},
|
|
559
|
-
"success-600": {
|
|
560
|
-
"rgb": " rgb(7, 192, 144)",
|
|
561
|
-
"hex": "#07c090",
|
|
562
|
-
"css": "--color-dark-success-600",
|
|
563
|
-
"variable": "COLORS_DARK.SUCCESS_600"
|
|
564
|
-
},
|
|
565
|
-
"success-700": {
|
|
566
|
-
"rgb": " rgb(8, 217, 162)",
|
|
567
|
-
"hex": "#08d9a2",
|
|
568
|
-
"css": "--color-dark-success-700",
|
|
569
|
-
"variable": "COLORS_DARK.SUCCESS_700"
|
|
570
|
-
},
|
|
571
|
-
"success-800": {
|
|
572
|
-
"rgb": " rgb(9, 241, 181)",
|
|
573
|
-
"hex": "#09f1b5",
|
|
574
|
-
"css": "--color-dark-success-800",
|
|
575
|
-
"variable": "COLORS_DARK.SUCCESS_800"
|
|
576
|
-
},
|
|
577
|
-
"success-900": {
|
|
578
|
-
"rgb": " rgb(29, 247, 190)",
|
|
579
|
-
"hex": "#1df7be",
|
|
580
|
-
"css": "--color-dark-success-900",
|
|
581
|
-
"variable": "COLORS_DARK.SUCCESS_900"
|
|
582
|
-
},
|
|
583
|
-
"danger-50": {
|
|
584
|
-
"rgb": " rgb(95, 33, 33)",
|
|
585
|
-
"hex": "#5f2121",
|
|
586
|
-
"css": "--color-dark-danger-50",
|
|
587
|
-
"variable": "COLORS_DARK.DANGER_50"
|
|
588
|
-
},
|
|
589
|
-
"danger-100": {
|
|
590
|
-
"rgb": " rgb(114, 39, 39)",
|
|
591
|
-
"hex": "#722727",
|
|
592
|
-
"css": "--color-dark-danger-100",
|
|
593
|
-
"variable": "COLORS_DARK.DANGER_100"
|
|
594
|
-
},
|
|
595
|
-
"danger-200": {
|
|
596
|
-
"rgb": " rgb(133, 46, 45)",
|
|
597
|
-
"hex": "#852e2d",
|
|
598
|
-
"css": "--color-dark-danger-200",
|
|
599
|
-
"variable": "COLORS_DARK.DANGER_200"
|
|
600
|
-
},
|
|
601
|
-
"danger-300": {
|
|
602
|
-
"rgb": " rgb(152, 53, 52)",
|
|
603
|
-
"hex": "#983534",
|
|
604
|
-
"css": "--color-dark-danger-300",
|
|
605
|
-
"variable": "COLORS_DARK.DANGER_300"
|
|
606
|
-
},
|
|
607
|
-
"danger-400": {
|
|
608
|
-
"rgb": " rgb(171, 59, 58)",
|
|
609
|
-
"hex": "#ab3b3a",
|
|
610
|
-
"css": "--color-dark-danger-400",
|
|
611
|
-
"variable": "COLORS_DARK.DANGER_400"
|
|
612
|
-
},
|
|
613
|
-
"danger-500": {
|
|
614
|
-
"rgb": " rgb(191, 67, 66)",
|
|
615
|
-
"hex": "#bf4342",
|
|
616
|
-
"css": "--color-dark-danger-500",
|
|
617
|
-
"variable": "COLORS_DARK.DANGER_500"
|
|
618
|
-
},
|
|
619
|
-
"danger-600": {
|
|
620
|
-
"rgb": " rgb(197, 84, 84)",
|
|
621
|
-
"hex": "#c55454",
|
|
622
|
-
"css": "--color-dark-danger-600",
|
|
623
|
-
"variable": "COLORS_DARK.DANGER_600"
|
|
624
|
-
},
|
|
625
|
-
"danger-700": {
|
|
626
|
-
"rgb": " rgb(203, 103, 103)",
|
|
627
|
-
"hex": "#cb6767",
|
|
628
|
-
"css": "--color-dark-danger-700",
|
|
629
|
-
"variable": "COLORS_DARK.DANGER_700"
|
|
630
|
-
},
|
|
631
|
-
"danger-800": {
|
|
632
|
-
"rgb": " rgb(209, 122, 122)",
|
|
633
|
-
"hex": "#d17a7a",
|
|
634
|
-
"css": "--color-dark-danger-800",
|
|
635
|
-
"variable": "COLORS_DARK.DANGER_800"
|
|
636
|
-
},
|
|
637
|
-
"danger-900": {
|
|
638
|
-
"rgb": " rgb(216, 141, 141)",
|
|
639
|
-
"hex": "#d88d8d",
|
|
640
|
-
"css": "--color-dark-danger-900",
|
|
641
|
-
"variable": "COLORS_DARK.DANGER_900"
|
|
642
|
-
},
|
|
643
|
-
"warning-50": {
|
|
644
|
-
"rgb": " rgb(64, 47, 2)",
|
|
645
|
-
"hex": "#402f02",
|
|
646
|
-
"css": "--color-dark-warning-50",
|
|
647
|
-
"variable": "COLORS_DARK.WARNING_50"
|
|
648
|
-
},
|
|
649
|
-
"warning-100": {
|
|
650
|
-
"rgb": " rgb(114, 84, 4)",
|
|
651
|
-
"hex": "#725404",
|
|
652
|
-
"css": "--color-dark-warning-100",
|
|
653
|
-
"variable": "COLORS_DARK.WARNING_100"
|
|
654
|
-
},
|
|
655
|
-
"warning-200": {
|
|
656
|
-
"rgb": " rgb(163, 120, 5)",
|
|
657
|
-
"hex": "#a37805",
|
|
658
|
-
"css": "--color-dark-warning-200",
|
|
659
|
-
"variable": "COLORS_DARK.WARNING_200"
|
|
660
|
-
},
|
|
661
|
-
"warning-300": {
|
|
662
|
-
"rgb": " rgb(212, 156, 7)",
|
|
663
|
-
"hex": "#d49c07",
|
|
664
|
-
"css": "--color-dark-warning-300",
|
|
665
|
-
"variable": "COLORS_DARK.WARNING_300"
|
|
666
|
-
},
|
|
667
|
-
"warning-400": {
|
|
668
|
-
"rgb": " rgb(247, 186, 23)",
|
|
669
|
-
"hex": "#f7ba17",
|
|
670
|
-
"css": "--color-dark-warning-400",
|
|
671
|
-
"variable": "COLORS_DARK.WARNING_400"
|
|
672
|
-
},
|
|
673
|
-
"warning-500": {
|
|
674
|
-
"rgb": " rgb(249, 200, 70)",
|
|
675
|
-
"hex": "#f9c846",
|
|
676
|
-
"css": "--color-dark-warning-500",
|
|
677
|
-
"variable": "COLORS_DARK.WARNING_500"
|
|
678
|
-
},
|
|
679
|
-
"warning-600": {
|
|
680
|
-
"rgb": " rgb(250, 208, 97)",
|
|
681
|
-
"hex": "#fad061",
|
|
682
|
-
"css": "--color-dark-warning-600",
|
|
683
|
-
"variable": "COLORS_DARK.WARNING_600"
|
|
684
|
-
},
|
|
685
|
-
"warning-700": {
|
|
686
|
-
"rgb": " rgb(251, 215, 122)",
|
|
687
|
-
"hex": "#fbd77a",
|
|
688
|
-
"css": "--color-dark-warning-700",
|
|
689
|
-
"variable": "COLORS_DARK.WARNING_700"
|
|
690
|
-
},
|
|
691
|
-
"warning-800": {
|
|
692
|
-
"rgb": " rgb(252, 222, 146)",
|
|
693
|
-
"hex": "#fcde92",
|
|
694
|
-
"css": "--color-dark-warning-800",
|
|
695
|
-
"variable": "COLORS_DARK.WARNING_800"
|
|
696
|
-
},
|
|
697
|
-
"warning-900": {
|
|
698
|
-
"rgb": " rgb(253, 229, 171)",
|
|
699
|
-
"hex": "#fde5ab",
|
|
700
|
-
"css": "--color-dark-warning-900",
|
|
701
|
-
"variable": "COLORS_DARK.WARNING_900"
|
|
702
|
-
},
|
|
703
|
-
"gray-50": {
|
|
704
|
-
"rgb": " rgb(24, 24, 24)",
|
|
705
|
-
"hex": "#181818",
|
|
706
|
-
"css": "--color-dark-gray-50",
|
|
707
|
-
"variable": "COLORS_DARK.GRAY_50"
|
|
708
|
-
},
|
|
709
|
-
"gray-100": {
|
|
710
|
-
"rgb": " rgb(47, 47, 47)",
|
|
711
|
-
"hex": "#2f2f2f",
|
|
712
|
-
"css": "--color-dark-gray-100",
|
|
713
|
-
"variable": "COLORS_DARK.GRAY_100"
|
|
714
|
-
},
|
|
715
|
-
"gray-200": {
|
|
716
|
-
"rgb": " rgb(71, 71, 71)",
|
|
717
|
-
"hex": "#474747",
|
|
718
|
-
"css": "--color-dark-gray-200",
|
|
719
|
-
"variable": "COLORS_DARK.GRAY_200"
|
|
720
|
-
},
|
|
721
|
-
"gray-300": {
|
|
722
|
-
"rgb": " rgb(94, 94, 94)",
|
|
723
|
-
"hex": "#5e5e5e",
|
|
724
|
-
"css": "--color-dark-gray-300",
|
|
725
|
-
"variable": "COLORS_DARK.GRAY_300"
|
|
726
|
-
},
|
|
727
|
-
"gray-400": {
|
|
728
|
-
"rgb": " rgb(118, 118, 118)",
|
|
729
|
-
"hex": "#767676",
|
|
730
|
-
"css": "--color-dark-gray-400",
|
|
731
|
-
"variable": "COLORS_DARK.GRAY_400"
|
|
732
|
-
},
|
|
733
|
-
"gray-500": {
|
|
734
|
-
"rgb": " rgb(145, 145, 145)",
|
|
735
|
-
"hex": "#919191",
|
|
736
|
-
"css": "--color-dark-gray-500",
|
|
737
|
-
"variable": "COLORS_DARK.GRAY_500"
|
|
738
|
-
},
|
|
739
|
-
"gray-600": {
|
|
740
|
-
"rgb": " rgb(173, 173, 173)",
|
|
741
|
-
"hex": "#adadad",
|
|
742
|
-
"css": "--color-dark-gray-600",
|
|
743
|
-
"variable": "COLORS_DARK.GRAY_600"
|
|
744
|
-
},
|
|
745
|
-
"gray-700": {
|
|
746
|
-
"rgb": " rgb(200, 200, 200)",
|
|
747
|
-
"hex": "#c8c8c8",
|
|
748
|
-
"css": "--color-dark-gray-700",
|
|
749
|
-
"variable": "COLORS_DARK.GRAY_700"
|
|
750
|
-
},
|
|
751
|
-
"gray-800": {
|
|
752
|
-
"rgb": " rgb(228, 228, 228)",
|
|
753
|
-
"hex": "#e4e4e4",
|
|
754
|
-
"css": "--color-dark-gray-800",
|
|
755
|
-
"variable": "COLORS_DARK.GRAY_800"
|
|
756
|
-
},
|
|
757
|
-
"gray-900": {
|
|
758
|
-
"rgb": " rgb(248, 248, 248)",
|
|
759
|
-
"hex": "#f8f8f8",
|
|
760
|
-
"css": "--color-dark-gray-900",
|
|
761
|
-
"variable": "COLORS_DARK.GRAY_900"
|
|
762
|
-
},
|
|
763
|
-
"background": {
|
|
764
|
-
"rgb": " rgb(18, 18, 18)",
|
|
765
|
-
"hex": "#121212",
|
|
766
|
-
"css": "--color-dark-background",
|
|
767
|
-
"variable": "COLORS_DARK.BACKGROUND"
|
|
768
|
-
},
|
|
769
|
-
"font": {
|
|
770
|
-
"rgb": " rgb(255, 255, 255)",
|
|
771
|
-
"hex": "#FFFFFF",
|
|
772
|
-
"css": "--color-white",
|
|
773
|
-
"variable": "COLORS_DARK.FONT"
|
|
774
|
-
}
|
|
775
|
-
}
|
|
776
|
-
},
|
|
777
|
-
|
|
778
|
-
"overlays": {
|
|
779
|
-
"black-50": "rgba(0, 0, 0, 0.5)",
|
|
780
|
-
"black-80": "rgba(0, 0, 0, 0.8)",
|
|
781
|
-
"white-50": "rgba(255, 255, 255, 0.5)",
|
|
782
|
-
"white-80": "rgba(255, 255, 255, 0.8)",
|
|
783
|
-
"gradient-black": "linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.56) 100%)",
|
|
784
|
-
"gradient-white": "linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.35) 100%)"
|
|
785
|
-
},
|
|
786
|
-
|
|
787
|
-
"font-families": {
|
|
788
|
-
"body": "\"Lato\", sans-serif",
|
|
789
|
-
"code": "monospace"
|
|
790
|
-
},
|
|
791
|
-
|
|
792
|
-
"font-sizes": {
|
|
793
|
-
"display-h1": { "rem": "5rem", "px": "80px" },
|
|
794
|
-
"display-h2": { "rem": "4rem", "px": "64px" },
|
|
795
|
-
"display-h3": { "rem": "3.5rem", "px": "56px" },
|
|
796
|
-
"display-h4": { "rem": "3rem", "px": "48px" },
|
|
797
|
-
"display-h5": { "rem": "2.5rem", "px": "40px" },
|
|
798
|
-
"h1": { "rem": "2.5rem", "px": "40px" },
|
|
799
|
-
"h2": { "rem": "2rem", "px": "32px" },
|
|
800
|
-
"h3": { "rem": "1.8rem", "px": "28.8px" },
|
|
801
|
-
"h4": { "rem": "1.5rem", "px": "24px" },
|
|
802
|
-
"h5": { "rem": "1.3rem", "px": "20.8px" },
|
|
803
|
-
"h6": { "rem": "1.1rem", "px": "17.6px" },
|
|
804
|
-
"body": { "rem": "1rem", "px": "16px" },
|
|
805
|
-
"small": { "rem": "0.875rem", "px": "14px" }
|
|
806
|
-
},
|
|
807
|
-
|
|
808
|
-
"font-weights": { "regular": "400", "bold": "700", "black": "900" },
|
|
809
|
-
|
|
810
|
-
"line-heights": { "body": "1.5", "code": "1.8" },
|
|
811
|
-
|
|
812
|
-
"shadows": {
|
|
813
|
-
"xxl": "0px 10px 14px 8px rgba(0, 0, 0, 0.2), 0px 4px 4px rgba(0, 0, 0, 0.3)",
|
|
814
|
-
"xl": "0px 8px 12px 6px rgba(0, 0, 0, 0.15), 0px 4px 4px rgba(0, 0, 0, 0.3)",
|
|
815
|
-
"l": "0px 6px 10px 4px rgba(0, 0, 0, 0.15), 0px 2px 3px rgba(0, 0, 0, 0.3)",
|
|
816
|
-
"m": "0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px rgba(0, 0, 0, 0.3)",
|
|
817
|
-
"s": "0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15)",
|
|
818
|
-
"xs": "0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15)"
|
|
819
|
-
},
|
|
820
|
-
|
|
821
|
-
"spacers": {
|
|
822
|
-
"xxl": "48px",
|
|
823
|
-
"xl": "32px",
|
|
824
|
-
"l": "24px",
|
|
825
|
-
"m": "16px",
|
|
826
|
-
"s": "12px",
|
|
827
|
-
"xs": "8px",
|
|
828
|
-
"xxs": "4px",
|
|
829
|
-
"0px": "0px"
|
|
830
|
-
},
|
|
831
|
-
|
|
832
|
-
"radiuses": {
|
|
833
|
-
"xxl": "24px",
|
|
834
|
-
"xl": "16px",
|
|
835
|
-
"l": "12px",
|
|
836
|
-
"m": "8px",
|
|
837
|
-
"s": "4px",
|
|
838
|
-
"xs": "2px",
|
|
839
|
-
"round": "99em",
|
|
840
|
-
"circle": "50%"
|
|
841
|
-
},
|
|
842
|
-
|
|
843
|
-
"layouts": {
|
|
844
|
-
"main-default": "600px",
|
|
845
|
-
"main-large": "800px",
|
|
846
|
-
"main-form": "400px",
|
|
847
|
-
"main-full": "100%",
|
|
848
|
-
"aside-default": "250px",
|
|
849
|
-
"aside-small": "200px"
|
|
850
|
-
},
|
|
851
|
-
|
|
852
|
-
"transitions": {
|
|
853
|
-
"short": "all 0.2s ease",
|
|
854
|
-
"long": "all 0.5s ease",
|
|
855
|
-
"bezier": "all 0.5s cubic-bezier(0.25, 0.75, 0, 0.66)",
|
|
856
|
-
"progressCircle": "all 1s ease-in-out 0s"
|
|
857
|
-
},
|
|
858
|
-
|
|
859
|
-
"icon-multiplier": "0.6"
|
|
860
|
-
}
|