react-server-dom-webpack 19.3.0-canary-09f05694-20251201 → 19.3.0-canary-7dc903cd-20251203
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 -10
- package/cjs/react-server-dom-webpack-client.browser.production.js +7 -8
- package/cjs/react-server-dom-webpack-client.edge.development.js +6 -8
- package/cjs/react-server-dom-webpack-client.edge.production.js +7 -8
- package/cjs/react-server-dom-webpack-client.node.development.js +6 -8
- package/cjs/react-server-dom-webpack-client.node.production.js +7 -8
- package/cjs/react-server-dom-webpack-client.node.unbundled.development.js +5 -6
- package/cjs/react-server-dom-webpack-client.node.unbundled.production.js +6 -6
- package/cjs/react-server-dom-webpack-server.browser.development.js +430 -197
- package/cjs/react-server-dom-webpack-server.browser.production.js +425 -201
- package/cjs/react-server-dom-webpack-server.edge.development.js +438 -204
- package/cjs/react-server-dom-webpack-server.edge.production.js +428 -203
- package/cjs/react-server-dom-webpack-server.node.development.js +475 -228
- package/cjs/react-server-dom-webpack-server.node.production.js +469 -227
- package/cjs/react-server-dom-webpack-server.node.unbundled.development.js +473 -225
- package/cjs/react-server-dom-webpack-server.node.unbundled.production.js +467 -224
- package/package.json +3 -3
|
@@ -102,13 +102,11 @@
|
|
|
102
102
|
if ("fulfilled" === moduleExports.status)
|
|
103
103
|
moduleExports = moduleExports.value;
|
|
104
104
|
else throw moduleExports.reason;
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
: moduleExports
|
|
111
|
-
: moduleExports[metadata[2]];
|
|
105
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
106
|
+
if ("" === metadata[2])
|
|
107
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
108
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
109
|
+
return moduleExports[metadata[2]];
|
|
112
110
|
}
|
|
113
111
|
function loadChunk(chunkId, filename) {
|
|
114
112
|
chunkMap.set(chunkId, filename);
|
|
@@ -4768,6 +4766,7 @@
|
|
|
4768
4766
|
ReactDOM = require("react-dom"),
|
|
4769
4767
|
decoderOptions = { stream: !0 },
|
|
4770
4768
|
bind = Function.prototype.bind,
|
|
4769
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4771
4770
|
chunkCache = new Map(),
|
|
4772
4771
|
chunkMap = new Map(),
|
|
4773
4772
|
webpackGetChunkFilename = __webpack_require__.u;
|
|
@@ -4807,7 +4806,6 @@
|
|
|
4807
4806
|
v8FrameRegExp =
|
|
4808
4807
|
/^ {3} at (?:(.+) \((.+):(\d+):(\d+)\)|(?:async )?(.+):(\d+):(\d+))$/,
|
|
4809
4808
|
jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\d+):(\d+)/,
|
|
4810
|
-
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4811
4809
|
REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"),
|
|
4812
4810
|
supportsUserTiming =
|
|
4813
4811
|
"undefined" !== typeof console &&
|
|
@@ -4984,10 +4982,10 @@
|
|
|
4984
4982
|
return hook.checkDCE ? !0 : !1;
|
|
4985
4983
|
})({
|
|
4986
4984
|
bundleType: 1,
|
|
4987
|
-
version: "19.3.0-canary-
|
|
4985
|
+
version: "19.3.0-canary-7dc903cd-20251203",
|
|
4988
4986
|
rendererPackageName: "react-server-dom-webpack",
|
|
4989
4987
|
currentDispatcherRef: ReactSharedInternals,
|
|
4990
|
-
reconcilerVersion: "19.3.0-canary-
|
|
4988
|
+
reconcilerVersion: "19.3.0-canary-7dc903cd-20251203",
|
|
4991
4989
|
getCurrentComponentInfo: function () {
|
|
4992
4990
|
return currentOwnerInDEV;
|
|
4993
4991
|
}
|
|
@@ -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;
|
|
@@ -102,13 +102,11 @@
|
|
|
102
102
|
if ("fulfilled" === moduleExports.status)
|
|
103
103
|
moduleExports = moduleExports.value;
|
|
104
104
|
else throw moduleExports.reason;
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
: moduleExports
|
|
111
|
-
: moduleExports[metadata[2]];
|
|
105
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
106
|
+
if ("" === metadata[2])
|
|
107
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
108
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
109
|
+
return moduleExports[metadata[2]];
|
|
112
110
|
}
|
|
113
111
|
function prepareDestinationWithChunks(
|
|
114
112
|
moduleLoading,
|
|
@@ -4801,6 +4799,7 @@
|
|
|
4801
4799
|
React = require("react"),
|
|
4802
4800
|
decoderOptions = { stream: !0 },
|
|
4803
4801
|
bind$1 = Function.prototype.bind,
|
|
4802
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4804
4803
|
chunkCache = new Map(),
|
|
4805
4804
|
ReactDOMSharedInternals =
|
|
4806
4805
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
@@ -4834,7 +4833,6 @@
|
|
|
4834
4833
|
v8FrameRegExp =
|
|
4835
4834
|
/^ {3} at (?:(.+) \((.+):(\d+):(\d+)\)|(?:async )?(.+):(\d+):(\d+))$/,
|
|
4836
4835
|
jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\d+):(\d+)/,
|
|
4837
|
-
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4838
4836
|
REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"),
|
|
4839
4837
|
supportsUserTiming =
|
|
4840
4838
|
"undefined" !== typeof console &&
|
|
@@ -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)
|
|
@@ -102,13 +102,11 @@
|
|
|
102
102
|
if ("fulfilled" === moduleExports.status)
|
|
103
103
|
moduleExports = moduleExports.value;
|
|
104
104
|
else throw moduleExports.reason;
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
: moduleExports
|
|
111
|
-
: moduleExports[metadata[2]];
|
|
105
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
106
|
+
if ("" === metadata[2])
|
|
107
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
108
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
109
|
+
return moduleExports[metadata[2]];
|
|
112
110
|
}
|
|
113
111
|
function prepareDestinationWithChunks(
|
|
114
112
|
moduleLoading,
|
|
@@ -4906,6 +4904,7 @@
|
|
|
4906
4904
|
React = require("react"),
|
|
4907
4905
|
decoderOptions = { stream: !0 },
|
|
4908
4906
|
bind$1 = Function.prototype.bind,
|
|
4907
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4909
4908
|
chunkCache = new Map(),
|
|
4910
4909
|
ReactDOMSharedInternals =
|
|
4911
4910
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
@@ -4939,7 +4938,6 @@
|
|
|
4939
4938
|
v8FrameRegExp =
|
|
4940
4939
|
/^ {3} at (?:(.+) \((.+):(\d+):(\d+)\)|(?:async )?(.+):(\d+):(\d+))$/,
|
|
4941
4940
|
jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\d+):(\d+)/,
|
|
4942
|
-
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4943
4941
|
REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"),
|
|
4944
4942
|
supportsUserTiming =
|
|
4945
4943
|
"undefined" !== typeof console &&
|
|
@@ -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)
|
|
@@ -66,11 +66,10 @@
|
|
|
66
66
|
if ("fulfilled" === moduleExports.status)
|
|
67
67
|
moduleExports = moduleExports.value;
|
|
68
68
|
else throw moduleExports.reason;
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
: moduleExports[metadata.name];
|
|
69
|
+
if ("*" === metadata.name) return moduleExports;
|
|
70
|
+
if ("" === metadata.name) return moduleExports.default;
|
|
71
|
+
if (hasOwnProperty.call(moduleExports, metadata.name))
|
|
72
|
+
return moduleExports[metadata.name];
|
|
74
73
|
}
|
|
75
74
|
function prepareDestinationWithChunks(
|
|
76
75
|
moduleLoading,
|
|
@@ -4866,6 +4865,7 @@
|
|
|
4866
4865
|
React = require("react"),
|
|
4867
4866
|
decoderOptions = { stream: !0 },
|
|
4868
4867
|
bind$1 = Function.prototype.bind,
|
|
4868
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4869
4869
|
asyncModuleCache = new Map(),
|
|
4870
4870
|
ReactDOMSharedInternals =
|
|
4871
4871
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
@@ -4899,7 +4899,6 @@
|
|
|
4899
4899
|
v8FrameRegExp =
|
|
4900
4900
|
/^ {3} at (?:(.+) \((.+):(\d+):(\d+)\)|(?:async )?(.+):(\d+):(\d+))$/,
|
|
4901
4901
|
jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\d+):(\d+)/,
|
|
4902
|
-
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4903
4902
|
REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"),
|
|
4904
4903
|
supportsUserTiming =
|
|
4905
4904
|
"undefined" !== typeof console &&
|
|
@@ -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)
|