react-server-dom-webpack 18.3.0-next-2ac77aab9-20221029 → 18.3.0-next-6883d7944-20221101
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.
@@ -1249,7 +1249,7 @@ function attemptResolveElement(type, key, ref, props, prevThenableState) {
|
|
1249
1249
|
{
|
1250
1250
|
jsxPropsParents.set(props, type);
|
1251
1251
|
|
1252
|
-
if (typeof props.children === 'object') {
|
1252
|
+
if (typeof props.children === 'object' && props.children !== null) {
|
1253
1253
|
jsxChildrenParents.set(props.children, type);
|
1254
1254
|
}
|
1255
1255
|
}
|
@@ -1313,7 +1313,7 @@ function attemptResolveElement(type, key, ref, props, prevThenableState) {
|
|
1313
1313
|
{
|
1314
1314
|
jsxPropsParents.set(props, type);
|
1315
1315
|
|
1316
|
-
if (typeof props.children === 'object') {
|
1316
|
+
if (typeof props.children === 'object' && props.children !== null) {
|
1317
1317
|
jsxChildrenParents.set(props.children, type);
|
1318
1318
|
}
|
1319
1319
|
}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-server-dom-webpack",
|
3
3
|
"description": "React Server Components bindings for DOM using Webpack. This is intended to be integrated into meta-frameworks. It is not intended to be imported directly.",
|
4
|
-
"version": "18.3.0-next-
|
4
|
+
"version": "18.3.0-next-6883d7944-20221101",
|
5
5
|
"keywords": [
|
6
6
|
"react"
|
7
7
|
],
|
@@ -49,8 +49,8 @@
|
|
49
49
|
"node": ">=0.10.0"
|
50
50
|
},
|
51
51
|
"peerDependencies": {
|
52
|
-
"react": "18.3.0-next-
|
53
|
-
"react-dom": "18.3.0-next-
|
52
|
+
"react": "18.3.0-next-6883d7944-20221101",
|
53
|
+
"react-dom": "18.3.0-next-6883d7944-20221101",
|
54
54
|
"webpack": "^5.59.0"
|
55
55
|
},
|
56
56
|
"dependencies": {
|