@0610studio/zs-ui 0.16.1 → 0.17.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/app.plugin.js +39 -0
- package/build/ZsUiModule.d.ts.map +1 -1
- package/build/assets/SvgCheck.d.ts.map +1 -1
- package/build/assets/SvgExclamation.d.ts.map +1 -1
- package/build/assets/SvgX.d.ts.map +1 -1
- package/build/context/OverlayContext.d.ts +0 -1
- package/build/context/OverlayContext.d.ts.map +1 -1
- package/build/context/OverlayContext.js.map +1 -1
- package/build/context/ThemeContext.js.map +1 -1
- package/build/model/globalOverlay.d.ts.map +1 -1
- package/build/model/globalOverlay.js.map +1 -1
- package/build/model/types.d.ts +1 -1
- package/build/model/types.d.ts.map +1 -1
- package/build/model/useFoldingState.d.ts.map +1 -1
- package/build/model/useFoldingState.js +25 -16
- package/build/model/useFoldingState.js.map +1 -1
- package/build/model/useKeyboard.d.ts.map +1 -1
- package/build/model/useOverlay.d.ts +0 -1
- package/build/model/useOverlay.d.ts.map +1 -1
- package/build/model/useOverlay.js.map +1 -1
- package/build/model/useStyleSheetCreate.d.ts.map +1 -1
- package/build/model/utils.d.ts.map +1 -1
- package/build/model/utils.js.map +1 -1
- package/build/overlay/BottomSheetOverlay/index.d.ts.map +1 -1
- package/build/overlay/BottomSheetOverlay/index.js +8 -1
- package/build/overlay/BottomSheetOverlay/index.js.map +1 -1
- package/build/overlay/Modality/index.js.map +1 -1
- package/build/overlay/PopOver/PopOverButton.js.map +1 -1
- package/build/overlay/PopOver/PopOverMenu.d.ts +2 -2
- package/build/overlay/PopOver/PopOverMenu.d.ts.map +1 -1
- package/build/overlay/PopOver/PopOverMenu.js.map +1 -1
- package/build/overlay/SnackbarNotify/index.d.ts +1 -1
- package/build/overlay/SnackbarNotify/index.d.ts.map +1 -1
- package/build/overlay/SnackbarNotify/index.js.map +1 -1
- package/build/overlay/SnackbarNotify/ui/SnackbarItem.d.ts +1 -1
- package/build/overlay/SnackbarNotify/ui/SnackbarItem.d.ts.map +1 -1
- package/build/overlay/ZSPortal/index.js.map +1 -1
- package/build/theme/palette.d.ts +4 -4
- package/build/theme/palette.d.ts.map +1 -1
- package/build/theme/palette.js +1 -1
- package/build/theme/palette.js.map +1 -1
- package/build/ui/ZSAboveKeyboard/index.d.ts +0 -1
- package/build/ui/ZSAboveKeyboard/index.d.ts.map +1 -1
- package/build/ui/ZSBlockButton/index.d.ts +0 -1
- package/build/ui/ZSBlockButton/index.d.ts.map +1 -1
- package/build/ui/ZSBlockButton/index.js +9 -1
- package/build/ui/ZSBlockButton/index.js.map +1 -1
- package/build/ui/ZSContainer/index.d.ts +12 -12
- package/build/ui/ZSContainer/index.d.ts.map +1 -1
- package/build/ui/ZSContainer/index.js.map +1 -1
- package/build/ui/ZSRadioGroup/index.d.ts.map +1 -1
- package/build/ui/ZSRadioGroup/index.js +10 -9
- package/build/ui/ZSRadioGroup/index.js.map +1 -1
- package/build/ui/ZSSkeleton/index.d.ts +1 -1
- package/build/ui/ZSSkeleton/index.d.ts.map +1 -1
- package/build/ui/ZSSkeleton/index.js.map +1 -1
- package/build/ui/ZSText/index.d.ts.map +1 -1
- package/build/ui/ZSText/index.js +14 -1
- package/build/ui/ZSText/index.js.map +1 -1
- package/build/ui/ZSTextField/index.d.ts +0 -1
- package/build/ui/ZSTextField/index.d.ts.map +1 -1
- package/build/ui/ZSTextField/index.js.map +1 -1
- package/build/ui/ZSTextField/ui/ButtonClose.d.ts +4 -5
- package/build/ui/ZSTextField/ui/ButtonClose.d.ts.map +1 -1
- package/build/ui/ZSTextField/ui/ButtonClose.js.map +1 -1
- package/build/ui/ZSTextField/ui/ErrorComponent.d.ts +0 -1
- package/build/ui/ZSTextField/ui/ErrorComponent.d.ts.map +1 -1
- package/build/ui/atoms/AnimatedWrapper.d.ts +1 -2
- package/build/ui/atoms/AnimatedWrapper.d.ts.map +1 -1
- package/build/ui/atoms/AnimatedWrapper.js +12 -3
- package/build/ui/atoms/AnimatedWrapper.js.map +1 -1
- package/package.json +34 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@0610studio/zs-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "EXPO ZS-UI",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"build",
|
|
11
11
|
"android",
|
|
12
12
|
"ios",
|
|
13
|
+
"app.plugin.js",
|
|
13
14
|
"expo-module.config.json",
|
|
14
15
|
"README.md",
|
|
15
16
|
"LICENSE"
|
|
@@ -41,37 +42,46 @@
|
|
|
41
42
|
"license": "MIT",
|
|
42
43
|
"homepage": "https://github.com/0610studio/zs-ui",
|
|
43
44
|
"devDependencies": {
|
|
44
|
-
"@
|
|
45
|
+
"@babel/core": "^7.20.0",
|
|
46
|
+
"@expo/metro-runtime": "6.1.2",
|
|
47
|
+
"@react-native-async-storage/async-storage": "2.2.0",
|
|
45
48
|
"@testing-library/react-native": "^13.3.3",
|
|
46
49
|
"@types/jest": "^29.5.12",
|
|
47
|
-
"@types/react": "
|
|
50
|
+
"@types/react": "~19.1.17",
|
|
48
51
|
"babel-jest": "^29",
|
|
49
|
-
"
|
|
50
|
-
"expo
|
|
51
|
-
"expo-
|
|
52
|
-
"expo-
|
|
52
|
+
"eslint": "^8.57.1",
|
|
53
|
+
"expo": "54.0.33",
|
|
54
|
+
"expo-constants": "~18.0.13",
|
|
55
|
+
"expo-linking": "~8.0.11",
|
|
56
|
+
"expo-module-scripts": "^5.0.8",
|
|
57
|
+
"expo-modules-core": "3.0.29",
|
|
58
|
+
"expo-navigation-bar": "~5.0.10",
|
|
59
|
+
"expo-router": "~6.0.23",
|
|
53
60
|
"jest": "^29",
|
|
54
|
-
"jest-expo": "
|
|
55
|
-
"react": "19.
|
|
56
|
-
"react-
|
|
57
|
-
"react-native
|
|
58
|
-
"react-native-
|
|
59
|
-
"react-native-
|
|
60
|
-
"react-native-
|
|
61
|
-
"react-
|
|
61
|
+
"jest-expo": "~54.0.17",
|
|
62
|
+
"react": "19.1.0",
|
|
63
|
+
"react-dom": "19.1.0",
|
|
64
|
+
"react-native": "0.81.5",
|
|
65
|
+
"react-native-reanimated": "4.1.6",
|
|
66
|
+
"react-native-safe-area-context": "5.6.2",
|
|
67
|
+
"react-native-screens": "~4.16.0",
|
|
68
|
+
"react-native-svg": "15.12.1",
|
|
69
|
+
"react-native-worklets": "0.5.1",
|
|
70
|
+
"react-test-renderer": "19.1.0",
|
|
62
71
|
"ts-jest": "^29.2.5",
|
|
63
|
-
"typescript": "
|
|
72
|
+
"typescript": "~5.9.3"
|
|
64
73
|
},
|
|
65
74
|
"peerDependencies": {
|
|
66
75
|
"@react-native-async-storage/async-storage": "*",
|
|
67
|
-
"expo": ">=
|
|
68
|
-
"expo-navigation-bar": ">=
|
|
76
|
+
"expo": ">=54.0.0",
|
|
77
|
+
"expo-navigation-bar": ">=5.0.0",
|
|
69
78
|
"expo-router": "*",
|
|
70
79
|
"react": "*",
|
|
71
|
-
"react-native": ">=0.
|
|
72
|
-
"react-native-reanimated": "
|
|
80
|
+
"react-native": ">=0.81.0",
|
|
81
|
+
"react-native-reanimated": ">=4.1.0 <5.0.0",
|
|
73
82
|
"react-native-safe-area-context": "*",
|
|
74
|
-
"react-native-svg": "*"
|
|
83
|
+
"react-native-svg": "*",
|
|
84
|
+
"react-native-worklets": ">=0.5.0 <0.9.0"
|
|
75
85
|
},
|
|
76
86
|
"peerDependenciesMeta": {
|
|
77
87
|
"@react-native-async-storage/async-storage": {
|
|
@@ -92,6 +102,9 @@
|
|
|
92
102
|
"react-native-reanimated": {
|
|
93
103
|
"optional": false
|
|
94
104
|
},
|
|
105
|
+
"react-native-worklets": {
|
|
106
|
+
"optional": false
|
|
107
|
+
},
|
|
95
108
|
"react-native-safe-area-context": {
|
|
96
109
|
"optional": false
|
|
97
110
|
},
|