react-server-dom-webpack 19.1.1 → 19.1.2
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/cjs/react-server-dom-webpack-client.browser.development.js +8 -9
- package/cjs/react-server-dom-webpack-client.browser.production.js +7 -8
- package/cjs/react-server-dom-webpack-client.edge.development.js +6 -7
- package/cjs/react-server-dom-webpack-client.edge.production.js +7 -8
- package/cjs/react-server-dom-webpack-client.node.development.js +6 -7
- package/cjs/react-server-dom-webpack-client.node.production.js +7 -8
- package/cjs/react-server-dom-webpack-client.node.unbundled.development.js +5 -5
- package/cjs/react-server-dom-webpack-client.node.unbundled.production.js +6 -6
- package/cjs/react-server-dom-webpack-server.browser.development.js +431 -198
- package/cjs/react-server-dom-webpack-server.browser.production.js +427 -203
- package/cjs/react-server-dom-webpack-server.edge.development.js +438 -204
- package/cjs/react-server-dom-webpack-server.edge.production.js +430 -205
- package/cjs/react-server-dom-webpack-server.node.development.js +475 -228
- package/cjs/react-server-dom-webpack-server.node.production.js +471 -229
- package/cjs/react-server-dom-webpack-server.node.unbundled.development.js +473 -225
- package/cjs/react-server-dom-webpack-server.node.unbundled.production.js +469 -226
- package/package.json +3 -3
|
@@ -123,13 +123,11 @@
|
|
|
123
123
|
if ("fulfilled" === moduleExports.status)
|
|
124
124
|
moduleExports = moduleExports.value;
|
|
125
125
|
else throw moduleExports.reason;
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
: moduleExports
|
|
132
|
-
: moduleExports[metadata[2]];
|
|
126
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
127
|
+
if ("" === metadata[2])
|
|
128
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
129
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
130
|
+
return moduleExports[metadata[2]];
|
|
133
131
|
}
|
|
134
132
|
function loadChunk(chunkId, filename) {
|
|
135
133
|
chunkMap.set(chunkId, filename);
|
|
@@ -2509,6 +2507,7 @@
|
|
|
2509
2507
|
ReactDOM = require("react-dom"),
|
|
2510
2508
|
decoderOptions = { stream: !0 },
|
|
2511
2509
|
bind = Function.prototype.bind,
|
|
2510
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
2512
2511
|
chunkCache = new Map(),
|
|
2513
2512
|
chunkMap = new Map(),
|
|
2514
2513
|
webpackGetChunkFilename = __webpack_require__.u;
|
|
@@ -2691,10 +2690,10 @@
|
|
|
2691
2690
|
return hook.checkDCE ? !0 : !1;
|
|
2692
2691
|
})({
|
|
2693
2692
|
bundleType: 1,
|
|
2694
|
-
version: "19.1.
|
|
2693
|
+
version: "19.1.2",
|
|
2695
2694
|
rendererPackageName: "react-server-dom-webpack",
|
|
2696
2695
|
currentDispatcherRef: ReactSharedInternals,
|
|
2697
|
-
reconcilerVersion: "19.1.
|
|
2696
|
+
reconcilerVersion: "19.1.2",
|
|
2698
2697
|
getCurrentComponentInfo: function () {
|
|
2699
2698
|
return currentOwnerInDEV;
|
|
2700
2699
|
}
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
12
12
|
var ReactDOM = require("react-dom"),
|
|
13
|
-
decoderOptions = { stream: !0 }
|
|
13
|
+
decoderOptions = { stream: !0 },
|
|
14
|
+
hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
14
15
|
function resolveClientReference(bundlerConfig, metadata) {
|
|
15
16
|
if (bundlerConfig) {
|
|
16
17
|
var moduleExports = bundlerConfig[metadata[0]];
|
|
@@ -100,13 +101,11 @@ function requireModule(metadata) {
|
|
|
100
101
|
if ("fulfilled" === moduleExports.status)
|
|
101
102
|
moduleExports = moduleExports.value;
|
|
102
103
|
else throw moduleExports.reason;
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
: moduleExports
|
|
109
|
-
: moduleExports[metadata[2]];
|
|
104
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
105
|
+
if ("" === metadata[2])
|
|
106
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
107
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
108
|
+
return moduleExports[metadata[2]];
|
|
110
109
|
}
|
|
111
110
|
var chunkMap = new Map(),
|
|
112
111
|
webpackGetChunkFilename = __webpack_require__.u;
|
|
@@ -123,13 +123,11 @@
|
|
|
123
123
|
if ("fulfilled" === moduleExports.status)
|
|
124
124
|
moduleExports = moduleExports.value;
|
|
125
125
|
else throw moduleExports.reason;
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
: moduleExports
|
|
132
|
-
: moduleExports[metadata[2]];
|
|
126
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
127
|
+
if ("" === metadata[2])
|
|
128
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
129
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
130
|
+
return moduleExports[metadata[2]];
|
|
133
131
|
}
|
|
134
132
|
function prepareDestinationWithChunks(
|
|
135
133
|
moduleLoading,
|
|
@@ -2734,6 +2732,7 @@
|
|
|
2734
2732
|
React = require("react"),
|
|
2735
2733
|
decoderOptions = { stream: !0 },
|
|
2736
2734
|
bind$1 = Function.prototype.bind,
|
|
2735
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
2737
2736
|
chunkCache = new Map(),
|
|
2738
2737
|
ReactDOMSharedInternals =
|
|
2739
2738
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
12
12
|
var ReactDOM = require("react-dom"),
|
|
13
|
-
decoderOptions = { stream: !0 }
|
|
13
|
+
decoderOptions = { stream: !0 },
|
|
14
|
+
hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
14
15
|
function resolveClientReference(bundlerConfig, metadata) {
|
|
15
16
|
if (bundlerConfig) {
|
|
16
17
|
var moduleExports = bundlerConfig[metadata[0]];
|
|
@@ -99,13 +100,11 @@ function requireModule(metadata) {
|
|
|
99
100
|
if ("fulfilled" === moduleExports.status)
|
|
100
101
|
moduleExports = moduleExports.value;
|
|
101
102
|
else throw moduleExports.reason;
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
: moduleExports
|
|
108
|
-
: moduleExports[metadata[2]];
|
|
103
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
104
|
+
if ("" === metadata[2])
|
|
105
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
106
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
107
|
+
return moduleExports[metadata[2]];
|
|
109
108
|
}
|
|
110
109
|
function prepareDestinationWithChunks(moduleLoading, chunks, nonce$jscomp$0) {
|
|
111
110
|
if (null !== moduleLoading)
|
|
@@ -123,13 +123,11 @@
|
|
|
123
123
|
if ("fulfilled" === moduleExports.status)
|
|
124
124
|
moduleExports = moduleExports.value;
|
|
125
125
|
else throw moduleExports.reason;
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
: moduleExports
|
|
132
|
-
: moduleExports[metadata[2]];
|
|
126
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
127
|
+
if ("" === metadata[2])
|
|
128
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
129
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
130
|
+
return moduleExports[metadata[2]];
|
|
133
131
|
}
|
|
134
132
|
function prepareDestinationWithChunks(
|
|
135
133
|
moduleLoading,
|
|
@@ -2622,6 +2620,7 @@
|
|
|
2622
2620
|
React = require("react"),
|
|
2623
2621
|
decoderOptions = { stream: !0 },
|
|
2624
2622
|
bind$1 = Function.prototype.bind,
|
|
2623
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
2625
2624
|
chunkCache = new Map(),
|
|
2626
2625
|
ReactDOMSharedInternals =
|
|
2627
2626
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"use strict";
|
|
12
12
|
var util = require("util"),
|
|
13
13
|
ReactDOM = require("react-dom"),
|
|
14
|
-
decoderOptions = { stream: !0 }
|
|
14
|
+
decoderOptions = { stream: !0 },
|
|
15
|
+
hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
15
16
|
function resolveClientReference(bundlerConfig, metadata) {
|
|
16
17
|
if (bundlerConfig) {
|
|
17
18
|
var moduleExports = bundlerConfig[metadata[0]];
|
|
@@ -100,13 +101,11 @@ function requireModule(metadata) {
|
|
|
100
101
|
if ("fulfilled" === moduleExports.status)
|
|
101
102
|
moduleExports = moduleExports.value;
|
|
102
103
|
else throw moduleExports.reason;
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
: moduleExports
|
|
109
|
-
: moduleExports[metadata[2]];
|
|
104
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
105
|
+
if ("" === metadata[2])
|
|
106
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
107
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
108
|
+
return moduleExports[metadata[2]];
|
|
110
109
|
}
|
|
111
110
|
function prepareDestinationWithChunks(moduleLoading, chunks, nonce$jscomp$0) {
|
|
112
111
|
if (null !== moduleLoading)
|
|
@@ -87,11 +87,10 @@
|
|
|
87
87
|
if ("fulfilled" === moduleExports.status)
|
|
88
88
|
moduleExports = moduleExports.value;
|
|
89
89
|
else throw moduleExports.reason;
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
: moduleExports[metadata.name];
|
|
90
|
+
if ("*" === metadata.name) return moduleExports;
|
|
91
|
+
if ("" === metadata.name) return moduleExports.default;
|
|
92
|
+
if (hasOwnProperty.call(moduleExports, metadata.name))
|
|
93
|
+
return moduleExports[metadata.name];
|
|
95
94
|
}
|
|
96
95
|
function prepareDestinationWithChunks(
|
|
97
96
|
moduleLoading,
|
|
@@ -2584,6 +2583,7 @@
|
|
|
2584
2583
|
React = require("react"),
|
|
2585
2584
|
decoderOptions = { stream: !0 },
|
|
2586
2585
|
bind$1 = Function.prototype.bind,
|
|
2586
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
2587
2587
|
asyncModuleCache = new Map(),
|
|
2588
2588
|
ReactDOMSharedInternals =
|
|
2589
2589
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"use strict";
|
|
12
12
|
var util = require("util"),
|
|
13
13
|
ReactDOM = require("react-dom"),
|
|
14
|
-
decoderOptions = { stream: !0 }
|
|
14
|
+
decoderOptions = { stream: !0 },
|
|
15
|
+
hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
15
16
|
function resolveClientReference(bundlerConfig, metadata) {
|
|
16
17
|
var moduleExports = bundlerConfig[metadata[0]];
|
|
17
18
|
if ((bundlerConfig = moduleExports && moduleExports[metadata[2]]))
|
|
@@ -67,11 +68,10 @@ function requireModule(metadata) {
|
|
|
67
68
|
var moduleExports = asyncModuleCache.get(metadata.specifier);
|
|
68
69
|
if ("fulfilled" === moduleExports.status) moduleExports = moduleExports.value;
|
|
69
70
|
else throw moduleExports.reason;
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
: moduleExports[metadata.name];
|
|
71
|
+
if ("*" === metadata.name) return moduleExports;
|
|
72
|
+
if ("" === metadata.name) return moduleExports.default;
|
|
73
|
+
if (hasOwnProperty.call(moduleExports, metadata.name))
|
|
74
|
+
return moduleExports[metadata.name];
|
|
75
75
|
}
|
|
76
76
|
function prepareDestinationWithChunks(moduleLoading, chunks, nonce$jscomp$0) {
|
|
77
77
|
if (null !== moduleLoading)
|