react-native-mantine 0.1.15 → 0.3.0
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/README.md +603 -7
- package/lib/commonjs/components/Accordion/index.js +250 -0
- package/lib/commonjs/components/Accordion/index.js.map +1 -0
- package/lib/commonjs/components/ActionIcon/ActionIcon.js +23 -28
- package/lib/commonjs/components/ActionIcon/ActionIcon.js.map +1 -1
- package/lib/commonjs/components/Anchor/index.js +107 -0
- package/lib/commonjs/components/Anchor/index.js.map +1 -0
- package/lib/commonjs/components/AspectRatio/index.js +65 -0
- package/lib/commonjs/components/AspectRatio/index.js.map +1 -0
- package/lib/commonjs/components/Avatar/index.js +128 -0
- package/lib/commonjs/components/Avatar/index.js.map +1 -0
- package/lib/commonjs/components/BackgroundImage/index.js +55 -0
- package/lib/commonjs/components/BackgroundImage/index.js.map +1 -0
- package/lib/commonjs/components/Badge/index.js +189 -0
- package/lib/commonjs/components/Badge/index.js.map +1 -0
- package/lib/commonjs/components/Blockquote/index.js +97 -0
- package/lib/commonjs/components/Blockquote/index.js.map +1 -0
- package/lib/commonjs/components/BoxView/index.js +66 -2
- package/lib/commonjs/components/BoxView/index.js.map +1 -1
- package/lib/commonjs/components/Breadcrumbs/index.js +57 -0
- package/lib/commonjs/components/Breadcrumbs/index.js.map +1 -0
- package/lib/commonjs/components/Burger/index.js +183 -0
- package/lib/commonjs/components/Burger/index.js.map +1 -0
- package/lib/commonjs/components/Button/Button.styles.js +35 -18
- package/lib/commonjs/components/Button/Button.styles.js.map +1 -1
- package/lib/commonjs/components/Button/index.js +3 -3
- package/lib/commonjs/components/Button/index.js.map +1 -1
- package/lib/commonjs/components/Card/index.js +135 -0
- package/lib/commonjs/components/Card/index.js.map +1 -0
- package/lib/commonjs/components/Center/index.js +35 -0
- package/lib/commonjs/components/Center/index.js.map +1 -0
- package/lib/commonjs/components/Checkbox/index.js +139 -0
- package/lib/commonjs/components/Checkbox/index.js.map +1 -0
- package/lib/commonjs/components/Chip/index.js +268 -0
- package/lib/commonjs/components/Chip/index.js.map +1 -0
- package/lib/commonjs/components/CloseButton/index.js +136 -0
- package/lib/commonjs/components/CloseButton/index.js.map +1 -0
- package/lib/commonjs/components/Code/index.js +67 -0
- package/lib/commonjs/components/Code/index.js.map +1 -0
- package/lib/commonjs/components/Collapse/index.js +82 -0
- package/lib/commonjs/components/Collapse/index.js.map +1 -0
- package/lib/commonjs/components/ColorSwatch/index.js +95 -0
- package/lib/commonjs/components/ColorSwatch/index.js.map +1 -0
- package/lib/commonjs/components/Container/index.js +70 -0
- package/lib/commonjs/components/Container/index.js.map +1 -0
- package/lib/commonjs/components/CopyButton/index.js +54 -0
- package/lib/commonjs/components/CopyButton/index.js.map +1 -0
- package/lib/commonjs/components/Dialog/index.js +139 -0
- package/lib/commonjs/components/Dialog/index.js.map +1 -0
- package/lib/commonjs/components/Divider/index.js +147 -0
- package/lib/commonjs/components/Divider/index.js.map +1 -0
- package/lib/commonjs/components/Drawer/index.js +251 -0
- package/lib/commonjs/components/Drawer/index.js.map +1 -0
- package/lib/commonjs/components/Flex/index.js +62 -0
- package/lib/commonjs/components/Flex/index.js.map +1 -0
- package/lib/commonjs/components/Grid/index.js +144 -0
- package/lib/commonjs/components/Grid/index.js.map +1 -0
- package/lib/commonjs/components/Group/index.js +22 -1
- package/lib/commonjs/components/Group/index.js.map +1 -1
- package/lib/commonjs/components/Highlight/index.js +74 -0
- package/lib/commonjs/components/Highlight/index.js.map +1 -0
- package/lib/commonjs/components/Image/index.js +132 -0
- package/lib/commonjs/components/Image/index.js.map +1 -0
- package/lib/commonjs/components/Indicator/index.js +198 -0
- package/lib/commonjs/components/Indicator/index.js.map +1 -0
- package/lib/commonjs/components/Kbd/index.js +95 -0
- package/lib/commonjs/components/Kbd/index.js.map +1 -0
- package/lib/commonjs/components/List/index.js +216 -0
- package/lib/commonjs/components/List/index.js.map +1 -0
- package/lib/commonjs/components/Loader/Loader.js +25 -18
- package/lib/commonjs/components/Loader/Loader.js.map +1 -1
- package/lib/commonjs/components/LoadingOverlay/index.js +84 -0
- package/lib/commonjs/components/LoadingOverlay/index.js.map +1 -0
- package/lib/commonjs/components/Mark/index.js +46 -0
- package/lib/commonjs/components/Mark/index.js.map +1 -0
- package/lib/commonjs/components/MediaQuery/index.js +88 -0
- package/lib/commonjs/components/MediaQuery/index.js.map +1 -0
- package/lib/commonjs/components/Menu/index.js +305 -0
- package/lib/commonjs/components/Menu/index.js.map +1 -0
- package/lib/commonjs/components/Modal/index.js +235 -0
- package/lib/commonjs/components/Modal/index.js.map +1 -0
- package/lib/commonjs/components/MultiSelect/index.js +299 -0
- package/lib/commonjs/components/MultiSelect/index.js.map +1 -0
- package/lib/commonjs/components/NativeSelect/index.js +294 -0
- package/lib/commonjs/components/NativeSelect/index.js.map +1 -0
- package/lib/commonjs/components/NavLink/index.js +163 -0
- package/lib/commonjs/components/NavLink/index.js.map +1 -0
- package/lib/commonjs/components/Notification/index.js +142 -0
- package/lib/commonjs/components/Notification/index.js.map +1 -0
- package/lib/commonjs/components/NumberInput/index.js +267 -0
- package/lib/commonjs/components/NumberInput/index.js.map +1 -0
- package/lib/commonjs/components/Overlay/index.js +77 -0
- package/lib/commonjs/components/Overlay/index.js.map +1 -0
- package/lib/commonjs/components/Pagination/index.js +253 -0
- package/lib/commonjs/components/Pagination/index.js.map +1 -0
- package/lib/commonjs/components/Paper/index.js +155 -0
- package/lib/commonjs/components/Paper/index.js.map +1 -0
- package/lib/commonjs/components/PasswordInput/index.js +67 -0
- package/lib/commonjs/components/PasswordInput/index.js.map +1 -0
- package/lib/commonjs/components/PinInput/index.js +186 -0
- package/lib/commonjs/components/PinInput/index.js.map +1 -0
- package/lib/commonjs/components/Popover/index.js +162 -0
- package/lib/commonjs/components/Popover/index.js.map +1 -0
- package/lib/commonjs/components/Portal/index.js +69 -0
- package/lib/commonjs/components/Portal/index.js.map +1 -0
- package/lib/commonjs/components/Progress/index.js +124 -0
- package/lib/commonjs/components/Progress/index.js.map +1 -0
- package/lib/commonjs/components/Radio/index.js +135 -0
- package/lib/commonjs/components/Radio/index.js.map +1 -0
- package/lib/commonjs/components/Rating/index.js +151 -0
- package/lib/commonjs/components/Rating/index.js.map +1 -0
- package/lib/commonjs/components/RingProgress/index.js +174 -0
- package/lib/commonjs/components/RingProgress/index.js.map +1 -0
- package/lib/commonjs/components/SegmentedControl/index.js +225 -0
- package/lib/commonjs/components/SegmentedControl/index.js.map +1 -0
- package/lib/commonjs/components/Select/index.js +244 -0
- package/lib/commonjs/components/Select/index.js.map +1 -0
- package/lib/commonjs/components/SimpleGrid/index.js +101 -0
- package/lib/commonjs/components/SimpleGrid/index.js.map +1 -0
- package/lib/commonjs/components/Skeleton/index.js +111 -0
- package/lib/commonjs/components/Skeleton/index.js.map +1 -0
- package/lib/commonjs/components/Slider/index.js +275 -0
- package/lib/commonjs/components/Slider/index.js.map +1 -0
- package/lib/commonjs/components/Space/index.js +45 -0
- package/lib/commonjs/components/Space/index.js.map +1 -0
- package/lib/commonjs/components/Spoiler/index.js +109 -0
- package/lib/commonjs/components/Spoiler/index.js.map +1 -0
- package/lib/commonjs/components/Stepper/index.js +275 -0
- package/lib/commonjs/components/Stepper/index.js.map +1 -0
- package/lib/commonjs/components/Switch/index.js +118 -0
- package/lib/commonjs/components/Switch/index.js.map +1 -0
- package/lib/commonjs/components/Table/index.js +313 -0
- package/lib/commonjs/components/Table/index.js.map +1 -0
- package/lib/commonjs/components/Text/index.js +7 -2
- package/lib/commonjs/components/Text/index.js.map +1 -1
- package/lib/commonjs/components/TextInput/index.js +184 -0
- package/lib/commonjs/components/TextInput/index.js.map +1 -0
- package/lib/commonjs/components/Textarea/index.js +54 -0
- package/lib/commonjs/components/Textarea/index.js.map +1 -0
- package/lib/commonjs/components/ThemeIcon/index.js +144 -0
- package/lib/commonjs/components/ThemeIcon/index.js.map +1 -0
- package/lib/commonjs/components/Timeline/index.js +241 -0
- package/lib/commonjs/components/Timeline/index.js.map +1 -0
- package/lib/commonjs/components/Title/index.js +44 -0
- package/lib/commonjs/components/Title/index.js.map +1 -0
- package/lib/commonjs/components/Tooltip/index.js +186 -0
- package/lib/commonjs/components/Tooltip/index.js.map +1 -0
- package/lib/commonjs/components/TransferList/index.js +292 -0
- package/lib/commonjs/components/TransferList/index.js.map +1 -0
- package/lib/commonjs/components/Transition/index.js +174 -0
- package/lib/commonjs/components/Transition/index.js.map +1 -0
- package/lib/commonjs/components/UnstyledButton/UnstyledButton.js +1 -2
- package/lib/commonjs/components/UnstyledButton/UnstyledButton.js.map +1 -1
- package/lib/commonjs/components/index.js +759 -0
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/hooks/useCachedResources.js +1 -2
- package/lib/commonjs/hooks/useCachedResources.js.map +1 -1
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/theme/create-theme.js +4 -1
- package/lib/commonjs/theme/create-theme.js.map +1 -1
- package/lib/commonjs/theme/default-theme.js +2 -0
- package/lib/commonjs/theme/default-theme.js.map +1 -1
- package/lib/commonjs/theme/functions/attach-functions.js +12 -2
- package/lib/commonjs/theme/functions/attach-functions.js.map +1 -1
- package/lib/commonjs/theme/functions/fns/helpers.js +44 -0
- package/lib/commonjs/theme/functions/fns/helpers.js.map +1 -0
- package/lib/commonjs/theme/functions/fns/index.js +4 -1
- package/lib/commonjs/theme/functions/fns/index.js.map +1 -1
- package/lib/commonjs/theme/functions/fns/theme-color/theme-color.js +26 -4
- package/lib/commonjs/theme/functions/fns/theme-color/theme-color.js.map +1 -1
- package/lib/commonjs/theme/functions/fns/variant.js +89 -2
- package/lib/commonjs/theme/functions/fns/variant.js.map +1 -1
- package/lib/commonjs/theme/get-size/index.js +2 -2
- package/lib/commonjs/theme/get-size/index.js.map +1 -1
- package/lib/commonjs/theme/theme-provider.js +10 -9
- package/lib/commonjs/theme/theme-provider.js.map +1 -1
- package/lib/commonjs/theme/utils/rem.js +8 -6
- package/lib/commonjs/theme/utils/rem.js.map +1 -1
- package/lib/module/components/Accordion/index.js +246 -0
- package/lib/module/components/Accordion/index.js.map +1 -0
- package/lib/module/components/ActionIcon/ActionIcon.js +25 -29
- package/lib/module/components/ActionIcon/ActionIcon.js.map +1 -1
- package/lib/module/components/Anchor/index.js +102 -0
- package/lib/module/components/Anchor/index.js.map +1 -0
- package/lib/module/components/AspectRatio/index.js +60 -0
- package/lib/module/components/AspectRatio/index.js.map +1 -0
- package/lib/module/components/Avatar/index.js +123 -0
- package/lib/module/components/Avatar/index.js.map +1 -0
- package/lib/module/components/BackgroundImage/index.js +50 -0
- package/lib/module/components/BackgroundImage/index.js.map +1 -0
- package/lib/module/components/Badge/index.js +184 -0
- package/lib/module/components/Badge/index.js.map +1 -0
- package/lib/module/components/Blockquote/index.js +92 -0
- package/lib/module/components/Blockquote/index.js.map +1 -0
- package/lib/module/components/BoxView/index.js +66 -2
- package/lib/module/components/BoxView/index.js.map +1 -1
- package/lib/module/components/Breadcrumbs/index.js +52 -0
- package/lib/module/components/Breadcrumbs/index.js.map +1 -0
- package/lib/module/components/Burger/index.js +180 -0
- package/lib/module/components/Burger/index.js.map +1 -0
- package/lib/module/components/Button/Button.styles.js +35 -18
- package/lib/module/components/Button/Button.styles.js.map +1 -1
- package/lib/module/components/Button/index.js +1 -0
- package/lib/module/components/Button/index.js.map +1 -1
- package/lib/module/components/Card/index.js +130 -0
- package/lib/module/components/Card/index.js.map +1 -0
- package/lib/module/components/Center/index.js +30 -0
- package/lib/module/components/Center/index.js.map +1 -0
- package/lib/module/components/Checkbox/index.js +134 -0
- package/lib/module/components/Checkbox/index.js.map +1 -0
- package/lib/module/components/Chip/index.js +263 -0
- package/lib/module/components/Chip/index.js.map +1 -0
- package/lib/module/components/CloseButton/index.js +132 -0
- package/lib/module/components/CloseButton/index.js.map +1 -0
- package/lib/module/components/Code/index.js +62 -0
- package/lib/module/components/Code/index.js.map +1 -0
- package/lib/module/components/Collapse/index.js +77 -0
- package/lib/module/components/Collapse/index.js.map +1 -0
- package/lib/module/components/ColorSwatch/index.js +90 -0
- package/lib/module/components/ColorSwatch/index.js.map +1 -0
- package/lib/module/components/Container/index.js +65 -0
- package/lib/module/components/Container/index.js.map +1 -0
- package/lib/module/components/CopyButton/index.js +48 -0
- package/lib/module/components/CopyButton/index.js.map +1 -0
- package/lib/module/components/Dialog/index.js +134 -0
- package/lib/module/components/Dialog/index.js.map +1 -0
- package/lib/module/components/Divider/index.js +142 -0
- package/lib/module/components/Divider/index.js.map +1 -0
- package/lib/module/components/Drawer/index.js +246 -0
- package/lib/module/components/Drawer/index.js.map +1 -0
- package/lib/module/components/Flex/index.js +57 -0
- package/lib/module/components/Flex/index.js.map +1 -0
- package/lib/module/components/Grid/index.js +139 -0
- package/lib/module/components/Grid/index.js.map +1 -0
- package/lib/module/components/Group/index.js +22 -1
- package/lib/module/components/Group/index.js.map +1 -1
- package/lib/module/components/Highlight/index.js +70 -0
- package/lib/module/components/Highlight/index.js.map +1 -0
- package/lib/module/components/Image/index.js +127 -0
- package/lib/module/components/Image/index.js.map +1 -0
- package/lib/module/components/Indicator/index.js +193 -0
- package/lib/module/components/Indicator/index.js.map +1 -0
- package/lib/module/components/Kbd/index.js +90 -0
- package/lib/module/components/Kbd/index.js.map +1 -0
- package/lib/module/components/List/index.js +211 -0
- package/lib/module/components/List/index.js.map +1 -0
- package/lib/module/components/Loader/Loader.js +26 -19
- package/lib/module/components/Loader/Loader.js.map +1 -1
- package/lib/module/components/LoadingOverlay/index.js +80 -0
- package/lib/module/components/LoadingOverlay/index.js.map +1 -0
- package/lib/module/components/Mark/index.js +41 -0
- package/lib/module/components/Mark/index.js.map +1 -0
- package/lib/module/components/MediaQuery/index.js +82 -0
- package/lib/module/components/MediaQuery/index.js.map +1 -0
- package/lib/module/components/Menu/index.js +300 -0
- package/lib/module/components/Menu/index.js.map +1 -0
- package/lib/module/components/Modal/index.js +230 -0
- package/lib/module/components/Modal/index.js.map +1 -0
- package/lib/module/components/MultiSelect/index.js +294 -0
- package/lib/module/components/MultiSelect/index.js.map +1 -0
- package/lib/module/components/NativeSelect/index.js +289 -0
- package/lib/module/components/NativeSelect/index.js.map +1 -0
- package/lib/module/components/NavLink/index.js +158 -0
- package/lib/module/components/NavLink/index.js.map +1 -0
- package/lib/module/components/Notification/index.js +137 -0
- package/lib/module/components/Notification/index.js.map +1 -0
- package/lib/module/components/NumberInput/index.js +262 -0
- package/lib/module/components/NumberInput/index.js.map +1 -0
- package/lib/module/components/Overlay/index.js +72 -0
- package/lib/module/components/Overlay/index.js.map +1 -0
- package/lib/module/components/Pagination/index.js +248 -0
- package/lib/module/components/Pagination/index.js.map +1 -0
- package/lib/module/components/Paper/index.js +150 -0
- package/lib/module/components/Paper/index.js.map +1 -0
- package/lib/module/components/PasswordInput/index.js +62 -0
- package/lib/module/components/PasswordInput/index.js.map +1 -0
- package/lib/module/components/PinInput/index.js +182 -0
- package/lib/module/components/PinInput/index.js.map +1 -0
- package/lib/module/components/Popover/index.js +157 -0
- package/lib/module/components/Popover/index.js.map +1 -0
- package/lib/module/components/Portal/index.js +62 -0
- package/lib/module/components/Portal/index.js.map +1 -0
- package/lib/module/components/Progress/index.js +120 -0
- package/lib/module/components/Progress/index.js.map +1 -0
- package/lib/module/components/Radio/index.js +130 -0
- package/lib/module/components/Radio/index.js.map +1 -0
- package/lib/module/components/Rating/index.js +146 -0
- package/lib/module/components/Rating/index.js.map +1 -0
- package/lib/module/components/RingProgress/index.js +169 -0
- package/lib/module/components/RingProgress/index.js.map +1 -0
- package/lib/module/components/SegmentedControl/index.js +220 -0
- package/lib/module/components/SegmentedControl/index.js.map +1 -0
- package/lib/module/components/Select/index.js +239 -0
- package/lib/module/components/Select/index.js.map +1 -0
- package/lib/module/components/SimpleGrid/index.js +96 -0
- package/lib/module/components/SimpleGrid/index.js.map +1 -0
- package/lib/module/components/Skeleton/index.js +106 -0
- package/lib/module/components/Skeleton/index.js.map +1 -0
- package/lib/module/components/Slider/index.js +270 -0
- package/lib/module/components/Slider/index.js.map +1 -0
- package/lib/module/components/Space/index.js +41 -0
- package/lib/module/components/Space/index.js.map +1 -0
- package/lib/module/components/Spoiler/index.js +104 -0
- package/lib/module/components/Spoiler/index.js.map +1 -0
- package/lib/module/components/Stepper/index.js +270 -0
- package/lib/module/components/Stepper/index.js.map +1 -0
- package/lib/module/components/Switch/index.js +113 -0
- package/lib/module/components/Switch/index.js.map +1 -0
- package/lib/module/components/Table/index.js +308 -0
- package/lib/module/components/Table/index.js.map +1 -0
- package/lib/module/components/Text/index.js +7 -2
- package/lib/module/components/Text/index.js.map +1 -1
- package/lib/module/components/TextInput/index.js +179 -0
- package/lib/module/components/TextInput/index.js.map +1 -0
- package/lib/module/components/Textarea/index.js +50 -0
- package/lib/module/components/Textarea/index.js.map +1 -0
- package/lib/module/components/ThemeIcon/index.js +140 -0
- package/lib/module/components/ThemeIcon/index.js.map +1 -0
- package/lib/module/components/Timeline/index.js +236 -0
- package/lib/module/components/Timeline/index.js.map +1 -0
- package/lib/module/components/Title/index.js +39 -0
- package/lib/module/components/Title/index.js.map +1 -0
- package/lib/module/components/Tooltip/index.js +181 -0
- package/lib/module/components/Tooltip/index.js.map +1 -0
- package/lib/module/components/TransferList/index.js +287 -0
- package/lib/module/components/TransferList/index.js.map +1 -0
- package/lib/module/components/Transition/index.js +169 -0
- package/lib/module/components/Transition/index.js.map +1 -0
- package/lib/module/components/index.js +101 -0
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/package.json +1 -0
- package/lib/module/theme/create-theme.js +4 -1
- package/lib/module/theme/create-theme.js.map +1 -1
- package/lib/module/theme/default-theme.js +2 -0
- package/lib/module/theme/default-theme.js.map +1 -1
- package/lib/module/theme/functions/attach-functions.js +12 -2
- package/lib/module/theme/functions/attach-functions.js.map +1 -1
- package/lib/module/theme/functions/fns/helpers.js +34 -0
- package/lib/module/theme/functions/fns/helpers.js.map +1 -0
- package/lib/module/theme/functions/fns/index.js +3 -1
- package/lib/module/theme/functions/fns/index.js.map +1 -1
- package/lib/module/theme/functions/fns/theme-color/theme-color.js +26 -4
- package/lib/module/theme/functions/fns/theme-color/theme-color.js.map +1 -1
- package/lib/module/theme/functions/fns/variant.js +89 -2
- package/lib/module/theme/functions/fns/variant.js.map +1 -1
- package/lib/module/theme/get-size/index.js +2 -2
- package/lib/module/theme/get-size/index.js.map +1 -1
- package/lib/module/theme/theme-provider.js +9 -7
- package/lib/module/theme/theme-provider.js.map +1 -1
- package/lib/module/theme/utils/rem.js +8 -6
- package/lib/module/theme/utils/rem.js.map +1 -1
- package/lib/typescript/commonjs/src/components/Accordion/index.d.ts +54 -0
- package/lib/typescript/commonjs/src/components/Accordion/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ActionIcon/ActionIcon.d.ts +4 -4
- package/lib/typescript/commonjs/src/components/ActionIcon/ActionIcon.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/Anchor/index.d.ts +25 -0
- package/lib/typescript/commonjs/src/components/Anchor/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/AspectRatio/index.d.ts +12 -0
- package/lib/typescript/commonjs/src/components/AspectRatio/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Avatar/index.d.ts +23 -0
- package/lib/typescript/commonjs/src/components/Avatar/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/BackgroundImage/index.d.ts +15 -0
- package/lib/typescript/commonjs/src/components/BackgroundImage/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Badge/index.d.ts +24 -0
- package/lib/typescript/commonjs/src/components/Badge/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Blockquote/index.d.ts +18 -0
- package/lib/typescript/commonjs/src/components/Blockquote/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/BoxView/index.d.ts +28 -0
- package/lib/typescript/commonjs/src/components/BoxView/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/Breadcrumbs/index.d.ts +12 -0
- package/lib/typescript/commonjs/src/components/Breadcrumbs/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Burger/index.d.ts +21 -0
- package/lib/typescript/commonjs/src/components/Burger/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Button/Button.styles.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/Button/Button.styles.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/Button/index.d.ts +1 -0
- package/lib/typescript/commonjs/src/components/Button/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/Card/index.d.ts +24 -0
- package/lib/typescript/commonjs/src/components/Card/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Center/index.d.ts +15 -0
- package/lib/typescript/commonjs/src/components/Center/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Checkbox/index.d.ts +24 -0
- package/lib/typescript/commonjs/src/components/Checkbox/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Chip/index.d.ts +51 -0
- package/lib/typescript/commonjs/src/components/Chip/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/CloseButton/index.d.ts +22 -0
- package/lib/typescript/commonjs/src/components/CloseButton/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Code/index.d.ts +15 -0
- package/lib/typescript/commonjs/src/components/Code/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Collapse/index.d.ts +20 -0
- package/lib/typescript/commonjs/src/components/Collapse/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ColorSwatch/index.d.ts +20 -0
- package/lib/typescript/commonjs/src/components/ColorSwatch/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Container/index.d.ts +20 -0
- package/lib/typescript/commonjs/src/components/Container/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/CopyButton/index.d.ts +15 -0
- package/lib/typescript/commonjs/src/components/CopyButton/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Dialog/index.d.ts +31 -0
- package/lib/typescript/commonjs/src/components/Dialog/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Divider/index.d.ts +20 -0
- package/lib/typescript/commonjs/src/components/Divider/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Drawer/index.d.ts +36 -0
- package/lib/typescript/commonjs/src/components/Drawer/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Flex/index.d.ts +27 -0
- package/lib/typescript/commonjs/src/components/Flex/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Grid/index.d.ts +38 -0
- package/lib/typescript/commonjs/src/components/Grid/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Group/index.d.ts +2 -1
- package/lib/typescript/commonjs/src/components/Group/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/Highlight/index.d.ts +19 -0
- package/lib/typescript/commonjs/src/components/Highlight/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Image/index.d.ts +31 -0
- package/lib/typescript/commonjs/src/components/Image/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Indicator/index.d.ts +32 -0
- package/lib/typescript/commonjs/src/components/Indicator/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Input/Input.styles.d.ts +5 -5
- package/lib/typescript/commonjs/src/components/Kbd/index.d.ts +12 -0
- package/lib/typescript/commonjs/src/components/Kbd/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/List/index.d.ts +42 -0
- package/lib/typescript/commonjs/src/components/List/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Loader/Loader.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/LoadingOverlay/index.d.ts +23 -0
- package/lib/typescript/commonjs/src/components/LoadingOverlay/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Mark/index.d.ts +14 -0
- package/lib/typescript/commonjs/src/components/Mark/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/MediaQuery/index.d.ts +24 -0
- package/lib/typescript/commonjs/src/components/MediaQuery/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Menu/index.d.ts +64 -0
- package/lib/typescript/commonjs/src/components/Menu/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Modal/index.d.ts +40 -0
- package/lib/typescript/commonjs/src/components/Modal/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/MultiSelect/index.d.ts +53 -0
- package/lib/typescript/commonjs/src/components/MultiSelect/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/NativeSelect/index.d.ts +45 -0
- package/lib/typescript/commonjs/src/components/NativeSelect/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/NavLink/index.d.ts +30 -0
- package/lib/typescript/commonjs/src/components/NavLink/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Notification/index.d.ts +28 -0
- package/lib/typescript/commonjs/src/components/Notification/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/NumberInput/index.d.ts +47 -0
- package/lib/typescript/commonjs/src/components/NumberInput/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Overlay/index.d.ts +24 -0
- package/lib/typescript/commonjs/src/components/Overlay/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Pagination/index.d.ts +37 -0
- package/lib/typescript/commonjs/src/components/Pagination/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Paper/index.d.ts +18 -0
- package/lib/typescript/commonjs/src/components/Paper/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/PasswordInput/index.d.ts +15 -0
- package/lib/typescript/commonjs/src/components/PasswordInput/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/PinInput/index.d.ts +33 -0
- package/lib/typescript/commonjs/src/components/PinInput/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Popover/index.d.ts +44 -0
- package/lib/typescript/commonjs/src/components/Popover/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Portal/index.d.ts +10 -0
- package/lib/typescript/commonjs/src/components/Portal/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Progress/index.d.ts +29 -0
- package/lib/typescript/commonjs/src/components/Progress/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Radio/index.d.ts +24 -0
- package/lib/typescript/commonjs/src/components/Radio/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Rating/index.d.ts +32 -0
- package/lib/typescript/commonjs/src/components/Rating/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/RingProgress/index.d.ts +61 -0
- package/lib/typescript/commonjs/src/components/RingProgress/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/SegmentedControl/index.d.ts +35 -0
- package/lib/typescript/commonjs/src/components/SegmentedControl/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Select/index.d.ts +53 -0
- package/lib/typescript/commonjs/src/components/Select/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/SimpleGrid/index.d.ts +22 -0
- package/lib/typescript/commonjs/src/components/SimpleGrid/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Skeleton/index.d.ts +22 -0
- package/lib/typescript/commonjs/src/components/Skeleton/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Slider/index.d.ts +43 -0
- package/lib/typescript/commonjs/src/components/Slider/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Space/index.d.ts +13 -0
- package/lib/typescript/commonjs/src/components/Space/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Spoiler/index.d.ts +22 -0
- package/lib/typescript/commonjs/src/components/Spoiler/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Stack/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/Stepper/index.d.ts +55 -0
- package/lib/typescript/commonjs/src/components/Stepper/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Switch/index.d.ts +24 -0
- package/lib/typescript/commonjs/src/components/Switch/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Table/index.d.ts +72 -0
- package/lib/typescript/commonjs/src/components/Table/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Text/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/components/Text/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/TextInput/index.d.ts +31 -0
- package/lib/typescript/commonjs/src/components/TextInput/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Textarea/index.d.ts +12 -0
- package/lib/typescript/commonjs/src/components/Textarea/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ThemeIcon/index.d.ts +21 -0
- package/lib/typescript/commonjs/src/components/ThemeIcon/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Timeline/index.d.ts +52 -0
- package/lib/typescript/commonjs/src/components/Timeline/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Title/index.d.ts +14 -0
- package/lib/typescript/commonjs/src/components/Title/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Tooltip/index.d.ts +36 -0
- package/lib/typescript/commonjs/src/components/Tooltip/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/TransferList/index.d.ts +42 -0
- package/lib/typescript/commonjs/src/components/TransferList/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/Transition/index.d.ts +25 -0
- package/lib/typescript/commonjs/src/components/Transition/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/index.d.ts +69 -0
- package/lib/typescript/commonjs/src/components/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/theme/create-theme.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/theme/default-theme.d.ts +20 -0
- package/lib/typescript/commonjs/src/theme/default-theme.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/theme/functions/attach-functions.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/theme/functions/fns/helpers.d.ts +23 -0
- package/lib/typescript/commonjs/src/theme/functions/fns/helpers.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/theme/functions/fns/index.d.ts +22 -1
- package/lib/typescript/commonjs/src/theme/functions/fns/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/theme/functions/fns/radius.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/theme/functions/fns/theme-color/theme-color.d.ts +8 -1
- package/lib/typescript/commonjs/src/theme/functions/fns/theme-color/theme-color.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/theme/functions/fns/variant.d.ts +19 -1
- package/lib/typescript/commonjs/src/theme/functions/fns/variant.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/theme/theme-provider.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/theme/utils/rem.d.ts +2 -2
- package/lib/typescript/commonjs/src/theme/utils/rem.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Accordion/index.d.ts +54 -0
- package/lib/typescript/module/src/components/Accordion/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ActionIcon/ActionIcon.d.ts +4 -4
- package/lib/typescript/module/src/components/ActionIcon/ActionIcon.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Anchor/index.d.ts +25 -0
- package/lib/typescript/module/src/components/Anchor/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/AspectRatio/index.d.ts +12 -0
- package/lib/typescript/module/src/components/AspectRatio/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Avatar/index.d.ts +23 -0
- package/lib/typescript/module/src/components/Avatar/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/BackgroundImage/index.d.ts +15 -0
- package/lib/typescript/module/src/components/BackgroundImage/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Badge/index.d.ts +24 -0
- package/lib/typescript/module/src/components/Badge/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Blockquote/index.d.ts +18 -0
- package/lib/typescript/module/src/components/Blockquote/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/BoxView/index.d.ts +28 -0
- package/lib/typescript/module/src/components/BoxView/index.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Breadcrumbs/index.d.ts +12 -0
- package/lib/typescript/module/src/components/Breadcrumbs/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Burger/index.d.ts +21 -0
- package/lib/typescript/module/src/components/Burger/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Button/Button.styles.d.ts +5 -0
- package/lib/typescript/module/src/components/Button/Button.styles.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Button/index.d.ts +1 -0
- package/lib/typescript/module/src/components/Button/index.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Card/index.d.ts +24 -0
- package/lib/typescript/module/src/components/Card/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Center/index.d.ts +15 -0
- package/lib/typescript/module/src/components/Center/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Checkbox/index.d.ts +24 -0
- package/lib/typescript/module/src/components/Checkbox/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Chip/index.d.ts +51 -0
- package/lib/typescript/module/src/components/Chip/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/CloseButton/index.d.ts +22 -0
- package/lib/typescript/module/src/components/CloseButton/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Code/index.d.ts +15 -0
- package/lib/typescript/module/src/components/Code/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Collapse/index.d.ts +20 -0
- package/lib/typescript/module/src/components/Collapse/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ColorSwatch/index.d.ts +20 -0
- package/lib/typescript/module/src/components/ColorSwatch/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Container/index.d.ts +20 -0
- package/lib/typescript/module/src/components/Container/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/CopyButton/index.d.ts +15 -0
- package/lib/typescript/module/src/components/CopyButton/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Dialog/index.d.ts +31 -0
- package/lib/typescript/module/src/components/Dialog/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Divider/index.d.ts +20 -0
- package/lib/typescript/module/src/components/Divider/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Drawer/index.d.ts +36 -0
- package/lib/typescript/module/src/components/Drawer/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Flex/index.d.ts +27 -0
- package/lib/typescript/module/src/components/Flex/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Grid/index.d.ts +38 -0
- package/lib/typescript/module/src/components/Grid/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Group/index.d.ts +2 -1
- package/lib/typescript/module/src/components/Group/index.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Highlight/index.d.ts +19 -0
- package/lib/typescript/module/src/components/Highlight/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Image/index.d.ts +31 -0
- package/lib/typescript/module/src/components/Image/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Indicator/index.d.ts +32 -0
- package/lib/typescript/module/src/components/Indicator/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Input/Input.styles.d.ts +5 -5
- package/lib/typescript/module/src/components/Kbd/index.d.ts +12 -0
- package/lib/typescript/module/src/components/Kbd/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/List/index.d.ts +42 -0
- package/lib/typescript/module/src/components/List/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Loader/Loader.d.ts.map +1 -1
- package/lib/typescript/module/src/components/LoadingOverlay/index.d.ts +23 -0
- package/lib/typescript/module/src/components/LoadingOverlay/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Mark/index.d.ts +14 -0
- package/lib/typescript/module/src/components/Mark/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/MediaQuery/index.d.ts +24 -0
- package/lib/typescript/module/src/components/MediaQuery/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Menu/index.d.ts +64 -0
- package/lib/typescript/module/src/components/Menu/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Modal/index.d.ts +40 -0
- package/lib/typescript/module/src/components/Modal/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/MultiSelect/index.d.ts +53 -0
- package/lib/typescript/module/src/components/MultiSelect/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/NativeSelect/index.d.ts +45 -0
- package/lib/typescript/module/src/components/NativeSelect/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/NavLink/index.d.ts +30 -0
- package/lib/typescript/module/src/components/NavLink/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Notification/index.d.ts +28 -0
- package/lib/typescript/module/src/components/Notification/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/NumberInput/index.d.ts +47 -0
- package/lib/typescript/module/src/components/NumberInput/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Overlay/index.d.ts +24 -0
- package/lib/typescript/module/src/components/Overlay/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Pagination/index.d.ts +37 -0
- package/lib/typescript/module/src/components/Pagination/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Paper/index.d.ts +18 -0
- package/lib/typescript/module/src/components/Paper/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/PasswordInput/index.d.ts +15 -0
- package/lib/typescript/module/src/components/PasswordInput/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/PinInput/index.d.ts +33 -0
- package/lib/typescript/module/src/components/PinInput/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Popover/index.d.ts +44 -0
- package/lib/typescript/module/src/components/Popover/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Portal/index.d.ts +10 -0
- package/lib/typescript/module/src/components/Portal/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Progress/index.d.ts +29 -0
- package/lib/typescript/module/src/components/Progress/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Radio/index.d.ts +24 -0
- package/lib/typescript/module/src/components/Radio/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Rating/index.d.ts +32 -0
- package/lib/typescript/module/src/components/Rating/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/RingProgress/index.d.ts +61 -0
- package/lib/typescript/module/src/components/RingProgress/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/SegmentedControl/index.d.ts +35 -0
- package/lib/typescript/module/src/components/SegmentedControl/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Select/index.d.ts +53 -0
- package/lib/typescript/module/src/components/Select/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/SimpleGrid/index.d.ts +22 -0
- package/lib/typescript/module/src/components/SimpleGrid/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Skeleton/index.d.ts +22 -0
- package/lib/typescript/module/src/components/Skeleton/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Slider/index.d.ts +43 -0
- package/lib/typescript/module/src/components/Slider/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Space/index.d.ts +13 -0
- package/lib/typescript/module/src/components/Space/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Spoiler/index.d.ts +22 -0
- package/lib/typescript/module/src/components/Spoiler/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Stack/index.d.ts.map +1 -1
- package/lib/typescript/module/src/components/Stepper/index.d.ts +55 -0
- package/lib/typescript/module/src/components/Stepper/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Switch/index.d.ts +24 -0
- package/lib/typescript/module/src/components/Switch/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Table/index.d.ts +72 -0
- package/lib/typescript/module/src/components/Table/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Text/index.d.ts +4 -0
- package/lib/typescript/module/src/components/Text/index.d.ts.map +1 -1
- package/lib/typescript/module/src/components/TextInput/index.d.ts +31 -0
- package/lib/typescript/module/src/components/TextInput/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Textarea/index.d.ts +12 -0
- package/lib/typescript/module/src/components/Textarea/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ThemeIcon/index.d.ts +21 -0
- package/lib/typescript/module/src/components/ThemeIcon/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Timeline/index.d.ts +52 -0
- package/lib/typescript/module/src/components/Timeline/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Title/index.d.ts +14 -0
- package/lib/typescript/module/src/components/Title/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Tooltip/index.d.ts +36 -0
- package/lib/typescript/module/src/components/Tooltip/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/TransferList/index.d.ts +42 -0
- package/lib/typescript/module/src/components/TransferList/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/Transition/index.d.ts +25 -0
- package/lib/typescript/module/src/components/Transition/index.d.ts.map +1 -0
- package/lib/typescript/module/src/components/index.d.ts +69 -0
- package/lib/typescript/module/src/components/index.d.ts.map +1 -1
- package/lib/typescript/module/src/theme/create-theme.d.ts.map +1 -1
- package/lib/typescript/module/src/theme/default-theme.d.ts +20 -0
- package/lib/typescript/module/src/theme/default-theme.d.ts.map +1 -1
- package/lib/typescript/module/src/theme/functions/attach-functions.d.ts.map +1 -1
- package/lib/typescript/module/src/theme/functions/fns/helpers.d.ts +23 -0
- package/lib/typescript/module/src/theme/functions/fns/helpers.d.ts.map +1 -0
- package/lib/typescript/module/src/theme/functions/fns/index.d.ts +22 -1
- package/lib/typescript/module/src/theme/functions/fns/index.d.ts.map +1 -1
- package/lib/typescript/module/src/theme/functions/fns/radius.d.ts.map +1 -1
- package/lib/typescript/module/src/theme/functions/fns/theme-color/theme-color.d.ts +8 -1
- package/lib/typescript/module/src/theme/functions/fns/theme-color/theme-color.d.ts.map +1 -1
- package/lib/typescript/module/src/theme/functions/fns/variant.d.ts +19 -1
- package/lib/typescript/module/src/theme/functions/fns/variant.d.ts.map +1 -1
- package/lib/typescript/module/src/theme/theme-provider.d.ts.map +1 -1
- package/lib/typescript/module/src/theme/utils/rem.d.ts +2 -2
- package/lib/typescript/module/src/theme/utils/rem.d.ts.map +1 -1
- package/package.json +11 -8
- package/src/components/Accordion/index.tsx +297 -0
- package/src/components/ActionIcon/ActionIcon.tsx +61 -44
- package/src/components/Anchor/index.tsx +139 -0
- package/src/components/AspectRatio/index.tsx +68 -0
- package/src/components/Avatar/index.tsx +164 -0
- package/src/components/BackgroundImage/index.tsx +77 -0
- package/src/components/Badge/index.tsx +193 -0
- package/src/components/Blockquote/index.tsx +104 -0
- package/src/components/BoxView/index.tsx +90 -2
- package/src/components/Breadcrumbs/index.tsx +64 -0
- package/src/components/Burger/index.tsx +230 -0
- package/src/components/Button/Button.styles.ts +36 -16
- package/src/components/Button/index.tsx +3 -1
- package/src/components/Card/index.tsx +166 -0
- package/src/components/Center/index.tsx +40 -0
- package/src/components/Checkbox/index.tsx +168 -0
- package/src/components/Chip/index.tsx +350 -0
- package/src/components/CloseButton/index.tsx +154 -0
- package/src/components/Code/index.tsx +83 -0
- package/src/components/Collapse/index.tsx +108 -0
- package/src/components/ColorSwatch/index.tsx +106 -0
- package/src/components/Container/index.tsx +92 -0
- package/src/components/CopyButton/index.tsx +60 -0
- package/src/components/Dialog/index.tsx +189 -0
- package/src/components/Divider/index.tsx +161 -0
- package/src/components/Drawer/index.tsx +315 -0
- package/src/components/Flex/index.tsx +87 -0
- package/src/components/Grid/index.tsx +167 -0
- package/src/components/Group/index.tsx +24 -5
- package/src/components/Highlight/index.tsx +93 -0
- package/src/components/Image/index.tsx +180 -0
- package/src/components/Indicator/index.tsx +240 -0
- package/src/components/Kbd/index.tsx +84 -0
- package/src/components/List/index.tsx +294 -0
- package/src/components/Loader/Loader.tsx +27 -17
- package/src/components/LoadingOverlay/index.tsx +103 -0
- package/src/components/Mark/index.tsx +51 -0
- package/src/components/MediaQuery/index.tsx +133 -0
- package/src/components/Menu/index.tsx +395 -0
- package/src/components/Modal/index.tsx +318 -0
- package/src/components/MultiSelect/index.tsx +458 -0
- package/src/components/NativeSelect/index.tsx +387 -0
- package/src/components/NavLink/index.tsx +205 -0
- package/src/components/Notification/index.tsx +175 -0
- package/src/components/NumberInput/index.tsx +356 -0
- package/src/components/Overlay/index.tsx +100 -0
- package/src/components/Pagination/index.tsx +336 -0
- package/src/components/Paper/index.tsx +155 -0
- package/src/components/PasswordInput/index.tsx +78 -0
- package/src/components/PinInput/index.tsx +251 -0
- package/src/components/Popover/index.tsx +244 -0
- package/src/components/Portal/index.tsx +75 -0
- package/src/components/Progress/index.tsx +182 -0
- package/src/components/Radio/index.tsx +169 -0
- package/src/components/Rating/index.tsx +214 -0
- package/src/components/RingProgress/index.tsx +206 -0
- package/src/components/SegmentedControl/index.tsx +259 -0
- package/src/components/Select/index.tsx +377 -0
- package/src/components/SimpleGrid/index.tsx +119 -0
- package/src/components/Skeleton/index.tsx +149 -0
- package/src/components/Slider/index.tsx +338 -0
- package/src/components/Space/index.tsx +48 -0
- package/src/components/Spoiler/index.tsx +123 -0
- package/src/components/Stepper/index.tsx +388 -0
- package/src/components/Switch/index.tsx +146 -0
- package/src/components/Table/index.tsx +402 -0
- package/src/components/Text/index.tsx +6 -1
- package/src/components/TextInput/index.tsx +232 -0
- package/src/components/Textarea/index.tsx +61 -0
- package/src/components/ThemeIcon/index.tsx +167 -0
- package/src/components/Timeline/index.tsx +331 -0
- package/src/components/Title/index.tsx +53 -0
- package/src/components/Tooltip/index.tsx +259 -0
- package/src/components/TransferList/index.tsx +399 -0
- package/src/components/Transition/index.tsx +225 -0
- package/src/components/index.tsx +101 -0
- package/src/theme/create-theme.ts +3 -1
- package/src/theme/default-theme.ts +24 -0
- package/src/theme/functions/attach-functions.ts +8 -1
- package/src/theme/functions/fns/helpers.ts +36 -0
- package/src/theme/functions/fns/index.ts +2 -0
- package/src/theme/functions/fns/theme-color/theme-color.ts +34 -3
- package/src/theme/functions/fns/variant.ts +110 -2
- package/src/theme/get-size/index.ts +2 -2
- package/src/theme/theme-provider.tsx +7 -7
- package/src/theme/utils/rem.ts +9 -7
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","forwardRef","useEffect","useRef","Modal","RNModal","TouchableOpacity","Animated","Dimensions","ScrollView","BoxView","Text","Overlay","useComponentDefaultProps","createStyles","rem","jsx","_jsx","jsxs","_jsxs","sizes","xs","sm","md","lg","xl","useStyles","theme","size","padding","position","getPadding","undefined","spacing","getSize","isHorizontal","dimensionKey","overlay","flex","backgroundColor","justifyContent","alignItems","container","colorScheme","colors","dark","white","maxHeight","maxWidth","borderTopRightRadius","fn","radius","borderBottomRightRadius","borderTopLeftRadius","borderBottomLeftRadius","header","borderBottomWidth","borderBottomColor","gray","flexDirection","title","fontSize","fontSizes","fontWeight","color","black","closeButton","width","height","borderRadius","marginLeft","closeButtonText","body","defaultProps","closeOnClickOutside","withOverlay","overlayOpacity","overlayColor","withCloseButton","transitionDuration","zIndex","Drawer","props","ref","opened","onClose","children","style","others","styles","sx","name","fadeAnim","Value","current","slideAnim","getSlideValue","screenWidth","get","screenHeight","parallel","timing","toValue","duration","useNativeDriver","spring","friction","start","setValue","handleOverlayPress","getTransform","translateX","translateY","visible","transparent","animationType","onRequestClose","statusBarTranslucent","View","opacity","onPress","pointerEvents","transform","showsVerticalScrollIndicator","displayName"],"sourceRoot":"../../../../src","sources":["components/Drawer/index.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import React, { forwardRef } from 'react';
|
|
4
|
+
import { BoxView } from "../BoxView/index.js";
|
|
5
|
+
import { useTheme } from "../../theme/theme-provider.js";
|
|
6
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
|
+
/**
|
|
8
|
+
* Flex component provides flexible box layout
|
|
9
|
+
*/
|
|
10
|
+
export const Flex = /*#__PURE__*/forwardRef((props, ref) => {
|
|
11
|
+
const {
|
|
12
|
+
children,
|
|
13
|
+
style,
|
|
14
|
+
direction = 'row',
|
|
15
|
+
wrap = 'nowrap',
|
|
16
|
+
align,
|
|
17
|
+
justify,
|
|
18
|
+
gap,
|
|
19
|
+
columnGap,
|
|
20
|
+
rowGap,
|
|
21
|
+
...others
|
|
22
|
+
} = props;
|
|
23
|
+
const theme = useTheme();
|
|
24
|
+
|
|
25
|
+
// Get spacing value from theme or use number directly
|
|
26
|
+
const getSpacing = value => {
|
|
27
|
+
if (value === undefined) return undefined;
|
|
28
|
+
if (typeof value === 'number') return value;
|
|
29
|
+
return theme.spacing[value] || 0;
|
|
30
|
+
};
|
|
31
|
+
const gapValue = getSpacing(gap);
|
|
32
|
+
const columnGapValue = getSpacing(columnGap);
|
|
33
|
+
const rowGapValue = getSpacing(rowGap);
|
|
34
|
+
return /*#__PURE__*/_jsx(BoxView, {
|
|
35
|
+
ref: ref,
|
|
36
|
+
style: [{
|
|
37
|
+
display: 'flex',
|
|
38
|
+
flexDirection: direction,
|
|
39
|
+
flexWrap: wrap,
|
|
40
|
+
alignItems: align,
|
|
41
|
+
justifyContent: justify,
|
|
42
|
+
...(gapValue !== undefined && {
|
|
43
|
+
gap: gapValue
|
|
44
|
+
}),
|
|
45
|
+
...(columnGapValue !== undefined && {
|
|
46
|
+
columnGap: columnGapValue
|
|
47
|
+
}),
|
|
48
|
+
...(rowGapValue !== undefined && {
|
|
49
|
+
rowGap: rowGapValue
|
|
50
|
+
})
|
|
51
|
+
}, style],
|
|
52
|
+
...others,
|
|
53
|
+
children: children
|
|
54
|
+
});
|
|
55
|
+
});
|
|
56
|
+
Flex.displayName = 'Flex';
|
|
57
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","forwardRef","BoxView","useTheme","jsx","_jsx","Flex","props","ref","children","style","direction","wrap","align","justify","gap","columnGap","rowGap","others","theme","getSpacing","value","undefined","spacing","gapValue","columnGapValue","rowGapValue","display","flexDirection","flexWrap","alignItems","justifyContent","displayName"],"sourceRoot":"../../../../src","sources":["components/Flex/index.tsx"],"mappings":";;AAAA,OAAOA,KAAK,IAAIC,UAAU,QAAQ,OAAO;AACzC,SAASC,OAAO,QAAQ,qBAAY;AAGpC,SAASC,QAAQ,QAAQ,+BAA4B;AAAC,SAAAC,GAAA,IAAAC,IAAA;AA6BtD;AACA;AACA;AACA,OAAO,MAAMC,IAAI,gBAAGL,UAAU,CAAiB,CAACM,KAAK,EAAEC,GAAG,KAAK;EAC7D,MAAM;IACJC,QAAQ;IACRC,KAAK;IACLC,SAAS,GAAG,KAAK;IACjBC,IAAI,GAAG,QAAQ;IACfC,KAAK;IACLC,OAAO;IACPC,GAAG;IACHC,SAAS;IACTC,MAAM;IACN,GAAGC;EACL,CAAC,GAAGX,KAAK;EAET,MAAMY,KAAK,GAAGhB,QAAQ,CAAC,CAAC;;EAExB;EACA,MAAMiB,UAAU,GAAIC,KAA6C,IAAK;IACpE,IAAIA,KAAK,KAAKC,SAAS,EAAE,OAAOA,SAAS;IACzC,IAAI,OAAOD,KAAK,KAAK,QAAQ,EAAE,OAAOA,KAAK;IAC3C,OAAOF,KAAK,CAACI,OAAO,CAACF,KAAK,CAA+B,IAAI,CAAC;EAChE,CAAC;EAED,MAAMG,QAAQ,GAAGJ,UAAU,CAACL,GAAG,CAAC;EAChC,MAAMU,cAAc,GAAGL,UAAU,CAACJ,SAAS,CAAC;EAC5C,MAAMU,WAAW,GAAGN,UAAU,CAACH,MAAM,CAAC;EAEtC,oBACEZ,IAAA,CAACH,OAAO;IACNM,GAAG,EAAEA,GAAI;IACTE,KAAK,EAAE,CACL;MACEiB,OAAO,EAAE,MAAM;MACfC,aAAa,EAAEjB,SAAS;MACxBkB,QAAQ,EAAEjB,IAAI;MACdkB,UAAU,EAAEjB,KAAK;MACjBkB,cAAc,EAAEjB,OAAO;MACvB,IAAIU,QAAQ,KAAKF,SAAS,IAAI;QAAEP,GAAG,EAAES;MAAS,CAAC,CAAC;MAChD,IAAIC,cAAc,KAAKH,SAAS,IAAI;QAAEN,SAAS,EAAES;MAAe,CAAC,CAAC;MAClE,IAAIC,WAAW,KAAKJ,SAAS,IAAI;QAAEL,MAAM,EAAES;MAAY,CAAC;IAC1D,CAAC,EACDhB,KAAK,CACL;IAAA,GACEQ,MAAM;IAAAT,QAAA,EAETA;EAAQ,CACF,CAAC;AAEd,CAAC,CAAC;AAEFH,IAAI,CAAC0B,WAAW,GAAG,MAAM","ignoreList":[]}
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import React, { forwardRef, Children } from 'react';
|
|
4
|
+
import { BoxView } from "../BoxView/index.js";
|
|
5
|
+
import { useComponentDefaultProps } from "../../theme/theme-provider.js";
|
|
6
|
+
import { createStyles } from "../../theme/index.js";
|
|
7
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
8
|
+
const useGridStyles = createStyles((theme, {
|
|
9
|
+
gutter,
|
|
10
|
+
align,
|
|
11
|
+
justify
|
|
12
|
+
}) => ({
|
|
13
|
+
root: {
|
|
14
|
+
flexDirection: 'row',
|
|
15
|
+
flexWrap: 'wrap',
|
|
16
|
+
alignItems: align,
|
|
17
|
+
justifyContent: justify,
|
|
18
|
+
margin: -theme.fn.size({
|
|
19
|
+
size: gutter,
|
|
20
|
+
sizes: theme.spacing
|
|
21
|
+
}) / 2
|
|
22
|
+
}
|
|
23
|
+
}));
|
|
24
|
+
const useColStyles = createStyles((theme, {
|
|
25
|
+
span,
|
|
26
|
+
offset,
|
|
27
|
+
order,
|
|
28
|
+
columns,
|
|
29
|
+
gutter,
|
|
30
|
+
grow
|
|
31
|
+
}) => {
|
|
32
|
+
const gutterSize = theme.fn.size({
|
|
33
|
+
size: gutter,
|
|
34
|
+
sizes: theme.spacing
|
|
35
|
+
});
|
|
36
|
+
const colSpan = span || columns;
|
|
37
|
+
const percentage = colSpan / columns * 100;
|
|
38
|
+
const offsetPercentage = offset ? offset / columns * 100 : 0;
|
|
39
|
+
return {
|
|
40
|
+
col: {
|
|
41
|
+
flexBasis: grow ? 0 : `${percentage}%`,
|
|
42
|
+
flexGrow: grow ? colSpan : 0,
|
|
43
|
+
flexShrink: 0,
|
|
44
|
+
padding: gutterSize / 2,
|
|
45
|
+
marginLeft: offsetPercentage ? `${offsetPercentage}%` : 0,
|
|
46
|
+
...(order && {
|
|
47
|
+
order
|
|
48
|
+
})
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
});
|
|
52
|
+
const defaultGridProps = {
|
|
53
|
+
columns: 12,
|
|
54
|
+
gutter: 'md',
|
|
55
|
+
grow: false,
|
|
56
|
+
align: 'stretch',
|
|
57
|
+
justify: 'flex-start'
|
|
58
|
+
};
|
|
59
|
+
const defaultColProps = {
|
|
60
|
+
span: 12,
|
|
61
|
+
offset: 0,
|
|
62
|
+
order: 0
|
|
63
|
+
};
|
|
64
|
+
export const Grid = Object.assign(/*#__PURE__*/forwardRef((props, ref) => {
|
|
65
|
+
const {
|
|
66
|
+
columns,
|
|
67
|
+
gutter,
|
|
68
|
+
grow,
|
|
69
|
+
align,
|
|
70
|
+
justify,
|
|
71
|
+
children,
|
|
72
|
+
style,
|
|
73
|
+
...others
|
|
74
|
+
} = useComponentDefaultProps('Grid', defaultGridProps, props);
|
|
75
|
+
const {
|
|
76
|
+
styles,
|
|
77
|
+
sx
|
|
78
|
+
} = useGridStyles({
|
|
79
|
+
gutter,
|
|
80
|
+
align,
|
|
81
|
+
justify
|
|
82
|
+
}, {
|
|
83
|
+
name: 'Grid'
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
// Pass columns and gutter to children via context or clone
|
|
87
|
+
const childrenWithProps = Children.map(children, child => {
|
|
88
|
+
if (/*#__PURE__*/React.isValidElement(child)) {
|
|
89
|
+
return /*#__PURE__*/React.cloneElement(child, {
|
|
90
|
+
columns,
|
|
91
|
+
gutter,
|
|
92
|
+
grow
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
return child;
|
|
96
|
+
});
|
|
97
|
+
return /*#__PURE__*/_jsx(BoxView, {
|
|
98
|
+
ref: ref,
|
|
99
|
+
style: sx(styles.root, style),
|
|
100
|
+
...others,
|
|
101
|
+
children: childrenWithProps
|
|
102
|
+
});
|
|
103
|
+
}), {
|
|
104
|
+
Col: /*#__PURE__*/forwardRef((props, ref) => {
|
|
105
|
+
const {
|
|
106
|
+
span,
|
|
107
|
+
offset,
|
|
108
|
+
order,
|
|
109
|
+
columns = 12,
|
|
110
|
+
gutter = 'md',
|
|
111
|
+
grow = false,
|
|
112
|
+
children,
|
|
113
|
+
style,
|
|
114
|
+
...others
|
|
115
|
+
} = useComponentDefaultProps('GridCol', defaultColProps, props);
|
|
116
|
+
const {
|
|
117
|
+
styles,
|
|
118
|
+
sx
|
|
119
|
+
} = useColStyles({
|
|
120
|
+
span,
|
|
121
|
+
offset,
|
|
122
|
+
order,
|
|
123
|
+
columns,
|
|
124
|
+
gutter,
|
|
125
|
+
grow
|
|
126
|
+
}, {
|
|
127
|
+
name: 'GridCol'
|
|
128
|
+
});
|
|
129
|
+
return /*#__PURE__*/_jsx(BoxView, {
|
|
130
|
+
ref: ref,
|
|
131
|
+
style: sx(styles.col, style),
|
|
132
|
+
...others,
|
|
133
|
+
children: children
|
|
134
|
+
});
|
|
135
|
+
})
|
|
136
|
+
});
|
|
137
|
+
Grid.displayName = 'Grid';
|
|
138
|
+
Grid.Col.displayName = 'Grid.Col';
|
|
139
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","forwardRef","Children","BoxView","useComponentDefaultProps","createStyles","jsx","_jsx","useGridStyles","theme","gutter","align","justify","root","flexDirection","flexWrap","alignItems","justifyContent","margin","fn","size","sizes","spacing","useColStyles","span","offset","order","columns","grow","gutterSize","colSpan","percentage","offsetPercentage","col","flexBasis","flexGrow","flexShrink","padding","marginLeft","defaultGridProps","defaultColProps","Grid","Object","assign","props","ref","children","style","others","styles","sx","name","childrenWithProps","map","child","isValidElement","cloneElement","Col","displayName"],"sourceRoot":"../../../../src","sources":["components/Grid/index.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -6,19 +6,40 @@ export const Group = ({
|
|
|
6
6
|
children,
|
|
7
7
|
position,
|
|
8
8
|
style,
|
|
9
|
+
align,
|
|
9
10
|
alignCenter = true,
|
|
10
11
|
alignBottom = false,
|
|
11
12
|
noWrap = false,
|
|
12
13
|
spacing = 5,
|
|
13
14
|
...rest
|
|
14
15
|
}) => {
|
|
16
|
+
// Map align values to flexbox alignItems
|
|
17
|
+
const getAlignItems = () => {
|
|
18
|
+
if (align) {
|
|
19
|
+
switch (align) {
|
|
20
|
+
case 'start':
|
|
21
|
+
return 'flex-start';
|
|
22
|
+
case 'center':
|
|
23
|
+
return 'center';
|
|
24
|
+
case 'end':
|
|
25
|
+
return 'flex-end';
|
|
26
|
+
case 'baseline':
|
|
27
|
+
return 'baseline';
|
|
28
|
+
case 'stretch':
|
|
29
|
+
return 'stretch';
|
|
30
|
+
default:
|
|
31
|
+
return 'center';
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
return alignCenter ? 'center' : alignBottom ? 'flex-end' : 'flex-start';
|
|
35
|
+
};
|
|
15
36
|
return /*#__PURE__*/_jsx(BoxView, {
|
|
16
37
|
style: {
|
|
17
38
|
gap: spacing,
|
|
18
39
|
flexDirection: 'row',
|
|
19
40
|
justifyContent: position === 'apart' ? 'space-between' : position === 'center' ? 'center' : position === 'right' ? 'flex-end' : 'flex-start',
|
|
20
41
|
flexWrap: noWrap ? 'nowrap' : 'wrap',
|
|
21
|
-
alignItems:
|
|
42
|
+
alignItems: getAlignItems(),
|
|
22
43
|
...style
|
|
23
44
|
},
|
|
24
45
|
...rest,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["BoxView","jsx","_jsx","Group","children","position","style","alignCenter","alignBottom","noWrap","spacing","rest","gap","flexDirection","justifyContent","flexWrap","alignItems"],"sourceRoot":"../../../../src","sources":["components/Group/index.tsx"],"mappings":";;AAEA,SAASA,OAAO,QAAQ,qBAAY;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAGrC,OAAO,MAAMC,KAAK,GAAGA,CAAC;EACpBC,QAAQ;EACRC,QAAQ;EACRC,KAAK;EACLC,WAAW,GAAG,IAAI;EAClBC,WAAW,GAAG,KAAK;EACnBC,MAAM,GAAG,KAAK;EACdC,OAAO,GAAG,CAAC;EACX,GAAGC;
|
|
1
|
+
{"version":3,"names":["BoxView","jsx","_jsx","Group","children","position","style","align","alignCenter","alignBottom","noWrap","spacing","rest","getAlignItems","gap","flexDirection","justifyContent","flexWrap","alignItems"],"sourceRoot":"../../../../src","sources":["components/Group/index.tsx"],"mappings":";;AAEA,SAASA,OAAO,QAAQ,qBAAY;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAGrC,OAAO,MAAMC,KAAK,GAAGA,CAAC;EACpBC,QAAQ;EACRC,QAAQ;EACRC,KAAK;EACLC,KAAK;EACLC,WAAW,GAAG,IAAI;EAClBC,WAAW,GAAG,KAAK;EACnBC,MAAM,GAAG,KAAK;EACdC,OAAO,GAAG,CAAC;EACX,GAAGC;AAQL,CAAC,KAAyB;EACxB;EACA,MAAMC,aAAa,GAAGA,CAAA,KAAM;IAC1B,IAAIN,KAAK,EAAE;MACT,QAAQA,KAAK;QACX,KAAK,OAAO;UACV,OAAO,YAAY;QACrB,KAAK,QAAQ;UACX,OAAO,QAAQ;QACjB,KAAK,KAAK;UACR,OAAO,UAAU;QACnB,KAAK,UAAU;UACb,OAAO,UAAU;QACnB,KAAK,SAAS;UACZ,OAAO,SAAS;QAClB;UACE,OAAO,QAAQ;MACnB;IACF;IACA,OAAOC,WAAW,GAAG,QAAQ,GAAGC,WAAW,GAAG,UAAU,GAAG,YAAY;EACzE,CAAC;EAED,oBACEP,IAAA,CAACF,OAAO;IACNM,KAAK,EAAE;MACLQ,GAAG,EAAEH,OAAO;MACZI,aAAa,EAAE,KAAK;MACpBC,cAAc,EACZX,QAAQ,KAAK,OAAO,GAChB,eAAe,GACfA,QAAQ,KAAK,QAAQ,GACnB,QAAQ,GACRA,QAAQ,KAAK,OAAO,GAClB,UAAU,GACV,YAAY;MACtBY,QAAQ,EAAEP,MAAM,GAAG,QAAQ,GAAG,MAAM;MACpCQ,UAAU,EAAEL,aAAa,CAAC,CAAC;MAC3B,GAAIP;IACN,CAAE;IAAA,GACEM,IAAI;IAAAR,QAAA,EAEPA;EAAQ,CACF,CAAC;AAEd,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { forwardRef } from 'react';
|
|
4
|
+
import { Text } from "../Text/index.js";
|
|
5
|
+
import { useTheme } from "../../theme/theme-provider.js";
|
|
6
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
|
+
/**
|
|
8
|
+
* Highlight component highlights specified substrings within text
|
|
9
|
+
*/
|
|
10
|
+
export const Highlight = /*#__PURE__*/forwardRef((props, ref) => {
|
|
11
|
+
const {
|
|
12
|
+
children,
|
|
13
|
+
highlight,
|
|
14
|
+
highlightColor = 'yellow',
|
|
15
|
+
highlightStyles,
|
|
16
|
+
style,
|
|
17
|
+
...others
|
|
18
|
+
} = props;
|
|
19
|
+
const theme = useTheme();
|
|
20
|
+
|
|
21
|
+
// Convert highlight to array for uniform processing
|
|
22
|
+
const highlights = Array.isArray(highlight) ? highlight : [highlight];
|
|
23
|
+
|
|
24
|
+
// Get default highlight background color
|
|
25
|
+
const defaultHighlightBg = theme.colors[highlightColor]?.[2] || theme.colors.yellow?.[2] || '#ffec99';
|
|
26
|
+
const defaultStyles = {
|
|
27
|
+
backgroundColor: defaultHighlightBg,
|
|
28
|
+
...highlightStyles
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
// Function to split text and identify highlighted parts
|
|
32
|
+
const getHighlightedText = () => {
|
|
33
|
+
if (!children || highlights.length === 0 || highlights.every(h => !h)) {
|
|
34
|
+
return /*#__PURE__*/_jsx(Text, {
|
|
35
|
+
style: style,
|
|
36
|
+
children: children
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// Create regex pattern for all highlight strings (case insensitive)
|
|
41
|
+
const pattern = highlights.filter(h => h && h.length > 0).map(h => h.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')) // Escape special chars
|
|
42
|
+
.join('|');
|
|
43
|
+
if (!pattern) {
|
|
44
|
+
return /*#__PURE__*/_jsx(Text, {
|
|
45
|
+
style: style,
|
|
46
|
+
children: children
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
const regex = new RegExp(`(${pattern})`, 'gi');
|
|
50
|
+
const parts = children.split(regex);
|
|
51
|
+
return /*#__PURE__*/_jsx(Text, {
|
|
52
|
+
ref: ref,
|
|
53
|
+
style: style,
|
|
54
|
+
...others,
|
|
55
|
+
children: parts.map((part, index) => {
|
|
56
|
+
const isHighlighted = highlights.some(h => h && part.toLowerCase() === h.toLowerCase());
|
|
57
|
+
if (isHighlighted) {
|
|
58
|
+
return /*#__PURE__*/_jsx(Text, {
|
|
59
|
+
style: defaultStyles,
|
|
60
|
+
children: part
|
|
61
|
+
}, index);
|
|
62
|
+
}
|
|
63
|
+
return part;
|
|
64
|
+
})
|
|
65
|
+
});
|
|
66
|
+
};
|
|
67
|
+
return getHighlightedText();
|
|
68
|
+
});
|
|
69
|
+
Highlight.displayName = 'Highlight';
|
|
70
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["forwardRef","Text","useTheme","jsx","_jsx","Highlight","props","ref","children","highlight","highlightColor","highlightStyles","style","others","theme","highlights","Array","isArray","defaultHighlightBg","colors","yellow","defaultStyles","backgroundColor","getHighlightedText","length","every","h","pattern","filter","map","replace","join","regex","RegExp","parts","split","part","index","isHighlighted","some","toLowerCase","displayName"],"sourceRoot":"../../../../src","sources":["components/Highlight/index.tsx"],"mappings":";;AAAA,SAASA,UAAU,QAAQ,OAAO;AAClC,SAASC,IAAI,QAAQ,kBAAS;AAE9B,SAASC,QAAQ,QAAQ,+BAA4B;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAmBtD;AACA;AACA;AACA,OAAO,MAAMC,SAAS,gBAAGL,UAAU,CAAsB,CAACM,KAAK,EAAEC,GAAG,KAAK;EACvE,MAAM;IACJC,QAAQ;IACRC,SAAS;IACTC,cAAc,GAAG,QAAQ;IACzBC,eAAe;IACfC,KAAK;IACL,GAAGC;EACL,CAAC,GAAGP,KAAK;EAET,MAAMQ,KAAK,GAAGZ,QAAQ,CAAC,CAAC;;EAExB;EACA,MAAMa,UAAU,GAAGC,KAAK,CAACC,OAAO,CAACR,SAAS,CAAC,GAAGA,SAAS,GAAG,CAACA,SAAS,CAAC;;EAErE;EACA,MAAMS,kBAAkB,GACtBJ,KAAK,CAACK,MAAM,CAACT,cAAc,CAAC,GAAG,CAAC,CAAC,IAAII,KAAK,CAACK,MAAM,CAACC,MAAM,GAAG,CAAC,CAAC,IAAI,SAAS;EAE5E,MAAMC,aAAa,GAAG;IACpBC,eAAe,EAAEJ,kBAAkB;IACnC,GAAGP;EACL,CAAC;;EAED;EACA,MAAMY,kBAAkB,GAAGA,CAAA,KAAM;IAC/B,IAAI,CAACf,QAAQ,IAAIO,UAAU,CAACS,MAAM,KAAK,CAAC,IAAIT,UAAU,CAACU,KAAK,CAAEC,CAAC,IAAK,CAACA,CAAC,CAAC,EAAE;MACvE,oBAAOtB,IAAA,CAACH,IAAI;QAACW,KAAK,EAAEA,KAAM;QAAAJ,QAAA,EAAEA;MAAQ,CAAO,CAAC;IAC9C;;IAEA;IACA,MAAMmB,OAAO,GAAGZ,UAAU,CACvBa,MAAM,CAAEF,CAAC,IAAKA,CAAC,IAAIA,CAAC,CAACF,MAAM,GAAG,CAAC,CAAC,CAChCK,GAAG,CAAEH,CAAC,IAAKA,CAAC,CAACI,OAAO,CAAC,qBAAqB,EAAE,MAAM,CAAC,CAAC,CAAC;IAAA,CACrDC,IAAI,CAAC,GAAG,CAAC;IAEZ,IAAI,CAACJ,OAAO,EAAE;MACZ,oBAAOvB,IAAA,CAACH,IAAI;QAACW,KAAK,EAAEA,KAAM;QAAAJ,QAAA,EAAEA;MAAQ,CAAO,CAAC;IAC9C;IAEA,MAAMwB,KAAK,GAAG,IAAIC,MAAM,CAAC,IAAIN,OAAO,GAAG,EAAE,IAAI,CAAC;IAC9C,MAAMO,KAAK,GAAG1B,QAAQ,CAAC2B,KAAK,CAACH,KAAK,CAAC;IAEnC,oBACE5B,IAAA,CAACH,IAAI;MAACM,GAAG,EAAEA,GAAI;MAACK,KAAK,EAAEA,KAAM;MAAA,GAAKC,MAAM;MAAAL,QAAA,EACrC0B,KAAK,CAACL,GAAG,CAAC,CAACO,IAAI,EAAEC,KAAK,KAAK;QAC1B,MAAMC,aAAa,GAAGvB,UAAU,CAACwB,IAAI,CAClCb,CAAC,IAAKA,CAAC,IAAIU,IAAI,CAACI,WAAW,CAAC,CAAC,KAAKd,CAAC,CAACc,WAAW,CAAC,CACnD,CAAC;QAED,IAAIF,aAAa,EAAE;UACjB,oBACElC,IAAA,CAACH,IAAI;YAAaW,KAAK,EAAES,aAAc;YAAAb,QAAA,EACpC4B;UAAI,GADIC,KAEL,CAAC;QAEX;QAEA,OAAOD,IAAI;MACb,CAAC;IAAC,CACE,CAAC;EAEX,CAAC;EAED,OAAOb,kBAAkB,CAAC,CAAC;AAC7B,CAAC,CAAC;AAEFlB,SAAS,CAACoC,WAAW,GAAG,WAAW","ignoreList":[]}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import React, { forwardRef, useState } from 'react';
|
|
4
|
+
import { Image as RNImage, ActivityIndicator } from 'react-native';
|
|
5
|
+
import { BoxView } from "../BoxView/index.js";
|
|
6
|
+
import { Text } from "../Text/index.js";
|
|
7
|
+
import { useComponentDefaultProps } from "../../theme/theme-provider.js";
|
|
8
|
+
import { createStyles } from "../../theme/index.js";
|
|
9
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
10
|
+
const useStyles = createStyles((theme, {
|
|
11
|
+
width,
|
|
12
|
+
height,
|
|
13
|
+
radius,
|
|
14
|
+
fit
|
|
15
|
+
}) => ({
|
|
16
|
+
root: {
|
|
17
|
+
position: 'relative',
|
|
18
|
+
width: width || 300,
|
|
19
|
+
height: height || 200,
|
|
20
|
+
borderRadius: theme.fn.radius(radius),
|
|
21
|
+
overflow: 'hidden',
|
|
22
|
+
backgroundColor: theme.colorScheme === 'dark' ? theme.colors.dark?.[6] : theme.colors.gray?.[1]
|
|
23
|
+
},
|
|
24
|
+
image: {
|
|
25
|
+
width: '100%',
|
|
26
|
+
height: '100%',
|
|
27
|
+
resizeMode: fit === 'scale-down' ? 'contain' : fit,
|
|
28
|
+
borderRadius: theme.fn.radius(radius)
|
|
29
|
+
},
|
|
30
|
+
placeholder: {
|
|
31
|
+
position: 'absolute',
|
|
32
|
+
top: 0,
|
|
33
|
+
left: 0,
|
|
34
|
+
right: 0,
|
|
35
|
+
bottom: 0,
|
|
36
|
+
justifyContent: 'center',
|
|
37
|
+
alignItems: 'center',
|
|
38
|
+
backgroundColor: theme.colorScheme === 'dark' ? theme.colors.dark?.[6] : theme.colors.gray?.[1]
|
|
39
|
+
},
|
|
40
|
+
errorContainer: {
|
|
41
|
+
position: 'absolute',
|
|
42
|
+
top: 0,
|
|
43
|
+
left: 0,
|
|
44
|
+
right: 0,
|
|
45
|
+
bottom: 0,
|
|
46
|
+
justifyContent: 'center',
|
|
47
|
+
alignItems: 'center',
|
|
48
|
+
backgroundColor: theme.colorScheme === 'dark' ? theme.colors.dark?.[7] : theme.colors.gray?.[0]
|
|
49
|
+
},
|
|
50
|
+
errorText: {
|
|
51
|
+
color: theme.colorScheme === 'dark' ? theme.colors.dark?.[2] : theme.colors.gray?.[6],
|
|
52
|
+
fontSize: 14,
|
|
53
|
+
textAlign: 'center',
|
|
54
|
+
paddingHorizontal: 16
|
|
55
|
+
}
|
|
56
|
+
}));
|
|
57
|
+
const defaultProps = {
|
|
58
|
+
fit: 'cover',
|
|
59
|
+
radius: 0,
|
|
60
|
+
errorMessage: 'Failed to load image'
|
|
61
|
+
};
|
|
62
|
+
export const Image = /*#__PURE__*/forwardRef((props, ref) => {
|
|
63
|
+
const {
|
|
64
|
+
source,
|
|
65
|
+
width,
|
|
66
|
+
height,
|
|
67
|
+
fit,
|
|
68
|
+
radius,
|
|
69
|
+
placeholder,
|
|
70
|
+
errorMessage,
|
|
71
|
+
errorPlaceholder,
|
|
72
|
+
alt,
|
|
73
|
+
style,
|
|
74
|
+
onLoad,
|
|
75
|
+
onError
|
|
76
|
+
} = useComponentDefaultProps('Image', defaultProps, props);
|
|
77
|
+
const [loading, setLoading] = useState(true);
|
|
78
|
+
const [error, setError] = useState(false);
|
|
79
|
+
const {
|
|
80
|
+
styles,
|
|
81
|
+
sx
|
|
82
|
+
} = useStyles({
|
|
83
|
+
width,
|
|
84
|
+
height,
|
|
85
|
+
radius,
|
|
86
|
+
fit
|
|
87
|
+
}, {
|
|
88
|
+
name: 'Image'
|
|
89
|
+
});
|
|
90
|
+
const handleLoad = () => {
|
|
91
|
+
setLoading(false);
|
|
92
|
+
setError(false);
|
|
93
|
+
onLoad?.();
|
|
94
|
+
};
|
|
95
|
+
const handleError = event => {
|
|
96
|
+
setLoading(false);
|
|
97
|
+
setError(true);
|
|
98
|
+
onError?.(event);
|
|
99
|
+
};
|
|
100
|
+
return /*#__PURE__*/_jsxs(BoxView, {
|
|
101
|
+
ref: ref,
|
|
102
|
+
style: sx(styles.root, style),
|
|
103
|
+
children: [/*#__PURE__*/_jsx(RNImage, {
|
|
104
|
+
source: source,
|
|
105
|
+
style: styles.image,
|
|
106
|
+
onLoad: handleLoad,
|
|
107
|
+
onError: handleError,
|
|
108
|
+
...(alt ? {
|
|
109
|
+
accessible: true,
|
|
110
|
+
accessibilityLabel: alt
|
|
111
|
+
} : {})
|
|
112
|
+
}), loading && /*#__PURE__*/_jsx(BoxView, {
|
|
113
|
+
style: styles.placeholder,
|
|
114
|
+
children: placeholder || /*#__PURE__*/_jsx(ActivityIndicator, {
|
|
115
|
+
size: "large"
|
|
116
|
+
})
|
|
117
|
+
}), error && /*#__PURE__*/_jsx(BoxView, {
|
|
118
|
+
style: styles.errorContainer,
|
|
119
|
+
children: errorPlaceholder || /*#__PURE__*/_jsx(Text, {
|
|
120
|
+
style: styles.errorText,
|
|
121
|
+
children: errorMessage
|
|
122
|
+
})
|
|
123
|
+
})]
|
|
124
|
+
});
|
|
125
|
+
});
|
|
126
|
+
Image.displayName = 'Image';
|
|
127
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","forwardRef","useState","Image","RNImage","ActivityIndicator","BoxView","Text","useComponentDefaultProps","createStyles","jsx","_jsx","jsxs","_jsxs","useStyles","theme","width","height","radius","fit","root","position","borderRadius","fn","overflow","backgroundColor","colorScheme","colors","dark","gray","image","resizeMode","placeholder","top","left","right","bottom","justifyContent","alignItems","errorContainer","errorText","color","fontSize","textAlign","paddingHorizontal","defaultProps","errorMessage","props","ref","source","errorPlaceholder","alt","style","onLoad","onError","loading","setLoading","error","setError","styles","sx","name","handleLoad","handleError","event","children","accessible","accessibilityLabel","size","displayName"],"sourceRoot":"../../../../src","sources":["components/Image/index.tsx"],"mappings":"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","ignoreList":[]}
|