@okam/stack-ui 1.25.3 → 1.25.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Accordion/components/AccordionItem.d.ts +3 -0
- package/components/Accordion/components/AriaAccordionItem.d.ts +3 -0
- package/components/Accordion/hooks/useAccordionState.d.ts +10 -0
- package/components/Accordion/index.d.ts +3 -0
- package/{src/components/Accordion/interface.ts → components/Accordion/interface.d.ts} +17 -23
- package/components/Alerts/components/AlertsCloseButton.d.ts +4 -0
- package/components/Alerts/components/AlertsItem.d.ts +3 -0
- package/components/Alerts/components/AlertsNavigationButton.d.ts +8 -0
- package/components/Alerts/components/AlertsSwiper.d.ts +3 -0
- package/components/Alerts/components/pagination/AlertsPagination.d.ts +3 -0
- package/components/Alerts/components/pagination/AlertsPaginationBullet.d.ts +3 -0
- package/components/Alerts/index.d.ts +3 -0
- package/components/Alerts/interface.d.ts +41 -0
- package/components/Box/index.d.ts +5 -0
- package/components/Box/interface.d.ts +11 -0
- package/components/Button/index.d.ts +6 -0
- package/components/Button/interface.d.ts +20 -0
- package/components/Calendar/RangeCalendar.d.ts +3 -0
- package/components/Calendar/components/CalendarCell.d.ts +3 -0
- package/components/Calendar/components/CalendarGrid.d.ts +3 -0
- package/components/Calendar/index.d.ts +3 -0
- package/components/Calendar/interface.d.ts +32 -0
- package/components/Carousel/index.d.ts +3 -0
- package/components/Carousel/interface.d.ts +24 -0
- package/components/Date/index.d.ts +3 -0
- package/components/Date/interface.d.ts +6 -0
- package/components/Dialog/index.d.ts +2 -0
- package/components/Dialog/interface.d.ts +6 -0
- package/components/DirectusImg/index.d.ts +3 -0
- package/components/DirectusImg/interface.d.ts +17 -0
- package/components/Icon/index.d.ts +3 -0
- package/components/Icon/interface.d.ts +7 -0
- package/components/Img/index.d.ts +3 -0
- package/components/Img/interface.d.ts +6 -0
- package/components/Lightbox/index.d.ts +3 -0
- package/components/Lightbox/interface.d.ts +25 -0
- package/components/Menu/Menu.d.ts +3 -0
- package/components/Menu/MenuSidePanel.d.ts +3 -0
- package/components/Menu/components/InnerContent.d.ts +3 -0
- package/components/Menu/components/MenuItems.d.ts +3 -0
- package/components/Menu/components/TabContainer.d.ts +3 -0
- package/components/Menu/interface.d.ts +31 -0
- package/components/Modal/components/ModalDialog.d.ts +3 -0
- package/components/Modal/components/ModalOverlay.d.ts +3 -0
- package/components/Modal/index.d.ts +3 -0
- package/{src/components/Modal/interface.ts → components/Modal/interface.d.ts} +11 -14
- package/components/Popover/index.d.ts +3 -0
- package/components/Popover/interface.d.ts +21 -0
- package/components/ShareButton/index.d.ts +4 -0
- package/components/ShareButton/interface.d.ts +26 -0
- package/components/ShareButton/utils/generateUtmTags.d.ts +2 -0
- package/components/ShareButton/utils/useFacebookShareUrl.d.ts +2 -0
- package/components/ShareButton/utils/useMailToShareUrl.d.ts +2 -0
- package/components/ShareButton/utils/useTwitterShareUrl.d.ts +2 -0
- package/components/ShareButton/utils/useWindow.d.ts +5 -0
- package/components/SidePanel/index.d.ts +4 -0
- package/components/SidePanel/interface.d.ts +12 -0
- package/components/TabList/components/TabPanel/TabPanel.d.ts +4 -0
- package/components/TabList/interface.d.ts +18 -0
- package/components/Typography/index.d.ts +5 -0
- package/components/Typography/interface.d.ts +10 -0
- package/components/WysiwygBlock/index.d.ts +3 -0
- package/components/WysiwygBlock/interface.d.ts +5 -0
- package/components/fields/Checkbox/Checkbox.interface.d.ts +18 -0
- package/components/fields/Checkbox/index.d.ts +3 -0
- package/components/fields/CheckboxGroup/components/CheckboxGroupItem/index.d.ts +3 -0
- package/components/fields/CheckboxGroup/index.d.ts +3 -0
- package/components/fields/CheckboxGroup/interface.d.ts +13 -0
- package/components/fields/DatePicker/DateRangePicker.d.ts +3 -0
- package/components/fields/DatePicker/components/CalendarPopover.d.ts +2 -0
- package/components/fields/DatePicker/components/DateField.d.ts +4 -0
- package/components/fields/DatePicker/index.d.ts +3 -0
- package/components/fields/DatePicker/interface.d.ts +37 -0
- package/components/fields/Radio/Radio.interface.d.ts +26 -0
- package/components/fields/Radio/index.d.ts +4 -0
- package/components/fields/RadioGroup/index.d.ts +3 -0
- package/components/fields/RadioGroup/interface.d.ts +9 -0
- package/components/fields/SearchField/index.d.ts +3 -0
- package/components/fields/SearchField/interface.d.ts +9 -0
- package/components/fields/Select/Select.d.ts +4 -0
- package/components/fields/Select/Select.interface.d.ts +26 -0
- package/components/fields/Select/components/Listbox.d.ts +4 -0
- package/{src/components/fields/Select/components/Listbox.interface.ts → components/fields/Select/components/Listbox.interface.d.ts} +8 -11
- package/components/fields/Select/components/Popover.d.ts +3 -0
- package/components/fields/Select/components/Popover.interface.d.ts +13 -0
- package/components/fields/SelectItem/SelectItem.d.ts +3 -0
- package/{src/components/fields/SelectItem/SelectItem.interface.ts → components/fields/SelectItem/SelectItem.interface.d.ts} +3 -4
- package/components/fields/TextArea/index.d.ts +4 -0
- package/components/fields/TextInputField/index.d.ts +4 -0
- package/components/fields/TextInputField/interface.d.ts +24 -0
- package/components/icons/ArrowDown.d.ts +3 -0
- package/components/icons/ArrowLeft.d.ts +3 -0
- package/components/icons/ArrowRight.d.ts +3 -0
- package/components/icons/Check.d.ts +3 -0
- package/components/icons/ChevronLeft.d.ts +3 -0
- package/components/icons/ChevronRight.d.ts +3 -0
- package/components/icons/CloseBtn.d.ts +3 -0
- package/components/icons/Facebook.d.ts +3 -0
- package/components/icons/FacebookColored.d.ts +3 -0
- package/components/icons/FacebookRounded.d.ts +3 -0
- package/components/icons/Globe.d.ts +3 -0
- package/components/icons/IconFallback.d.ts +3 -0
- package/components/icons/Instagram.d.ts +3 -0
- package/components/icons/InstagramColored.d.ts +3 -0
- package/components/icons/Link.d.ts +3 -0
- package/components/icons/LinkedIn.d.ts +3 -0
- package/components/icons/Mail.d.ts +3 -0
- package/components/icons/Plus.d.ts +3 -0
- package/components/icons/Search.d.ts +3 -0
- package/components/icons/Share.d.ts +3 -0
- package/components/icons/Twitter.d.ts +3 -0
- package/components/icons/TwitterColored.d.ts +3 -0
- package/components/icons/Upload.d.ts +3 -0
- package/components/icons/X.d.ts +3 -0
- package/components/icons/YouTube.d.ts +3 -0
- package/components/icons/YouTubeColored.d.ts +3 -0
- package/components/icons/index.d.ts +24 -0
- package/{src/index.ts → index.d.ts} +57 -72
- package/index.js +110 -0
- package/index.mjs +12755 -0
- package/package.json +1 -1
- package/providers/Accordion/index.d.ts +4 -0
- package/providers/Accordion/interface.d.ts +12 -0
- package/providers/Alerts/index.d.ts +4 -0
- package/providers/Alerts/interface.d.ts +9 -0
- package/providers/CheckboxGroup/index.d.ts +5 -0
- package/{src/providers/CheckboxGroup/interface.ts → providers/CheckboxGroup/interface.d.ts} +4 -5
- package/providers/Client/index.d.ts +4 -0
- package/providers/Client/interface.d.ts +10 -0
- package/providers/Menu/index.d.ts +4 -0
- package/providers/Menu/interface.d.ts +28 -0
- package/providers/RadioGroup/RadioGroup.d.ts +5 -0
- package/providers/RadioGroup/RadioGroup.interface.d.ts +7 -0
- package/providers/SidePanel/index.d.ts +4 -0
- package/providers/SidePanel/interface.d.ts +23 -0
- package/providers/Theme/hooks.d.ts +3 -0
- package/providers/Theme/index.d.ts +10 -0
- package/providers/Theme/interface.d.ts +24 -0
- package/providers/Theme/utils.d.ts +2 -0
- package/providers/UserSearchQuery/index.d.ts +4 -0
- package/providers/UserSearchQuery/interface.d.ts +10 -0
- package/style.css +1 -0
- package/theme/Accordion/index.d.ts +274 -0
- package/theme/Alerts/index.d.ts +1167 -0
- package/theme/Box/index.d.ts +214 -0
- package/theme/Button/index.d.ts +121 -0
- package/theme/Calendar/index.d.ts +366 -0
- package/theme/Carousel/index.d.ts +9 -0
- package/theme/Checkbox/index.d.ts +159 -0
- package/theme/CheckboxGroup/index.d.ts +30 -0
- package/theme/DatePicker/index.d.ts +43 -0
- package/theme/Image/index.d.ts +3 -0
- package/theme/LightBox/index.d.ts +455 -0
- package/theme/Radio/index.d.ts +108 -0
- package/theme/RadioGroup/index.d.ts +30 -0
- package/theme/Search/index.d.ts +30 -0
- package/theme/ShareButton/index.d.ts +174 -0
- package/theme/SidePanel/index.d.ts +3 -0
- package/theme/TextArea/index.d.ts +29 -0
- package/theme/Typography/index.d.ts +233 -0
- package/theme/index.d.ts +5 -0
- package/transitions/AccordionTransition.d.ts +4 -0
- package/transitions/ModalTransition.d.ts +7 -0
- package/transitions/RenderWithOpacity.d.ts +4 -0
- package/transitions/RenderWithSlide.d.ts +7 -0
- package/transitions/SidePanelTransition.d.ts +7 -0
- package/types/components.d.ts +28 -0
- package/.eslintrc.js +0 -32
- package/.storybook/.eslintrc.js +0 -29
- package/.storybook/main.ts +0 -33
- package/.storybook/preview.js +0 -56
- package/.storybook/tsconfig.json +0 -17
- package/CHANGELOG.md +0 -574
- package/README.md +0 -8
- package/postcss.config.js +0 -15
- package/project.json +0 -77
- package/src/_stories/icons/code-brackets.svg +0 -1
- package/src/_stories/icons/colors.svg +0 -1
- package/src/_stories/icons/comments.svg +0 -1
- package/src/_stories/icons/direction.svg +0 -1
- package/src/_stories/icons/flow.svg +0 -1
- package/src/_stories/icons/plugin.svg +0 -1
- package/src/_stories/icons/repo.svg +0 -1
- package/src/_stories/icons/stackalt.svg +0 -1
- package/src/components/Accordion/accordion.stories.mdx +0 -240
- package/src/components/Accordion/components/AccordionItem.tsx +0 -53
- package/src/components/Accordion/components/AriaAccordionItem.tsx +0 -76
- package/src/components/Accordion/hooks/useAccordionState.ts +0 -46
- package/src/components/Accordion/index.tsx +0 -38
- package/src/components/Alerts/alerts.stories.mdx +0 -282
- package/src/components/Alerts/components/AlertsCloseButton.tsx +0 -20
- package/src/components/Alerts/components/AlertsItem.tsx +0 -39
- package/src/components/Alerts/components/AlertsNavigationButton.tsx +0 -71
- package/src/components/Alerts/components/AlertsSwiper.tsx +0 -125
- package/src/components/Alerts/components/pagination/AlertsPagination.tsx +0 -32
- package/src/components/Alerts/components/pagination/AlertsPaginationBullet.tsx +0 -61
- package/src/components/Alerts/index.tsx +0 -54
- package/src/components/Alerts/interface.ts +0 -51
- package/src/components/Box/box.stories.mdx +0 -27
- package/src/components/Box/index.tsx +0 -36
- package/src/components/Box/interface.ts +0 -10
- package/src/components/Button/button.stories.mdx +0 -99
- package/src/components/Button/index.tsx +0 -92
- package/src/components/Button/interface.ts +0 -22
- package/src/components/Calendar/RangeCalendar.tsx +0 -61
- package/src/components/Calendar/calendar.stories.mdx +0 -28
- package/src/components/Calendar/components/CalendarCell.tsx +0 -60
- package/src/components/Calendar/components/CalendarGrid.tsx +0 -44
- package/src/components/Calendar/index.tsx +0 -63
- package/src/components/Calendar/interface.ts +0 -37
- package/src/components/Carousel/carousel.stories.mdx +0 -182
- package/src/components/Carousel/index.tsx +0 -99
- package/src/components/Carousel/interface.ts +0 -26
- package/src/components/Date/date.stories.mdx +0 -122
- package/src/components/Date/index.tsx +0 -35
- package/src/components/Date/interface.ts +0 -7
- package/src/components/Dialog/index.tsx +0 -14
- package/src/components/Dialog/interface.ts +0 -6
- package/src/components/DirectusImg/index.tsx +0 -59
- package/src/components/DirectusImg/interface.ts +0 -19
- package/src/components/Icon/index.tsx +0 -40
- package/src/components/Icon/interface.ts +0 -8
- package/src/components/Img/img.stories.mdx +0 -28
- package/src/components/Img/index.tsx +0 -30
- package/src/components/Img/interface.ts +0 -9
- package/src/components/Lightbox/hooks/overlay/index.tsx +0 -36
- package/src/components/Lightbox/index.tsx +0 -82
- package/src/components/Lightbox/interface.ts +0 -28
- package/src/components/Lightbox/lightbox.stories.mdx +0 -79
- package/src/components/Menu/Menu.tsx +0 -43
- package/src/components/Menu/MenuSidePanel.tsx +0 -41
- package/src/components/Menu/components/InnerContent.tsx +0 -26
- package/src/components/Menu/components/MenuItems.tsx +0 -133
- package/src/components/Menu/components/TabContainer.tsx +0 -13
- package/src/components/Menu/interface.ts +0 -41
- package/src/components/Menu/menu.stories.mdx +0 -23
- package/src/components/Modal/components/ModalDialog.tsx +0 -31
- package/src/components/Modal/components/ModalOverlay.tsx +0 -21
- package/src/components/Modal/index.tsx +0 -32
- package/src/components/Popover/index.tsx +0 -138
- package/src/components/Popover/interface.ts +0 -25
- package/src/components/Popover/popover.stories.mdx +0 -66
- package/src/components/ShareButton/index.tsx +0 -172
- package/src/components/ShareButton/interface.ts +0 -29
- package/src/components/ShareButton/share-button.stories.mdx +0 -48
- package/src/components/ShareButton/utils/generateUtmTags.ts +0 -4
- package/src/components/ShareButton/utils/useFacebookShareUrl.ts +0 -15
- package/src/components/ShareButton/utils/useMailToShareUrl.ts +0 -15
- package/src/components/ShareButton/utils/useTwitterShareUrl.ts +0 -15
- package/src/components/ShareButton/utils/useWindow.ts +0 -17
- package/src/components/SidePanel/index.tsx +0 -43
- package/src/components/SidePanel/interface.ts +0 -16
- package/src/components/SidePanel/side-panel.stories.mdx +0 -44
- package/src/components/TabList/components/Tab/Tab.tsx +0 -19
- package/src/components/TabList/components/TabPanel/TabPanel.tsx +0 -27
- package/src/components/TabList/index.tsx +0 -44
- package/src/components/TabList/interface.ts +0 -23
- package/src/components/Typography/index.tsx +0 -35
- package/src/components/Typography/interface.ts +0 -9
- package/src/components/Typography/typo.stories.mdx +0 -157
- package/src/components/WysiwygBlock/index.tsx +0 -20
- package/src/components/WysiwygBlock/interface.ts +0 -7
- package/src/components/WysiwygBlock/wysiwyg.stories.mdx +0 -53
- package/src/components/fields/Checkbox/Checkbox.interface.ts +0 -21
- package/src/components/fields/Checkbox/Checkbox.stories.mdx +0 -127
- package/src/components/fields/Checkbox/index.tsx +0 -62
- package/src/components/fields/CheckboxGroup/checkbox-group.stories.mdx +0 -59
- package/src/components/fields/CheckboxGroup/components/CheckboxGroupItem/index.tsx +0 -66
- package/src/components/fields/CheckboxGroup/index.tsx +0 -49
- package/src/components/fields/CheckboxGroup/interface.ts +0 -17
- package/src/components/fields/DatePicker/DateRangePicker.tsx +0 -73
- package/src/components/fields/DatePicker/components/CalendarPopover.tsx +0 -31
- package/src/components/fields/DatePicker/components/DateField.tsx +0 -61
- package/src/components/fields/DatePicker/date-picker.stories.mdx +0 -55
- package/src/components/fields/DatePicker/index.tsx +0 -71
- package/src/components/fields/DatePicker/interface.ts +0 -69
- package/src/components/fields/Radio/Radio.interface.ts +0 -30
- package/src/components/fields/Radio/index.tsx +0 -63
- package/src/components/fields/RadioGroup/index.tsx +0 -33
- package/src/components/fields/RadioGroup/interface.ts +0 -10
- package/src/components/fields/RadioGroup/radio-group.stories.mdx +0 -56
- package/src/components/fields/SearchField/index.tsx +0 -59
- package/src/components/fields/SearchField/interface.ts +0 -10
- package/src/components/fields/SearchField/search.stories.mdx +0 -91
- package/src/components/fields/Select/Select.interface.ts +0 -24
- package/src/components/fields/Select/Select.stories.mdx +0 -53
- package/src/components/fields/Select/Select.tsx +0 -108
- package/src/components/fields/Select/components/Listbox.tsx +0 -40
- package/src/components/fields/Select/components/Popover.interface.ts +0 -14
- package/src/components/fields/Select/components/Popover.tsx +0 -32
- package/src/components/fields/SelectItem/SelectItem.tsx +0 -10
- package/src/components/fields/TextArea/index.tsx +0 -105
- package/src/components/fields/TextArea/textArea.stories.mdx +0 -60
- package/src/components/fields/TextInputField/index.tsx +0 -107
- package/src/components/fields/TextInputField/interface.ts +0 -30
- package/src/components/fields/TextInputField/text-input-field.stories.mdx +0 -64
- package/src/components/icons/ArrowDown.tsx +0 -11
- package/src/components/icons/ArrowLeft.tsx +0 -18
- package/src/components/icons/ArrowRight.tsx +0 -18
- package/src/components/icons/Check.tsx +0 -11
- package/src/components/icons/ChevronLeft.tsx +0 -11
- package/src/components/icons/ChevronRight.tsx +0 -11
- package/src/components/icons/CloseBtn.tsx +0 -11
- package/src/components/icons/Facebook.tsx +0 -14
- package/src/components/icons/FacebookColored.tsx +0 -16
- package/src/components/icons/FacebookRounded.tsx +0 -16
- package/src/components/icons/Globe.tsx +0 -38
- package/src/components/icons/IconFallback.tsx +0 -8
- package/src/components/icons/Instagram.tsx +0 -14
- package/src/components/icons/InstagramColored.tsx +0 -59
- package/src/components/icons/Link.tsx +0 -14
- package/src/components/icons/LinkedIn.tsx +0 -16
- package/src/components/icons/Mail.tsx +0 -16
- package/src/components/icons/Plus.tsx +0 -18
- package/src/components/icons/Search.tsx +0 -19
- package/src/components/icons/Share.tsx +0 -16
- package/src/components/icons/Twitter.tsx +0 -16
- package/src/components/icons/TwitterColored.tsx +0 -16
- package/src/components/icons/Upload.tsx +0 -14
- package/src/components/icons/X.tsx +0 -14
- package/src/components/icons/YouTube.tsx +0 -16
- package/src/components/icons/YouTubeColored.tsx +0 -17
- package/src/components/icons/index.ts +0 -24
- package/src/examples/PageLayout/index.tsx +0 -61
- package/src/examples/PageLayout/layout.stories.mdx +0 -35
- package/src/message.tsx +0 -8
- package/src/providers/Accordion/index.tsx +0 -15
- package/src/providers/Accordion/interface.ts +0 -14
- package/src/providers/Alerts/index.tsx +0 -15
- package/src/providers/Alerts/interface.ts +0 -11
- package/src/providers/CheckboxGroup/index.tsx +0 -22
- package/src/providers/Client/index.tsx +0 -21
- package/src/providers/Client/interface.ts +0 -13
- package/src/providers/Menu/index.tsx +0 -43
- package/src/providers/Menu/interface.ts +0 -32
- package/src/providers/RadioGroup/RadioGroup.interface.ts +0 -8
- package/src/providers/RadioGroup/RadioGroup.tsx +0 -25
- package/src/providers/SidePanel/index.tsx +0 -55
- package/src/providers/SidePanel/interface.ts +0 -26
- package/src/providers/Theme/hooks.ts +0 -25
- package/src/providers/Theme/index.tsx +0 -40
- package/src/providers/Theme/interface.ts +0 -28
- package/src/providers/Theme/utils.ts +0 -3
- package/src/providers/UserSearchQuery/index.tsx +0 -20
- package/src/providers/UserSearchQuery/interface.ts +0 -12
- package/src/storybook/Lightbox/LightboxControlledState.tsx +0 -28
- package/src/storybook/Menu/Menu.tsx +0 -177
- package/src/storybook/Menu/NestedMenu.tsx +0 -24
- package/src/storybook/Menu/mock.tsx +0 -84
- package/src/storybook/SelectField/index.tsx +0 -57
- package/src/storybook/ShareButtonExample/index.tsx +0 -66
- package/src/tailwind.css +0 -3
- package/src/theme/Accordion/index.tsx +0 -101
- package/src/theme/Alerts/index.ts +0 -97
- package/src/theme/Box/index.ts +0 -45
- package/src/theme/Button/index.tsx +0 -72
- package/src/theme/Calendar/index.tsx +0 -167
- package/src/theme/Carousel/index.ts +0 -36
- package/src/theme/Checkbox/index.ts +0 -49
- package/src/theme/CheckboxGroup/index.ts +0 -14
- package/src/theme/DatePicker/index.tsx +0 -42
- package/src/theme/Image/index.ts +0 -8
- package/src/theme/LightBox/index.ts +0 -56
- package/src/theme/Radio/index.ts +0 -31
- package/src/theme/RadioGroup/index.ts +0 -14
- package/src/theme/Search/index.ts +0 -20
- package/src/theme/ShareButton/index.tsx +0 -76
- package/src/theme/SidePanel/index.ts +0 -9
- package/src/theme/TextArea/index.ts +0 -25
- package/src/theme/Typography/index.tsx +0 -44
- package/src/theme/index.tsx +0 -178
- package/src/transitions/AccordionTransition.tsx +0 -26
- package/src/transitions/ModalTransition.tsx +0 -38
- package/src/transitions/RenderWithOpacity.tsx +0 -25
- package/src/transitions/RenderWithSlide.tsx +0 -21
- package/src/transitions/SidePanelTransition.tsx +0 -30
- package/src/types/components.ts +0 -34
- package/static/images/image.png +0 -0
- package/tailwind.config.js +0 -14
- package/tsconfig.json +0 -20
- package/tsconfig.lib.json +0 -25
- package/vite.config.ts +0 -58
|
@@ -0,0 +1,366 @@
|
|
|
1
|
+
export declare const calendarContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "inline-block text-gray-800", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "inline-block text-gray-800", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
2
|
+
export declare const calendarHeaderContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex items-center justify-between pb-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex items-center justify-between pb-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
3
|
+
export declare const calendarNavigationButtonsContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex items-center gap-1", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex items-center gap-1", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
4
|
+
export declare const calendarNavigationButtons: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "active:bg-color-1-500 p-2 rounded-full active:text-color-1-100 hover:bg-color-1-200 focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "active:bg-color-1-500 p-2 rounded-full active:text-color-1-100 hover:bg-color-1-200 focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
5
|
+
export declare const calendarTable: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex-1", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex-1", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
6
|
+
export declare const calendarDayLabel: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "text-center", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "text-center", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
7
|
+
export declare const calendarCellContainer: import("tailwind-variants").TVReturnType<{
|
|
8
|
+
isFocusVisible: {
|
|
9
|
+
true: "z-10";
|
|
10
|
+
false: "";
|
|
11
|
+
};
|
|
12
|
+
}, undefined, "py-0.5 relative", import("tailwind-variants/dist/config").TVConfig<{
|
|
13
|
+
isFocusVisible: {
|
|
14
|
+
true: "z-10";
|
|
15
|
+
false: "";
|
|
16
|
+
};
|
|
17
|
+
}, {
|
|
18
|
+
isFocusVisible: {
|
|
19
|
+
true: "z-10";
|
|
20
|
+
false: "";
|
|
21
|
+
};
|
|
22
|
+
}>, {
|
|
23
|
+
isFocusVisible: {
|
|
24
|
+
true: "z-10";
|
|
25
|
+
false: "";
|
|
26
|
+
};
|
|
27
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
28
|
+
isFocusVisible: {
|
|
29
|
+
true: "z-10";
|
|
30
|
+
false: "";
|
|
31
|
+
};
|
|
32
|
+
}, undefined, "py-0.5 relative", import("tailwind-variants/dist/config").TVConfig<{
|
|
33
|
+
isFocusVisible: {
|
|
34
|
+
true: "z-10";
|
|
35
|
+
false: "";
|
|
36
|
+
};
|
|
37
|
+
}, {
|
|
38
|
+
isFocusVisible: {
|
|
39
|
+
true: "z-10";
|
|
40
|
+
false: "";
|
|
41
|
+
};
|
|
42
|
+
}>, unknown, unknown, undefined>>;
|
|
43
|
+
export declare const calendarCell: import("tailwind-variants").TVReturnType<{
|
|
44
|
+
isSelected: {
|
|
45
|
+
true: "";
|
|
46
|
+
false: "";
|
|
47
|
+
};
|
|
48
|
+
isInvalid: {
|
|
49
|
+
true: "";
|
|
50
|
+
fasle: "";
|
|
51
|
+
};
|
|
52
|
+
isDisabled: {
|
|
53
|
+
true: "disabled";
|
|
54
|
+
false: "";
|
|
55
|
+
};
|
|
56
|
+
isRoundedLeft: {
|
|
57
|
+
true: "rounded-l-full";
|
|
58
|
+
false: "";
|
|
59
|
+
};
|
|
60
|
+
isRoundedRight: {
|
|
61
|
+
true: "rounded-r-full";
|
|
62
|
+
false: "";
|
|
63
|
+
};
|
|
64
|
+
}, undefined, "w-10 h-10 outline-none group", import("tailwind-variants/dist/config").TVConfig<{
|
|
65
|
+
isSelected: {
|
|
66
|
+
true: "";
|
|
67
|
+
false: "";
|
|
68
|
+
};
|
|
69
|
+
isInvalid: {
|
|
70
|
+
true: "";
|
|
71
|
+
fasle: "";
|
|
72
|
+
};
|
|
73
|
+
isDisabled: {
|
|
74
|
+
true: "disabled";
|
|
75
|
+
false: "";
|
|
76
|
+
};
|
|
77
|
+
isRoundedLeft: {
|
|
78
|
+
true: "rounded-l-full";
|
|
79
|
+
false: "";
|
|
80
|
+
};
|
|
81
|
+
isRoundedRight: {
|
|
82
|
+
true: "rounded-r-full";
|
|
83
|
+
false: "";
|
|
84
|
+
};
|
|
85
|
+
}, {
|
|
86
|
+
isSelected: {
|
|
87
|
+
true: "";
|
|
88
|
+
false: "";
|
|
89
|
+
};
|
|
90
|
+
isInvalid: {
|
|
91
|
+
true: "";
|
|
92
|
+
fasle: "";
|
|
93
|
+
};
|
|
94
|
+
isDisabled: {
|
|
95
|
+
true: "disabled";
|
|
96
|
+
false: "";
|
|
97
|
+
};
|
|
98
|
+
isRoundedLeft: {
|
|
99
|
+
true: "rounded-l-full";
|
|
100
|
+
false: "";
|
|
101
|
+
};
|
|
102
|
+
isRoundedRight: {
|
|
103
|
+
true: "rounded-r-full";
|
|
104
|
+
false: "";
|
|
105
|
+
};
|
|
106
|
+
}>, {
|
|
107
|
+
isSelected: {
|
|
108
|
+
true: "";
|
|
109
|
+
false: "";
|
|
110
|
+
};
|
|
111
|
+
isInvalid: {
|
|
112
|
+
true: "";
|
|
113
|
+
fasle: "";
|
|
114
|
+
};
|
|
115
|
+
isDisabled: {
|
|
116
|
+
true: "disabled";
|
|
117
|
+
false: "";
|
|
118
|
+
};
|
|
119
|
+
isRoundedLeft: {
|
|
120
|
+
true: "rounded-l-full";
|
|
121
|
+
false: "";
|
|
122
|
+
};
|
|
123
|
+
isRoundedRight: {
|
|
124
|
+
true: "rounded-r-full";
|
|
125
|
+
false: "";
|
|
126
|
+
};
|
|
127
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
128
|
+
isSelected: {
|
|
129
|
+
true: "";
|
|
130
|
+
false: "";
|
|
131
|
+
};
|
|
132
|
+
isInvalid: {
|
|
133
|
+
true: "";
|
|
134
|
+
fasle: "";
|
|
135
|
+
};
|
|
136
|
+
isDisabled: {
|
|
137
|
+
true: "disabled";
|
|
138
|
+
false: "";
|
|
139
|
+
};
|
|
140
|
+
isRoundedLeft: {
|
|
141
|
+
true: "rounded-l-full";
|
|
142
|
+
false: "";
|
|
143
|
+
};
|
|
144
|
+
isRoundedRight: {
|
|
145
|
+
true: "rounded-r-full";
|
|
146
|
+
false: "";
|
|
147
|
+
};
|
|
148
|
+
}, undefined, "w-10 h-10 outline-none group", import("tailwind-variants/dist/config").TVConfig<{
|
|
149
|
+
isSelected: {
|
|
150
|
+
true: "";
|
|
151
|
+
false: "";
|
|
152
|
+
};
|
|
153
|
+
isInvalid: {
|
|
154
|
+
true: "";
|
|
155
|
+
fasle: "";
|
|
156
|
+
};
|
|
157
|
+
isDisabled: {
|
|
158
|
+
true: "disabled";
|
|
159
|
+
false: "";
|
|
160
|
+
};
|
|
161
|
+
isRoundedLeft: {
|
|
162
|
+
true: "rounded-l-full";
|
|
163
|
+
false: "";
|
|
164
|
+
};
|
|
165
|
+
isRoundedRight: {
|
|
166
|
+
true: "rounded-r-full";
|
|
167
|
+
false: "";
|
|
168
|
+
};
|
|
169
|
+
}, {
|
|
170
|
+
isSelected: {
|
|
171
|
+
true: "";
|
|
172
|
+
false: "";
|
|
173
|
+
};
|
|
174
|
+
isInvalid: {
|
|
175
|
+
true: "";
|
|
176
|
+
fasle: "";
|
|
177
|
+
};
|
|
178
|
+
isDisabled: {
|
|
179
|
+
true: "disabled";
|
|
180
|
+
false: "";
|
|
181
|
+
};
|
|
182
|
+
isRoundedLeft: {
|
|
183
|
+
true: "rounded-l-full";
|
|
184
|
+
false: "";
|
|
185
|
+
};
|
|
186
|
+
isRoundedRight: {
|
|
187
|
+
true: "rounded-r-full";
|
|
188
|
+
false: "";
|
|
189
|
+
};
|
|
190
|
+
}>, unknown, unknown, undefined>>;
|
|
191
|
+
export declare const calendarCellFormattedDate: import("tailwind-variants").TVReturnType<{
|
|
192
|
+
isSelected: {
|
|
193
|
+
true: "";
|
|
194
|
+
false: "";
|
|
195
|
+
};
|
|
196
|
+
isInvalid: {
|
|
197
|
+
true: "";
|
|
198
|
+
fasle: "";
|
|
199
|
+
};
|
|
200
|
+
isDisabled: {
|
|
201
|
+
true: "";
|
|
202
|
+
false: "";
|
|
203
|
+
};
|
|
204
|
+
isFocusVisible: {
|
|
205
|
+
true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
|
|
206
|
+
false: "";
|
|
207
|
+
};
|
|
208
|
+
isSelectionStart: {
|
|
209
|
+
true: "";
|
|
210
|
+
false: "";
|
|
211
|
+
};
|
|
212
|
+
isSelectionEnd: {
|
|
213
|
+
true: "";
|
|
214
|
+
false: "";
|
|
215
|
+
};
|
|
216
|
+
}, undefined, "w-full h-full rounded-full flex items-center justify-center cursor-pointer", import("tailwind-variants/dist/config").TVConfig<{
|
|
217
|
+
isSelected: {
|
|
218
|
+
true: "";
|
|
219
|
+
false: "";
|
|
220
|
+
};
|
|
221
|
+
isInvalid: {
|
|
222
|
+
true: "";
|
|
223
|
+
fasle: "";
|
|
224
|
+
};
|
|
225
|
+
isDisabled: {
|
|
226
|
+
true: "";
|
|
227
|
+
false: "";
|
|
228
|
+
};
|
|
229
|
+
isFocusVisible: {
|
|
230
|
+
true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
|
|
231
|
+
false: "";
|
|
232
|
+
};
|
|
233
|
+
isSelectionStart: {
|
|
234
|
+
true: "";
|
|
235
|
+
false: "";
|
|
236
|
+
};
|
|
237
|
+
isSelectionEnd: {
|
|
238
|
+
true: "";
|
|
239
|
+
false: "";
|
|
240
|
+
};
|
|
241
|
+
}, {
|
|
242
|
+
isSelected: {
|
|
243
|
+
true: "";
|
|
244
|
+
false: "";
|
|
245
|
+
};
|
|
246
|
+
isInvalid: {
|
|
247
|
+
true: "";
|
|
248
|
+
fasle: "";
|
|
249
|
+
};
|
|
250
|
+
isDisabled: {
|
|
251
|
+
true: "";
|
|
252
|
+
false: "";
|
|
253
|
+
};
|
|
254
|
+
isFocusVisible: {
|
|
255
|
+
true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
|
|
256
|
+
false: "";
|
|
257
|
+
};
|
|
258
|
+
isSelectionStart: {
|
|
259
|
+
true: "";
|
|
260
|
+
false: "";
|
|
261
|
+
};
|
|
262
|
+
isSelectionEnd: {
|
|
263
|
+
true: "";
|
|
264
|
+
false: "";
|
|
265
|
+
};
|
|
266
|
+
}>, {
|
|
267
|
+
isSelected: {
|
|
268
|
+
true: "";
|
|
269
|
+
false: "";
|
|
270
|
+
};
|
|
271
|
+
isInvalid: {
|
|
272
|
+
true: "";
|
|
273
|
+
fasle: "";
|
|
274
|
+
};
|
|
275
|
+
isDisabled: {
|
|
276
|
+
true: "";
|
|
277
|
+
false: "";
|
|
278
|
+
};
|
|
279
|
+
isFocusVisible: {
|
|
280
|
+
true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
|
|
281
|
+
false: "";
|
|
282
|
+
};
|
|
283
|
+
isSelectionStart: {
|
|
284
|
+
true: "";
|
|
285
|
+
false: "";
|
|
286
|
+
};
|
|
287
|
+
isSelectionEnd: {
|
|
288
|
+
true: "";
|
|
289
|
+
false: "";
|
|
290
|
+
};
|
|
291
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
292
|
+
isSelected: {
|
|
293
|
+
true: "";
|
|
294
|
+
false: "";
|
|
295
|
+
};
|
|
296
|
+
isInvalid: {
|
|
297
|
+
true: "";
|
|
298
|
+
fasle: "";
|
|
299
|
+
};
|
|
300
|
+
isDisabled: {
|
|
301
|
+
true: "";
|
|
302
|
+
false: "";
|
|
303
|
+
};
|
|
304
|
+
isFocusVisible: {
|
|
305
|
+
true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
|
|
306
|
+
false: "";
|
|
307
|
+
};
|
|
308
|
+
isSelectionStart: {
|
|
309
|
+
true: "";
|
|
310
|
+
false: "";
|
|
311
|
+
};
|
|
312
|
+
isSelectionEnd: {
|
|
313
|
+
true: "";
|
|
314
|
+
false: "";
|
|
315
|
+
};
|
|
316
|
+
}, undefined, "w-full h-full rounded-full flex items-center justify-center cursor-pointer", import("tailwind-variants/dist/config").TVConfig<{
|
|
317
|
+
isSelected: {
|
|
318
|
+
true: "";
|
|
319
|
+
false: "";
|
|
320
|
+
};
|
|
321
|
+
isInvalid: {
|
|
322
|
+
true: "";
|
|
323
|
+
fasle: "";
|
|
324
|
+
};
|
|
325
|
+
isDisabled: {
|
|
326
|
+
true: "";
|
|
327
|
+
false: "";
|
|
328
|
+
};
|
|
329
|
+
isFocusVisible: {
|
|
330
|
+
true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
|
|
331
|
+
false: "";
|
|
332
|
+
};
|
|
333
|
+
isSelectionStart: {
|
|
334
|
+
true: "";
|
|
335
|
+
false: "";
|
|
336
|
+
};
|
|
337
|
+
isSelectionEnd: {
|
|
338
|
+
true: "";
|
|
339
|
+
false: "";
|
|
340
|
+
};
|
|
341
|
+
}, {
|
|
342
|
+
isSelected: {
|
|
343
|
+
true: "";
|
|
344
|
+
false: "";
|
|
345
|
+
};
|
|
346
|
+
isInvalid: {
|
|
347
|
+
true: "";
|
|
348
|
+
fasle: "";
|
|
349
|
+
};
|
|
350
|
+
isDisabled: {
|
|
351
|
+
true: "";
|
|
352
|
+
false: "";
|
|
353
|
+
};
|
|
354
|
+
isFocusVisible: {
|
|
355
|
+
true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
|
|
356
|
+
false: "";
|
|
357
|
+
};
|
|
358
|
+
isSelectionStart: {
|
|
359
|
+
true: "";
|
|
360
|
+
false: "";
|
|
361
|
+
};
|
|
362
|
+
isSelectionEnd: {
|
|
363
|
+
true: "";
|
|
364
|
+
false: "";
|
|
365
|
+
};
|
|
366
|
+
}>, unknown, unknown, undefined>>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const carousel: {
|
|
2
|
+
container: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
3
|
+
slideContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex justify-center m-auto px-8 w-full h-full", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex justify-center m-auto px-8 w-full h-full", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
4
|
+
slideWrapper: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "bg-color-1-200 p-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "bg-color-1-200 p-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
5
|
+
navigationButtons: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "bg-color-1-500 rounded-full p-4 text-white", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "bg-color-1-500 rounded-full p-4 text-white", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
6
|
+
swiper: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "bg-color-1-400 !py-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "bg-color-1-400 !py-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
7
|
+
swiperWrapper: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "bg-color-1-100 py-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "bg-color-1-100 py-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
8
|
+
};
|
|
9
|
+
export default carousel;
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
export declare const checkboxContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
2
|
+
export declare const checkboxLabel: import("tailwind-variants").TVReturnType<{
|
|
3
|
+
color: {
|
|
4
|
+
gray: "text-gray-300";
|
|
5
|
+
black: "text-black";
|
|
6
|
+
};
|
|
7
|
+
isDisabled: {
|
|
8
|
+
true: "text-gray-6";
|
|
9
|
+
};
|
|
10
|
+
}, undefined, "hover:cursor-pointer", import("tailwind-variants/dist/config").TVConfig<{
|
|
11
|
+
color: {
|
|
12
|
+
gray: "text-gray-300";
|
|
13
|
+
black: "text-black";
|
|
14
|
+
};
|
|
15
|
+
isDisabled: {
|
|
16
|
+
true: "text-gray-6";
|
|
17
|
+
};
|
|
18
|
+
}, {
|
|
19
|
+
color: {
|
|
20
|
+
gray: "text-gray-300";
|
|
21
|
+
black: "text-black";
|
|
22
|
+
};
|
|
23
|
+
isDisabled: {
|
|
24
|
+
true: "text-gray-6";
|
|
25
|
+
};
|
|
26
|
+
}>, {
|
|
27
|
+
color: {
|
|
28
|
+
gray: "text-gray-300";
|
|
29
|
+
black: "text-black";
|
|
30
|
+
};
|
|
31
|
+
isDisabled: {
|
|
32
|
+
true: "text-gray-6";
|
|
33
|
+
};
|
|
34
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
35
|
+
color: {
|
|
36
|
+
gray: "text-gray-300";
|
|
37
|
+
black: "text-black";
|
|
38
|
+
};
|
|
39
|
+
isDisabled: {
|
|
40
|
+
true: "text-gray-6";
|
|
41
|
+
};
|
|
42
|
+
}, undefined, "hover:cursor-pointer", import("tailwind-variants/dist/config").TVConfig<{
|
|
43
|
+
color: {
|
|
44
|
+
gray: "text-gray-300";
|
|
45
|
+
black: "text-black";
|
|
46
|
+
};
|
|
47
|
+
isDisabled: {
|
|
48
|
+
true: "text-gray-6";
|
|
49
|
+
};
|
|
50
|
+
}, {
|
|
51
|
+
color: {
|
|
52
|
+
gray: "text-gray-300";
|
|
53
|
+
black: "text-black";
|
|
54
|
+
};
|
|
55
|
+
isDisabled: {
|
|
56
|
+
true: "text-gray-6";
|
|
57
|
+
};
|
|
58
|
+
}>, unknown, unknown, undefined>>;
|
|
59
|
+
export declare const checkBox: import("tailwind-variants").TVReturnType<{
|
|
60
|
+
isDisabled: {
|
|
61
|
+
true: "border-gray-6";
|
|
62
|
+
};
|
|
63
|
+
isFocused: {
|
|
64
|
+
true: "outline-black [outline-offset: 2px]";
|
|
65
|
+
};
|
|
66
|
+
isError: {
|
|
67
|
+
true: "border-red-500";
|
|
68
|
+
};
|
|
69
|
+
}, 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<{
|
|
70
|
+
isDisabled: {
|
|
71
|
+
true: "border-gray-6";
|
|
72
|
+
};
|
|
73
|
+
isFocused: {
|
|
74
|
+
true: "outline-black [outline-offset: 2px]";
|
|
75
|
+
};
|
|
76
|
+
isError: {
|
|
77
|
+
true: "border-red-500";
|
|
78
|
+
};
|
|
79
|
+
}, {
|
|
80
|
+
isDisabled: {
|
|
81
|
+
true: "border-gray-6";
|
|
82
|
+
};
|
|
83
|
+
isFocused: {
|
|
84
|
+
true: "outline-black [outline-offset: 2px]";
|
|
85
|
+
};
|
|
86
|
+
isError: {
|
|
87
|
+
true: "border-red-500";
|
|
88
|
+
};
|
|
89
|
+
}>, {
|
|
90
|
+
isDisabled: {
|
|
91
|
+
true: "border-gray-6";
|
|
92
|
+
};
|
|
93
|
+
isFocused: {
|
|
94
|
+
true: "outline-black [outline-offset: 2px]";
|
|
95
|
+
};
|
|
96
|
+
isError: {
|
|
97
|
+
true: "border-red-500";
|
|
98
|
+
};
|
|
99
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
100
|
+
isDisabled: {
|
|
101
|
+
true: "border-gray-6";
|
|
102
|
+
};
|
|
103
|
+
isFocused: {
|
|
104
|
+
true: "outline-black [outline-offset: 2px]";
|
|
105
|
+
};
|
|
106
|
+
isError: {
|
|
107
|
+
true: "border-red-500";
|
|
108
|
+
};
|
|
109
|
+
}, 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<{
|
|
110
|
+
isDisabled: {
|
|
111
|
+
true: "border-gray-6";
|
|
112
|
+
};
|
|
113
|
+
isFocused: {
|
|
114
|
+
true: "outline-black [outline-offset: 2px]";
|
|
115
|
+
};
|
|
116
|
+
isError: {
|
|
117
|
+
true: "border-red-500";
|
|
118
|
+
};
|
|
119
|
+
}, {
|
|
120
|
+
isDisabled: {
|
|
121
|
+
true: "border-gray-6";
|
|
122
|
+
};
|
|
123
|
+
isFocused: {
|
|
124
|
+
true: "outline-black [outline-offset: 2px]";
|
|
125
|
+
};
|
|
126
|
+
isError: {
|
|
127
|
+
true: "border-red-500";
|
|
128
|
+
};
|
|
129
|
+
}>, unknown, unknown, undefined>>;
|
|
130
|
+
export declare const checkMark: import("tailwind-variants").TVReturnType<{
|
|
131
|
+
selected: {
|
|
132
|
+
true: "block text-white";
|
|
133
|
+
};
|
|
134
|
+
}, undefined, "hidden w-4 h-4 bg-gray-300 rounded-full", import("tailwind-variants/dist/config").TVConfig<{
|
|
135
|
+
selected: {
|
|
136
|
+
true: "block text-white";
|
|
137
|
+
};
|
|
138
|
+
}, {
|
|
139
|
+
selected: {
|
|
140
|
+
true: "block text-white";
|
|
141
|
+
};
|
|
142
|
+
}>, {
|
|
143
|
+
selected: {
|
|
144
|
+
true: "block text-white";
|
|
145
|
+
};
|
|
146
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
147
|
+
selected: {
|
|
148
|
+
true: "block text-white";
|
|
149
|
+
};
|
|
150
|
+
}, undefined, "hidden w-4 h-4 bg-gray-300 rounded-full", import("tailwind-variants/dist/config").TVConfig<{
|
|
151
|
+
selected: {
|
|
152
|
+
true: "block text-white";
|
|
153
|
+
};
|
|
154
|
+
}, {
|
|
155
|
+
selected: {
|
|
156
|
+
true: "block text-white";
|
|
157
|
+
};
|
|
158
|
+
}>, unknown, unknown, undefined>>;
|
|
159
|
+
export declare const checkMarkIcon: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "text-white w-4 h-4 [&_svg]:w-4 [&_svg]:h-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "text-white w-4 h-4 [&_svg]:w-4 [&_svg]:h-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export declare const checkboxGroup: 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 checkboxGroupItemsGroup: 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>>;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
export declare const datePickerContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "relative inline-flex flex-col text-left", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "relative inline-flex flex-col text-left", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
2
|
+
export declare const datePickerButton: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex items-center border-2 border-color-1-500 rounded focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex items-center border-2 border-color-1-500 rounded focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
3
|
+
export declare const datePickerCalendarPopoverUnderlay: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "fixed inset-0", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "fixed inset-0", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
4
|
+
export declare const datePickerCalendarPopoverContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "absolute top-full bg-white border border-gray-300 rounded-md shadow-lg mt-2 p-8 z-10", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "absolute top-full bg-white border border-gray-300 rounded-md shadow-lg mt-2 p-8 z-10", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
5
|
+
export declare const datePickerDateField: import("tailwind-variants").TVReturnType<{
|
|
6
|
+
dateFieldShown: {
|
|
7
|
+
true: "";
|
|
8
|
+
false: "hidden";
|
|
9
|
+
};
|
|
10
|
+
}, undefined, "pr-1 flex gap-2", import("tailwind-variants/dist/config").TVConfig<{
|
|
11
|
+
dateFieldShown: {
|
|
12
|
+
true: "";
|
|
13
|
+
false: "hidden";
|
|
14
|
+
};
|
|
15
|
+
}, {
|
|
16
|
+
dateFieldShown: {
|
|
17
|
+
true: "";
|
|
18
|
+
false: "hidden";
|
|
19
|
+
};
|
|
20
|
+
}>, {
|
|
21
|
+
dateFieldShown: {
|
|
22
|
+
true: "";
|
|
23
|
+
false: "hidden";
|
|
24
|
+
};
|
|
25
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
26
|
+
dateFieldShown: {
|
|
27
|
+
true: "";
|
|
28
|
+
false: "hidden";
|
|
29
|
+
};
|
|
30
|
+
}, undefined, "pr-1 flex gap-2", import("tailwind-variants/dist/config").TVConfig<{
|
|
31
|
+
dateFieldShown: {
|
|
32
|
+
true: "";
|
|
33
|
+
false: "hidden";
|
|
34
|
+
};
|
|
35
|
+
}, {
|
|
36
|
+
dateFieldShown: {
|
|
37
|
+
true: "";
|
|
38
|
+
false: "hidden";
|
|
39
|
+
};
|
|
40
|
+
}>, unknown, unknown, undefined>>;
|
|
41
|
+
export declare const datePickerDateSegment: 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>>;
|
|
42
|
+
export declare const datePickerIcon: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "text-color-1-500 bg-color-1-100 border-l-2 border-color-1-500 h-full py-2 px-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "text-color-1-500 bg-color-1-100 border-l-2 border-color-1-500 h-full py-2 px-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
43
|
+
export declare const datePickerLabel: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "text-color-1-500 font-bold px-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "text-color-1-500 font-bold px-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { TToken } from '../../providers/Theme/interface';
|
|
2
|
+
export declare const imgStyles: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "object-contain", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "object-contain", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
3
|
+
export declare const imgTheme: (props: TToken) => string;
|