@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 @@
|
|
|
1
|
+
{"version":3,"file":"btn.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/btn.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,KAAK,EACV,4BAA4B,EAC5B,kBAAkB,EAClB,gBAAgB,EAEhB,oBAAoB,EACrB,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,aAAa,EAAoB,MAAM,oBAAoB,CAAC;AAIrE,wBAAgB,iBAAiB,CAC/B,OAAO,EAAE,oBAAoB,CAAC,SAAS,CAAC,EACxC,kBAAkB,CAAC,EAAE,kBAAkB,oBAqDxC;AAED,wBAAgB,kBAAkB,CAChC,EACE,OAAO,EACP,kBAAkB,EAClB,GAAG,KAAK,EACT,EAAE,oBAAoB,GAAG,4BAA4B,EACtD,QAAQ,UAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuCjB"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ListRef, ListItemSeparatorComponent, ListItemSeparatorProps } from '../types/list';
|
|
2
|
+
export declare function useListRef<T>(): import("react").RefObject<ListRef<T> | null>;
|
|
3
|
+
export declare function useListItemSeparatorComponent(props?: ListItemSeparatorProps, hideForLeadingItemTypes?: any[], hideForTrailingItemTypes?: any[]): ListItemSeparatorComponent;
|
|
4
|
+
//# sourceMappingURL=list.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/list.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,OAAO,EACP,0BAA0B,EAC1B,sBAAsB,EACvB,MAAM,eAAe,CAAC;AAGvB,wBAAgB,UAAU,CAAC,CAAC,kDAE3B;AAED,wBAAgB,6BAA6B,CAC3C,KAAK,GAAE,sBAA2B,EAClC,uBAAuB,GAAE,GAAG,EAAO,EACnC,wBAAwB,GAAE,GAAG,EAAO,8BA0BrC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { ScrollView } from 'react-native';
|
|
2
|
+
import type { ListAnimatedRefObj, ListRef } from '../types/list';
|
|
3
|
+
import type { ScrollViewAnimatedRefObj } from '../types/view';
|
|
4
|
+
export declare function useActionSheetListViewAnimatedRef<T>(): import("react-native-reanimated").AnimatedRef<ListRef<T>>;
|
|
5
|
+
export declare function useActionSheetScrollViewAnimatedRef(): import("react-native-reanimated").AnimatedRef<ScrollView>;
|
|
6
|
+
/** @interal */
|
|
7
|
+
export declare function useActionSheetListViewRefAndOffset<T>(refObj?: ListAnimatedRefObj<T>): {
|
|
8
|
+
listViewListAnimatedRefObj: ListAnimatedRefObj<T>;
|
|
9
|
+
contentOffsetSharedVal: import("react-native-reanimated").SharedValue<number>;
|
|
10
|
+
};
|
|
11
|
+
/** @interal */
|
|
12
|
+
export declare function useActionSheetScrollViewRefAndOffset(refObj?: ScrollViewAnimatedRefObj): {
|
|
13
|
+
scrollViewAnimatedRefObj: ScrollViewAnimatedRefObj;
|
|
14
|
+
contentOffsetSharedVal: import("react-native-reanimated").SharedValue<number>;
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=overlay.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"overlay.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/overlay.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAU/C,OAAO,KAAK,EAAE,kBAAkB,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AAWjE,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,eAAe,CAAC;AA2L9D,wBAAgB,iCAAiC,CAAC,CAAC,+DAElD;AAED,wBAAgB,mCAAmC,8DAElD;AAED,eAAe;AACf,wBAAgB,kCAAkC,CAAC,CAAC,EAClD,MAAM,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC;;;EAa/B;AAED,eAAe;AACf,wBAAgB,oCAAoC,CAClD,MAAM,CAAC,EAAE,wBAAwB;;;EAalC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reanimated.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/reanimated.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAE1D,wBAAgB,qBAAqB,kEAEpC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { ThemedSeparatorProps } from '../types/separator';
|
|
2
|
+
import type { ThemeColors } from '../types/theme';
|
|
3
|
+
import { BorderSize } from '../utils/theme/const';
|
|
4
|
+
export declare function useThemedSeparator(size?: BorderSize, vertical?: boolean, backgroundColor?: ThemeColors, style?: Omit<ThemedSeparatorProps, 'size' | 'vertical' | 'backgroundColor' | 'bg'>): import("react").FunctionComponentElement<ThemedSeparatorProps>;
|
|
5
|
+
//# sourceMappingURL=separator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"separator.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/separator.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC/D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAKlD,wBAAgB,kBAAkB,CAChC,IAAI,aAAe,EACnB,QAAQ,UAAQ,EAChB,eAAe,GAAE,WAAyB,EAC1C,KAAK,GAAE,IAAI,CACT,oBAAoB,EACpB,MAAM,GAAG,UAAU,GAAG,iBAAiB,GAAG,IAAI,CAC1C,kEAaP"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type ViewStyle } from 'react-native';
|
|
2
|
+
import type { InsetsStyleConfig } from '../types/style';
|
|
3
|
+
import { Orientation } from '../utils/style/const';
|
|
4
|
+
export declare function useInsetsStyle({ insets, insetTop, insetBottom, insetLeft, insetRight, insetsPadding, insetPaddingTop, insetPaddingBottom, insetPaddingLeft, insetPaddingRight, }: InsetsStyleConfig): Pick<ViewStyle, "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft">;
|
|
5
|
+
export declare function useWindowDimensions(): import("react-native").ScaledSize;
|
|
6
|
+
export declare function useWindowDimensionsWidth(): number;
|
|
7
|
+
export declare function useWindowDimensionsHeight(): number;
|
|
8
|
+
export declare function useWindowDimensionsScale(): number;
|
|
9
|
+
export declare function useWindowDimensionsFontScale(): number;
|
|
10
|
+
export declare function useOrientation(): Orientation;
|
|
11
|
+
//# sourceMappingURL=style.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/style.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAEtB,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAGnD,wBAAgB,cAAc,CAAC,EAC7B,MAAM,EACN,QAAQ,EACR,WAAW,EACX,SAAS,EACT,UAAU,EACV,aAAa,EACb,eAAe,EACf,kBAAkB,EAClB,gBAAgB,EAChB,iBAAiB,GAClB,EAAE,iBAAiB,oFA6BnB;AAED,wBAAgB,mBAAmB,sCAElC;AAED,wBAAgB,wBAAwB,WAEvC;AAED,wBAAgB,yBAAyB,WAExC;AAED,wBAAgB,wBAAwB,WAEvC;AAED,wBAAgB,4BAA4B,WAE3C;AAED,wBAAgB,cAAc,gBAO7B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"switch.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/switch.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
import { type PropValue, type ResponsiveValue } from '@shopify/restyle';
|
|
2
|
+
import { type ColorSchemeName } from 'react-native';
|
|
3
|
+
import type { Theme, ThemeBreakpoints } from '../types/theme';
|
|
4
|
+
export declare function useThemeColors(): {
|
|
5
|
+
transparent: import("..").Palette;
|
|
6
|
+
theme: import("..").Palette;
|
|
7
|
+
background: import("..").Palette;
|
|
8
|
+
backgroundOverlay: import("..").Palette;
|
|
9
|
+
text: import("..").Palette;
|
|
10
|
+
textOverlay: import("..").Palette;
|
|
11
|
+
textBtn: import("..").Palette;
|
|
12
|
+
border: import("..").Palette;
|
|
13
|
+
separator: import("..").Palette;
|
|
14
|
+
err: import("..").Palette;
|
|
15
|
+
};
|
|
16
|
+
export declare function useThemeSpacing(): {
|
|
17
|
+
none: import("..").Spacing;
|
|
18
|
+
xxxs: import("..").Spacing;
|
|
19
|
+
xxs: import("..").Spacing;
|
|
20
|
+
xs: import("..").Spacing;
|
|
21
|
+
s: import("..").Spacing;
|
|
22
|
+
m: import("..").Spacing;
|
|
23
|
+
l: import("..").Spacing;
|
|
24
|
+
xl: import("..").Spacing;
|
|
25
|
+
xxl: import("..").Spacing;
|
|
26
|
+
xxxl: import("..").Spacing;
|
|
27
|
+
};
|
|
28
|
+
export declare function useThemeBreakpoints(): {
|
|
29
|
+
smallPhone: number;
|
|
30
|
+
phone: number;
|
|
31
|
+
smallTablet: number;
|
|
32
|
+
tablet: number;
|
|
33
|
+
desktop: number;
|
|
34
|
+
};
|
|
35
|
+
export declare function useThemeBreakpointValues<T extends PropValue>(propValue: ResponsiveValue<T, Theme['breakpoints']>): T | undefined;
|
|
36
|
+
export declare function useThemeBreakpoint(): ThemeBreakpoints;
|
|
37
|
+
export declare function useThemeZIndices(): {
|
|
38
|
+
bottom: import("..").ZIndex;
|
|
39
|
+
middle: import("..").ZIndex;
|
|
40
|
+
top: import("..").ZIndex;
|
|
41
|
+
};
|
|
42
|
+
export declare function useThemeBorderRadii(): {
|
|
43
|
+
s: import("..").BorderRadius;
|
|
44
|
+
m: import("..").BorderRadius;
|
|
45
|
+
l: import("..").BorderRadius;
|
|
46
|
+
circle: import("..").BorderRadius;
|
|
47
|
+
};
|
|
48
|
+
export declare function useThemeTextVariants(): {
|
|
49
|
+
textXSBold: {
|
|
50
|
+
fontWeight: string;
|
|
51
|
+
fontSize: import("..").FontSize;
|
|
52
|
+
lineHeight: import("..").FontLineHeight;
|
|
53
|
+
color: string;
|
|
54
|
+
};
|
|
55
|
+
textSBold: {
|
|
56
|
+
fontWeight: string;
|
|
57
|
+
fontSize: import("..").FontSize;
|
|
58
|
+
lineHeight: import("..").FontLineHeight;
|
|
59
|
+
color: string;
|
|
60
|
+
};
|
|
61
|
+
textMBold: {
|
|
62
|
+
fontWeight: string;
|
|
63
|
+
fontSize: import("..").FontSize;
|
|
64
|
+
lineHeight: import("..").FontLineHeight;
|
|
65
|
+
color: string;
|
|
66
|
+
};
|
|
67
|
+
textLBold: {
|
|
68
|
+
fontWeight: string;
|
|
69
|
+
fontSize: import("..").FontSize;
|
|
70
|
+
lineHeight: import("..").FontLineHeight;
|
|
71
|
+
color: string;
|
|
72
|
+
};
|
|
73
|
+
textXLBold: {
|
|
74
|
+
fontWeight: string;
|
|
75
|
+
fontSize: import("..").FontSize;
|
|
76
|
+
lineHeight: import("..").FontLineHeight;
|
|
77
|
+
color: string;
|
|
78
|
+
};
|
|
79
|
+
defaults: {
|
|
80
|
+
fontSize: import("..").FontSize;
|
|
81
|
+
lineHeight: import("..").FontLineHeight;
|
|
82
|
+
color: string;
|
|
83
|
+
};
|
|
84
|
+
textXS: {
|
|
85
|
+
fontSize: import("..").FontSize;
|
|
86
|
+
lineHeight: import("..").FontLineHeight;
|
|
87
|
+
color: string;
|
|
88
|
+
};
|
|
89
|
+
textS: {
|
|
90
|
+
fontSize: import("..").FontSize;
|
|
91
|
+
lineHeight: import("..").FontLineHeight;
|
|
92
|
+
color: string;
|
|
93
|
+
};
|
|
94
|
+
textM: {
|
|
95
|
+
fontSize: import("..").FontSize;
|
|
96
|
+
lineHeight: import("..").FontLineHeight;
|
|
97
|
+
color: string;
|
|
98
|
+
};
|
|
99
|
+
textL: {
|
|
100
|
+
fontSize: import("..").FontSize;
|
|
101
|
+
lineHeight: import("..").FontLineHeight;
|
|
102
|
+
color: string;
|
|
103
|
+
};
|
|
104
|
+
textXL: {
|
|
105
|
+
fontSize: import("..").FontSize;
|
|
106
|
+
lineHeight: import("..").FontLineHeight;
|
|
107
|
+
color: string;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
export declare function useIsDarkColorScheme(overrideColorScheme?: ColorSchemeName): boolean;
|
|
111
|
+
export declare function useColorSchemeTheme(overrideColorScheme?: ColorSchemeName): {
|
|
112
|
+
colors: {
|
|
113
|
+
transparent: import("..").Palette;
|
|
114
|
+
theme: import("..").Palette;
|
|
115
|
+
background: import("..").Palette;
|
|
116
|
+
backgroundOverlay: import("..").Palette;
|
|
117
|
+
text: import("..").Palette;
|
|
118
|
+
textOverlay: import("..").Palette;
|
|
119
|
+
textBtn: import("..").Palette;
|
|
120
|
+
border: import("..").Palette;
|
|
121
|
+
separator: import("..").Palette;
|
|
122
|
+
err: import("..").Palette;
|
|
123
|
+
};
|
|
124
|
+
spacing: {
|
|
125
|
+
none: import("..").Spacing;
|
|
126
|
+
xxxs: import("..").Spacing;
|
|
127
|
+
xxs: import("..").Spacing;
|
|
128
|
+
xs: import("..").Spacing;
|
|
129
|
+
s: import("..").Spacing;
|
|
130
|
+
m: import("..").Spacing;
|
|
131
|
+
l: import("..").Spacing;
|
|
132
|
+
xl: import("..").Spacing;
|
|
133
|
+
xxl: import("..").Spacing;
|
|
134
|
+
xxxl: import("..").Spacing;
|
|
135
|
+
};
|
|
136
|
+
breakpoints: {
|
|
137
|
+
smallPhone: number;
|
|
138
|
+
phone: number;
|
|
139
|
+
smallTablet: number;
|
|
140
|
+
tablet: number;
|
|
141
|
+
desktop: number;
|
|
142
|
+
};
|
|
143
|
+
zIndices: {
|
|
144
|
+
bottom: import("..").ZIndex;
|
|
145
|
+
middle: import("..").ZIndex;
|
|
146
|
+
top: import("..").ZIndex;
|
|
147
|
+
};
|
|
148
|
+
borderRadii: {
|
|
149
|
+
s: import("..").BorderRadius;
|
|
150
|
+
m: import("..").BorderRadius;
|
|
151
|
+
l: import("..").BorderRadius;
|
|
152
|
+
circle: import("..").BorderRadius;
|
|
153
|
+
};
|
|
154
|
+
textVariants: {
|
|
155
|
+
textXSBold: {
|
|
156
|
+
fontWeight: string;
|
|
157
|
+
fontSize: import("..").FontSize;
|
|
158
|
+
lineHeight: import("..").FontLineHeight;
|
|
159
|
+
color: string;
|
|
160
|
+
};
|
|
161
|
+
textSBold: {
|
|
162
|
+
fontWeight: string;
|
|
163
|
+
fontSize: import("..").FontSize;
|
|
164
|
+
lineHeight: import("..").FontLineHeight;
|
|
165
|
+
color: string;
|
|
166
|
+
};
|
|
167
|
+
textMBold: {
|
|
168
|
+
fontWeight: string;
|
|
169
|
+
fontSize: import("..").FontSize;
|
|
170
|
+
lineHeight: import("..").FontLineHeight;
|
|
171
|
+
color: string;
|
|
172
|
+
};
|
|
173
|
+
textLBold: {
|
|
174
|
+
fontWeight: string;
|
|
175
|
+
fontSize: import("..").FontSize;
|
|
176
|
+
lineHeight: import("..").FontLineHeight;
|
|
177
|
+
color: string;
|
|
178
|
+
};
|
|
179
|
+
textXLBold: {
|
|
180
|
+
fontWeight: string;
|
|
181
|
+
fontSize: import("..").FontSize;
|
|
182
|
+
lineHeight: import("..").FontLineHeight;
|
|
183
|
+
color: string;
|
|
184
|
+
};
|
|
185
|
+
defaults: {
|
|
186
|
+
fontSize: import("..").FontSize;
|
|
187
|
+
lineHeight: import("..").FontLineHeight;
|
|
188
|
+
color: string;
|
|
189
|
+
};
|
|
190
|
+
textXS: {
|
|
191
|
+
fontSize: import("..").FontSize;
|
|
192
|
+
lineHeight: import("..").FontLineHeight;
|
|
193
|
+
color: string;
|
|
194
|
+
};
|
|
195
|
+
textS: {
|
|
196
|
+
fontSize: import("..").FontSize;
|
|
197
|
+
lineHeight: import("..").FontLineHeight;
|
|
198
|
+
color: string;
|
|
199
|
+
};
|
|
200
|
+
textM: {
|
|
201
|
+
fontSize: import("..").FontSize;
|
|
202
|
+
lineHeight: import("..").FontLineHeight;
|
|
203
|
+
color: string;
|
|
204
|
+
};
|
|
205
|
+
textL: {
|
|
206
|
+
fontSize: import("..").FontSize;
|
|
207
|
+
lineHeight: import("..").FontLineHeight;
|
|
208
|
+
color: string;
|
|
209
|
+
};
|
|
210
|
+
textXL: {
|
|
211
|
+
fontSize: import("..").FontSize;
|
|
212
|
+
lineHeight: import("..").FontLineHeight;
|
|
213
|
+
color: string;
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
//# sourceMappingURL=theme.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/theme.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,SAAS,EACd,KAAK,eAAe,EACrB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAkB,KAAK,eAAe,EAAE,MAAM,cAAc,CAAC;AACpE,OAAO,KAAK,EAAE,KAAK,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAQ9D,wBAAgB,cAAc;;;;;;;;;;;EAE7B;AAED,wBAAgB,eAAe;;;;;;;;;;;EAE9B;AAED,wBAAgB,mBAAmB;;;;;;EAElC;AAED,wBAAgB,wBAAwB,CAAC,CAAC,SAAS,SAAS,EAC1D,SAAS,EAAE,eAAe,CAAC,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,CAAC,iBAGpD;AAED,wBAAgB,kBAAkB,IASkB,gBAAgB,CACnE;AAED,wBAAgB,gBAAgB;;;;EAE/B;AAED,wBAAgB,mBAAmB;;;;;EAElC;AAED,wBAAgB,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEnC;AAED,wBAAgB,oBAAoB,CAAC,mBAAmB,CAAC,EAAE,eAAe,WAIzE;AAED,wBAAgB,mBAAmB,CAAC,mBAAmB,CAAC,EAAE,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAExE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"view.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/view.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAEzC,wBAAgB,UAAU,2CAEzB"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
export { default as AnimatedThemedPressable } from './components/btn/AnimatedThemedPressable';
|
|
2
|
+
export { default as ThemedBtn } from './components/btn/ThemedBtn';
|
|
3
|
+
export { default as ThemedIconBtn } from './components/btn/ThemedIconBtn';
|
|
4
|
+
export { default as ThemedIconTextBtn } from './components/btn/ThemedIconTextBtn';
|
|
5
|
+
export { default as ThemedPressable } from './components/btn/ThemedPressable';
|
|
6
|
+
export { default as ThemedIcon } from './components/icon/ThemedIcon';
|
|
7
|
+
export { default as List } from './components/list/List';
|
|
8
|
+
export { default as ThemedLoading } from './components/loading/ThemedLoading';
|
|
9
|
+
export { default as ActionSheet } from './components/overlay/actionSheet/ActionSheet';
|
|
10
|
+
export { default as Alert } from './components/overlay/alert/Alert';
|
|
11
|
+
export { default as ThemedLoadingModal } from './components/overlay/modal/ThemedLoadingModal';
|
|
12
|
+
export { default as ThemedModal } from './components/overlay/modal/ThemedModal';
|
|
13
|
+
export { default as ThemedToast } from './components/overlay/toast/ThemedToast';
|
|
14
|
+
export { default as GestureProvider } from './components/provider/GestureProvider';
|
|
15
|
+
export { default as InsetsProvider } from './components/provider/InsetsProvider';
|
|
16
|
+
export { default as ReactNativeTemplateProviders } from './components/provider/ReactNativeTemplateProviders';
|
|
17
|
+
export { default as ThemeProvider } from './components/provider/ThemeProvider';
|
|
18
|
+
export { default as ThemedSeparator } from './components/separator/ThemedSeparator';
|
|
19
|
+
export { default as ThemedSwitch } from './components/switch/ThemedSwitch';
|
|
20
|
+
export { default as ThemedIconText } from './components/text/ThemedIconText';
|
|
21
|
+
export { default as ThemedText } from './components/text/ThemedText';
|
|
22
|
+
export { default as AnimatedThemedView } from './components/view/AnimatedThemedView';
|
|
23
|
+
export { default as ThemedScreenWrap } from './components/view/ThemedScreenWrap';
|
|
24
|
+
export { default as ThemedScrollView } from './components/view/ThemedScrollView';
|
|
25
|
+
export { default as ThemedView } from './components/view/ThemedView';
|
|
26
|
+
export * from './hooks/btn';
|
|
27
|
+
export * from './hooks/list';
|
|
28
|
+
export * from './hooks/overlay';
|
|
29
|
+
export * from './hooks/reanimated';
|
|
30
|
+
export * from './hooks/separator';
|
|
31
|
+
export * from './hooks/style';
|
|
32
|
+
export * from './hooks/theme';
|
|
33
|
+
export * from './hooks/view';
|
|
34
|
+
export * from './types/btn';
|
|
35
|
+
export * from './types/icon';
|
|
36
|
+
export * from './types/list';
|
|
37
|
+
export * from './types/loading';
|
|
38
|
+
export * from './types/overlay';
|
|
39
|
+
export * from './types/provider';
|
|
40
|
+
export * from './types/react';
|
|
41
|
+
export * from './types/reanimated';
|
|
42
|
+
export * from './types/separator';
|
|
43
|
+
export * from './types/style';
|
|
44
|
+
export * from './types/switch';
|
|
45
|
+
export * from './types/text';
|
|
46
|
+
export * from './types/theme';
|
|
47
|
+
export * from './types/view';
|
|
48
|
+
export * from './utils/btn/const';
|
|
49
|
+
export * from './utils/overlay/const';
|
|
50
|
+
export * from './utils/style/const';
|
|
51
|
+
export * from './utils/style/func';
|
|
52
|
+
export * from './utils/theme/const';
|
|
53
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,0CAA0C,CAAC;AAC9F,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,oCAAoC,CAAC;AAClF,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,kCAAkC,CAAC;AAC9E,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,oCAAoC,CAAC;AAC9E,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,8CAA8C,CAAC;AACtF,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,kCAAkC,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,+CAA+C,CAAC;AAC9F,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,uCAAuC,CAAC;AACnF,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,sCAAsC,CAAC;AACjF,OAAO,EAAE,OAAO,IAAI,4BAA4B,EAAE,MAAM,oDAAoD,CAAC;AAC7G,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qCAAqC,CAAC;AAC/E,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,wCAAwC,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,kCAAkC,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAC7E,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,sCAAsC,CAAC;AACrF,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AACjF,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AACjF,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAErE,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAE7B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAE7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"const.d.ts","sourceRoot":"","sources":["../../../../../../src/test/utils/const.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,KAAK,EAAE,EAAE,MAAM,OAAO,CAAC;AAE/C,OAAO,KAAK,EAAE,iCAAiC,EAAE,MAAM,sBAAsB,CAAC;AAG9E,eAAO,MAAM,OAAO,EAAE,EAAE,CAAC,iCAAiC,CAGY,CAAC"}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
export declare function getThemeColors(): Promise<{
|
|
2
|
+
transparent: import("../..").Palette;
|
|
3
|
+
theme: import("../..").Palette;
|
|
4
|
+
background: import("../..").Palette;
|
|
5
|
+
backgroundOverlay: import("../..").Palette;
|
|
6
|
+
text: import("../..").Palette;
|
|
7
|
+
textOverlay: import("../..").Palette;
|
|
8
|
+
textBtn: import("../..").Palette;
|
|
9
|
+
border: import("../..").Palette;
|
|
10
|
+
separator: import("../..").Palette;
|
|
11
|
+
err: import("../..").Palette;
|
|
12
|
+
}>;
|
|
13
|
+
export declare function getThemeSpacing(): Promise<{
|
|
14
|
+
none: import("../..").Spacing;
|
|
15
|
+
xxxs: import("../..").Spacing;
|
|
16
|
+
xxs: import("../..").Spacing;
|
|
17
|
+
xs: import("../..").Spacing;
|
|
18
|
+
s: import("../..").Spacing;
|
|
19
|
+
m: import("../..").Spacing;
|
|
20
|
+
l: import("../..").Spacing;
|
|
21
|
+
xl: import("../..").Spacing;
|
|
22
|
+
xxl: import("../..").Spacing;
|
|
23
|
+
xxxl: import("../..").Spacing;
|
|
24
|
+
}>;
|
|
25
|
+
export declare function getThemeBreakpoints(): Promise<{
|
|
26
|
+
smallPhone: number;
|
|
27
|
+
phone: number;
|
|
28
|
+
smallTablet: number;
|
|
29
|
+
tablet: number;
|
|
30
|
+
desktop: number;
|
|
31
|
+
}>;
|
|
32
|
+
export declare function getThemeZIndices(): Promise<{
|
|
33
|
+
bottom: import("../..").ZIndex;
|
|
34
|
+
middle: import("../..").ZIndex;
|
|
35
|
+
top: import("../..").ZIndex;
|
|
36
|
+
}>;
|
|
37
|
+
export declare function getThemeBorderRadii(): Promise<{
|
|
38
|
+
s: import("../..").BorderRadius;
|
|
39
|
+
m: import("../..").BorderRadius;
|
|
40
|
+
l: import("../..").BorderRadius;
|
|
41
|
+
circle: import("../..").BorderRadius;
|
|
42
|
+
}>;
|
|
43
|
+
export declare function getThemeTextVariants(): Promise<{
|
|
44
|
+
textXSBold: {
|
|
45
|
+
fontWeight: string;
|
|
46
|
+
fontSize: import("../..").FontSize;
|
|
47
|
+
lineHeight: import("../..").FontLineHeight;
|
|
48
|
+
color: string;
|
|
49
|
+
};
|
|
50
|
+
textSBold: {
|
|
51
|
+
fontWeight: string;
|
|
52
|
+
fontSize: import("../..").FontSize;
|
|
53
|
+
lineHeight: import("../..").FontLineHeight;
|
|
54
|
+
color: string;
|
|
55
|
+
};
|
|
56
|
+
textMBold: {
|
|
57
|
+
fontWeight: string;
|
|
58
|
+
fontSize: import("../..").FontSize;
|
|
59
|
+
lineHeight: import("../..").FontLineHeight;
|
|
60
|
+
color: string;
|
|
61
|
+
};
|
|
62
|
+
textLBold: {
|
|
63
|
+
fontWeight: string;
|
|
64
|
+
fontSize: import("../..").FontSize;
|
|
65
|
+
lineHeight: import("../..").FontLineHeight;
|
|
66
|
+
color: string;
|
|
67
|
+
};
|
|
68
|
+
textXLBold: {
|
|
69
|
+
fontWeight: string;
|
|
70
|
+
fontSize: import("../..").FontSize;
|
|
71
|
+
lineHeight: import("../..").FontLineHeight;
|
|
72
|
+
color: string;
|
|
73
|
+
};
|
|
74
|
+
defaults: {
|
|
75
|
+
fontSize: import("../..").FontSize;
|
|
76
|
+
lineHeight: import("../..").FontLineHeight;
|
|
77
|
+
color: string;
|
|
78
|
+
};
|
|
79
|
+
textXS: {
|
|
80
|
+
fontSize: import("../..").FontSize;
|
|
81
|
+
lineHeight: import("../..").FontLineHeight;
|
|
82
|
+
color: string;
|
|
83
|
+
};
|
|
84
|
+
textS: {
|
|
85
|
+
fontSize: import("../..").FontSize;
|
|
86
|
+
lineHeight: import("../..").FontLineHeight;
|
|
87
|
+
color: string;
|
|
88
|
+
};
|
|
89
|
+
textM: {
|
|
90
|
+
fontSize: import("../..").FontSize;
|
|
91
|
+
lineHeight: import("../..").FontLineHeight;
|
|
92
|
+
color: string;
|
|
93
|
+
};
|
|
94
|
+
textL: {
|
|
95
|
+
fontSize: import("../..").FontSize;
|
|
96
|
+
lineHeight: import("../..").FontLineHeight;
|
|
97
|
+
color: string;
|
|
98
|
+
};
|
|
99
|
+
textXL: {
|
|
100
|
+
fontSize: import("../..").FontSize;
|
|
101
|
+
lineHeight: import("../..").FontLineHeight;
|
|
102
|
+
color: string;
|
|
103
|
+
};
|
|
104
|
+
}>;
|
|
105
|
+
export declare function hexToRgb(hex: string): string;
|
|
106
|
+
//# sourceMappingURL=func.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"func.d.ts","sourceRoot":"","sources":["../../../../../../src/test/utils/func.ts"],"names":[],"mappings":"AAQA,wBAAsB,cAAc;;;;;;;;;;;GAEnC;AAED,wBAAsB,eAAe;;;;;;;;;;;GAEpC;AAED,wBAAsB,mBAAmB;;;;;;GAExC;AAED,wBAAsB,gBAAgB;;;;GAErC;AAED,wBAAsB,mBAAmB;;;;;GAExC;AAED,wBAAsB,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAEzC;AAED,wBAAgB,QAAQ,CAAC,GAAG,EAAE,MAAM,UAsBnC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { render as testRender, renderAsync as testRenderAsync } from '@testing-library/react-native';
|
|
2
|
+
declare const customTestRender: typeof testRender;
|
|
3
|
+
declare const customTestRenderAsync: typeof testRenderAsync;
|
|
4
|
+
export * from '@testing-library/react-native';
|
|
5
|
+
export { customTestRender as render, customTestRenderAsync as renderAsync };
|
|
6
|
+
//# sourceMappingURL=testingLib.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"testingLib.d.ts","sourceRoot":"","sources":["../../../../../../src/test/utils/testingLib.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,IAAI,UAAU,EACpB,WAAW,IAAI,eAAe,EAC/B,MAAM,+BAA+B,CAAC;AAGvC,QAAA,MAAM,gBAAgB,EAAE,OAAO,UACU,CAAC;AAE1C,QAAA,MAAM,qBAAqB,EAAE,OAAO,eACgB,CAAC;AAGrD,cAAc,+BAA+B,CAAC;AAG9C,OAAO,EAAE,gBAAgB,IAAI,MAAM,EAAE,qBAAqB,IAAI,WAAW,EAAE,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { PropsWithChildren } from 'react';
|
|
2
|
+
import type { GestureResponderEvent, PressableProps as RNPressableProps, ViewStyle } from 'react-native';
|
|
3
|
+
import type { AnimatedStyle } from 'react-native-reanimated';
|
|
4
|
+
import type { OnPressDelayType } from '../utils/btn/const';
|
|
5
|
+
import type { CustomThemedIconProps } from './icon';
|
|
6
|
+
import type { CustomThemedTextProps, IconTextProps } from './text';
|
|
7
|
+
import type { ThemeViewProps } from './theme';
|
|
8
|
+
import type { ThemedViewProps } from './view';
|
|
9
|
+
export type PressableOnPress = (event: GestureResponderEvent) => void;
|
|
10
|
+
export type PressableStyle = RNPressableProps['style'];
|
|
11
|
+
export type OnPressDelayConfig<T = OnPressDelayType> = {
|
|
12
|
+
type: T;
|
|
13
|
+
wait: number;
|
|
14
|
+
};
|
|
15
|
+
export type ThemedPressableProps = PressableProps & ThemeViewProps;
|
|
16
|
+
export type AnimatedThemedPressableProps = Omit<ThemedPressableProps, 'scaleRatio'> & {
|
|
17
|
+
style?: AnimatedStyle<ViewStyle>;
|
|
18
|
+
};
|
|
19
|
+
export type ThemedBtnProps = BtnProps & CustomThemedTextProps;
|
|
20
|
+
export type ThemedIconBtnProps = BtnProps & CustomThemedIconProps;
|
|
21
|
+
export type ThemedIconTextBtnProps = PropsWithChildren<BtnProps & IconTextProps & {
|
|
22
|
+
iconTextProps?: ThemedViewProps;
|
|
23
|
+
}>;
|
|
24
|
+
//# sourceMappingURL=btn.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"btn.d.ts","sourceRoot":"","sources":["../../../../../src/types/btn.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAC/C,OAAO,KAAK,EACV,qBAAqB,EACrB,cAAc,IAAI,gBAAgB,EAClC,SAAS,EACV,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,KAAK,EAAiB,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAC1E,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,QAAQ,CAAC;AAEpD,OAAO,KAAK,EAAE,qBAAqB,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AACnE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;AAE9C,MAAM,MAAM,gBAAgB,GAAG,CAAC,KAAK,EAAE,qBAAqB,KAAK,IAAI,CAAC;AAEtE,MAAM,MAAM,cAAc,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;AAEvD,MAAM,MAAM,kBAAkB,CAAC,CAAC,GAAG,gBAAgB,IAAI;IACrD,IAAI,EAAE,CAAC,CAAC;IACR,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AASF,MAAM,MAAM,oBAAoB,GAAG,cAAc,GAAG,cAAc,CAAC;AAEnE,MAAM,MAAM,4BAA4B,GAAG,IAAI,CAC7C,oBAAoB,EACpB,YAAY,CACb,GAAG;IACF,KAAK,CAAC,EAAE,aAAa,CAAC,SAAS,CAAC,CAAC;CAClC,CAAC;AAMF,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,qBAAqB,CAAC;AAE9D,MAAM,MAAM,kBAAkB,GAAG,QAAQ,GAAG,qBAAqB,CAAC;AAElE,MAAM,MAAM,sBAAsB,GAAG,iBAAiB,CACpD,QAAQ,GAAG,aAAa,GAAG;IAAE,aAAa,CAAC,EAAE,eAAe,CAAA;CAAE,CAC/D,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ThemeBaseProps } from './theme';
|
|
2
|
+
export type ThemedIconProps = IconProps & ThemeBaseProps;
|
|
3
|
+
export type CustomThemedIconProps = {
|
|
4
|
+
iconName: ThemedIconProps['name'];
|
|
5
|
+
iconSize?: ThemedIconProps['size'];
|
|
6
|
+
iconColor?: ThemedIconProps['color'];
|
|
7
|
+
iconStyle?: ThemedIconProps['style'];
|
|
8
|
+
iconProps?: Omit<ThemedIconProps, 'name' | 'size' | 'color' | 'style'>;
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=icon.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon.d.ts","sourceRoot":"","sources":["../../../../../src/types/icon.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,SAAS,CAAC;AAU3D,MAAM,MAAM,eAAe,GAAG,SAAS,GAAG,cAAc,CAAC;AAEzD,MAAM,MAAM,qBAAqB,GAAG;IAClC,QAAQ,EAAE,eAAe,CAAC,MAAM,CAAC,CAAC;IAClC,QAAQ,CAAC,EAAE,eAAe,CAAC,MAAM,CAAC,CAAC;IACnC,SAAS,CAAC,EAAE,eAAe,CAAC,OAAO,CAAC,CAAC;IACrC,SAAS,CAAC,EAAE,eAAe,CAAC,OAAO,CAAC,CAAC;IACrC,SAAS,CAAC,EAAE,IAAI,CAAC,eAAe,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,CAAC,CAAC;CACxE,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { FlashListProps, ListRenderItemInfo } from '@shopify/flash-list';
|
|
2
|
+
import type { ComponentType, FC, RefObject } from 'react';
|
|
3
|
+
import type { AnimatedRef } from 'react-native-reanimated';
|
|
4
|
+
import type { ThemedSeparatorProps } from './separator';
|
|
5
|
+
import type { InsetsStyleConfig } from './style';
|
|
6
|
+
import type { ThemeColors } from './theme';
|
|
7
|
+
export type ListRefObj<T> = RefObject<ListRef<T> | null>;
|
|
8
|
+
export type ListAnimatedRefObj<T> = AnimatedRef<ListRef<T>>;
|
|
9
|
+
export type ListItemProps<T> = ListRenderItemInfo<T>;
|
|
10
|
+
export type ListKeyExtractor<T> = (item: T, index: number) => string;
|
|
11
|
+
export type ListGetItemType<T> = (item: T, index: number, extraData?: any) => string | number | undefined;
|
|
12
|
+
export type ListProps<T> = Omit<FlashListProps<T>, 'renderItem' | 'keyExtractor'> & InsetsStyleConfig & {
|
|
13
|
+
ref?: ListRefObj<T> | ListAnimatedRefObj<T>;
|
|
14
|
+
Item: ComponentType<ListItemProps<T>>;
|
|
15
|
+
keyExtractor: ListKeyExtractor<T>;
|
|
16
|
+
};
|
|
17
|
+
export type ListItemSeparatorProps = Partial<Pick<ThemedSeparatorProps, 'size' | 'vertical'> & {
|
|
18
|
+
backgroundColor: ThemeColors;
|
|
19
|
+
style: Omit<ThemedSeparatorProps, 'size' | 'vertical' | 'backgroundColor' | 'bg'>;
|
|
20
|
+
}>;
|
|
21
|
+
export type ListItemSeparatorComponent = FC<{
|
|
22
|
+
leadingItem?: {
|
|
23
|
+
type?: any;
|
|
24
|
+
};
|
|
25
|
+
trailingItem?: {
|
|
26
|
+
type?: any;
|
|
27
|
+
};
|
|
28
|
+
}>;
|
|
29
|
+
//# sourceMappingURL=list.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../../../src/types/list.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,cAAc,EAEd,kBAAkB,EACnB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,aAAa,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAC1D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AACxD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AACjD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAK3C,MAAM,MAAM,UAAU,CAAC,CAAC,IAAI,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;AAEzD,MAAM,MAAM,kBAAkB,CAAC,CAAC,IAAI,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC;AAE5D,MAAM,MAAM,aAAa,CAAC,CAAC,IAAI,kBAAkB,CAAC,CAAC,CAAC,CAAC;AAErD,MAAM,MAAM,gBAAgB,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;AAErE,MAAM,MAAM,eAAe,CAAC,CAAC,IAAI,CAC/B,IAAI,EAAE,CAAC,EACP,KAAK,EAAE,MAAM,EACb,SAAS,CAAC,EAAE,GAAG,KACZ,MAAM,GAAG,MAAM,GAAG,SAAS,CAAC;AAEjC,MAAM,MAAM,SAAS,CAAC,CAAC,IAAI,IAAI,CAC7B,cAAc,CAAC,CAAC,CAAC,EACjB,YAAY,GAAG,cAAc,CAC9B,GACC,iBAAiB,GAAG;IAClB,GAAG,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,GAAG,kBAAkB,CAAC,CAAC,CAAC,CAAC;IAC5C,IAAI,EAAE,aAAa,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC;IACtC,YAAY,EAAE,gBAAgB,CAAC,CAAC,CAAC,CAAC;CACnC,CAAC;AAEJ,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAC1C,IAAI,CAAC,oBAAoB,EAAE,MAAM,GAAG,UAAU,CAAC,GAAG;IAChD,eAAe,EAAE,WAAW,CAAC;IAC7B,KAAK,EAAE,IAAI,CACT,oBAAoB,EACpB,MAAM,GAAG,UAAU,GAAG,iBAAiB,GAAG,IAAI,CAC/C,CAAC;CACH,CACF,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG,EAAE,CAAC;IAC1C,WAAW,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,GAAG,CAAA;KAAE,CAAC;IAC7B,YAAY,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,GAAG,CAAA;KAAE,CAAC;CAC/B,CAAC,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ActivityIndicatorProps } from 'react-native';
|
|
2
|
+
import type { ThemeBaseProps, ThemeColorProps } from './theme';
|
|
3
|
+
export type LoadingProps = Omit<ActivityIndicatorProps, 'color'> & {
|
|
4
|
+
color?: ThemeColorProps['color'];
|
|
5
|
+
};
|
|
6
|
+
export type ThemedLoadingProps = LoadingProps & ThemeBaseProps;
|
|
7
|
+
export type CustomThemedLoadingProps = {
|
|
8
|
+
loadingSize?: ThemedLoadingProps['size'];
|
|
9
|
+
loadingColor?: ThemedLoadingProps['color'];
|
|
10
|
+
loadingProps?: Omit<ThemedLoadingProps, 'size' | 'color'>;
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=loading.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"loading.d.ts","sourceRoot":"","sources":["../../../../../src/types/loading.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAC3D,OAAO,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAE/D,MAAM,MAAM,YAAY,GAAG,IAAI,CAAC,sBAAsB,EAAE,OAAO,CAAC,GAAG;IACjE,KAAK,CAAC,EAAE,eAAe,CAAC,OAAO,CAAC,CAAC;CAClC,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,YAAY,GAAG,cAAc,CAAC;AAE/D,MAAM,MAAM,wBAAwB,GAAG;IACrC,WAAW,CAAC,EAAE,kBAAkB,CAAC,MAAM,CAAC,CAAC;IACzC,YAAY,CAAC,EAAE,kBAAkB,CAAC,OAAO,CAAC,CAAC;IAC3C,YAAY,CAAC,EAAE,IAAI,CAAC,kBAAkB,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC;CAC3D,CAAC"}
|