@jamadd/react-native-template-ui 0.1.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/LICENSE +20 -0
- package/README.md +272 -0
- package/lib/commonjs/components/btn/AnimatedPressable.js +14 -0
- package/lib/commonjs/components/btn/AnimatedPressable.js.map +1 -0
- package/lib/commonjs/components/btn/AnimatedThemedPressable.js +36 -0
- package/lib/commonjs/components/btn/AnimatedThemedPressable.js.map +1 -0
- package/lib/commonjs/components/btn/ThemedBtn.js +97 -0
- package/lib/commonjs/components/btn/ThemedBtn.js.map +1 -0
- package/lib/commonjs/components/btn/ThemedIconBtn.js +81 -0
- package/lib/commonjs/components/btn/ThemedIconBtn.js.map +1 -0
- package/lib/commonjs/components/btn/ThemedIconTextBtn.js +146 -0
- package/lib/commonjs/components/btn/ThemedIconTextBtn.js.map +1 -0
- package/lib/commonjs/components/btn/ThemedPressable.js +35 -0
- package/lib/commonjs/components/btn/ThemedPressable.js.map +1 -0
- package/lib/commonjs/components/icon/ThemedIcon.js +71 -0
- package/lib/commonjs/components/icon/ThemedIcon.js.map +1 -0
- package/lib/commonjs/components/list/List.js +143 -0
- package/lib/commonjs/components/list/List.js.map +1 -0
- package/lib/commonjs/components/loading/ThemedLoading.js +64 -0
- package/lib/commonjs/components/loading/ThemedLoading.js.map +1 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheet.js +80 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheet.js.map +1 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetContentGesture.js +34 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetContentGesture.js.map +1 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetHeader.js +119 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetHeader.js.map +1 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetListView.js +84 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetListView.js.map +1 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetListViewContent.js +57 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetListViewContent.js.map +1 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetOptList.js +82 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetOptList.js.map +1 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetOptListItem.js +67 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetOptListItem.js.map +1 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetOpts.js +92 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetOpts.js.map +1 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetScrollView.js +89 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetScrollView.js.map +1 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetScrollViewContent.js +64 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetScrollViewContent.js.map +1 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetWrap.js +167 -0
- package/lib/commonjs/components/overlay/actionSheet/ActionSheetWrap.js.map +1 -0
- package/lib/commonjs/components/overlay/alert/Alert.js +160 -0
- package/lib/commonjs/components/overlay/alert/Alert.js.map +1 -0
- package/lib/commonjs/components/overlay/alert/AlertBtn.js +82 -0
- package/lib/commonjs/components/overlay/alert/AlertBtn.js.map +1 -0
- package/lib/commonjs/components/overlay/alert/AlertBtns.js +71 -0
- package/lib/commonjs/components/overlay/alert/AlertBtns.js.map +1 -0
- package/lib/commonjs/components/overlay/alert/AlertContent.js +61 -0
- package/lib/commonjs/components/overlay/alert/AlertContent.js.map +1 -0
- package/lib/commonjs/components/overlay/alert/AlertWrap.js +157 -0
- package/lib/commonjs/components/overlay/alert/AlertWrap.js.map +1 -0
- package/lib/commonjs/components/overlay/modal/ThemedLoadingModal.js +122 -0
- package/lib/commonjs/components/overlay/modal/ThemedLoadingModal.js.map +1 -0
- package/lib/commonjs/components/overlay/modal/ThemedModal.js +94 -0
- package/lib/commonjs/components/overlay/modal/ThemedModal.js.map +1 -0
- package/lib/commonjs/components/overlay/toast/ThemedToast.js +362 -0
- package/lib/commonjs/components/overlay/toast/ThemedToast.js.map +1 -0
- package/lib/commonjs/components/provider/GestureProvider.js +25 -0
- package/lib/commonjs/components/provider/GestureProvider.js.map +1 -0
- package/lib/commonjs/components/provider/InsetsProvider.js +25 -0
- package/lib/commonjs/components/provider/InsetsProvider.js.map +1 -0
- package/lib/commonjs/components/provider/ReactNativeTemplateProviders.js +38 -0
- package/lib/commonjs/components/provider/ReactNativeTemplateProviders.js.map +1 -0
- package/lib/commonjs/components/provider/ThemeProvider.js +25 -0
- package/lib/commonjs/components/provider/ThemeProvider.js.map +1 -0
- package/lib/commonjs/components/separator/ThemedSeparator.js +66 -0
- package/lib/commonjs/components/separator/ThemedSeparator.js.map +1 -0
- package/lib/commonjs/components/switch/ThemedSwitch.js +114 -0
- package/lib/commonjs/components/switch/ThemedSwitch.js.map +1 -0
- package/lib/commonjs/components/text/Text.js +12 -0
- package/lib/commonjs/components/text/Text.js.map +1 -0
- package/lib/commonjs/components/text/ThemedIconText.js +143 -0
- package/lib/commonjs/components/text/ThemedIconText.js.map +1 -0
- package/lib/commonjs/components/text/ThemedText.js +26 -0
- package/lib/commonjs/components/text/ThemedText.js.map +1 -0
- package/lib/commonjs/components/view/AnimatedBox.js +14 -0
- package/lib/commonjs/components/view/AnimatedBox.js.map +1 -0
- package/lib/commonjs/components/view/AnimatedThemedView.js +45 -0
- package/lib/commonjs/components/view/AnimatedThemedView.js.map +1 -0
- package/lib/commonjs/components/view/Box.js +12 -0
- package/lib/commonjs/components/view/Box.js.map +1 -0
- package/lib/commonjs/components/view/ThemedScreenWrap.js +124 -0
- package/lib/commonjs/components/view/ThemedScreenWrap.js.map +1 -0
- package/lib/commonjs/components/view/ThemedScreenWrap.web.js +126 -0
- package/lib/commonjs/components/view/ThemedScreenWrap.web.js.map +1 -0
- package/lib/commonjs/components/view/ThemedScrollView.js +141 -0
- package/lib/commonjs/components/view/ThemedScrollView.js.map +1 -0
- package/lib/commonjs/components/view/ThemedView.js +45 -0
- package/lib/commonjs/components/view/ThemedView.js.map +1 -0
- package/lib/commonjs/hooks/btn.js +158 -0
- package/lib/commonjs/hooks/btn.js.map +1 -0
- package/lib/commonjs/hooks/list.js +66 -0
- package/lib/commonjs/hooks/list.js.map +1 -0
- package/lib/commonjs/hooks/overlay.js +656 -0
- package/lib/commonjs/hooks/overlay.js.map +1 -0
- package/lib/commonjs/hooks/reanimated.js +11 -0
- package/lib/commonjs/hooks/reanimated.js.map +1 -0
- package/lib/commonjs/hooks/separator.js +22 -0
- package/lib/commonjs/hooks/separator.js.map +1 -0
- package/lib/commonjs/hooks/style.js +92 -0
- package/lib/commonjs/hooks/style.js.map +1 -0
- package/lib/commonjs/hooks/switch.js +209 -0
- package/lib/commonjs/hooks/switch.js.map +1 -0
- package/lib/commonjs/hooks/theme.js +71 -0
- package/lib/commonjs/hooks/theme.js.map +1 -0
- package/lib/commonjs/hooks/view.js +11 -0
- package/lib/commonjs/hooks/view.js.map +1 -0
- package/lib/commonjs/index.js +533 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/test/utils/const.js +19 -0
- package/lib/commonjs/test/utils/const.js.map +1 -0
- package/lib/commonjs/test/utils/func.js +60 -0
- package/lib/commonjs/test/utils/func.js.map +1 -0
- package/lib/commonjs/test/utils/testingLib.js +38 -0
- package/lib/commonjs/test/utils/testingLib.js.map +1 -0
- package/lib/commonjs/types/btn.js +6 -0
- package/lib/commonjs/types/btn.js.map +1 -0
- package/lib/commonjs/types/global.d.js +6 -0
- package/lib/commonjs/types/global.d.js.map +1 -0
- package/lib/commonjs/types/icon.js +6 -0
- package/lib/commonjs/types/icon.js.map +1 -0
- package/lib/commonjs/types/list.js +6 -0
- package/lib/commonjs/types/list.js.map +1 -0
- package/lib/commonjs/types/loading.js +6 -0
- package/lib/commonjs/types/loading.js.map +1 -0
- package/lib/commonjs/types/overlay.js +6 -0
- package/lib/commonjs/types/overlay.js.map +1 -0
- package/lib/commonjs/types/provider.js +6 -0
- package/lib/commonjs/types/provider.js.map +1 -0
- package/lib/commonjs/types/react.js +6 -0
- package/lib/commonjs/types/react.js.map +1 -0
- package/lib/commonjs/types/reanimated.js +6 -0
- package/lib/commonjs/types/reanimated.js.map +1 -0
- package/lib/commonjs/types/separator.js +6 -0
- package/lib/commonjs/types/separator.js.map +1 -0
- package/lib/commonjs/types/style.js +6 -0
- package/lib/commonjs/types/style.js.map +1 -0
- package/lib/commonjs/types/switch.js +6 -0
- package/lib/commonjs/types/switch.js.map +1 -0
- package/lib/commonjs/types/text.js +6 -0
- package/lib/commonjs/types/text.js.map +1 -0
- package/lib/commonjs/types/theme.js +6 -0
- package/lib/commonjs/types/theme.js.map +1 -0
- package/lib/commonjs/types/view.js +6 -0
- package/lib/commonjs/types/view.js.map +1 -0
- package/lib/commonjs/utils/btn/const.js +17 -0
- package/lib/commonjs/utils/btn/const.js.map +1 -0
- package/lib/commonjs/utils/overlay/const.js +73 -0
- package/lib/commonjs/utils/overlay/const.js.map +1 -0
- package/lib/commonjs/utils/overlay/func.js +63 -0
- package/lib/commonjs/utils/overlay/func.js.map +1 -0
- package/lib/commonjs/utils/reanimated/func.js +77 -0
- package/lib/commonjs/utils/reanimated/func.js.map +1 -0
- package/lib/commonjs/utils/style/const.js +12 -0
- package/lib/commonjs/utils/style/const.js.map +1 -0
- package/lib/commonjs/utils/style/func.js +35 -0
- package/lib/commonjs/utils/style/func.js.map +1 -0
- package/lib/commonjs/utils/switch/const.js +9 -0
- package/lib/commonjs/utils/switch/const.js.map +1 -0
- package/lib/commonjs/utils/theme/const.js +189 -0
- package/lib/commonjs/utils/theme/const.js.map +1 -0
- package/lib/commonjs/utils/theme/restyle.js +22 -0
- package/lib/commonjs/utils/theme/restyle.js.map +1 -0
- package/lib/module/components/btn/AnimatedPressable.js +8 -0
- package/lib/module/components/btn/AnimatedPressable.js.map +1 -0
- package/lib/module/components/btn/AnimatedThemedPressable.js +31 -0
- package/lib/module/components/btn/AnimatedThemedPressable.js.map +1 -0
- package/lib/module/components/btn/ThemedBtn.js +92 -0
- package/lib/module/components/btn/ThemedBtn.js.map +1 -0
- package/lib/module/components/btn/ThemedIconBtn.js +76 -0
- package/lib/module/components/btn/ThemedIconBtn.js.map +1 -0
- package/lib/module/components/btn/ThemedIconTextBtn.js +141 -0
- package/lib/module/components/btn/ThemedIconTextBtn.js.map +1 -0
- package/lib/module/components/btn/ThemedPressable.js +31 -0
- package/lib/module/components/btn/ThemedPressable.js.map +1 -0
- package/lib/module/components/icon/ThemedIcon.js +66 -0
- package/lib/module/components/icon/ThemedIcon.js.map +1 -0
- package/lib/module/components/list/List.js +139 -0
- package/lib/module/components/list/List.js.map +1 -0
- package/lib/module/components/loading/ThemedLoading.js +60 -0
- package/lib/module/components/loading/ThemedLoading.js.map +1 -0
- package/lib/module/components/overlay/actionSheet/ActionSheet.js +76 -0
- package/lib/module/components/overlay/actionSheet/ActionSheet.js.map +1 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetContentGesture.js +29 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetContentGesture.js.map +1 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetHeader.js +113 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetHeader.js.map +1 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetListView.js +79 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetListView.js.map +1 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetListViewContent.js +52 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetListViewContent.js.map +1 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetOptList.js +76 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetOptList.js.map +1 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetOptListItem.js +61 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetOptListItem.js.map +1 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetOpts.js +86 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetOpts.js.map +1 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetScrollView.js +83 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetScrollView.js.map +1 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetScrollViewContent.js +58 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetScrollViewContent.js.map +1 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetWrap.js +162 -0
- package/lib/module/components/overlay/actionSheet/ActionSheetWrap.js.map +1 -0
- package/lib/module/components/overlay/alert/Alert.js +155 -0
- package/lib/module/components/overlay/alert/Alert.js.map +1 -0
- package/lib/module/components/overlay/alert/AlertBtn.js +77 -0
- package/lib/module/components/overlay/alert/AlertBtn.js.map +1 -0
- package/lib/module/components/overlay/alert/AlertBtns.js +66 -0
- package/lib/module/components/overlay/alert/AlertBtns.js.map +1 -0
- package/lib/module/components/overlay/alert/AlertContent.js +56 -0
- package/lib/module/components/overlay/alert/AlertContent.js.map +1 -0
- package/lib/module/components/overlay/alert/AlertWrap.js +152 -0
- package/lib/module/components/overlay/alert/AlertWrap.js.map +1 -0
- package/lib/module/components/overlay/modal/ThemedLoadingModal.js +117 -0
- package/lib/module/components/overlay/modal/ThemedLoadingModal.js.map +1 -0
- package/lib/module/components/overlay/modal/ThemedModal.js +89 -0
- package/lib/module/components/overlay/modal/ThemedModal.js.map +1 -0
- package/lib/module/components/overlay/toast/ThemedToast.js +358 -0
- package/lib/module/components/overlay/toast/ThemedToast.js.map +1 -0
- package/lib/module/components/provider/GestureProvider.js +21 -0
- package/lib/module/components/provider/GestureProvider.js.map +1 -0
- package/lib/module/components/provider/InsetsProvider.js +21 -0
- package/lib/module/components/provider/InsetsProvider.js.map +1 -0
- package/lib/module/components/provider/ReactNativeTemplateProviders.js +33 -0
- package/lib/module/components/provider/ReactNativeTemplateProviders.js.map +1 -0
- package/lib/module/components/provider/ThemeProvider.js +21 -0
- package/lib/module/components/provider/ThemeProvider.js.map +1 -0
- package/lib/module/components/separator/ThemedSeparator.js +61 -0
- package/lib/module/components/separator/ThemedSeparator.js.map +1 -0
- package/lib/module/components/switch/ThemedSwitch.js +109 -0
- package/lib/module/components/switch/ThemedSwitch.js.map +1 -0
- package/lib/module/components/text/Text.js +7 -0
- package/lib/module/components/text/Text.js.map +1 -0
- package/lib/module/components/text/ThemedIconText.js +138 -0
- package/lib/module/components/text/ThemedIconText.js.map +1 -0
- package/lib/module/components/text/ThemedText.js +21 -0
- package/lib/module/components/text/ThemedText.js.map +1 -0
- package/lib/module/components/view/AnimatedBox.js +8 -0
- package/lib/module/components/view/AnimatedBox.js.map +1 -0
- package/lib/module/components/view/AnimatedThemedView.js +40 -0
- package/lib/module/components/view/AnimatedThemedView.js.map +1 -0
- package/lib/module/components/view/Box.js +7 -0
- package/lib/module/components/view/Box.js.map +1 -0
- package/lib/module/components/view/ThemedScreenWrap.js +119 -0
- package/lib/module/components/view/ThemedScreenWrap.js.map +1 -0
- package/lib/module/components/view/ThemedScreenWrap.web.js +121 -0
- package/lib/module/components/view/ThemedScreenWrap.web.js.map +1 -0
- package/lib/module/components/view/ThemedScrollView.js +137 -0
- package/lib/module/components/view/ThemedScrollView.js.map +1 -0
- package/lib/module/components/view/ThemedView.js +40 -0
- package/lib/module/components/view/ThemedView.js.map +1 -0
- package/lib/module/hooks/btn.js +153 -0
- package/lib/module/hooks/btn.js.map +1 -0
- package/lib/module/hooks/list.js +61 -0
- package/lib/module/hooks/list.js.map +1 -0
- package/lib/module/hooks/overlay.js +641 -0
- package/lib/module/hooks/overlay.js.map +1 -0
- package/lib/module/hooks/reanimated.js +7 -0
- package/lib/module/hooks/reanimated.js.map +1 -0
- package/lib/module/hooks/separator.js +19 -0
- package/lib/module/hooks/separator.js.map +1 -0
- package/lib/module/hooks/style.js +82 -0
- package/lib/module/hooks/style.js.map +1 -0
- package/lib/module/hooks/switch.js +206 -0
- package/lib/module/hooks/switch.js.map +1 -0
- package/lib/module/hooks/theme.js +58 -0
- package/lib/module/hooks/theme.js.map +1 -0
- package/lib/module/hooks/view.js +7 -0
- package/lib/module/hooks/view.js.map +1 -0
- package/lib/module/index.js +55 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/module/test/utils/const.js +13 -0
- package/lib/module/test/utils/const.js.map +1 -0
- package/lib/module/test/utils/func.js +50 -0
- package/lib/module/test/utils/func.js.map +1 -0
- package/lib/module/test/utils/testingLib.js +19 -0
- package/lib/module/test/utils/testingLib.js.map +1 -0
- package/lib/module/types/btn.js +4 -0
- package/lib/module/types/btn.js.map +1 -0
- package/lib/module/types/global.d.js +4 -0
- package/lib/module/types/global.d.js.map +1 -0
- package/lib/module/types/icon.js +4 -0
- package/lib/module/types/icon.js.map +1 -0
- package/lib/module/types/list.js +4 -0
- package/lib/module/types/list.js.map +1 -0
- package/lib/module/types/loading.js +4 -0
- package/lib/module/types/loading.js.map +1 -0
- package/lib/module/types/overlay.js +4 -0
- package/lib/module/types/overlay.js.map +1 -0
- package/lib/module/types/provider.js +4 -0
- package/lib/module/types/provider.js.map +1 -0
- package/lib/module/types/react.js +4 -0
- package/lib/module/types/react.js.map +1 -0
- package/lib/module/types/reanimated.js +4 -0
- package/lib/module/types/reanimated.js.map +1 -0
- package/lib/module/types/separator.js +4 -0
- package/lib/module/types/separator.js.map +1 -0
- package/lib/module/types/style.js +4 -0
- package/lib/module/types/style.js.map +1 -0
- package/lib/module/types/switch.js +4 -0
- package/lib/module/types/switch.js.map +1 -0
- package/lib/module/types/text.js +4 -0
- package/lib/module/types/text.js.map +1 -0
- package/lib/module/types/theme.js +4 -0
- package/lib/module/types/theme.js.map +1 -0
- package/lib/module/types/view.js +4 -0
- package/lib/module/types/view.js.map +1 -0
- package/lib/module/utils/btn/const.js +13 -0
- package/lib/module/utils/btn/const.js.map +1 -0
- package/lib/module/utils/overlay/const.js +72 -0
- package/lib/module/utils/overlay/const.js.map +1 -0
- package/lib/module/utils/overlay/func.js +52 -0
- package/lib/module/utils/overlay/func.js.map +1 -0
- package/lib/module/utils/reanimated/func.js +73 -0
- package/lib/module/utils/reanimated/func.js.map +1 -0
- package/lib/module/utils/style/const.js +8 -0
- package/lib/module/utils/style/const.js.map +1 -0
- package/lib/module/utils/style/func.js +25 -0
- package/lib/module/utils/style/func.js.map +1 -0
- package/lib/module/utils/switch/const.js +5 -0
- package/lib/module/utils/switch/const.js.map +1 -0
- package/lib/module/utils/theme/const.js +192 -0
- package/lib/module/utils/theme/const.js.map +1 -0
- package/lib/module/utils/theme/restyle.js +17 -0
- package/lib/module/utils/theme/restyle.js.map +1 -0
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/src/components/btn/AnimatedPressable.d.ts +3 -0
- package/lib/typescript/commonjs/src/components/btn/AnimatedPressable.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/btn/AnimatedThemedPressable.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/btn/AnimatedThemedPressable.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/btn/ThemedBtn.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/btn/ThemedBtn.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/btn/ThemedIconBtn.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/btn/ThemedIconBtn.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/btn/ThemedIconTextBtn.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/btn/ThemedIconTextBtn.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/btn/ThemedPressable.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/btn/ThemedPressable.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/icon/ThemedIcon.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/icon/ThemedIcon.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/list/List.d.ts +4 -0
- package/lib/typescript/commonjs/src/components/list/List.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/loading/ThemedLoading.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/loading/ThemedLoading.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheet.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetContentGesture.d.ts +4 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetContentGesture.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetHeader.d.ts +4 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetHeader.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetListView.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetListView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetListViewContent.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetListViewContent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetOptList.d.ts +4 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetOptList.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetOptListItem.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetOptListItem.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetOpts.d.ts +4 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetOpts.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetScrollView.d.ts +4 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetScrollView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetScrollViewContent.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetScrollViewContent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetWrap.d.ts +4 -0
- package/lib/typescript/commonjs/src/components/overlay/actionSheet/ActionSheetWrap.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/alert/Alert.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/overlay/alert/Alert.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/alert/AlertBtn.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/overlay/alert/AlertBtn.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/alert/AlertBtns.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/overlay/alert/AlertBtns.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/alert/AlertContent.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/overlay/alert/AlertContent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/alert/AlertWrap.d.ts +12 -0
- package/lib/typescript/commonjs/src/components/overlay/alert/AlertWrap.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/modal/ThemedLoadingModal.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/overlay/modal/ThemedLoadingModal.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/modal/ThemedModal.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/overlay/modal/ThemedModal.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/overlay/toast/ThemedToast.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/overlay/toast/ThemedToast.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/provider/GestureProvider.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/provider/GestureProvider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/provider/InsetsProvider.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/provider/InsetsProvider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/provider/ReactNativeTemplateProviders.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/provider/ReactNativeTemplateProviders.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/provider/ThemeProvider.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/provider/ThemeProvider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/separator/ThemedSeparator.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/separator/ThemedSeparator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/switch/ThemedSwitch.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/switch/ThemedSwitch.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/text/Text.d.ts +1951 -0
- package/lib/typescript/commonjs/src/components/text/Text.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/text/ThemedIconText.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/text/ThemedIconText.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/text/ThemedText.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/text/ThemedText.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/view/AnimatedBox.d.ts +1009 -0
- package/lib/typescript/commonjs/src/components/view/AnimatedBox.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/view/AnimatedThemedView.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/view/AnimatedThemedView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/view/Box.d.ts +2017 -0
- package/lib/typescript/commonjs/src/components/view/Box.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/view/ThemedScreenWrap.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/view/ThemedScreenWrap.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/view/ThemedScreenWrap.web.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/view/ThemedScreenWrap.web.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/view/ThemedScrollView.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/view/ThemedScrollView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/view/ThemedView.d.ts +5 -0
- package/lib/typescript/commonjs/src/components/view/ThemedView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hooks/btn.d.ts +1647 -0
- package/lib/typescript/commonjs/src/hooks/btn.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hooks/list.d.ts +4 -0
- package/lib/typescript/commonjs/src/hooks/list.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hooks/overlay.d.ts +16 -0
- package/lib/typescript/commonjs/src/hooks/overlay.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hooks/reanimated.d.ts +3 -0
- package/lib/typescript/commonjs/src/hooks/reanimated.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hooks/separator.d.ts +5 -0
- package/lib/typescript/commonjs/src/hooks/separator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hooks/style.d.ts +11 -0
- package/lib/typescript/commonjs/src/hooks/style.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hooks/switch.d.ts +2 -0
- package/lib/typescript/commonjs/src/hooks/switch.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hooks/theme.d.ts +217 -0
- package/lib/typescript/commonjs/src/hooks/theme.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hooks/view.d.ts +3 -0
- package/lib/typescript/commonjs/src/hooks/view.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/index.d.ts +53 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/test/utils/const.d.ts +4 -0
- package/lib/typescript/commonjs/src/test/utils/const.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/test/utils/func.d.ts +106 -0
- package/lib/typescript/commonjs/src/test/utils/func.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/test/utils/testingLib.d.ts +6 -0
- package/lib/typescript/commonjs/src/test/utils/testingLib.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/btn.d.ts +24 -0
- package/lib/typescript/commonjs/src/types/btn.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/icon.d.ts +10 -0
- package/lib/typescript/commonjs/src/types/icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/list.d.ts +29 -0
- package/lib/typescript/commonjs/src/types/list.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/loading.d.ts +12 -0
- package/lib/typescript/commonjs/src/types/loading.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/overlay.d.ts +89 -0
- package/lib/typescript/commonjs/src/types/overlay.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/provider.d.ts +6 -0
- package/lib/typescript/commonjs/src/types/provider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/react.d.ts +6 -0
- package/lib/typescript/commonjs/src/types/react.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/reanimated.d.ts +5 -0
- package/lib/typescript/commonjs/src/types/reanimated.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/separator.d.ts +7 -0
- package/lib/typescript/commonjs/src/types/separator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/style.d.ts +18 -0
- package/lib/typescript/commonjs/src/types/style.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/switch.d.ts +27 -0
- package/lib/typescript/commonjs/src/types/switch.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/text.d.ts +15 -0
- package/lib/typescript/commonjs/src/types/text.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/theme.d.ts +15 -0
- package/lib/typescript/commonjs/src/types/theme.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types/view.d.ts +19 -0
- package/lib/typescript/commonjs/src/types/view.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/btn/const.d.ts +9 -0
- package/lib/typescript/commonjs/src/utils/btn/const.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/overlay/const.d.ts +24 -0
- package/lib/typescript/commonjs/src/utils/overlay/const.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/overlay/func.d.ts +11 -0
- package/lib/typescript/commonjs/src/utils/overlay/func.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/reanimated/func.d.ts +2 -0
- package/lib/typescript/commonjs/src/utils/reanimated/func.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/style/const.d.ts +5 -0
- package/lib/typescript/commonjs/src/utils/style/const.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/style/func.d.ts +9 -0
- package/lib/typescript/commonjs/src/utils/style/func.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/switch/const.d.ts +2 -0
- package/lib/typescript/commonjs/src/utils/switch/const.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/theme/const.d.ts +120 -0
- package/lib/typescript/commonjs/src/utils/theme/const.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/theme/restyle.d.ts +1184 -0
- package/lib/typescript/commonjs/src/utils/theme/restyle.d.ts.map +1 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/src/components/btn/AnimatedPressable.d.ts +3 -0
- package/lib/typescript/module/src/components/btn/AnimatedPressable.d.ts.map +1 -0
- package/lib/typescript/module/src/components/btn/AnimatedThemedPressable.d.ts +5 -0
- package/lib/typescript/module/src/components/btn/AnimatedThemedPressable.d.ts.map +1 -0
- package/lib/typescript/module/src/components/btn/ThemedBtn.d.ts +5 -0
- package/lib/typescript/module/src/components/btn/ThemedBtn.d.ts.map +1 -0
- package/lib/typescript/module/src/components/btn/ThemedIconBtn.d.ts +5 -0
- package/lib/typescript/module/src/components/btn/ThemedIconBtn.d.ts.map +1 -0
- package/lib/typescript/module/src/components/btn/ThemedIconTextBtn.d.ts +5 -0
- package/lib/typescript/module/src/components/btn/ThemedIconTextBtn.d.ts.map +1 -0
- package/lib/typescript/module/src/components/btn/ThemedPressable.d.ts +5 -0
- package/lib/typescript/module/src/components/btn/ThemedPressable.d.ts.map +1 -0
- package/lib/typescript/module/src/components/icon/ThemedIcon.d.ts +5 -0
- package/lib/typescript/module/src/components/icon/ThemedIcon.d.ts.map +1 -0
- package/lib/typescript/module/src/components/list/List.d.ts +4 -0
- package/lib/typescript/module/src/components/list/List.d.ts.map +1 -0
- package/lib/typescript/module/src/components/loading/ThemedLoading.d.ts +5 -0
- package/lib/typescript/module/src/components/loading/ThemedLoading.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheet.d.ts +5 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheet.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetContentGesture.d.ts +4 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetContentGesture.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetHeader.d.ts +4 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetHeader.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetListView.d.ts +5 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetListView.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetListViewContent.d.ts +5 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetListViewContent.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetOptList.d.ts +4 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetOptList.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetOptListItem.d.ts +5 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetOptListItem.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetOpts.d.ts +4 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetOpts.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetScrollView.d.ts +4 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetScrollView.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetScrollViewContent.d.ts +5 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetScrollViewContent.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetWrap.d.ts +4 -0
- package/lib/typescript/module/src/components/overlay/actionSheet/ActionSheetWrap.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/alert/Alert.d.ts +5 -0
- package/lib/typescript/module/src/components/overlay/alert/Alert.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/alert/AlertBtn.d.ts +5 -0
- package/lib/typescript/module/src/components/overlay/alert/AlertBtn.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/alert/AlertBtns.d.ts +5 -0
- package/lib/typescript/module/src/components/overlay/alert/AlertBtns.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/alert/AlertContent.d.ts +5 -0
- package/lib/typescript/module/src/components/overlay/alert/AlertContent.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/alert/AlertWrap.d.ts +12 -0
- package/lib/typescript/module/src/components/overlay/alert/AlertWrap.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/modal/ThemedLoadingModal.d.ts +5 -0
- package/lib/typescript/module/src/components/overlay/modal/ThemedLoadingModal.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/modal/ThemedModal.d.ts +5 -0
- package/lib/typescript/module/src/components/overlay/modal/ThemedModal.d.ts.map +1 -0
- package/lib/typescript/module/src/components/overlay/toast/ThemedToast.d.ts +5 -0
- package/lib/typescript/module/src/components/overlay/toast/ThemedToast.d.ts.map +1 -0
- package/lib/typescript/module/src/components/provider/GestureProvider.d.ts +5 -0
- package/lib/typescript/module/src/components/provider/GestureProvider.d.ts.map +1 -0
- package/lib/typescript/module/src/components/provider/InsetsProvider.d.ts +5 -0
- package/lib/typescript/module/src/components/provider/InsetsProvider.d.ts.map +1 -0
- package/lib/typescript/module/src/components/provider/ReactNativeTemplateProviders.d.ts +5 -0
- package/lib/typescript/module/src/components/provider/ReactNativeTemplateProviders.d.ts.map +1 -0
- package/lib/typescript/module/src/components/provider/ThemeProvider.d.ts +5 -0
- package/lib/typescript/module/src/components/provider/ThemeProvider.d.ts.map +1 -0
- package/lib/typescript/module/src/components/separator/ThemedSeparator.d.ts +5 -0
- package/lib/typescript/module/src/components/separator/ThemedSeparator.d.ts.map +1 -0
- package/lib/typescript/module/src/components/switch/ThemedSwitch.d.ts +5 -0
- package/lib/typescript/module/src/components/switch/ThemedSwitch.d.ts.map +1 -0
- package/lib/typescript/module/src/components/text/Text.d.ts +1951 -0
- package/lib/typescript/module/src/components/text/Text.d.ts.map +1 -0
- package/lib/typescript/module/src/components/text/ThemedIconText.d.ts +5 -0
- package/lib/typescript/module/src/components/text/ThemedIconText.d.ts.map +1 -0
- package/lib/typescript/module/src/components/text/ThemedText.d.ts +5 -0
- package/lib/typescript/module/src/components/text/ThemedText.d.ts.map +1 -0
- package/lib/typescript/module/src/components/view/AnimatedBox.d.ts +1009 -0
- package/lib/typescript/module/src/components/view/AnimatedBox.d.ts.map +1 -0
- package/lib/typescript/module/src/components/view/AnimatedThemedView.d.ts +5 -0
- package/lib/typescript/module/src/components/view/AnimatedThemedView.d.ts.map +1 -0
- package/lib/typescript/module/src/components/view/Box.d.ts +2017 -0
- package/lib/typescript/module/src/components/view/Box.d.ts.map +1 -0
- package/lib/typescript/module/src/components/view/ThemedScreenWrap.d.ts +5 -0
- package/lib/typescript/module/src/components/view/ThemedScreenWrap.d.ts.map +1 -0
- package/lib/typescript/module/src/components/view/ThemedScreenWrap.web.d.ts +5 -0
- package/lib/typescript/module/src/components/view/ThemedScreenWrap.web.d.ts.map +1 -0
- package/lib/typescript/module/src/components/view/ThemedScrollView.d.ts +5 -0
- package/lib/typescript/module/src/components/view/ThemedScrollView.d.ts.map +1 -0
- package/lib/typescript/module/src/components/view/ThemedView.d.ts +5 -0
- package/lib/typescript/module/src/components/view/ThemedView.d.ts.map +1 -0
- package/lib/typescript/module/src/hooks/btn.d.ts +1647 -0
- package/lib/typescript/module/src/hooks/btn.d.ts.map +1 -0
- package/lib/typescript/module/src/hooks/list.d.ts +4 -0
- package/lib/typescript/module/src/hooks/list.d.ts.map +1 -0
- package/lib/typescript/module/src/hooks/overlay.d.ts +16 -0
- package/lib/typescript/module/src/hooks/overlay.d.ts.map +1 -0
- package/lib/typescript/module/src/hooks/reanimated.d.ts +3 -0
- package/lib/typescript/module/src/hooks/reanimated.d.ts.map +1 -0
- package/lib/typescript/module/src/hooks/separator.d.ts +5 -0
- package/lib/typescript/module/src/hooks/separator.d.ts.map +1 -0
- package/lib/typescript/module/src/hooks/style.d.ts +11 -0
- package/lib/typescript/module/src/hooks/style.d.ts.map +1 -0
- package/lib/typescript/module/src/hooks/switch.d.ts +2 -0
- package/lib/typescript/module/src/hooks/switch.d.ts.map +1 -0
- package/lib/typescript/module/src/hooks/theme.d.ts +217 -0
- package/lib/typescript/module/src/hooks/theme.d.ts.map +1 -0
- package/lib/typescript/module/src/hooks/view.d.ts +3 -0
- package/lib/typescript/module/src/hooks/view.d.ts.map +1 -0
- package/lib/typescript/module/src/index.d.ts +53 -0
- package/lib/typescript/module/src/index.d.ts.map +1 -0
- package/lib/typescript/module/src/test/utils/const.d.ts +4 -0
- package/lib/typescript/module/src/test/utils/const.d.ts.map +1 -0
- package/lib/typescript/module/src/test/utils/func.d.ts +106 -0
- package/lib/typescript/module/src/test/utils/func.d.ts.map +1 -0
- package/lib/typescript/module/src/test/utils/testingLib.d.ts +6 -0
- package/lib/typescript/module/src/test/utils/testingLib.d.ts.map +1 -0
- package/lib/typescript/module/src/types/btn.d.ts +24 -0
- package/lib/typescript/module/src/types/btn.d.ts.map +1 -0
- package/lib/typescript/module/src/types/icon.d.ts +10 -0
- package/lib/typescript/module/src/types/icon.d.ts.map +1 -0
- package/lib/typescript/module/src/types/list.d.ts +29 -0
- package/lib/typescript/module/src/types/list.d.ts.map +1 -0
- package/lib/typescript/module/src/types/loading.d.ts +12 -0
- package/lib/typescript/module/src/types/loading.d.ts.map +1 -0
- package/lib/typescript/module/src/types/overlay.d.ts +89 -0
- package/lib/typescript/module/src/types/overlay.d.ts.map +1 -0
- package/lib/typescript/module/src/types/provider.d.ts +6 -0
- package/lib/typescript/module/src/types/provider.d.ts.map +1 -0
- package/lib/typescript/module/src/types/react.d.ts +6 -0
- package/lib/typescript/module/src/types/react.d.ts.map +1 -0
- package/lib/typescript/module/src/types/reanimated.d.ts +5 -0
- package/lib/typescript/module/src/types/reanimated.d.ts.map +1 -0
- package/lib/typescript/module/src/types/separator.d.ts +7 -0
- package/lib/typescript/module/src/types/separator.d.ts.map +1 -0
- package/lib/typescript/module/src/types/style.d.ts +18 -0
- package/lib/typescript/module/src/types/style.d.ts.map +1 -0
- package/lib/typescript/module/src/types/switch.d.ts +27 -0
- package/lib/typescript/module/src/types/switch.d.ts.map +1 -0
- package/lib/typescript/module/src/types/text.d.ts +15 -0
- package/lib/typescript/module/src/types/text.d.ts.map +1 -0
- package/lib/typescript/module/src/types/theme.d.ts +15 -0
- package/lib/typescript/module/src/types/theme.d.ts.map +1 -0
- package/lib/typescript/module/src/types/view.d.ts +19 -0
- package/lib/typescript/module/src/types/view.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/btn/const.d.ts +9 -0
- package/lib/typescript/module/src/utils/btn/const.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/overlay/const.d.ts +24 -0
- package/lib/typescript/module/src/utils/overlay/const.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/overlay/func.d.ts +11 -0
- package/lib/typescript/module/src/utils/overlay/func.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/reanimated/func.d.ts +2 -0
- package/lib/typescript/module/src/utils/reanimated/func.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/style/const.d.ts +5 -0
- package/lib/typescript/module/src/utils/style/const.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/style/func.d.ts +9 -0
- package/lib/typescript/module/src/utils/style/func.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/switch/const.d.ts +2 -0
- package/lib/typescript/module/src/utils/switch/const.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/theme/const.d.ts +120 -0
- package/lib/typescript/module/src/utils/theme/const.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/theme/restyle.d.ts +1184 -0
- package/lib/typescript/module/src/utils/theme/restyle.d.ts.map +1 -0
- package/package.json +214 -0
|
@@ -0,0 +1,641 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { c as _c } from "react/compiler-runtime";
|
|
4
|
+
import { useContext, useEffect, useLayoutEffect, useState } from 'react';
|
|
5
|
+
import { Gesture } from 'react-native-gesture-handler';
|
|
6
|
+
import { makeMutable, useAnimatedRef, useScrollOffset, useSharedValue } from 'react-native-reanimated';
|
|
7
|
+
import { scheduleOnRN } from 'react-native-worklets';
|
|
8
|
+
import { ActionSheetContext, actionSheetDismissDuration, actionSheetHeaderIconSize, actionSheetHeaderPadding, actionSheetOpenDuration, actionSheetOptListItemPadding, actionSheetOptListItemTextVariant, actionSheetSnapDuration, overlayDismissResultDefaultText, OverlayDismissResultType } from "../utils/overlay/const.js";
|
|
9
|
+
import { getActionSheetContext, getActionSheetExpandableHeight, getActionSheetExpandableInitHeight, getActionSheetExpandableSnapHeight, getActionSheetHeight, getActionSheetSnapHeight } from "../utils/overlay/func.js";
|
|
10
|
+
import { updateSharedValWithTiming } from "../utils/reanimated/func.js";
|
|
11
|
+
import { useInsetsStyle, useWindowDimensionsHeight } from "./style.js";
|
|
12
|
+
import { useThemeSpacing, useThemeTextVariants } from "./theme.js";
|
|
13
|
+
import { useViewRef } from "./view.js";
|
|
14
|
+
|
|
15
|
+
/** @internal */
|
|
16
|
+
export function useActionSheetContext() {
|
|
17
|
+
return useContext(ActionSheetContext);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/** @internal */
|
|
21
|
+
function useActionSheet() {
|
|
22
|
+
const windowHeight = useWindowDimensionsHeight();
|
|
23
|
+
const headerViewRef = useViewRef();
|
|
24
|
+
const [height, setHeight] = useState(0);
|
|
25
|
+
const translateYSharedVal = useSharedValue(windowHeight);
|
|
26
|
+
const heightSharedVal = useSharedValue(0);
|
|
27
|
+
const expandableHeightSharedVal = useSharedValue(0);
|
|
28
|
+
const {
|
|
29
|
+
expandable
|
|
30
|
+
} = getActionSheetContext();
|
|
31
|
+
useEffect(() => {
|
|
32
|
+
if (height && translateYSharedVal.get() === windowHeight) {
|
|
33
|
+
const tempHeight = expandable ? getActionSheetExpandableInitHeight() : height;
|
|
34
|
+
heightSharedVal.set(tempHeight);
|
|
35
|
+
expandableHeightSharedVal.set(tempHeight);
|
|
36
|
+
translateYSharedVal.set(height);
|
|
37
|
+
updateSharedValWithTiming(translateYSharedVal, 0, {
|
|
38
|
+
duration: actionSheetOpenDuration
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
}, [height]);
|
|
42
|
+
const updateHeight = tempHeight_0 => {
|
|
43
|
+
setHeight(expandable ? getActionSheetExpandableHeight() : getActionSheetHeight(tempHeight_0));
|
|
44
|
+
};
|
|
45
|
+
const actionSheet = {
|
|
46
|
+
headerViewRef,
|
|
47
|
+
height,
|
|
48
|
+
translateYSharedVal,
|
|
49
|
+
heightSharedVal,
|
|
50
|
+
expandableHeightSharedVal,
|
|
51
|
+
updateHeight
|
|
52
|
+
};
|
|
53
|
+
return actionSheet;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/** @internal */
|
|
57
|
+
export function useActionSheetOnDismiss(t0) {
|
|
58
|
+
const $ = _c(10);
|
|
59
|
+
const force = t0 === undefined ? true : t0;
|
|
60
|
+
const windowHeight = useWindowDimensionsHeight();
|
|
61
|
+
const {
|
|
62
|
+
title,
|
|
63
|
+
expandable,
|
|
64
|
+
onDismiss,
|
|
65
|
+
height,
|
|
66
|
+
translateYSharedVal,
|
|
67
|
+
heightSharedVal,
|
|
68
|
+
expandableHeightSharedVal
|
|
69
|
+
} = useActionSheetContext();
|
|
70
|
+
let t1;
|
|
71
|
+
if ($[0] !== expandable || $[1] !== expandableHeightSharedVal || $[2] !== force || $[3] !== height || $[4] !== heightSharedVal || $[5] !== onDismiss || $[6] !== title || $[7] !== translateYSharedVal || $[8] !== windowHeight) {
|
|
72
|
+
t1 = t2 => {
|
|
73
|
+
const text = t2 === undefined ? overlayDismissResultDefaultText : t2;
|
|
74
|
+
if (!onDismiss || !height || !heightSharedVal || !translateYSharedVal) {
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
const tempTranslateYSharedVal = translateYSharedVal ?? makeMutable(windowHeight);
|
|
78
|
+
const toVal = expandable ? getActionSheetExpandableSnapHeight(heightSharedVal.get(), force) : getActionSheetSnapHeight(height, translateYSharedVal?.get() ?? windowHeight, force);
|
|
79
|
+
const dismissActionSheet = toVal === (expandable ? 0 : height);
|
|
80
|
+
const animationConfig = {
|
|
81
|
+
duration: dismissActionSheet ? actionSheetDismissDuration : actionSheetSnapDuration
|
|
82
|
+
};
|
|
83
|
+
const cb = () => {
|
|
84
|
+
if (!dismissActionSheet) {
|
|
85
|
+
expandableHeightSharedVal?.set(toVal);
|
|
86
|
+
return;
|
|
87
|
+
}
|
|
88
|
+
onDismiss({
|
|
89
|
+
resultType: OverlayDismissResultType.ActionSheet,
|
|
90
|
+
title,
|
|
91
|
+
text
|
|
92
|
+
});
|
|
93
|
+
};
|
|
94
|
+
if (expandable && !dismissActionSheet) {
|
|
95
|
+
updateSharedValWithTiming(heightSharedVal, toVal, animationConfig, cb);
|
|
96
|
+
} else {
|
|
97
|
+
updateSharedValWithTiming(tempTranslateYSharedVal, dismissActionSheet ? windowHeight : toVal, animationConfig, cb);
|
|
98
|
+
}
|
|
99
|
+
};
|
|
100
|
+
$[0] = expandable;
|
|
101
|
+
$[1] = expandableHeightSharedVal;
|
|
102
|
+
$[2] = force;
|
|
103
|
+
$[3] = height;
|
|
104
|
+
$[4] = heightSharedVal;
|
|
105
|
+
$[5] = onDismiss;
|
|
106
|
+
$[6] = title;
|
|
107
|
+
$[7] = translateYSharedVal;
|
|
108
|
+
$[8] = windowHeight;
|
|
109
|
+
$[9] = t1;
|
|
110
|
+
} else {
|
|
111
|
+
t1 = $[9];
|
|
112
|
+
}
|
|
113
|
+
const actionSheetOnDismiss = t1;
|
|
114
|
+
return actionSheetOnDismiss;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/** @internal */
|
|
118
|
+
const _worklet_14062660967716_init_data = {
|
|
119
|
+
code: "function overlayTs1(){const{scheduleOnRN,onDismiss}=this.__closure;scheduleOnRN(onDismiss);}",
|
|
120
|
+
location: "/home/runner/work/react-native-template-ui/react-native-template-ui/src/hooks/overlay.ts",
|
|
121
|
+
sourceMap: "{\"version\":3,\"names\":[\"scheduleOnRN\",\"onDismiss\"],\"sources\":[\"/home/runner/work/react-native-template-ui/react-native-template-ui/src/hooks/overlay.ts\"],\"mappings\":\"mEAmLMA,YAAA,CAAaC,SAAS,CAAC\",\"ignoreList\":[]}"
|
|
122
|
+
};
|
|
123
|
+
const _worklet_6867469910819_init_data = {
|
|
124
|
+
code: "function overlayTs2(t2){const{contentGesture,contentOffsetSharedVal,expandable,heightSharedVal,translateYSharedVal}=this.__closure;var _contentOffsetSharedV;const{changeY:changeY}=t2;if(!contentGesture||!((_contentOffsetSharedV=contentOffsetSharedVal)!==null&&_contentOffsetSharedV!==void 0&&_contentOffsetSharedV.get())){if(expandable){var _heightSharedVal;(_heightSharedVal=heightSharedVal)===null||_heightSharedVal===void 0||_heightSharedVal.set(heightSharedVal.get()-changeY);}else{var _translateYSharedVal;(_translateYSharedVal=translateYSharedVal)===null||_translateYSharedVal===void 0||_translateYSharedVal.set(Math.max(translateYSharedVal.get()+changeY,0));}}}",
|
|
125
|
+
location: "/home/runner/work/react-native-template-ui/react-native-template-ui/src/hooks/overlay.ts",
|
|
126
|
+
sourceMap: "{\"version\":3,\"names\":[\"changeY\",\"t2\",\"contentGesture\",\"_contentOffsetSharedV\",\"contentOffsetSharedVal\",\"get\",\"expandable\",\"_heightSharedVal\",\"heightSharedVal\",\"set\",\"_translateYSharedVal\",\"translateYSharedVal\",\"Math\",\"max\"],\"sources\":[\"/home/runner/work/react-native-template-ui/react-native-template-ui/src/hooks/overlay.ts\"],\"mappings\":\"6JAuKe,MAAAA,OAAA,CAAAA,OAAA,EAAAC,EAAW,IAChB,CAACC,cAAc,KAAAC,qBAAA,CAAKC,sBAAsB,UAAAD,qBAAA,WAAtBA,qBAAA,CAAsBE,GAAA,EAAO,MAC/CC,UAAU,MAAAC,gBAAA,CACZ,CAAAA,gBAAA,CAAAC,eAAe,UAAAD,gBAAA,WAAfA,gBAAA,CAAeE,GAAA,CAAMD,eAAe,CAAAH,GAAA,CAAK,CAAC,CAAGL,OAAO,YAAAU,oBAAA,CAEpD,CAAAA,oBAAA,CAAAC,mBAAmB,UAAAD,oBAAA,WAAnBA,oBAAA,CAAmBD,GAAA,CACjBG,IAAA,CAAAC,GAAA,CAASF,mBAAmB,CAAAN,GAAA,CAAM,CAAC,CAAGL,OAAO,EAAG,CAAC\",\"ignoreList\":[]}"
|
|
127
|
+
};
|
|
128
|
+
export function useActionSheetGesture(t0) {
|
|
129
|
+
const $ = _c(5);
|
|
130
|
+
const contentGesture = t0 === undefined ? false : t0;
|
|
131
|
+
const onDismiss = useActionSheetOnDismiss(false);
|
|
132
|
+
let t1;
|
|
133
|
+
if ($[0] !== contentGesture || $[1] !== onDismiss) {
|
|
134
|
+
const {
|
|
135
|
+
expandable,
|
|
136
|
+
translateYSharedVal,
|
|
137
|
+
heightSharedVal,
|
|
138
|
+
contentOffsetSharedVal
|
|
139
|
+
} = getActionSheetContext();
|
|
140
|
+
let t3;
|
|
141
|
+
if ($[3] !== onDismiss) {
|
|
142
|
+
t3 = function overlayTs1Factory({
|
|
143
|
+
_worklet_14062660967716_init_data,
|
|
144
|
+
scheduleOnRN,
|
|
145
|
+
onDismiss
|
|
146
|
+
}) {
|
|
147
|
+
const _e = [new global.Error(), -3, -27];
|
|
148
|
+
const overlayTs1 = function () {
|
|
149
|
+
scheduleOnRN(onDismiss);
|
|
150
|
+
};
|
|
151
|
+
overlayTs1.__closure = {
|
|
152
|
+
scheduleOnRN,
|
|
153
|
+
onDismiss
|
|
154
|
+
};
|
|
155
|
+
overlayTs1.__workletHash = 14062660967716;
|
|
156
|
+
overlayTs1.__pluginVersion = "0.5.1";
|
|
157
|
+
overlayTs1.__initData = _worklet_14062660967716_init_data;
|
|
158
|
+
overlayTs1.__stackDetails = _e;
|
|
159
|
+
return overlayTs1;
|
|
160
|
+
}({
|
|
161
|
+
_worklet_14062660967716_init_data,
|
|
162
|
+
scheduleOnRN,
|
|
163
|
+
onDismiss
|
|
164
|
+
});
|
|
165
|
+
$[3] = onDismiss;
|
|
166
|
+
$[4] = t3;
|
|
167
|
+
} else {
|
|
168
|
+
t3 = $[4];
|
|
169
|
+
}
|
|
170
|
+
t1 = Gesture.Pan().onChange(function overlayTs2Factory({
|
|
171
|
+
_worklet_6867469910819_init_data,
|
|
172
|
+
contentGesture,
|
|
173
|
+
contentOffsetSharedVal,
|
|
174
|
+
expandable,
|
|
175
|
+
heightSharedVal,
|
|
176
|
+
translateYSharedVal
|
|
177
|
+
}) {
|
|
178
|
+
const _e = [new global.Error(), -6, -27];
|
|
179
|
+
const overlayTs2 = function (t2) {
|
|
180
|
+
const {
|
|
181
|
+
changeY
|
|
182
|
+
} = t2;
|
|
183
|
+
if (!contentGesture || !contentOffsetSharedVal?.get()) {
|
|
184
|
+
if (expandable) {
|
|
185
|
+
heightSharedVal?.set(heightSharedVal.get() - changeY);
|
|
186
|
+
} else {
|
|
187
|
+
translateYSharedVal?.set(Math.max(translateYSharedVal.get() + changeY, 0));
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
};
|
|
191
|
+
overlayTs2.__closure = {
|
|
192
|
+
contentGesture,
|
|
193
|
+
contentOffsetSharedVal,
|
|
194
|
+
expandable,
|
|
195
|
+
heightSharedVal,
|
|
196
|
+
translateYSharedVal
|
|
197
|
+
};
|
|
198
|
+
overlayTs2.__workletHash = 6867469910819;
|
|
199
|
+
overlayTs2.__pluginVersion = "0.5.1";
|
|
200
|
+
overlayTs2.__initData = _worklet_6867469910819_init_data;
|
|
201
|
+
overlayTs2.__stackDetails = _e;
|
|
202
|
+
return overlayTs2;
|
|
203
|
+
}({
|
|
204
|
+
_worklet_6867469910819_init_data,
|
|
205
|
+
contentGesture,
|
|
206
|
+
contentOffsetSharedVal,
|
|
207
|
+
expandable,
|
|
208
|
+
heightSharedVal,
|
|
209
|
+
translateYSharedVal
|
|
210
|
+
})).onEnd(t3);
|
|
211
|
+
$[0] = contentGesture;
|
|
212
|
+
$[1] = onDismiss;
|
|
213
|
+
$[2] = t1;
|
|
214
|
+
} else {
|
|
215
|
+
t1 = $[2];
|
|
216
|
+
}
|
|
217
|
+
const actionSheetGesture = t1;
|
|
218
|
+
return actionSheetGesture;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/** @internal */
|
|
222
|
+
export function useActionSheetHeaderMinHeight() {
|
|
223
|
+
const themeSpacing = useThemeSpacing();
|
|
224
|
+
const actionSheetHeaderMinHeight = actionSheetHeaderIconSize + themeSpacing[actionSheetHeaderPadding] * 2;
|
|
225
|
+
return actionSheetHeaderMinHeight;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/** @internal */
|
|
229
|
+
export function useActionSheetContentGesture() {
|
|
230
|
+
const $ = _c(2);
|
|
231
|
+
const gesture = useActionSheetGesture(true);
|
|
232
|
+
let t0;
|
|
233
|
+
if ($[0] !== gesture) {
|
|
234
|
+
const scrollGesture = Gesture.Native().shouldActivateOnStart(true);
|
|
235
|
+
const {
|
|
236
|
+
contentOffsetSharedVal
|
|
237
|
+
} = getActionSheetContext();
|
|
238
|
+
t0 = Gesture.Simultaneous(scrollGesture, gesture.activeOffsetY(contentOffsetSharedVal?.get() ?? 0));
|
|
239
|
+
$[0] = gesture;
|
|
240
|
+
$[1] = t0;
|
|
241
|
+
} else {
|
|
242
|
+
t0 = $[1];
|
|
243
|
+
}
|
|
244
|
+
const actionSheetContentGesture = t0;
|
|
245
|
+
return actionSheetContentGesture;
|
|
246
|
+
}
|
|
247
|
+
export function useActionSheetListViewAnimatedRef() {
|
|
248
|
+
return useAnimatedRef();
|
|
249
|
+
}
|
|
250
|
+
export function useActionSheetScrollViewAnimatedRef() {
|
|
251
|
+
return useAnimatedRef();
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/** @interal */
|
|
255
|
+
export function useActionSheetListViewRefAndOffset(refObj) {
|
|
256
|
+
const $ = _c(3);
|
|
257
|
+
const listViewListAnimatedRefObj = useActionSheetListViewAnimatedRef();
|
|
258
|
+
const contentOffsetSharedVal = useScrollOffset(refObj ?? listViewListAnimatedRefObj);
|
|
259
|
+
const t0 = refObj ?? listViewListAnimatedRefObj;
|
|
260
|
+
let t1;
|
|
261
|
+
if ($[0] !== contentOffsetSharedVal || $[1] !== t0) {
|
|
262
|
+
t1 = {
|
|
263
|
+
listViewListAnimatedRefObj: t0,
|
|
264
|
+
contentOffsetSharedVal
|
|
265
|
+
};
|
|
266
|
+
$[0] = contentOffsetSharedVal;
|
|
267
|
+
$[1] = t0;
|
|
268
|
+
$[2] = t1;
|
|
269
|
+
} else {
|
|
270
|
+
t1 = $[2];
|
|
271
|
+
}
|
|
272
|
+
const actionSheetListViewAnimatedRef = t1;
|
|
273
|
+
return actionSheetListViewAnimatedRef;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/** @interal */
|
|
277
|
+
export function useActionSheetScrollViewRefAndOffset(refObj) {
|
|
278
|
+
const $ = _c(3);
|
|
279
|
+
const scrollViewAnimatedRefObj = useActionSheetScrollViewAnimatedRef();
|
|
280
|
+
const contentOffsetSharedVal = useScrollOffset(refObj ?? scrollViewAnimatedRefObj);
|
|
281
|
+
const t0 = refObj ?? scrollViewAnimatedRefObj;
|
|
282
|
+
let t1;
|
|
283
|
+
if ($[0] !== contentOffsetSharedVal || $[1] !== t0) {
|
|
284
|
+
t1 = {
|
|
285
|
+
scrollViewAnimatedRefObj: t0,
|
|
286
|
+
contentOffsetSharedVal
|
|
287
|
+
};
|
|
288
|
+
$[0] = contentOffsetSharedVal;
|
|
289
|
+
$[1] = t0;
|
|
290
|
+
$[2] = t1;
|
|
291
|
+
} else {
|
|
292
|
+
t1 = $[2];
|
|
293
|
+
}
|
|
294
|
+
const actionSheetScrollViewAnimatedRef = t1;
|
|
295
|
+
return actionSheetScrollViewAnimatedRef;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
/** @internal */
|
|
299
|
+
export function useActionSheetOpts(title, expandable, opts, optListProps, onDismiss, dismissable) {
|
|
300
|
+
const $ = _c(19);
|
|
301
|
+
const {
|
|
302
|
+
headerViewRef,
|
|
303
|
+
height,
|
|
304
|
+
translateYSharedVal,
|
|
305
|
+
heightSharedVal,
|
|
306
|
+
expandableHeightSharedVal,
|
|
307
|
+
updateHeight
|
|
308
|
+
} = useActionSheet();
|
|
309
|
+
const {
|
|
310
|
+
listViewListAnimatedRefObj,
|
|
311
|
+
contentOffsetSharedVal
|
|
312
|
+
} = useActionSheetListViewRefAndOffset(optListProps?.ref);
|
|
313
|
+
const {
|
|
314
|
+
itemSize,
|
|
315
|
+
insetsStyle
|
|
316
|
+
} = useActionSheetOptItemSize(optListProps);
|
|
317
|
+
let t0;
|
|
318
|
+
if ($[0] !== headerViewRef.current || $[1] !== insetsStyle || $[2] !== itemSize || $[3] !== opts || $[4] !== updateHeight) {
|
|
319
|
+
t0 = () => {
|
|
320
|
+
headerViewRef.current?.measureInWindow((_x, _y, _width, headerHeight) => {
|
|
321
|
+
const contentHeight = opts.length * itemSize + (insetsStyle.paddingBottom ?? 0);
|
|
322
|
+
updateHeight(headerHeight + contentHeight);
|
|
323
|
+
});
|
|
324
|
+
};
|
|
325
|
+
$[0] = headerViewRef.current;
|
|
326
|
+
$[1] = insetsStyle;
|
|
327
|
+
$[2] = itemSize;
|
|
328
|
+
$[3] = opts;
|
|
329
|
+
$[4] = updateHeight;
|
|
330
|
+
$[5] = t0;
|
|
331
|
+
} else {
|
|
332
|
+
t0 = $[5];
|
|
333
|
+
}
|
|
334
|
+
let t1;
|
|
335
|
+
if ($[6] === Symbol.for("react.memo_cache_sentinel")) {
|
|
336
|
+
t1 = [];
|
|
337
|
+
$[6] = t1;
|
|
338
|
+
} else {
|
|
339
|
+
t1 = $[6];
|
|
340
|
+
}
|
|
341
|
+
useLayoutEffect(t0, t1);
|
|
342
|
+
let t2;
|
|
343
|
+
if ($[7] !== contentOffsetSharedVal || $[8] !== dismissable || $[9] !== expandable || $[10] !== expandableHeightSharedVal || $[11] !== headerViewRef || $[12] !== height || $[13] !== heightSharedVal || $[14] !== listViewListAnimatedRefObj || $[15] !== onDismiss || $[16] !== title || $[17] !== translateYSharedVal) {
|
|
344
|
+
t2 = {
|
|
345
|
+
title,
|
|
346
|
+
expandable,
|
|
347
|
+
onDismiss,
|
|
348
|
+
dismissable,
|
|
349
|
+
headerViewRef,
|
|
350
|
+
contentAnimatedRefObj: listViewListAnimatedRefObj,
|
|
351
|
+
height,
|
|
352
|
+
translateYSharedVal,
|
|
353
|
+
heightSharedVal,
|
|
354
|
+
expandableHeightSharedVal,
|
|
355
|
+
contentOffsetSharedVal
|
|
356
|
+
};
|
|
357
|
+
$[7] = contentOffsetSharedVal;
|
|
358
|
+
$[8] = dismissable;
|
|
359
|
+
$[9] = expandable;
|
|
360
|
+
$[10] = expandableHeightSharedVal;
|
|
361
|
+
$[11] = headerViewRef;
|
|
362
|
+
$[12] = height;
|
|
363
|
+
$[13] = heightSharedVal;
|
|
364
|
+
$[14] = listViewListAnimatedRefObj;
|
|
365
|
+
$[15] = onDismiss;
|
|
366
|
+
$[16] = title;
|
|
367
|
+
$[17] = translateYSharedVal;
|
|
368
|
+
$[18] = t2;
|
|
369
|
+
} else {
|
|
370
|
+
t2 = $[18];
|
|
371
|
+
}
|
|
372
|
+
const actionSheetContextVal = t2;
|
|
373
|
+
return actionSheetContextVal;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
/** @internal */
|
|
377
|
+
export function useActionSheetOptItemSize(t0) {
|
|
378
|
+
const $ = _c(16);
|
|
379
|
+
let t1;
|
|
380
|
+
if ($[0] !== t0) {
|
|
381
|
+
t1 = t0 === undefined ? {
|
|
382
|
+
insetBottom: true,
|
|
383
|
+
insetPaddingBottom: "m"
|
|
384
|
+
} : t0;
|
|
385
|
+
$[0] = t0;
|
|
386
|
+
$[1] = t1;
|
|
387
|
+
} else {
|
|
388
|
+
t1 = $[1];
|
|
389
|
+
}
|
|
390
|
+
const {
|
|
391
|
+
insets,
|
|
392
|
+
insetTop,
|
|
393
|
+
insetBottom,
|
|
394
|
+
insetLeft,
|
|
395
|
+
insetRight,
|
|
396
|
+
insetsPadding,
|
|
397
|
+
insetPaddingTop,
|
|
398
|
+
insetPaddingBottom,
|
|
399
|
+
insetPaddingLeft,
|
|
400
|
+
insetPaddingRight
|
|
401
|
+
} = t1;
|
|
402
|
+
const themeSpacing = useThemeSpacing();
|
|
403
|
+
const themeTextVariants = useThemeTextVariants();
|
|
404
|
+
let t2;
|
|
405
|
+
if ($[2] !== insetBottom || $[3] !== insetLeft || $[4] !== insetPaddingBottom || $[5] !== insetPaddingLeft || $[6] !== insetPaddingRight || $[7] !== insetPaddingTop || $[8] !== insetRight || $[9] !== insetTop || $[10] !== insets || $[11] !== insetsPadding) {
|
|
406
|
+
t2 = {
|
|
407
|
+
insets,
|
|
408
|
+
insetTop,
|
|
409
|
+
insetBottom,
|
|
410
|
+
insetLeft,
|
|
411
|
+
insetRight,
|
|
412
|
+
insetsPadding,
|
|
413
|
+
insetPaddingTop,
|
|
414
|
+
insetPaddingBottom,
|
|
415
|
+
insetPaddingLeft,
|
|
416
|
+
insetPaddingRight
|
|
417
|
+
};
|
|
418
|
+
$[2] = insetBottom;
|
|
419
|
+
$[3] = insetLeft;
|
|
420
|
+
$[4] = insetPaddingBottom;
|
|
421
|
+
$[5] = insetPaddingLeft;
|
|
422
|
+
$[6] = insetPaddingRight;
|
|
423
|
+
$[7] = insetPaddingTop;
|
|
424
|
+
$[8] = insetRight;
|
|
425
|
+
$[9] = insetTop;
|
|
426
|
+
$[10] = insets;
|
|
427
|
+
$[11] = insetsPadding;
|
|
428
|
+
$[12] = t2;
|
|
429
|
+
} else {
|
|
430
|
+
t2 = $[12];
|
|
431
|
+
}
|
|
432
|
+
const insetsStyle = useInsetsStyle(t2);
|
|
433
|
+
const t3 = themeSpacing[actionSheetOptListItemPadding] * 2 + themeTextVariants[actionSheetOptListItemTextVariant].lineHeight;
|
|
434
|
+
let t4;
|
|
435
|
+
if ($[13] !== insetsStyle || $[14] !== t3) {
|
|
436
|
+
t4 = {
|
|
437
|
+
itemSize: t3,
|
|
438
|
+
insetsStyle
|
|
439
|
+
};
|
|
440
|
+
$[13] = insetsStyle;
|
|
441
|
+
$[14] = t3;
|
|
442
|
+
$[15] = t4;
|
|
443
|
+
} else {
|
|
444
|
+
t4 = $[15];
|
|
445
|
+
}
|
|
446
|
+
const actionSheetOptItemSize = t4;
|
|
447
|
+
return actionSheetOptItemSize;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
/** @internal */
|
|
451
|
+
export function useActionSheetScrollView(title, expandable, scrollViewProps, onDismiss, dismissable) {
|
|
452
|
+
const $ = _c(22);
|
|
453
|
+
const {
|
|
454
|
+
headerViewRef,
|
|
455
|
+
height,
|
|
456
|
+
translateYSharedVal,
|
|
457
|
+
heightSharedVal,
|
|
458
|
+
expandableHeightSharedVal,
|
|
459
|
+
updateHeight
|
|
460
|
+
} = useActionSheet();
|
|
461
|
+
const {
|
|
462
|
+
scrollViewAnimatedRefObj,
|
|
463
|
+
contentOffsetSharedVal
|
|
464
|
+
} = useActionSheetScrollViewRefAndOffset(scrollViewProps?.ref);
|
|
465
|
+
const [headerHeight, setHeaderHeight] = useState(0);
|
|
466
|
+
const [contentHeight, setContentHeight] = useState(0);
|
|
467
|
+
let t0;
|
|
468
|
+
if ($[0] !== headerViewRef.current) {
|
|
469
|
+
t0 = () => {
|
|
470
|
+
headerViewRef.current?.measureInWindow((_x, _y, _width, headerViewHeight) => {
|
|
471
|
+
setHeaderHeight(headerViewHeight);
|
|
472
|
+
});
|
|
473
|
+
};
|
|
474
|
+
$[0] = headerViewRef.current;
|
|
475
|
+
$[1] = t0;
|
|
476
|
+
} else {
|
|
477
|
+
t0 = $[1];
|
|
478
|
+
}
|
|
479
|
+
let t1;
|
|
480
|
+
if ($[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
481
|
+
t1 = [];
|
|
482
|
+
$[2] = t1;
|
|
483
|
+
} else {
|
|
484
|
+
t1 = $[2];
|
|
485
|
+
}
|
|
486
|
+
useLayoutEffect(t0, t1);
|
|
487
|
+
let t2;
|
|
488
|
+
if ($[3] !== contentHeight || $[4] !== headerHeight || $[5] !== updateHeight) {
|
|
489
|
+
t2 = () => {
|
|
490
|
+
if (headerHeight && contentHeight) {
|
|
491
|
+
updateHeight(headerHeight + contentHeight);
|
|
492
|
+
}
|
|
493
|
+
};
|
|
494
|
+
$[3] = contentHeight;
|
|
495
|
+
$[4] = headerHeight;
|
|
496
|
+
$[5] = updateHeight;
|
|
497
|
+
$[6] = t2;
|
|
498
|
+
} else {
|
|
499
|
+
t2 = $[6];
|
|
500
|
+
}
|
|
501
|
+
let t3;
|
|
502
|
+
if ($[7] !== contentHeight || $[8] !== headerHeight) {
|
|
503
|
+
t3 = [headerHeight, contentHeight];
|
|
504
|
+
$[7] = contentHeight;
|
|
505
|
+
$[8] = headerHeight;
|
|
506
|
+
$[9] = t3;
|
|
507
|
+
} else {
|
|
508
|
+
t3 = $[9];
|
|
509
|
+
}
|
|
510
|
+
useEffect(t2, t3);
|
|
511
|
+
let t4;
|
|
512
|
+
if ($[10] !== contentOffsetSharedVal || $[11] !== dismissable || $[12] !== expandable || $[13] !== expandableHeightSharedVal || $[14] !== headerViewRef || $[15] !== height || $[16] !== heightSharedVal || $[17] !== onDismiss || $[18] !== scrollViewAnimatedRefObj || $[19] !== title || $[20] !== translateYSharedVal) {
|
|
513
|
+
t4 = {
|
|
514
|
+
title,
|
|
515
|
+
expandable,
|
|
516
|
+
onDismiss,
|
|
517
|
+
dismissable,
|
|
518
|
+
headerViewRef,
|
|
519
|
+
contentAnimatedRefObj: scrollViewAnimatedRefObj,
|
|
520
|
+
height,
|
|
521
|
+
setContentHeight,
|
|
522
|
+
translateYSharedVal,
|
|
523
|
+
heightSharedVal,
|
|
524
|
+
expandableHeightSharedVal,
|
|
525
|
+
contentOffsetSharedVal
|
|
526
|
+
};
|
|
527
|
+
$[10] = contentOffsetSharedVal;
|
|
528
|
+
$[11] = dismissable;
|
|
529
|
+
$[12] = expandable;
|
|
530
|
+
$[13] = expandableHeightSharedVal;
|
|
531
|
+
$[14] = headerViewRef;
|
|
532
|
+
$[15] = height;
|
|
533
|
+
$[16] = heightSharedVal;
|
|
534
|
+
$[17] = onDismiss;
|
|
535
|
+
$[18] = scrollViewAnimatedRefObj;
|
|
536
|
+
$[19] = title;
|
|
537
|
+
$[20] = translateYSharedVal;
|
|
538
|
+
$[21] = t4;
|
|
539
|
+
} else {
|
|
540
|
+
t4 = $[21];
|
|
541
|
+
}
|
|
542
|
+
const actionSheetContextVal = t4;
|
|
543
|
+
return actionSheetContextVal;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
/** @internal */
|
|
547
|
+
export function useActionSheetListView(title, expandable, listProps, onDismiss, dismissable) {
|
|
548
|
+
const $ = _c(22);
|
|
549
|
+
const {
|
|
550
|
+
headerViewRef,
|
|
551
|
+
height,
|
|
552
|
+
translateYSharedVal,
|
|
553
|
+
heightSharedVal,
|
|
554
|
+
expandableHeightSharedVal,
|
|
555
|
+
updateHeight
|
|
556
|
+
} = useActionSheet();
|
|
557
|
+
const {
|
|
558
|
+
listViewListAnimatedRefObj,
|
|
559
|
+
contentOffsetSharedVal
|
|
560
|
+
} = useActionSheetListViewRefAndOffset(listProps?.ref);
|
|
561
|
+
const [headerHeight, setHeaderHeight] = useState(0);
|
|
562
|
+
const [contentHeight, setContentHeight] = useState(0);
|
|
563
|
+
let t0;
|
|
564
|
+
if ($[0] !== headerViewRef.current) {
|
|
565
|
+
t0 = () => {
|
|
566
|
+
headerViewRef.current?.measureInWindow((_x, _y, _width, headerViewHeight) => {
|
|
567
|
+
setHeaderHeight(headerViewHeight);
|
|
568
|
+
});
|
|
569
|
+
};
|
|
570
|
+
$[0] = headerViewRef.current;
|
|
571
|
+
$[1] = t0;
|
|
572
|
+
} else {
|
|
573
|
+
t0 = $[1];
|
|
574
|
+
}
|
|
575
|
+
let t1;
|
|
576
|
+
if ($[2] === Symbol.for("react.memo_cache_sentinel")) {
|
|
577
|
+
t1 = [];
|
|
578
|
+
$[2] = t1;
|
|
579
|
+
} else {
|
|
580
|
+
t1 = $[2];
|
|
581
|
+
}
|
|
582
|
+
useLayoutEffect(t0, t1);
|
|
583
|
+
let t2;
|
|
584
|
+
if ($[3] !== contentHeight || $[4] !== headerHeight || $[5] !== updateHeight) {
|
|
585
|
+
t2 = () => {
|
|
586
|
+
if (headerHeight && contentHeight) {
|
|
587
|
+
updateHeight(headerHeight + contentHeight);
|
|
588
|
+
}
|
|
589
|
+
};
|
|
590
|
+
$[3] = contentHeight;
|
|
591
|
+
$[4] = headerHeight;
|
|
592
|
+
$[5] = updateHeight;
|
|
593
|
+
$[6] = t2;
|
|
594
|
+
} else {
|
|
595
|
+
t2 = $[6];
|
|
596
|
+
}
|
|
597
|
+
let t3;
|
|
598
|
+
if ($[7] !== contentHeight || $[8] !== headerHeight) {
|
|
599
|
+
t3 = [headerHeight, contentHeight];
|
|
600
|
+
$[7] = contentHeight;
|
|
601
|
+
$[8] = headerHeight;
|
|
602
|
+
$[9] = t3;
|
|
603
|
+
} else {
|
|
604
|
+
t3 = $[9];
|
|
605
|
+
}
|
|
606
|
+
useEffect(t2, t3);
|
|
607
|
+
let t4;
|
|
608
|
+
if ($[10] !== contentOffsetSharedVal || $[11] !== dismissable || $[12] !== expandable || $[13] !== expandableHeightSharedVal || $[14] !== headerViewRef || $[15] !== height || $[16] !== heightSharedVal || $[17] !== listViewListAnimatedRefObj || $[18] !== onDismiss || $[19] !== title || $[20] !== translateYSharedVal) {
|
|
609
|
+
t4 = {
|
|
610
|
+
title,
|
|
611
|
+
expandable,
|
|
612
|
+
onDismiss,
|
|
613
|
+
dismissable,
|
|
614
|
+
headerViewRef,
|
|
615
|
+
contentAnimatedRefObj: listViewListAnimatedRefObj,
|
|
616
|
+
height,
|
|
617
|
+
setContentHeight,
|
|
618
|
+
translateYSharedVal,
|
|
619
|
+
heightSharedVal,
|
|
620
|
+
expandableHeightSharedVal,
|
|
621
|
+
contentOffsetSharedVal
|
|
622
|
+
};
|
|
623
|
+
$[10] = contentOffsetSharedVal;
|
|
624
|
+
$[11] = dismissable;
|
|
625
|
+
$[12] = expandable;
|
|
626
|
+
$[13] = expandableHeightSharedVal;
|
|
627
|
+
$[14] = headerViewRef;
|
|
628
|
+
$[15] = height;
|
|
629
|
+
$[16] = heightSharedVal;
|
|
630
|
+
$[17] = listViewListAnimatedRefObj;
|
|
631
|
+
$[18] = onDismiss;
|
|
632
|
+
$[19] = title;
|
|
633
|
+
$[20] = translateYSharedVal;
|
|
634
|
+
$[21] = t4;
|
|
635
|
+
} else {
|
|
636
|
+
t4 = $[21];
|
|
637
|
+
}
|
|
638
|
+
const actionSheetContextVal = t4;
|
|
639
|
+
return actionSheetContextVal;
|
|
640
|
+
}
|
|
641
|
+
//# sourceMappingURL=overlay.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["useContext","useEffect","useLayoutEffect","useState","Gesture","makeMutable","useAnimatedRef","useScrollOffset","useSharedValue","scheduleOnRN","ActionSheetContext","actionSheetDismissDuration","actionSheetHeaderIconSize","actionSheetHeaderPadding","actionSheetOpenDuration","actionSheetOptListItemPadding","actionSheetOptListItemTextVariant","actionSheetSnapDuration","overlayDismissResultDefaultText","OverlayDismissResultType","getActionSheetContext","getActionSheetExpandableHeight","getActionSheetExpandableInitHeight","getActionSheetExpandableSnapHeight","getActionSheetHeight","getActionSheetSnapHeight","updateSharedValWithTiming","useInsetsStyle","useWindowDimensionsHeight","useThemeSpacing","useThemeTextVariants","useViewRef","useActionSheetContext","useActionSheet","windowHeight","headerViewRef","height","setHeight","translateYSharedVal","heightSharedVal","expandableHeightSharedVal","expandable","get","tempHeight","set","duration","updateHeight","actionSheet","useActionSheetOnDismiss","t0","$","_c","force","undefined","title","onDismiss","t1","t2","text","tempTranslateYSharedVal","toVal","dismissActionSheet","animationConfig","cb","resultType","ActionSheet","actionSheetOnDismiss","_worklet_14062660967716_init_data","code","location","sourceMap","_worklet_6867469910819_init_data","useActionSheetGesture","contentGesture","contentOffsetSharedVal","t3","overlayTs1Factory","_e","global","Error","overlayTs1","__closure","__workletHash","__pluginVersion","__initData","__stackDetails","Pan","onChange","overlayTs2Factory","overlayTs2","changeY","Math","max","onEnd","actionSheetGesture","useActionSheetHeaderMinHeight","themeSpacing","actionSheetHeaderMinHeight","useActionSheetContentGesture","gesture","scrollGesture","Native","shouldActivateOnStart","Simultaneous","activeOffsetY","actionSheetContentGesture","useActionSheetListViewAnimatedRef","useActionSheetScrollViewAnimatedRef","useActionSheetListViewRefAndOffset","refObj","listViewListAnimatedRefObj","actionSheetListViewAnimatedRef","useActionSheetScrollViewRefAndOffset","scrollViewAnimatedRefObj","actionSheetScrollViewAnimatedRef","useActionSheetOpts","opts","optListProps","dismissable","ref","itemSize","insetsStyle","useActionSheetOptItemSize","current","measureInWindow","_x","_y","_width","headerHeight","contentHeight","length","paddingBottom","Symbol","for","contentAnimatedRefObj","actionSheetContextVal","insetBottom","insetPaddingBottom","insets","insetTop","insetLeft","insetRight","insetsPadding","insetPaddingTop","insetPaddingLeft","insetPaddingRight","themeTextVariants","lineHeight","t4","actionSheetOptItemSize","useActionSheetScrollView","scrollViewProps","setHeaderHeight","setContentHeight","headerViewHeight","useActionSheetListView","listProps"],"sourceRoot":"../../../src","sources":["hooks/overlay.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["useSharedValue","useAnimationSharedVal"],"sourceRoot":"../../../src","sources":["hooks/reanimated.ts"],"mappings":";;AAAA,SAASA,cAAc,QAAQ,yBAAyB;AAGxD,OAAO,SAAAC,sBAAA;EAAA,OACED,cAAA,EAAgC,CAAC;AAAA","ignoreList":[]}
|