react-server-dom-parcel 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-parcel-client.browser.development.js +6 -4
- package/cjs/react-server-dom-parcel-client.browser.production.js +7 -3
- package/cjs/react-server-dom-parcel-client.edge.development.js +4 -2
- package/cjs/react-server-dom-parcel-client.edge.production.js +7 -3
- package/cjs/react-server-dom-parcel-client.node.development.js +4 -2
- package/cjs/react-server-dom-parcel-client.node.production.js +7 -3
- package/cjs/react-server-dom-parcel-server.browser.development.js +430 -193
- package/cjs/react-server-dom-parcel-server.browser.production.js +426 -198
- package/cjs/react-server-dom-parcel-server.edge.development.js +436 -198
- package/cjs/react-server-dom-parcel-server.edge.production.js +428 -199
- package/cjs/react-server-dom-parcel-server.node.development.js +472 -221
- package/cjs/react-server-dom-parcel-server.node.production.js +466 -220
- package/package.json +3 -3
|
@@ -30,7 +30,9 @@
|
|
|
30
30
|
);
|
|
31
31
|
}
|
|
32
32
|
function requireModule(metadata) {
|
|
33
|
-
|
|
33
|
+
var moduleExports = parcelRequire(metadata[0]);
|
|
34
|
+
if (hasOwnProperty.call(moduleExports, metadata[1]))
|
|
35
|
+
return moduleExports[metadata[1]];
|
|
34
36
|
}
|
|
35
37
|
function getIteratorFn(maybeIterable) {
|
|
36
38
|
if (null === maybeIterable || "object" !== typeof maybeIterable)
|
|
@@ -4672,6 +4674,7 @@
|
|
|
4672
4674
|
ReactDOM = require("react-dom"),
|
|
4673
4675
|
decoderOptions = { stream: !0 },
|
|
4674
4676
|
bind = Function.prototype.bind,
|
|
4677
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4675
4678
|
ReactDOMSharedInternals =
|
|
4676
4679
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
4677
4680
|
REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
|
|
@@ -4701,7 +4704,6 @@
|
|
|
4701
4704
|
v8FrameRegExp =
|
|
4702
4705
|
/^ {3} at (?:(.+) \((.+):(\d+):(\d+)\)|(?:async )?(.+):(\d+):(\d+))$/,
|
|
4703
4706
|
jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\d+):(\d+)/,
|
|
4704
|
-
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4705
4707
|
REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"),
|
|
4706
4708
|
supportsUserTiming =
|
|
4707
4709
|
"undefined" !== typeof console &&
|
|
@@ -4879,10 +4881,10 @@
|
|
|
4879
4881
|
return hook.checkDCE ? !0 : !1;
|
|
4880
4882
|
})({
|
|
4881
4883
|
bundleType: 1,
|
|
4882
|
-
version: "19.3.0-canary-
|
|
4884
|
+
version: "19.3.0-canary-7dc903cd-20251203",
|
|
4883
4885
|
rendererPackageName: "react-server-dom-parcel",
|
|
4884
4886
|
currentDispatcherRef: ReactSharedInternals,
|
|
4885
|
-
reconcilerVersion: "19.3.0-canary-
|
|
4887
|
+
reconcilerVersion: "19.3.0-canary-7dc903cd-20251203",
|
|
4886
4888
|
getCurrentComponentInfo: function () {
|
|
4887
4889
|
return currentOwnerInDEV;
|
|
4888
4890
|
}
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
12
|
-
var
|
|
12
|
+
var ReactDOM = require("react-dom"),
|
|
13
|
+
decoderOptions = { stream: !0 },
|
|
14
|
+
hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
13
15
|
function resolveServerReference(bundlerConfig, ref) {
|
|
14
16
|
var idx = ref.lastIndexOf("#"),
|
|
15
17
|
id = ref.slice(0, idx);
|
|
@@ -29,10 +31,12 @@ function preloadModule(metadata) {
|
|
|
29
31
|
);
|
|
30
32
|
}
|
|
31
33
|
function requireModule(metadata) {
|
|
32
|
-
|
|
34
|
+
var moduleExports = parcelRequire(metadata[0]);
|
|
35
|
+
if (hasOwnProperty.call(moduleExports, metadata[1]))
|
|
36
|
+
return moduleExports[metadata[1]];
|
|
33
37
|
}
|
|
34
38
|
var ReactDOMSharedInternals =
|
|
35
|
-
|
|
39
|
+
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
36
40
|
REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
|
|
37
41
|
REACT_LAZY_TYPE = Symbol.for("react.lazy"),
|
|
38
42
|
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
|
@@ -30,7 +30,9 @@
|
|
|
30
30
|
);
|
|
31
31
|
}
|
|
32
32
|
function requireModule(metadata) {
|
|
33
|
-
|
|
33
|
+
var moduleExports = parcelRequire(metadata[0]);
|
|
34
|
+
if (hasOwnProperty.call(moduleExports, metadata[1]))
|
|
35
|
+
return moduleExports[metadata[1]];
|
|
34
36
|
}
|
|
35
37
|
function prepareDestinationWithChunks(moduleLoading, bundles, nonce) {
|
|
36
38
|
for (moduleLoading = 0; moduleLoading < bundles.length; moduleLoading++) {
|
|
@@ -4716,6 +4718,7 @@
|
|
|
4716
4718
|
React = require("react"),
|
|
4717
4719
|
decoderOptions = { stream: !0 },
|
|
4718
4720
|
bind$1 = Function.prototype.bind,
|
|
4721
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4719
4722
|
ReactDOMSharedInternals =
|
|
4720
4723
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
4721
4724
|
REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
|
|
@@ -4748,7 +4751,6 @@
|
|
|
4748
4751
|
v8FrameRegExp =
|
|
4749
4752
|
/^ {3} at (?:(.+) \((.+):(\d+):(\d+)\)|(?:async )?(.+):(\d+):(\d+))$/,
|
|
4750
4753
|
jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\d+):(\d+)/,
|
|
4751
|
-
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4752
4754
|
REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"),
|
|
4753
4755
|
supportsUserTiming =
|
|
4754
4756
|
"undefined" !== typeof console &&
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
12
|
-
var
|
|
12
|
+
var ReactDOM = require("react-dom"),
|
|
13
|
+
decoderOptions = { stream: !0 },
|
|
14
|
+
hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
13
15
|
function resolveServerReference(bundlerConfig, ref) {
|
|
14
16
|
var idx = ref.lastIndexOf("#"),
|
|
15
17
|
id = ref.slice(0, idx);
|
|
@@ -29,7 +31,9 @@ function preloadModule(metadata) {
|
|
|
29
31
|
);
|
|
30
32
|
}
|
|
31
33
|
function requireModule(metadata) {
|
|
32
|
-
|
|
34
|
+
var moduleExports = parcelRequire(metadata[0]);
|
|
35
|
+
if (hasOwnProperty.call(moduleExports, metadata[1]))
|
|
36
|
+
return moduleExports[metadata[1]];
|
|
33
37
|
}
|
|
34
38
|
function prepareDestinationWithChunks(moduleLoading, bundles, nonce) {
|
|
35
39
|
for (moduleLoading = 0; moduleLoading < bundles.length; moduleLoading++) {
|
|
@@ -42,7 +46,7 @@ function prepareDestinationWithChunks(moduleLoading, bundles, nonce) {
|
|
|
42
46
|
}
|
|
43
47
|
}
|
|
44
48
|
var ReactDOMSharedInternals =
|
|
45
|
-
|
|
49
|
+
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
46
50
|
REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
|
|
47
51
|
REACT_LAZY_TYPE = Symbol.for("react.lazy"),
|
|
48
52
|
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
|
@@ -30,7 +30,9 @@
|
|
|
30
30
|
);
|
|
31
31
|
}
|
|
32
32
|
function requireModule(metadata) {
|
|
33
|
-
|
|
33
|
+
var moduleExports = parcelRequire(metadata[0]);
|
|
34
|
+
if (hasOwnProperty.call(moduleExports, metadata[1]))
|
|
35
|
+
return moduleExports[metadata[1]];
|
|
34
36
|
}
|
|
35
37
|
function prepareDestinationWithChunks(moduleLoading, bundles, nonce) {
|
|
36
38
|
for (moduleLoading = 0; moduleLoading < bundles.length; moduleLoading++) {
|
|
@@ -4831,6 +4833,7 @@
|
|
|
4831
4833
|
React = require("react"),
|
|
4832
4834
|
decoderOptions = { stream: !0 },
|
|
4833
4835
|
bind$1 = Function.prototype.bind,
|
|
4836
|
+
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4834
4837
|
ReactDOMSharedInternals =
|
|
4835
4838
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
4836
4839
|
REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
|
|
@@ -4863,7 +4866,6 @@
|
|
|
4863
4866
|
v8FrameRegExp =
|
|
4864
4867
|
/^ {3} at (?:(.+) \((.+):(\d+):(\d+)\)|(?:async )?(.+):(\d+):(\d+))$/,
|
|
4865
4868
|
jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\d+):(\d+)/,
|
|
4866
|
-
hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
4867
4869
|
REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"),
|
|
4868
4870
|
supportsUserTiming =
|
|
4869
4871
|
"undefined" !== typeof console &&
|
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
|
|
11
11
|
"use strict";
|
|
12
12
|
var util = require("util"),
|
|
13
|
-
|
|
13
|
+
ReactDOM = require("react-dom"),
|
|
14
|
+
decoderOptions = { stream: !0 },
|
|
15
|
+
hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
14
16
|
function resolveServerReference(bundlerConfig, ref) {
|
|
15
17
|
var idx = ref.lastIndexOf("#"),
|
|
16
18
|
id = ref.slice(0, idx);
|
|
@@ -30,7 +32,9 @@ function preloadModule(metadata) {
|
|
|
30
32
|
);
|
|
31
33
|
}
|
|
32
34
|
function requireModule(metadata) {
|
|
33
|
-
|
|
35
|
+
var moduleExports = parcelRequire(metadata[0]);
|
|
36
|
+
if (hasOwnProperty.call(moduleExports, metadata[1]))
|
|
37
|
+
return moduleExports[metadata[1]];
|
|
34
38
|
}
|
|
35
39
|
function prepareDestinationWithChunks(moduleLoading, bundles, nonce) {
|
|
36
40
|
for (moduleLoading = 0; moduleLoading < bundles.length; moduleLoading++) {
|
|
@@ -43,7 +47,7 @@ function prepareDestinationWithChunks(moduleLoading, bundles, nonce) {
|
|
|
43
47
|
}
|
|
44
48
|
}
|
|
45
49
|
var ReactDOMSharedInternals =
|
|
46
|
-
|
|
50
|
+
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
|
47
51
|
REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
|
|
48
52
|
REACT_LAZY_TYPE = Symbol.for("react.lazy"),
|
|
49
53
|
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|