@okam/stack-ui 1.25.2 → 1.25.3
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/.eslintrc.js +32 -0
- package/.storybook/.eslintrc.js +29 -0
- package/.storybook/main.ts +33 -0
- package/.storybook/preview.js +56 -0
- package/.storybook/tsconfig.json +17 -0
- package/CHANGELOG.md +574 -0
- package/README.md +8 -0
- package/package.json +1 -1
- package/postcss.config.js +15 -0
- package/project.json +77 -0
- package/src/_stories/icons/code-brackets.svg +1 -0
- package/src/_stories/icons/colors.svg +1 -0
- package/src/_stories/icons/comments.svg +1 -0
- package/src/_stories/icons/direction.svg +1 -0
- package/src/_stories/icons/flow.svg +1 -0
- package/src/_stories/icons/plugin.svg +1 -0
- package/src/_stories/icons/repo.svg +1 -0
- package/src/_stories/icons/stackalt.svg +1 -0
- package/src/components/Accordion/accordion.stories.mdx +240 -0
- package/src/components/Accordion/components/AccordionItem.tsx +53 -0
- package/src/components/Accordion/components/AriaAccordionItem.tsx +76 -0
- package/src/components/Accordion/hooks/useAccordionState.ts +46 -0
- package/src/components/Accordion/index.tsx +38 -0
- package/{components/Accordion/interface.d.ts → src/components/Accordion/interface.ts} +23 -17
- package/src/components/Alerts/alerts.stories.mdx +282 -0
- package/src/components/Alerts/components/AlertsCloseButton.tsx +20 -0
- package/src/components/Alerts/components/AlertsItem.tsx +39 -0
- package/src/components/Alerts/components/AlertsNavigationButton.tsx +71 -0
- package/src/components/Alerts/components/AlertsSwiper.tsx +125 -0
- package/src/components/Alerts/components/pagination/AlertsPagination.tsx +32 -0
- package/src/components/Alerts/components/pagination/AlertsPaginationBullet.tsx +61 -0
- package/src/components/Alerts/index.tsx +54 -0
- package/src/components/Alerts/interface.ts +51 -0
- package/src/components/Box/box.stories.mdx +27 -0
- package/src/components/Box/index.tsx +36 -0
- package/src/components/Box/interface.ts +10 -0
- package/src/components/Button/button.stories.mdx +99 -0
- package/src/components/Button/index.tsx +92 -0
- package/src/components/Button/interface.ts +22 -0
- package/src/components/Calendar/RangeCalendar.tsx +61 -0
- package/src/components/Calendar/calendar.stories.mdx +28 -0
- package/src/components/Calendar/components/CalendarCell.tsx +60 -0
- package/src/components/Calendar/components/CalendarGrid.tsx +44 -0
- package/src/components/Calendar/index.tsx +63 -0
- package/src/components/Calendar/interface.ts +37 -0
- package/src/components/Carousel/carousel.stories.mdx +182 -0
- package/src/components/Carousel/index.tsx +99 -0
- package/src/components/Carousel/interface.ts +26 -0
- package/src/components/Date/date.stories.mdx +122 -0
- package/src/components/Date/index.tsx +35 -0
- package/src/components/Date/interface.ts +7 -0
- package/src/components/Dialog/index.tsx +14 -0
- package/src/components/Dialog/interface.ts +6 -0
- package/src/components/DirectusImg/index.tsx +59 -0
- package/src/components/DirectusImg/interface.ts +19 -0
- package/src/components/Icon/index.tsx +40 -0
- package/src/components/Icon/interface.ts +8 -0
- package/src/components/Img/img.stories.mdx +28 -0
- package/src/components/Img/index.tsx +30 -0
- package/src/components/Img/interface.ts +9 -0
- package/src/components/Lightbox/hooks/overlay/index.tsx +36 -0
- package/src/components/Lightbox/index.tsx +82 -0
- package/src/components/Lightbox/interface.ts +28 -0
- package/src/components/Lightbox/lightbox.stories.mdx +79 -0
- package/src/components/Menu/Menu.tsx +43 -0
- package/src/components/Menu/MenuSidePanel.tsx +41 -0
- package/src/components/Menu/components/InnerContent.tsx +26 -0
- package/src/components/Menu/components/MenuItems.tsx +133 -0
- package/src/components/Menu/components/TabContainer.tsx +13 -0
- package/src/components/Menu/interface.ts +41 -0
- package/src/components/Menu/menu.stories.mdx +23 -0
- package/src/components/Modal/components/ModalDialog.tsx +31 -0
- package/src/components/Modal/components/ModalOverlay.tsx +21 -0
- package/src/components/Modal/index.tsx +32 -0
- package/{components/Modal/interface.d.ts → src/components/Modal/interface.ts} +14 -11
- package/src/components/Popover/index.tsx +138 -0
- package/src/components/Popover/interface.ts +25 -0
- package/src/components/Popover/popover.stories.mdx +66 -0
- package/src/components/ShareButton/index.tsx +172 -0
- package/src/components/ShareButton/interface.ts +29 -0
- package/src/components/ShareButton/share-button.stories.mdx +48 -0
- package/src/components/ShareButton/utils/generateUtmTags.ts +4 -0
- package/src/components/ShareButton/utils/useFacebookShareUrl.ts +15 -0
- package/src/components/ShareButton/utils/useMailToShareUrl.ts +15 -0
- package/src/components/ShareButton/utils/useTwitterShareUrl.ts +15 -0
- package/src/components/ShareButton/utils/useWindow.ts +17 -0
- package/src/components/SidePanel/index.tsx +43 -0
- package/src/components/SidePanel/interface.ts +16 -0
- package/src/components/SidePanel/side-panel.stories.mdx +44 -0
- package/src/components/TabList/components/Tab/Tab.tsx +19 -0
- package/src/components/TabList/components/TabPanel/TabPanel.tsx +27 -0
- package/src/components/TabList/index.tsx +44 -0
- package/src/components/TabList/interface.ts +23 -0
- package/src/components/Typography/index.tsx +35 -0
- package/src/components/Typography/interface.ts +9 -0
- package/src/components/Typography/typo.stories.mdx +157 -0
- package/src/components/WysiwygBlock/index.tsx +20 -0
- package/src/components/WysiwygBlock/interface.ts +7 -0
- package/src/components/WysiwygBlock/wysiwyg.stories.mdx +53 -0
- package/src/components/fields/Checkbox/Checkbox.interface.ts +21 -0
- package/src/components/fields/Checkbox/Checkbox.stories.mdx +127 -0
- package/src/components/fields/Checkbox/index.tsx +62 -0
- package/src/components/fields/CheckboxGroup/checkbox-group.stories.mdx +59 -0
- package/src/components/fields/CheckboxGroup/components/CheckboxGroupItem/index.tsx +66 -0
- package/src/components/fields/CheckboxGroup/index.tsx +49 -0
- package/src/components/fields/CheckboxGroup/interface.ts +17 -0
- package/src/components/fields/DatePicker/DateRangePicker.tsx +73 -0
- package/src/components/fields/DatePicker/components/CalendarPopover.tsx +31 -0
- package/src/components/fields/DatePicker/components/DateField.tsx +61 -0
- package/src/components/fields/DatePicker/date-picker.stories.mdx +55 -0
- package/src/components/fields/DatePicker/index.tsx +71 -0
- package/src/components/fields/DatePicker/interface.ts +69 -0
- package/src/components/fields/Radio/Radio.interface.ts +30 -0
- package/src/components/fields/Radio/index.tsx +63 -0
- package/src/components/fields/RadioGroup/index.tsx +33 -0
- package/src/components/fields/RadioGroup/interface.ts +10 -0
- package/src/components/fields/RadioGroup/radio-group.stories.mdx +56 -0
- package/src/components/fields/SearchField/index.tsx +59 -0
- package/src/components/fields/SearchField/interface.ts +10 -0
- package/src/components/fields/SearchField/search.stories.mdx +91 -0
- package/src/components/fields/Select/Select.interface.ts +24 -0
- package/src/components/fields/Select/Select.stories.mdx +53 -0
- package/src/components/fields/Select/Select.tsx +108 -0
- package/{components/fields/Select/components/Listbox.interface.d.ts → src/components/fields/Select/components/Listbox.interface.ts} +11 -8
- package/src/components/fields/Select/components/Listbox.tsx +40 -0
- package/src/components/fields/Select/components/Popover.interface.ts +14 -0
- package/src/components/fields/Select/components/Popover.tsx +32 -0
- package/{components/fields/SelectItem/SelectItem.interface.d.ts → src/components/fields/SelectItem/SelectItem.interface.ts} +4 -3
- package/src/components/fields/SelectItem/SelectItem.tsx +10 -0
- package/src/components/fields/TextArea/index.tsx +105 -0
- package/src/components/fields/TextArea/textArea.stories.mdx +60 -0
- package/src/components/fields/TextInputField/index.tsx +107 -0
- package/src/components/fields/TextInputField/interface.ts +30 -0
- package/src/components/fields/TextInputField/text-input-field.stories.mdx +64 -0
- package/src/components/icons/ArrowDown.tsx +11 -0
- package/src/components/icons/ArrowLeft.tsx +18 -0
- package/src/components/icons/ArrowRight.tsx +18 -0
- package/src/components/icons/Check.tsx +11 -0
- package/src/components/icons/ChevronLeft.tsx +11 -0
- package/src/components/icons/ChevronRight.tsx +11 -0
- package/src/components/icons/CloseBtn.tsx +11 -0
- package/src/components/icons/Facebook.tsx +14 -0
- package/src/components/icons/FacebookColored.tsx +16 -0
- package/src/components/icons/FacebookRounded.tsx +16 -0
- package/src/components/icons/Globe.tsx +38 -0
- package/src/components/icons/IconFallback.tsx +8 -0
- package/src/components/icons/Instagram.tsx +14 -0
- package/src/components/icons/InstagramColored.tsx +59 -0
- package/src/components/icons/Link.tsx +14 -0
- package/src/components/icons/LinkedIn.tsx +16 -0
- package/src/components/icons/Mail.tsx +16 -0
- package/src/components/icons/Plus.tsx +18 -0
- package/src/components/icons/Search.tsx +19 -0
- package/src/components/icons/Share.tsx +16 -0
- package/src/components/icons/Twitter.tsx +16 -0
- package/src/components/icons/TwitterColored.tsx +16 -0
- package/src/components/icons/Upload.tsx +14 -0
- package/src/components/icons/X.tsx +14 -0
- package/src/components/icons/YouTube.tsx +16 -0
- package/src/components/icons/YouTubeColored.tsx +17 -0
- package/src/components/icons/index.ts +24 -0
- package/src/examples/PageLayout/index.tsx +61 -0
- package/src/examples/PageLayout/layout.stories.mdx +35 -0
- package/{index.d.ts → src/index.ts} +72 -57
- package/src/message.tsx +8 -0
- package/src/providers/Accordion/index.tsx +15 -0
- package/src/providers/Accordion/interface.ts +14 -0
- package/src/providers/Alerts/index.tsx +15 -0
- package/src/providers/Alerts/interface.ts +11 -0
- package/src/providers/CheckboxGroup/index.tsx +22 -0
- package/{providers/CheckboxGroup/interface.d.ts → src/providers/CheckboxGroup/interface.ts} +5 -4
- package/src/providers/Client/index.tsx +21 -0
- package/src/providers/Client/interface.ts +13 -0
- package/src/providers/Menu/index.tsx +43 -0
- package/src/providers/Menu/interface.ts +32 -0
- package/src/providers/RadioGroup/RadioGroup.interface.ts +8 -0
- package/src/providers/RadioGroup/RadioGroup.tsx +25 -0
- package/src/providers/SidePanel/index.tsx +55 -0
- package/src/providers/SidePanel/interface.ts +26 -0
- package/src/providers/Theme/hooks.ts +25 -0
- package/src/providers/Theme/index.tsx +40 -0
- package/src/providers/Theme/interface.ts +28 -0
- package/src/providers/Theme/utils.ts +3 -0
- package/src/providers/UserSearchQuery/index.tsx +20 -0
- package/src/providers/UserSearchQuery/interface.ts +12 -0
- package/src/storybook/Lightbox/LightboxControlledState.tsx +28 -0
- package/src/storybook/Menu/Menu.tsx +177 -0
- package/src/storybook/Menu/NestedMenu.tsx +24 -0
- package/src/storybook/Menu/mock.tsx +84 -0
- package/src/storybook/SelectField/index.tsx +57 -0
- package/src/storybook/ShareButtonExample/index.tsx +66 -0
- package/src/tailwind.css +3 -0
- package/src/theme/Accordion/index.tsx +101 -0
- package/src/theme/Alerts/index.ts +97 -0
- package/src/theme/Box/index.ts +45 -0
- package/src/theme/Button/index.tsx +72 -0
- package/src/theme/Calendar/index.tsx +167 -0
- package/src/theme/Carousel/index.ts +36 -0
- package/src/theme/Checkbox/index.ts +49 -0
- package/src/theme/CheckboxGroup/index.ts +14 -0
- package/src/theme/DatePicker/index.tsx +42 -0
- package/src/theme/Image/index.ts +8 -0
- package/src/theme/LightBox/index.ts +56 -0
- package/src/theme/Radio/index.ts +31 -0
- package/src/theme/RadioGroup/index.ts +14 -0
- package/src/theme/Search/index.ts +20 -0
- package/src/theme/ShareButton/index.tsx +76 -0
- package/src/theme/SidePanel/index.ts +9 -0
- package/src/theme/TextArea/index.ts +25 -0
- package/src/theme/Typography/index.tsx +44 -0
- package/src/theme/index.tsx +178 -0
- package/src/transitions/AccordionTransition.tsx +26 -0
- package/src/transitions/ModalTransition.tsx +38 -0
- package/src/transitions/RenderWithOpacity.tsx +25 -0
- package/src/transitions/RenderWithSlide.tsx +21 -0
- package/src/transitions/SidePanelTransition.tsx +30 -0
- package/src/types/components.ts +34 -0
- package/static/images/image.png +0 -0
- package/tailwind.config.js +14 -0
- package/tsconfig.json +20 -0
- package/tsconfig.lib.json +25 -0
- package/vite.config.ts +58 -0
- package/components/Accordion/components/AccordionItem.d.ts +0 -3
- package/components/Accordion/components/AriaAccordionItem.d.ts +0 -3
- package/components/Accordion/hooks/useAccordionState.d.ts +0 -10
- package/components/Accordion/index.d.ts +0 -3
- package/components/Alerts/components/AlertsCloseButton.d.ts +0 -4
- package/components/Alerts/components/AlertsItem.d.ts +0 -3
- package/components/Alerts/components/AlertsNavigationButton.d.ts +0 -8
- package/components/Alerts/components/AlertsSwiper.d.ts +0 -3
- package/components/Alerts/components/pagination/AlertsPagination.d.ts +0 -3
- package/components/Alerts/components/pagination/AlertsPaginationBullet.d.ts +0 -3
- package/components/Alerts/index.d.ts +0 -3
- package/components/Alerts/interface.d.ts +0 -41
- package/components/Box/index.d.ts +0 -5
- package/components/Box/interface.d.ts +0 -10
- package/components/Button/index.d.ts +0 -6
- package/components/Button/interface.d.ts +0 -20
- package/components/Calendar/RangeCalendar.d.ts +0 -3
- package/components/Calendar/components/CalendarCell.d.ts +0 -3
- package/components/Calendar/components/CalendarGrid.d.ts +0 -3
- package/components/Calendar/index.d.ts +0 -3
- package/components/Calendar/interface.d.ts +0 -32
- package/components/Carousel/index.d.ts +0 -3
- package/components/Carousel/interface.d.ts +0 -24
- package/components/Date/index.d.ts +0 -3
- package/components/Date/interface.d.ts +0 -6
- package/components/Dialog/index.d.ts +0 -2
- package/components/Dialog/interface.d.ts +0 -6
- package/components/DirectusImg/index.d.ts +0 -3
- package/components/DirectusImg/interface.d.ts +0 -13
- package/components/Icon/index.d.ts +0 -3
- package/components/Icon/interface.d.ts +0 -7
- package/components/Img/index.d.ts +0 -3
- package/components/Img/interface.d.ts +0 -6
- package/components/Lightbox/index.d.ts +0 -3
- package/components/Lightbox/interface.d.ts +0 -25
- package/components/Menu/Menu.d.ts +0 -3
- package/components/Menu/MenuSidePanel.d.ts +0 -3
- package/components/Menu/components/InnerContent.d.ts +0 -3
- package/components/Menu/components/MenuItems.d.ts +0 -3
- package/components/Menu/components/TabContainer.d.ts +0 -3
- package/components/Menu/interface.d.ts +0 -31
- package/components/Modal/components/ModalDialog.d.ts +0 -3
- package/components/Modal/components/ModalOverlay.d.ts +0 -3
- package/components/Modal/index.d.ts +0 -3
- package/components/Popover/index.d.ts +0 -3
- package/components/Popover/interface.d.ts +0 -21
- package/components/ShareButton/index.d.ts +0 -4
- package/components/ShareButton/interface.d.ts +0 -26
- package/components/ShareButton/utils/generateUtmTags.d.ts +0 -2
- package/components/ShareButton/utils/useFacebookShareUrl.d.ts +0 -2
- package/components/ShareButton/utils/useMailToShareUrl.d.ts +0 -2
- package/components/ShareButton/utils/useTwitterShareUrl.d.ts +0 -2
- package/components/ShareButton/utils/useWindow.d.ts +0 -5
- package/components/SidePanel/index.d.ts +0 -4
- package/components/SidePanel/interface.d.ts +0 -12
- package/components/TabList/components/TabPanel/TabPanel.d.ts +0 -4
- package/components/TabList/interface.d.ts +0 -18
- package/components/Typography/index.d.ts +0 -5
- package/components/Typography/interface.d.ts +0 -9
- package/components/WysiwygBlock/index.d.ts +0 -3
- package/components/WysiwygBlock/interface.d.ts +0 -5
- package/components/fields/Checkbox/Checkbox.interface.d.ts +0 -18
- package/components/fields/Checkbox/index.d.ts +0 -3
- package/components/fields/CheckboxGroup/components/CheckboxGroupItem/index.d.ts +0 -3
- package/components/fields/CheckboxGroup/index.d.ts +0 -3
- package/components/fields/CheckboxGroup/interface.d.ts +0 -13
- package/components/fields/DatePicker/DateRangePicker.d.ts +0 -3
- package/components/fields/DatePicker/components/CalendarPopover.d.ts +0 -2
- package/components/fields/DatePicker/components/DateField.d.ts +0 -4
- package/components/fields/DatePicker/index.d.ts +0 -3
- package/components/fields/DatePicker/interface.d.ts +0 -37
- package/components/fields/Radio/Radio.interface.d.ts +0 -26
- package/components/fields/Radio/index.d.ts +0 -4
- package/components/fields/RadioGroup/index.d.ts +0 -3
- package/components/fields/RadioGroup/interface.d.ts +0 -9
- package/components/fields/SearchField/index.d.ts +0 -3
- package/components/fields/SearchField/interface.d.ts +0 -9
- package/components/fields/Select/Select.d.ts +0 -4
- package/components/fields/Select/Select.interface.d.ts +0 -26
- package/components/fields/Select/components/Listbox.d.ts +0 -4
- package/components/fields/Select/components/Popover.d.ts +0 -3
- package/components/fields/Select/components/Popover.interface.d.ts +0 -13
- package/components/fields/SelectItem/SelectItem.d.ts +0 -3
- package/components/fields/TextArea/index.d.ts +0 -4
- package/components/fields/TextInputField/index.d.ts +0 -4
- package/components/fields/TextInputField/interface.d.ts +0 -24
- package/components/icons/ArrowDown.d.ts +0 -3
- package/components/icons/ArrowLeft.d.ts +0 -3
- package/components/icons/ArrowRight.d.ts +0 -3
- package/components/icons/Check.d.ts +0 -3
- package/components/icons/ChevronLeft.d.ts +0 -3
- package/components/icons/ChevronRight.d.ts +0 -3
- package/components/icons/CloseBtn.d.ts +0 -3
- package/components/icons/Facebook.d.ts +0 -3
- package/components/icons/FacebookColored.d.ts +0 -3
- package/components/icons/FacebookRounded.d.ts +0 -3
- package/components/icons/Globe.d.ts +0 -3
- package/components/icons/IconFallback.d.ts +0 -3
- package/components/icons/Instagram.d.ts +0 -3
- package/components/icons/InstagramColored.d.ts +0 -3
- package/components/icons/Link.d.ts +0 -3
- package/components/icons/LinkedIn.d.ts +0 -3
- package/components/icons/Mail.d.ts +0 -3
- package/components/icons/Plus.d.ts +0 -3
- package/components/icons/Search.d.ts +0 -3
- package/components/icons/Share.d.ts +0 -3
- package/components/icons/Twitter.d.ts +0 -3
- package/components/icons/TwitterColored.d.ts +0 -3
- package/components/icons/Upload.d.ts +0 -3
- package/components/icons/X.d.ts +0 -3
- package/components/icons/YouTube.d.ts +0 -3
- package/components/icons/YouTubeColored.d.ts +0 -3
- package/components/icons/index.d.ts +0 -24
- package/index.js +0 -110
- package/index.mjs +0 -12897
- package/providers/Accordion/index.d.ts +0 -4
- package/providers/Accordion/interface.d.ts +0 -12
- package/providers/Alerts/index.d.ts +0 -4
- package/providers/Alerts/interface.d.ts +0 -9
- package/providers/CheckboxGroup/index.d.ts +0 -5
- package/providers/Client/index.d.ts +0 -4
- package/providers/Client/interface.d.ts +0 -10
- package/providers/Menu/index.d.ts +0 -4
- package/providers/Menu/interface.d.ts +0 -28
- package/providers/RadioGroup/RadioGroup.d.ts +0 -5
- package/providers/RadioGroup/RadioGroup.interface.d.ts +0 -7
- package/providers/SidePanel/index.d.ts +0 -4
- package/providers/SidePanel/interface.d.ts +0 -23
- package/providers/Theme/hooks.d.ts +0 -3
- package/providers/Theme/index.d.ts +0 -10
- package/providers/Theme/interface.d.ts +0 -24
- package/providers/Theme/utils.d.ts +0 -2
- package/providers/UserSearchQuery/index.d.ts +0 -4
- package/providers/UserSearchQuery/interface.d.ts +0 -10
- package/style.css +0 -1
- package/theme/Accordion/index.d.ts +0 -274
- package/theme/Alerts/index.d.ts +0 -1167
- package/theme/Box/index.d.ts +0 -214
- package/theme/Button/index.d.ts +0 -121
- package/theme/Calendar/index.d.ts +0 -366
- package/theme/Carousel/index.d.ts +0 -9
- package/theme/Checkbox/index.d.ts +0 -159
- package/theme/CheckboxGroup/index.d.ts +0 -30
- package/theme/DatePicker/index.d.ts +0 -43
- package/theme/Image/index.d.ts +0 -3
- package/theme/LightBox/index.d.ts +0 -455
- package/theme/Radio/index.d.ts +0 -108
- package/theme/RadioGroup/index.d.ts +0 -30
- package/theme/Search/index.d.ts +0 -30
- package/theme/ShareButton/index.d.ts +0 -174
- package/theme/SidePanel/index.d.ts +0 -3
- package/theme/TextArea/index.d.ts +0 -29
- package/theme/Typography/index.d.ts +0 -233
- package/theme/index.d.ts +0 -5
- package/transitions/AccordionTransition.d.ts +0 -3
- package/transitions/ModalTransition.d.ts +0 -7
- package/transitions/RenderWithOpacity.d.ts +0 -3
- package/transitions/RenderWithSlide.d.ts +0 -7
- package/transitions/SidePanelTransition.d.ts +0 -7
- package/types/components.d.ts +0 -28
package/theme/Alerts/index.d.ts
DELETED
|
@@ -1,1167 +0,0 @@
|
|
|
1
|
-
declare const alertsTheme: {
|
|
2
|
-
wrapper: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "bg-color-1-200 p-4 flex flex-col gap-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "bg-color-1-200 p-4 flex flex-col gap-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
3
|
-
container: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex justify-between items-center gap-4 relative", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex justify-between items-center gap-4 relative", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
4
|
-
closeBtn: import("tailwind-variants").TVReturnType<{} | {
|
|
5
|
-
buttonStyle: {
|
|
6
|
-
default: import("tailwind-variants").ClassValue | {
|
|
7
|
-
base?: import("tailwind-variants").ClassValue;
|
|
8
|
-
};
|
|
9
|
-
outline: import("tailwind-variants").ClassValue | {
|
|
10
|
-
base?: import("tailwind-variants").ClassValue;
|
|
11
|
-
};
|
|
12
|
-
hollow: import("tailwind-variants").ClassValue | {
|
|
13
|
-
base?: import("tailwind-variants").ClassValue;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
16
|
-
intent: {
|
|
17
|
-
error: import("tailwind-variants").ClassValue | {
|
|
18
|
-
base?: import("tailwind-variants").ClassValue;
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
size: {
|
|
22
|
-
default: import("tailwind-variants").ClassValue | {
|
|
23
|
-
base?: import("tailwind-variants").ClassValue;
|
|
24
|
-
};
|
|
25
|
-
large: import("tailwind-variants").ClassValue | {
|
|
26
|
-
base?: import("tailwind-variants").ClassValue;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
shape: {
|
|
30
|
-
rounded: import("tailwind-variants").ClassValue | {
|
|
31
|
-
base?: import("tailwind-variants").ClassValue;
|
|
32
|
-
};
|
|
33
|
-
circular: import("tailwind-variants").ClassValue | {
|
|
34
|
-
base?: import("tailwind-variants").ClassValue;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
}, undefined, "self-end", import("tailwind-variants/dist/config").TVConfig<{} | {
|
|
38
|
-
buttonStyle: {
|
|
39
|
-
default: import("tailwind-variants").ClassValue | {
|
|
40
|
-
base?: import("tailwind-variants").ClassValue;
|
|
41
|
-
};
|
|
42
|
-
outline: import("tailwind-variants").ClassValue | {
|
|
43
|
-
base?: import("tailwind-variants").ClassValue;
|
|
44
|
-
};
|
|
45
|
-
hollow: import("tailwind-variants").ClassValue | {
|
|
46
|
-
base?: import("tailwind-variants").ClassValue;
|
|
47
|
-
};
|
|
48
|
-
};
|
|
49
|
-
intent: {
|
|
50
|
-
error: import("tailwind-variants").ClassValue | {
|
|
51
|
-
base?: import("tailwind-variants").ClassValue;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
|
-
size: {
|
|
55
|
-
default: import("tailwind-variants").ClassValue | {
|
|
56
|
-
base?: import("tailwind-variants").ClassValue;
|
|
57
|
-
};
|
|
58
|
-
large: import("tailwind-variants").ClassValue | {
|
|
59
|
-
base?: import("tailwind-variants").ClassValue;
|
|
60
|
-
};
|
|
61
|
-
};
|
|
62
|
-
shape: {
|
|
63
|
-
rounded: import("tailwind-variants").ClassValue | {
|
|
64
|
-
base?: import("tailwind-variants").ClassValue;
|
|
65
|
-
};
|
|
66
|
-
circular: import("tailwind-variants").ClassValue | {
|
|
67
|
-
base?: import("tailwind-variants").ClassValue;
|
|
68
|
-
};
|
|
69
|
-
};
|
|
70
|
-
}, {
|
|
71
|
-
buttonStyle: {
|
|
72
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
73
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
74
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
75
|
-
};
|
|
76
|
-
intent: {
|
|
77
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
78
|
-
};
|
|
79
|
-
size: {
|
|
80
|
-
default: "min-w-12 min-h-6";
|
|
81
|
-
large: "min-w-36 min-h-18";
|
|
82
|
-
};
|
|
83
|
-
shape: {
|
|
84
|
-
rounded: "rounded-md";
|
|
85
|
-
circular: "rounded-full";
|
|
86
|
-
};
|
|
87
|
-
}>, {
|
|
88
|
-
buttonStyle: {
|
|
89
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
90
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
91
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
92
|
-
};
|
|
93
|
-
intent: {
|
|
94
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
95
|
-
};
|
|
96
|
-
size: {
|
|
97
|
-
default: "min-w-12 min-h-6";
|
|
98
|
-
large: "min-w-36 min-h-18";
|
|
99
|
-
};
|
|
100
|
-
shape: {
|
|
101
|
-
rounded: "rounded-md";
|
|
102
|
-
circular: "rounded-full";
|
|
103
|
-
};
|
|
104
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
105
|
-
buttonStyle: {
|
|
106
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
107
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
108
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
109
|
-
};
|
|
110
|
-
intent: {
|
|
111
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
112
|
-
};
|
|
113
|
-
size: {
|
|
114
|
-
default: "min-w-12 min-h-6";
|
|
115
|
-
large: "min-w-36 min-h-18";
|
|
116
|
-
};
|
|
117
|
-
shape: {
|
|
118
|
-
rounded: "rounded-md";
|
|
119
|
-
circular: "rounded-full";
|
|
120
|
-
};
|
|
121
|
-
}, undefined, "\n flex\n items-center\n justify-center\n gap-4\n transition\n duration-300\n ease-in-out\n disabled:pointer-events-none\n disabled:opacity-30\n focus-ring-black\n ", import("tailwind-variants/dist/config").TVConfig<{
|
|
122
|
-
buttonStyle: {
|
|
123
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
124
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
125
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
126
|
-
};
|
|
127
|
-
intent: {
|
|
128
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
129
|
-
};
|
|
130
|
-
size: {
|
|
131
|
-
default: "min-w-12 min-h-6";
|
|
132
|
-
large: "min-w-36 min-h-18";
|
|
133
|
-
};
|
|
134
|
-
shape: {
|
|
135
|
-
rounded: "rounded-md";
|
|
136
|
-
circular: "rounded-full";
|
|
137
|
-
};
|
|
138
|
-
}, {
|
|
139
|
-
buttonStyle: {
|
|
140
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
141
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
142
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
143
|
-
};
|
|
144
|
-
intent: {
|
|
145
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
146
|
-
};
|
|
147
|
-
size: {
|
|
148
|
-
default: "min-w-12 min-h-6";
|
|
149
|
-
large: "min-w-36 min-h-18";
|
|
150
|
-
};
|
|
151
|
-
shape: {
|
|
152
|
-
rounded: "rounded-md";
|
|
153
|
-
circular: "rounded-full";
|
|
154
|
-
};
|
|
155
|
-
}>, {
|
|
156
|
-
buttonStyle: {
|
|
157
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
158
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
159
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
160
|
-
};
|
|
161
|
-
intent: {
|
|
162
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
163
|
-
};
|
|
164
|
-
size: {
|
|
165
|
-
default: "min-w-12 min-h-6";
|
|
166
|
-
large: "min-w-36 min-h-18";
|
|
167
|
-
};
|
|
168
|
-
shape: {
|
|
169
|
-
rounded: "rounded-md";
|
|
170
|
-
circular: "rounded-full";
|
|
171
|
-
};
|
|
172
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
173
|
-
buttonStyle: {
|
|
174
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
175
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
176
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
177
|
-
};
|
|
178
|
-
intent: {
|
|
179
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
180
|
-
};
|
|
181
|
-
size: {
|
|
182
|
-
default: "min-w-12 min-h-6";
|
|
183
|
-
large: "min-w-36 min-h-18";
|
|
184
|
-
};
|
|
185
|
-
shape: {
|
|
186
|
-
rounded: "rounded-md";
|
|
187
|
-
circular: "rounded-full";
|
|
188
|
-
};
|
|
189
|
-
}, undefined, "\n flex\n items-center\n justify-center\n gap-4\n transition\n duration-300\n ease-in-out\n disabled:pointer-events-none\n disabled:opacity-30\n focus-ring-black\n ", import("tailwind-variants/dist/config").TVConfig<{
|
|
190
|
-
buttonStyle: {
|
|
191
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
192
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
193
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
194
|
-
};
|
|
195
|
-
intent: {
|
|
196
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
197
|
-
};
|
|
198
|
-
size: {
|
|
199
|
-
default: "min-w-12 min-h-6";
|
|
200
|
-
large: "min-w-36 min-h-18";
|
|
201
|
-
};
|
|
202
|
-
shape: {
|
|
203
|
-
rounded: "rounded-md";
|
|
204
|
-
circular: "rounded-full";
|
|
205
|
-
};
|
|
206
|
-
}, {
|
|
207
|
-
buttonStyle: {
|
|
208
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
209
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
210
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
211
|
-
};
|
|
212
|
-
intent: {
|
|
213
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
214
|
-
};
|
|
215
|
-
size: {
|
|
216
|
-
default: "min-w-12 min-h-6";
|
|
217
|
-
large: "min-w-36 min-h-18";
|
|
218
|
-
};
|
|
219
|
-
shape: {
|
|
220
|
-
rounded: "rounded-md";
|
|
221
|
-
circular: "rounded-full";
|
|
222
|
-
};
|
|
223
|
-
}>, unknown, unknown, undefined>>>;
|
|
224
|
-
swiper: {
|
|
225
|
-
swiper: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "bg-color-1-300 m-2 rounded-lg order-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "bg-color-1-300 m-2 rounded-lg order-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
226
|
-
wrapper: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "m-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "m-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
227
|
-
};
|
|
228
|
-
item: {
|
|
229
|
-
wrapper: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
230
|
-
container: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
231
|
-
title: import("tailwind-variants").TVReturnType<{} | {
|
|
232
|
-
size: {
|
|
233
|
-
h1: import("tailwind-variants").ClassValue | {};
|
|
234
|
-
h2: import("tailwind-variants").ClassValue | {};
|
|
235
|
-
h3: import("tailwind-variants").ClassValue | {};
|
|
236
|
-
h4: import("tailwind-variants").ClassValue | {};
|
|
237
|
-
h5: import("tailwind-variants").ClassValue | {};
|
|
238
|
-
h6: import("tailwind-variants").ClassValue | {};
|
|
239
|
-
leading: import("tailwind-variants").ClassValue | {};
|
|
240
|
-
paragraph: import("tailwind-variants").ClassValue | {};
|
|
241
|
-
footnotes: import("tailwind-variants").ClassValue | {};
|
|
242
|
-
xs: import("tailwind-variants").ClassValue | {};
|
|
243
|
-
};
|
|
244
|
-
font: {
|
|
245
|
-
body: import("tailwind-variants").ClassValue | {};
|
|
246
|
-
};
|
|
247
|
-
weight: {
|
|
248
|
-
normal: import("tailwind-variants").ClassValue | {};
|
|
249
|
-
light: import("tailwind-variants").ClassValue | {};
|
|
250
|
-
bold: import("tailwind-variants").ClassValue | {};
|
|
251
|
-
};
|
|
252
|
-
color: {
|
|
253
|
-
gray: import("tailwind-variants").ClassValue | {};
|
|
254
|
-
white: import("tailwind-variants").ClassValue | {};
|
|
255
|
-
};
|
|
256
|
-
isError: {
|
|
257
|
-
true: import("tailwind-variants").ClassValue | {};
|
|
258
|
-
};
|
|
259
|
-
align: {
|
|
260
|
-
center: import("tailwind-variants").ClassValue | {};
|
|
261
|
-
left: import("tailwind-variants").ClassValue | {};
|
|
262
|
-
right: import("tailwind-variants").ClassValue | {};
|
|
263
|
-
};
|
|
264
|
-
}, undefined, undefined, import("tailwind-variants/dist/config").TVConfig<{} | {
|
|
265
|
-
size: {
|
|
266
|
-
h1: import("tailwind-variants").ClassValue | {};
|
|
267
|
-
h2: import("tailwind-variants").ClassValue | {};
|
|
268
|
-
h3: import("tailwind-variants").ClassValue | {};
|
|
269
|
-
h4: import("tailwind-variants").ClassValue | {};
|
|
270
|
-
h5: import("tailwind-variants").ClassValue | {};
|
|
271
|
-
h6: import("tailwind-variants").ClassValue | {};
|
|
272
|
-
leading: import("tailwind-variants").ClassValue | {};
|
|
273
|
-
paragraph: import("tailwind-variants").ClassValue | {};
|
|
274
|
-
footnotes: import("tailwind-variants").ClassValue | {};
|
|
275
|
-
xs: import("tailwind-variants").ClassValue | {};
|
|
276
|
-
};
|
|
277
|
-
font: {
|
|
278
|
-
body: import("tailwind-variants").ClassValue | {};
|
|
279
|
-
};
|
|
280
|
-
weight: {
|
|
281
|
-
normal: import("tailwind-variants").ClassValue | {};
|
|
282
|
-
light: import("tailwind-variants").ClassValue | {};
|
|
283
|
-
bold: import("tailwind-variants").ClassValue | {};
|
|
284
|
-
};
|
|
285
|
-
color: {
|
|
286
|
-
gray: import("tailwind-variants").ClassValue | {};
|
|
287
|
-
white: import("tailwind-variants").ClassValue | {};
|
|
288
|
-
};
|
|
289
|
-
isError: {
|
|
290
|
-
true: import("tailwind-variants").ClassValue | {};
|
|
291
|
-
};
|
|
292
|
-
align: {
|
|
293
|
-
center: import("tailwind-variants").ClassValue | {};
|
|
294
|
-
left: import("tailwind-variants").ClassValue | {};
|
|
295
|
-
right: import("tailwind-variants").ClassValue | {};
|
|
296
|
-
};
|
|
297
|
-
}, {
|
|
298
|
-
size: {
|
|
299
|
-
h1: "text-5xl";
|
|
300
|
-
h2: "text-4xl";
|
|
301
|
-
h3: "text-3xl";
|
|
302
|
-
h4: "text-2xl";
|
|
303
|
-
h5: "text-xl";
|
|
304
|
-
h6: "text-lg";
|
|
305
|
-
leading: "text-md font-bold leading-normal";
|
|
306
|
-
paragraph: "text-md inline";
|
|
307
|
-
footnotes: "text-sm";
|
|
308
|
-
xs: "text-xs";
|
|
309
|
-
};
|
|
310
|
-
font: {
|
|
311
|
-
body: "font-body";
|
|
312
|
-
};
|
|
313
|
-
weight: {
|
|
314
|
-
normal: "font-normal";
|
|
315
|
-
light: "font-light";
|
|
316
|
-
bold: "font-bold";
|
|
317
|
-
};
|
|
318
|
-
color: {
|
|
319
|
-
gray: "text-gray-500";
|
|
320
|
-
white: "text-white";
|
|
321
|
-
};
|
|
322
|
-
isError: {
|
|
323
|
-
true: "text-sm text-error py-3";
|
|
324
|
-
};
|
|
325
|
-
align: {
|
|
326
|
-
center: "text-center";
|
|
327
|
-
left: "text-left";
|
|
328
|
-
right: "text-right";
|
|
329
|
-
};
|
|
330
|
-
}>, {
|
|
331
|
-
size: {
|
|
332
|
-
h1: "text-5xl";
|
|
333
|
-
h2: "text-4xl";
|
|
334
|
-
h3: "text-3xl";
|
|
335
|
-
h4: "text-2xl";
|
|
336
|
-
h5: "text-xl";
|
|
337
|
-
h6: "text-lg";
|
|
338
|
-
leading: "text-md font-bold leading-normal";
|
|
339
|
-
paragraph: "text-md inline";
|
|
340
|
-
footnotes: "text-sm";
|
|
341
|
-
xs: "text-xs";
|
|
342
|
-
};
|
|
343
|
-
font: {
|
|
344
|
-
body: "font-body";
|
|
345
|
-
};
|
|
346
|
-
weight: {
|
|
347
|
-
normal: "font-normal";
|
|
348
|
-
light: "font-light";
|
|
349
|
-
bold: "font-bold";
|
|
350
|
-
};
|
|
351
|
-
color: {
|
|
352
|
-
gray: "text-gray-500";
|
|
353
|
-
white: "text-white";
|
|
354
|
-
};
|
|
355
|
-
isError: {
|
|
356
|
-
true: "text-sm text-error py-3";
|
|
357
|
-
};
|
|
358
|
-
align: {
|
|
359
|
-
center: "text-center";
|
|
360
|
-
left: "text-left";
|
|
361
|
-
right: "text-right";
|
|
362
|
-
};
|
|
363
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
364
|
-
size: {
|
|
365
|
-
h1: "text-5xl";
|
|
366
|
-
h2: "text-4xl";
|
|
367
|
-
h3: "text-3xl";
|
|
368
|
-
h4: "text-2xl";
|
|
369
|
-
h5: "text-xl";
|
|
370
|
-
h6: "text-lg";
|
|
371
|
-
leading: "text-md font-bold leading-normal";
|
|
372
|
-
paragraph: "text-md inline";
|
|
373
|
-
footnotes: "text-sm";
|
|
374
|
-
xs: "text-xs";
|
|
375
|
-
};
|
|
376
|
-
font: {
|
|
377
|
-
body: "font-body";
|
|
378
|
-
};
|
|
379
|
-
weight: {
|
|
380
|
-
normal: "font-normal";
|
|
381
|
-
light: "font-light";
|
|
382
|
-
bold: "font-bold";
|
|
383
|
-
};
|
|
384
|
-
color: {
|
|
385
|
-
gray: "text-gray-500";
|
|
386
|
-
white: "text-white";
|
|
387
|
-
};
|
|
388
|
-
isError: {
|
|
389
|
-
true: "text-sm text-error py-3";
|
|
390
|
-
};
|
|
391
|
-
align: {
|
|
392
|
-
center: "text-center";
|
|
393
|
-
left: "text-left";
|
|
394
|
-
right: "text-right";
|
|
395
|
-
};
|
|
396
|
-
}, undefined, undefined, import("tailwind-variants/dist/config").TVConfig<{
|
|
397
|
-
size: {
|
|
398
|
-
h1: "text-5xl";
|
|
399
|
-
h2: "text-4xl";
|
|
400
|
-
h3: "text-3xl";
|
|
401
|
-
h4: "text-2xl";
|
|
402
|
-
h5: "text-xl";
|
|
403
|
-
h6: "text-lg";
|
|
404
|
-
leading: "text-md font-bold leading-normal";
|
|
405
|
-
paragraph: "text-md inline";
|
|
406
|
-
footnotes: "text-sm";
|
|
407
|
-
xs: "text-xs";
|
|
408
|
-
};
|
|
409
|
-
font: {
|
|
410
|
-
body: "font-body";
|
|
411
|
-
};
|
|
412
|
-
weight: {
|
|
413
|
-
normal: "font-normal";
|
|
414
|
-
light: "font-light";
|
|
415
|
-
bold: "font-bold";
|
|
416
|
-
};
|
|
417
|
-
color: {
|
|
418
|
-
gray: "text-gray-500";
|
|
419
|
-
white: "text-white";
|
|
420
|
-
};
|
|
421
|
-
isError: {
|
|
422
|
-
true: "text-sm text-error py-3";
|
|
423
|
-
};
|
|
424
|
-
align: {
|
|
425
|
-
center: "text-center";
|
|
426
|
-
left: "text-left";
|
|
427
|
-
right: "text-right";
|
|
428
|
-
};
|
|
429
|
-
}, {
|
|
430
|
-
size: {
|
|
431
|
-
h1: "text-5xl";
|
|
432
|
-
h2: "text-4xl";
|
|
433
|
-
h3: "text-3xl";
|
|
434
|
-
h4: "text-2xl";
|
|
435
|
-
h5: "text-xl";
|
|
436
|
-
h6: "text-lg";
|
|
437
|
-
leading: "text-md font-bold leading-normal";
|
|
438
|
-
paragraph: "text-md inline";
|
|
439
|
-
footnotes: "text-sm";
|
|
440
|
-
xs: "text-xs";
|
|
441
|
-
};
|
|
442
|
-
font: {
|
|
443
|
-
body: "font-body";
|
|
444
|
-
};
|
|
445
|
-
weight: {
|
|
446
|
-
normal: "font-normal";
|
|
447
|
-
light: "font-light";
|
|
448
|
-
bold: "font-bold";
|
|
449
|
-
};
|
|
450
|
-
color: {
|
|
451
|
-
gray: "text-gray-500";
|
|
452
|
-
white: "text-white";
|
|
453
|
-
};
|
|
454
|
-
isError: {
|
|
455
|
-
true: "text-sm text-error py-3";
|
|
456
|
-
};
|
|
457
|
-
align: {
|
|
458
|
-
center: "text-center";
|
|
459
|
-
left: "text-left";
|
|
460
|
-
right: "text-right";
|
|
461
|
-
};
|
|
462
|
-
}>, {
|
|
463
|
-
size: {
|
|
464
|
-
h1: "text-5xl";
|
|
465
|
-
h2: "text-4xl";
|
|
466
|
-
h3: "text-3xl";
|
|
467
|
-
h4: "text-2xl";
|
|
468
|
-
h5: "text-xl";
|
|
469
|
-
h6: "text-lg";
|
|
470
|
-
leading: "text-md font-bold leading-normal";
|
|
471
|
-
paragraph: "text-md inline";
|
|
472
|
-
footnotes: "text-sm";
|
|
473
|
-
xs: "text-xs";
|
|
474
|
-
};
|
|
475
|
-
font: {
|
|
476
|
-
body: "font-body";
|
|
477
|
-
};
|
|
478
|
-
weight: {
|
|
479
|
-
normal: "font-normal";
|
|
480
|
-
light: "font-light";
|
|
481
|
-
bold: "font-bold";
|
|
482
|
-
};
|
|
483
|
-
color: {
|
|
484
|
-
gray: "text-gray-500";
|
|
485
|
-
white: "text-white";
|
|
486
|
-
};
|
|
487
|
-
isError: {
|
|
488
|
-
true: "text-sm text-error py-3";
|
|
489
|
-
};
|
|
490
|
-
align: {
|
|
491
|
-
center: "text-center";
|
|
492
|
-
left: "text-left";
|
|
493
|
-
right: "text-right";
|
|
494
|
-
};
|
|
495
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
496
|
-
size: {
|
|
497
|
-
h1: "text-5xl";
|
|
498
|
-
h2: "text-4xl";
|
|
499
|
-
h3: "text-3xl";
|
|
500
|
-
h4: "text-2xl";
|
|
501
|
-
h5: "text-xl";
|
|
502
|
-
h6: "text-lg";
|
|
503
|
-
leading: "text-md font-bold leading-normal";
|
|
504
|
-
paragraph: "text-md inline";
|
|
505
|
-
footnotes: "text-sm";
|
|
506
|
-
xs: "text-xs";
|
|
507
|
-
};
|
|
508
|
-
font: {
|
|
509
|
-
body: "font-body";
|
|
510
|
-
};
|
|
511
|
-
weight: {
|
|
512
|
-
normal: "font-normal";
|
|
513
|
-
light: "font-light";
|
|
514
|
-
bold: "font-bold";
|
|
515
|
-
};
|
|
516
|
-
color: {
|
|
517
|
-
gray: "text-gray-500";
|
|
518
|
-
white: "text-white";
|
|
519
|
-
};
|
|
520
|
-
isError: {
|
|
521
|
-
true: "text-sm text-error py-3";
|
|
522
|
-
};
|
|
523
|
-
align: {
|
|
524
|
-
center: "text-center";
|
|
525
|
-
left: "text-left";
|
|
526
|
-
right: "text-right";
|
|
527
|
-
};
|
|
528
|
-
}, undefined, undefined, import("tailwind-variants/dist/config").TVConfig<{
|
|
529
|
-
size: {
|
|
530
|
-
h1: "text-5xl";
|
|
531
|
-
h2: "text-4xl";
|
|
532
|
-
h3: "text-3xl";
|
|
533
|
-
h4: "text-2xl";
|
|
534
|
-
h5: "text-xl";
|
|
535
|
-
h6: "text-lg";
|
|
536
|
-
leading: "text-md font-bold leading-normal";
|
|
537
|
-
paragraph: "text-md inline";
|
|
538
|
-
footnotes: "text-sm";
|
|
539
|
-
xs: "text-xs";
|
|
540
|
-
};
|
|
541
|
-
font: {
|
|
542
|
-
body: "font-body";
|
|
543
|
-
};
|
|
544
|
-
weight: {
|
|
545
|
-
normal: "font-normal";
|
|
546
|
-
light: "font-light";
|
|
547
|
-
bold: "font-bold";
|
|
548
|
-
};
|
|
549
|
-
color: {
|
|
550
|
-
gray: "text-gray-500";
|
|
551
|
-
white: "text-white";
|
|
552
|
-
};
|
|
553
|
-
isError: {
|
|
554
|
-
true: "text-sm text-error py-3";
|
|
555
|
-
};
|
|
556
|
-
align: {
|
|
557
|
-
center: "text-center";
|
|
558
|
-
left: "text-left";
|
|
559
|
-
right: "text-right";
|
|
560
|
-
};
|
|
561
|
-
}, {
|
|
562
|
-
size: {
|
|
563
|
-
h1: "text-5xl";
|
|
564
|
-
h2: "text-4xl";
|
|
565
|
-
h3: "text-3xl";
|
|
566
|
-
h4: "text-2xl";
|
|
567
|
-
h5: "text-xl";
|
|
568
|
-
h6: "text-lg";
|
|
569
|
-
leading: "text-md font-bold leading-normal";
|
|
570
|
-
paragraph: "text-md inline";
|
|
571
|
-
footnotes: "text-sm";
|
|
572
|
-
xs: "text-xs";
|
|
573
|
-
};
|
|
574
|
-
font: {
|
|
575
|
-
body: "font-body";
|
|
576
|
-
};
|
|
577
|
-
weight: {
|
|
578
|
-
normal: "font-normal";
|
|
579
|
-
light: "font-light";
|
|
580
|
-
bold: "font-bold";
|
|
581
|
-
};
|
|
582
|
-
color: {
|
|
583
|
-
gray: "text-gray-500";
|
|
584
|
-
white: "text-white";
|
|
585
|
-
};
|
|
586
|
-
isError: {
|
|
587
|
-
true: "text-sm text-error py-3";
|
|
588
|
-
};
|
|
589
|
-
align: {
|
|
590
|
-
center: "text-center";
|
|
591
|
-
left: "text-left";
|
|
592
|
-
right: "text-right";
|
|
593
|
-
};
|
|
594
|
-
}>, unknown, unknown, undefined>>>;
|
|
595
|
-
content: import("tailwind-variants").TVReturnType<{} | {
|
|
596
|
-
size: {
|
|
597
|
-
h1: import("tailwind-variants").ClassValue | {};
|
|
598
|
-
h2: import("tailwind-variants").ClassValue | {};
|
|
599
|
-
h3: import("tailwind-variants").ClassValue | {};
|
|
600
|
-
h4: import("tailwind-variants").ClassValue | {};
|
|
601
|
-
h5: import("tailwind-variants").ClassValue | {};
|
|
602
|
-
h6: import("tailwind-variants").ClassValue | {};
|
|
603
|
-
leading: import("tailwind-variants").ClassValue | {};
|
|
604
|
-
paragraph: import("tailwind-variants").ClassValue | {};
|
|
605
|
-
footnotes: import("tailwind-variants").ClassValue | {};
|
|
606
|
-
xs: import("tailwind-variants").ClassValue | {};
|
|
607
|
-
};
|
|
608
|
-
font: {
|
|
609
|
-
body: import("tailwind-variants").ClassValue | {};
|
|
610
|
-
};
|
|
611
|
-
weight: {
|
|
612
|
-
normal: import("tailwind-variants").ClassValue | {};
|
|
613
|
-
light: import("tailwind-variants").ClassValue | {};
|
|
614
|
-
bold: import("tailwind-variants").ClassValue | {};
|
|
615
|
-
};
|
|
616
|
-
color: {
|
|
617
|
-
gray: import("tailwind-variants").ClassValue | {};
|
|
618
|
-
white: import("tailwind-variants").ClassValue | {};
|
|
619
|
-
};
|
|
620
|
-
isError: {
|
|
621
|
-
true: import("tailwind-variants").ClassValue | {};
|
|
622
|
-
};
|
|
623
|
-
align: {
|
|
624
|
-
center: import("tailwind-variants").ClassValue | {};
|
|
625
|
-
left: import("tailwind-variants").ClassValue | {};
|
|
626
|
-
right: import("tailwind-variants").ClassValue | {};
|
|
627
|
-
};
|
|
628
|
-
}, undefined, undefined, import("tailwind-variants/dist/config").TVConfig<{} | {
|
|
629
|
-
size: {
|
|
630
|
-
h1: import("tailwind-variants").ClassValue | {};
|
|
631
|
-
h2: import("tailwind-variants").ClassValue | {};
|
|
632
|
-
h3: import("tailwind-variants").ClassValue | {};
|
|
633
|
-
h4: import("tailwind-variants").ClassValue | {};
|
|
634
|
-
h5: import("tailwind-variants").ClassValue | {};
|
|
635
|
-
h6: import("tailwind-variants").ClassValue | {};
|
|
636
|
-
leading: import("tailwind-variants").ClassValue | {};
|
|
637
|
-
paragraph: import("tailwind-variants").ClassValue | {};
|
|
638
|
-
footnotes: import("tailwind-variants").ClassValue | {};
|
|
639
|
-
xs: import("tailwind-variants").ClassValue | {};
|
|
640
|
-
};
|
|
641
|
-
font: {
|
|
642
|
-
body: import("tailwind-variants").ClassValue | {};
|
|
643
|
-
};
|
|
644
|
-
weight: {
|
|
645
|
-
normal: import("tailwind-variants").ClassValue | {};
|
|
646
|
-
light: import("tailwind-variants").ClassValue | {};
|
|
647
|
-
bold: import("tailwind-variants").ClassValue | {};
|
|
648
|
-
};
|
|
649
|
-
color: {
|
|
650
|
-
gray: import("tailwind-variants").ClassValue | {};
|
|
651
|
-
white: import("tailwind-variants").ClassValue | {};
|
|
652
|
-
};
|
|
653
|
-
isError: {
|
|
654
|
-
true: import("tailwind-variants").ClassValue | {};
|
|
655
|
-
};
|
|
656
|
-
align: {
|
|
657
|
-
center: import("tailwind-variants").ClassValue | {};
|
|
658
|
-
left: import("tailwind-variants").ClassValue | {};
|
|
659
|
-
right: import("tailwind-variants").ClassValue | {};
|
|
660
|
-
};
|
|
661
|
-
}, {
|
|
662
|
-
size: {
|
|
663
|
-
h1: "text-5xl";
|
|
664
|
-
h2: "text-4xl";
|
|
665
|
-
h3: "text-3xl";
|
|
666
|
-
h4: "text-2xl";
|
|
667
|
-
h5: "text-xl";
|
|
668
|
-
h6: "text-lg";
|
|
669
|
-
leading: "text-md font-bold leading-normal";
|
|
670
|
-
paragraph: "text-md inline";
|
|
671
|
-
footnotes: "text-sm";
|
|
672
|
-
xs: "text-xs";
|
|
673
|
-
};
|
|
674
|
-
font: {
|
|
675
|
-
body: "font-body";
|
|
676
|
-
};
|
|
677
|
-
weight: {
|
|
678
|
-
normal: "font-normal";
|
|
679
|
-
light: "font-light";
|
|
680
|
-
bold: "font-bold";
|
|
681
|
-
};
|
|
682
|
-
color: {
|
|
683
|
-
gray: "text-gray-500";
|
|
684
|
-
white: "text-white";
|
|
685
|
-
};
|
|
686
|
-
isError: {
|
|
687
|
-
true: "text-sm text-error py-3";
|
|
688
|
-
};
|
|
689
|
-
align: {
|
|
690
|
-
center: "text-center";
|
|
691
|
-
left: "text-left";
|
|
692
|
-
right: "text-right";
|
|
693
|
-
};
|
|
694
|
-
}>, {
|
|
695
|
-
size: {
|
|
696
|
-
h1: "text-5xl";
|
|
697
|
-
h2: "text-4xl";
|
|
698
|
-
h3: "text-3xl";
|
|
699
|
-
h4: "text-2xl";
|
|
700
|
-
h5: "text-xl";
|
|
701
|
-
h6: "text-lg";
|
|
702
|
-
leading: "text-md font-bold leading-normal";
|
|
703
|
-
paragraph: "text-md inline";
|
|
704
|
-
footnotes: "text-sm";
|
|
705
|
-
xs: "text-xs";
|
|
706
|
-
};
|
|
707
|
-
font: {
|
|
708
|
-
body: "font-body";
|
|
709
|
-
};
|
|
710
|
-
weight: {
|
|
711
|
-
normal: "font-normal";
|
|
712
|
-
light: "font-light";
|
|
713
|
-
bold: "font-bold";
|
|
714
|
-
};
|
|
715
|
-
color: {
|
|
716
|
-
gray: "text-gray-500";
|
|
717
|
-
white: "text-white";
|
|
718
|
-
};
|
|
719
|
-
isError: {
|
|
720
|
-
true: "text-sm text-error py-3";
|
|
721
|
-
};
|
|
722
|
-
align: {
|
|
723
|
-
center: "text-center";
|
|
724
|
-
left: "text-left";
|
|
725
|
-
right: "text-right";
|
|
726
|
-
};
|
|
727
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
728
|
-
size: {
|
|
729
|
-
h1: "text-5xl";
|
|
730
|
-
h2: "text-4xl";
|
|
731
|
-
h3: "text-3xl";
|
|
732
|
-
h4: "text-2xl";
|
|
733
|
-
h5: "text-xl";
|
|
734
|
-
h6: "text-lg";
|
|
735
|
-
leading: "text-md font-bold leading-normal";
|
|
736
|
-
paragraph: "text-md inline";
|
|
737
|
-
footnotes: "text-sm";
|
|
738
|
-
xs: "text-xs";
|
|
739
|
-
};
|
|
740
|
-
font: {
|
|
741
|
-
body: "font-body";
|
|
742
|
-
};
|
|
743
|
-
weight: {
|
|
744
|
-
normal: "font-normal";
|
|
745
|
-
light: "font-light";
|
|
746
|
-
bold: "font-bold";
|
|
747
|
-
};
|
|
748
|
-
color: {
|
|
749
|
-
gray: "text-gray-500";
|
|
750
|
-
white: "text-white";
|
|
751
|
-
};
|
|
752
|
-
isError: {
|
|
753
|
-
true: "text-sm text-error py-3";
|
|
754
|
-
};
|
|
755
|
-
align: {
|
|
756
|
-
center: "text-center";
|
|
757
|
-
left: "text-left";
|
|
758
|
-
right: "text-right";
|
|
759
|
-
};
|
|
760
|
-
}, undefined, undefined, import("tailwind-variants/dist/config").TVConfig<{
|
|
761
|
-
size: {
|
|
762
|
-
h1: "text-5xl";
|
|
763
|
-
h2: "text-4xl";
|
|
764
|
-
h3: "text-3xl";
|
|
765
|
-
h4: "text-2xl";
|
|
766
|
-
h5: "text-xl";
|
|
767
|
-
h6: "text-lg";
|
|
768
|
-
leading: "text-md font-bold leading-normal";
|
|
769
|
-
paragraph: "text-md inline";
|
|
770
|
-
footnotes: "text-sm";
|
|
771
|
-
xs: "text-xs";
|
|
772
|
-
};
|
|
773
|
-
font: {
|
|
774
|
-
body: "font-body";
|
|
775
|
-
};
|
|
776
|
-
weight: {
|
|
777
|
-
normal: "font-normal";
|
|
778
|
-
light: "font-light";
|
|
779
|
-
bold: "font-bold";
|
|
780
|
-
};
|
|
781
|
-
color: {
|
|
782
|
-
gray: "text-gray-500";
|
|
783
|
-
white: "text-white";
|
|
784
|
-
};
|
|
785
|
-
isError: {
|
|
786
|
-
true: "text-sm text-error py-3";
|
|
787
|
-
};
|
|
788
|
-
align: {
|
|
789
|
-
center: "text-center";
|
|
790
|
-
left: "text-left";
|
|
791
|
-
right: "text-right";
|
|
792
|
-
};
|
|
793
|
-
}, {
|
|
794
|
-
size: {
|
|
795
|
-
h1: "text-5xl";
|
|
796
|
-
h2: "text-4xl";
|
|
797
|
-
h3: "text-3xl";
|
|
798
|
-
h4: "text-2xl";
|
|
799
|
-
h5: "text-xl";
|
|
800
|
-
h6: "text-lg";
|
|
801
|
-
leading: "text-md font-bold leading-normal";
|
|
802
|
-
paragraph: "text-md inline";
|
|
803
|
-
footnotes: "text-sm";
|
|
804
|
-
xs: "text-xs";
|
|
805
|
-
};
|
|
806
|
-
font: {
|
|
807
|
-
body: "font-body";
|
|
808
|
-
};
|
|
809
|
-
weight: {
|
|
810
|
-
normal: "font-normal";
|
|
811
|
-
light: "font-light";
|
|
812
|
-
bold: "font-bold";
|
|
813
|
-
};
|
|
814
|
-
color: {
|
|
815
|
-
gray: "text-gray-500";
|
|
816
|
-
white: "text-white";
|
|
817
|
-
};
|
|
818
|
-
isError: {
|
|
819
|
-
true: "text-sm text-error py-3";
|
|
820
|
-
};
|
|
821
|
-
align: {
|
|
822
|
-
center: "text-center";
|
|
823
|
-
left: "text-left";
|
|
824
|
-
right: "text-right";
|
|
825
|
-
};
|
|
826
|
-
}>, {
|
|
827
|
-
size: {
|
|
828
|
-
h1: "text-5xl";
|
|
829
|
-
h2: "text-4xl";
|
|
830
|
-
h3: "text-3xl";
|
|
831
|
-
h4: "text-2xl";
|
|
832
|
-
h5: "text-xl";
|
|
833
|
-
h6: "text-lg";
|
|
834
|
-
leading: "text-md font-bold leading-normal";
|
|
835
|
-
paragraph: "text-md inline";
|
|
836
|
-
footnotes: "text-sm";
|
|
837
|
-
xs: "text-xs";
|
|
838
|
-
};
|
|
839
|
-
font: {
|
|
840
|
-
body: "font-body";
|
|
841
|
-
};
|
|
842
|
-
weight: {
|
|
843
|
-
normal: "font-normal";
|
|
844
|
-
light: "font-light";
|
|
845
|
-
bold: "font-bold";
|
|
846
|
-
};
|
|
847
|
-
color: {
|
|
848
|
-
gray: "text-gray-500";
|
|
849
|
-
white: "text-white";
|
|
850
|
-
};
|
|
851
|
-
isError: {
|
|
852
|
-
true: "text-sm text-error py-3";
|
|
853
|
-
};
|
|
854
|
-
align: {
|
|
855
|
-
center: "text-center";
|
|
856
|
-
left: "text-left";
|
|
857
|
-
right: "text-right";
|
|
858
|
-
};
|
|
859
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
860
|
-
size: {
|
|
861
|
-
h1: "text-5xl";
|
|
862
|
-
h2: "text-4xl";
|
|
863
|
-
h3: "text-3xl";
|
|
864
|
-
h4: "text-2xl";
|
|
865
|
-
h5: "text-xl";
|
|
866
|
-
h6: "text-lg";
|
|
867
|
-
leading: "text-md font-bold leading-normal";
|
|
868
|
-
paragraph: "text-md inline";
|
|
869
|
-
footnotes: "text-sm";
|
|
870
|
-
xs: "text-xs";
|
|
871
|
-
};
|
|
872
|
-
font: {
|
|
873
|
-
body: "font-body";
|
|
874
|
-
};
|
|
875
|
-
weight: {
|
|
876
|
-
normal: "font-normal";
|
|
877
|
-
light: "font-light";
|
|
878
|
-
bold: "font-bold";
|
|
879
|
-
};
|
|
880
|
-
color: {
|
|
881
|
-
gray: "text-gray-500";
|
|
882
|
-
white: "text-white";
|
|
883
|
-
};
|
|
884
|
-
isError: {
|
|
885
|
-
true: "text-sm text-error py-3";
|
|
886
|
-
};
|
|
887
|
-
align: {
|
|
888
|
-
center: "text-center";
|
|
889
|
-
left: "text-left";
|
|
890
|
-
right: "text-right";
|
|
891
|
-
};
|
|
892
|
-
}, undefined, undefined, import("tailwind-variants/dist/config").TVConfig<{
|
|
893
|
-
size: {
|
|
894
|
-
h1: "text-5xl";
|
|
895
|
-
h2: "text-4xl";
|
|
896
|
-
h3: "text-3xl";
|
|
897
|
-
h4: "text-2xl";
|
|
898
|
-
h5: "text-xl";
|
|
899
|
-
h6: "text-lg";
|
|
900
|
-
leading: "text-md font-bold leading-normal";
|
|
901
|
-
paragraph: "text-md inline";
|
|
902
|
-
footnotes: "text-sm";
|
|
903
|
-
xs: "text-xs";
|
|
904
|
-
};
|
|
905
|
-
font: {
|
|
906
|
-
body: "font-body";
|
|
907
|
-
};
|
|
908
|
-
weight: {
|
|
909
|
-
normal: "font-normal";
|
|
910
|
-
light: "font-light";
|
|
911
|
-
bold: "font-bold";
|
|
912
|
-
};
|
|
913
|
-
color: {
|
|
914
|
-
gray: "text-gray-500";
|
|
915
|
-
white: "text-white";
|
|
916
|
-
};
|
|
917
|
-
isError: {
|
|
918
|
-
true: "text-sm text-error py-3";
|
|
919
|
-
};
|
|
920
|
-
align: {
|
|
921
|
-
center: "text-center";
|
|
922
|
-
left: "text-left";
|
|
923
|
-
right: "text-right";
|
|
924
|
-
};
|
|
925
|
-
}, {
|
|
926
|
-
size: {
|
|
927
|
-
h1: "text-5xl";
|
|
928
|
-
h2: "text-4xl";
|
|
929
|
-
h3: "text-3xl";
|
|
930
|
-
h4: "text-2xl";
|
|
931
|
-
h5: "text-xl";
|
|
932
|
-
h6: "text-lg";
|
|
933
|
-
leading: "text-md font-bold leading-normal";
|
|
934
|
-
paragraph: "text-md inline";
|
|
935
|
-
footnotes: "text-sm";
|
|
936
|
-
xs: "text-xs";
|
|
937
|
-
};
|
|
938
|
-
font: {
|
|
939
|
-
body: "font-body";
|
|
940
|
-
};
|
|
941
|
-
weight: {
|
|
942
|
-
normal: "font-normal";
|
|
943
|
-
light: "font-light";
|
|
944
|
-
bold: "font-bold";
|
|
945
|
-
};
|
|
946
|
-
color: {
|
|
947
|
-
gray: "text-gray-500";
|
|
948
|
-
white: "text-white";
|
|
949
|
-
};
|
|
950
|
-
isError: {
|
|
951
|
-
true: "text-sm text-error py-3";
|
|
952
|
-
};
|
|
953
|
-
align: {
|
|
954
|
-
center: "text-center";
|
|
955
|
-
left: "text-left";
|
|
956
|
-
right: "text-right";
|
|
957
|
-
};
|
|
958
|
-
}>, unknown, unknown, undefined>>>;
|
|
959
|
-
icon: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "block w-min bg-color-1-400 p-2 rounded-lg", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "block w-min bg-color-1-400 p-2 rounded-lg", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
960
|
-
};
|
|
961
|
-
navigation: {
|
|
962
|
-
button: import("tailwind-variants").TVReturnType<{
|
|
963
|
-
order: {
|
|
964
|
-
prev: "order-1";
|
|
965
|
-
next: "order-3";
|
|
966
|
-
};
|
|
967
|
-
}, undefined, undefined, import("tailwind-variants/dist/config").TVConfig<{
|
|
968
|
-
order: {
|
|
969
|
-
prev: "order-1";
|
|
970
|
-
next: "order-3";
|
|
971
|
-
};
|
|
972
|
-
}, {
|
|
973
|
-
buttonStyle: {
|
|
974
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
975
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
976
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
977
|
-
};
|
|
978
|
-
intent: {
|
|
979
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
980
|
-
};
|
|
981
|
-
size: {
|
|
982
|
-
default: "min-w-12 min-h-6";
|
|
983
|
-
large: "min-w-36 min-h-18";
|
|
984
|
-
};
|
|
985
|
-
shape: {
|
|
986
|
-
rounded: "rounded-md";
|
|
987
|
-
circular: "rounded-full";
|
|
988
|
-
};
|
|
989
|
-
}>, {
|
|
990
|
-
buttonStyle: {
|
|
991
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
992
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
993
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
994
|
-
};
|
|
995
|
-
intent: {
|
|
996
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
997
|
-
};
|
|
998
|
-
size: {
|
|
999
|
-
default: "min-w-12 min-h-6";
|
|
1000
|
-
large: "min-w-36 min-h-18";
|
|
1001
|
-
};
|
|
1002
|
-
shape: {
|
|
1003
|
-
rounded: "rounded-md";
|
|
1004
|
-
circular: "rounded-full";
|
|
1005
|
-
};
|
|
1006
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
1007
|
-
buttonStyle: {
|
|
1008
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
1009
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
1010
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
1011
|
-
};
|
|
1012
|
-
intent: {
|
|
1013
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
1014
|
-
};
|
|
1015
|
-
size: {
|
|
1016
|
-
default: "min-w-12 min-h-6";
|
|
1017
|
-
large: "min-w-36 min-h-18";
|
|
1018
|
-
};
|
|
1019
|
-
shape: {
|
|
1020
|
-
rounded: "rounded-md";
|
|
1021
|
-
circular: "rounded-full";
|
|
1022
|
-
};
|
|
1023
|
-
}, undefined, "\n flex\n items-center\n justify-center\n gap-4\n transition\n duration-300\n ease-in-out\n disabled:pointer-events-none\n disabled:opacity-30\n focus-ring-black\n ", import("tailwind-variants/dist/config").TVConfig<{
|
|
1024
|
-
buttonStyle: {
|
|
1025
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
1026
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
1027
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
1028
|
-
};
|
|
1029
|
-
intent: {
|
|
1030
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
1031
|
-
};
|
|
1032
|
-
size: {
|
|
1033
|
-
default: "min-w-12 min-h-6";
|
|
1034
|
-
large: "min-w-36 min-h-18";
|
|
1035
|
-
};
|
|
1036
|
-
shape: {
|
|
1037
|
-
rounded: "rounded-md";
|
|
1038
|
-
circular: "rounded-full";
|
|
1039
|
-
};
|
|
1040
|
-
}, {
|
|
1041
|
-
buttonStyle: {
|
|
1042
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
1043
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
1044
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
1045
|
-
};
|
|
1046
|
-
intent: {
|
|
1047
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
1048
|
-
};
|
|
1049
|
-
size: {
|
|
1050
|
-
default: "min-w-12 min-h-6";
|
|
1051
|
-
large: "min-w-36 min-h-18";
|
|
1052
|
-
};
|
|
1053
|
-
shape: {
|
|
1054
|
-
rounded: "rounded-md";
|
|
1055
|
-
circular: "rounded-full";
|
|
1056
|
-
};
|
|
1057
|
-
}>, {
|
|
1058
|
-
buttonStyle: {
|
|
1059
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
1060
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
1061
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
1062
|
-
};
|
|
1063
|
-
intent: {
|
|
1064
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
1065
|
-
};
|
|
1066
|
-
size: {
|
|
1067
|
-
default: "min-w-12 min-h-6";
|
|
1068
|
-
large: "min-w-36 min-h-18";
|
|
1069
|
-
};
|
|
1070
|
-
shape: {
|
|
1071
|
-
rounded: "rounded-md";
|
|
1072
|
-
circular: "rounded-full";
|
|
1073
|
-
};
|
|
1074
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
1075
|
-
buttonStyle: {
|
|
1076
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
1077
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
1078
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
1079
|
-
};
|
|
1080
|
-
intent: {
|
|
1081
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
1082
|
-
};
|
|
1083
|
-
size: {
|
|
1084
|
-
default: "min-w-12 min-h-6";
|
|
1085
|
-
large: "min-w-36 min-h-18";
|
|
1086
|
-
};
|
|
1087
|
-
shape: {
|
|
1088
|
-
rounded: "rounded-md";
|
|
1089
|
-
circular: "rounded-full";
|
|
1090
|
-
};
|
|
1091
|
-
}, undefined, "\n flex\n items-center\n justify-center\n gap-4\n transition\n duration-300\n ease-in-out\n disabled:pointer-events-none\n disabled:opacity-30\n focus-ring-black\n ", import("tailwind-variants/dist/config").TVConfig<{
|
|
1092
|
-
buttonStyle: {
|
|
1093
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
1094
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
1095
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
1096
|
-
};
|
|
1097
|
-
intent: {
|
|
1098
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
1099
|
-
};
|
|
1100
|
-
size: {
|
|
1101
|
-
default: "min-w-12 min-h-6";
|
|
1102
|
-
large: "min-w-36 min-h-18";
|
|
1103
|
-
};
|
|
1104
|
-
shape: {
|
|
1105
|
-
rounded: "rounded-md";
|
|
1106
|
-
circular: "rounded-full";
|
|
1107
|
-
};
|
|
1108
|
-
}, {
|
|
1109
|
-
buttonStyle: {
|
|
1110
|
-
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
1111
|
-
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
1112
|
-
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
1113
|
-
};
|
|
1114
|
-
intent: {
|
|
1115
|
-
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
1116
|
-
};
|
|
1117
|
-
size: {
|
|
1118
|
-
default: "min-w-12 min-h-6";
|
|
1119
|
-
large: "min-w-36 min-h-18";
|
|
1120
|
-
};
|
|
1121
|
-
shape: {
|
|
1122
|
-
rounded: "rounded-md";
|
|
1123
|
-
circular: "rounded-full";
|
|
1124
|
-
};
|
|
1125
|
-
}>, unknown, unknown, undefined>>>;
|
|
1126
|
-
};
|
|
1127
|
-
pagination: {
|
|
1128
|
-
wrapper: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex gap-4 justify-center absolute z-10 bottom-4 left-0 right-0", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex gap-4 justify-center absolute z-10 bottom-4 left-0 right-0", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
1129
|
-
bullet: import("tailwind-variants").TVReturnType<{
|
|
1130
|
-
active: {
|
|
1131
|
-
true: "bg-color-1-100";
|
|
1132
|
-
false: "";
|
|
1133
|
-
};
|
|
1134
|
-
}, undefined, "w-4 h-4 rounded-full block bg-color-1-600 focus-ring-black", import("tailwind-variants/dist/config").TVConfig<{
|
|
1135
|
-
active: {
|
|
1136
|
-
true: "bg-color-1-100";
|
|
1137
|
-
false: "";
|
|
1138
|
-
};
|
|
1139
|
-
}, {
|
|
1140
|
-
active: {
|
|
1141
|
-
true: "bg-color-1-100";
|
|
1142
|
-
false: "";
|
|
1143
|
-
};
|
|
1144
|
-
}>, {
|
|
1145
|
-
active: {
|
|
1146
|
-
true: "bg-color-1-100";
|
|
1147
|
-
false: "";
|
|
1148
|
-
};
|
|
1149
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
1150
|
-
active: {
|
|
1151
|
-
true: "bg-color-1-100";
|
|
1152
|
-
false: "";
|
|
1153
|
-
};
|
|
1154
|
-
}, undefined, "w-4 h-4 rounded-full block bg-color-1-600 focus-ring-black", import("tailwind-variants/dist/config").TVConfig<{
|
|
1155
|
-
active: {
|
|
1156
|
-
true: "bg-color-1-100";
|
|
1157
|
-
false: "";
|
|
1158
|
-
};
|
|
1159
|
-
}, {
|
|
1160
|
-
active: {
|
|
1161
|
-
true: "bg-color-1-100";
|
|
1162
|
-
false: "";
|
|
1163
|
-
};
|
|
1164
|
-
}>, unknown, unknown, undefined>>;
|
|
1165
|
-
};
|
|
1166
|
-
};
|
|
1167
|
-
export default alertsTheme;
|