@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,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Drawer — slide-in side drawer (left / right / top / bottom).
|
|
3
|
+
*
|
|
4
|
+
* Built on Reanimated 3 + Gesture Handler 2 — gestures and animations run on the
|
|
5
|
+
* UI thread for buttery 60/120fps motion. Mirrors the BottomSheet ergonomics:
|
|
6
|
+
* imperative ref API, controlled/uncontrolled visibility, swipe-to-dismiss,
|
|
7
|
+
* tap-backdrop-to-dismiss, full a11y (modal dialog).
|
|
8
|
+
*
|
|
9
|
+
* USAGE:
|
|
10
|
+
*
|
|
11
|
+
* const ref = useRef<DrawerRef>(null);
|
|
12
|
+
* <Drawer ref={ref} side="left" width={300}>
|
|
13
|
+
* <YourMenu />
|
|
14
|
+
* </Drawer>
|
|
15
|
+
*
|
|
16
|
+
* ref.current?.open();
|
|
17
|
+
* ref.current?.close();
|
|
18
|
+
* ref.current?.toggle();
|
|
19
|
+
*/
|
|
20
|
+
import React from 'react';
|
|
21
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
22
|
+
export type DrawerSide = 'left' | 'right' | 'top' | 'bottom';
|
|
23
|
+
export interface DrawerProps {
|
|
24
|
+
/** Controlled visibility. Omit to use internal state. */
|
|
25
|
+
visible?: boolean;
|
|
26
|
+
/** Initial visibility for uncontrolled usage. */
|
|
27
|
+
defaultVisible?: boolean;
|
|
28
|
+
/** Fired whenever the drawer transitions open/closed. */
|
|
29
|
+
onChange?: (visible: boolean) => void;
|
|
30
|
+
/** Edge the drawer slides in from. */
|
|
31
|
+
side?: DrawerSide;
|
|
32
|
+
/** Drawer dimension along the slide axis (width for left/right, height for top/bottom). */
|
|
33
|
+
width?: number | `${number}%`;
|
|
34
|
+
/** Allow drag-to-dismiss in the natural close direction. */
|
|
35
|
+
enableSwipe?: boolean;
|
|
36
|
+
/** Allow tapping the backdrop to dismiss. */
|
|
37
|
+
enableBackdropPress?: boolean;
|
|
38
|
+
/** Backdrop opacity at fully-open state (0..1). */
|
|
39
|
+
backdropOpacity?: number;
|
|
40
|
+
containerStyle?: StyleProp<ViewStyle>;
|
|
41
|
+
children?: React.ReactNode;
|
|
42
|
+
accessibilityLabel?: string;
|
|
43
|
+
testID?: string;
|
|
44
|
+
}
|
|
45
|
+
export interface DrawerRef {
|
|
46
|
+
open: () => void;
|
|
47
|
+
close: () => void;
|
|
48
|
+
toggle: () => void;
|
|
49
|
+
}
|
|
50
|
+
declare const Drawer: React.ForwardRefExoticComponent<DrawerProps & React.RefAttributes<DrawerRef>>;
|
|
51
|
+
export { Drawer };
|
|
52
|
+
export default Drawer;
|
|
53
|
+
//# sourceMappingURL=Drawer.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 EmptyStateSize = 'sm' | 'md' | 'lg';
|
|
5
|
+
export interface EmptyStateAction {
|
|
6
|
+
label: string;
|
|
7
|
+
onPress: () => void;
|
|
8
|
+
accessibilityLabel?: string;
|
|
9
|
+
accessibilityHint?: string;
|
|
10
|
+
testID?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface EmptyStateProps {
|
|
13
|
+
icon?: React.ReactNode;
|
|
14
|
+
title: string;
|
|
15
|
+
description?: string;
|
|
16
|
+
action?: EmptyStateAction;
|
|
17
|
+
secondaryAction?: EmptyStateAction;
|
|
18
|
+
size?: EmptyStateSize;
|
|
19
|
+
style?: StyleProp<ViewStyle>;
|
|
20
|
+
testID?: string;
|
|
21
|
+
}
|
|
22
|
+
declare const EmptyState: React.ForwardRefExoticComponent<EmptyStateProps & React.RefAttributes<View>>;
|
|
23
|
+
export { EmptyState };
|
|
24
|
+
export default EmptyState;
|
|
25
|
+
//# sourceMappingURL=EmptyState.d.ts.map
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from 'react-native';
|
|
3
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
4
|
+
import type { IconFamily } from '../Icon';
|
|
5
|
+
export type FABSize = 'sm' | 'md' | 'lg';
|
|
6
|
+
export type FABTone = 'primary' | 'success' | 'warning' | 'error' | 'neutral';
|
|
7
|
+
export type FABPosition = 'bottomRight' | 'bottomLeft' | 'bottomCenter';
|
|
8
|
+
export interface FABIconConfig {
|
|
9
|
+
name: string;
|
|
10
|
+
family?: IconFamily;
|
|
11
|
+
}
|
|
12
|
+
export interface FABProps {
|
|
13
|
+
icon: React.ReactNode | FABIconConfig;
|
|
14
|
+
onPress: () => void;
|
|
15
|
+
label?: string;
|
|
16
|
+
size?: FABSize;
|
|
17
|
+
tone?: FABTone;
|
|
18
|
+
position?: FABPosition;
|
|
19
|
+
bottomOffset?: number;
|
|
20
|
+
disabled?: boolean;
|
|
21
|
+
hideOnScroll?: boolean;
|
|
22
|
+
isScrolling?: boolean;
|
|
23
|
+
accessibilityLabel: string;
|
|
24
|
+
accessibilityHint?: string;
|
|
25
|
+
style?: StyleProp<ViewStyle>;
|
|
26
|
+
testID?: string;
|
|
27
|
+
}
|
|
28
|
+
declare const FAB: React.ForwardRefExoticComponent<FABProps & React.RefAttributes<View>>;
|
|
29
|
+
export interface FABGroupAction {
|
|
30
|
+
key: string;
|
|
31
|
+
icon: React.ReactNode;
|
|
32
|
+
label?: string;
|
|
33
|
+
onPress: () => void;
|
|
34
|
+
tone?: FABTone;
|
|
35
|
+
accessibilityLabel: string;
|
|
36
|
+
}
|
|
37
|
+
export interface FABGroupProps {
|
|
38
|
+
primaryIcon: React.ReactNode;
|
|
39
|
+
primaryActiveIcon?: React.ReactNode;
|
|
40
|
+
actions: FABGroupAction[];
|
|
41
|
+
open?: boolean;
|
|
42
|
+
defaultOpen?: boolean;
|
|
43
|
+
onOpenChange?: (open: boolean) => void;
|
|
44
|
+
position?: FABPosition;
|
|
45
|
+
bottomOffset?: number;
|
|
46
|
+
size?: FABSize;
|
|
47
|
+
accessibilityLabel?: string;
|
|
48
|
+
testID?: string;
|
|
49
|
+
}
|
|
50
|
+
declare const FABGroup: React.FC<FABGroupProps>;
|
|
51
|
+
export { FAB, FABGroup };
|
|
52
|
+
export default FAB;
|
|
53
|
+
//# sourceMappingURL=FAB.d.ts.map
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from 'react-native';
|
|
3
|
+
import type { StyleProp, TextStyle, ViewStyle } from 'react-native';
|
|
4
|
+
export type FieldLayout = 'stacked' | 'inline';
|
|
5
|
+
export interface FieldProps {
|
|
6
|
+
label?: string;
|
|
7
|
+
helperText?: string;
|
|
8
|
+
/**
|
|
9
|
+
* When truthy: helperText is hidden, error is shown in the error colour,
|
|
10
|
+
* and the container reports `accessibilityState.invalid = true`.
|
|
11
|
+
*/
|
|
12
|
+
error?: string;
|
|
13
|
+
/** Appends ' *' (in theme.colors.error) to the label. */
|
|
14
|
+
required?: boolean;
|
|
15
|
+
children: React.ReactNode;
|
|
16
|
+
/** 'stacked' (default): label above input. 'inline': label left, input right. */
|
|
17
|
+
layout?: FieldLayout;
|
|
18
|
+
labelStyle?: StyleProp<TextStyle>;
|
|
19
|
+
helperStyle?: StyleProp<TextStyle>;
|
|
20
|
+
errorStyle?: StyleProp<TextStyle>;
|
|
21
|
+
containerStyle?: StyleProp<ViewStyle>;
|
|
22
|
+
accessibilityLabel?: string;
|
|
23
|
+
testID?: string;
|
|
24
|
+
}
|
|
25
|
+
declare const Field: React.ForwardRefExoticComponent<FieldProps & React.RefAttributes<View>>;
|
|
26
|
+
export { Field };
|
|
27
|
+
export default Field;
|
|
28
|
+
//# sourceMappingURL=Field.d.ts.map
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface ForceUpdateDialogProps {
|
|
3
|
+
/** Whether the dialog is visible. */
|
|
4
|
+
visible: boolean;
|
|
5
|
+
/** Called when the dialog is dismissed (only fired when `mandatory` is `false`). */
|
|
6
|
+
onClose?: () => void;
|
|
7
|
+
/**
|
|
8
|
+
* If `true`, hides the "Later" action and disables backdrop dismissal —
|
|
9
|
+
* use this for major version bumps that must not be skipped.
|
|
10
|
+
*/
|
|
11
|
+
mandatory?: boolean;
|
|
12
|
+
/** Optional override of the destination URL (defaults to the platform store). */
|
|
13
|
+
updateUrl?: string | null;
|
|
14
|
+
/** Custom dialog title. */
|
|
15
|
+
title?: string;
|
|
16
|
+
/** Custom dialog message. */
|
|
17
|
+
message?: string;
|
|
18
|
+
/** Custom label for the primary "Update" action. */
|
|
19
|
+
updateLabel?: string;
|
|
20
|
+
/** Custom label for the dismiss action. Hidden when `mandatory`. */
|
|
21
|
+
laterLabel?: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Drop-in update prompt that opens the App Store / Play Store on tap.
|
|
25
|
+
* Pair this with `useVersionCheck()` — render it when `isUpdateRequired` is true.
|
|
26
|
+
*
|
|
27
|
+
* @example
|
|
28
|
+
* const { isUpdateRequired, updateUrl } = useVersionCheck(isAppReady);
|
|
29
|
+
* return (
|
|
30
|
+
* <ForceUpdateDialog
|
|
31
|
+
* visible={isUpdateRequired}
|
|
32
|
+
* mandatory
|
|
33
|
+
* updateUrl={updateUrl}
|
|
34
|
+
* />
|
|
35
|
+
* );
|
|
36
|
+
*/
|
|
37
|
+
export declare const ForceUpdateDialog: React.FC<ForceUpdateDialogProps>;
|
|
38
|
+
export default ForceUpdateDialog;
|
|
39
|
+
//# sourceMappingURL=ForceUpdateDialog.d.ts.map
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Animated, View } from 'react-native';
|
|
3
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
4
|
+
export type HeaderVariant = 'default' | 'large' | 'compact';
|
|
5
|
+
export type HeaderTitleAlignment = 'left' | 'center';
|
|
6
|
+
export interface HeaderAction {
|
|
7
|
+
icon: React.ReactNode;
|
|
8
|
+
onPress: () => void;
|
|
9
|
+
accessibilityLabel?: string;
|
|
10
|
+
testID?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface HeaderRightAction extends HeaderAction {
|
|
13
|
+
badge?: number | string;
|
|
14
|
+
}
|
|
15
|
+
export interface HeaderProps {
|
|
16
|
+
title?: string;
|
|
17
|
+
subtitle?: string;
|
|
18
|
+
titleAlignment?: HeaderTitleAlignment;
|
|
19
|
+
leftAction?: HeaderAction;
|
|
20
|
+
rightActions?: HeaderRightAction[];
|
|
21
|
+
variant?: HeaderVariant;
|
|
22
|
+
transparent?: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* Optional ScrollView vertical offset (Animated.Value) used to drive the
|
|
25
|
+
* "collapsing app bar" effect when `variant='large'`. As `scrollY` moves
|
|
26
|
+
* from 0 → 60, the large title shrinks/translates into the compact bar
|
|
27
|
+
* area and a bottom hairline border fades in.
|
|
28
|
+
*/
|
|
29
|
+
scrollY?: Animated.Value | Animated.AnimatedInterpolation<number>;
|
|
30
|
+
style?: StyleProp<ViewStyle>;
|
|
31
|
+
testID?: string;
|
|
32
|
+
}
|
|
33
|
+
declare const Header: React.ForwardRefExoticComponent<HeaderProps & React.RefAttributes<View>>;
|
|
34
|
+
export { Header };
|
|
35
|
+
export default Header;
|
|
36
|
+
//# sourceMappingURL=Header.d.ts.map
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from 'react-native';
|
|
3
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
4
|
+
export type IconFamily = 'feather' | 'material-community' | 'material' | 'ionicons';
|
|
5
|
+
export type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | number;
|
|
6
|
+
export type IconTone = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info' | 'muted';
|
|
7
|
+
export interface IconProps {
|
|
8
|
+
name: string;
|
|
9
|
+
family?: IconFamily;
|
|
10
|
+
size?: IconSize;
|
|
11
|
+
color?: string;
|
|
12
|
+
tone?: IconTone;
|
|
13
|
+
style?: StyleProp<ViewStyle>;
|
|
14
|
+
accessibilityLabel?: string;
|
|
15
|
+
testID?: string;
|
|
16
|
+
}
|
|
17
|
+
declare const Icon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<View>>;
|
|
18
|
+
export { Icon };
|
|
19
|
+
export default Icon;
|
|
20
|
+
//# sourceMappingURL=Icon.d.ts.map
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ImageGallery — themed gallery built on top of Carousel.
|
|
3
|
+
*
|
|
4
|
+
* Base view: a Carousel of cover-fitted images with optional thumbnails strip
|
|
5
|
+
* and counter pill. Tapping an image opens a fullscreen Lightbox that re-uses
|
|
6
|
+
* the Carousel for swiping but layers Reanimated 3 pinch-to-zoom + pan gestures
|
|
7
|
+
* on top so the active image can be inspected at up to 4x magnification.
|
|
8
|
+
*
|
|
9
|
+
* USAGE:
|
|
10
|
+
*
|
|
11
|
+
* <ImageGallery
|
|
12
|
+
* images={[
|
|
13
|
+
* { source: { uri: 'https://...' }, caption: 'Sunset' },
|
|
14
|
+
* { source: { uri: 'https://...' }, alt: 'Tower at dusk' }
|
|
15
|
+
* ]}
|
|
16
|
+
* initialIndex={0}
|
|
17
|
+
* />
|
|
18
|
+
*/
|
|
19
|
+
import React from 'react';
|
|
20
|
+
import type { ImageSourcePropType, StyleProp, ViewStyle } from 'react-native';
|
|
21
|
+
export interface GalleryImage {
|
|
22
|
+
source: ImageSourcePropType;
|
|
23
|
+
caption?: string;
|
|
24
|
+
alt?: string;
|
|
25
|
+
}
|
|
26
|
+
export interface ImageGalleryProps {
|
|
27
|
+
images: GalleryImage[];
|
|
28
|
+
initialIndex?: number;
|
|
29
|
+
showThumbnails?: boolean;
|
|
30
|
+
showCounter?: boolean;
|
|
31
|
+
enableLightbox?: boolean;
|
|
32
|
+
enablePinchZoom?: boolean;
|
|
33
|
+
onIndexChange?: (idx: number) => void;
|
|
34
|
+
accessibilityLabel?: string;
|
|
35
|
+
containerStyle?: StyleProp<ViewStyle>;
|
|
36
|
+
testID?: string;
|
|
37
|
+
}
|
|
38
|
+
declare const ImageGallery: React.FC<ImageGalleryProps>;
|
|
39
|
+
export { ImageGallery };
|
|
40
|
+
export default ImageGallery;
|
|
41
|
+
//# sourceMappingURL=ImageGallery.d.ts.map
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { TextInput } from 'react-native';
|
|
3
|
+
import type { BlurEvent, FocusEvent, StyleProp, TextInputProps, TextStyle, ViewStyle } from 'react-native';
|
|
4
|
+
export type InputSize = 'sm' | 'md' | 'lg';
|
|
5
|
+
export type InputVariant = 'outlined' | 'filled';
|
|
6
|
+
export interface InputProps extends Omit<TextInputProps, 'style'> {
|
|
7
|
+
label?: string;
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
value?: string;
|
|
10
|
+
onChangeText?: (text: string) => void;
|
|
11
|
+
error?: string;
|
|
12
|
+
helperText?: string;
|
|
13
|
+
secureTextEntry?: boolean;
|
|
14
|
+
showPasswordToggle?: boolean;
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
multiline?: boolean;
|
|
17
|
+
leftIcon?: React.ReactNode;
|
|
18
|
+
rightIcon?: React.ReactNode;
|
|
19
|
+
size?: InputSize;
|
|
20
|
+
variant?: InputVariant;
|
|
21
|
+
required?: boolean;
|
|
22
|
+
maxLength?: number;
|
|
23
|
+
style?: StyleProp<ViewStyle>;
|
|
24
|
+
inputStyle?: StyleProp<TextStyle>;
|
|
25
|
+
labelStyle?: StyleProp<TextStyle>;
|
|
26
|
+
onFocus?: (e: FocusEvent) => void;
|
|
27
|
+
onBlur?: (e: BlurEvent) => void;
|
|
28
|
+
accessibilityLabel?: string;
|
|
29
|
+
testID?: string;
|
|
30
|
+
}
|
|
31
|
+
declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<TextInput>>;
|
|
32
|
+
export { Input };
|
|
33
|
+
export default Input;
|
|
34
|
+
//# sourceMappingURL=Input.d.ts.map
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from 'react-native';
|
|
3
|
+
import type { GestureResponderEvent, StyleProp, ViewStyle } from 'react-native';
|
|
4
|
+
import type { SwipeableAction } from '../Swipeable';
|
|
5
|
+
export type ListItemSize = 'sm' | 'md' | 'lg';
|
|
6
|
+
export interface ListItemProps {
|
|
7
|
+
title: string;
|
|
8
|
+
subtitle?: string;
|
|
9
|
+
description?: string;
|
|
10
|
+
left?: React.ReactNode;
|
|
11
|
+
right?: React.ReactNode;
|
|
12
|
+
onPress?: (event: GestureResponderEvent) => void;
|
|
13
|
+
selected?: boolean;
|
|
14
|
+
disabled?: boolean;
|
|
15
|
+
size?: ListItemSize;
|
|
16
|
+
divider?: boolean;
|
|
17
|
+
chevron?: boolean;
|
|
18
|
+
/** Optional swipe-from-left actions. Wraps the row in a Swipeable when provided. */
|
|
19
|
+
leftActions?: SwipeableAction[];
|
|
20
|
+
/** Optional swipe-from-right actions. Wraps the row in a Swipeable when provided. */
|
|
21
|
+
rightActions?: SwipeableAction[];
|
|
22
|
+
accessibilityLabel?: string;
|
|
23
|
+
accessibilityHint?: string;
|
|
24
|
+
style?: StyleProp<ViewStyle>;
|
|
25
|
+
testID?: string;
|
|
26
|
+
}
|
|
27
|
+
declare const ListItem: React.ForwardRefExoticComponent<ListItemProps & React.RefAttributes<View>>;
|
|
28
|
+
export { ListItem };
|
|
29
|
+
export default ListItem;
|
|
30
|
+
//# sourceMappingURL=ListItem.d.ts.map
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from 'react-native';
|
|
3
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
4
|
+
export type LoadingSpinnerSize = 'small' | 'medium' | 'large';
|
|
5
|
+
export type LoadingSpinnerVariant = 'circular' | 'dots';
|
|
6
|
+
export interface LoadingSpinnerProps {
|
|
7
|
+
size?: LoadingSpinnerSize;
|
|
8
|
+
color?: string;
|
|
9
|
+
message?: string;
|
|
10
|
+
overlay?: boolean;
|
|
11
|
+
backdropColor?: string;
|
|
12
|
+
variant?: LoadingSpinnerVariant;
|
|
13
|
+
accessibilityLabel?: string;
|
|
14
|
+
style?: StyleProp<ViewStyle>;
|
|
15
|
+
testID?: string;
|
|
16
|
+
}
|
|
17
|
+
declare const LoadingSpinner: React.ForwardRefExoticComponent<LoadingSpinnerProps & React.RefAttributes<View>>;
|
|
18
|
+
export { LoadingSpinner };
|
|
19
|
+
export default LoadingSpinner;
|
|
20
|
+
//# sourceMappingURL=LoadingSpinner.d.ts.map
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from 'react-native';
|
|
3
|
+
import type { StyleProp, View as RNView, ViewStyle } from 'react-native';
|
|
4
|
+
export type ModalPresentation = 'centered' | 'bottom' | 'fullScreen';
|
|
5
|
+
export interface ModalProps {
|
|
6
|
+
visible: boolean;
|
|
7
|
+
onRequestClose: () => void;
|
|
8
|
+
presentation?: ModalPresentation;
|
|
9
|
+
backdropOpacity?: number;
|
|
10
|
+
backdropPressClose?: boolean;
|
|
11
|
+
animationDuration?: number;
|
|
12
|
+
accessibilityLabel?: string;
|
|
13
|
+
hardwareBackPress?: boolean;
|
|
14
|
+
children: React.ReactNode;
|
|
15
|
+
contentStyle?: StyleProp<ViewStyle>;
|
|
16
|
+
backdropStyle?: StyleProp<ViewStyle>;
|
|
17
|
+
/**
|
|
18
|
+
* Optional ref to the View that triggered the modal. When the modal closes,
|
|
19
|
+
* accessibility focus is restored to that View so screen-reader users land
|
|
20
|
+
* back where they invoked the dialog instead of at the top of the screen.
|
|
21
|
+
* Opt-in: when undefined, focus behaviour is unchanged.
|
|
22
|
+
*/
|
|
23
|
+
restoreFocusRef?: React.RefObject<RNView | null>;
|
|
24
|
+
testID?: string;
|
|
25
|
+
}
|
|
26
|
+
declare const Modal: React.ForwardRefExoticComponent<ModalProps & React.RefAttributes<View>>;
|
|
27
|
+
export { Modal };
|
|
28
|
+
export default Modal;
|
|
29
|
+
//# sourceMappingURL=Modal.d.ts.map
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { StyleProp, TextInputProps, TextStyle, ViewStyle } from 'react-native';
|
|
3
|
+
export type NumberInputSize = 'sm' | 'md' | 'lg';
|
|
4
|
+
export type NumberInputVariant = 'inline' | 'horizontal' | 'stacked';
|
|
5
|
+
export interface NumberInputRef {
|
|
6
|
+
focus: () => void;
|
|
7
|
+
blur: () => void;
|
|
8
|
+
clear: () => void;
|
|
9
|
+
}
|
|
10
|
+
export interface NumberInputProps {
|
|
11
|
+
value: number;
|
|
12
|
+
onChange: (value: number) => void;
|
|
13
|
+
min?: number;
|
|
14
|
+
max?: number;
|
|
15
|
+
step?: number;
|
|
16
|
+
allowDecimal?: boolean;
|
|
17
|
+
precision?: number;
|
|
18
|
+
label?: string;
|
|
19
|
+
helperText?: string;
|
|
20
|
+
error?: string;
|
|
21
|
+
disabled?: boolean;
|
|
22
|
+
size?: NumberInputSize;
|
|
23
|
+
variant?: NumberInputVariant;
|
|
24
|
+
unit?: string;
|
|
25
|
+
accessibilityLabel?: string;
|
|
26
|
+
style?: StyleProp<ViewStyle>;
|
|
27
|
+
inputStyle?: StyleProp<TextStyle>;
|
|
28
|
+
labelStyle?: StyleProp<TextStyle>;
|
|
29
|
+
textInputProps?: Omit<TextInputProps, 'value' | 'onChangeText' | 'onBlur' | 'keyboardType' | 'editable'>;
|
|
30
|
+
testID?: string;
|
|
31
|
+
}
|
|
32
|
+
declare const NumberInput: React.ForwardRefExoticComponent<NumberInputProps & React.RefAttributes<NumberInputRef>>;
|
|
33
|
+
export { NumberInput };
|
|
34
|
+
export default NumberInput;
|
|
35
|
+
//# sourceMappingURL=NumberInput.d.ts.map
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { StyleProp, TextStyle, ViewStyle } from 'react-native';
|
|
3
|
+
export type OTPInputSize = 'sm' | 'md' | 'lg';
|
|
4
|
+
export interface OTPInputRef {
|
|
5
|
+
focus: () => void;
|
|
6
|
+
blur: () => void;
|
|
7
|
+
clear: () => void;
|
|
8
|
+
}
|
|
9
|
+
export interface OTPInputProps {
|
|
10
|
+
value: string;
|
|
11
|
+
onChange: (value: string) => void;
|
|
12
|
+
onComplete?: (value: string) => void;
|
|
13
|
+
length?: number;
|
|
14
|
+
keyboardType?: 'number-pad' | 'default';
|
|
15
|
+
autoFocus?: boolean;
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
error?: boolean | string;
|
|
18
|
+
size?: OTPInputSize;
|
|
19
|
+
secure?: boolean;
|
|
20
|
+
accessibilityLabel?: string;
|
|
21
|
+
style?: StyleProp<ViewStyle>;
|
|
22
|
+
cellStyle?: StyleProp<ViewStyle>;
|
|
23
|
+
textStyle?: StyleProp<TextStyle>;
|
|
24
|
+
testID?: string;
|
|
25
|
+
}
|
|
26
|
+
declare const OTPInput: React.ForwardRefExoticComponent<OTPInputProps & React.RefAttributes<OTPInputRef>>;
|
|
27
|
+
export { OTPInput };
|
|
28
|
+
export default OTPInput;
|
|
29
|
+
//# sourceMappingURL=OTPInput.d.ts.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from 'react-native';
|
|
3
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
4
|
+
export type ProgressBarTone = 'primary' | 'success' | 'warning' | 'error';
|
|
5
|
+
export interface ProgressBarProps {
|
|
6
|
+
progress?: number;
|
|
7
|
+
indeterminate?: boolean;
|
|
8
|
+
height?: number;
|
|
9
|
+
radius?: number;
|
|
10
|
+
tone?: ProgressBarTone;
|
|
11
|
+
trackColor?: string;
|
|
12
|
+
barColor?: string;
|
|
13
|
+
animated?: boolean;
|
|
14
|
+
style?: StyleProp<ViewStyle>;
|
|
15
|
+
accessibilityLabel?: string;
|
|
16
|
+
testID?: string;
|
|
17
|
+
}
|
|
18
|
+
declare const ProgressBar: React.ForwardRefExoticComponent<ProgressBarProps & React.RefAttributes<View>>;
|
|
19
|
+
export { ProgressBar };
|
|
20
|
+
export default ProgressBar;
|
|
21
|
+
//# sourceMappingURL=ProgressBar.d.ts.map
|
|
@@ -0,0 +1,32 @@
|
|
|
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 RadioSize = 'sm' | 'md' | 'lg';
|
|
6
|
+
export type RadioTone = 'primary' | 'success' | 'warning' | 'error';
|
|
7
|
+
export type RadioValue = string | number;
|
|
8
|
+
export interface RadioGroupContextValue {
|
|
9
|
+
selectedValue: RadioValue | undefined;
|
|
10
|
+
onSelect: (value: RadioValue) => void;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare const RadioGroupContext: React.Context<RadioGroupContextValue | null>;
|
|
14
|
+
export declare const useRadioGroup: () => RadioGroupContextValue | null;
|
|
15
|
+
export interface RadioProps extends Omit<PressableProps, 'style' | 'children' | 'onPress'> {
|
|
16
|
+
value: RadioValue;
|
|
17
|
+
selected?: boolean;
|
|
18
|
+
onSelect?: (value: RadioValue) => void;
|
|
19
|
+
disabled?: boolean;
|
|
20
|
+
label?: string;
|
|
21
|
+
size?: RadioSize;
|
|
22
|
+
tone?: RadioTone;
|
|
23
|
+
accessibilityLabel?: string;
|
|
24
|
+
haptic?: HapticType | false;
|
|
25
|
+
style?: StyleProp<ViewStyle>;
|
|
26
|
+
circleStyle?: StyleProp<ViewStyle>;
|
|
27
|
+
testID?: string;
|
|
28
|
+
}
|
|
29
|
+
declare const Radio: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<View>>;
|
|
30
|
+
export { Radio };
|
|
31
|
+
export default Radio;
|
|
32
|
+
//# sourceMappingURL=Radio.d.ts.map
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
3
|
+
import type { RadioValue } from './Radio';
|
|
4
|
+
export interface RadioGroupProps {
|
|
5
|
+
value: RadioValue;
|
|
6
|
+
onChange: (value: RadioValue) => void;
|
|
7
|
+
children: React.ReactNode;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
accessibilityLabel?: string;
|
|
10
|
+
style?: StyleProp<ViewStyle>;
|
|
11
|
+
testID?: string;
|
|
12
|
+
}
|
|
13
|
+
declare const RadioGroup: React.FC<RadioGroupProps>;
|
|
14
|
+
export { RadioGroup };
|
|
15
|
+
export default RadioGroup;
|
|
16
|
+
//# sourceMappingURL=RadioGroup.d.ts.map
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { Radio, default, useRadioGroup, RadioGroupContext } from './Radio';
|
|
2
|
+
export type { RadioProps, RadioSize, RadioTone, RadioValue, RadioGroupContextValue } from './Radio';
|
|
3
|
+
export { RadioGroup } from './RadioGroup';
|
|
4
|
+
export type { RadioGroupProps } from './RadioGroup';
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|