@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,174 +0,0 @@
|
|
|
1
|
-
export declare const shareButtonContainer: import("tailwind-variants").TVReturnType<{
|
|
2
|
-
listDirection: {
|
|
3
|
-
row: "flex-row";
|
|
4
|
-
column: "flex-col";
|
|
5
|
-
};
|
|
6
|
-
}, undefined, "flex print:hidden relative", import("tailwind-variants/dist/config").TVConfig<{
|
|
7
|
-
listDirection: {
|
|
8
|
-
row: "flex-row";
|
|
9
|
-
column: "flex-col";
|
|
10
|
-
};
|
|
11
|
-
}, {
|
|
12
|
-
listDirection: {
|
|
13
|
-
row: "flex-row";
|
|
14
|
-
column: "flex-col";
|
|
15
|
-
};
|
|
16
|
-
}>, {
|
|
17
|
-
listDirection: {
|
|
18
|
-
row: "flex-row";
|
|
19
|
-
column: "flex-col";
|
|
20
|
-
};
|
|
21
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
22
|
-
listDirection: {
|
|
23
|
-
row: "flex-row";
|
|
24
|
-
column: "flex-col";
|
|
25
|
-
};
|
|
26
|
-
}, undefined, "flex print:hidden relative", import("tailwind-variants/dist/config").TVConfig<{
|
|
27
|
-
listDirection: {
|
|
28
|
-
row: "flex-row";
|
|
29
|
-
column: "flex-col";
|
|
30
|
-
};
|
|
31
|
-
}, {
|
|
32
|
-
listDirection: {
|
|
33
|
-
row: "flex-row";
|
|
34
|
-
column: "flex-col";
|
|
35
|
-
};
|
|
36
|
-
}>, unknown, unknown, undefined>>;
|
|
37
|
-
export declare const shareButton: import("tailwind-variants").TVReturnType<{
|
|
38
|
-
isOpen: {
|
|
39
|
-
true: "";
|
|
40
|
-
false: "";
|
|
41
|
-
};
|
|
42
|
-
}, undefined, "relative z-20 !bg-color-1-500 hover:!bg-color-1-400 w-16 h-16 flex justify-center items-center active:!bg-color-1-400 rounded-full text-white focus-ring-black", import("tailwind-variants/dist/config").TVConfig<{
|
|
43
|
-
isOpen: {
|
|
44
|
-
true: "";
|
|
45
|
-
false: "";
|
|
46
|
-
};
|
|
47
|
-
}, {
|
|
48
|
-
isOpen: {
|
|
49
|
-
true: "";
|
|
50
|
-
false: "";
|
|
51
|
-
};
|
|
52
|
-
}>, {
|
|
53
|
-
isOpen: {
|
|
54
|
-
true: "";
|
|
55
|
-
false: "";
|
|
56
|
-
};
|
|
57
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
58
|
-
isOpen: {
|
|
59
|
-
true: "";
|
|
60
|
-
false: "";
|
|
61
|
-
};
|
|
62
|
-
}, undefined, "relative z-20 !bg-color-1-500 hover:!bg-color-1-400 w-16 h-16 flex justify-center items-center active:!bg-color-1-400 rounded-full text-white focus-ring-black", import("tailwind-variants/dist/config").TVConfig<{
|
|
63
|
-
isOpen: {
|
|
64
|
-
true: "";
|
|
65
|
-
false: "";
|
|
66
|
-
};
|
|
67
|
-
}, {
|
|
68
|
-
isOpen: {
|
|
69
|
-
true: "";
|
|
70
|
-
false: "";
|
|
71
|
-
};
|
|
72
|
-
}>, unknown, unknown, undefined>>;
|
|
73
|
-
export declare const shareButtonLinksList: import("tailwind-variants").TVReturnType<{
|
|
74
|
-
listDirection: {
|
|
75
|
-
row: "flex-row pl-14 h-16 left-0";
|
|
76
|
-
column: "flex-col [width:calc(100% + .5rem)] pt-14 w-16 top-0";
|
|
77
|
-
};
|
|
78
|
-
isOpen: {
|
|
79
|
-
true: "opacity-100 visible";
|
|
80
|
-
false: "";
|
|
81
|
-
};
|
|
82
|
-
}, undefined, "!bg-color-1-200 absolute opacity-0 invisible flex transition duration-300 items-center p-0 bg-primary-1 z-0 rounded-b-full rounded-t-full", import("tailwind-variants/dist/config").TVConfig<{
|
|
83
|
-
listDirection: {
|
|
84
|
-
row: "flex-row pl-14 h-16 left-0";
|
|
85
|
-
column: "flex-col [width:calc(100% + .5rem)] pt-14 w-16 top-0";
|
|
86
|
-
};
|
|
87
|
-
isOpen: {
|
|
88
|
-
true: "opacity-100 visible";
|
|
89
|
-
false: "";
|
|
90
|
-
};
|
|
91
|
-
}, {
|
|
92
|
-
listDirection: {
|
|
93
|
-
row: "flex-row pl-14 h-16 left-0";
|
|
94
|
-
column: "flex-col [width:calc(100% + .5rem)] pt-14 w-16 top-0";
|
|
95
|
-
};
|
|
96
|
-
isOpen: {
|
|
97
|
-
true: "opacity-100 visible";
|
|
98
|
-
false: "";
|
|
99
|
-
};
|
|
100
|
-
}>, {
|
|
101
|
-
listDirection: {
|
|
102
|
-
row: "flex-row pl-14 h-16 left-0";
|
|
103
|
-
column: "flex-col [width:calc(100% + .5rem)] pt-14 w-16 top-0";
|
|
104
|
-
};
|
|
105
|
-
isOpen: {
|
|
106
|
-
true: "opacity-100 visible";
|
|
107
|
-
false: "";
|
|
108
|
-
};
|
|
109
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
110
|
-
listDirection: {
|
|
111
|
-
row: "flex-row pl-14 h-16 left-0";
|
|
112
|
-
column: "flex-col [width:calc(100% + .5rem)] pt-14 w-16 top-0";
|
|
113
|
-
};
|
|
114
|
-
isOpen: {
|
|
115
|
-
true: "opacity-100 visible";
|
|
116
|
-
false: "";
|
|
117
|
-
};
|
|
118
|
-
}, undefined, "!bg-color-1-200 absolute opacity-0 invisible flex transition duration-300 items-center p-0 bg-primary-1 z-0 rounded-b-full rounded-t-full", import("tailwind-variants/dist/config").TVConfig<{
|
|
119
|
-
listDirection: {
|
|
120
|
-
row: "flex-row pl-14 h-16 left-0";
|
|
121
|
-
column: "flex-col [width:calc(100% + .5rem)] pt-14 w-16 top-0";
|
|
122
|
-
};
|
|
123
|
-
isOpen: {
|
|
124
|
-
true: "opacity-100 visible";
|
|
125
|
-
false: "";
|
|
126
|
-
};
|
|
127
|
-
}, {
|
|
128
|
-
listDirection: {
|
|
129
|
-
row: "flex-row pl-14 h-16 left-0";
|
|
130
|
-
column: "flex-col [width:calc(100% + .5rem)] pt-14 w-16 top-0";
|
|
131
|
-
};
|
|
132
|
-
isOpen: {
|
|
133
|
-
true: "opacity-100 visible";
|
|
134
|
-
false: "";
|
|
135
|
-
};
|
|
136
|
-
}>, unknown, unknown, undefined>>;
|
|
137
|
-
export declare const shareButtonLink: import("tailwind-variants").TVReturnType<{
|
|
138
|
-
listDirection: {
|
|
139
|
-
row: "last:rounded-r-full h-full";
|
|
140
|
-
column: "last:rounded-b-full";
|
|
141
|
-
};
|
|
142
|
-
}, undefined, "\n flex\n items-center\n justify-center\n cursor-pointer\n bg-color-1-200\n hover:bg-color-1-300\n w-full\n text-color-1-500\n rounded-none\n p-2\n focus-ring-black\n z-10\n has-focus-ring:z-20\n ", import("tailwind-variants/dist/config").TVConfig<{
|
|
143
|
-
listDirection: {
|
|
144
|
-
row: "last:rounded-r-full h-full";
|
|
145
|
-
column: "last:rounded-b-full";
|
|
146
|
-
};
|
|
147
|
-
}, {
|
|
148
|
-
listDirection: {
|
|
149
|
-
row: "last:rounded-r-full h-full";
|
|
150
|
-
column: "last:rounded-b-full";
|
|
151
|
-
};
|
|
152
|
-
}>, {
|
|
153
|
-
listDirection: {
|
|
154
|
-
row: "last:rounded-r-full h-full";
|
|
155
|
-
column: "last:rounded-b-full";
|
|
156
|
-
};
|
|
157
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
158
|
-
listDirection: {
|
|
159
|
-
row: "last:rounded-r-full h-full";
|
|
160
|
-
column: "last:rounded-b-full";
|
|
161
|
-
};
|
|
162
|
-
}, undefined, "\n flex\n items-center\n justify-center\n cursor-pointer\n bg-color-1-200\n hover:bg-color-1-300\n w-full\n text-color-1-500\n rounded-none\n p-2\n focus-ring-black\n z-10\n has-focus-ring:z-20\n ", import("tailwind-variants/dist/config").TVConfig<{
|
|
163
|
-
listDirection: {
|
|
164
|
-
row: "last:rounded-r-full h-full";
|
|
165
|
-
column: "last:rounded-b-full";
|
|
166
|
-
};
|
|
167
|
-
}, {
|
|
168
|
-
listDirection: {
|
|
169
|
-
row: "last:rounded-r-full h-full";
|
|
170
|
-
column: "last:rounded-b-full";
|
|
171
|
-
};
|
|
172
|
-
}>, unknown, unknown, undefined>>;
|
|
173
|
-
export declare const shareButtonIcon: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "text-white", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "text-white", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
174
|
-
export declare const shareButtonLinkIcons: 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>>;
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export declare const sidePanelWrapper: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "m-auto fixed right-0 top-0 bottom-0 w-full max-w-[512px] [&>div]:h-full", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "m-auto fixed right-0 top-0 bottom-0 w-full max-w-[512px] [&>div]:h-full", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
2
|
-
export declare const sidePanelContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "h-full w-full flex justify-end", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "h-full w-full flex justify-end", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
3
|
-
export declare const sidePanelInnerContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "bg-black h-full w-full overflow-y-auto", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "bg-black h-full w-full overflow-y-auto", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
export declare const textArea: import("tailwind-variants").TVReturnType<{
|
|
2
|
-
isError: {
|
|
3
|
-
true: "border-red-500";
|
|
4
|
-
};
|
|
5
|
-
}, undefined, "\n w-full\n min-h-32\n rounded-2xl\n px-6\n h-12\n border-2\n border-solid\n transition\n duration-300\n ease-in-out\n text-gray-2\n placeholder:text-gray-2\n focus-ring-black\n \n ", import("tailwind-variants/dist/config").TVConfig<{
|
|
6
|
-
isError: {
|
|
7
|
-
true: "border-red-500";
|
|
8
|
-
};
|
|
9
|
-
}, {
|
|
10
|
-
isError: {
|
|
11
|
-
true: "border-red-500";
|
|
12
|
-
};
|
|
13
|
-
}>, {
|
|
14
|
-
isError: {
|
|
15
|
-
true: "border-red-500";
|
|
16
|
-
};
|
|
17
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
18
|
-
isError: {
|
|
19
|
-
true: "border-red-500";
|
|
20
|
-
};
|
|
21
|
-
}, undefined, "\n w-full\n min-h-32\n rounded-2xl\n px-6\n h-12\n border-2\n border-solid\n transition\n duration-300\n ease-in-out\n text-gray-2\n placeholder:text-gray-2\n focus-ring-black\n \n ", import("tailwind-variants/dist/config").TVConfig<{
|
|
22
|
-
isError: {
|
|
23
|
-
true: "border-red-500";
|
|
24
|
-
};
|
|
25
|
-
}, {
|
|
26
|
-
isError: {
|
|
27
|
-
true: "border-red-500";
|
|
28
|
-
};
|
|
29
|
-
}>, unknown, unknown, undefined>>;
|
|
@@ -1,233 +0,0 @@
|
|
|
1
|
-
declare const typography: import("tailwind-variants").TVReturnType<{
|
|
2
|
-
size: {
|
|
3
|
-
h1: "text-5xl";
|
|
4
|
-
h2: "text-4xl";
|
|
5
|
-
h3: "text-3xl";
|
|
6
|
-
h4: "text-2xl";
|
|
7
|
-
h5: "text-xl";
|
|
8
|
-
h6: "text-lg";
|
|
9
|
-
leading: "text-md font-bold leading-normal";
|
|
10
|
-
paragraph: "text-md inline";
|
|
11
|
-
footnotes: "text-sm";
|
|
12
|
-
xs: "text-xs";
|
|
13
|
-
};
|
|
14
|
-
font: {
|
|
15
|
-
body: "font-body";
|
|
16
|
-
};
|
|
17
|
-
weight: {
|
|
18
|
-
normal: "font-normal";
|
|
19
|
-
light: "font-light";
|
|
20
|
-
bold: "font-bold";
|
|
21
|
-
};
|
|
22
|
-
color: {
|
|
23
|
-
gray: "text-gray-500";
|
|
24
|
-
white: "text-white";
|
|
25
|
-
};
|
|
26
|
-
isError: {
|
|
27
|
-
true: "text-sm text-error py-3";
|
|
28
|
-
};
|
|
29
|
-
align: {
|
|
30
|
-
center: "text-center";
|
|
31
|
-
left: "text-left";
|
|
32
|
-
right: "text-right";
|
|
33
|
-
};
|
|
34
|
-
}, undefined, undefined, import("tailwind-variants/dist/config").TVConfig<{
|
|
35
|
-
size: {
|
|
36
|
-
h1: "text-5xl";
|
|
37
|
-
h2: "text-4xl";
|
|
38
|
-
h3: "text-3xl";
|
|
39
|
-
h4: "text-2xl";
|
|
40
|
-
h5: "text-xl";
|
|
41
|
-
h6: "text-lg";
|
|
42
|
-
leading: "text-md font-bold leading-normal";
|
|
43
|
-
paragraph: "text-md inline";
|
|
44
|
-
footnotes: "text-sm";
|
|
45
|
-
xs: "text-xs";
|
|
46
|
-
};
|
|
47
|
-
font: {
|
|
48
|
-
body: "font-body";
|
|
49
|
-
};
|
|
50
|
-
weight: {
|
|
51
|
-
normal: "font-normal";
|
|
52
|
-
light: "font-light";
|
|
53
|
-
bold: "font-bold";
|
|
54
|
-
};
|
|
55
|
-
color: {
|
|
56
|
-
gray: "text-gray-500";
|
|
57
|
-
white: "text-white";
|
|
58
|
-
};
|
|
59
|
-
isError: {
|
|
60
|
-
true: "text-sm text-error py-3";
|
|
61
|
-
};
|
|
62
|
-
align: {
|
|
63
|
-
center: "text-center";
|
|
64
|
-
left: "text-left";
|
|
65
|
-
right: "text-right";
|
|
66
|
-
};
|
|
67
|
-
}, {
|
|
68
|
-
size: {
|
|
69
|
-
h1: "text-5xl";
|
|
70
|
-
h2: "text-4xl";
|
|
71
|
-
h3: "text-3xl";
|
|
72
|
-
h4: "text-2xl";
|
|
73
|
-
h5: "text-xl";
|
|
74
|
-
h6: "text-lg";
|
|
75
|
-
leading: "text-md font-bold leading-normal";
|
|
76
|
-
paragraph: "text-md inline";
|
|
77
|
-
footnotes: "text-sm";
|
|
78
|
-
xs: "text-xs";
|
|
79
|
-
};
|
|
80
|
-
font: {
|
|
81
|
-
body: "font-body";
|
|
82
|
-
};
|
|
83
|
-
weight: {
|
|
84
|
-
normal: "font-normal";
|
|
85
|
-
light: "font-light";
|
|
86
|
-
bold: "font-bold";
|
|
87
|
-
};
|
|
88
|
-
color: {
|
|
89
|
-
gray: "text-gray-500";
|
|
90
|
-
white: "text-white";
|
|
91
|
-
};
|
|
92
|
-
isError: {
|
|
93
|
-
true: "text-sm text-error py-3";
|
|
94
|
-
};
|
|
95
|
-
align: {
|
|
96
|
-
center: "text-center";
|
|
97
|
-
left: "text-left";
|
|
98
|
-
right: "text-right";
|
|
99
|
-
};
|
|
100
|
-
}>, {
|
|
101
|
-
size: {
|
|
102
|
-
h1: "text-5xl";
|
|
103
|
-
h2: "text-4xl";
|
|
104
|
-
h3: "text-3xl";
|
|
105
|
-
h4: "text-2xl";
|
|
106
|
-
h5: "text-xl";
|
|
107
|
-
h6: "text-lg";
|
|
108
|
-
leading: "text-md font-bold leading-normal";
|
|
109
|
-
paragraph: "text-md inline";
|
|
110
|
-
footnotes: "text-sm";
|
|
111
|
-
xs: "text-xs";
|
|
112
|
-
};
|
|
113
|
-
font: {
|
|
114
|
-
body: "font-body";
|
|
115
|
-
};
|
|
116
|
-
weight: {
|
|
117
|
-
normal: "font-normal";
|
|
118
|
-
light: "font-light";
|
|
119
|
-
bold: "font-bold";
|
|
120
|
-
};
|
|
121
|
-
color: {
|
|
122
|
-
gray: "text-gray-500";
|
|
123
|
-
white: "text-white";
|
|
124
|
-
};
|
|
125
|
-
isError: {
|
|
126
|
-
true: "text-sm text-error py-3";
|
|
127
|
-
};
|
|
128
|
-
align: {
|
|
129
|
-
center: "text-center";
|
|
130
|
-
left: "text-left";
|
|
131
|
-
right: "text-right";
|
|
132
|
-
};
|
|
133
|
-
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
134
|
-
size: {
|
|
135
|
-
h1: "text-5xl";
|
|
136
|
-
h2: "text-4xl";
|
|
137
|
-
h3: "text-3xl";
|
|
138
|
-
h4: "text-2xl";
|
|
139
|
-
h5: "text-xl";
|
|
140
|
-
h6: "text-lg";
|
|
141
|
-
leading: "text-md font-bold leading-normal";
|
|
142
|
-
paragraph: "text-md inline";
|
|
143
|
-
footnotes: "text-sm";
|
|
144
|
-
xs: "text-xs";
|
|
145
|
-
};
|
|
146
|
-
font: {
|
|
147
|
-
body: "font-body";
|
|
148
|
-
};
|
|
149
|
-
weight: {
|
|
150
|
-
normal: "font-normal";
|
|
151
|
-
light: "font-light";
|
|
152
|
-
bold: "font-bold";
|
|
153
|
-
};
|
|
154
|
-
color: {
|
|
155
|
-
gray: "text-gray-500";
|
|
156
|
-
white: "text-white";
|
|
157
|
-
};
|
|
158
|
-
isError: {
|
|
159
|
-
true: "text-sm text-error py-3";
|
|
160
|
-
};
|
|
161
|
-
align: {
|
|
162
|
-
center: "text-center";
|
|
163
|
-
left: "text-left";
|
|
164
|
-
right: "text-right";
|
|
165
|
-
};
|
|
166
|
-
}, undefined, undefined, import("tailwind-variants/dist/config").TVConfig<{
|
|
167
|
-
size: {
|
|
168
|
-
h1: "text-5xl";
|
|
169
|
-
h2: "text-4xl";
|
|
170
|
-
h3: "text-3xl";
|
|
171
|
-
h4: "text-2xl";
|
|
172
|
-
h5: "text-xl";
|
|
173
|
-
h6: "text-lg";
|
|
174
|
-
leading: "text-md font-bold leading-normal";
|
|
175
|
-
paragraph: "text-md inline";
|
|
176
|
-
footnotes: "text-sm";
|
|
177
|
-
xs: "text-xs";
|
|
178
|
-
};
|
|
179
|
-
font: {
|
|
180
|
-
body: "font-body";
|
|
181
|
-
};
|
|
182
|
-
weight: {
|
|
183
|
-
normal: "font-normal";
|
|
184
|
-
light: "font-light";
|
|
185
|
-
bold: "font-bold";
|
|
186
|
-
};
|
|
187
|
-
color: {
|
|
188
|
-
gray: "text-gray-500";
|
|
189
|
-
white: "text-white";
|
|
190
|
-
};
|
|
191
|
-
isError: {
|
|
192
|
-
true: "text-sm text-error py-3";
|
|
193
|
-
};
|
|
194
|
-
align: {
|
|
195
|
-
center: "text-center";
|
|
196
|
-
left: "text-left";
|
|
197
|
-
right: "text-right";
|
|
198
|
-
};
|
|
199
|
-
}, {
|
|
200
|
-
size: {
|
|
201
|
-
h1: "text-5xl";
|
|
202
|
-
h2: "text-4xl";
|
|
203
|
-
h3: "text-3xl";
|
|
204
|
-
h4: "text-2xl";
|
|
205
|
-
h5: "text-xl";
|
|
206
|
-
h6: "text-lg";
|
|
207
|
-
leading: "text-md font-bold leading-normal";
|
|
208
|
-
paragraph: "text-md inline";
|
|
209
|
-
footnotes: "text-sm";
|
|
210
|
-
xs: "text-xs";
|
|
211
|
-
};
|
|
212
|
-
font: {
|
|
213
|
-
body: "font-body";
|
|
214
|
-
};
|
|
215
|
-
weight: {
|
|
216
|
-
normal: "font-normal";
|
|
217
|
-
light: "font-light";
|
|
218
|
-
bold: "font-bold";
|
|
219
|
-
};
|
|
220
|
-
color: {
|
|
221
|
-
gray: "text-gray-500";
|
|
222
|
-
white: "text-white";
|
|
223
|
-
};
|
|
224
|
-
isError: {
|
|
225
|
-
true: "text-sm text-error py-3";
|
|
226
|
-
};
|
|
227
|
-
align: {
|
|
228
|
-
center: "text-center";
|
|
229
|
-
left: "text-left";
|
|
230
|
-
right: "text-right";
|
|
231
|
-
};
|
|
232
|
-
}>, unknown, unknown, undefined>>;
|
|
233
|
-
export default typography;
|
package/theme/index.d.ts
DELETED
package/types/components.d.ts
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import type React from 'react';
|
|
2
|
-
import type { HTMLAttributes } from 'react';
|
|
3
|
-
import type { RefCallBack } from 'react-hook-form';
|
|
4
|
-
import type { TCustomTheme, TToken } from '../providers/Theme/interface';
|
|
5
|
-
export interface TDefaultComponent<T = TToken> {
|
|
6
|
-
as?: React.ElementType<any>;
|
|
7
|
-
customTheme?: TCustomTheme;
|
|
8
|
-
tokens?: T;
|
|
9
|
-
themeName?: string | null;
|
|
10
|
-
children?: React.ReactNode;
|
|
11
|
-
}
|
|
12
|
-
export type TReactHookForm = {
|
|
13
|
-
onBlur?: (...event: any[]) => void;
|
|
14
|
-
onChange?: (...event: any[]) => void;
|
|
15
|
-
fieldRef?: RefCallBack;
|
|
16
|
-
min?: string | number | undefined;
|
|
17
|
-
max?: string | number | undefined;
|
|
18
|
-
maxLength?: number | undefined;
|
|
19
|
-
minLength?: number | undefined;
|
|
20
|
-
pattern?: string | undefined;
|
|
21
|
-
validation?: object;
|
|
22
|
-
};
|
|
23
|
-
export interface TTransition extends TDefaultComponent, HTMLAttributes<HTMLElement> {
|
|
24
|
-
isVisible: boolean;
|
|
25
|
-
children: React.ReactNode;
|
|
26
|
-
}
|
|
27
|
-
export type Nullable<T> = T | undefined | null;
|
|
28
|
-
export type Maybe<T> = T | null;
|