@webority-technologies/mobile 0.0.1
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 +399 -0
- package/lib/commonjs/api/publicClient.js +73 -0
- package/lib/commonjs/api/userClient.js +290 -0
- package/lib/commonjs/auth/authStore.js +107 -0
- package/lib/commonjs/auth/index.js +44 -0
- package/lib/commonjs/auth/jwt.js +84 -0
- package/lib/commonjs/components/Accordion/Accordion.js +257 -0
- package/lib/commonjs/components/Accordion/index.js +26 -0
- package/lib/commonjs/components/Avatar/Avatar.js +283 -0
- package/lib/commonjs/components/Avatar/index.js +26 -0
- package/lib/commonjs/components/Badge/Badge.js +212 -0
- package/lib/commonjs/components/Badge/index.js +20 -0
- package/lib/commonjs/components/Banner/Banner.js +276 -0
- package/lib/commonjs/components/Banner/index.js +20 -0
- package/lib/commonjs/components/BottomNavigation/BottomNavigation.js +288 -0
- package/lib/commonjs/components/BottomNavigation/index.js +20 -0
- package/lib/commonjs/components/BottomSheet/BottomSheet.js +367 -0
- package/lib/commonjs/components/BottomSheet/index.js +20 -0
- package/lib/commonjs/components/Button/Button.js +281 -0
- package/lib/commonjs/components/Button/index.js +20 -0
- package/lib/commonjs/components/Card/Card.js +194 -0
- package/lib/commonjs/components/Card/index.js +20 -0
- package/lib/commonjs/components/Carousel/Carousel.js +475 -0
- package/lib/commonjs/components/Carousel/index.js +20 -0
- package/lib/commonjs/components/Checkbox/Checkbox.js +165 -0
- package/lib/commonjs/components/Checkbox/index.js +20 -0
- package/lib/commonjs/components/Chip/Chip.js +272 -0
- package/lib/commonjs/components/Chip/index.js +20 -0
- package/lib/commonjs/components/DatePicker/DatePicker.js +813 -0
- package/lib/commonjs/components/DatePicker/index.js +20 -0
- package/lib/commonjs/components/DateRangePicker/DateRangePicker.js +622 -0
- package/lib/commonjs/components/DateRangePicker/index.js +20 -0
- package/lib/commonjs/components/Dialog/Dialog.js +215 -0
- package/lib/commonjs/components/Dialog/index.js +20 -0
- package/lib/commonjs/components/Divider/Divider.js +118 -0
- package/lib/commonjs/components/Divider/index.js +20 -0
- package/lib/commonjs/components/Drawer/Drawer.js +344 -0
- package/lib/commonjs/components/Drawer/index.js +20 -0
- package/lib/commonjs/components/EmptyState/EmptyState.js +201 -0
- package/lib/commonjs/components/EmptyState/index.js +20 -0
- package/lib/commonjs/components/FAB/FAB.js +457 -0
- package/lib/commonjs/components/FAB/index.js +26 -0
- package/lib/commonjs/components/Field/Field.js +127 -0
- package/lib/commonjs/components/Field/index.js +20 -0
- package/lib/commonjs/components/ForceUpdateDialog/ForceUpdateDialog.js +81 -0
- package/lib/commonjs/components/ForceUpdateDialog/index.js +20 -0
- package/lib/commonjs/components/Header/Header.js +339 -0
- package/lib/commonjs/components/Header/index.js +20 -0
- package/lib/commonjs/components/Icon/Icon.js +120 -0
- package/lib/commonjs/components/Icon/index.js +20 -0
- package/lib/commonjs/components/ImageGallery/ImageGallery.js +463 -0
- package/lib/commonjs/components/ImageGallery/index.js +20 -0
- package/lib/commonjs/components/Input/Input.js +390 -0
- package/lib/commonjs/components/Input/index.js +20 -0
- package/lib/commonjs/components/ListItem/ListItem.js +241 -0
- package/lib/commonjs/components/ListItem/index.js +20 -0
- package/lib/commonjs/components/LoadingSpinner/LoadingSpinner.js +183 -0
- package/lib/commonjs/components/LoadingSpinner/index.js +20 -0
- package/lib/commonjs/components/Modal/Modal.js +239 -0
- package/lib/commonjs/components/Modal/index.js +20 -0
- package/lib/commonjs/components/NumberInput/NumberInput.js +392 -0
- package/lib/commonjs/components/NumberInput/index.js +20 -0
- package/lib/commonjs/components/OTPInput/OTPInput.js +375 -0
- package/lib/commonjs/components/OTPInput/index.js +20 -0
- package/lib/commonjs/components/ProgressBar/ProgressBar.js +149 -0
- package/lib/commonjs/components/ProgressBar/index.js +20 -0
- package/lib/commonjs/components/Radio/Radio.js +160 -0
- package/lib/commonjs/components/Radio/RadioGroup.js +43 -0
- package/lib/commonjs/components/Radio/index.js +39 -0
- package/lib/commonjs/components/Rating/Rating.js +236 -0
- package/lib/commonjs/components/Rating/index.js +20 -0
- package/lib/commonjs/components/SearchBar/SearchBar.js +274 -0
- package/lib/commonjs/components/SearchBar/index.js +20 -0
- package/lib/commonjs/components/SegmentedControl/SegmentedControl.js +184 -0
- package/lib/commonjs/components/SegmentedControl/index.js +20 -0
- package/lib/commonjs/components/Select/Select.js +540 -0
- package/lib/commonjs/components/Select/index.js +20 -0
- package/lib/commonjs/components/SkeletonLoader/SkeletonContent.js +191 -0
- package/lib/commonjs/components/SkeletonLoader/SkeletonLoader.js +311 -0
- package/lib/commonjs/components/SkeletonLoader/index.js +57 -0
- package/lib/commonjs/components/Slider/Slider.js +443 -0
- package/lib/commonjs/components/Slider/index.js +20 -0
- package/lib/commonjs/components/Stepper/Stepper.js +403 -0
- package/lib/commonjs/components/Stepper/index.js +20 -0
- package/lib/commonjs/components/Swipeable/Swipeable.js +349 -0
- package/lib/commonjs/components/Swipeable/index.js +20 -0
- package/lib/commonjs/components/Switch/Switch.js +173 -0
- package/lib/commonjs/components/Switch/index.js +20 -0
- package/lib/commonjs/components/Tabs/Tabs.js +204 -0
- package/lib/commonjs/components/Tabs/index.js +20 -0
- package/lib/commonjs/components/TimePicker/TimePicker.js +551 -0
- package/lib/commonjs/components/TimePicker/index.js +20 -0
- package/lib/commonjs/components/Toast/Toast.js +273 -0
- package/lib/commonjs/components/Toast/ToastProvider.js +195 -0
- package/lib/commonjs/components/Toast/index.js +39 -0
- package/lib/commonjs/components/Tooltip/Tooltip.js +363 -0
- package/lib/commonjs/components/Tooltip/index.js +20 -0
- package/lib/commonjs/components/index.js +392 -0
- package/lib/commonjs/config/index.js +63 -0
- package/lib/commonjs/formatters/currency.js +61 -0
- package/lib/commonjs/formatters/date.js +156 -0
- package/lib/commonjs/formatters/index.js +77 -0
- package/lib/commonjs/formatters/initials.js +28 -0
- package/lib/commonjs/formatters/number.js +76 -0
- package/lib/commonjs/formatters/phone.js +59 -0
- package/lib/commonjs/hooks/index.js +27 -0
- package/lib/commonjs/hooks/useDebounce.js +17 -0
- package/lib/commonjs/hooks/usePressAnimation.js +44 -0
- package/lib/commonjs/hooks/useToggle.js +22 -0
- package/lib/commonjs/index.js +628 -0
- package/lib/commonjs/initSDK.js +47 -0
- package/lib/commonjs/initUI.js +24 -0
- package/lib/commonjs/initUserAuth.js +40 -0
- package/lib/commonjs/logger/index.js +127 -0
- package/lib/commonjs/network/NetworkStatusBanner.js +89 -0
- package/lib/commonjs/network/index.js +32 -0
- package/lib/commonjs/network/networkStatus.js +88 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/permissions/index.js +180 -0
- package/lib/commonjs/storage/index.js +187 -0
- package/lib/commonjs/theme/ThemeContext.js +73 -0
- package/lib/commonjs/theme/index.js +93 -0
- package/lib/commonjs/theme/merge.js +30 -0
- package/lib/commonjs/theme/tokens.js +319 -0
- package/lib/commonjs/theme/types.js +6 -0
- package/lib/commonjs/types/vector-icons.d.js +2 -0
- package/lib/commonjs/utils/dimensions.js +31 -0
- package/lib/commonjs/utils/hapticUtils.js +57 -0
- package/lib/commonjs/utils/imageCompression.js +51 -0
- package/lib/commonjs/utils/index.js +83 -0
- package/lib/commonjs/utils/responsive.js +48 -0
- package/lib/commonjs/utils/shadows.js +12 -0
- package/lib/commonjs/utils/spacing.js +86 -0
- package/lib/commonjs/validators/index.js +165 -0
- package/lib/commonjs/versionCheck/index.js +338 -0
- package/lib/module/api/publicClient.js +69 -0
- package/lib/module/api/userClient.js +283 -0
- package/lib/module/auth/authStore.js +100 -0
- package/lib/module/auth/index.js +5 -0
- package/lib/module/auth/jwt.js +78 -0
- package/lib/module/components/Accordion/Accordion.js +251 -0
- package/lib/module/components/Accordion/index.js +4 -0
- package/lib/module/components/Avatar/Avatar.js +278 -0
- package/lib/module/components/Avatar/index.js +4 -0
- package/lib/module/components/Badge/Badge.js +208 -0
- package/lib/module/components/Badge/index.js +4 -0
- package/lib/module/components/Banner/Banner.js +272 -0
- package/lib/module/components/Banner/index.js +4 -0
- package/lib/module/components/BottomNavigation/BottomNavigation.js +284 -0
- package/lib/module/components/BottomNavigation/index.js +4 -0
- package/lib/module/components/BottomSheet/BottomSheet.js +363 -0
- package/lib/module/components/BottomSheet/index.js +4 -0
- package/lib/module/components/Button/Button.js +277 -0
- package/lib/module/components/Button/index.js +4 -0
- package/lib/module/components/Card/Card.js +190 -0
- package/lib/module/components/Card/index.js +4 -0
- package/lib/module/components/Carousel/Carousel.js +471 -0
- package/lib/module/components/Carousel/index.js +4 -0
- package/lib/module/components/Checkbox/Checkbox.js +161 -0
- package/lib/module/components/Checkbox/index.js +4 -0
- package/lib/module/components/Chip/Chip.js +268 -0
- package/lib/module/components/Chip/index.js +4 -0
- package/lib/module/components/DatePicker/DatePicker.js +808 -0
- package/lib/module/components/DatePicker/index.js +4 -0
- package/lib/module/components/DateRangePicker/DateRangePicker.js +618 -0
- package/lib/module/components/DateRangePicker/index.js +4 -0
- package/lib/module/components/Dialog/Dialog.js +210 -0
- package/lib/module/components/Dialog/index.js +4 -0
- package/lib/module/components/Divider/Divider.js +114 -0
- package/lib/module/components/Divider/index.js +4 -0
- package/lib/module/components/Drawer/Drawer.js +340 -0
- package/lib/module/components/Drawer/index.js +4 -0
- package/lib/module/components/EmptyState/EmptyState.js +197 -0
- package/lib/module/components/EmptyState/index.js +4 -0
- package/lib/module/components/FAB/FAB.js +452 -0
- package/lib/module/components/FAB/index.js +4 -0
- package/lib/module/components/Field/Field.js +123 -0
- package/lib/module/components/Field/index.js +4 -0
- package/lib/module/components/ForceUpdateDialog/ForceUpdateDialog.js +75 -0
- package/lib/module/components/ForceUpdateDialog/index.js +4 -0
- package/lib/module/components/Header/Header.js +335 -0
- package/lib/module/components/Header/index.js +4 -0
- package/lib/module/components/Icon/Icon.js +111 -0
- package/lib/module/components/Icon/index.js +4 -0
- package/lib/module/components/ImageGallery/ImageGallery.js +458 -0
- package/lib/module/components/ImageGallery/index.js +4 -0
- package/lib/module/components/Input/Input.js +384 -0
- package/lib/module/components/Input/index.js +4 -0
- package/lib/module/components/ListItem/ListItem.js +237 -0
- package/lib/module/components/ListItem/index.js +4 -0
- package/lib/module/components/LoadingSpinner/LoadingSpinner.js +179 -0
- package/lib/module/components/LoadingSpinner/index.js +4 -0
- package/lib/module/components/Modal/Modal.js +235 -0
- package/lib/module/components/Modal/index.js +4 -0
- package/lib/module/components/NumberInput/NumberInput.js +388 -0
- package/lib/module/components/NumberInput/index.js +4 -0
- package/lib/module/components/OTPInput/OTPInput.js +371 -0
- package/lib/module/components/OTPInput/index.js +4 -0
- package/lib/module/components/ProgressBar/ProgressBar.js +145 -0
- package/lib/module/components/ProgressBar/index.js +4 -0
- package/lib/module/components/Radio/Radio.js +155 -0
- package/lib/module/components/Radio/RadioGroup.js +38 -0
- package/lib/module/components/Radio/index.js +5 -0
- package/lib/module/components/Rating/Rating.js +232 -0
- package/lib/module/components/Rating/index.js +4 -0
- package/lib/module/components/SearchBar/SearchBar.js +270 -0
- package/lib/module/components/SearchBar/index.js +4 -0
- package/lib/module/components/SegmentedControl/SegmentedControl.js +180 -0
- package/lib/module/components/SegmentedControl/index.js +4 -0
- package/lib/module/components/Select/Select.js +536 -0
- package/lib/module/components/Select/index.js +4 -0
- package/lib/module/components/SkeletonLoader/SkeletonContent.js +186 -0
- package/lib/module/components/SkeletonLoader/SkeletonLoader.js +301 -0
- package/lib/module/components/SkeletonLoader/index.js +5 -0
- package/lib/module/components/Slider/Slider.js +439 -0
- package/lib/module/components/Slider/index.js +4 -0
- package/lib/module/components/Stepper/Stepper.js +399 -0
- package/lib/module/components/Stepper/index.js +4 -0
- package/lib/module/components/Swipeable/Swipeable.js +344 -0
- package/lib/module/components/Swipeable/index.js +4 -0
- package/lib/module/components/Switch/Switch.js +169 -0
- package/lib/module/components/Switch/index.js +4 -0
- package/lib/module/components/Tabs/Tabs.js +200 -0
- package/lib/module/components/Tabs/index.js +4 -0
- package/lib/module/components/TimePicker/TimePicker.js +545 -0
- package/lib/module/components/TimePicker/index.js +4 -0
- package/lib/module/components/Toast/Toast.js +268 -0
- package/lib/module/components/Toast/ToastProvider.js +187 -0
- package/lib/module/components/Toast/index.js +5 -0
- package/lib/module/components/Tooltip/Tooltip.js +358 -0
- package/lib/module/components/Tooltip/index.js +4 -0
- package/lib/module/components/index.js +47 -0
- package/lib/module/config/index.js +55 -0
- package/lib/module/formatters/currency.js +56 -0
- package/lib/module/formatters/date.js +148 -0
- package/lib/module/formatters/index.js +8 -0
- package/lib/module/formatters/initials.js +23 -0
- package/lib/module/formatters/number.js +69 -0
- package/lib/module/formatters/phone.js +53 -0
- package/lib/module/hooks/index.js +6 -0
- package/lib/module/hooks/useDebounce.js +12 -0
- package/lib/module/hooks/usePressAnimation.js +39 -0
- package/lib/module/hooks/useToggle.js +17 -0
- package/lib/module/index.js +37 -0
- package/lib/module/initSDK.js +42 -0
- package/lib/module/initUI.js +19 -0
- package/lib/module/initUserAuth.js +36 -0
- package/lib/module/logger/index.js +123 -0
- package/lib/module/network/NetworkStatusBanner.js +83 -0
- package/lib/module/network/index.js +5 -0
- package/lib/module/network/networkStatus.js +81 -0
- package/lib/module/package.json +1 -0
- package/lib/module/permissions/index.js +177 -0
- package/lib/module/storage/index.js +183 -0
- package/lib/module/theme/ThemeContext.js +65 -0
- package/lib/module/theme/index.js +48 -0
- package/lib/module/theme/merge.js +25 -0
- package/lib/module/theme/tokens.js +315 -0
- package/lib/module/theme/types.js +4 -0
- package/lib/module/types/vector-icons.d.js +2 -0
- package/lib/module/utils/dimensions.js +4 -0
- package/lib/module/utils/hapticUtils.js +51 -0
- package/lib/module/utils/imageCompression.js +46 -0
- package/lib/module/utils/index.js +8 -0
- package/lib/module/utils/responsive.js +42 -0
- package/lib/module/utils/shadows.js +7 -0
- package/lib/module/utils/spacing.js +82 -0
- package/lib/module/validators/index.js +143 -0
- package/lib/module/versionCheck/index.js +334 -0
- package/lib/typescript/commonjs/api/publicClient.d.ts +11 -0
- package/lib/typescript/commonjs/api/userClient.d.ts +18 -0
- package/lib/typescript/commonjs/auth/authStore.d.ts +20 -0
- package/lib/typescript/commonjs/auth/index.d.ts +5 -0
- package/lib/typescript/commonjs/auth/jwt.d.ts +31 -0
- package/lib/typescript/commonjs/components/Accordion/Accordion.d.ts +33 -0
- package/lib/typescript/commonjs/components/Accordion/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Avatar/Avatar.d.ts +42 -0
- package/lib/typescript/commonjs/components/Avatar/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Badge/Badge.d.ts +27 -0
- package/lib/typescript/commonjs/components/Badge/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Banner/Banner.d.ts +27 -0
- package/lib/typescript/commonjs/components/Banner/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/BottomNavigation/BottomNavigation.d.ts +34 -0
- package/lib/typescript/commonjs/components/BottomNavigation/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/BottomSheet/BottomSheet.d.ts +45 -0
- package/lib/typescript/commonjs/components/BottomSheet/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Button/Button.d.ts +29 -0
- package/lib/typescript/commonjs/components/Button/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Card/Card.d.ts +29 -0
- package/lib/typescript/commonjs/components/Card/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Carousel/Carousel.d.ts +66 -0
- package/lib/typescript/commonjs/components/Carousel/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Checkbox/Checkbox.d.ts +24 -0
- package/lib/typescript/commonjs/components/Checkbox/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Chip/Chip.d.ts +25 -0
- package/lib/typescript/commonjs/components/Chip/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/DatePicker/DatePicker.d.ts +25 -0
- package/lib/typescript/commonjs/components/DatePicker/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/DateRangePicker/DateRangePicker.d.ts +32 -0
- package/lib/typescript/commonjs/components/DateRangePicker/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Dialog/Dialog.d.ts +25 -0
- package/lib/typescript/commonjs/components/Dialog/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Divider/Divider.d.ts +21 -0
- package/lib/typescript/commonjs/components/Divider/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Drawer/Drawer.d.ts +53 -0
- package/lib/typescript/commonjs/components/Drawer/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/EmptyState/EmptyState.d.ts +25 -0
- package/lib/typescript/commonjs/components/EmptyState/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/FAB/FAB.d.ts +53 -0
- package/lib/typescript/commonjs/components/FAB/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Field/Field.d.ts +28 -0
- package/lib/typescript/commonjs/components/Field/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/ForceUpdateDialog/ForceUpdateDialog.d.ts +39 -0
- package/lib/typescript/commonjs/components/ForceUpdateDialog/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Header/Header.d.ts +36 -0
- package/lib/typescript/commonjs/components/Header/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Icon/Icon.d.ts +20 -0
- package/lib/typescript/commonjs/components/Icon/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/ImageGallery/ImageGallery.d.ts +41 -0
- package/lib/typescript/commonjs/components/ImageGallery/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Input/Input.d.ts +34 -0
- package/lib/typescript/commonjs/components/Input/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/ListItem/ListItem.d.ts +30 -0
- package/lib/typescript/commonjs/components/ListItem/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/LoadingSpinner/LoadingSpinner.d.ts +20 -0
- package/lib/typescript/commonjs/components/LoadingSpinner/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Modal/Modal.d.ts +29 -0
- package/lib/typescript/commonjs/components/Modal/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/NumberInput/NumberInput.d.ts +35 -0
- package/lib/typescript/commonjs/components/NumberInput/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/OTPInput/OTPInput.d.ts +29 -0
- package/lib/typescript/commonjs/components/OTPInput/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/ProgressBar/ProgressBar.d.ts +21 -0
- package/lib/typescript/commonjs/components/ProgressBar/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Radio/Radio.d.ts +32 -0
- package/lib/typescript/commonjs/components/Radio/RadioGroup.d.ts +16 -0
- package/lib/typescript/commonjs/components/Radio/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/Rating/Rating.d.ts +22 -0
- package/lib/typescript/commonjs/components/Rating/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/SearchBar/SearchBar.d.ts +28 -0
- package/lib/typescript/commonjs/components/SearchBar/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/SegmentedControl/SegmentedControl.d.ts +36 -0
- package/lib/typescript/commonjs/components/SegmentedControl/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Select/Select.d.ts +48 -0
- package/lib/typescript/commonjs/components/Select/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/SkeletonLoader/SkeletonContent.d.ts +29 -0
- package/lib/typescript/commonjs/components/SkeletonLoader/SkeletonLoader.d.ts +42 -0
- package/lib/typescript/commonjs/components/SkeletonLoader/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/Slider/Slider.d.ts +33 -0
- package/lib/typescript/commonjs/components/Slider/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Stepper/Stepper.d.ts +25 -0
- package/lib/typescript/commonjs/components/Stepper/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Swipeable/Swipeable.d.ts +45 -0
- package/lib/typescript/commonjs/components/Swipeable/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Switch/Switch.d.ts +24 -0
- package/lib/typescript/commonjs/components/Switch/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Tabs/Tabs.d.ts +37 -0
- package/lib/typescript/commonjs/components/Tabs/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/TimePicker/TimePicker.d.ts +26 -0
- package/lib/typescript/commonjs/components/TimePicker/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Toast/Toast.d.ts +30 -0
- package/lib/typescript/commonjs/components/Toast/ToastProvider.d.ts +26 -0
- package/lib/typescript/commonjs/components/Toast/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/Tooltip/Tooltip.d.ts +22 -0
- package/lib/typescript/commonjs/components/Tooltip/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/index.d.ts +89 -0
- package/lib/typescript/commonjs/config/index.d.ts +40 -0
- package/lib/typescript/commonjs/formatters/currency.d.ts +24 -0
- package/lib/typescript/commonjs/formatters/date.d.ts +22 -0
- package/lib/typescript/commonjs/formatters/index.d.ts +8 -0
- package/lib/typescript/commonjs/formatters/initials.d.ts +11 -0
- package/lib/typescript/commonjs/formatters/number.d.ts +15 -0
- package/lib/typescript/commonjs/formatters/phone.d.ts +13 -0
- package/lib/typescript/commonjs/hooks/index.d.ts +6 -0
- package/lib/typescript/commonjs/hooks/useDebounce.d.ts +2 -0
- package/lib/typescript/commonjs/hooks/usePressAnimation.d.ts +14 -0
- package/lib/typescript/commonjs/hooks/useToggle.d.ts +9 -0
- package/lib/typescript/commonjs/index.d.ts +37 -0
- package/lib/typescript/commonjs/initSDK.d.ts +40 -0
- package/lib/typescript/commonjs/initUI.d.ts +12 -0
- package/lib/typescript/commonjs/initUserAuth.d.ts +22 -0
- package/lib/typescript/commonjs/logger/index.d.ts +42 -0
- package/lib/typescript/commonjs/network/NetworkStatusBanner.d.ts +19 -0
- package/lib/typescript/commonjs/network/index.d.ts +5 -0
- package/lib/typescript/commonjs/network/networkStatus.d.ts +27 -0
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/permissions/index.d.ts +20 -0
- package/lib/typescript/commonjs/storage/index.d.ts +42 -0
- package/lib/typescript/commonjs/theme/ThemeContext.d.ts +18 -0
- package/lib/typescript/commonjs/theme/index.d.ts +13 -0
- package/lib/typescript/commonjs/theme/merge.d.ts +3 -0
- package/lib/typescript/commonjs/theme/tokens.d.ts +4 -0
- package/lib/typescript/commonjs/theme/types.d.ts +161 -0
- package/lib/typescript/commonjs/utils/dimensions.d.ts +3 -0
- package/lib/typescript/commonjs/utils/hapticUtils.d.ts +4 -0
- package/lib/typescript/commonjs/utils/imageCompression.d.ts +15 -0
- package/lib/typescript/commonjs/utils/index.d.ts +10 -0
- package/lib/typescript/commonjs/utils/responsive.d.ts +23 -0
- package/lib/typescript/commonjs/utils/shadows.d.ts +4 -0
- package/lib/typescript/commonjs/utils/spacing.d.ts +61 -0
- package/lib/typescript/commonjs/validators/index.d.ts +46 -0
- package/lib/typescript/commonjs/versionCheck/index.d.ts +59 -0
- package/lib/typescript/module/api/publicClient.d.ts +11 -0
- package/lib/typescript/module/api/userClient.d.ts +18 -0
- package/lib/typescript/module/auth/authStore.d.ts +20 -0
- package/lib/typescript/module/auth/index.d.ts +5 -0
- package/lib/typescript/module/auth/jwt.d.ts +31 -0
- package/lib/typescript/module/components/Accordion/Accordion.d.ts +33 -0
- package/lib/typescript/module/components/Accordion/index.d.ts +3 -0
- package/lib/typescript/module/components/Avatar/Avatar.d.ts +42 -0
- package/lib/typescript/module/components/Avatar/index.d.ts +3 -0
- package/lib/typescript/module/components/Badge/Badge.d.ts +27 -0
- package/lib/typescript/module/components/Badge/index.d.ts +3 -0
- package/lib/typescript/module/components/Banner/Banner.d.ts +27 -0
- package/lib/typescript/module/components/Banner/index.d.ts +3 -0
- package/lib/typescript/module/components/BottomNavigation/BottomNavigation.d.ts +34 -0
- package/lib/typescript/module/components/BottomNavigation/index.d.ts +3 -0
- package/lib/typescript/module/components/BottomSheet/BottomSheet.d.ts +45 -0
- package/lib/typescript/module/components/BottomSheet/index.d.ts +3 -0
- package/lib/typescript/module/components/Button/Button.d.ts +29 -0
- package/lib/typescript/module/components/Button/index.d.ts +3 -0
- package/lib/typescript/module/components/Card/Card.d.ts +29 -0
- package/lib/typescript/module/components/Card/index.d.ts +3 -0
- package/lib/typescript/module/components/Carousel/Carousel.d.ts +66 -0
- package/lib/typescript/module/components/Carousel/index.d.ts +3 -0
- package/lib/typescript/module/components/Checkbox/Checkbox.d.ts +24 -0
- package/lib/typescript/module/components/Checkbox/index.d.ts +3 -0
- package/lib/typescript/module/components/Chip/Chip.d.ts +25 -0
- package/lib/typescript/module/components/Chip/index.d.ts +3 -0
- package/lib/typescript/module/components/DatePicker/DatePicker.d.ts +25 -0
- package/lib/typescript/module/components/DatePicker/index.d.ts +3 -0
- package/lib/typescript/module/components/DateRangePicker/DateRangePicker.d.ts +32 -0
- package/lib/typescript/module/components/DateRangePicker/index.d.ts +3 -0
- package/lib/typescript/module/components/Dialog/Dialog.d.ts +25 -0
- package/lib/typescript/module/components/Dialog/index.d.ts +3 -0
- package/lib/typescript/module/components/Divider/Divider.d.ts +21 -0
- package/lib/typescript/module/components/Divider/index.d.ts +3 -0
- package/lib/typescript/module/components/Drawer/Drawer.d.ts +53 -0
- package/lib/typescript/module/components/Drawer/index.d.ts +3 -0
- package/lib/typescript/module/components/EmptyState/EmptyState.d.ts +25 -0
- package/lib/typescript/module/components/EmptyState/index.d.ts +3 -0
- package/lib/typescript/module/components/FAB/FAB.d.ts +53 -0
- package/lib/typescript/module/components/FAB/index.d.ts +3 -0
- package/lib/typescript/module/components/Field/Field.d.ts +28 -0
- package/lib/typescript/module/components/Field/index.d.ts +3 -0
- package/lib/typescript/module/components/ForceUpdateDialog/ForceUpdateDialog.d.ts +39 -0
- package/lib/typescript/module/components/ForceUpdateDialog/index.d.ts +3 -0
- package/lib/typescript/module/components/Header/Header.d.ts +36 -0
- package/lib/typescript/module/components/Header/index.d.ts +3 -0
- package/lib/typescript/module/components/Icon/Icon.d.ts +20 -0
- package/lib/typescript/module/components/Icon/index.d.ts +3 -0
- package/lib/typescript/module/components/ImageGallery/ImageGallery.d.ts +41 -0
- package/lib/typescript/module/components/ImageGallery/index.d.ts +3 -0
- package/lib/typescript/module/components/Input/Input.d.ts +34 -0
- package/lib/typescript/module/components/Input/index.d.ts +3 -0
- package/lib/typescript/module/components/ListItem/ListItem.d.ts +30 -0
- package/lib/typescript/module/components/ListItem/index.d.ts +4 -0
- package/lib/typescript/module/components/LoadingSpinner/LoadingSpinner.d.ts +20 -0
- package/lib/typescript/module/components/LoadingSpinner/index.d.ts +3 -0
- package/lib/typescript/module/components/Modal/Modal.d.ts +29 -0
- package/lib/typescript/module/components/Modal/index.d.ts +3 -0
- package/lib/typescript/module/components/NumberInput/NumberInput.d.ts +35 -0
- package/lib/typescript/module/components/NumberInput/index.d.ts +3 -0
- package/lib/typescript/module/components/OTPInput/OTPInput.d.ts +29 -0
- package/lib/typescript/module/components/OTPInput/index.d.ts +3 -0
- package/lib/typescript/module/components/ProgressBar/ProgressBar.d.ts +21 -0
- package/lib/typescript/module/components/ProgressBar/index.d.ts +3 -0
- package/lib/typescript/module/components/Radio/Radio.d.ts +32 -0
- package/lib/typescript/module/components/Radio/RadioGroup.d.ts +16 -0
- package/lib/typescript/module/components/Radio/index.d.ts +5 -0
- package/lib/typescript/module/components/Rating/Rating.d.ts +22 -0
- package/lib/typescript/module/components/Rating/index.d.ts +3 -0
- package/lib/typescript/module/components/SearchBar/SearchBar.d.ts +28 -0
- package/lib/typescript/module/components/SearchBar/index.d.ts +3 -0
- package/lib/typescript/module/components/SegmentedControl/SegmentedControl.d.ts +36 -0
- package/lib/typescript/module/components/SegmentedControl/index.d.ts +3 -0
- package/lib/typescript/module/components/Select/Select.d.ts +48 -0
- package/lib/typescript/module/components/Select/index.d.ts +3 -0
- package/lib/typescript/module/components/SkeletonLoader/SkeletonContent.d.ts +29 -0
- package/lib/typescript/module/components/SkeletonLoader/SkeletonLoader.d.ts +42 -0
- package/lib/typescript/module/components/SkeletonLoader/index.d.ts +5 -0
- package/lib/typescript/module/components/Slider/Slider.d.ts +33 -0
- package/lib/typescript/module/components/Slider/index.d.ts +3 -0
- package/lib/typescript/module/components/Stepper/Stepper.d.ts +25 -0
- package/lib/typescript/module/components/Stepper/index.d.ts +3 -0
- package/lib/typescript/module/components/Swipeable/Swipeable.d.ts +45 -0
- package/lib/typescript/module/components/Swipeable/index.d.ts +3 -0
- package/lib/typescript/module/components/Switch/Switch.d.ts +24 -0
- package/lib/typescript/module/components/Switch/index.d.ts +3 -0
- package/lib/typescript/module/components/Tabs/Tabs.d.ts +37 -0
- package/lib/typescript/module/components/Tabs/index.d.ts +3 -0
- package/lib/typescript/module/components/TimePicker/TimePicker.d.ts +26 -0
- package/lib/typescript/module/components/TimePicker/index.d.ts +3 -0
- package/lib/typescript/module/components/Toast/Toast.d.ts +30 -0
- package/lib/typescript/module/components/Toast/ToastProvider.d.ts +26 -0
- package/lib/typescript/module/components/Toast/index.d.ts +5 -0
- package/lib/typescript/module/components/Tooltip/Tooltip.d.ts +22 -0
- package/lib/typescript/module/components/Tooltip/index.d.ts +3 -0
- package/lib/typescript/module/components/index.d.ts +89 -0
- package/lib/typescript/module/config/index.d.ts +40 -0
- package/lib/typescript/module/formatters/currency.d.ts +24 -0
- package/lib/typescript/module/formatters/date.d.ts +22 -0
- package/lib/typescript/module/formatters/index.d.ts +8 -0
- package/lib/typescript/module/formatters/initials.d.ts +11 -0
- package/lib/typescript/module/formatters/number.d.ts +15 -0
- package/lib/typescript/module/formatters/phone.d.ts +13 -0
- package/lib/typescript/module/hooks/index.d.ts +6 -0
- package/lib/typescript/module/hooks/useDebounce.d.ts +2 -0
- package/lib/typescript/module/hooks/usePressAnimation.d.ts +14 -0
- package/lib/typescript/module/hooks/useToggle.d.ts +9 -0
- package/lib/typescript/module/index.d.ts +37 -0
- package/lib/typescript/module/initSDK.d.ts +40 -0
- package/lib/typescript/module/initUI.d.ts +12 -0
- package/lib/typescript/module/initUserAuth.d.ts +22 -0
- package/lib/typescript/module/logger/index.d.ts +42 -0
- package/lib/typescript/module/network/NetworkStatusBanner.d.ts +19 -0
- package/lib/typescript/module/network/index.d.ts +5 -0
- package/lib/typescript/module/network/networkStatus.d.ts +27 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/permissions/index.d.ts +20 -0
- package/lib/typescript/module/storage/index.d.ts +42 -0
- package/lib/typescript/module/theme/ThemeContext.d.ts +18 -0
- package/lib/typescript/module/theme/index.d.ts +13 -0
- package/lib/typescript/module/theme/merge.d.ts +3 -0
- package/lib/typescript/module/theme/tokens.d.ts +4 -0
- package/lib/typescript/module/theme/types.d.ts +161 -0
- package/lib/typescript/module/utils/dimensions.d.ts +3 -0
- package/lib/typescript/module/utils/hapticUtils.d.ts +4 -0
- package/lib/typescript/module/utils/imageCompression.d.ts +15 -0
- package/lib/typescript/module/utils/index.d.ts +10 -0
- package/lib/typescript/module/utils/responsive.d.ts +23 -0
- package/lib/typescript/module/utils/shadows.d.ts +4 -0
- package/lib/typescript/module/utils/spacing.d.ts +61 -0
- package/lib/typescript/module/validators/index.d.ts +46 -0
- package/lib/typescript/module/versionCheck/index.d.ts +59 -0
- package/package.json +137 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from 'react-native';
|
|
3
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
4
|
+
export type RatingTone = 'primary' | 'warning';
|
|
5
|
+
export type RatingSize = 'sm' | 'md' | 'lg' | number;
|
|
6
|
+
export interface RatingProps {
|
|
7
|
+
value: number;
|
|
8
|
+
onChange?: (value: number) => void;
|
|
9
|
+
max?: number;
|
|
10
|
+
allowHalf?: boolean;
|
|
11
|
+
readonly?: boolean;
|
|
12
|
+
size?: RatingSize;
|
|
13
|
+
tone?: RatingTone;
|
|
14
|
+
label?: string;
|
|
15
|
+
accessibilityLabel?: string;
|
|
16
|
+
style?: StyleProp<ViewStyle>;
|
|
17
|
+
testID?: string;
|
|
18
|
+
}
|
|
19
|
+
declare const Rating: React.ForwardRefExoticComponent<RatingProps & React.RefAttributes<View>>;
|
|
20
|
+
export { Rating };
|
|
21
|
+
export default Rating;
|
|
22
|
+
//# sourceMappingURL=Rating.d.ts.map
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { TextInput } from 'react-native';
|
|
3
|
+
import type { StyleProp, TextInputProps, ViewStyle } from 'react-native';
|
|
4
|
+
export type SearchBarSize = 'sm' | 'md' | 'lg';
|
|
5
|
+
export type SearchBarVariant = 'filled' | 'outlined';
|
|
6
|
+
export interface SearchBarProps extends Omit<TextInputProps, 'style' | 'value' | 'onChangeText'> {
|
|
7
|
+
value: string;
|
|
8
|
+
onChangeText: (text: string) => void;
|
|
9
|
+
onSubmit?: (text: string) => void;
|
|
10
|
+
placeholder?: string;
|
|
11
|
+
autoFocus?: boolean;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
showCancel?: boolean;
|
|
14
|
+
onCancel?: () => void;
|
|
15
|
+
onClear?: () => void;
|
|
16
|
+
leftIcon?: React.ReactNode;
|
|
17
|
+
debounceMs?: number;
|
|
18
|
+
size?: SearchBarSize;
|
|
19
|
+
variant?: SearchBarVariant;
|
|
20
|
+
cancelLabel?: string;
|
|
21
|
+
style?: StyleProp<ViewStyle>;
|
|
22
|
+
accessibilityLabel?: string;
|
|
23
|
+
testID?: string;
|
|
24
|
+
}
|
|
25
|
+
declare const SearchBar: React.ForwardRefExoticComponent<SearchBarProps & React.RefAttributes<TextInput>>;
|
|
26
|
+
export { SearchBar };
|
|
27
|
+
export default SearchBar;
|
|
28
|
+
//# sourceMappingURL=SearchBar.d.ts.map
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SegmentedControl — iOS-style segmented control.
|
|
3
|
+
*
|
|
4
|
+
* Rounded container with equal-width segments and an animated thumb that
|
|
5
|
+
* springs between selected segments. Theme-aware, dark-mode friendly,
|
|
6
|
+
* fully accessible (radiogroup / radio roles + selected state).
|
|
7
|
+
*/
|
|
8
|
+
import React from 'react';
|
|
9
|
+
import { View } from 'react-native';
|
|
10
|
+
import type { StyleProp, TextStyle, ViewStyle } from 'react-native';
|
|
11
|
+
export type SegmentedControlSize = 'sm' | 'md';
|
|
12
|
+
export type SegmentedControlTone = 'primary' | 'neutral';
|
|
13
|
+
export type SegmentValue = string | number;
|
|
14
|
+
export interface SegmentItem {
|
|
15
|
+
label: string;
|
|
16
|
+
value: SegmentValue;
|
|
17
|
+
icon?: React.ReactNode;
|
|
18
|
+
}
|
|
19
|
+
export interface SegmentedControlProps {
|
|
20
|
+
segments: SegmentItem[];
|
|
21
|
+
value: SegmentValue;
|
|
22
|
+
onChange: (value: SegmentValue) => void;
|
|
23
|
+
size?: SegmentedControlSize;
|
|
24
|
+
fullWidth?: boolean;
|
|
25
|
+
disabled?: boolean;
|
|
26
|
+
tone?: SegmentedControlTone;
|
|
27
|
+
accessibilityLabel?: string;
|
|
28
|
+
style?: StyleProp<ViewStyle>;
|
|
29
|
+
segmentStyle?: StyleProp<ViewStyle>;
|
|
30
|
+
textStyle?: StyleProp<TextStyle>;
|
|
31
|
+
testID?: string;
|
|
32
|
+
}
|
|
33
|
+
declare const SegmentedControl: React.ForwardRefExoticComponent<SegmentedControlProps & React.RefAttributes<View>>;
|
|
34
|
+
export { SegmentedControl };
|
|
35
|
+
export default SegmentedControl;
|
|
36
|
+
//# sourceMappingURL=SegmentedControl.d.ts.map
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Select — single + multi select with bottom-sheet picker.
|
|
3
|
+
*
|
|
4
|
+
* Self-contained: implements its own RN Modal-backed slide-up sheet so it has
|
|
5
|
+
* no internal dependency on the BottomSheet component. Supports optional
|
|
6
|
+
* client-side search, theme-aware styling, full a11y, and dark-mode auto.
|
|
7
|
+
*/
|
|
8
|
+
import React from 'react';
|
|
9
|
+
import { View } from 'react-native';
|
|
10
|
+
import type { StyleProp, TextStyle, ViewStyle } from 'react-native';
|
|
11
|
+
export type SelectSize = 'sm' | 'md' | 'lg';
|
|
12
|
+
export type SelectValue = string | number;
|
|
13
|
+
export interface SelectOption {
|
|
14
|
+
label: string;
|
|
15
|
+
value: SelectValue;
|
|
16
|
+
description?: string;
|
|
17
|
+
disabled?: boolean;
|
|
18
|
+
icon?: React.ReactNode;
|
|
19
|
+
}
|
|
20
|
+
interface BaseSelectProps {
|
|
21
|
+
options: SelectOption[];
|
|
22
|
+
placeholder?: string;
|
|
23
|
+
searchable?: boolean;
|
|
24
|
+
label?: string;
|
|
25
|
+
error?: string;
|
|
26
|
+
disabled?: boolean;
|
|
27
|
+
size?: SelectSize;
|
|
28
|
+
accessibilityLabel?: string;
|
|
29
|
+
style?: StyleProp<ViewStyle>;
|
|
30
|
+
triggerStyle?: StyleProp<ViewStyle>;
|
|
31
|
+
textStyle?: StyleProp<TextStyle>;
|
|
32
|
+
testID?: string;
|
|
33
|
+
}
|
|
34
|
+
interface SingleSelectProps extends BaseSelectProps {
|
|
35
|
+
multi?: false;
|
|
36
|
+
value?: SelectValue;
|
|
37
|
+
onChange: (value: SelectValue) => void;
|
|
38
|
+
}
|
|
39
|
+
interface MultiSelectProps extends BaseSelectProps {
|
|
40
|
+
multi: true;
|
|
41
|
+
value?: SelectValue[];
|
|
42
|
+
onChange: (value: SelectValue[]) => void;
|
|
43
|
+
}
|
|
44
|
+
export type SelectProps = SingleSelectProps | MultiSelectProps;
|
|
45
|
+
declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<View>>;
|
|
46
|
+
export { Select };
|
|
47
|
+
export default Select;
|
|
48
|
+
//# sourceMappingURL=Select.d.ts.map
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ReactNode } from 'react';
|
|
3
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
4
|
+
import type { SkeletonSpeed, SkeletonVariant } from './SkeletonLoader';
|
|
5
|
+
export type SkeletonContentMode = 'auto' | 'block';
|
|
6
|
+
export interface SkeletonContentProps {
|
|
7
|
+
/** When true, replace children with skeleton placeholders. */
|
|
8
|
+
loading: boolean;
|
|
9
|
+
children: ReactNode;
|
|
10
|
+
/** Animation style — same as Skeleton. */
|
|
11
|
+
variant?: SkeletonVariant;
|
|
12
|
+
/** Animation speed — same as Skeleton. */
|
|
13
|
+
speed?: SkeletonSpeed;
|
|
14
|
+
/**
|
|
15
|
+
* - `'auto'` (default): walks the children tree and replaces every `<Text>`, `<Image>`, and
|
|
16
|
+
* sized leaf `<View>` with a `<Skeleton>` matching the element's style dimensions.
|
|
17
|
+
* Use this when your loading layout mirrors your real layout (typical case).
|
|
18
|
+
* - `'block'`: renders a single rectangular skeleton sized to the children's overall bounds.
|
|
19
|
+
* Useful when children are opaque components whose props (e.g. `Button title=...`) the walker
|
|
20
|
+
* cannot inspect.
|
|
21
|
+
*/
|
|
22
|
+
mode?: SkeletonContentMode;
|
|
23
|
+
style?: StyleProp<ViewStyle>;
|
|
24
|
+
testID?: string;
|
|
25
|
+
}
|
|
26
|
+
declare const SkeletonContent: React.FC<SkeletonContentProps>;
|
|
27
|
+
export { SkeletonContent };
|
|
28
|
+
export default SkeletonContent;
|
|
29
|
+
//# sourceMappingURL=SkeletonContent.d.ts.map
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
3
|
+
import type { RadiusScale } from '../../theme/types';
|
|
4
|
+
export type SkeletonVariant = 'shimmer' | 'pulse';
|
|
5
|
+
export type SkeletonSpeed = 'slow' | 'normal' | 'fast';
|
|
6
|
+
export type SkeletonRadius = keyof Pick<RadiusScale, 'sm' | 'md' | 'lg' | 'xl' | 'full'> | number;
|
|
7
|
+
export type SkeletonWidth = number | 'auto' | '100%' | `${number}%`;
|
|
8
|
+
export type SkeletonAvatarSize = 'sm' | 'md' | 'lg';
|
|
9
|
+
export interface SkeletonProps {
|
|
10
|
+
width?: SkeletonWidth;
|
|
11
|
+
height?: number;
|
|
12
|
+
radius?: SkeletonRadius;
|
|
13
|
+
variant?: SkeletonVariant;
|
|
14
|
+
speed?: SkeletonSpeed;
|
|
15
|
+
style?: StyleProp<ViewStyle>;
|
|
16
|
+
testID?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface SkeletonCircleProps extends Omit<SkeletonProps, 'width' | 'height' | 'radius'> {
|
|
19
|
+
size: number;
|
|
20
|
+
}
|
|
21
|
+
export interface SkeletonTextProps extends Omit<SkeletonProps, 'height'> {
|
|
22
|
+
lines?: number;
|
|
23
|
+
lastLineWidth?: SkeletonWidth;
|
|
24
|
+
spacing?: number;
|
|
25
|
+
fontSize?: number;
|
|
26
|
+
}
|
|
27
|
+
export interface SkeletonAvatarProps extends Omit<SkeletonProps, 'width' | 'height' | 'radius'> {
|
|
28
|
+
size?: SkeletonAvatarSize;
|
|
29
|
+
}
|
|
30
|
+
export type SkeletonCardProps = Omit<SkeletonProps, 'height'>;
|
|
31
|
+
export interface SkeletonListItemProps extends Omit<SkeletonProps, 'width' | 'height'> {
|
|
32
|
+
avatarSize?: SkeletonAvatarSize;
|
|
33
|
+
}
|
|
34
|
+
declare const Skeleton: React.FC<SkeletonProps>;
|
|
35
|
+
declare const SkeletonCircle: React.FC<SkeletonCircleProps>;
|
|
36
|
+
declare const SkeletonText: React.FC<SkeletonTextProps>;
|
|
37
|
+
declare const SkeletonAvatar: React.FC<SkeletonAvatarProps>;
|
|
38
|
+
declare const SkeletonCard: React.FC<SkeletonCardProps>;
|
|
39
|
+
declare const SkeletonListItem: React.FC<SkeletonListItemProps>;
|
|
40
|
+
export { Skeleton, SkeletonCircle, SkeletonText, SkeletonAvatar, SkeletonCard, SkeletonListItem };
|
|
41
|
+
export default Skeleton;
|
|
42
|
+
//# sourceMappingURL=SkeletonLoader.d.ts.map
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { Skeleton, SkeletonCircle, SkeletonText, SkeletonAvatar, SkeletonCard, SkeletonListItem, default } from './SkeletonLoader';
|
|
2
|
+
export type { SkeletonProps, SkeletonCircleProps, SkeletonTextProps, SkeletonAvatarProps, SkeletonCardProps, SkeletonListItemProps, SkeletonVariant, SkeletonSpeed, SkeletonRadius, SkeletonWidth, SkeletonAvatarSize } from './SkeletonLoader';
|
|
3
|
+
export { SkeletonContent } from './SkeletonContent';
|
|
4
|
+
export type { SkeletonContentProps, SkeletonContentMode } from './SkeletonContent';
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from 'react-native';
|
|
3
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
4
|
+
export type SliderTone = 'primary' | 'success' | 'warning' | 'error';
|
|
5
|
+
export type SliderSize = 'sm' | 'md' | 'lg';
|
|
6
|
+
interface SliderCommonProps {
|
|
7
|
+
min?: number;
|
|
8
|
+
max?: number;
|
|
9
|
+
step?: number;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
tone?: SliderTone;
|
|
12
|
+
size?: SliderSize;
|
|
13
|
+
showLabel?: boolean;
|
|
14
|
+
formatLabel?: (value: number) => string;
|
|
15
|
+
accessibilityLabel?: string;
|
|
16
|
+
style?: StyleProp<ViewStyle>;
|
|
17
|
+
testID?: string;
|
|
18
|
+
}
|
|
19
|
+
interface SliderSingleProps extends SliderCommonProps {
|
|
20
|
+
range?: false;
|
|
21
|
+
value: number;
|
|
22
|
+
onChange: (value: number) => void;
|
|
23
|
+
}
|
|
24
|
+
interface SliderRangeProps extends SliderCommonProps {
|
|
25
|
+
range: true;
|
|
26
|
+
value: [number, number];
|
|
27
|
+
onChange: (value: [number, number]) => void;
|
|
28
|
+
}
|
|
29
|
+
export type SliderProps = SliderSingleProps | SliderRangeProps;
|
|
30
|
+
declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<View>>;
|
|
31
|
+
export { Slider };
|
|
32
|
+
export default Slider;
|
|
33
|
+
//# sourceMappingURL=Slider.d.ts.map
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from 'react-native';
|
|
3
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
4
|
+
export type StepperVariant = 'horizontal' | 'vertical';
|
|
5
|
+
export type StepperTone = 'primary' | 'success';
|
|
6
|
+
export interface StepperStep {
|
|
7
|
+
key: string;
|
|
8
|
+
label: string;
|
|
9
|
+
description?: string;
|
|
10
|
+
icon?: React.ReactNode;
|
|
11
|
+
}
|
|
12
|
+
export interface StepperProps {
|
|
13
|
+
steps: StepperStep[];
|
|
14
|
+
activeStep: number;
|
|
15
|
+
onStepPress?: (index: number) => void;
|
|
16
|
+
variant?: StepperVariant;
|
|
17
|
+
tone?: StepperTone;
|
|
18
|
+
accessibilityLabel?: string;
|
|
19
|
+
style?: StyleProp<ViewStyle>;
|
|
20
|
+
testID?: string;
|
|
21
|
+
}
|
|
22
|
+
declare const Stepper: React.ForwardRefExoticComponent<StepperProps & React.RefAttributes<View>>;
|
|
23
|
+
export { Stepper };
|
|
24
|
+
export default Stepper;
|
|
25
|
+
//# sourceMappingURL=Stepper.d.ts.map
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swipeable — Reanimated 3 + Gesture Handler 2 implementation.
|
|
3
|
+
*
|
|
4
|
+
* Wraps any content and reveals contextual actions when the user
|
|
5
|
+
* swipes left or right. Past `fullSwipeThreshold`, the first action
|
|
6
|
+
* fires automatically and the content slides off-screen.
|
|
7
|
+
*
|
|
8
|
+
* USAGE:
|
|
9
|
+
*
|
|
10
|
+
* <Swipeable
|
|
11
|
+
* leftActions={[{ key: 'archive', label: 'Archive', tone: 'success', onPress: handleArchive }]}
|
|
12
|
+
* rightActions={[{ key: 'delete', label: 'Delete', tone: 'error', onPress: handleDelete }]}
|
|
13
|
+
* >
|
|
14
|
+
* <ListItem title="Inbox item" />
|
|
15
|
+
* </Swipeable>
|
|
16
|
+
*/
|
|
17
|
+
import React from 'react';
|
|
18
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
19
|
+
export type SwipeableTone = 'primary' | 'success' | 'warning' | 'error' | 'neutral';
|
|
20
|
+
export interface SwipeableAction {
|
|
21
|
+
key: string;
|
|
22
|
+
label: string;
|
|
23
|
+
icon?: React.ReactNode;
|
|
24
|
+
onPress: () => void;
|
|
25
|
+
tone?: SwipeableTone;
|
|
26
|
+
}
|
|
27
|
+
export interface SwipeableProps {
|
|
28
|
+
children: React.ReactNode;
|
|
29
|
+
leftActions?: SwipeableAction[];
|
|
30
|
+
rightActions?: SwipeableAction[];
|
|
31
|
+
/** px to fully reveal the row of actions; default 80 */
|
|
32
|
+
threshold?: number;
|
|
33
|
+
/** px past which the first action fires automatically + content slides off-screen; default 200 */
|
|
34
|
+
fullSwipeThreshold?: number;
|
|
35
|
+
onSwipeOpen?: (side: 'left' | 'right') => void;
|
|
36
|
+
onSwipeClose?: () => void;
|
|
37
|
+
disabled?: boolean;
|
|
38
|
+
containerStyle?: StyleProp<ViewStyle>;
|
|
39
|
+
accessibilityLabel?: string;
|
|
40
|
+
testID?: string;
|
|
41
|
+
}
|
|
42
|
+
declare const Swipeable: React.FC<SwipeableProps>;
|
|
43
|
+
export { Swipeable };
|
|
44
|
+
export default Swipeable;
|
|
45
|
+
//# sourceMappingURL=Swipeable.d.ts.map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from 'react-native';
|
|
3
|
+
import type { PressableProps, StyleProp, ViewStyle } from 'react-native';
|
|
4
|
+
import type { HapticType } from '../../utils/hapticUtils';
|
|
5
|
+
export type SwitchSize = 'sm' | 'md' | 'lg';
|
|
6
|
+
export type SwitchTone = 'primary' | 'success' | 'warning' | 'error';
|
|
7
|
+
export interface SwitchProps extends Omit<PressableProps, 'style' | 'children' | 'onPress'> {
|
|
8
|
+
value: boolean;
|
|
9
|
+
onValueChange: (value: boolean) => void;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
size?: SwitchSize;
|
|
12
|
+
tone?: SwitchTone;
|
|
13
|
+
label?: string;
|
|
14
|
+
accessibilityLabel?: string;
|
|
15
|
+
haptic?: HapticType | false;
|
|
16
|
+
style?: StyleProp<ViewStyle>;
|
|
17
|
+
trackStyle?: StyleProp<ViewStyle>;
|
|
18
|
+
thumbStyle?: StyleProp<ViewStyle>;
|
|
19
|
+
testID?: string;
|
|
20
|
+
}
|
|
21
|
+
declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<View>>;
|
|
22
|
+
export { Switch };
|
|
23
|
+
export default Switch;
|
|
24
|
+
//# sourceMappingURL=Switch.d.ts.map
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tabs — top tabs with animated underline (or pills) indicator.
|
|
3
|
+
*
|
|
4
|
+
* Layout: equal-width row by default, or horizontal-scrollable when
|
|
5
|
+
* `scrollable` is true. The active indicator (underline or pill) is an
|
|
6
|
+
* Animated.View positioned absolutely; its translateX + width spring to the
|
|
7
|
+
* measured layout of the active tab. Driven by native driver where possible
|
|
8
|
+
* (transform); width animates separately on the JS thread because RN's
|
|
9
|
+
* native driver does not support layout props.
|
|
10
|
+
*/
|
|
11
|
+
import React from 'react';
|
|
12
|
+
import { View } from 'react-native';
|
|
13
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
14
|
+
export type TabsVariant = 'underline' | 'pills';
|
|
15
|
+
export type TabsAlign = 'left' | 'center';
|
|
16
|
+
export interface TabItem {
|
|
17
|
+
key: string;
|
|
18
|
+
label: string;
|
|
19
|
+
icon?: React.ReactNode;
|
|
20
|
+
disabled?: boolean;
|
|
21
|
+
}
|
|
22
|
+
export interface TabsProps {
|
|
23
|
+
tabs: TabItem[];
|
|
24
|
+
activeKey: string;
|
|
25
|
+
onChange: (key: string) => void;
|
|
26
|
+
variant?: TabsVariant;
|
|
27
|
+
scrollable?: boolean;
|
|
28
|
+
align?: TabsAlign;
|
|
29
|
+
style?: StyleProp<ViewStyle>;
|
|
30
|
+
tabStyle?: StyleProp<ViewStyle>;
|
|
31
|
+
accessibilityLabel?: string;
|
|
32
|
+
testID?: string;
|
|
33
|
+
}
|
|
34
|
+
declare const Tabs: React.ForwardRefExoticComponent<TabsProps & React.RefAttributes<View>>;
|
|
35
|
+
export { Tabs };
|
|
36
|
+
export default Tabs;
|
|
37
|
+
//# sourceMappingURL=Tabs.d.ts.map
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
3
|
+
export type TimeFormat = '12h' | '24h';
|
|
4
|
+
export type Period = 'AM' | 'PM';
|
|
5
|
+
export type MinuteStep = 1 | 5 | 15 | 30;
|
|
6
|
+
export interface TimeValue {
|
|
7
|
+
hour: number;
|
|
8
|
+
minute: number;
|
|
9
|
+
}
|
|
10
|
+
export interface TimePickerProps {
|
|
11
|
+
visible: boolean;
|
|
12
|
+
value?: TimeValue | null;
|
|
13
|
+
onSelect: (time: TimeValue) => void;
|
|
14
|
+
onClose: () => void;
|
|
15
|
+
format?: TimeFormat;
|
|
16
|
+
minuteStep?: MinuteStep;
|
|
17
|
+
title?: string;
|
|
18
|
+
confirmLabel?: string;
|
|
19
|
+
cancelLabel?: string;
|
|
20
|
+
testID?: string;
|
|
21
|
+
style?: StyleProp<ViewStyle>;
|
|
22
|
+
}
|
|
23
|
+
declare const TimePicker: React.FC<TimePickerProps>;
|
|
24
|
+
export { TimePicker };
|
|
25
|
+
export default TimePicker;
|
|
26
|
+
//# sourceMappingURL=TimePicker.d.ts.map
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { HapticType } from '../../utils/hapticUtils';
|
|
3
|
+
export type ToastVariant = 'default' | 'success' | 'error' | 'warning' | 'info';
|
|
4
|
+
export type ToastPosition = 'top' | 'bottom';
|
|
5
|
+
export interface ToastAction {
|
|
6
|
+
label: string;
|
|
7
|
+
onPress: () => void;
|
|
8
|
+
}
|
|
9
|
+
export interface ToastOptions {
|
|
10
|
+
message: string;
|
|
11
|
+
description?: string;
|
|
12
|
+
variant?: ToastVariant;
|
|
13
|
+
position?: ToastPosition;
|
|
14
|
+
duration?: number;
|
|
15
|
+
action?: ToastAction;
|
|
16
|
+
haptic?: HapticType | false;
|
|
17
|
+
icon?: React.ReactNode;
|
|
18
|
+
}
|
|
19
|
+
export interface ToastItem extends ToastOptions {
|
|
20
|
+
id: string;
|
|
21
|
+
}
|
|
22
|
+
export interface ToastProps {
|
|
23
|
+
toast: ToastItem;
|
|
24
|
+
index: number;
|
|
25
|
+
onDismiss: (id: string) => void;
|
|
26
|
+
}
|
|
27
|
+
declare const Toast: React.FC<ToastProps>;
|
|
28
|
+
export { Toast };
|
|
29
|
+
export default Toast;
|
|
30
|
+
//# sourceMappingURL=Toast.d.ts.map
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ToastOptions, ToastPosition } from './Toast';
|
|
3
|
+
export interface ToastApi {
|
|
4
|
+
show: (opts: ToastOptions) => string;
|
|
5
|
+
hide: (id: string) => void;
|
|
6
|
+
hideAll: () => void;
|
|
7
|
+
}
|
|
8
|
+
export interface ToastProviderProps {
|
|
9
|
+
children: React.ReactNode;
|
|
10
|
+
maxVisible?: number;
|
|
11
|
+
topOffset?: number;
|
|
12
|
+
bottomOffset?: number;
|
|
13
|
+
}
|
|
14
|
+
export declare const ToastProvider: React.FC<ToastProviderProps>;
|
|
15
|
+
export declare const useToast: () => ToastApi;
|
|
16
|
+
interface ToastGlobal {
|
|
17
|
+
show: (opts: ToastOptions) => string;
|
|
18
|
+
success: (message: string, opts?: Omit<ToastOptions, 'message' | 'variant'>) => string;
|
|
19
|
+
error: (message: string, opts?: Omit<ToastOptions, 'message' | 'variant'>) => string;
|
|
20
|
+
warning: (message: string, opts?: Omit<ToastOptions, 'message' | 'variant'>) => string;
|
|
21
|
+
info: (message: string, opts?: Omit<ToastOptions, 'message' | 'variant'>) => string;
|
|
22
|
+
hideAll: () => void;
|
|
23
|
+
}
|
|
24
|
+
export declare const toast: ToastGlobal;
|
|
25
|
+
export type { ToastPosition };
|
|
26
|
+
//# sourceMappingURL=ToastProvider.d.ts.map
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { Toast, default } from './Toast';
|
|
2
|
+
export type { ToastProps, ToastOptions, ToastItem, ToastVariant, ToastPosition, ToastAction } from './Toast';
|
|
3
|
+
export { ToastProvider, useToast, toast } from './ToastProvider';
|
|
4
|
+
export type { ToastApi, ToastProviderProps } from './ToastProvider';
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
3
|
+
export type TooltipPlacement = 'top' | 'bottom' | 'left' | 'right' | 'auto';
|
|
4
|
+
export type TooltipTrigger = 'longPress' | 'press' | 'manual';
|
|
5
|
+
export interface TooltipProps {
|
|
6
|
+
content: string | React.ReactNode;
|
|
7
|
+
children: React.ReactElement;
|
|
8
|
+
placement?: TooltipPlacement;
|
|
9
|
+
trigger?: TooltipTrigger;
|
|
10
|
+
visible?: boolean;
|
|
11
|
+
onVisibleChange?: (visible: boolean) => void;
|
|
12
|
+
hideOnContentPress?: boolean;
|
|
13
|
+
maxWidth?: number;
|
|
14
|
+
showArrow?: boolean;
|
|
15
|
+
accessibilityLabel?: string;
|
|
16
|
+
style?: StyleProp<ViewStyle>;
|
|
17
|
+
testID?: string;
|
|
18
|
+
}
|
|
19
|
+
declare const Tooltip: React.FC<TooltipProps>;
|
|
20
|
+
export { Tooltip };
|
|
21
|
+
export default Tooltip;
|
|
22
|
+
//# sourceMappingURL=Tooltip.d.ts.map
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
export { Accordion, AccordionGroup } from './Accordion';
|
|
2
|
+
export type { AccordionProps, AccordionGroupProps, AccordionVariant } from './Accordion';
|
|
3
|
+
export { Avatar, AvatarGroup } from './Avatar';
|
|
4
|
+
export type { AvatarProps, AvatarShape, AvatarSize, AvatarStatus, AvatarGroupProps, AvatarGroupSpacing, AvatarGroupOverflowVariant } from './Avatar';
|
|
5
|
+
export { Badge } from './Badge';
|
|
6
|
+
export type { BadgeProps, BadgeAnchor, BadgeTone, BadgeVariant } from './Badge';
|
|
7
|
+
export { Banner } from './Banner';
|
|
8
|
+
export type { BannerProps, BannerVariant, BannerAction } from './Banner';
|
|
9
|
+
export { BottomNavigation } from './BottomNavigation';
|
|
10
|
+
export type { BottomNavigationProps, TabConfig } from './BottomNavigation';
|
|
11
|
+
export { BottomSheet } from './BottomSheet';
|
|
12
|
+
export type { BottomSheetProps, BottomSheetRef } from './BottomSheet';
|
|
13
|
+
export { Button } from './Button';
|
|
14
|
+
export type { ButtonProps, ButtonVariant, ButtonTone, ButtonSize } from './Button';
|
|
15
|
+
export { Card } from './Card';
|
|
16
|
+
export type { CardProps, CardVariant, CardElevation, CardPadding, CardRadius } from './Card';
|
|
17
|
+
export { Carousel } from './Carousel';
|
|
18
|
+
export type { CarouselProps, CarouselRef, PaginationStyle } from './Carousel';
|
|
19
|
+
export { Checkbox } from './Checkbox';
|
|
20
|
+
export type { CheckboxProps, CheckboxSize, CheckboxTone } from './Checkbox';
|
|
21
|
+
export { Chip } from './Chip';
|
|
22
|
+
export type { ChipProps, ChipSize, ChipTone, ChipVariant } from './Chip';
|
|
23
|
+
export { DatePicker } from './DatePicker';
|
|
24
|
+
export type { DatePickerProps, DatePickerMode } from './DatePicker';
|
|
25
|
+
export { DateRangePicker } from './DateRangePicker';
|
|
26
|
+
export type { DateRangePickerProps, DateRange } from './DateRangePicker';
|
|
27
|
+
export { Dialog } from './Dialog';
|
|
28
|
+
export type { DialogProps, DialogAction, DialogVariant } from './Dialog';
|
|
29
|
+
export { Divider } from './Divider';
|
|
30
|
+
export type { DividerProps, DividerOrientation, DividerSpacing } from './Divider';
|
|
31
|
+
export { Drawer } from './Drawer';
|
|
32
|
+
export type { DrawerProps, DrawerRef, DrawerSide } from './Drawer';
|
|
33
|
+
export { EmptyState } from './EmptyState';
|
|
34
|
+
export type { EmptyStateProps, EmptyStateAction, EmptyStateSize } from './EmptyState';
|
|
35
|
+
export { Field } from './Field';
|
|
36
|
+
export type { FieldProps, FieldLayout } from './Field';
|
|
37
|
+
export { FAB, FABGroup } from './FAB';
|
|
38
|
+
export type { FABProps, FABSize, FABTone, FABPosition, FABIconConfig, FABGroupProps, FABGroupAction } from './FAB';
|
|
39
|
+
export { ForceUpdateDialog } from './ForceUpdateDialog';
|
|
40
|
+
export type { ForceUpdateDialogProps } from './ForceUpdateDialog';
|
|
41
|
+
export { Header } from './Header';
|
|
42
|
+
export type { HeaderProps, HeaderAction, HeaderVariant } from './Header';
|
|
43
|
+
export { Icon } from './Icon';
|
|
44
|
+
export type { IconProps, IconFamily, IconSize, IconTone } from './Icon';
|
|
45
|
+
export { ImageGallery } from './ImageGallery';
|
|
46
|
+
export type { ImageGalleryProps, GalleryImage } from './ImageGallery';
|
|
47
|
+
export { Input } from './Input';
|
|
48
|
+
export type { InputProps, InputSize, InputVariant } from './Input';
|
|
49
|
+
export { ListItem } from './ListItem';
|
|
50
|
+
export type { ListItemProps, ListItemSize } from './ListItem';
|
|
51
|
+
export { LoadingSpinner } from './LoadingSpinner';
|
|
52
|
+
export type { LoadingSpinnerProps, LoadingSpinnerSize, LoadingSpinnerVariant } from './LoadingSpinner';
|
|
53
|
+
export { Modal } from './Modal';
|
|
54
|
+
export type { ModalProps, ModalPresentation } from './Modal';
|
|
55
|
+
export { NumberInput } from './NumberInput';
|
|
56
|
+
export type { NumberInputProps, NumberInputRef, NumberInputSize, NumberInputVariant } from './NumberInput';
|
|
57
|
+
export { OTPInput } from './OTPInput';
|
|
58
|
+
export type { OTPInputProps, OTPInputRef, OTPInputSize } from './OTPInput';
|
|
59
|
+
export { ProgressBar } from './ProgressBar';
|
|
60
|
+
export type { ProgressBarProps, ProgressBarTone } from './ProgressBar';
|
|
61
|
+
export { Radio, RadioGroup } from './Radio';
|
|
62
|
+
export type { RadioProps, RadioGroupProps, RadioSize, RadioTone } from './Radio';
|
|
63
|
+
export { Rating } from './Rating';
|
|
64
|
+
export type { RatingProps, RatingTone, RatingSize } from './Rating';
|
|
65
|
+
export { SearchBar } from './SearchBar';
|
|
66
|
+
export type { SearchBarProps, SearchBarSize, SearchBarVariant } from './SearchBar';
|
|
67
|
+
export { SegmentedControl } from './SegmentedControl';
|
|
68
|
+
export type { SegmentedControlProps, SegmentedControlSize, SegmentedControlTone } from './SegmentedControl';
|
|
69
|
+
export { Select } from './Select';
|
|
70
|
+
export type { SelectProps, SelectOption, SelectSize } from './Select';
|
|
71
|
+
export { Stepper } from './Stepper';
|
|
72
|
+
export type { StepperProps, StepperVariant, StepperStep, StepperTone } from './Stepper';
|
|
73
|
+
export { Skeleton, SkeletonAvatar, SkeletonCard, SkeletonCircle, SkeletonContent, SkeletonListItem, SkeletonText } from './SkeletonLoader';
|
|
74
|
+
export type { SkeletonProps, SkeletonAvatarProps, SkeletonCardProps, SkeletonCircleProps, SkeletonContentMode, SkeletonContentProps, SkeletonListItemProps, SkeletonTextProps, SkeletonVariant, SkeletonSpeed } from './SkeletonLoader';
|
|
75
|
+
export { Slider } from './Slider';
|
|
76
|
+
export type { SliderProps, SliderTone, SliderSize } from './Slider';
|
|
77
|
+
export { Swipeable } from './Swipeable';
|
|
78
|
+
export type { SwipeableProps, SwipeableAction, SwipeableTone } from './Swipeable';
|
|
79
|
+
export { Switch } from './Switch';
|
|
80
|
+
export type { SwitchProps, SwitchSize, SwitchTone } from './Switch';
|
|
81
|
+
export { Tabs } from './Tabs';
|
|
82
|
+
export type { TabsProps, TabItem, TabsVariant } from './Tabs';
|
|
83
|
+
export { TimePicker } from './TimePicker';
|
|
84
|
+
export type { TimePickerProps, TimeFormat, TimeValue, MinuteStep, Period } from './TimePicker';
|
|
85
|
+
export { Toast, ToastProvider, useToast, toast } from './Toast';
|
|
86
|
+
export type { ToastProps, ToastProviderProps, ToastOptions, ToastVariant, ToastPosition, ToastApi } from './Toast';
|
|
87
|
+
export { Tooltip } from './Tooltip';
|
|
88
|
+
export type { TooltipProps, TooltipPlacement, TooltipTrigger } from './Tooltip';
|
|
89
|
+
//# sourceMappingURL=index.d.ts.map
|