@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
|
@@ -1,455 +0,0 @@
|
|
|
1
|
-
declare const lightboxTheme: {
|
|
2
|
-
wrapper: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
3
|
-
container: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "rounded-3xl overflow-hidden", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "rounded-3xl overflow-hidden", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
4
|
-
label: import("tailwind-variants").TVReturnType<{} | {
|
|
5
|
-
size: {
|
|
6
|
-
h1: import("tailwind-variants").ClassValue | {
|
|
7
|
-
base?: import("tailwind-variants").ClassValue;
|
|
8
|
-
};
|
|
9
|
-
h2: import("tailwind-variants").ClassValue | {
|
|
10
|
-
base?: import("tailwind-variants").ClassValue;
|
|
11
|
-
};
|
|
12
|
-
h3: import("tailwind-variants").ClassValue | {
|
|
13
|
-
base?: import("tailwind-variants").ClassValue;
|
|
14
|
-
};
|
|
15
|
-
h4: import("tailwind-variants").ClassValue | {
|
|
16
|
-
base?: import("tailwind-variants").ClassValue;
|
|
17
|
-
};
|
|
18
|
-
h5: import("tailwind-variants").ClassValue | {
|
|
19
|
-
base?: import("tailwind-variants").ClassValue;
|
|
20
|
-
};
|
|
21
|
-
h6: import("tailwind-variants").ClassValue | {
|
|
22
|
-
base?: import("tailwind-variants").ClassValue;
|
|
23
|
-
};
|
|
24
|
-
leading: import("tailwind-variants").ClassValue | {
|
|
25
|
-
base?: import("tailwind-variants").ClassValue;
|
|
26
|
-
};
|
|
27
|
-
paragraph: import("tailwind-variants").ClassValue | {
|
|
28
|
-
base?: import("tailwind-variants").ClassValue;
|
|
29
|
-
};
|
|
30
|
-
footnotes: import("tailwind-variants").ClassValue | {
|
|
31
|
-
base?: import("tailwind-variants").ClassValue;
|
|
32
|
-
};
|
|
33
|
-
xs: import("tailwind-variants").ClassValue | {
|
|
34
|
-
base?: import("tailwind-variants").ClassValue;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
font: {
|
|
38
|
-
body: import("tailwind-variants").ClassValue | {
|
|
39
|
-
base?: import("tailwind-variants").ClassValue;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
weight: {
|
|
43
|
-
normal: import("tailwind-variants").ClassValue | {
|
|
44
|
-
base?: import("tailwind-variants").ClassValue;
|
|
45
|
-
};
|
|
46
|
-
light: import("tailwind-variants").ClassValue | {
|
|
47
|
-
base?: import("tailwind-variants").ClassValue;
|
|
48
|
-
};
|
|
49
|
-
bold: import("tailwind-variants").ClassValue | {
|
|
50
|
-
base?: import("tailwind-variants").ClassValue;
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
|
-
color: {
|
|
54
|
-
gray: import("tailwind-variants").ClassValue | {
|
|
55
|
-
base?: import("tailwind-variants").ClassValue;
|
|
56
|
-
};
|
|
57
|
-
white: import("tailwind-variants").ClassValue | {
|
|
58
|
-
base?: import("tailwind-variants").ClassValue;
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
isError: {
|
|
62
|
-
true: import("tailwind-variants").ClassValue | {
|
|
63
|
-
base?: import("tailwind-variants").ClassValue;
|
|
64
|
-
};
|
|
65
|
-
};
|
|
66
|
-
align: {
|
|
67
|
-
center: import("tailwind-variants").ClassValue | {
|
|
68
|
-
base?: import("tailwind-variants").ClassValue;
|
|
69
|
-
};
|
|
70
|
-
left: import("tailwind-variants").ClassValue | {
|
|
71
|
-
base?: import("tailwind-variants").ClassValue;
|
|
72
|
-
};
|
|
73
|
-
right: import("tailwind-variants").ClassValue | {
|
|
74
|
-
base?: import("tailwind-variants").ClassValue;
|
|
75
|
-
};
|
|
76
|
-
};
|
|
77
|
-
}, undefined, "sr-only", import("tailwind-variants/dist/config").TVConfig<{} | {
|
|
78
|
-
size: {
|
|
79
|
-
h1: import("tailwind-variants").ClassValue | {
|
|
80
|
-
base?: import("tailwind-variants").ClassValue;
|
|
81
|
-
};
|
|
82
|
-
h2: import("tailwind-variants").ClassValue | {
|
|
83
|
-
base?: import("tailwind-variants").ClassValue;
|
|
84
|
-
};
|
|
85
|
-
h3: import("tailwind-variants").ClassValue | {
|
|
86
|
-
base?: import("tailwind-variants").ClassValue;
|
|
87
|
-
};
|
|
88
|
-
h4: import("tailwind-variants").ClassValue | {
|
|
89
|
-
base?: import("tailwind-variants").ClassValue;
|
|
90
|
-
};
|
|
91
|
-
h5: import("tailwind-variants").ClassValue | {
|
|
92
|
-
base?: import("tailwind-variants").ClassValue;
|
|
93
|
-
};
|
|
94
|
-
h6: import("tailwind-variants").ClassValue | {
|
|
95
|
-
base?: import("tailwind-variants").ClassValue;
|
|
96
|
-
};
|
|
97
|
-
leading: import("tailwind-variants").ClassValue | {
|
|
98
|
-
base?: import("tailwind-variants").ClassValue;
|
|
99
|
-
};
|
|
100
|
-
paragraph: import("tailwind-variants").ClassValue | {
|
|
101
|
-
base?: import("tailwind-variants").ClassValue;
|
|
102
|
-
};
|
|
103
|
-
footnotes: import("tailwind-variants").ClassValue | {
|
|
104
|
-
base?: import("tailwind-variants").ClassValue;
|
|
105
|
-
};
|
|
106
|
-
xs: import("tailwind-variants").ClassValue | {
|
|
107
|
-
base?: import("tailwind-variants").ClassValue;
|
|
108
|
-
};
|
|
109
|
-
};
|
|
110
|
-
font: {
|
|
111
|
-
body: import("tailwind-variants").ClassValue | {
|
|
112
|
-
base?: import("tailwind-variants").ClassValue;
|
|
113
|
-
};
|
|
114
|
-
};
|
|
115
|
-
weight: {
|
|
116
|
-
normal: import("tailwind-variants").ClassValue | {
|
|
117
|
-
base?: import("tailwind-variants").ClassValue;
|
|
118
|
-
};
|
|
119
|
-
light: import("tailwind-variants").ClassValue | {
|
|
120
|
-
base?: import("tailwind-variants").ClassValue;
|
|
121
|
-
};
|
|
122
|
-
bold: import("tailwind-variants").ClassValue | {
|
|
123
|
-
base?: import("tailwind-variants").ClassValue;
|
|
124
|
-
};
|
|
125
|
-
};
|
|
126
|
-
color: {
|
|
127
|
-
gray: import("tailwind-variants").ClassValue | {
|
|
128
|
-
base?: import("tailwind-variants").ClassValue;
|
|
129
|
-
};
|
|
130
|
-
white: import("tailwind-variants").ClassValue | {
|
|
131
|
-
base?: import("tailwind-variants").ClassValue;
|
|
132
|
-
};
|
|
133
|
-
};
|
|
134
|
-
isError: {
|
|
135
|
-
true: import("tailwind-variants").ClassValue | {
|
|
136
|
-
base?: import("tailwind-variants").ClassValue;
|
|
137
|
-
};
|
|
138
|
-
};
|
|
139
|
-
align: {
|
|
140
|
-
center: import("tailwind-variants").ClassValue | {
|
|
141
|
-
base?: import("tailwind-variants").ClassValue;
|
|
142
|
-
};
|
|
143
|
-
left: import("tailwind-variants").ClassValue | {
|
|
144
|
-
base?: import("tailwind-variants").ClassValue;
|
|
145
|
-
};
|
|
146
|
-
right: import("tailwind-variants").ClassValue | {
|
|
147
|
-
base?: import("tailwind-variants").ClassValue;
|
|
148
|
-
};
|
|
149
|
-
};
|
|
150
|
-
}, {
|
|
151
|
-
size: {
|
|
152
|
-
h1: "text-5xl";
|
|
153
|
-
h2: "text-4xl";
|
|
154
|
-
h3: "text-3xl";
|
|
155
|
-
h4: "text-2xl";
|
|
156
|
-
h5: "text-xl";
|
|
157
|
-
h6: "text-lg";
|
|
158
|
-
leading: "text-md font-bold leading-normal";
|
|
159
|
-
paragraph: "text-md inline";
|
|
160
|
-
footnotes: "text-sm";
|
|
161
|
-
xs: "text-xs";
|
|
162
|
-
};
|
|
163
|
-
font: {
|
|
164
|
-
body: "font-body";
|
|
165
|
-
};
|
|
166
|
-
weight: {
|
|
167
|
-
normal: "font-normal";
|
|
168
|
-
light: "font-light";
|
|
169
|
-
bold: "font-bold";
|
|
170
|
-
};
|
|
171
|
-
color: {
|
|
172
|
-
gray: "text-gray-500";
|
|
173
|
-
white: "text-white";
|
|
174
|
-
};
|
|
175
|
-
isError: {
|
|
176
|
-
true: "text-sm text-error py-3";
|
|
177
|
-
};
|
|
178
|
-
align: {
|
|
179
|
-
center: "text-center";
|
|
180
|
-
left: "text-left";
|
|
181
|
-
right: "text-right";
|
|
182
|
-
};
|
|
183
|
-
}>, {
|
|
184
|
-
size: {
|
|
185
|
-
h1: "text-5xl";
|
|
186
|
-
h2: "text-4xl";
|
|
187
|
-
h3: "text-3xl";
|
|
188
|
-
h4: "text-2xl";
|
|
189
|
-
h5: "text-xl";
|
|
190
|
-
h6: "text-lg";
|
|
191
|
-
leading: "text-md font-bold leading-normal";
|
|
192
|
-
paragraph: "text-md inline";
|
|
193
|
-
footnotes: "text-sm";
|
|
194
|
-
xs: "text-xs";
|
|
195
|
-
};
|
|
196
|
-
font: {
|
|
197
|
-
body: "font-body";
|
|
198
|
-
};
|
|
199
|
-
weight: {
|
|
200
|
-
normal: "font-normal";
|
|
201
|
-
light: "font-light";
|
|
202
|
-
bold: "font-bold";
|
|
203
|
-
};
|
|
204
|
-
color: {
|
|
205
|
-
gray: "text-gray-500";
|
|
206
|
-
white: "text-white";
|
|
207
|
-
};
|
|
208
|
-
isError: {
|
|
209
|
-
true: "text-sm text-error py-3";
|
|
210
|
-
};
|
|
211
|
-
align: {
|
|
212
|
-
center: "text-center";
|
|
213
|
-
left: "text-left";
|
|
214
|
-
right: "text-right";
|
|
215
|
-
};
|
|
216
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
217
|
-
size: {
|
|
218
|
-
h1: "text-5xl";
|
|
219
|
-
h2: "text-4xl";
|
|
220
|
-
h3: "text-3xl";
|
|
221
|
-
h4: "text-2xl";
|
|
222
|
-
h5: "text-xl";
|
|
223
|
-
h6: "text-lg";
|
|
224
|
-
leading: "text-md font-bold leading-normal";
|
|
225
|
-
paragraph: "text-md inline";
|
|
226
|
-
footnotes: "text-sm";
|
|
227
|
-
xs: "text-xs";
|
|
228
|
-
};
|
|
229
|
-
font: {
|
|
230
|
-
body: "font-body";
|
|
231
|
-
};
|
|
232
|
-
weight: {
|
|
233
|
-
normal: "font-normal";
|
|
234
|
-
light: "font-light";
|
|
235
|
-
bold: "font-bold";
|
|
236
|
-
};
|
|
237
|
-
color: {
|
|
238
|
-
gray: "text-gray-500";
|
|
239
|
-
white: "text-white";
|
|
240
|
-
};
|
|
241
|
-
isError: {
|
|
242
|
-
true: "text-sm text-error py-3";
|
|
243
|
-
};
|
|
244
|
-
align: {
|
|
245
|
-
center: "text-center";
|
|
246
|
-
left: "text-left";
|
|
247
|
-
right: "text-right";
|
|
248
|
-
};
|
|
249
|
-
}, undefined, undefined, import("tailwind-variants/dist/config").TVConfig<{
|
|
250
|
-
size: {
|
|
251
|
-
h1: "text-5xl";
|
|
252
|
-
h2: "text-4xl";
|
|
253
|
-
h3: "text-3xl";
|
|
254
|
-
h4: "text-2xl";
|
|
255
|
-
h5: "text-xl";
|
|
256
|
-
h6: "text-lg";
|
|
257
|
-
leading: "text-md font-bold leading-normal";
|
|
258
|
-
paragraph: "text-md inline";
|
|
259
|
-
footnotes: "text-sm";
|
|
260
|
-
xs: "text-xs";
|
|
261
|
-
};
|
|
262
|
-
font: {
|
|
263
|
-
body: "font-body";
|
|
264
|
-
};
|
|
265
|
-
weight: {
|
|
266
|
-
normal: "font-normal";
|
|
267
|
-
light: "font-light";
|
|
268
|
-
bold: "font-bold";
|
|
269
|
-
};
|
|
270
|
-
color: {
|
|
271
|
-
gray: "text-gray-500";
|
|
272
|
-
white: "text-white";
|
|
273
|
-
};
|
|
274
|
-
isError: {
|
|
275
|
-
true: "text-sm text-error py-3";
|
|
276
|
-
};
|
|
277
|
-
align: {
|
|
278
|
-
center: "text-center";
|
|
279
|
-
left: "text-left";
|
|
280
|
-
right: "text-right";
|
|
281
|
-
};
|
|
282
|
-
}, {
|
|
283
|
-
size: {
|
|
284
|
-
h1: "text-5xl";
|
|
285
|
-
h2: "text-4xl";
|
|
286
|
-
h3: "text-3xl";
|
|
287
|
-
h4: "text-2xl";
|
|
288
|
-
h5: "text-xl";
|
|
289
|
-
h6: "text-lg";
|
|
290
|
-
leading: "text-md font-bold leading-normal";
|
|
291
|
-
paragraph: "text-md inline";
|
|
292
|
-
footnotes: "text-sm";
|
|
293
|
-
xs: "text-xs";
|
|
294
|
-
};
|
|
295
|
-
font: {
|
|
296
|
-
body: "font-body";
|
|
297
|
-
};
|
|
298
|
-
weight: {
|
|
299
|
-
normal: "font-normal";
|
|
300
|
-
light: "font-light";
|
|
301
|
-
bold: "font-bold";
|
|
302
|
-
};
|
|
303
|
-
color: {
|
|
304
|
-
gray: "text-gray-500";
|
|
305
|
-
white: "text-white";
|
|
306
|
-
};
|
|
307
|
-
isError: {
|
|
308
|
-
true: "text-sm text-error py-3";
|
|
309
|
-
};
|
|
310
|
-
align: {
|
|
311
|
-
center: "text-center";
|
|
312
|
-
left: "text-left";
|
|
313
|
-
right: "text-right";
|
|
314
|
-
};
|
|
315
|
-
}>, {
|
|
316
|
-
size: {
|
|
317
|
-
h1: "text-5xl";
|
|
318
|
-
h2: "text-4xl";
|
|
319
|
-
h3: "text-3xl";
|
|
320
|
-
h4: "text-2xl";
|
|
321
|
-
h5: "text-xl";
|
|
322
|
-
h6: "text-lg";
|
|
323
|
-
leading: "text-md font-bold leading-normal";
|
|
324
|
-
paragraph: "text-md inline";
|
|
325
|
-
footnotes: "text-sm";
|
|
326
|
-
xs: "text-xs";
|
|
327
|
-
};
|
|
328
|
-
font: {
|
|
329
|
-
body: "font-body";
|
|
330
|
-
};
|
|
331
|
-
weight: {
|
|
332
|
-
normal: "font-normal";
|
|
333
|
-
light: "font-light";
|
|
334
|
-
bold: "font-bold";
|
|
335
|
-
};
|
|
336
|
-
color: {
|
|
337
|
-
gray: "text-gray-500";
|
|
338
|
-
white: "text-white";
|
|
339
|
-
};
|
|
340
|
-
isError: {
|
|
341
|
-
true: "text-sm text-error py-3";
|
|
342
|
-
};
|
|
343
|
-
align: {
|
|
344
|
-
center: "text-center";
|
|
345
|
-
left: "text-left";
|
|
346
|
-
right: "text-right";
|
|
347
|
-
};
|
|
348
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
349
|
-
size: {
|
|
350
|
-
h1: "text-5xl";
|
|
351
|
-
h2: "text-4xl";
|
|
352
|
-
h3: "text-3xl";
|
|
353
|
-
h4: "text-2xl";
|
|
354
|
-
h5: "text-xl";
|
|
355
|
-
h6: "text-lg";
|
|
356
|
-
leading: "text-md font-bold leading-normal";
|
|
357
|
-
paragraph: "text-md inline";
|
|
358
|
-
footnotes: "text-sm";
|
|
359
|
-
xs: "text-xs";
|
|
360
|
-
};
|
|
361
|
-
font: {
|
|
362
|
-
body: "font-body";
|
|
363
|
-
};
|
|
364
|
-
weight: {
|
|
365
|
-
normal: "font-normal";
|
|
366
|
-
light: "font-light";
|
|
367
|
-
bold: "font-bold";
|
|
368
|
-
};
|
|
369
|
-
color: {
|
|
370
|
-
gray: "text-gray-500";
|
|
371
|
-
white: "text-white";
|
|
372
|
-
};
|
|
373
|
-
isError: {
|
|
374
|
-
true: "text-sm text-error py-3";
|
|
375
|
-
};
|
|
376
|
-
align: {
|
|
377
|
-
center: "text-center";
|
|
378
|
-
left: "text-left";
|
|
379
|
-
right: "text-right";
|
|
380
|
-
};
|
|
381
|
-
}, undefined, undefined, import("tailwind-variants/dist/config").TVConfig<{
|
|
382
|
-
size: {
|
|
383
|
-
h1: "text-5xl";
|
|
384
|
-
h2: "text-4xl";
|
|
385
|
-
h3: "text-3xl";
|
|
386
|
-
h4: "text-2xl";
|
|
387
|
-
h5: "text-xl";
|
|
388
|
-
h6: "text-lg";
|
|
389
|
-
leading: "text-md font-bold leading-normal";
|
|
390
|
-
paragraph: "text-md inline";
|
|
391
|
-
footnotes: "text-sm";
|
|
392
|
-
xs: "text-xs";
|
|
393
|
-
};
|
|
394
|
-
font: {
|
|
395
|
-
body: "font-body";
|
|
396
|
-
};
|
|
397
|
-
weight: {
|
|
398
|
-
normal: "font-normal";
|
|
399
|
-
light: "font-light";
|
|
400
|
-
bold: "font-bold";
|
|
401
|
-
};
|
|
402
|
-
color: {
|
|
403
|
-
gray: "text-gray-500";
|
|
404
|
-
white: "text-white";
|
|
405
|
-
};
|
|
406
|
-
isError: {
|
|
407
|
-
true: "text-sm text-error py-3";
|
|
408
|
-
};
|
|
409
|
-
align: {
|
|
410
|
-
center: "text-center";
|
|
411
|
-
left: "text-left";
|
|
412
|
-
right: "text-right";
|
|
413
|
-
};
|
|
414
|
-
}, {
|
|
415
|
-
size: {
|
|
416
|
-
h1: "text-5xl";
|
|
417
|
-
h2: "text-4xl";
|
|
418
|
-
h3: "text-3xl";
|
|
419
|
-
h4: "text-2xl";
|
|
420
|
-
h5: "text-xl";
|
|
421
|
-
h6: "text-lg";
|
|
422
|
-
leading: "text-md font-bold leading-normal";
|
|
423
|
-
paragraph: "text-md inline";
|
|
424
|
-
footnotes: "text-sm";
|
|
425
|
-
xs: "text-xs";
|
|
426
|
-
};
|
|
427
|
-
font: {
|
|
428
|
-
body: "font-body";
|
|
429
|
-
};
|
|
430
|
-
weight: {
|
|
431
|
-
normal: "font-normal";
|
|
432
|
-
light: "font-light";
|
|
433
|
-
bold: "font-bold";
|
|
434
|
-
};
|
|
435
|
-
color: {
|
|
436
|
-
gray: "text-gray-500";
|
|
437
|
-
white: "text-white";
|
|
438
|
-
};
|
|
439
|
-
isError: {
|
|
440
|
-
true: "text-sm text-error py-3";
|
|
441
|
-
};
|
|
442
|
-
align: {
|
|
443
|
-
center: "text-center";
|
|
444
|
-
left: "text-left";
|
|
445
|
-
right: "text-right";
|
|
446
|
-
};
|
|
447
|
-
}>, unknown, unknown, undefined>>>;
|
|
448
|
-
closeBtn: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "\n absolute\n xl:top-10\n xl:right-20\n lg:top-8\n lg:right-8\n z-[10000]\n top-4\n right-4\n size-10\n focus-ring-black\n ", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "\n absolute\n xl:top-10\n xl:right-20\n lg:top-8\n lg:right-8\n z-[10000]\n top-4\n right-4\n size-10\n focus-ring-black\n ", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
449
|
-
modal: {
|
|
450
|
-
underlay: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "w-screen h-screen bg-black/50 absolute top-0 left-0 flex justify-center items-center", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "w-screen h-screen bg-black/50 absolute top-0 left-0 flex justify-center items-center", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
451
|
-
overlay: 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>>;
|
|
452
|
-
dialog: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex flex-col gap-4 items-center", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex flex-col gap-4 items-center", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
453
|
-
};
|
|
454
|
-
};
|
|
455
|
-
export default lightboxTheme;
|
package/theme/Radio/index.d.ts
DELETED
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
export declare const radioLabel: import("tailwind-variants").TVReturnType<{
|
|
2
|
-
isDisabled: {
|
|
3
|
-
true: "text-gray-6";
|
|
4
|
-
};
|
|
5
|
-
}, undefined, "text-black flex flex-row items-center hover:cursor-pointer focus-ring-black", import("tailwind-variants/dist/config").TVConfig<{
|
|
6
|
-
isDisabled: {
|
|
7
|
-
true: "text-gray-6";
|
|
8
|
-
};
|
|
9
|
-
}, {
|
|
10
|
-
isDisabled: {
|
|
11
|
-
true: "text-gray-6";
|
|
12
|
-
};
|
|
13
|
-
}>, {
|
|
14
|
-
isDisabled: {
|
|
15
|
-
true: "text-gray-6";
|
|
16
|
-
};
|
|
17
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
18
|
-
isDisabled: {
|
|
19
|
-
true: "text-gray-6";
|
|
20
|
-
};
|
|
21
|
-
}, undefined, "text-black flex flex-row items-center hover:cursor-pointer focus-ring-black", import("tailwind-variants/dist/config").TVConfig<{
|
|
22
|
-
isDisabled: {
|
|
23
|
-
true: "text-gray-6";
|
|
24
|
-
};
|
|
25
|
-
}, {
|
|
26
|
-
isDisabled: {
|
|
27
|
-
true: "text-gray-6";
|
|
28
|
-
};
|
|
29
|
-
}>, unknown, unknown, undefined>>;
|
|
30
|
-
export declare const radio: import("tailwind-variants").TVReturnType<{
|
|
31
|
-
isDisabled: {
|
|
32
|
-
true: "border-gray-6";
|
|
33
|
-
};
|
|
34
|
-
isFocused: {
|
|
35
|
-
true: "outline-black [outline-offset: 2px]";
|
|
36
|
-
};
|
|
37
|
-
}, undefined, "w-6 h-6 mt-0.5 mr-2.5 rounded-full border-2 border-gray-2 shrink-0 hover:cursor-pointer flex items-center justify-center", import("tailwind-variants/dist/config").TVConfig<{
|
|
38
|
-
isDisabled: {
|
|
39
|
-
true: "border-gray-6";
|
|
40
|
-
};
|
|
41
|
-
isFocused: {
|
|
42
|
-
true: "outline-black [outline-offset: 2px]";
|
|
43
|
-
};
|
|
44
|
-
}, {
|
|
45
|
-
isDisabled: {
|
|
46
|
-
true: "border-gray-6";
|
|
47
|
-
};
|
|
48
|
-
isFocused: {
|
|
49
|
-
true: "outline-black [outline-offset: 2px]";
|
|
50
|
-
};
|
|
51
|
-
}>, {
|
|
52
|
-
isDisabled: {
|
|
53
|
-
true: "border-gray-6";
|
|
54
|
-
};
|
|
55
|
-
isFocused: {
|
|
56
|
-
true: "outline-black [outline-offset: 2px]";
|
|
57
|
-
};
|
|
58
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
59
|
-
isDisabled: {
|
|
60
|
-
true: "border-gray-6";
|
|
61
|
-
};
|
|
62
|
-
isFocused: {
|
|
63
|
-
true: "outline-black [outline-offset: 2px]";
|
|
64
|
-
};
|
|
65
|
-
}, undefined, "w-6 h-6 mt-0.5 mr-2.5 rounded-full border-2 border-gray-2 shrink-0 hover:cursor-pointer flex items-center justify-center", import("tailwind-variants/dist/config").TVConfig<{
|
|
66
|
-
isDisabled: {
|
|
67
|
-
true: "border-gray-6";
|
|
68
|
-
};
|
|
69
|
-
isFocused: {
|
|
70
|
-
true: "outline-black [outline-offset: 2px]";
|
|
71
|
-
};
|
|
72
|
-
}, {
|
|
73
|
-
isDisabled: {
|
|
74
|
-
true: "border-gray-6";
|
|
75
|
-
};
|
|
76
|
-
isFocused: {
|
|
77
|
-
true: "outline-black [outline-offset: 2px]";
|
|
78
|
-
};
|
|
79
|
-
}>, unknown, unknown, undefined>>;
|
|
80
|
-
export declare const selectedMark: import("tailwind-variants").TVReturnType<{
|
|
81
|
-
selected: {
|
|
82
|
-
true: "block text-white";
|
|
83
|
-
};
|
|
84
|
-
}, undefined, "hidden w-4 h-4 bg-gray-300 rounded-full", import("tailwind-variants/dist/config").TVConfig<{
|
|
85
|
-
selected: {
|
|
86
|
-
true: "block text-white";
|
|
87
|
-
};
|
|
88
|
-
}, {
|
|
89
|
-
selected: {
|
|
90
|
-
true: "block text-white";
|
|
91
|
-
};
|
|
92
|
-
}>, {
|
|
93
|
-
selected: {
|
|
94
|
-
true: "block text-white";
|
|
95
|
-
};
|
|
96
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
97
|
-
selected: {
|
|
98
|
-
true: "block text-white";
|
|
99
|
-
};
|
|
100
|
-
}, undefined, "hidden w-4 h-4 bg-gray-300 rounded-full", import("tailwind-variants/dist/config").TVConfig<{
|
|
101
|
-
selected: {
|
|
102
|
-
true: "block text-white";
|
|
103
|
-
};
|
|
104
|
-
}, {
|
|
105
|
-
selected: {
|
|
106
|
-
true: "block text-white";
|
|
107
|
-
};
|
|
108
|
-
}>, unknown, unknown, undefined>>;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export declare const radioGroup: import("tailwind-variants").TVReturnType<{
|
|
2
|
-
isDisabled: {
|
|
3
|
-
true: "opacity-60 pointer-events-none";
|
|
4
|
-
};
|
|
5
|
-
}, undefined, "block", import("tailwind-variants/dist/config").TVConfig<{
|
|
6
|
-
isDisabled: {
|
|
7
|
-
true: "opacity-60 pointer-events-none";
|
|
8
|
-
};
|
|
9
|
-
}, {
|
|
10
|
-
isDisabled: {
|
|
11
|
-
true: "opacity-60 pointer-events-none";
|
|
12
|
-
};
|
|
13
|
-
}>, {
|
|
14
|
-
isDisabled: {
|
|
15
|
-
true: "opacity-60 pointer-events-none";
|
|
16
|
-
};
|
|
17
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
18
|
-
isDisabled: {
|
|
19
|
-
true: "opacity-60 pointer-events-none";
|
|
20
|
-
};
|
|
21
|
-
}, undefined, "block", import("tailwind-variants/dist/config").TVConfig<{
|
|
22
|
-
isDisabled: {
|
|
23
|
-
true: "opacity-60 pointer-events-none";
|
|
24
|
-
};
|
|
25
|
-
}, {
|
|
26
|
-
isDisabled: {
|
|
27
|
-
true: "opacity-60 pointer-events-none";
|
|
28
|
-
};
|
|
29
|
-
}>, unknown, unknown, undefined>>;
|
|
30
|
-
export declare const radioGroupItemsGroup: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex flex-col gap-4 py-8", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex flex-col gap-4 py-8", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
package/theme/Search/index.d.ts
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export declare const searchInput: import("tailwind-variants").TVReturnType<{
|
|
2
|
-
isDisabled: {
|
|
3
|
-
true: "opacity-60 pointer-events-none";
|
|
4
|
-
};
|
|
5
|
-
}, undefined, "p-4 w-full outline-0 search-cancel:appearance-none", import("tailwind-variants/dist/config").TVConfig<{
|
|
6
|
-
isDisabled: {
|
|
7
|
-
true: "opacity-60 pointer-events-none";
|
|
8
|
-
};
|
|
9
|
-
}, {
|
|
10
|
-
isDisabled: {
|
|
11
|
-
true: "opacity-60 pointer-events-none";
|
|
12
|
-
};
|
|
13
|
-
}>, {
|
|
14
|
-
isDisabled: {
|
|
15
|
-
true: "opacity-60 pointer-events-none";
|
|
16
|
-
};
|
|
17
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
18
|
-
isDisabled: {
|
|
19
|
-
true: "opacity-60 pointer-events-none";
|
|
20
|
-
};
|
|
21
|
-
}, undefined, "p-4 w-full outline-0 search-cancel:appearance-none", import("tailwind-variants/dist/config").TVConfig<{
|
|
22
|
-
isDisabled: {
|
|
23
|
-
true: "opacity-60 pointer-events-none";
|
|
24
|
-
};
|
|
25
|
-
}, {
|
|
26
|
-
isDisabled: {
|
|
27
|
-
true: "opacity-60 pointer-events-none";
|
|
28
|
-
};
|
|
29
|
-
}>, unknown, unknown, undefined>>;
|
|
30
|
-
export declare const searchIcon: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "\n box-border \n absolute \n right-4 \n focus-ring-black\n outline-0\n ", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "\n box-border \n absolute \n right-4 \n focus-ring-black\n outline-0\n ", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|