react-server-dom-turbopack 19.3.0-canary-fd524fe0-20251121 → 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-turbopack-client.browser.development.js +8 -10
- package/cjs/react-server-dom-turbopack-client.browser.production.js +7 -8
- package/cjs/react-server-dom-turbopack-client.edge.development.js +6 -8
- package/cjs/react-server-dom-turbopack-client.edge.production.js +7 -8
- package/cjs/react-server-dom-turbopack-client.node.development.js +6 -8
- package/cjs/react-server-dom-turbopack-client.node.production.js +7 -8
- package/cjs/react-server-dom-turbopack-server.browser.development.js +432 -199
- package/cjs/react-server-dom-turbopack-server.browser.production.js +426 -202
- package/cjs/react-server-dom-turbopack-server.edge.development.js +438 -204
- package/cjs/react-server-dom-turbopack-server.edge.production.js +428 -203
- package/cjs/react-server-dom-turbopack-server.node.development.js +475 -228
- package/cjs/react-server-dom-turbopack-server.node.production.js +469 -227
- package/package.json +3 -3
|
@@ -99,13 +99,11 @@
|
|
|
99
99
|
if ("fulfilled" === moduleExports.status)
|
|
100
100
|
moduleExports = moduleExports.value;
|
|
101
101
|
else throw moduleExports.reason;
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
: moduleExports
|
|
108
|
-
: moduleExports[metadata[2]];
|
|
102
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
103
|
+
if ("" === metadata[2])
|
|
104
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
105
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
106
|
+
return moduleExports[metadata[2]];
|
|
109
107
|
}
|
|
110
108
|
function getIteratorFn(maybeIterable) {
|
|
111
109
|
if (null === maybeIterable || "object" !== typeof maybeIterable)
|
|
@@ -4759,6 +4757,7 @@
|
|
|
4759
4757
|
ReactDOM = require("react-dom"),
|
|
4760
4758
|
decoderOptions = { stream: !0 },
|
|
4761
4759
|
bind = Function.prototype.bind,
|
|
4760
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4762
4761
|
instrumentedChunks = new WeakSet(),
|
|
4763
4762
|
loadedChunks = new WeakSet(),
|
|
4764
4763
|
chunkIOInfoCache = new Map(),
|
|
@@ -4791,7 +4790,6 @@
|
|
|
4791
4790
|
v8FrameRegExp =
|
|
4792
4791
|
/^ {3} at (?:(.+) \((.+):(\d+):(\d+)\)|(?:async )?(.+):(\d+):(\d+))$/,
|
|
4793
4792
|
jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\d+):(\d+)/,
|
|
4794
|
-
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4795
4793
|
REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"),
|
|
4796
4794
|
supportsUserTiming =
|
|
4797
4795
|
"undefined" !== typeof console &&
|
|
@@ -4968,10 +4966,10 @@
|
|
|
4968
4966
|
return hook.checkDCE ? !0 : !1;
|
|
4969
4967
|
})({
|
|
4970
4968
|
bundleType: 1,
|
|
4971
|
-
version: "19.3.0-canary-
|
|
4969
|
+
version: "19.3.0-canary-7dc903cd-20251203",
|
|
4972
4970
|
rendererPackageName: "react-server-dom-turbopack",
|
|
4973
4971
|
currentDispatcherRef: ReactSharedInternals,
|
|
4974
|
-
reconcilerVersion: "19.3.0-canary-
|
|
4972
|
+
reconcilerVersion: "19.3.0-canary-7dc903cd-20251203",
|
|
4975
4973
|
getCurrentComponentInfo: function () {
|
|
4976
4974
|
return currentOwnerInDEV;
|
|
4977
4975
|
}
|
|
@@ -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]];
|
|
@@ -97,13 +98,11 @@ function requireModule(metadata) {
|
|
|
97
98
|
if ("fulfilled" === moduleExports.status)
|
|
98
99
|
moduleExports = moduleExports.value;
|
|
99
100
|
else throw moduleExports.reason;
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
: moduleExports
|
|
106
|
-
: moduleExports[metadata[2]];
|
|
101
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
102
|
+
if ("" === metadata[2])
|
|
103
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
104
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
105
|
+
return moduleExports[metadata[2]];
|
|
107
106
|
}
|
|
108
107
|
var ReactDOMSharedInternals =
|
|
109
108
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
@@ -99,13 +99,11 @@
|
|
|
99
99
|
if ("fulfilled" === moduleExports.status)
|
|
100
100
|
moduleExports = moduleExports.value;
|
|
101
101
|
else throw moduleExports.reason;
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
: moduleExports
|
|
108
|
-
: moduleExports[metadata[2]];
|
|
102
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
103
|
+
if ("" === metadata[2])
|
|
104
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
105
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
106
|
+
return moduleExports[metadata[2]];
|
|
109
107
|
}
|
|
110
108
|
function prepareDestinationWithChunks(
|
|
111
109
|
moduleLoading,
|
|
@@ -4798,6 +4796,7 @@
|
|
|
4798
4796
|
React = require("react"),
|
|
4799
4797
|
decoderOptions = { stream: !0 },
|
|
4800
4798
|
bind$1 = Function.prototype.bind,
|
|
4799
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4801
4800
|
instrumentedChunks = new WeakSet(),
|
|
4802
4801
|
loadedChunks = new WeakSet(),
|
|
4803
4802
|
ReactDOMSharedInternals =
|
|
@@ -4832,7 +4831,6 @@
|
|
|
4832
4831
|
v8FrameRegExp =
|
|
4833
4832
|
/^ {3} at (?:(.+) \((.+):(\d+):(\d+)\)|(?:async )?(.+):(\d+):(\d+))$/,
|
|
4834
4833
|
jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\d+):(\d+)/,
|
|
4835
|
-
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4836
4834
|
REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"),
|
|
4837
4835
|
supportsUserTiming =
|
|
4838
4836
|
"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]];
|
|
@@ -97,13 +98,11 @@ function requireModule(metadata) {
|
|
|
97
98
|
if ("fulfilled" === moduleExports.status)
|
|
98
99
|
moduleExports = moduleExports.value;
|
|
99
100
|
else throw moduleExports.reason;
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
: moduleExports
|
|
106
|
-
: moduleExports[metadata[2]];
|
|
101
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
102
|
+
if ("" === metadata[2])
|
|
103
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
104
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
105
|
+
return moduleExports[metadata[2]];
|
|
107
106
|
}
|
|
108
107
|
function prepareDestinationWithChunks(moduleLoading, chunks, nonce$jscomp$0) {
|
|
109
108
|
if (null !== moduleLoading)
|
|
@@ -99,13 +99,11 @@
|
|
|
99
99
|
if ("fulfilled" === moduleExports.status)
|
|
100
100
|
moduleExports = moduleExports.value;
|
|
101
101
|
else throw moduleExports.reason;
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
: moduleExports
|
|
108
|
-
: moduleExports[metadata[2]];
|
|
102
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
103
|
+
if ("" === metadata[2])
|
|
104
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
105
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
106
|
+
return moduleExports[metadata[2]];
|
|
109
107
|
}
|
|
110
108
|
function prepareDestinationWithChunks(
|
|
111
109
|
moduleLoading,
|
|
@@ -4903,6 +4901,7 @@
|
|
|
4903
4901
|
React = require("react"),
|
|
4904
4902
|
decoderOptions = { stream: !0 },
|
|
4905
4903
|
bind$1 = Function.prototype.bind,
|
|
4904
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4906
4905
|
instrumentedChunks = new WeakSet(),
|
|
4907
4906
|
loadedChunks = new WeakSet(),
|
|
4908
4907
|
ReactDOMSharedInternals =
|
|
@@ -4937,7 +4936,6 @@
|
|
|
4937
4936
|
v8FrameRegExp =
|
|
4938
4937
|
/^ {3} at (?:(.+) \((.+):(\d+):(\d+)\)|(?:async )?(.+):(\d+):(\d+))$/,
|
|
4939
4938
|
jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\d+):(\d+)/,
|
|
4940
|
-
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4941
4939
|
REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"),
|
|
4942
4940
|
supportsUserTiming =
|
|
4943
4941
|
"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]];
|
|
@@ -98,13 +99,11 @@ function requireModule(metadata) {
|
|
|
98
99
|
if ("fulfilled" === moduleExports.status)
|
|
99
100
|
moduleExports = moduleExports.value;
|
|
100
101
|
else throw moduleExports.reason;
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
: moduleExports
|
|
107
|
-
: moduleExports[metadata[2]];
|
|
102
|
+
if ("*" === metadata[2]) return moduleExports;
|
|
103
|
+
if ("" === metadata[2])
|
|
104
|
+
return moduleExports.__esModule ? moduleExports.default : moduleExports;
|
|
105
|
+
if (hasOwnProperty.call(moduleExports, metadata[2]))
|
|
106
|
+
return moduleExports[metadata[2]];
|
|
108
107
|
}
|
|
109
108
|
function prepareDestinationWithChunks(moduleLoading, chunks, nonce$jscomp$0) {
|
|
110
109
|
if (null !== moduleLoading)
|