@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":"restyle.d.ts","sourceRoot":"","sources":["../../../../../../src/utils/theme/restyle.ts"],"names":[],"mappings":"AAcA,OAAO,KAAK,EAAkB,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAC5E,OAAO,KAAK,EAAE,SAAS,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnE,OAAO,KAAK,EAAgB,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAC5E,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAE3D,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AAM9D,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGoC,CAAC;AAE7E,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGnB,CAAC;AAEpB,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMzC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGhB,CAAC;AAEpB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGtB,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jamadd/react-native-template-ui",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "React Native Template UI is a collection of UI components designed by JaMa D&D.",
|
|
5
|
+
"source": "./src/index.ts",
|
|
6
|
+
"main": "./lib/commonjs/index.js",
|
|
7
|
+
"module": "./lib/module/index.js",
|
|
8
|
+
"types": "./lib/typescript/commonjs/src/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./lib/typescript/module/src/index.d.ts",
|
|
13
|
+
"default": "./lib/module/index.js"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./lib/typescript/commonjs/src/index.d.ts",
|
|
17
|
+
"default": "./lib/commonjs/index.js"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"lib",
|
|
23
|
+
"android",
|
|
24
|
+
"ios",
|
|
25
|
+
"cpp",
|
|
26
|
+
"*.podspec",
|
|
27
|
+
"!ios/build",
|
|
28
|
+
"!android/build",
|
|
29
|
+
"!android/gradle",
|
|
30
|
+
"!android/gradlew",
|
|
31
|
+
"!android/gradlew.bat",
|
|
32
|
+
"!android/local.properties",
|
|
33
|
+
"!**/__tests__",
|
|
34
|
+
"!**/__fixtures__",
|
|
35
|
+
"!**/__mocks__",
|
|
36
|
+
"!**/.*"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"example": "yarn workspace react-native-template-ui-example",
|
|
40
|
+
"test": "jest",
|
|
41
|
+
"test-snapshot": "jest --updateSnapshot",
|
|
42
|
+
"test-watch": "jest --watch",
|
|
43
|
+
"typecheck": "tsc",
|
|
44
|
+
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
45
|
+
"clean": "del-cli lib",
|
|
46
|
+
"prepare": "bob build",
|
|
47
|
+
"release": "release-it --only-version",
|
|
48
|
+
"release-major": "node scripts/bumpVersion.js major && yarn release-commit",
|
|
49
|
+
"release-minor": "node scripts/bumpVersion.js minor && yarn release-commit",
|
|
50
|
+
"release-patch": "node scripts/bumpVersion.js patch && yarn release-commit",
|
|
51
|
+
"release-commit": "git add . && git commit -m \"v${npm_package_version}\" && git tag v${npm_package_version} && git push origin main --tags"
|
|
52
|
+
},
|
|
53
|
+
"keywords": [
|
|
54
|
+
"reactnativetemplate",
|
|
55
|
+
"react native template",
|
|
56
|
+
"rnt",
|
|
57
|
+
"react-native-template",
|
|
58
|
+
"jamadd",
|
|
59
|
+
"jamad&d",
|
|
60
|
+
"jama",
|
|
61
|
+
"ui library",
|
|
62
|
+
"ui components",
|
|
63
|
+
"ui package",
|
|
64
|
+
"ui",
|
|
65
|
+
"react-native",
|
|
66
|
+
"ios",
|
|
67
|
+
"android"
|
|
68
|
+
],
|
|
69
|
+
"repository": {
|
|
70
|
+
"type": "git",
|
|
71
|
+
"url": "git+https://github.com/JaMaDD/ReactNativeTemplateUI.git"
|
|
72
|
+
},
|
|
73
|
+
"author": "JaMaD&D <jameswaitingontheday@gmail.com> (https://reactnativetemplate.com)",
|
|
74
|
+
"license": "MIT",
|
|
75
|
+
"bugs": {
|
|
76
|
+
"url": "https://github.com/JaMaDD/ReactNativeTemplateUI/issues"
|
|
77
|
+
},
|
|
78
|
+
"homepage": "https://github.com/JaMaDD/ReactNativeTemplateUI#readme",
|
|
79
|
+
"publishConfig": {
|
|
80
|
+
"registry": "https://registry.npmjs.org/",
|
|
81
|
+
"access": "public"
|
|
82
|
+
},
|
|
83
|
+
"devDependencies": {
|
|
84
|
+
"@commitlint/config-conventional": "^19.6.0",
|
|
85
|
+
"@eslint/compat": "^1.2.7",
|
|
86
|
+
"@eslint/eslintrc": "^3.3.0",
|
|
87
|
+
"@eslint/js": "^9.22.0",
|
|
88
|
+
"@evilmartians/lefthook": "^1.5.0",
|
|
89
|
+
"@jamadd/react-native-template-icons": "^0.4.0",
|
|
90
|
+
"@react-native/babel-preset": "0.81.1",
|
|
91
|
+
"@react-native/eslint-config": "^0.81.1",
|
|
92
|
+
"@release-it/conventional-changelog": "^9.0.2",
|
|
93
|
+
"@shopify/flash-list": "^2.0.3",
|
|
94
|
+
"@shopify/restyle": "^2.4.5",
|
|
95
|
+
"@testing-library/react-native": "^13.3.3",
|
|
96
|
+
"@types/jest": "^29.5.5",
|
|
97
|
+
"@types/react": "^19.1.12",
|
|
98
|
+
"@types/react-test-renderer": "19.1.0",
|
|
99
|
+
"babel-plugin-react-compiler": "19.1.0-rc.2",
|
|
100
|
+
"commitlint": "^19.6.1",
|
|
101
|
+
"del-cli": "^5.1.0",
|
|
102
|
+
"eslint": "^9.22.0",
|
|
103
|
+
"eslint-config-prettier": "^10.1.1",
|
|
104
|
+
"eslint-plugin-prettier": "^5.2.3",
|
|
105
|
+
"eslint-plugin-react-compiler": "19.1.0-rc.2",
|
|
106
|
+
"eslint-plugin-testing-library": "^7.8.0",
|
|
107
|
+
"jest": "^29.7.0",
|
|
108
|
+
"prettier": "^3.0.3",
|
|
109
|
+
"react": "19.1.0",
|
|
110
|
+
"react-native": "0.81.1",
|
|
111
|
+
"react-native-builder-bob": "^0.40.11",
|
|
112
|
+
"react-native-gesture-handler": "^2.28.0",
|
|
113
|
+
"react-native-reanimated": "^4.1.0",
|
|
114
|
+
"react-native-safe-area-context": "^5.6.1",
|
|
115
|
+
"react-native-worklets": "^0.5.0",
|
|
116
|
+
"react-test-renderer": "19.1.0",
|
|
117
|
+
"release-it": "^17.10.0",
|
|
118
|
+
"typescript": "^5.8.3"
|
|
119
|
+
},
|
|
120
|
+
"peerDependencies": {
|
|
121
|
+
"@jamadd/react-native-template-icons": ">=0.4.0",
|
|
122
|
+
"@shopify/flash-list": ">=2.0.3",
|
|
123
|
+
"@shopify/restyle": ">=2.4.5",
|
|
124
|
+
"react": ">=19.1.0",
|
|
125
|
+
"react-native": ">=0.81.1",
|
|
126
|
+
"react-native-gesture-handler": ">=2.28.0",
|
|
127
|
+
"react-native-reanimated": ">=4.1.0",
|
|
128
|
+
"react-native-safe-area-context": ">=5.6.1",
|
|
129
|
+
"react-native-worklets": ">=0.5.0"
|
|
130
|
+
},
|
|
131
|
+
"workspaces": [
|
|
132
|
+
"example"
|
|
133
|
+
],
|
|
134
|
+
"packageManager": "yarn@3.6.1",
|
|
135
|
+
"jest": {
|
|
136
|
+
"preset": "react-native",
|
|
137
|
+
"setupFiles": [
|
|
138
|
+
"<rootDir>/src/test/__mocks__/jestSetup.js",
|
|
139
|
+
"<rootDir>/node_modules/react-native-gesture-handler/jestSetup.js"
|
|
140
|
+
],
|
|
141
|
+
"transformIgnorePatterns": [
|
|
142
|
+
"<rootDir>/node_modules/(?!(jest-)?react-native|@react-native|react-native-reanimated)"
|
|
143
|
+
],
|
|
144
|
+
"modulePathIgnorePatterns": [
|
|
145
|
+
"<rootDir>/example/node_modules",
|
|
146
|
+
"<rootDir>/lib/"
|
|
147
|
+
],
|
|
148
|
+
"moduleNameMapper": {
|
|
149
|
+
"\\.(ttf)$": "<rootDir>/src/test/__mocks__/file-mock.js"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"commitlint": {
|
|
153
|
+
"extends": [
|
|
154
|
+
"@commitlint/config-conventional"
|
|
155
|
+
]
|
|
156
|
+
},
|
|
157
|
+
"release-it": {
|
|
158
|
+
"git": {
|
|
159
|
+
"commitMessage": "chore: release ${version}",
|
|
160
|
+
"tagName": "v${version}"
|
|
161
|
+
},
|
|
162
|
+
"npm": {
|
|
163
|
+
"publish": true
|
|
164
|
+
},
|
|
165
|
+
"github": {
|
|
166
|
+
"release": true
|
|
167
|
+
},
|
|
168
|
+
"plugins": {
|
|
169
|
+
"@release-it/conventional-changelog": {
|
|
170
|
+
"preset": {
|
|
171
|
+
"name": "angular"
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"prettier": {
|
|
177
|
+
"quoteProps": "consistent",
|
|
178
|
+
"singleQuote": true,
|
|
179
|
+
"tabWidth": 2,
|
|
180
|
+
"trailingComma": "es5",
|
|
181
|
+
"useTabs": false
|
|
182
|
+
},
|
|
183
|
+
"react-native-builder-bob": {
|
|
184
|
+
"source": "src",
|
|
185
|
+
"output": "lib",
|
|
186
|
+
"targets": [
|
|
187
|
+
[
|
|
188
|
+
"commonjs",
|
|
189
|
+
{
|
|
190
|
+
"esm": true,
|
|
191
|
+
"configFile": true
|
|
192
|
+
}
|
|
193
|
+
],
|
|
194
|
+
[
|
|
195
|
+
"module",
|
|
196
|
+
{
|
|
197
|
+
"esm": true,
|
|
198
|
+
"configFile": true
|
|
199
|
+
}
|
|
200
|
+
],
|
|
201
|
+
[
|
|
202
|
+
"typescript",
|
|
203
|
+
{
|
|
204
|
+
"project": "tsconfig.build.json"
|
|
205
|
+
}
|
|
206
|
+
]
|
|
207
|
+
]
|
|
208
|
+
},
|
|
209
|
+
"create-react-native-library": {
|
|
210
|
+
"languages": "js",
|
|
211
|
+
"type": "library",
|
|
212
|
+
"version": "0.50.3"
|
|
213
|
+
}
|
|
214
|
+
}
|