@webority-technologies/mobile-ui 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 +15 -0
- package/lib/commonjs/components/Accordion/Accordion.js +331 -0
- package/lib/commonjs/components/Accordion/index.js +26 -0
- package/lib/commonjs/components/AnimatePresence/AnimatePresence.js +71 -0
- package/lib/commonjs/components/AnimatePresence/index.js +13 -0
- package/lib/commonjs/components/AppBar/AppBar.js +355 -0
- package/lib/commonjs/components/AppBar/index.js +20 -0
- package/lib/commonjs/components/AsyncBlock/AsyncBlock.js +87 -0
- package/lib/commonjs/components/AsyncBlock/index.js +20 -0
- package/lib/commonjs/components/Autocomplete/Autocomplete.js +225 -0
- package/lib/commonjs/components/Autocomplete/index.js +13 -0
- package/lib/commonjs/components/Avatar/Avatar.js +348 -0
- package/lib/commonjs/components/Avatar/index.js +26 -0
- package/lib/commonjs/components/Badge/Badge.js +295 -0
- package/lib/commonjs/components/Badge/index.js +20 -0
- package/lib/commonjs/components/Banner/Banner.js +395 -0
- package/lib/commonjs/components/Banner/index.js +20 -0
- package/lib/commonjs/components/BottomNavigation/BottomNavigation.js +336 -0
- package/lib/commonjs/components/BottomNavigation/index.js +20 -0
- package/lib/commonjs/components/BottomSheet/BottomSheet.js +558 -0
- package/lib/commonjs/components/BottomSheet/index.js +26 -0
- package/lib/commonjs/components/Box/Box.js +204 -0
- package/lib/commonjs/components/Box/index.js +37 -0
- package/lib/commonjs/components/Button/Button.js +316 -0
- package/lib/commonjs/components/Button/index.js +20 -0
- package/lib/commonjs/components/Card/Card.js +314 -0
- package/lib/commonjs/components/Card/index.js +20 -0
- package/lib/commonjs/components/Carousel/Carousel.js +582 -0
- package/lib/commonjs/components/Carousel/index.js +20 -0
- package/lib/commonjs/components/Checkbox/Checkbox.js +184 -0
- package/lib/commonjs/components/Checkbox/index.js +20 -0
- package/lib/commonjs/components/Chip/Chip.js +347 -0
- package/lib/commonjs/components/Chip/index.js +20 -0
- package/lib/commonjs/components/ChoiceGroup/ChoiceGroup.js +250 -0
- package/lib/commonjs/components/ChoiceGroup/index.js +20 -0
- package/lib/commonjs/components/Confetti/Confetti.js +177 -0
- package/lib/commonjs/components/Confetti/index.js +13 -0
- package/lib/commonjs/components/DatePicker/DatePicker.js +995 -0
- package/lib/commonjs/components/DatePicker/index.js +20 -0
- package/lib/commonjs/components/DateRangePicker/DateRangePicker.js +745 -0
- package/lib/commonjs/components/DateRangePicker/index.js +20 -0
- package/lib/commonjs/components/Descriptions/Descriptions.js +107 -0
- package/lib/commonjs/components/Descriptions/index.js +20 -0
- package/lib/commonjs/components/Dialog/Dialog.js +245 -0
- package/lib/commonjs/components/Dialog/index.js +20 -0
- package/lib/commonjs/components/Divider/Divider.js +117 -0
- package/lib/commonjs/components/Divider/index.js +20 -0
- package/lib/commonjs/components/Drawer/Drawer.js +379 -0
- package/lib/commonjs/components/Drawer/index.js +20 -0
- package/lib/commonjs/components/EmptyState/EmptyState.js +207 -0
- package/lib/commonjs/components/EmptyState/index.js +20 -0
- package/lib/commonjs/components/FieldBase/Chevron.js +81 -0
- package/lib/commonjs/components/FieldBase/FieldBase.js +521 -0
- package/lib/commonjs/components/FieldBase/index.js +38 -0
- package/lib/commonjs/components/FilePicker/FilePicker.js +783 -0
- package/lib/commonjs/components/FilePicker/index.js +26 -0
- package/lib/commonjs/components/FloatingActionButton/FloatingActionButton.js +517 -0
- package/lib/commonjs/components/FloatingActionButton/index.js +26 -0
- package/lib/commonjs/components/ForceUpdateDialog/ForceUpdateDialog.js +90 -0
- package/lib/commonjs/components/ForceUpdateDialog/index.js +20 -0
- package/lib/commonjs/components/FormField/FormField.js +162 -0
- package/lib/commonjs/components/FormField/index.js +20 -0
- package/lib/commonjs/components/IconButton/IconButton.js +180 -0
- package/lib/commonjs/components/IconButton/index.js +13 -0
- package/lib/commonjs/components/ImageGallery/ImageGallery.js +581 -0
- package/lib/commonjs/components/ImageGallery/index.js +20 -0
- package/lib/commonjs/components/InlineSelect/InlineSelect.js +178 -0
- package/lib/commonjs/components/InlineSelect/index.js +20 -0
- package/lib/commonjs/components/Input/Input.js +402 -0
- package/lib/commonjs/components/Input/index.js +20 -0
- package/lib/commonjs/components/KeyboardAwareScrollView/KeyboardAwareScrollView.js +115 -0
- package/lib/commonjs/components/KeyboardAwareScrollView/index.js +13 -0
- package/lib/commonjs/components/KeyboardToolbar/KeyboardToolbar.js +135 -0
- package/lib/commonjs/components/KeyboardToolbar/index.js +13 -0
- package/lib/commonjs/components/ListItem/ListItem.js +338 -0
- package/lib/commonjs/components/ListItem/index.js +20 -0
- package/lib/commonjs/components/Modal/Modal.js +356 -0
- package/lib/commonjs/components/Modal/index.js +26 -0
- package/lib/commonjs/components/NumberInput/NumberInput.js +381 -0
- package/lib/commonjs/components/NumberInput/index.js +20 -0
- package/lib/commonjs/components/OTPInput/OTPInput.js +441 -0
- package/lib/commonjs/components/OTPInput/index.js +20 -0
- package/lib/commonjs/components/OptionSheet/OptionSheet.js +450 -0
- package/lib/commonjs/components/PhoneNumberInput/PhoneNumberInput.js +243 -0
- package/lib/commonjs/components/PhoneNumberInput/index.js +32 -0
- package/lib/commonjs/components/PickerTrigger/PickerTrigger.js +156 -0
- package/lib/commonjs/components/PickerTrigger/index.js +20 -0
- package/lib/commonjs/components/ProgressBar/ProgressBar.js +198 -0
- package/lib/commonjs/components/ProgressBar/index.js +20 -0
- package/lib/commonjs/components/Radio/Radio.js +117 -0
- package/lib/commonjs/components/Radio/RadioDot.js +105 -0
- package/lib/commonjs/components/Radio/RadioGroup.js +50 -0
- package/lib/commonjs/components/Radio/index.js +46 -0
- package/lib/commonjs/components/Rating/Rating.js +333 -0
- package/lib/commonjs/components/Rating/index.js +20 -0
- package/lib/commonjs/components/Repeater/Repeater.js +141 -0
- package/lib/commonjs/components/Repeater/index.js +20 -0
- package/lib/commonjs/components/SearchBar/SearchBar.js +284 -0
- package/lib/commonjs/components/SearchBar/index.js +20 -0
- package/lib/commonjs/components/SegmentedControl/SegmentedControl.js +209 -0
- package/lib/commonjs/components/SegmentedControl/index.js +20 -0
- package/lib/commonjs/components/Select/Select.js +270 -0
- package/lib/commonjs/components/Select/index.js +20 -0
- package/lib/commonjs/components/Skeleton/Skeleton.js +293 -0
- package/lib/commonjs/components/Skeleton/SkeletonClock.js +118 -0
- package/lib/commonjs/components/Skeleton/SkeletonContent.js +309 -0
- package/lib/commonjs/components/Skeleton/SkeletonList.js +92 -0
- package/lib/commonjs/components/Skeleton/SkeletonProvider.js +114 -0
- package/lib/commonjs/components/Skeleton/SkeletonSkip.js +37 -0
- package/lib/commonjs/components/Skeleton/index.js +85 -0
- package/lib/commonjs/components/SlideToConfirm/SlideToConfirm.js +258 -0
- package/lib/commonjs/components/SlideToConfirm/index.js +13 -0
- package/lib/commonjs/components/Slider/Slider.js +502 -0
- package/lib/commonjs/components/Slider/index.js +20 -0
- package/lib/commonjs/components/Spinner/Spinner.js +183 -0
- package/lib/commonjs/components/Spinner/index.js +20 -0
- package/lib/commonjs/components/Stepper/Stepper.js +595 -0
- package/lib/commonjs/components/Stepper/index.js +20 -0
- package/lib/commonjs/components/Swipeable/Swipeable.js +380 -0
- package/lib/commonjs/components/Swipeable/index.js +20 -0
- package/lib/commonjs/components/Switch/Switch.js +230 -0
- package/lib/commonjs/components/Switch/index.js +20 -0
- package/lib/commonjs/components/Tabs/Tabs.js +289 -0
- package/lib/commonjs/components/Tabs/index.js +20 -0
- package/lib/commonjs/components/TagInput/TagInput.js +174 -0
- package/lib/commonjs/components/TagInput/index.js +20 -0
- package/lib/commonjs/components/Text/Text.js +146 -0
- package/lib/commonjs/components/Text/index.js +13 -0
- package/lib/commonjs/components/TimePicker/TimePicker.js +692 -0
- package/lib/commonjs/components/TimePicker/index.js +20 -0
- package/lib/commonjs/components/Timeline/Timeline.js +147 -0
- package/lib/commonjs/components/Timeline/index.js +20 -0
- package/lib/commonjs/components/Toast/Toast.js +322 -0
- package/lib/commonjs/components/Toast/ToastProvider.js +199 -0
- package/lib/commonjs/components/Toast/index.js +39 -0
- package/lib/commonjs/components/Tooltip/Tooltip.js +410 -0
- package/lib/commonjs/components/Tooltip/index.js +20 -0
- package/lib/commonjs/components/index.js +596 -0
- package/lib/commonjs/form/FormContext.js +40 -0
- package/lib/commonjs/form/index.js +68 -0
- package/lib/commonjs/form/path.js +91 -0
- package/lib/commonjs/form/rules.js +73 -0
- package/lib/commonjs/form/types.js +2 -0
- package/lib/commonjs/form/useField.js +54 -0
- package/lib/commonjs/form/useForm.js +364 -0
- package/lib/commonjs/hooks/index.js +41 -0
- package/lib/commonjs/hooks/useControllableState.js +32 -0
- package/lib/commonjs/hooks/useDebounce.js +17 -0
- package/lib/commonjs/hooks/usePressAnimation.js +47 -0
- package/lib/commonjs/hooks/useReducedMotion.js +33 -0
- package/lib/commonjs/hooks/useToggle.js +22 -0
- package/lib/commonjs/index.js +341 -0
- package/lib/commonjs/initUI.js +24 -0
- package/lib/commonjs/network/NetworkStatusBanner.js +89 -0
- package/lib/commonjs/network/index.js +13 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/theme/Gradient.js +56 -0
- package/lib/commonjs/theme/ThemeContext.js +101 -0
- package/lib/commonjs/theme/animatedValue.js +54 -0
- package/lib/commonjs/theme/index.js +127 -0
- package/lib/commonjs/theme/merge.js +30 -0
- package/lib/commonjs/theme/textStyle.js +39 -0
- package/lib/commonjs/theme/tokens.js +652 -0
- package/lib/commonjs/theme/types.js +6 -0
- package/lib/commonjs/utils/dimensions.js +31 -0
- package/lib/commonjs/utils/feedback.js +76 -0
- package/lib/commonjs/utils/hapticUtils.js +67 -0
- package/lib/commonjs/utils/index.js +114 -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/utils/warnUnknownProps.js +46 -0
- package/lib/module/components/Accordion/Accordion.js +325 -0
- package/lib/module/components/Accordion/index.js +4 -0
- package/lib/module/components/AnimatePresence/AnimatePresence.js +65 -0
- package/lib/module/components/AnimatePresence/index.js +4 -0
- package/lib/module/components/AppBar/AppBar.js +351 -0
- package/lib/module/components/AppBar/index.js +4 -0
- package/lib/module/components/AsyncBlock/AsyncBlock.js +81 -0
- package/lib/module/components/AsyncBlock/index.js +4 -0
- package/lib/module/components/Autocomplete/Autocomplete.js +220 -0
- package/lib/module/components/Autocomplete/index.js +4 -0
- package/lib/module/components/Avatar/Avatar.js +343 -0
- package/lib/module/components/Avatar/index.js +4 -0
- package/lib/module/components/Badge/Badge.js +291 -0
- package/lib/module/components/Badge/index.js +4 -0
- package/lib/module/components/Banner/Banner.js +391 -0
- package/lib/module/components/Banner/index.js +4 -0
- package/lib/module/components/BottomNavigation/BottomNavigation.js +332 -0
- package/lib/module/components/BottomNavigation/index.js +4 -0
- package/lib/module/components/BottomSheet/BottomSheet.js +553 -0
- package/lib/module/components/BottomSheet/index.js +4 -0
- package/lib/module/components/Box/Box.js +198 -0
- package/lib/module/components/Box/index.js +4 -0
- package/lib/module/components/Button/Button.js +312 -0
- package/lib/module/components/Button/index.js +4 -0
- package/lib/module/components/Card/Card.js +310 -0
- package/lib/module/components/Card/index.js +4 -0
- package/lib/module/components/Carousel/Carousel.js +578 -0
- package/lib/module/components/Carousel/index.js +4 -0
- package/lib/module/components/Checkbox/Checkbox.js +181 -0
- package/lib/module/components/Checkbox/index.js +4 -0
- package/lib/module/components/Chip/Chip.js +343 -0
- package/lib/module/components/Chip/index.js +4 -0
- package/lib/module/components/ChoiceGroup/ChoiceGroup.js +246 -0
- package/lib/module/components/ChoiceGroup/index.js +4 -0
- package/lib/module/components/Confetti/Confetti.js +173 -0
- package/lib/module/components/Confetti/index.js +4 -0
- package/lib/module/components/DatePicker/DatePicker.js +990 -0
- package/lib/module/components/DatePicker/index.js +4 -0
- package/lib/module/components/DateRangePicker/DateRangePicker.js +742 -0
- package/lib/module/components/DateRangePicker/index.js +4 -0
- package/lib/module/components/Descriptions/Descriptions.js +101 -0
- package/lib/module/components/Descriptions/index.js +4 -0
- package/lib/module/components/Dialog/Dialog.js +240 -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 +375 -0
- package/lib/module/components/Drawer/index.js +4 -0
- package/lib/module/components/EmptyState/EmptyState.js +203 -0
- package/lib/module/components/EmptyState/index.js +4 -0
- package/lib/module/components/FieldBase/Chevron.js +75 -0
- package/lib/module/components/FieldBase/FieldBase.js +511 -0
- package/lib/module/components/FieldBase/index.js +4 -0
- package/lib/module/components/FilePicker/FilePicker.js +778 -0
- package/lib/module/components/FilePicker/index.js +4 -0
- package/lib/module/components/FloatingActionButton/FloatingActionButton.js +512 -0
- package/lib/module/components/FloatingActionButton/index.js +4 -0
- package/lib/module/components/ForceUpdateDialog/ForceUpdateDialog.js +84 -0
- package/lib/module/components/ForceUpdateDialog/index.js +4 -0
- package/lib/module/components/FormField/FormField.js +158 -0
- package/lib/module/components/FormField/index.js +4 -0
- package/lib/module/components/IconButton/IconButton.js +176 -0
- package/lib/module/components/IconButton/index.js +4 -0
- package/lib/module/components/ImageGallery/ImageGallery.js +576 -0
- package/lib/module/components/ImageGallery/index.js +4 -0
- package/lib/module/components/InlineSelect/InlineSelect.js +174 -0
- package/lib/module/components/InlineSelect/index.js +4 -0
- package/lib/module/components/Input/Input.js +398 -0
- package/lib/module/components/Input/index.js +4 -0
- package/lib/module/components/KeyboardAwareScrollView/KeyboardAwareScrollView.js +111 -0
- package/lib/module/components/KeyboardAwareScrollView/index.js +4 -0
- package/lib/module/components/KeyboardToolbar/KeyboardToolbar.js +130 -0
- package/lib/module/components/KeyboardToolbar/index.js +4 -0
- package/lib/module/components/ListItem/ListItem.js +334 -0
- package/lib/module/components/ListItem/index.js +4 -0
- package/lib/module/components/Modal/Modal.js +352 -0
- package/lib/module/components/Modal/index.js +4 -0
- package/lib/module/components/NumberInput/NumberInput.js +377 -0
- package/lib/module/components/NumberInput/index.js +4 -0
- package/lib/module/components/OTPInput/OTPInput.js +438 -0
- package/lib/module/components/OTPInput/index.js +4 -0
- package/lib/module/components/OptionSheet/OptionSheet.js +444 -0
- package/lib/module/components/PhoneNumberInput/PhoneNumberInput.js +238 -0
- package/lib/module/components/PhoneNumberInput/index.js +4 -0
- package/lib/module/components/PickerTrigger/PickerTrigger.js +152 -0
- package/lib/module/components/PickerTrigger/index.js +4 -0
- package/lib/module/components/ProgressBar/ProgressBar.js +195 -0
- package/lib/module/components/ProgressBar/index.js +4 -0
- package/lib/module/components/Radio/Radio.js +113 -0
- package/lib/module/components/Radio/RadioDot.js +99 -0
- package/lib/module/components/Radio/RadioGroup.js +45 -0
- package/lib/module/components/Radio/index.js +6 -0
- package/lib/module/components/Rating/Rating.js +329 -0
- package/lib/module/components/Rating/index.js +4 -0
- package/lib/module/components/Repeater/Repeater.js +135 -0
- package/lib/module/components/Repeater/index.js +4 -0
- package/lib/module/components/SearchBar/SearchBar.js +280 -0
- package/lib/module/components/SearchBar/index.js +4 -0
- package/lib/module/components/SegmentedControl/SegmentedControl.js +205 -0
- package/lib/module/components/SegmentedControl/index.js +4 -0
- package/lib/module/components/Select/Select.js +266 -0
- package/lib/module/components/Select/index.js +4 -0
- package/lib/module/components/Skeleton/Skeleton.js +286 -0
- package/lib/module/components/Skeleton/SkeletonClock.js +111 -0
- package/lib/module/components/Skeleton/SkeletonContent.js +304 -0
- package/lib/module/components/Skeleton/SkeletonList.js +87 -0
- package/lib/module/components/Skeleton/SkeletonProvider.js +106 -0
- package/lib/module/components/Skeleton/SkeletonSkip.js +31 -0
- package/lib/module/components/Skeleton/index.js +9 -0
- package/lib/module/components/SlideToConfirm/SlideToConfirm.js +254 -0
- package/lib/module/components/SlideToConfirm/index.js +4 -0
- package/lib/module/components/Slider/Slider.js +498 -0
- package/lib/module/components/Slider/index.js +4 -0
- package/lib/module/components/Spinner/Spinner.js +179 -0
- package/lib/module/components/Spinner/index.js +4 -0
- package/lib/module/components/Stepper/Stepper.js +591 -0
- package/lib/module/components/Stepper/index.js +4 -0
- package/lib/module/components/Swipeable/Swipeable.js +375 -0
- package/lib/module/components/Swipeable/index.js +4 -0
- package/lib/module/components/Switch/Switch.js +227 -0
- package/lib/module/components/Switch/index.js +4 -0
- package/lib/module/components/Tabs/Tabs.js +285 -0
- package/lib/module/components/Tabs/index.js +4 -0
- package/lib/module/components/TagInput/TagInput.js +170 -0
- package/lib/module/components/TagInput/index.js +4 -0
- package/lib/module/components/Text/Text.js +142 -0
- package/lib/module/components/Text/index.js +4 -0
- package/lib/module/components/TimePicker/TimePicker.js +686 -0
- package/lib/module/components/TimePicker/index.js +4 -0
- package/lib/module/components/Timeline/Timeline.js +141 -0
- package/lib/module/components/Timeline/index.js +4 -0
- package/lib/module/components/Toast/Toast.js +317 -0
- package/lib/module/components/Toast/ToastProvider.js +191 -0
- package/lib/module/components/Toast/index.js +5 -0
- package/lib/module/components/Tooltip/Tooltip.js +405 -0
- package/lib/module/components/Tooltip/index.js +4 -0
- package/lib/module/components/index.js +65 -0
- package/lib/module/form/FormContext.js +32 -0
- package/lib/module/form/index.js +16 -0
- package/lib/module/form/path.js +84 -0
- package/lib/module/form/rules.js +59 -0
- package/lib/module/form/types.js +2 -0
- package/lib/module/form/useField.js +49 -0
- package/lib/module/form/useForm.js +360 -0
- package/lib/module/hooks/index.js +8 -0
- package/lib/module/hooks/useControllableState.js +28 -0
- package/lib/module/hooks/useDebounce.js +12 -0
- package/lib/module/hooks/usePressAnimation.js +42 -0
- package/lib/module/hooks/useReducedMotion.js +29 -0
- package/lib/module/hooks/useToggle.js +17 -0
- package/lib/module/index.js +17 -0
- package/lib/module/initUI.js +19 -0
- package/lib/module/network/NetworkStatusBanner.js +83 -0
- package/lib/module/network/index.js +4 -0
- package/lib/module/package.json +1 -0
- package/lib/module/theme/Gradient.js +49 -0
- package/lib/module/theme/ThemeContext.js +93 -0
- package/lib/module/theme/animatedValue.js +49 -0
- package/lib/module/theme/index.js +51 -0
- package/lib/module/theme/merge.js +25 -0
- package/lib/module/theme/textStyle.js +34 -0
- package/lib/module/theme/tokens.js +648 -0
- package/lib/module/theme/types.js +4 -0
- package/lib/module/utils/dimensions.js +4 -0
- package/lib/module/utils/feedback.js +70 -0
- package/lib/module/utils/hapticUtils.js +60 -0
- package/lib/module/utils/index.js +9 -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/utils/warnUnknownProps.js +42 -0
- package/lib/typescript/commonjs/components/Accordion/Accordion.d.ts +48 -0
- package/lib/typescript/commonjs/components/Accordion/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/AnimatePresence/AnimatePresence.d.ts +30 -0
- package/lib/typescript/commonjs/components/AnimatePresence/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/AppBar/AppBar.d.ts +50 -0
- package/lib/typescript/commonjs/components/AppBar/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/AsyncBlock/AsyncBlock.d.ts +39 -0
- package/lib/typescript/commonjs/components/AsyncBlock/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Autocomplete/Autocomplete.d.ts +53 -0
- package/lib/typescript/commonjs/components/Autocomplete/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Avatar/Avatar.d.ts +75 -0
- package/lib/typescript/commonjs/components/Avatar/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Badge/Badge.d.ts +34 -0
- package/lib/typescript/commonjs/components/Badge/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Banner/Banner.d.ts +47 -0
- package/lib/typescript/commonjs/components/Banner/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/BottomNavigation/BottomNavigation.d.ts +40 -0
- package/lib/typescript/commonjs/components/BottomNavigation/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/BottomSheet/BottomSheet.d.ts +113 -0
- package/lib/typescript/commonjs/components/BottomSheet/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Box/Box.d.ts +59 -0
- package/lib/typescript/commonjs/components/Box/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Button/Button.d.ts +41 -0
- package/lib/typescript/commonjs/components/Button/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Card/Card.d.ts +57 -0
- package/lib/typescript/commonjs/components/Card/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Carousel/Carousel.d.ts +77 -0
- package/lib/typescript/commonjs/components/Carousel/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Checkbox/Checkbox.d.ts +32 -0
- package/lib/typescript/commonjs/components/Checkbox/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Chip/Chip.d.ts +41 -0
- package/lib/typescript/commonjs/components/Chip/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/ChoiceGroup/ChoiceGroup.d.ts +100 -0
- package/lib/typescript/commonjs/components/ChoiceGroup/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Confetti/Confetti.d.ts +41 -0
- package/lib/typescript/commonjs/components/Confetti/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/DatePicker/DatePicker.d.ts +63 -0
- package/lib/typescript/commonjs/components/DatePicker/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/DateRangePicker/DateRangePicker.d.ts +69 -0
- package/lib/typescript/commonjs/components/DateRangePicker/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Descriptions/Descriptions.d.ts +30 -0
- package/lib/typescript/commonjs/components/Descriptions/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Dialog/Dialog.d.ts +45 -0
- package/lib/typescript/commonjs/components/Dialog/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Divider/Divider.d.ts +19 -0
- package/lib/typescript/commonjs/components/Divider/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Drawer/Drawer.d.ts +56 -0
- package/lib/typescript/commonjs/components/Drawer/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/EmptyState/EmptyState.d.ts +24 -0
- package/lib/typescript/commonjs/components/EmptyState/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/FieldBase/Chevron.d.ts +20 -0
- package/lib/typescript/commonjs/components/FieldBase/FieldBase.d.ts +180 -0
- package/lib/typescript/commonjs/components/FieldBase/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/FilePicker/FilePicker.d.ts +155 -0
- package/lib/typescript/commonjs/components/FilePicker/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/FloatingActionButton/FloatingActionButton.d.ts +59 -0
- package/lib/typescript/commonjs/components/FloatingActionButton/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/ForceUpdateDialog/ForceUpdateDialog.d.ts +47 -0
- package/lib/typescript/commonjs/components/ForceUpdateDialog/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/FormField/FormField.d.ts +49 -0
- package/lib/typescript/commonjs/components/FormField/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/IconButton/IconButton.d.ts +34 -0
- package/lib/typescript/commonjs/components/IconButton/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/ImageGallery/ImageGallery.d.ts +55 -0
- package/lib/typescript/commonjs/components/ImageGallery/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/InlineSelect/InlineSelect.d.ts +91 -0
- package/lib/typescript/commonjs/components/InlineSelect/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Input/Input.d.ts +69 -0
- package/lib/typescript/commonjs/components/Input/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/KeyboardAwareScrollView/KeyboardAwareScrollView.d.ts +20 -0
- package/lib/typescript/commonjs/components/KeyboardAwareScrollView/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/KeyboardToolbar/KeyboardToolbar.d.ts +29 -0
- package/lib/typescript/commonjs/components/KeyboardToolbar/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/ListItem/ListItem.d.ts +46 -0
- package/lib/typescript/commonjs/components/ListItem/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/Modal/Modal.d.ts +47 -0
- package/lib/typescript/commonjs/components/Modal/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/NumberInput/NumberInput.d.ts +42 -0
- package/lib/typescript/commonjs/components/NumberInput/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/OTPInput/OTPInput.d.ts +35 -0
- package/lib/typescript/commonjs/components/OTPInput/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/OptionSheet/OptionSheet.d.ts +57 -0
- package/lib/typescript/commonjs/components/PhoneNumberInput/PhoneNumberInput.d.ts +58 -0
- package/lib/typescript/commonjs/components/PhoneNumberInput/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/PickerTrigger/PickerTrigger.d.ts +60 -0
- package/lib/typescript/commonjs/components/PickerTrigger/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/ProgressBar/ProgressBar.d.ts +33 -0
- package/lib/typescript/commonjs/components/ProgressBar/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Radio/Radio.d.ts +33 -0
- package/lib/typescript/commonjs/components/Radio/RadioDot.d.ts +24 -0
- package/lib/typescript/commonjs/components/Radio/RadioGroup.d.ts +17 -0
- package/lib/typescript/commonjs/components/Radio/index.d.ts +7 -0
- package/lib/typescript/commonjs/components/Rating/Rating.d.ts +37 -0
- package/lib/typescript/commonjs/components/Rating/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Repeater/Repeater.d.ts +43 -0
- package/lib/typescript/commonjs/components/Repeater/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/SearchBar/SearchBar.d.ts +32 -0
- package/lib/typescript/commonjs/components/SearchBar/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/SegmentedControl/SegmentedControl.d.ts +42 -0
- package/lib/typescript/commonjs/components/SegmentedControl/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Select/Select.d.ts +106 -0
- package/lib/typescript/commonjs/components/Select/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Skeleton/Skeleton.d.ts +80 -0
- package/lib/typescript/commonjs/components/Skeleton/SkeletonClock.d.ts +60 -0
- package/lib/typescript/commonjs/components/Skeleton/SkeletonContent.d.ts +102 -0
- package/lib/typescript/commonjs/components/Skeleton/SkeletonList.d.ts +30 -0
- package/lib/typescript/commonjs/components/Skeleton/SkeletonProvider.d.ts +66 -0
- package/lib/typescript/commonjs/components/Skeleton/SkeletonSkip.d.ts +25 -0
- package/lib/typescript/commonjs/components/Skeleton/index.d.ts +13 -0
- package/lib/typescript/commonjs/components/SlideToConfirm/SlideToConfirm.d.ts +33 -0
- package/lib/typescript/commonjs/components/SlideToConfirm/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Slider/Slider.d.ts +47 -0
- package/lib/typescript/commonjs/components/Slider/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Spinner/Spinner.d.ts +19 -0
- package/lib/typescript/commonjs/components/Spinner/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Stepper/Stepper.d.ts +49 -0
- package/lib/typescript/commonjs/components/Stepper/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Swipeable/Swipeable.d.ts +50 -0
- package/lib/typescript/commonjs/components/Swipeable/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Switch/Switch.d.ts +29 -0
- package/lib/typescript/commonjs/components/Switch/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Tabs/Tabs.d.ts +64 -0
- package/lib/typescript/commonjs/components/Tabs/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/TagInput/TagInput.d.ts +36 -0
- package/lib/typescript/commonjs/components/TagInput/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Text/Text.d.ts +24 -0
- package/lib/typescript/commonjs/components/Text/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/TimePicker/TimePicker.d.ts +62 -0
- package/lib/typescript/commonjs/components/TimePicker/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Timeline/Timeline.d.ts +44 -0
- package/lib/typescript/commonjs/components/Timeline/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Toast/Toast.d.ts +44 -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 +28 -0
- package/lib/typescript/commonjs/components/Tooltip/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/index.d.ts +125 -0
- package/lib/typescript/commonjs/form/FormContext.d.ts +17 -0
- package/lib/typescript/commonjs/form/index.d.ts +10 -0
- package/lib/typescript/commonjs/form/path.d.ts +10 -0
- package/lib/typescript/commonjs/form/rules.d.ts +37 -0
- package/lib/typescript/commonjs/form/types.d.ts +94 -0
- package/lib/typescript/commonjs/form/useField.d.ts +27 -0
- package/lib/typescript/commonjs/form/useForm.d.ts +10 -0
- package/lib/typescript/commonjs/hooks/index.d.ts +9 -0
- package/lib/typescript/commonjs/hooks/useControllableState.d.ts +17 -0
- package/lib/typescript/commonjs/hooks/useDebounce.d.ts +2 -0
- package/lib/typescript/commonjs/hooks/usePressAnimation.d.ts +13 -0
- package/lib/typescript/commonjs/hooks/useReducedMotion.d.ts +8 -0
- package/lib/typescript/commonjs/hooks/useToggle.d.ts +9 -0
- package/lib/typescript/commonjs/index.d.ts +14 -0
- package/lib/typescript/commonjs/initUI.d.ts +12 -0
- package/lib/typescript/commonjs/network/NetworkStatusBanner.d.ts +19 -0
- package/lib/typescript/commonjs/network/index.d.ts +3 -0
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/theme/Gradient.d.ts +11 -0
- package/lib/typescript/commonjs/theme/ThemeContext.d.ts +18 -0
- package/lib/typescript/commonjs/theme/animatedValue.d.ts +39 -0
- package/lib/typescript/commonjs/theme/index.d.ts +18 -0
- package/lib/typescript/commonjs/theme/merge.d.ts +3 -0
- package/lib/typescript/commonjs/theme/textStyle.d.ts +18 -0
- package/lib/typescript/commonjs/theme/tokens.d.ts +4 -0
- package/lib/typescript/commonjs/theme/types.d.ts +913 -0
- package/lib/typescript/commonjs/utils/dimensions.d.ts +3 -0
- package/lib/typescript/commonjs/utils/feedback.d.ts +45 -0
- package/lib/typescript/commonjs/utils/hapticUtils.d.ts +12 -0
- package/lib/typescript/commonjs/utils/index.d.ts +11 -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/utils/warnUnknownProps.d.ts +20 -0
- package/lib/typescript/module/components/Accordion/Accordion.d.ts +48 -0
- package/lib/typescript/module/components/Accordion/index.d.ts +3 -0
- package/lib/typescript/module/components/AnimatePresence/AnimatePresence.d.ts +30 -0
- package/lib/typescript/module/components/AnimatePresence/index.d.ts +3 -0
- package/lib/typescript/module/components/AppBar/AppBar.d.ts +50 -0
- package/lib/typescript/module/components/AppBar/index.d.ts +3 -0
- package/lib/typescript/module/components/AsyncBlock/AsyncBlock.d.ts +39 -0
- package/lib/typescript/module/components/AsyncBlock/index.d.ts +3 -0
- package/lib/typescript/module/components/Autocomplete/Autocomplete.d.ts +53 -0
- package/lib/typescript/module/components/Autocomplete/index.d.ts +3 -0
- package/lib/typescript/module/components/Avatar/Avatar.d.ts +75 -0
- package/lib/typescript/module/components/Avatar/index.d.ts +3 -0
- package/lib/typescript/module/components/Badge/Badge.d.ts +34 -0
- package/lib/typescript/module/components/Badge/index.d.ts +3 -0
- package/lib/typescript/module/components/Banner/Banner.d.ts +47 -0
- package/lib/typescript/module/components/Banner/index.d.ts +3 -0
- package/lib/typescript/module/components/BottomNavigation/BottomNavigation.d.ts +40 -0
- package/lib/typescript/module/components/BottomNavigation/index.d.ts +3 -0
- package/lib/typescript/module/components/BottomSheet/BottomSheet.d.ts +113 -0
- package/lib/typescript/module/components/BottomSheet/index.d.ts +3 -0
- package/lib/typescript/module/components/Box/Box.d.ts +59 -0
- package/lib/typescript/module/components/Box/index.d.ts +3 -0
- package/lib/typescript/module/components/Button/Button.d.ts +41 -0
- package/lib/typescript/module/components/Button/index.d.ts +3 -0
- package/lib/typescript/module/components/Card/Card.d.ts +57 -0
- package/lib/typescript/module/components/Card/index.d.ts +3 -0
- package/lib/typescript/module/components/Carousel/Carousel.d.ts +77 -0
- package/lib/typescript/module/components/Carousel/index.d.ts +3 -0
- package/lib/typescript/module/components/Checkbox/Checkbox.d.ts +32 -0
- package/lib/typescript/module/components/Checkbox/index.d.ts +3 -0
- package/lib/typescript/module/components/Chip/Chip.d.ts +41 -0
- package/lib/typescript/module/components/Chip/index.d.ts +3 -0
- package/lib/typescript/module/components/ChoiceGroup/ChoiceGroup.d.ts +100 -0
- package/lib/typescript/module/components/ChoiceGroup/index.d.ts +3 -0
- package/lib/typescript/module/components/Confetti/Confetti.d.ts +41 -0
- package/lib/typescript/module/components/Confetti/index.d.ts +3 -0
- package/lib/typescript/module/components/DatePicker/DatePicker.d.ts +63 -0
- package/lib/typescript/module/components/DatePicker/index.d.ts +3 -0
- package/lib/typescript/module/components/DateRangePicker/DateRangePicker.d.ts +69 -0
- package/lib/typescript/module/components/DateRangePicker/index.d.ts +3 -0
- package/lib/typescript/module/components/Descriptions/Descriptions.d.ts +30 -0
- package/lib/typescript/module/components/Descriptions/index.d.ts +3 -0
- package/lib/typescript/module/components/Dialog/Dialog.d.ts +45 -0
- package/lib/typescript/module/components/Dialog/index.d.ts +3 -0
- package/lib/typescript/module/components/Divider/Divider.d.ts +19 -0
- package/lib/typescript/module/components/Divider/index.d.ts +3 -0
- package/lib/typescript/module/components/Drawer/Drawer.d.ts +56 -0
- package/lib/typescript/module/components/Drawer/index.d.ts +3 -0
- package/lib/typescript/module/components/EmptyState/EmptyState.d.ts +24 -0
- package/lib/typescript/module/components/EmptyState/index.d.ts +3 -0
- package/lib/typescript/module/components/FieldBase/Chevron.d.ts +20 -0
- package/lib/typescript/module/components/FieldBase/FieldBase.d.ts +180 -0
- package/lib/typescript/module/components/FieldBase/index.d.ts +3 -0
- package/lib/typescript/module/components/FilePicker/FilePicker.d.ts +155 -0
- package/lib/typescript/module/components/FilePicker/index.d.ts +3 -0
- package/lib/typescript/module/components/FloatingActionButton/FloatingActionButton.d.ts +59 -0
- package/lib/typescript/module/components/FloatingActionButton/index.d.ts +3 -0
- package/lib/typescript/module/components/ForceUpdateDialog/ForceUpdateDialog.d.ts +47 -0
- package/lib/typescript/module/components/ForceUpdateDialog/index.d.ts +3 -0
- package/lib/typescript/module/components/FormField/FormField.d.ts +49 -0
- package/lib/typescript/module/components/FormField/index.d.ts +3 -0
- package/lib/typescript/module/components/IconButton/IconButton.d.ts +34 -0
- package/lib/typescript/module/components/IconButton/index.d.ts +3 -0
- package/lib/typescript/module/components/ImageGallery/ImageGallery.d.ts +55 -0
- package/lib/typescript/module/components/ImageGallery/index.d.ts +3 -0
- package/lib/typescript/module/components/InlineSelect/InlineSelect.d.ts +91 -0
- package/lib/typescript/module/components/InlineSelect/index.d.ts +3 -0
- package/lib/typescript/module/components/Input/Input.d.ts +69 -0
- package/lib/typescript/module/components/Input/index.d.ts +3 -0
- package/lib/typescript/module/components/KeyboardAwareScrollView/KeyboardAwareScrollView.d.ts +20 -0
- package/lib/typescript/module/components/KeyboardAwareScrollView/index.d.ts +3 -0
- package/lib/typescript/module/components/KeyboardToolbar/KeyboardToolbar.d.ts +29 -0
- package/lib/typescript/module/components/KeyboardToolbar/index.d.ts +3 -0
- package/lib/typescript/module/components/ListItem/ListItem.d.ts +46 -0
- package/lib/typescript/module/components/ListItem/index.d.ts +4 -0
- package/lib/typescript/module/components/Modal/Modal.d.ts +47 -0
- package/lib/typescript/module/components/Modal/index.d.ts +3 -0
- package/lib/typescript/module/components/NumberInput/NumberInput.d.ts +42 -0
- package/lib/typescript/module/components/NumberInput/index.d.ts +3 -0
- package/lib/typescript/module/components/OTPInput/OTPInput.d.ts +35 -0
- package/lib/typescript/module/components/OTPInput/index.d.ts +3 -0
- package/lib/typescript/module/components/OptionSheet/OptionSheet.d.ts +57 -0
- package/lib/typescript/module/components/PhoneNumberInput/PhoneNumberInput.d.ts +58 -0
- package/lib/typescript/module/components/PhoneNumberInput/index.d.ts +3 -0
- package/lib/typescript/module/components/PickerTrigger/PickerTrigger.d.ts +60 -0
- package/lib/typescript/module/components/PickerTrigger/index.d.ts +3 -0
- package/lib/typescript/module/components/ProgressBar/ProgressBar.d.ts +33 -0
- package/lib/typescript/module/components/ProgressBar/index.d.ts +3 -0
- package/lib/typescript/module/components/Radio/Radio.d.ts +33 -0
- package/lib/typescript/module/components/Radio/RadioDot.d.ts +24 -0
- package/lib/typescript/module/components/Radio/RadioGroup.d.ts +17 -0
- package/lib/typescript/module/components/Radio/index.d.ts +7 -0
- package/lib/typescript/module/components/Rating/Rating.d.ts +37 -0
- package/lib/typescript/module/components/Rating/index.d.ts +3 -0
- package/lib/typescript/module/components/Repeater/Repeater.d.ts +43 -0
- package/lib/typescript/module/components/Repeater/index.d.ts +3 -0
- package/lib/typescript/module/components/SearchBar/SearchBar.d.ts +32 -0
- package/lib/typescript/module/components/SearchBar/index.d.ts +3 -0
- package/lib/typescript/module/components/SegmentedControl/SegmentedControl.d.ts +42 -0
- package/lib/typescript/module/components/SegmentedControl/index.d.ts +3 -0
- package/lib/typescript/module/components/Select/Select.d.ts +106 -0
- package/lib/typescript/module/components/Select/index.d.ts +3 -0
- package/lib/typescript/module/components/Skeleton/Skeleton.d.ts +80 -0
- package/lib/typescript/module/components/Skeleton/SkeletonClock.d.ts +60 -0
- package/lib/typescript/module/components/Skeleton/SkeletonContent.d.ts +102 -0
- package/lib/typescript/module/components/Skeleton/SkeletonList.d.ts +30 -0
- package/lib/typescript/module/components/Skeleton/SkeletonProvider.d.ts +66 -0
- package/lib/typescript/module/components/Skeleton/SkeletonSkip.d.ts +25 -0
- package/lib/typescript/module/components/Skeleton/index.d.ts +13 -0
- package/lib/typescript/module/components/SlideToConfirm/SlideToConfirm.d.ts +33 -0
- package/lib/typescript/module/components/SlideToConfirm/index.d.ts +3 -0
- package/lib/typescript/module/components/Slider/Slider.d.ts +47 -0
- package/lib/typescript/module/components/Slider/index.d.ts +3 -0
- package/lib/typescript/module/components/Spinner/Spinner.d.ts +19 -0
- package/lib/typescript/module/components/Spinner/index.d.ts +3 -0
- package/lib/typescript/module/components/Stepper/Stepper.d.ts +49 -0
- package/lib/typescript/module/components/Stepper/index.d.ts +3 -0
- package/lib/typescript/module/components/Swipeable/Swipeable.d.ts +50 -0
- package/lib/typescript/module/components/Swipeable/index.d.ts +3 -0
- package/lib/typescript/module/components/Switch/Switch.d.ts +29 -0
- package/lib/typescript/module/components/Switch/index.d.ts +3 -0
- package/lib/typescript/module/components/Tabs/Tabs.d.ts +64 -0
- package/lib/typescript/module/components/Tabs/index.d.ts +3 -0
- package/lib/typescript/module/components/TagInput/TagInput.d.ts +36 -0
- package/lib/typescript/module/components/TagInput/index.d.ts +3 -0
- package/lib/typescript/module/components/Text/Text.d.ts +24 -0
- package/lib/typescript/module/components/Text/index.d.ts +3 -0
- package/lib/typescript/module/components/TimePicker/TimePicker.d.ts +62 -0
- package/lib/typescript/module/components/TimePicker/index.d.ts +3 -0
- package/lib/typescript/module/components/Timeline/Timeline.d.ts +44 -0
- package/lib/typescript/module/components/Timeline/index.d.ts +3 -0
- package/lib/typescript/module/components/Toast/Toast.d.ts +44 -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 +28 -0
- package/lib/typescript/module/components/Tooltip/index.d.ts +3 -0
- package/lib/typescript/module/components/index.d.ts +125 -0
- package/lib/typescript/module/form/FormContext.d.ts +17 -0
- package/lib/typescript/module/form/index.d.ts +10 -0
- package/lib/typescript/module/form/path.d.ts +10 -0
- package/lib/typescript/module/form/rules.d.ts +37 -0
- package/lib/typescript/module/form/types.d.ts +94 -0
- package/lib/typescript/module/form/useField.d.ts +27 -0
- package/lib/typescript/module/form/useForm.d.ts +10 -0
- package/lib/typescript/module/hooks/index.d.ts +9 -0
- package/lib/typescript/module/hooks/useControllableState.d.ts +17 -0
- package/lib/typescript/module/hooks/useDebounce.d.ts +2 -0
- package/lib/typescript/module/hooks/usePressAnimation.d.ts +13 -0
- package/lib/typescript/module/hooks/useReducedMotion.d.ts +8 -0
- package/lib/typescript/module/hooks/useToggle.d.ts +9 -0
- package/lib/typescript/module/index.d.ts +14 -0
- package/lib/typescript/module/initUI.d.ts +12 -0
- package/lib/typescript/module/network/NetworkStatusBanner.d.ts +19 -0
- package/lib/typescript/module/network/index.d.ts +3 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/theme/Gradient.d.ts +11 -0
- package/lib/typescript/module/theme/ThemeContext.d.ts +18 -0
- package/lib/typescript/module/theme/animatedValue.d.ts +39 -0
- package/lib/typescript/module/theme/index.d.ts +18 -0
- package/lib/typescript/module/theme/merge.d.ts +3 -0
- package/lib/typescript/module/theme/textStyle.d.ts +18 -0
- package/lib/typescript/module/theme/tokens.d.ts +4 -0
- package/lib/typescript/module/theme/types.d.ts +913 -0
- package/lib/typescript/module/utils/dimensions.d.ts +3 -0
- package/lib/typescript/module/utils/feedback.d.ts +45 -0
- package/lib/typescript/module/utils/hapticUtils.d.ts +12 -0
- package/lib/typescript/module/utils/index.d.ts +11 -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/utils/warnUnknownProps.d.ts +20 -0
- package/package.json +101 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { useFormContext } from "./FormContext.js";
|
|
4
|
+
import { getPath } from "./path.js";
|
|
5
|
+
/**
|
|
6
|
+
* Bind a single field by name. Returns everything an input needs; pick the
|
|
7
|
+
* handler your control uses:
|
|
8
|
+
* const email = useField('email');
|
|
9
|
+
* <Input value={email.value} onChangeText={email.onChangeText} onBlur={email.onBlur} error={email.error} />
|
|
10
|
+
* <Select value={country.value} onChange={country.onChange} error={country.error} />
|
|
11
|
+
* <Switch value={!!agree.value} onChange={agree.onChange} />
|
|
12
|
+
*/
|
|
13
|
+
export function useField(name) {
|
|
14
|
+
const form = useFormContext();
|
|
15
|
+
return form.getFieldProps(name);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Manage a repeating list field (phone numbers, line items, etc.) by name.
|
|
19
|
+
* Each helper writes the whole array back through the form so validation and
|
|
20
|
+
* dirty-tracking stay correct.
|
|
21
|
+
*/
|
|
22
|
+
export function useFieldArray(name) {
|
|
23
|
+
const form = useFormContext();
|
|
24
|
+
const fields = getPath(form.values, name) ?? [];
|
|
25
|
+
const set = next => form.setFieldValue(name, next);
|
|
26
|
+
return {
|
|
27
|
+
fields,
|
|
28
|
+
length: fields.length,
|
|
29
|
+
push: item => set([...fields, item]),
|
|
30
|
+
remove: index => set(fields.filter((_, i) => i !== index)),
|
|
31
|
+
insert: (index, item) => {
|
|
32
|
+
const copy = [...fields];
|
|
33
|
+
copy.splice(index, 0, item);
|
|
34
|
+
set(copy);
|
|
35
|
+
},
|
|
36
|
+
move: (from, to) => {
|
|
37
|
+
const copy = [...fields];
|
|
38
|
+
const [moved] = copy.splice(from, 1);
|
|
39
|
+
copy.splice(to, 0, moved);
|
|
40
|
+
set(copy);
|
|
41
|
+
},
|
|
42
|
+
replace: (index, item) => {
|
|
43
|
+
const copy = [...fields];
|
|
44
|
+
copy[index] = item;
|
|
45
|
+
set(copy);
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=useField.js.map
|
|
@@ -0,0 +1,360 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
4
|
+
import { getPath, setPath } from "./path.js";
|
|
5
|
+
// Loosely typed (Values -> any) so the generic schema from any useForm<Values>
|
|
6
|
+
// instance flows in without variance friction; callers re-apply Values at use.
|
|
7
|
+
const rulesFor = (validate, name) => {
|
|
8
|
+
if (!validate || typeof validate === 'function') {
|
|
9
|
+
return [];
|
|
10
|
+
}
|
|
11
|
+
const r = validate[name];
|
|
12
|
+
if (!r) {
|
|
13
|
+
return [];
|
|
14
|
+
}
|
|
15
|
+
return Array.isArray(r) ? r : [r];
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Dependency-free form engine. Tracks values/errors/touched/dirty, runs
|
|
20
|
+
* synchronous and async validation (per-field rule maps or a form-level
|
|
21
|
+
* function), gates error display behind touched/submit, and on a failed submit
|
|
22
|
+
* focuses the first errored field. The returned object is rebuilt every render
|
|
23
|
+
* so `<Form>` consumers re-render on state changes.
|
|
24
|
+
*/
|
|
25
|
+
export function useForm(config) {
|
|
26
|
+
const configRef = useRef(config);
|
|
27
|
+
configRef.current = config;
|
|
28
|
+
const initialRef = useRef(config.initialValues);
|
|
29
|
+
const [values, setValuesState] = useState(config.initialValues);
|
|
30
|
+
const [errors, setErrorsState] = useState({});
|
|
31
|
+
const [touched, setTouchedState] = useState({});
|
|
32
|
+
const [isSubmitting, setSubmitting] = useState(false);
|
|
33
|
+
const [isValidating, setValidating] = useState(false);
|
|
34
|
+
const [submitCount, setSubmitCount] = useState(0);
|
|
35
|
+
|
|
36
|
+
// Mirror of the latest state so handlers (incl. async) never read stale
|
|
37
|
+
// closures and sequential setFieldValue calls in one tick compound correctly.
|
|
38
|
+
const ref = useRef({
|
|
39
|
+
values,
|
|
40
|
+
errors,
|
|
41
|
+
touched,
|
|
42
|
+
submitCount
|
|
43
|
+
});
|
|
44
|
+
ref.current = {
|
|
45
|
+
values,
|
|
46
|
+
errors,
|
|
47
|
+
touched,
|
|
48
|
+
submitCount
|
|
49
|
+
};
|
|
50
|
+
const fieldNodes = useRef(new Map());
|
|
51
|
+
const fieldOrder = useRef([]);
|
|
52
|
+
const focusedFieldRef = useRef(null);
|
|
53
|
+
|
|
54
|
+
// biome-ignore lint/correctness/useExhaustiveDependencies: `JSON.stringify(config.initialValues)` is the dependency by design so reinitialize compares by value, not by object identity
|
|
55
|
+
useEffect(() => {
|
|
56
|
+
if (!configRef.current.enableReinitialize) {
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
59
|
+
const next = configRef.current.initialValues;
|
|
60
|
+
initialRef.current = next;
|
|
61
|
+
ref.current.values = next;
|
|
62
|
+
ref.current.errors = {};
|
|
63
|
+
ref.current.touched = {};
|
|
64
|
+
setValuesState(next);
|
|
65
|
+
setErrorsState({});
|
|
66
|
+
setTouchedState({});
|
|
67
|
+
}, [JSON.stringify(config.initialValues)]);
|
|
68
|
+
const validateField = useCallback(async name => {
|
|
69
|
+
const validate = configRef.current.validate;
|
|
70
|
+
const allValues = ref.current.values;
|
|
71
|
+
if (typeof validate === 'function') {
|
|
72
|
+
const map = (await validate(allValues)) ?? {};
|
|
73
|
+
return map[name] || undefined;
|
|
74
|
+
}
|
|
75
|
+
const value = getPath(allValues, name);
|
|
76
|
+
for (const rule of rulesFor(validate, name)) {
|
|
77
|
+
const res = await rule(value, allValues);
|
|
78
|
+
if (res) {
|
|
79
|
+
return res;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
return undefined;
|
|
83
|
+
}, []);
|
|
84
|
+
const runAll = useCallback(async vals => {
|
|
85
|
+
const validate = configRef.current.validate;
|
|
86
|
+
if (!validate) {
|
|
87
|
+
return {};
|
|
88
|
+
}
|
|
89
|
+
if (typeof validate === 'function') {
|
|
90
|
+
return (await validate(vals)) ?? {};
|
|
91
|
+
}
|
|
92
|
+
const out = {};
|
|
93
|
+
await Promise.all(Object.keys(validate).map(async name => {
|
|
94
|
+
const value = getPath(vals, name);
|
|
95
|
+
for (const rule of rulesFor(validate, name)) {
|
|
96
|
+
const res = await rule(value, vals);
|
|
97
|
+
if (res) {
|
|
98
|
+
out[name] = res;
|
|
99
|
+
break;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}));
|
|
103
|
+
return out;
|
|
104
|
+
}, []);
|
|
105
|
+
const revalidateField = useCallback(async name => {
|
|
106
|
+
const err = await validateField(name);
|
|
107
|
+
setErrorsState(prev => {
|
|
108
|
+
if (prev[name] === err) {
|
|
109
|
+
return prev;
|
|
110
|
+
}
|
|
111
|
+
const next = {
|
|
112
|
+
...prev
|
|
113
|
+
};
|
|
114
|
+
if (err) {
|
|
115
|
+
next[name] = err;
|
|
116
|
+
} else {
|
|
117
|
+
delete next[name];
|
|
118
|
+
}
|
|
119
|
+
ref.current.errors = next;
|
|
120
|
+
return next;
|
|
121
|
+
});
|
|
122
|
+
}, [validateField]);
|
|
123
|
+
const validate = useCallback(async () => {
|
|
124
|
+
setValidating(true);
|
|
125
|
+
const errs = await runAll(ref.current.values);
|
|
126
|
+
setValidating(false);
|
|
127
|
+
ref.current.errors = errs;
|
|
128
|
+
setErrorsState(errs);
|
|
129
|
+
return errs;
|
|
130
|
+
}, [runAll]);
|
|
131
|
+
const setFieldValue = useCallback((name, value, shouldValidate) => {
|
|
132
|
+
const next = setPath(ref.current.values, name, value);
|
|
133
|
+
ref.current.values = next;
|
|
134
|
+
setValuesState(next);
|
|
135
|
+
const cfg = configRef.current;
|
|
136
|
+
// `revalidateOn: 'blur'` means a field that has ALREADY surfaced an error
|
|
137
|
+
// stops re-checking on every keystroke and waits for blur — without this
|
|
138
|
+
// the option was declared, documented and ignored.
|
|
139
|
+
const alreadyErrored = Boolean(ref.current.errors[name]);
|
|
140
|
+
const deferToBlur = alreadyErrored && cfg.revalidateOn === 'blur';
|
|
141
|
+
const willValidate = shouldValidate ?? (!deferToBlur && (ref.current.touched[name] || ref.current.submitCount > 0 || cfg.validateOn === 'change'));
|
|
142
|
+
if (willValidate) {
|
|
143
|
+
void revalidateField(name);
|
|
144
|
+
}
|
|
145
|
+
}, [revalidateField]);
|
|
146
|
+
const handleBlur = useCallback(name => {
|
|
147
|
+
setTouchedState(prev => {
|
|
148
|
+
if (prev[name]) {
|
|
149
|
+
return prev;
|
|
150
|
+
}
|
|
151
|
+
const next = {
|
|
152
|
+
...prev,
|
|
153
|
+
[name]: true
|
|
154
|
+
};
|
|
155
|
+
ref.current.touched = next;
|
|
156
|
+
return next;
|
|
157
|
+
});
|
|
158
|
+
// Blur is the natural moment to surface a field's error.
|
|
159
|
+
void revalidateField(name);
|
|
160
|
+
}, [revalidateField]);
|
|
161
|
+
const setFieldTouched = useCallback((name, isTouched = true, shouldValidate) => {
|
|
162
|
+
const next = {
|
|
163
|
+
...ref.current.touched,
|
|
164
|
+
[name]: isTouched
|
|
165
|
+
};
|
|
166
|
+
ref.current.touched = next;
|
|
167
|
+
setTouchedState(next);
|
|
168
|
+
if (shouldValidate ?? isTouched) {
|
|
169
|
+
void revalidateField(name);
|
|
170
|
+
}
|
|
171
|
+
}, [revalidateField]);
|
|
172
|
+
const setFieldError = useCallback((name, error) => {
|
|
173
|
+
setErrorsState(prev => {
|
|
174
|
+
const next = {
|
|
175
|
+
...prev
|
|
176
|
+
};
|
|
177
|
+
if (error) {
|
|
178
|
+
next[name] = error;
|
|
179
|
+
} else {
|
|
180
|
+
delete next[name];
|
|
181
|
+
}
|
|
182
|
+
ref.current.errors = next;
|
|
183
|
+
return next;
|
|
184
|
+
});
|
|
185
|
+
}, []);
|
|
186
|
+
const setErrors = useCallback(errs => {
|
|
187
|
+
ref.current.errors = errs;
|
|
188
|
+
setErrorsState(errs);
|
|
189
|
+
}, []);
|
|
190
|
+
const setValues = useCallback((next, shouldValidate) => {
|
|
191
|
+
const resolved = typeof next === 'function' ? next(ref.current.values) : {
|
|
192
|
+
...ref.current.values,
|
|
193
|
+
...next
|
|
194
|
+
};
|
|
195
|
+
ref.current.values = resolved;
|
|
196
|
+
setValuesState(resolved);
|
|
197
|
+
if (shouldValidate) {
|
|
198
|
+
void validate();
|
|
199
|
+
}
|
|
200
|
+
}, [validate]);
|
|
201
|
+
const reset = useCallback(nextValues => {
|
|
202
|
+
const base = nextValues ? {
|
|
203
|
+
...initialRef.current,
|
|
204
|
+
...nextValues
|
|
205
|
+
} : initialRef.current;
|
|
206
|
+
initialRef.current = base;
|
|
207
|
+
ref.current.values = base;
|
|
208
|
+
ref.current.errors = {};
|
|
209
|
+
ref.current.touched = {};
|
|
210
|
+
ref.current.submitCount = 0;
|
|
211
|
+
setValuesState(base);
|
|
212
|
+
setErrorsState({});
|
|
213
|
+
setTouchedState({});
|
|
214
|
+
setSubmitCount(0);
|
|
215
|
+
}, []);
|
|
216
|
+
const registerField = useCallback((name, node) => {
|
|
217
|
+
if (node) {
|
|
218
|
+
fieldNodes.current.set(name, node);
|
|
219
|
+
if (!fieldOrder.current.includes(name)) {
|
|
220
|
+
fieldOrder.current.push(name);
|
|
221
|
+
}
|
|
222
|
+
} else {
|
|
223
|
+
fieldNodes.current.delete(name);
|
|
224
|
+
fieldOrder.current = fieldOrder.current.filter(n => n !== name);
|
|
225
|
+
}
|
|
226
|
+
}, []);
|
|
227
|
+
const handleFocus = useCallback(name => {
|
|
228
|
+
focusedFieldRef.current = name;
|
|
229
|
+
}, []);
|
|
230
|
+
const focusAdjacent = useCallback(direction => {
|
|
231
|
+
const order = fieldOrder.current;
|
|
232
|
+
const current = focusedFieldRef.current;
|
|
233
|
+
const index = current ? order.indexOf(current) : -1;
|
|
234
|
+
const target = order[index + direction];
|
|
235
|
+
if (!target) {
|
|
236
|
+
return;
|
|
237
|
+
}
|
|
238
|
+
focusedFieldRef.current = target;
|
|
239
|
+
fieldNodes.current.get(target)?.focus?.();
|
|
240
|
+
}, []);
|
|
241
|
+
const focusNext = useCallback(() => focusAdjacent(1), [focusAdjacent]);
|
|
242
|
+
const focusPrev = useCallback(() => focusAdjacent(-1), [focusAdjacent]);
|
|
243
|
+
const helpers = useMemo(() => ({
|
|
244
|
+
setErrors,
|
|
245
|
+
setFieldError,
|
|
246
|
+
reset,
|
|
247
|
+
setSubmitting
|
|
248
|
+
}), [setErrors, setFieldError, reset]);
|
|
249
|
+
const submit = useCallback(() => {
|
|
250
|
+
void (async () => {
|
|
251
|
+
const cfg = configRef.current;
|
|
252
|
+
const currentValues = ref.current.values;
|
|
253
|
+
ref.current.submitCount += 1;
|
|
254
|
+
setSubmitCount(c => c + 1);
|
|
255
|
+
setValidating(true);
|
|
256
|
+
const errs = await runAll(currentValues);
|
|
257
|
+
setValidating(false);
|
|
258
|
+
const keys = new Set([...fieldOrder.current, ...Object.keys(errs)]);
|
|
259
|
+
const nextTouched = {
|
|
260
|
+
...ref.current.touched
|
|
261
|
+
};
|
|
262
|
+
keys.forEach(k => {
|
|
263
|
+
nextTouched[k] = true;
|
|
264
|
+
});
|
|
265
|
+
ref.current.touched = nextTouched;
|
|
266
|
+
ref.current.errors = errs;
|
|
267
|
+
setTouchedState(nextTouched);
|
|
268
|
+
setErrorsState(errs);
|
|
269
|
+
const firstError = fieldOrder.current.find(n => errs[n]) ?? Object.keys(errs).find(n => errs[n]);
|
|
270
|
+
if (firstError) {
|
|
271
|
+
fieldNodes.current.get(firstError)?.focus?.();
|
|
272
|
+
return;
|
|
273
|
+
}
|
|
274
|
+
setSubmitting(true);
|
|
275
|
+
try {
|
|
276
|
+
await cfg.onSubmit(currentValues, helpers);
|
|
277
|
+
} finally {
|
|
278
|
+
setSubmitting(false);
|
|
279
|
+
}
|
|
280
|
+
})();
|
|
281
|
+
}, [runAll, helpers]);
|
|
282
|
+
const uiErrors = useMemo(() => {
|
|
283
|
+
const gated = {};
|
|
284
|
+
for (const k of Object.keys(errors)) {
|
|
285
|
+
if (errors[k] && (touched[k] || submitCount > 0)) {
|
|
286
|
+
gated[k] = errors[k];
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
return gated;
|
|
290
|
+
}, [errors, touched, submitCount]);
|
|
291
|
+
const isValid = useMemo(() => {
|
|
292
|
+
const validateCfg = configRef.current.validate;
|
|
293
|
+
if (!validateCfg) {
|
|
294
|
+
return true;
|
|
295
|
+
}
|
|
296
|
+
// Form-level async fn can't run synchronously — fall back to known errors.
|
|
297
|
+
if (typeof validateCfg === 'function') {
|
|
298
|
+
return Object.values(errors).every(e => !e);
|
|
299
|
+
}
|
|
300
|
+
for (const name of Object.keys(validateCfg)) {
|
|
301
|
+
const value = getPath(values, name);
|
|
302
|
+
for (const rule of rulesFor(validateCfg, name)) {
|
|
303
|
+
const res = rule(value, values);
|
|
304
|
+
if (typeof res === 'string' && res) {
|
|
305
|
+
return false; // async rules (Promise) are skipped here
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
return true;
|
|
310
|
+
}, [values, errors]);
|
|
311
|
+
const dirty = useMemo(() => JSON.stringify(values) !== JSON.stringify(initialRef.current), [values]);
|
|
312
|
+
return {
|
|
313
|
+
values,
|
|
314
|
+
errors: uiErrors,
|
|
315
|
+
rawErrors: errors,
|
|
316
|
+
touched,
|
|
317
|
+
dirty,
|
|
318
|
+
isValid,
|
|
319
|
+
isSubmitting,
|
|
320
|
+
isValidating,
|
|
321
|
+
submitCount,
|
|
322
|
+
setFieldValue,
|
|
323
|
+
setFieldTouched,
|
|
324
|
+
setFieldError,
|
|
325
|
+
setValues,
|
|
326
|
+
setErrors,
|
|
327
|
+
reset,
|
|
328
|
+
validate,
|
|
329
|
+
validateField,
|
|
330
|
+
submit,
|
|
331
|
+
handleBlur,
|
|
332
|
+
focusNext,
|
|
333
|
+
focusPrev,
|
|
334
|
+
registerField,
|
|
335
|
+
getFieldState: name => {
|
|
336
|
+
const value = getPath(values, name);
|
|
337
|
+
const rawError = errors[name];
|
|
338
|
+
const isTouched = !!touched[name];
|
|
339
|
+
return {
|
|
340
|
+
value,
|
|
341
|
+
error: isTouched || submitCount > 0 ? rawError : undefined,
|
|
342
|
+
rawError,
|
|
343
|
+
touched: isTouched,
|
|
344
|
+
dirty: JSON.stringify(value) !== JSON.stringify(getPath(initialRef.current, name))
|
|
345
|
+
};
|
|
346
|
+
},
|
|
347
|
+
getFieldProps: name => ({
|
|
348
|
+
name,
|
|
349
|
+
value: getPath(values, name),
|
|
350
|
+
error: touched[name] || submitCount > 0 ? errors[name] : undefined,
|
|
351
|
+
touched: !!touched[name],
|
|
352
|
+
onChange: val => setFieldValue(name, val),
|
|
353
|
+
onChangeText: text => setFieldValue(name, text),
|
|
354
|
+
onBlur: () => handleBlur(name),
|
|
355
|
+
onFocus: () => handleFocus(name),
|
|
356
|
+
setValue: (val, sv) => setFieldValue(name, val, sv)
|
|
357
|
+
})
|
|
358
|
+
};
|
|
359
|
+
}
|
|
360
|
+
//# sourceMappingURL=useForm.js.map
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
export { useControllableState } from "./useControllableState.js";
|
|
4
|
+
export { useDebounce } from "./useDebounce.js";
|
|
5
|
+
export { usePressAnimation } from "./usePressAnimation.js";
|
|
6
|
+
export { useReducedMotion } from "./useReducedMotion.js";
|
|
7
|
+
export { useToggle } from "./useToggle.js";
|
|
8
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { useCallback, useRef, useState } from 'react';
|
|
4
|
+
/**
|
|
5
|
+
* Bridges controlled and uncontrolled usage for a value+onChange pair. When
|
|
6
|
+
* `value` is provided the component is controlled (the hook just forwards it
|
|
7
|
+
* and calls `onChange`); otherwise the hook owns the state, seeded from
|
|
8
|
+
* `defaultValue`. The controlled/uncontrolled decision is locked on first
|
|
9
|
+
* render so a component never flips modes mid-life.
|
|
10
|
+
*/
|
|
11
|
+
export function useControllableState({
|
|
12
|
+
value,
|
|
13
|
+
defaultValue,
|
|
14
|
+
onChange
|
|
15
|
+
}) {
|
|
16
|
+
const isControlledRef = useRef(value !== undefined);
|
|
17
|
+
const isControlled = isControlledRef.current;
|
|
18
|
+
const [internal, setInternal] = useState(defaultValue);
|
|
19
|
+
const current = isControlled ? value : internal;
|
|
20
|
+
const setValue = useCallback(next => {
|
|
21
|
+
if (!isControlled) {
|
|
22
|
+
setInternal(next);
|
|
23
|
+
}
|
|
24
|
+
onChange?.(next);
|
|
25
|
+
}, [isControlled, onChange]);
|
|
26
|
+
return [current, setValue];
|
|
27
|
+
}
|
|
28
|
+
//# sourceMappingURL=useControllableState.js.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { useEffect, useState } from 'react';
|
|
4
|
+
export const useDebounce = (value, delay = 300) => {
|
|
5
|
+
const [debounced, setDebounced] = useState(value);
|
|
6
|
+
useEffect(() => {
|
|
7
|
+
const handle = setTimeout(() => setDebounced(value), delay);
|
|
8
|
+
return () => clearTimeout(handle);
|
|
9
|
+
}, [value, delay]);
|
|
10
|
+
return debounced;
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=useDebounce.js.map
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { useCallback, useRef } from 'react';
|
|
4
|
+
import { Animated, Easing } from 'react-native';
|
|
5
|
+
import { useTheme } from "../theme/index.js";
|
|
6
|
+
export const usePressAnimation = ({
|
|
7
|
+
scaleTo = 0.97,
|
|
8
|
+
pressDuration,
|
|
9
|
+
enabled = true
|
|
10
|
+
} = {}) => {
|
|
11
|
+
const theme = useTheme();
|
|
12
|
+
const scale = useRef(new Animated.Value(1)).current;
|
|
13
|
+
const pressIn = useCallback(() => {
|
|
14
|
+
if (!enabled) {
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
Animated.timing(scale, {
|
|
18
|
+
toValue: scaleTo,
|
|
19
|
+
duration: pressDuration ?? theme.motion.duration.fast,
|
|
20
|
+
easing: Easing.bezier(...theme.motion.easing.standard),
|
|
21
|
+
useNativeDriver: true
|
|
22
|
+
}).start();
|
|
23
|
+
}, [enabled, scale, scaleTo, pressDuration, theme]);
|
|
24
|
+
const pressOut = useCallback(() => {
|
|
25
|
+
if (!enabled) {
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
Animated.spring(scale, {
|
|
29
|
+
toValue: 1,
|
|
30
|
+
damping: theme.motion.spring.snappy.damping,
|
|
31
|
+
stiffness: theme.motion.spring.snappy.stiffness,
|
|
32
|
+
mass: theme.motion.spring.snappy.mass,
|
|
33
|
+
useNativeDriver: true
|
|
34
|
+
}).start();
|
|
35
|
+
}, [enabled, scale, theme]);
|
|
36
|
+
return {
|
|
37
|
+
scale,
|
|
38
|
+
pressIn,
|
|
39
|
+
pressOut
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
//# sourceMappingURL=usePressAnimation.js.map
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { useEffect, useState } from 'react';
|
|
4
|
+
import { AccessibilityInfo } from 'react-native';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Tracks the OS "Reduce Motion" accessibility setting. The library's
|
|
8
|
+
* ThemeProvider uses this to collapse `theme.motion` (durations → 0, springs →
|
|
9
|
+
* near-instant) so animations don't trigger vestibular discomfort; consumers
|
|
10
|
+
* can also read it directly to swap an animated path for a static one.
|
|
11
|
+
*/
|
|
12
|
+
export const useReducedMotion = () => {
|
|
13
|
+
const [reduced, setReduced] = useState(false);
|
|
14
|
+
useEffect(() => {
|
|
15
|
+
let mounted = true;
|
|
16
|
+
AccessibilityInfo.isReduceMotionEnabled().then(value => {
|
|
17
|
+
if (mounted) {
|
|
18
|
+
setReduced(value);
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
const sub = AccessibilityInfo.addEventListener('reduceMotionChanged', value => setReduced(value));
|
|
22
|
+
return () => {
|
|
23
|
+
mounted = false;
|
|
24
|
+
sub.remove();
|
|
25
|
+
};
|
|
26
|
+
}, []);
|
|
27
|
+
return reduced;
|
|
28
|
+
};
|
|
29
|
+
//# sourceMappingURL=useReducedMotion.js.map
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { useCallback, useState } from 'react';
|
|
4
|
+
export const useToggle = (initial = false) => {
|
|
5
|
+
const [value, setValue] = useState(initial);
|
|
6
|
+
const toggle = useCallback(() => setValue(v => !v), []);
|
|
7
|
+
const setOn = useCallback(() => setValue(true), []);
|
|
8
|
+
const setOff = useCallback(() => setValue(false), []);
|
|
9
|
+
return {
|
|
10
|
+
value,
|
|
11
|
+
toggle,
|
|
12
|
+
setOn,
|
|
13
|
+
setOff,
|
|
14
|
+
setValue
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
//# sourceMappingURL=useToggle.js.map
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// Components
|
|
4
|
+
export * from "./components/index.js";
|
|
5
|
+
// Form engine (dependency-free; replaces Formik + Yup)
|
|
6
|
+
export { deletePath, Form, getPath, rules, setPath, useField, useFieldArray, useForm, useFormContext, useOptionalFormContext } from "./form/index.js";
|
|
7
|
+
// Hooks
|
|
8
|
+
export { useControllableState, useDebounce, usePressAnimation, useReducedMotion, useToggle } from "./hooks/index.js";
|
|
9
|
+
// Initialization
|
|
10
|
+
export { initUI } from "./initUI.js";
|
|
11
|
+
// Network UI
|
|
12
|
+
export { NetworkStatusBanner } from "./network/index.js";
|
|
13
|
+
// Theme
|
|
14
|
+
export { darkTheme, getColorMode, getTheme, lightTheme, mergeTheme, resetTheme, setColorMode, setTheme, subscribeTheme, ThemeProvider, useTheme, useThemeMode } from "./theme/index.js";
|
|
15
|
+
// Utils
|
|
16
|
+
export { Breakpoints, configureFeedback, feedback, hapticForIntent, isFeedbackEnabled, isScreenSize, isTablet, Margin, Padding, Responsive, ScreenDimensions, Spacing, setHapticImplementation, shadowStyle, triggerHaptic, warnUnknownProps } from "./utils/index.js";
|
|
17
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { setColorMode, setTheme } from "./theme/index.js";
|
|
4
|
+
/**
|
|
5
|
+
* Configure the global functional theme API used outside of React tree
|
|
6
|
+
* (use ThemeProvider for React-tree consumers; both can coexist).
|
|
7
|
+
*/
|
|
8
|
+
export const initUI = (options = {}) => {
|
|
9
|
+
if (options.defaultMode) {
|
|
10
|
+
setColorMode(options.defaultMode);
|
|
11
|
+
}
|
|
12
|
+
if (options.light) {
|
|
13
|
+
setTheme(options.light, 'light');
|
|
14
|
+
}
|
|
15
|
+
if (options.dark) {
|
|
16
|
+
setTheme(options.dark, 'dark');
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=initUI.js.map
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { useNetworkStatus } from '@webority-technologies/mobile-core';
|
|
4
|
+
import React, { useEffect, useMemo, useRef } from 'react';
|
|
5
|
+
import { Animated, StyleSheet, Text } from 'react-native';
|
|
6
|
+
import { useTheme } from "../theme/index.js";
|
|
7
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
8
|
+
/**
|
|
9
|
+
* A subtle animated banner that slides in when the device goes offline.
|
|
10
|
+
* Mount once near the app root (above your navigation tree).
|
|
11
|
+
*/
|
|
12
|
+
export const NetworkStatusBanner = ({
|
|
13
|
+
message = 'You are offline. Some features may be unavailable.',
|
|
14
|
+
position = 'top',
|
|
15
|
+
style,
|
|
16
|
+
disabled = false
|
|
17
|
+
}) => {
|
|
18
|
+
const theme = useTheme();
|
|
19
|
+
const {
|
|
20
|
+
isConnected,
|
|
21
|
+
isInternetReachable
|
|
22
|
+
} = useNetworkStatus();
|
|
23
|
+
const offline = !disabled && (!isConnected || isInternetReachable === false);
|
|
24
|
+
const slide = useRef(new Animated.Value(0)).current;
|
|
25
|
+
const opacity = useRef(new Animated.Value(0)).current;
|
|
26
|
+
useEffect(() => {
|
|
27
|
+
Animated.parallel([Animated.timing(slide, {
|
|
28
|
+
toValue: offline ? 1 : 0,
|
|
29
|
+
duration: theme.motion.duration.normal,
|
|
30
|
+
useNativeDriver: true
|
|
31
|
+
}), Animated.timing(opacity, {
|
|
32
|
+
toValue: offline ? 1 : 0,
|
|
33
|
+
duration: theme.motion.duration.normal,
|
|
34
|
+
useNativeDriver: true
|
|
35
|
+
})]).start();
|
|
36
|
+
}, [offline, slide, opacity, theme.motion.duration.normal]);
|
|
37
|
+
const styles = useMemo(() => buildStyles(), []);
|
|
38
|
+
const translateY = slide.interpolate({
|
|
39
|
+
inputRange: [0, 1],
|
|
40
|
+
outputRange: [position === 'top' ? -56 : 56, 0]
|
|
41
|
+
});
|
|
42
|
+
return /*#__PURE__*/_jsx(Animated.View, {
|
|
43
|
+
pointerEvents: offline ? 'auto' : 'none',
|
|
44
|
+
accessibilityRole: "alert",
|
|
45
|
+
accessibilityLiveRegion: offline ? 'polite' : 'none',
|
|
46
|
+
style: [styles.container, position === 'top' ? styles.top : styles.bottom, {
|
|
47
|
+
backgroundColor: theme.colors.error,
|
|
48
|
+
opacity,
|
|
49
|
+
transform: [{
|
|
50
|
+
translateY
|
|
51
|
+
}]
|
|
52
|
+
}, style],
|
|
53
|
+
children: /*#__PURE__*/_jsx(Text, {
|
|
54
|
+
style: {
|
|
55
|
+
color: theme.colors.text.inverse,
|
|
56
|
+
fontSize: theme.typography.fontSize.sm,
|
|
57
|
+
fontWeight: theme.typography.fontWeight.semibold,
|
|
58
|
+
textAlign: 'center'
|
|
59
|
+
},
|
|
60
|
+
numberOfLines: 2,
|
|
61
|
+
children: message
|
|
62
|
+
})
|
|
63
|
+
});
|
|
64
|
+
};
|
|
65
|
+
const buildStyles = () => StyleSheet.create({
|
|
66
|
+
container: {
|
|
67
|
+
position: 'absolute',
|
|
68
|
+
left: 0,
|
|
69
|
+
right: 0,
|
|
70
|
+
paddingVertical: 10,
|
|
71
|
+
paddingHorizontal: 16,
|
|
72
|
+
zIndex: 1000,
|
|
73
|
+
elevation: 8
|
|
74
|
+
},
|
|
75
|
+
top: {
|
|
76
|
+
top: 0
|
|
77
|
+
},
|
|
78
|
+
bottom: {
|
|
79
|
+
bottom: 0
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
export default NetworkStatusBanner;
|
|
83
|
+
//# sourceMappingURL=NetworkStatusBanner.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"module"}
|