@niibase/uniwind 1.0.0
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/dist/common/components/index.js +314 -0
- package/dist/common/components/native/ActivityIndicator.js +21 -0
- package/dist/common/components/native/Button.js +18 -0
- package/dist/common/components/native/FlatList.js +30 -0
- package/dist/common/components/native/Image.js +21 -0
- package/dist/common/components/native/ImageBackground.js +23 -0
- package/dist/common/components/native/InputAccessoryView.js +21 -0
- package/dist/common/components/native/KeyboardAvoidingView.js +20 -0
- package/dist/common/components/native/Modal.js +21 -0
- package/dist/common/components/native/Pressable.js +29 -0
- package/dist/common/components/native/RefreshControl.js +27 -0
- package/dist/common/components/native/SafeAreaView.js +18 -0
- package/dist/common/components/native/ScrollView.js +23 -0
- package/dist/common/components/native/SectionList.js +27 -0
- package/dist/common/components/native/Switch.js +32 -0
- package/dist/common/components/native/Text.js +36 -0
- package/dist/common/components/native/TextInput.js +53 -0
- package/dist/common/components/native/TouchableHighlight.js +35 -0
- package/dist/common/components/native/TouchableNativeFeedback.js +32 -0
- package/dist/common/components/native/TouchableOpacity.js +32 -0
- package/dist/common/components/native/TouchableWithoutFeedback.js +32 -0
- package/dist/common/components/native/View.js +18 -0
- package/dist/common/components/native/VirtualizedList.js +27 -0
- package/dist/common/components/native/useStyle.js +29 -0
- package/dist/common/components/utils.js +18 -0
- package/dist/common/components/web/ActivityIndicator.js +20 -0
- package/dist/common/components/web/Button.js +18 -0
- package/dist/common/components/web/FlatList.js +22 -0
- package/dist/common/components/web/Image.js +20 -0
- package/dist/common/components/web/ImageBackground.js +21 -0
- package/dist/common/components/web/KeyboardAvoidingView.js +18 -0
- package/dist/common/components/web/Modal.js +17 -0
- package/dist/common/components/web/Pressable.js +17 -0
- package/dist/common/components/web/RefreshControl.js +17 -0
- package/dist/common/components/web/SafeAreaView.js +17 -0
- package/dist/common/components/web/ScrollView.js +18 -0
- package/dist/common/components/web/SectionList.js +20 -0
- package/dist/common/components/web/Switch.js +26 -0
- package/dist/common/components/web/Text.js +17 -0
- package/dist/common/components/web/TextInput.js +17 -0
- package/dist/common/components/web/TouchableHighlight.js +20 -0
- package/dist/common/components/web/TouchableNativeFeedback.js +13 -0
- package/dist/common/components/web/TouchableOpacity.js +17 -0
- package/dist/common/components/web/TouchableWithoutFeedback.js +17 -0
- package/dist/common/components/web/View.js +17 -0
- package/dist/common/components/web/VirtualizedList.js +20 -0
- package/dist/common/components/web/index.js +187 -0
- package/dist/common/components/web/metro-injected.js +1 -0
- package/dist/common/components/web/rnw.js +42 -0
- package/dist/common/core/config/config.common.js +80 -0
- package/dist/common/core/config/config.js +51 -0
- package/dist/common/core/config/config.native.js +67 -0
- package/dist/common/core/config/index.js +16 -0
- package/dist/common/core/index.js +16 -0
- package/dist/common/core/listener.js +51 -0
- package/dist/common/core/logger.js +18 -0
- package/dist/common/core/native/index.js +27 -0
- package/dist/common/core/native/native-utils.js +36 -0
- package/dist/common/core/native/parsers/boxShadow.js +10 -0
- package/dist/common/core/native/parsers/fontVariant.js +8 -0
- package/dist/common/core/native/parsers/gradient.js +31 -0
- package/dist/common/core/native/parsers/index.js +60 -0
- package/dist/common/core/native/parsers/textShadow.js +39 -0
- package/dist/common/core/native/parsers/transforms.js +44 -0
- package/dist/common/core/native/runtime.js +34 -0
- package/dist/common/core/native/store.js +181 -0
- package/dist/common/core/types.js +1 -0
- package/dist/common/core/web/cssListener.js +146 -0
- package/dist/common/core/web/formatColor.js +15 -0
- package/dist/common/core/web/getWebStyles.js +51 -0
- package/dist/common/core/web/index.js +49 -0
- package/dist/common/core/web/parseCSSValue.js +15 -0
- package/dist/common/css/index.js +26 -0
- package/dist/common/css/insets.js +64 -0
- package/dist/common/css/processFunctions.js +54 -0
- package/dist/common/css/themes.js +95 -0
- package/dist/common/css/variants.js +16 -0
- package/dist/common/hoc/index.js +16 -0
- package/dist/common/hoc/types.js +1 -0
- package/dist/common/hoc/withUniwind.js +95 -0
- package/dist/common/hoc/withUniwind.native.js +106 -0
- package/dist/common/hoc/withUniwindUtils.js +16 -0
- package/dist/common/hooks/index.js +49 -0
- package/dist/common/hooks/useCSSVariable/getVariableValue.js +19 -0
- package/dist/common/hooks/useCSSVariable/getVariableValue.native.js +9 -0
- package/dist/common/hooks/useCSSVariable/index.js +16 -0
- package/dist/common/hooks/useCSSVariable/useCSSVariable.js +58 -0
- package/dist/common/hooks/useResolveClassNames.js +22 -0
- package/dist/common/hooks/useResolveClassNames.native.js +29 -0
- package/dist/common/hooks/useUniwind.js +28 -0
- package/dist/common/hooks/useUniwindAccent.js +13 -0
- package/dist/common/hooks/useUniwindAccent.native.js +12 -0
- package/dist/common/index.js +38 -0
- package/dist/common/types.js +28 -0
- package/dist/common/utils/buildDtsFile.js +18 -0
- package/dist/common/utils/stringifyThemes.js +8 -0
- package/dist/common/vite/index.d.ts +9 -0
- package/dist/common/vite/index.js +16 -0
- package/dist/common/vite/vite.js +72 -0
- package/dist/metro/index.cjs +166 -0
- package/dist/metro/index.d.ts +15 -0
- package/dist/metro/index.mjs +158 -0
- package/dist/metro/metro-transformer.cjs +1565 -0
- package/dist/metro/metro-transformer.mjs +1558 -0
- package/dist/module/components/index.d.ts +0 -0
- package/dist/module/components/index.js +312 -0
- package/dist/module/components/native/ActivityIndicator.d.ts +3 -0
- package/dist/module/components/native/ActivityIndicator.js +18 -0
- package/dist/module/components/native/Button.d.ts +3 -0
- package/dist/module/components/native/Button.js +15 -0
- package/dist/module/components/native/FlatList.d.ts +3 -0
- package/dist/module/components/native/FlatList.js +27 -0
- package/dist/module/components/native/Image.d.ts +3 -0
- package/dist/module/components/native/Image.js +18 -0
- package/dist/module/components/native/ImageBackground.d.ts +3 -0
- package/dist/module/components/native/ImageBackground.js +20 -0
- package/dist/module/components/native/InputAccessoryView.d.ts +3 -0
- package/dist/module/components/native/InputAccessoryView.js +21 -0
- package/dist/module/components/native/KeyboardAvoidingView.d.ts +3 -0
- package/dist/module/components/native/KeyboardAvoidingView.js +17 -0
- package/dist/module/components/native/Modal.d.ts +3 -0
- package/dist/module/components/native/Modal.js +18 -0
- package/dist/module/components/native/Pressable.d.ts +3 -0
- package/dist/module/components/native/Pressable.js +29 -0
- package/dist/module/components/native/RefreshControl.d.ts +3 -0
- package/dist/module/components/native/RefreshControl.js +24 -0
- package/dist/module/components/native/SafeAreaView.d.ts +3 -0
- package/dist/module/components/native/SafeAreaView.js +15 -0
- package/dist/module/components/native/ScrollView.d.ts +3 -0
- package/dist/module/components/native/ScrollView.js +20 -0
- package/dist/module/components/native/SectionList.d.ts +3 -0
- package/dist/module/components/native/SectionList.js +24 -0
- package/dist/module/components/native/Switch.d.ts +3 -0
- package/dist/module/components/native/Switch.js +26 -0
- package/dist/module/components/native/Text.d.ts +3 -0
- package/dist/module/components/native/Text.js +33 -0
- package/dist/module/components/native/TextInput.d.ts +3 -0
- package/dist/module/components/native/TextInput.js +50 -0
- package/dist/module/components/native/TouchableHighlight.d.ts +3 -0
- package/dist/module/components/native/TouchableHighlight.js +32 -0
- package/dist/module/components/native/TouchableNativeFeedback.d.ts +3 -0
- package/dist/module/components/native/TouchableNativeFeedback.js +29 -0
- package/dist/module/components/native/TouchableOpacity.d.ts +3 -0
- package/dist/module/components/native/TouchableOpacity.js +29 -0
- package/dist/module/components/native/TouchableWithoutFeedback.d.ts +3 -0
- package/dist/module/components/native/TouchableWithoutFeedback.js +29 -0
- package/dist/module/components/native/View.d.ts +3 -0
- package/dist/module/components/native/View.js +15 -0
- package/dist/module/components/native/VirtualizedList.d.ts +3 -0
- package/dist/module/components/native/VirtualizedList.js +24 -0
- package/dist/module/components/native/useStyle.d.ts +2 -0
- package/dist/module/components/native/useStyle.js +22 -0
- package/dist/module/components/utils.d.ts +1 -0
- package/dist/module/components/utils.js +11 -0
- package/dist/module/components/web/ActivityIndicator.d.ts +3 -0
- package/dist/module/components/web/ActivityIndicator.js +17 -0
- package/dist/module/components/web/Button.d.ts +3 -0
- package/dist/module/components/web/Button.js +15 -0
- package/dist/module/components/web/FlatList.d.ts +3 -0
- package/dist/module/components/web/FlatList.js +19 -0
- package/dist/module/components/web/Image.d.ts +3 -0
- package/dist/module/components/web/Image.js +17 -0
- package/dist/module/components/web/ImageBackground.d.ts +3 -0
- package/dist/module/components/web/ImageBackground.js +18 -0
- package/dist/module/components/web/KeyboardAvoidingView.d.ts +3 -0
- package/dist/module/components/web/KeyboardAvoidingView.js +15 -0
- package/dist/module/components/web/Modal.d.ts +3 -0
- package/dist/module/components/web/Modal.js +14 -0
- package/dist/module/components/web/Pressable.d.ts +3 -0
- package/dist/module/components/web/Pressable.js +14 -0
- package/dist/module/components/web/RefreshControl.d.ts +3 -0
- package/dist/module/components/web/RefreshControl.js +14 -0
- package/dist/module/components/web/SafeAreaView.d.ts +3 -0
- package/dist/module/components/web/SafeAreaView.js +14 -0
- package/dist/module/components/web/ScrollView.d.ts +3 -0
- package/dist/module/components/web/ScrollView.js +15 -0
- package/dist/module/components/web/SectionList.d.ts +3 -0
- package/dist/module/components/web/SectionList.js +17 -0
- package/dist/module/components/web/Switch.d.ts +3 -0
- package/dist/module/components/web/Switch.js +20 -0
- package/dist/module/components/web/Text.d.ts +3 -0
- package/dist/module/components/web/Text.js +14 -0
- package/dist/module/components/web/TextInput.d.ts +3 -0
- package/dist/module/components/web/TextInput.js +14 -0
- package/dist/module/components/web/TouchableHighlight.d.ts +3 -0
- package/dist/module/components/web/TouchableHighlight.js +17 -0
- package/dist/module/components/web/TouchableNativeFeedback.d.ts +2 -0
- package/dist/module/components/web/TouchableNativeFeedback.js +2 -0
- package/dist/module/components/web/TouchableOpacity.d.ts +3 -0
- package/dist/module/components/web/TouchableOpacity.js +14 -0
- package/dist/module/components/web/TouchableWithoutFeedback.d.ts +3 -0
- package/dist/module/components/web/TouchableWithoutFeedback.js +14 -0
- package/dist/module/components/web/View.d.ts +3 -0
- package/dist/module/components/web/View.js +14 -0
- package/dist/module/components/web/VirtualizedList.d.ts +3 -0
- package/dist/module/components/web/VirtualizedList.js +17 -0
- package/dist/module/components/web/index.d.ts +22 -0
- package/dist/module/components/web/index.js +22 -0
- package/dist/module/components/web/metro-injected.d.ts +0 -0
- package/dist/module/components/web/metro-injected.js +0 -0
- package/dist/module/components/web/rnw.d.ts +2 -0
- package/dist/module/components/web/rnw.js +35 -0
- package/dist/module/core/config/config.common.d.ts +18 -0
- package/dist/module/core/config/config.common.js +74 -0
- package/dist/module/core/config/config.d.ts +11 -0
- package/dist/module/core/config/config.js +48 -0
- package/dist/module/core/config/config.native.d.ts +12 -0
- package/dist/module/core/config/config.native.js +61 -0
- package/dist/module/core/config/index.d.ts +1 -0
- package/dist/module/core/config/index.js +1 -0
- package/dist/module/core/index.d.ts +1 -0
- package/dist/module/core/index.js +1 -0
- package/dist/module/core/listener.d.ts +12 -0
- package/dist/module/core/listener.js +45 -0
- package/dist/module/core/logger.d.ts +5 -0
- package/dist/module/core/logger.js +11 -0
- package/dist/module/core/native/index.d.ts +2 -0
- package/dist/module/core/native/index.js +2 -0
- package/dist/module/core/native/native-utils.d.ts +4 -0
- package/dist/module/core/native/native-utils.js +27 -0
- package/dist/module/core/native/parsers/boxShadow.d.ts +1 -0
- package/dist/module/core/native/parsers/boxShadow.js +3 -0
- package/dist/module/core/native/parsers/fontVariant.d.ts +1 -0
- package/dist/module/core/native/parsers/fontVariant.js +1 -0
- package/dist/module/core/native/parsers/gradient.d.ts +8 -0
- package/dist/module/core/native/parsers/gradient.js +26 -0
- package/dist/module/core/native/parsers/index.d.ts +5 -0
- package/dist/module/core/native/parsers/index.js +5 -0
- package/dist/module/core/native/parsers/textShadow.d.ts +1 -0
- package/dist/module/core/native/parsers/textShadow.js +32 -0
- package/dist/module/core/native/parsers/transforms.d.ts +1 -0
- package/dist/module/core/native/parsers/transforms.js +48 -0
- package/dist/module/core/native/runtime.d.ts +2 -0
- package/dist/module/core/native/runtime.js +28 -0
- package/dist/module/core/native/store.d.ts +19 -0
- package/dist/module/core/native/store.js +172 -0
- package/dist/module/core/types.d.ts +73 -0
- package/dist/module/core/types.js +0 -0
- package/dist/module/core/web/cssListener.d.ts +19 -0
- package/dist/module/core/web/cssListener.js +137 -0
- package/dist/module/core/web/formatColor.d.ts +1 -0
- package/dist/module/core/web/formatColor.js +8 -0
- package/dist/module/core/web/getWebStyles.d.ts +2 -0
- package/dist/module/core/web/getWebStyles.js +49 -0
- package/dist/module/core/web/index.d.ts +4 -0
- package/dist/module/core/web/index.js +4 -0
- package/dist/module/core/web/parseCSSValue.d.ts +1 -0
- package/dist/module/core/web/parseCSSValue.js +8 -0
- package/dist/module/css/index.d.ts +1 -0
- package/dist/module/css/index.js +25 -0
- package/dist/module/css/insets.d.ts +1 -0
- package/dist/module/css/insets.js +63 -0
- package/dist/module/css/processFunctions.d.ts +2 -0
- package/dist/module/css/processFunctions.js +36 -0
- package/dist/module/css/themes.d.ts +1 -0
- package/dist/module/css/themes.js +97 -0
- package/dist/module/css/variants.d.ts +1 -0
- package/dist/module/css/variants.js +9 -0
- package/dist/module/hoc/index.d.ts +1 -0
- package/dist/module/hoc/index.js +1 -0
- package/dist/module/hoc/types.d.ts +27 -0
- package/dist/module/hoc/types.js +0 -0
- package/dist/module/hoc/withUniwind.d.ts +2 -0
- package/dist/module/hoc/withUniwind.js +76 -0
- package/dist/module/hoc/withUniwind.native.d.ts +2 -0
- package/dist/module/hoc/withUniwind.native.js +81 -0
- package/dist/module/hoc/withUniwindUtils.d.ts +5 -0
- package/dist/module/hoc/withUniwindUtils.js +5 -0
- package/dist/module/hooks/index.d.ts +4 -0
- package/dist/module/hooks/index.js +4 -0
- package/dist/module/hooks/useCSSVariable/getVariableValue.d.ts +1 -0
- package/dist/module/hooks/useCSSVariable/getVariableValue.js +12 -0
- package/dist/module/hooks/useCSSVariable/getVariableValue.native.d.ts +1 -0
- package/dist/module/hooks/useCSSVariable/getVariableValue.native.js +2 -0
- package/dist/module/hooks/useCSSVariable/index.d.ts +1 -0
- package/dist/module/hooks/useCSSVariable/index.js +1 -0
- package/dist/module/hooks/useCSSVariable/useCSSVariable.d.ts +13 -0
- package/dist/module/hooks/useCSSVariable/useCSSVariable.js +56 -0
- package/dist/module/hooks/useResolveClassNames.d.ts +2 -0
- package/dist/module/hooks/useResolveClassNames.js +18 -0
- package/dist/module/hooks/useResolveClassNames.native.d.ts +2 -0
- package/dist/module/hooks/useResolveClassNames.native.js +22 -0
- package/dist/module/hooks/useUniwind.d.ts +5 -0
- package/dist/module/hooks/useUniwind.js +21 -0
- package/dist/module/hooks/useUniwindAccent.d.ts +1 -0
- package/dist/module/hooks/useUniwindAccent.js +6 -0
- package/dist/module/hooks/useUniwindAccent.native.d.ts +2 -0
- package/dist/module/hooks/useUniwindAccent.native.js +5 -0
- package/dist/module/index.d.ts +5 -0
- package/dist/module/index.js +3 -0
- package/dist/module/types.d.ts +21 -0
- package/dist/module/types.js +22 -0
- package/dist/module/utils/buildDtsFile.d.ts +1 -0
- package/dist/module/utils/buildDtsFile.js +22 -0
- package/dist/module/utils/stringifyThemes.d.ts +1 -0
- package/dist/module/utils/stringifyThemes.js +1 -0
- package/dist/module/vite/index.d.ts +9 -0
- package/dist/module/vite/index.js +1 -0
- package/dist/module/vite/vite.d.ts +8 -0
- package/dist/module/vite/vite.js +73 -0
- package/dist/shared/uniwind.BZIuaszw.cjs +11 -0
- package/dist/shared/uniwind.BgZDHdUR.cjs +81 -0
- package/dist/shared/uniwind.Bt3kqZo6.mjs +290 -0
- package/dist/shared/uniwind.CyoRUwOj.mjs +9 -0
- package/dist/shared/uniwind.D3fvrgEG.mjs +68 -0
- package/dist/shared/uniwind.D_6s2EM-.cjs +301 -0
- package/dist/vite/index.cjs +80 -0
- package/dist/vite/index.d.ts +9 -0
- package/dist/vite/index.mjs +74 -0
- package/metro/package.json +3 -0
- package/package.json +106 -0
- package/readme.md +71 -0
- package/src/components/index.ts +313 -0
- package/src/components/native/ActivityIndicator.tsx +19 -0
- package/src/components/native/Button.tsx +16 -0
- package/src/components/native/FlatList.tsx +28 -0
- package/src/components/native/Image.tsx +19 -0
- package/src/components/native/ImageBackground.tsx +21 -0
- package/src/components/native/InputAccessoryView.tsx +23 -0
- package/src/components/native/KeyboardAvoidingView.tsx +18 -0
- package/src/components/native/Modal.tsx +19 -0
- package/src/components/native/Pressable.tsx +31 -0
- package/src/components/native/RefreshControl.tsx +25 -0
- package/src/components/native/SafeAreaView.tsx +16 -0
- package/src/components/native/ScrollView.tsx +21 -0
- package/src/components/native/SectionList.tsx +25 -0
- package/src/components/native/Switch.tsx +28 -0
- package/src/components/native/Text.tsx +39 -0
- package/src/components/native/TextInput.tsx +52 -0
- package/src/components/native/TouchableHighlight.tsx +34 -0
- package/src/components/native/TouchableNativeFeedback.tsx +31 -0
- package/src/components/native/TouchableOpacity.tsx +31 -0
- package/src/components/native/TouchableWithoutFeedback.tsx +31 -0
- package/src/components/native/View.tsx +16 -0
- package/src/components/native/VirtualizedList.tsx +25 -0
- package/src/components/native/useStyle.ts +33 -0
- package/src/components/utils.ts +16 -0
- package/src/components/web/ActivityIndicator.tsx +18 -0
- package/src/components/web/Button.tsx +16 -0
- package/src/components/web/FlatList.tsx +20 -0
- package/src/components/web/Image.tsx +18 -0
- package/src/components/web/ImageBackground.tsx +19 -0
- package/src/components/web/KeyboardAvoidingView.tsx +15 -0
- package/src/components/web/Modal.tsx +14 -0
- package/src/components/web/Pressable.tsx +14 -0
- package/src/components/web/RefreshControl.tsx +14 -0
- package/src/components/web/SafeAreaView.tsx +14 -0
- package/src/components/web/ScrollView.tsx +15 -0
- package/src/components/web/SectionList.tsx +17 -0
- package/src/components/web/Switch.tsx +21 -0
- package/src/components/web/Text.tsx +14 -0
- package/src/components/web/TextInput.tsx +14 -0
- package/src/components/web/TouchableHighlight.tsx +18 -0
- package/src/components/web/TouchableNativeFeedback.tsx +2 -0
- package/src/components/web/TouchableOpacity.tsx +14 -0
- package/src/components/web/TouchableWithoutFeedback.tsx +14 -0
- package/src/components/web/View.tsx +14 -0
- package/src/components/web/VirtualizedList.tsx +17 -0
- package/src/components/web/index.ts +22 -0
- package/src/components/web/metro-injected.ts +1 -0
- package/src/components/web/rnw.ts +52 -0
- package/src/core/config/config.common.ts +98 -0
- package/src/core/config/config.native.ts +79 -0
- package/src/core/config/config.ts +64 -0
- package/src/core/config/index.ts +1 -0
- package/src/core/index.ts +1 -0
- package/src/core/listener.ts +59 -0
- package/src/core/logger.ts +15 -0
- package/src/core/native/index.ts +2 -0
- package/src/core/native/native-utils.ts +41 -0
- package/src/core/native/parsers/boxShadow.ts +7 -0
- package/src/core/native/parsers/fontVariant.ts +3 -0
- package/src/core/native/parsers/gradient.ts +39 -0
- package/src/core/native/parsers/index.ts +5 -0
- package/src/core/native/parsers/textShadow.ts +37 -0
- package/src/core/native/parsers/transforms.ts +64 -0
- package/src/core/native/runtime.ts +32 -0
- package/src/core/native/store.ts +238 -0
- package/src/core/types.ts +92 -0
- package/src/core/web/cssListener.ts +185 -0
- package/src/core/web/formatColor.ts +13 -0
- package/src/core/web/getWebStyles.ts +76 -0
- package/src/core/web/index.ts +4 -0
- package/src/core/web/parseCSSValue.ts +10 -0
- package/src/css/index.ts +32 -0
- package/src/css/insets.ts +73 -0
- package/src/css/processFunctions.ts +39 -0
- package/src/css/themes.ts +130 -0
- package/src/css/variants.ts +11 -0
- package/src/hoc/index.ts +1 -0
- package/src/hoc/types.ts +45 -0
- package/src/hoc/withUniwind.native.tsx +118 -0
- package/src/hoc/withUniwind.tsx +115 -0
- package/src/hoc/withUniwindUtils.ts +10 -0
- package/src/hooks/index.ts +4 -0
- package/src/hooks/useCSSVariable/getVariableValue.native.ts +3 -0
- package/src/hooks/useCSSVariable/getVariableValue.ts +19 -0
- package/src/hooks/useCSSVariable/index.ts +1 -0
- package/src/hooks/useCSSVariable/useCSSVariable.ts +89 -0
- package/src/hooks/useResolveClassNames.native.ts +29 -0
- package/src/hooks/useResolveClassNames.ts +26 -0
- package/src/hooks/useUniwind.ts +26 -0
- package/src/hooks/useUniwindAccent.native.ts +8 -0
- package/src/hooks/useUniwindAccent.ts +10 -0
- package/src/index.ts +5 -0
- package/src/metro/addMetaToStylesTemplate.ts +152 -0
- package/src/metro/compileVirtual.ts +74 -0
- package/src/metro/index.d.ts +15 -0
- package/src/metro/index.ts +1 -0
- package/src/metro/injectThemes.ts +23 -0
- package/src/metro/logger.ts +44 -0
- package/src/metro/metro-css-patches.ts +57 -0
- package/src/metro/metro-transformer.ts +99 -0
- package/src/metro/polyfillWeb.ts +14 -0
- package/src/metro/processor/color.ts +76 -0
- package/src/metro/processor/css.ts +541 -0
- package/src/metro/processor/functions.ts +199 -0
- package/src/metro/processor/index.ts +1 -0
- package/src/metro/processor/mq.ts +82 -0
- package/src/metro/processor/processor.ts +249 -0
- package/src/metro/processor/rn.ts +277 -0
- package/src/metro/processor/units.ts +58 -0
- package/src/metro/processor/var.ts +18 -0
- package/src/metro/resolvers.ts +101 -0
- package/src/metro/types.ts +74 -0
- package/src/metro/utils/common.ts +103 -0
- package/src/metro/utils/index.ts +2 -0
- package/src/metro/utils/serialize.ts +116 -0
- package/src/metro/withUniwindConfig.ts +60 -0
- package/src/types.ts +24 -0
- package/src/utils/buildDtsFile.ts +27 -0
- package/src/utils/stringifyThemes.ts +1 -0
- package/src/vite/index.d.ts +9 -0
- package/src/vite/index.ts +1 -0
- package/src/vite/vite.ts +86 -0
- package/types.d.ts +109 -0
- package/uniwind.css +262 -0
- package/vite/package.json +3 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Appearance, Dimensions, I18nManager, PixelRatio, StyleSheet } from 'react-native'
|
|
2
|
+
import { ColorScheme, Orientation } from '../../types'
|
|
3
|
+
import type { UniwindRuntime as UniwindRuntimeType } from '../types'
|
|
4
|
+
import { colorMix, lightDark } from './native-utils'
|
|
5
|
+
|
|
6
|
+
const window = Dimensions.get('window')
|
|
7
|
+
const initialColorScheme = Appearance.getColorScheme() ?? ColorScheme.Light
|
|
8
|
+
|
|
9
|
+
export const UniwindRuntime = {
|
|
10
|
+
screen: {
|
|
11
|
+
width: window.width,
|
|
12
|
+
height: window.height,
|
|
13
|
+
},
|
|
14
|
+
colorScheme: initialColorScheme,
|
|
15
|
+
currentThemeName: initialColorScheme,
|
|
16
|
+
orientation: window.width > window.height ? Orientation.Landscape : Orientation.Portrait,
|
|
17
|
+
fontScale: value => value * PixelRatio.getFontScale(),
|
|
18
|
+
hairlineWidth: StyleSheet.hairlineWidth,
|
|
19
|
+
rtl: I18nManager.isRTL,
|
|
20
|
+
insets: {
|
|
21
|
+
top: 0,
|
|
22
|
+
left: 0,
|
|
23
|
+
bottom: 0,
|
|
24
|
+
right: 0,
|
|
25
|
+
},
|
|
26
|
+
colorMix,
|
|
27
|
+
pixelRatio: value => value * PixelRatio.get(),
|
|
28
|
+
cubicBezier: () => '',
|
|
29
|
+
lightDark: () => '',
|
|
30
|
+
} as UniwindRuntimeType
|
|
31
|
+
|
|
32
|
+
UniwindRuntime.lightDark = lightDark.bind(UniwindRuntime)
|
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
/* eslint-disable max-depth */
|
|
2
|
+
import { Dimensions, Platform } from 'react-native'
|
|
3
|
+
import { Orientation, StyleDependency } from '../../types'
|
|
4
|
+
import { UniwindListener } from '../listener'
|
|
5
|
+
import { ComponentState, CSSVariables, GenerateStyleSheetsCallback, RNStyle, Style, StyleSheets, ThemeName } from '../types'
|
|
6
|
+
import { cloneWithAccessors } from './native-utils'
|
|
7
|
+
import { parseBoxShadow, parseFontVariant, parseTextShadowMutation, parseTransformsMutation, resolveGradient } from './parsers'
|
|
8
|
+
import { UniwindRuntime } from './runtime'
|
|
9
|
+
|
|
10
|
+
type StylesResult = {
|
|
11
|
+
styles: RNStyle
|
|
12
|
+
dependencies: Array<StyleDependency>
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
class UniwindStoreBuilder {
|
|
16
|
+
runtime = UniwindRuntime
|
|
17
|
+
vars = {} as Record<string, unknown>
|
|
18
|
+
runtimeThemeVariables = new Map<ThemeName, CSSVariables>()
|
|
19
|
+
private stylesheet = {} as StyleSheets
|
|
20
|
+
private cache = new Map<string, StylesResult>()
|
|
21
|
+
private generateStyleSheetCallbackResult: ReturnType<GenerateStyleSheetsCallback> | null = null
|
|
22
|
+
|
|
23
|
+
getStyles(className?: string, state?: ComponentState): StylesResult {
|
|
24
|
+
if (className === undefined || className === '') {
|
|
25
|
+
return {
|
|
26
|
+
styles: {},
|
|
27
|
+
dependencies: [],
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
const cacheKey = `${className}${state?.isDisabled ?? false}${state?.isFocused ?? false}${state?.isPressed ?? false}`
|
|
32
|
+
|
|
33
|
+
if (this.cache.has(cacheKey)) {
|
|
34
|
+
return this.cache.get(cacheKey)!
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
const result = this.resolveStyles(className, state)
|
|
38
|
+
|
|
39
|
+
this.cache.set(cacheKey, result)
|
|
40
|
+
UniwindListener.subscribe(
|
|
41
|
+
() => this.cache.delete(cacheKey),
|
|
42
|
+
result.dependencies,
|
|
43
|
+
{ once: true },
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
return result
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
reinit = (generateStyleSheetCallback?: GenerateStyleSheetsCallback) => {
|
|
50
|
+
const config = generateStyleSheetCallback?.(this.runtime) ?? this.generateStyleSheetCallbackResult
|
|
51
|
+
|
|
52
|
+
if (!config) {
|
|
53
|
+
return
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
const { scopedVars, stylesheet, vars } = config
|
|
57
|
+
|
|
58
|
+
this.generateStyleSheetCallbackResult = config
|
|
59
|
+
this.stylesheet = stylesheet
|
|
60
|
+
this.vars = vars
|
|
61
|
+
|
|
62
|
+
const themeVars = scopedVars[`__uniwind-theme-${this.runtime.currentThemeName}`]
|
|
63
|
+
const platformVars = scopedVars[`__uniwind-platform-${Platform.OS}`]
|
|
64
|
+
const runtimeThemeVars = this.runtimeThemeVariables.get(this.runtime.currentThemeName)
|
|
65
|
+
|
|
66
|
+
if (themeVars) {
|
|
67
|
+
Object.defineProperties(this.vars, Object.getOwnPropertyDescriptors(themeVars))
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
if (platformVars) {
|
|
71
|
+
Object.defineProperties(this.vars, Object.getOwnPropertyDescriptors(platformVars))
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if (runtimeThemeVars) {
|
|
75
|
+
Object.defineProperties(this.vars, Object.getOwnPropertyDescriptors(runtimeThemeVars))
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
if (__DEV__ && generateStyleSheetCallback) {
|
|
79
|
+
UniwindListener.notifyAll()
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
private resolveStyles(classNames: string, state?: ComponentState) {
|
|
84
|
+
const result = {} as Record<string, any>
|
|
85
|
+
let vars = this.vars
|
|
86
|
+
const dependencies = new Set<StyleDependency>()
|
|
87
|
+
const bestBreakpoints = new Map<string, Style>()
|
|
88
|
+
|
|
89
|
+
for (const className of classNames.split(' ')) {
|
|
90
|
+
if (!(className in this.stylesheet)) {
|
|
91
|
+
continue
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
for (const style of this.stylesheet[className] as Array<Style>) {
|
|
95
|
+
if (style.dependencies) {
|
|
96
|
+
style.dependencies.forEach(dep => dependencies.add(dep))
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
if (
|
|
100
|
+
style.minWidth > this.runtime.screen.width
|
|
101
|
+
|| style.maxWidth < this.runtime.screen.width
|
|
102
|
+
|| (style.theme !== null && this.runtime.currentThemeName !== style.theme)
|
|
103
|
+
|| (style.orientation !== null && this.runtime.orientation !== style.orientation)
|
|
104
|
+
|| (style.rtl !== null && this.runtime.rtl !== style.rtl)
|
|
105
|
+
|| (style.active !== null && state?.isPressed !== style.active)
|
|
106
|
+
|| (style.focus !== null && state?.isFocused !== style.focus)
|
|
107
|
+
|| (style.disabled !== null && state?.isDisabled !== style.disabled)
|
|
108
|
+
) {
|
|
109
|
+
continue
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
for (const [property, valueGetter] of style.entries) {
|
|
113
|
+
const previousBest = bestBreakpoints.get(property)
|
|
114
|
+
|
|
115
|
+
if (
|
|
116
|
+
previousBest
|
|
117
|
+
&& (
|
|
118
|
+
previousBest.minWidth > style.minWidth
|
|
119
|
+
|| previousBest.complexity > style.complexity
|
|
120
|
+
|| previousBest.importantProperties.includes(property)
|
|
121
|
+
)
|
|
122
|
+
) {
|
|
123
|
+
continue
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
if (property[0] === '-') {
|
|
127
|
+
// Clone vars object if we are adding inline variables
|
|
128
|
+
if (vars === this.vars) {
|
|
129
|
+
vars = cloneWithAccessors(this.vars)
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
Object.defineProperty(vars, property, {
|
|
133
|
+
configurable: true,
|
|
134
|
+
enumerable: true,
|
|
135
|
+
get: valueGetter,
|
|
136
|
+
})
|
|
137
|
+
} else {
|
|
138
|
+
Object.defineProperty(result, property, {
|
|
139
|
+
configurable: true,
|
|
140
|
+
enumerable: true,
|
|
141
|
+
get: () => valueGetter.call(vars),
|
|
142
|
+
})
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
bestBreakpoints.set(property, style)
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
if (result.lineHeight !== undefined && result.lineHeight < 6) {
|
|
151
|
+
Object.defineProperty(result, 'lineHeight', {
|
|
152
|
+
value: result.fontSize * result.lineHeight,
|
|
153
|
+
configurable: true,
|
|
154
|
+
enumerable: true,
|
|
155
|
+
})
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
if (result.boxShadow !== undefined) {
|
|
159
|
+
Object.defineProperty(result, 'boxShadow', {
|
|
160
|
+
value: parseBoxShadow(result.boxShadow),
|
|
161
|
+
configurable: true,
|
|
162
|
+
enumerable: true,
|
|
163
|
+
})
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
if (result.visibility === 'hidden') {
|
|
167
|
+
Object.defineProperty(result, 'display', {
|
|
168
|
+
value: 'none',
|
|
169
|
+
configurable: true,
|
|
170
|
+
enumerable: true,
|
|
171
|
+
})
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
if (
|
|
175
|
+
result.borderStyle !== undefined && result.borderColor === undefined
|
|
176
|
+
) {
|
|
177
|
+
Object.defineProperty(result, 'borderColor', {
|
|
178
|
+
value: '#000000',
|
|
179
|
+
configurable: true,
|
|
180
|
+
enumerable: true,
|
|
181
|
+
})
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
if (
|
|
185
|
+
result.outlineStyle !== undefined && result.outlineColor === undefined
|
|
186
|
+
) {
|
|
187
|
+
Object.defineProperty(result, 'outlineColor', {
|
|
188
|
+
value: '#000000',
|
|
189
|
+
configurable: true,
|
|
190
|
+
enumerable: true,
|
|
191
|
+
})
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
if (result.fontVariant !== undefined) {
|
|
195
|
+
Object.defineProperty(result, 'fontVariant', {
|
|
196
|
+
value: parseFontVariant(result.fontVariant),
|
|
197
|
+
configurable: true,
|
|
198
|
+
enumerable: true,
|
|
199
|
+
})
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
parseTransformsMutation(result)
|
|
203
|
+
|
|
204
|
+
if (result.experimental_backgroundImage !== undefined) {
|
|
205
|
+
Object.defineProperty(result, 'experimental_backgroundImage', {
|
|
206
|
+
value: resolveGradient(result.experimental_backgroundImage),
|
|
207
|
+
configurable: true,
|
|
208
|
+
enumerable: true,
|
|
209
|
+
})
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
if (result.textShadow !== undefined) {
|
|
213
|
+
parseTextShadowMutation(result)
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
return {
|
|
217
|
+
styles: { ...result } as RNStyle,
|
|
218
|
+
dependencies: Array.from(dependencies),
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
export const UniwindStore = new UniwindStoreBuilder()
|
|
224
|
+
|
|
225
|
+
Dimensions.addEventListener('change', ({ window }) => {
|
|
226
|
+
const newOrientation = window.width > window.height ? Orientation.Landscape : Orientation.Portrait
|
|
227
|
+
const orientationChanged = UniwindStore.runtime.orientation !== newOrientation
|
|
228
|
+
|
|
229
|
+
UniwindStore.runtime.screen = {
|
|
230
|
+
width: window.width,
|
|
231
|
+
height: window.height,
|
|
232
|
+
}
|
|
233
|
+
UniwindStore.runtime.orientation = newOrientation
|
|
234
|
+
UniwindListener.notify([
|
|
235
|
+
...orientationChanged ? [StyleDependency.Orientation] : [],
|
|
236
|
+
StyleDependency.Dimensions,
|
|
237
|
+
])
|
|
238
|
+
})
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import type { ImageStyle, StyleProp, TextStyle, ViewStyle } from 'react-native'
|
|
2
|
+
import { ColorScheme, Orientation, StyleDependency, UniwindConfig } from '../types'
|
|
3
|
+
|
|
4
|
+
export type Style = {
|
|
5
|
+
entries: Array<[string, () => unknown]>
|
|
6
|
+
minWidth: number
|
|
7
|
+
maxWidth: number
|
|
8
|
+
orientation: Orientation | null
|
|
9
|
+
theme: ColorScheme | null
|
|
10
|
+
rtl: boolean | null
|
|
11
|
+
native: boolean
|
|
12
|
+
dependencies: Array<StyleDependency> | null
|
|
13
|
+
index: number
|
|
14
|
+
className: string
|
|
15
|
+
importantProperties: Array<string>
|
|
16
|
+
complexity: number
|
|
17
|
+
active: boolean | null
|
|
18
|
+
focus: boolean | null
|
|
19
|
+
disabled: boolean | null
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export type StyleSheets = Record<string, Array<Style>>
|
|
23
|
+
|
|
24
|
+
export type GenerateStyleSheetsCallback = (rt: UniwindRuntime) => {
|
|
25
|
+
stylesheet: StyleSheets
|
|
26
|
+
vars: Record<string, unknown>
|
|
27
|
+
scopedVars: Partial<Record<string, Record<string, unknown>>>
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
type UserThemes = UniwindConfig extends { themes: infer T extends readonly string[] } ? T
|
|
31
|
+
: readonly string[]
|
|
32
|
+
|
|
33
|
+
export type ThemeName = UserThemes[number]
|
|
34
|
+
|
|
35
|
+
export type UniwindRuntime = {
|
|
36
|
+
screen: {
|
|
37
|
+
width: number
|
|
38
|
+
height: number
|
|
39
|
+
}
|
|
40
|
+
orientation: Orientation
|
|
41
|
+
colorScheme: ColorScheme
|
|
42
|
+
currentThemeName: ThemeName
|
|
43
|
+
rtl: boolean
|
|
44
|
+
insets: {
|
|
45
|
+
top: number
|
|
46
|
+
bottom: number
|
|
47
|
+
left: number
|
|
48
|
+
right: number
|
|
49
|
+
}
|
|
50
|
+
hairlineWidth: number
|
|
51
|
+
pixelRatio: (value: number) => number
|
|
52
|
+
fontScale: (value: number) => number
|
|
53
|
+
colorMix: (color: string, weight: number | string, mixColor: string) => string
|
|
54
|
+
cubicBezier: (x1: number, y1: number, x2: number, y2: number) => string
|
|
55
|
+
lightDark: (light: string, dark: string) => string
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export type RNStyle = ViewStyle & TextStyle & ImageStyle & {
|
|
59
|
+
accentColor?: string
|
|
60
|
+
fill?: string
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export type RNStylesProps =
|
|
64
|
+
| 'style'
|
|
65
|
+
| 'contentContainerStyle'
|
|
66
|
+
| 'imageStyle'
|
|
67
|
+
| 'ListFooterComponentStyle'
|
|
68
|
+
| 'ListHeaderComponentStyle'
|
|
69
|
+
| 'columnWrapperStyle'
|
|
70
|
+
export type RNClassNameProps = GetClassName<RNStylesProps>
|
|
71
|
+
|
|
72
|
+
type GetClassName<T extends string> = T extends `${infer S}Style` ? `${S}ClassName` : 'className'
|
|
73
|
+
|
|
74
|
+
export type UniwindComponentProps =
|
|
75
|
+
& {
|
|
76
|
+
[K in RNStylesProps]?: StyleProp<RNStyle>
|
|
77
|
+
}
|
|
78
|
+
& {
|
|
79
|
+
[K in RNClassNameProps]?: string
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
declare global {
|
|
83
|
+
var __uniwindThemes__: ReadonlyArray<string> | undefined
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export type ComponentState = {
|
|
87
|
+
isPressed?: boolean
|
|
88
|
+
isDisabled?: boolean
|
|
89
|
+
isFocused?: boolean
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export type CSSVariables = Record<string, string | number>
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
import { StyleDependency } from '../../types'
|
|
2
|
+
import { UniwindListener } from '../listener'
|
|
3
|
+
|
|
4
|
+
class CSSListenerBuilder {
|
|
5
|
+
private classNameMediaQueryListeners = new Map<string, MediaQueryList>()
|
|
6
|
+
private listeners = new Map<MediaQueryList, Set<VoidFunction>>()
|
|
7
|
+
private registeredRules = new Map<string, MediaQueryList>()
|
|
8
|
+
private processedStyleSheets = new WeakSet<CSSStyleSheet>()
|
|
9
|
+
private pendingInitialization: number | undefined = undefined
|
|
10
|
+
|
|
11
|
+
constructor() {
|
|
12
|
+
if (typeof document === 'undefined') {
|
|
13
|
+
return
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
const observer = new MutationObserver(mutations => {
|
|
17
|
+
for (const mutation of mutations) {
|
|
18
|
+
if (mutation.type === 'childList') {
|
|
19
|
+
this.scheduleInitialization()
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
})
|
|
23
|
+
|
|
24
|
+
this.initialize()
|
|
25
|
+
observer.observe(document.head, {
|
|
26
|
+
childList: true,
|
|
27
|
+
subtree: false,
|
|
28
|
+
attributes: true,
|
|
29
|
+
attributeFilter: ['disabled', 'media', 'title', 'href', 'rel'],
|
|
30
|
+
})
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
subscribeToClassName(classNames: string, listener: VoidFunction) {
|
|
34
|
+
const disposables = [] as Array<VoidFunction>
|
|
35
|
+
|
|
36
|
+
classNames.split(' ').forEach(className => {
|
|
37
|
+
const mediaQuery = this.classNameMediaQueryListeners.get(className)
|
|
38
|
+
|
|
39
|
+
if (!mediaQuery) {
|
|
40
|
+
// eslint-disable-next-line no-empty-function
|
|
41
|
+
return () => {}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
const listeners = this.listeners.get(mediaQuery)
|
|
45
|
+
|
|
46
|
+
listeners?.add(listener)
|
|
47
|
+
disposables.push(() => listeners?.delete(listener))
|
|
48
|
+
})
|
|
49
|
+
|
|
50
|
+
const disposeThemeListener = UniwindListener.subscribe(listener, [StyleDependency.Theme])
|
|
51
|
+
|
|
52
|
+
return () => {
|
|
53
|
+
disposables.forEach(disposable => disposable())
|
|
54
|
+
disposeThemeListener()
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
private scheduleInitialization() {
|
|
59
|
+
this.cancelPendingInitialization()
|
|
60
|
+
|
|
61
|
+
if (typeof requestIdleCallback !== 'undefined') {
|
|
62
|
+
this.pendingInitialization = requestIdleCallback(() => {
|
|
63
|
+
this.initialize()
|
|
64
|
+
}, { timeout: 50 })
|
|
65
|
+
|
|
66
|
+
return
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
this.pendingInitialization = setTimeout(() => {
|
|
70
|
+
this.initialize()
|
|
71
|
+
}, 50) as unknown as number
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
private cancelPendingInitialization() {
|
|
75
|
+
if (this.pendingInitialization !== undefined) {
|
|
76
|
+
if (typeof cancelIdleCallback !== 'undefined') {
|
|
77
|
+
cancelIdleCallback(this.pendingInitialization)
|
|
78
|
+
} else {
|
|
79
|
+
clearTimeout(this.pendingInitialization)
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
this.pendingInitialization = undefined
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
private initialize() {
|
|
87
|
+
this.pendingInitialization = undefined
|
|
88
|
+
|
|
89
|
+
for (const sheet of Array.from(document.styleSheets)) {
|
|
90
|
+
// Skip already processed stylesheets
|
|
91
|
+
if (this.processedStyleSheets.has(sheet)) {
|
|
92
|
+
continue
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
let rules: CSSRuleList
|
|
96
|
+
|
|
97
|
+
try {
|
|
98
|
+
// May throw for cross-origin stylesheets
|
|
99
|
+
rules = sheet.cssRules
|
|
100
|
+
} catch {
|
|
101
|
+
continue
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition, @typescript-eslint/strict-boolean-expressions
|
|
105
|
+
if (!rules) {
|
|
106
|
+
continue
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// Mark as processed after successful cssRules access
|
|
110
|
+
this.processedStyleSheets.add(sheet)
|
|
111
|
+
|
|
112
|
+
this.addMediaQueriesDeep(rules)
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
private isStyleRule(rule: CSSRule): rule is CSSStyleRule {
|
|
117
|
+
return rule.constructor.name === 'CSSStyleRule'
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
private isMediaRule(rule: CSSRule): rule is CSSMediaRule {
|
|
121
|
+
return rule.constructor.name === 'CSSMediaRule'
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
private collectParentMediaQueries(rule: CSSRule, acc = [] as Array<CSSMediaRule>): Array<CSSMediaRule> {
|
|
125
|
+
const { parentRule } = rule
|
|
126
|
+
|
|
127
|
+
if (!parentRule) {
|
|
128
|
+
return []
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
if (this.isMediaRule(parentRule)) {
|
|
132
|
+
acc.push(parentRule)
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
const result = this.collectParentMediaQueries(parentRule, acc)
|
|
136
|
+
|
|
137
|
+
acc.push(...result)
|
|
138
|
+
|
|
139
|
+
return Array.from(new Set(acc))
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
private addMediaQueriesDeep(rules: CSSRuleList) {
|
|
143
|
+
for (const rule of Array.from(rules)) {
|
|
144
|
+
if (this.isStyleRule(rule)) {
|
|
145
|
+
const mediaQueries = this.collectParentMediaQueries(rule)
|
|
146
|
+
|
|
147
|
+
if (mediaQueries.length > 0) {
|
|
148
|
+
this.addMediaQuery(mediaQueries, rule.selectorText)
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
continue
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
if ('cssRules' in rule && rule.cssRules instanceof CSSRuleList) {
|
|
155
|
+
this.addMediaQueriesDeep(rule.cssRules)
|
|
156
|
+
|
|
157
|
+
continue
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
private addMediaQuery(mediaQueries: Array<CSSMediaRule>, className: string) {
|
|
163
|
+
const rules = mediaQueries.map(mediaQuery => mediaQuery.conditionText).sort().join(' and ')
|
|
164
|
+
const parsedClassName = className.replace('.', '').replace('\\', '')
|
|
165
|
+
const cachedMediaQueryList = this.registeredRules.get(rules)
|
|
166
|
+
|
|
167
|
+
if (cachedMediaQueryList) {
|
|
168
|
+
this.classNameMediaQueryListeners.set(parsedClassName, cachedMediaQueryList)
|
|
169
|
+
|
|
170
|
+
return
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
const mediaQueryList = window.matchMedia(rules)
|
|
174
|
+
|
|
175
|
+
this.registeredRules.set(rules, mediaQueryList)
|
|
176
|
+
this.listeners.set(mediaQueryList, new Set())
|
|
177
|
+
this.classNameMediaQueryListeners.set(parsedClassName, mediaQueryList)
|
|
178
|
+
|
|
179
|
+
mediaQueryList.addEventListener('change', () => {
|
|
180
|
+
this.listeners.get(mediaQueryList)!.forEach(listener => listener())
|
|
181
|
+
})
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
export const CSSListener = new CSSListenerBuilder()
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { formatHex, formatHex8, parse } from 'culori'
|
|
2
|
+
|
|
3
|
+
export const formatColor = (color: string) => {
|
|
4
|
+
const parsedColor = parse(color)
|
|
5
|
+
|
|
6
|
+
if (!parsedColor) {
|
|
7
|
+
return color
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
return parsedColor.alpha !== undefined && parsedColor.alpha !== 1
|
|
11
|
+
? formatHex8(parsedColor)
|
|
12
|
+
: formatHex(parsedColor)
|
|
13
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { RNStyle } from '../types'
|
|
2
|
+
import { parseCSSValue } from './parseCSSValue'
|
|
3
|
+
|
|
4
|
+
const dummy = typeof document !== 'undefined'
|
|
5
|
+
? Object.assign(document.createElement('div'), {
|
|
6
|
+
style: 'display: none',
|
|
7
|
+
})
|
|
8
|
+
: null
|
|
9
|
+
|
|
10
|
+
if (dummy) {
|
|
11
|
+
document.body.appendChild(dummy)
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const getComputedStyles = () => {
|
|
15
|
+
if (!dummy) {
|
|
16
|
+
return {} as CSSStyleDeclaration
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
const computedStyles = window.getComputedStyle(dummy)
|
|
20
|
+
const styles = {} as CSSStyleDeclaration
|
|
21
|
+
|
|
22
|
+
// eslint-disable-next-line @typescript-eslint/prefer-for-of
|
|
23
|
+
for (let i = 0; i < computedStyles.length; i++) {
|
|
24
|
+
// Typescript is unable to infer it properly
|
|
25
|
+
const prop = computedStyles[i] as any
|
|
26
|
+
|
|
27
|
+
styles[prop] = computedStyles.getPropertyValue(prop)
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
return styles
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
const initialStyles = typeof document !== 'undefined'
|
|
34
|
+
? getComputedStyles()
|
|
35
|
+
: {} as CSSStyleDeclaration
|
|
36
|
+
|
|
37
|
+
const getObjectDifference = <T extends object>(obj1: T, obj2: T): T => {
|
|
38
|
+
const diff = {} as T
|
|
39
|
+
const keys = Object.keys(obj2) as Array<keyof T>
|
|
40
|
+
|
|
41
|
+
keys.forEach(key => {
|
|
42
|
+
if (obj2[key] !== obj1[key]) {
|
|
43
|
+
diff[key] = obj2[key]
|
|
44
|
+
}
|
|
45
|
+
})
|
|
46
|
+
|
|
47
|
+
return diff
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export const getWebStyles = (className?: string): RNStyle => {
|
|
51
|
+
if (className === undefined) {
|
|
52
|
+
return {}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
if (!dummy) {
|
|
56
|
+
return {}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
dummy.className = className
|
|
60
|
+
|
|
61
|
+
const computedStyles = getObjectDifference(initialStyles, getComputedStyles())
|
|
62
|
+
|
|
63
|
+
return Object.fromEntries(
|
|
64
|
+
Object.entries(computedStyles)
|
|
65
|
+
.map(([key, value]) => {
|
|
66
|
+
const parsedKey = key[0] === '-'
|
|
67
|
+
? key
|
|
68
|
+
: key.replace(/-([a-z])/g, (_, letter) => letter.toUpperCase())
|
|
69
|
+
|
|
70
|
+
return [
|
|
71
|
+
parsedKey,
|
|
72
|
+
parseCSSValue(value),
|
|
73
|
+
]
|
|
74
|
+
}),
|
|
75
|
+
)
|
|
76
|
+
}
|
package/src/css/index.ts
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import fs from 'fs'
|
|
2
|
+
import path from 'path'
|
|
3
|
+
import { generateCSSForInsets } from './insets'
|
|
4
|
+
import { generateCSSForThemes } from './themes'
|
|
5
|
+
import { generateCSSForVariants } from './variants'
|
|
6
|
+
|
|
7
|
+
const dirname = typeof __dirname !== 'undefined' ? __dirname : import.meta.dirname
|
|
8
|
+
|
|
9
|
+
export const buildCSS = async (themes: Array<string>, input: string) => {
|
|
10
|
+
const variants = generateCSSForVariants()
|
|
11
|
+
const insets = generateCSSForInsets()
|
|
12
|
+
const themesCSS = await generateCSSForThemes(themes, input)
|
|
13
|
+
const cssFilePath = path.join(dirname, '../../uniwind.css')
|
|
14
|
+
const oldCSSFile = fs.existsSync(cssFilePath)
|
|
15
|
+
? fs.readFileSync(cssFilePath, 'utf-8')
|
|
16
|
+
: ''
|
|
17
|
+
|
|
18
|
+
const newCssFile = [
|
|
19
|
+
variants,
|
|
20
|
+
insets,
|
|
21
|
+
themesCSS,
|
|
22
|
+
].join('\n')
|
|
23
|
+
|
|
24
|
+
if (oldCSSFile === newCssFile) {
|
|
25
|
+
return
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
fs.writeFileSync(
|
|
29
|
+
cssFilePath,
|
|
30
|
+
newCssFile,
|
|
31
|
+
)
|
|
32
|
+
}
|