@storybook/react-native 9.0.18-alpha.0 → 9.1.0-alpha.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.
|
@@ -342,12 +342,10 @@ function withStorybook(config, options = {
|
|
|
342
342
|
type: "empty"
|
|
343
343
|
};
|
|
344
344
|
}
|
|
345
|
-
if (liteMode) {
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
};
|
|
350
|
-
}
|
|
345
|
+
if (liteMode && resolveResult?.filePath?.includes?.("@storybook/react-native-ui") && !resolveResult?.filePath?.includes?.("@storybook/react-native-ui-lite") && !resolveResult?.filePath?.includes?.("@storybook/react-native-ui-common")) {
|
|
346
|
+
return {
|
|
347
|
+
type: "empty"
|
|
348
|
+
};
|
|
351
349
|
}
|
|
352
350
|
return resolveResult;
|
|
353
351
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/react-native",
|
|
3
|
-
"version": "9.0
|
|
3
|
+
"version": "9.1.0-alpha.0",
|
|
4
4
|
"description": "A better way to develop React Native Components for your app",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -47,10 +47,10 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@storybook/global": "^5.0.0",
|
|
50
|
-
"@storybook/react": "^9.0
|
|
51
|
-
"@storybook/react-native-theming": "^9.0
|
|
52
|
-
"@storybook/react-native-ui": "^9.0
|
|
53
|
-
"@storybook/react-native-ui-common": "^9.0
|
|
50
|
+
"@storybook/react": "^9.1.0",
|
|
51
|
+
"@storybook/react-native-theming": "^9.1.0-alpha.0",
|
|
52
|
+
"@storybook/react-native-ui": "^9.1.0-alpha.0",
|
|
53
|
+
"@storybook/react-native-ui-common": "^9.1.0-alpha.0",
|
|
54
54
|
"commander": "^8.2.0",
|
|
55
55
|
"dedent": "^1.5.1",
|
|
56
56
|
"deepmerge": "^4.3.0",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"react": "19.0.0",
|
|
72
72
|
"react-native": "0.79.2",
|
|
73
73
|
"react-test-renderer": "^19.1.0",
|
|
74
|
-
"storybook": "^9.0
|
|
74
|
+
"storybook": "^9.1.0",
|
|
75
75
|
"tsup": "^7.2.0",
|
|
76
76
|
"typescript": "~5.8.3"
|
|
77
77
|
},
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"react-native-gesture-handler": ">=2",
|
|
83
83
|
"react-native-reanimated": ">=2",
|
|
84
84
|
"react-native-safe-area-context": "*",
|
|
85
|
-
"storybook": "
|
|
85
|
+
"storybook": ">=9"
|
|
86
86
|
},
|
|
87
87
|
"peerDependenciesMeta": {
|
|
88
88
|
"@gorhom/bottom-sheet": {
|
|
@@ -104,5 +104,5 @@
|
|
|
104
104
|
"publishConfig": {
|
|
105
105
|
"access": "public"
|
|
106
106
|
},
|
|
107
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "26ea3e55a17564fa66ea65becf45bd672ec92564"
|
|
108
108
|
}
|