react-dom 19.2.0-canary-7216c0f0-20250630 → 19.2.0-canary-ef8b6fa2-20250702
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-dom-client.development.js +134 -132
- package/cjs/react-dom-client.production.js +190 -191
- package/cjs/react-dom-profiling.development.js +134 -132
- package/cjs/react-dom-profiling.profiling.js +208 -209
- package/cjs/react-dom-server-legacy.browser.development.js +21 -17
- package/cjs/react-dom-server-legacy.browser.production.js +22 -22
- package/cjs/react-dom-server-legacy.node.development.js +21 -17
- package/cjs/react-dom-server-legacy.node.production.js +22 -22
- package/cjs/react-dom-server.browser.development.js +23 -19
- package/cjs/react-dom-server.browser.production.js +4 -4
- package/cjs/react-dom-server.bun.development.js +26 -23
- package/cjs/react-dom-server.bun.production.js +7 -7
- package/cjs/react-dom-server.edge.development.js +23 -19
- package/cjs/react-dom-server.edge.production.js +4 -4
- package/cjs/react-dom-server.node.development.js +23 -19
- package/cjs/react-dom-server.node.production.js +4 -4
- package/cjs/react-dom.development.js +1 -1
- package/cjs/react-dom.production.js +1 -1
- package/cjs/react-dom.react-server.development.js +1 -1
- package/cjs/react-dom.react-server.production.js +1 -1
- package/package.json +3 -3
@@ -4118,7 +4118,7 @@
|
|
4118
4118
|
prevPrepareStackTrace = error.indexOf("\n");
|
4119
4119
|
-1 !== prevPrepareStackTrace &&
|
4120
4120
|
(error = error.slice(prevPrepareStackTrace + 1));
|
4121
|
-
prevPrepareStackTrace = error.indexOf("
|
4121
|
+
prevPrepareStackTrace = error.indexOf("react_stack_bottom_frame");
|
4122
4122
|
-1 !== prevPrepareStackTrace &&
|
4123
4123
|
(prevPrepareStackTrace = error.lastIndexOf(
|
4124
4124
|
"\n",
|
@@ -5471,26 +5471,30 @@
|
|
5471
5471
|
type.displayName || type.name || "Component"
|
5472
5472
|
);
|
5473
5473
|
if ("function" === typeof type.getDerivedStateFromProps) {
|
5474
|
-
var
|
5475
|
-
|
5474
|
+
var componentName$jscomp$4 =
|
5475
|
+
getComponentNameFromType(type) || "Unknown";
|
5476
|
+
didWarnAboutGetDerivedStateOnFunctionComponent[
|
5477
|
+
componentName$jscomp$4
|
5478
|
+
] ||
|
5476
5479
|
(console.error(
|
5477
5480
|
"%s: Function components do not support getDerivedStateFromProps.",
|
5478
|
-
|
5481
|
+
componentName$jscomp$4
|
5479
5482
|
),
|
5480
|
-
(didWarnAboutGetDerivedStateOnFunctionComponent[
|
5481
|
-
|
5483
|
+
(didWarnAboutGetDerivedStateOnFunctionComponent[
|
5484
|
+
componentName$jscomp$4
|
5485
|
+
] = !0));
|
5482
5486
|
}
|
5483
5487
|
if (
|
5484
5488
|
"object" === typeof type.contextType &&
|
5485
5489
|
null !== type.contextType
|
5486
5490
|
) {
|
5487
|
-
var
|
5488
|
-
didWarnAboutContextTypeOnFunctionComponent[
|
5491
|
+
var _componentName2 = getComponentNameFromType(type) || "Unknown";
|
5492
|
+
didWarnAboutContextTypeOnFunctionComponent[_componentName2] ||
|
5489
5493
|
(console.error(
|
5490
5494
|
"%s: Function components do not support contextType.",
|
5491
|
-
|
5495
|
+
_componentName2
|
5492
5496
|
),
|
5493
|
-
(didWarnAboutContextTypeOnFunctionComponent[
|
5497
|
+
(didWarnAboutContextTypeOnFunctionComponent[_componentName2] =
|
5494
5498
|
!0));
|
5495
5499
|
}
|
5496
5500
|
finishFunctionComponent(
|
@@ -9615,26 +9619,26 @@
|
|
9615
9619
|
"function" === typeof WeakMap ? WeakMap : Map
|
9616
9620
|
)();
|
9617
9621
|
var callComponent = {
|
9618
|
-
|
9622
|
+
react_stack_bottom_frame: function (Component, props, secondArg) {
|
9619
9623
|
return Component(props, secondArg);
|
9620
9624
|
}
|
9621
9625
|
},
|
9622
9626
|
callComponentInDEV =
|
9623
|
-
callComponent
|
9627
|
+
callComponent.react_stack_bottom_frame.bind(callComponent),
|
9624
9628
|
callRender = {
|
9625
|
-
|
9629
|
+
react_stack_bottom_frame: function (instance) {
|
9626
9630
|
return instance.render();
|
9627
9631
|
}
|
9628
9632
|
},
|
9629
|
-
callRenderInDEV = callRender
|
9633
|
+
callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender),
|
9630
9634
|
callLazyInit = {
|
9631
|
-
|
9635
|
+
react_stack_bottom_frame: function (lazy) {
|
9632
9636
|
var init = lazy._init;
|
9633
9637
|
return init(lazy._payload);
|
9634
9638
|
}
|
9635
9639
|
},
|
9636
9640
|
callLazyInitInDEV =
|
9637
|
-
callLazyInit
|
9641
|
+
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
|
9638
9642
|
lastResetTime = 0;
|
9639
9643
|
if (
|
9640
9644
|
"object" === typeof performance &&
|
@@ -9683,5 +9687,5 @@
|
|
9683
9687
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
9684
9688
|
);
|
9685
9689
|
};
|
9686
|
-
exports.version = "19.2.0-canary-
|
9690
|
+
exports.version = "19.2.0-canary-ef8b6fa2-20250702";
|
9687
9691
|
})();
|
@@ -2724,16 +2724,16 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2724
2724
|
"\x3c/script>"
|
2725
2725
|
));
|
2726
2726
|
bootstrapScriptContent = idPrefix + "P:";
|
2727
|
-
var
|
2727
|
+
var JSCompiler_object_inline_segmentPrefix_1675 = idPrefix + "S:";
|
2728
2728
|
idPrefix += "B:";
|
2729
|
-
var
|
2730
|
-
|
2731
|
-
|
2732
|
-
|
2733
|
-
|
2734
|
-
|
2735
|
-
|
2736
|
-
|
2729
|
+
var JSCompiler_object_inline_preconnects_1689 = new Set(),
|
2730
|
+
JSCompiler_object_inline_fontPreloads_1690 = new Set(),
|
2731
|
+
JSCompiler_object_inline_highImagePreloads_1691 = new Set(),
|
2732
|
+
JSCompiler_object_inline_styles_1692 = new Map(),
|
2733
|
+
JSCompiler_object_inline_bootstrapScripts_1693 = new Set(),
|
2734
|
+
JSCompiler_object_inline_scripts_1694 = new Set(),
|
2735
|
+
JSCompiler_object_inline_bulkPreloads_1695 = new Set(),
|
2736
|
+
JSCompiler_object_inline_preloads_1696 = {
|
2737
2737
|
images: new Map(),
|
2738
2738
|
stylesheets: new Map(),
|
2739
2739
|
scripts: new Map(),
|
@@ -2770,7 +2770,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2770
2770
|
scriptConfig.moduleScriptResources[href] = null;
|
2771
2771
|
scriptConfig = [];
|
2772
2772
|
pushLinkImpl(scriptConfig, props);
|
2773
|
-
|
2773
|
+
JSCompiler_object_inline_bootstrapScripts_1693.add(scriptConfig);
|
2774
2774
|
bootstrapChunks.push('<script src="', escapeTextForBrowser(src), '"');
|
2775
2775
|
"string" === typeof integrity &&
|
2776
2776
|
bootstrapChunks.push(
|
@@ -2817,7 +2817,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2817
2817
|
(props.moduleScriptResources[scriptConfig] = null),
|
2818
2818
|
(props = []),
|
2819
2819
|
pushLinkImpl(props, integrity),
|
2820
|
-
|
2820
|
+
JSCompiler_object_inline_bootstrapScripts_1693.add(props),
|
2821
2821
|
bootstrapChunks.push(
|
2822
2822
|
'<script type="module" src="',
|
2823
2823
|
escapeTextForBrowser(i),
|
@@ -2839,7 +2839,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2839
2839
|
bootstrapChunks.push(' async="">\x3c/script>');
|
2840
2840
|
return {
|
2841
2841
|
placeholderPrefix: bootstrapScriptContent,
|
2842
|
-
segmentPrefix:
|
2842
|
+
segmentPrefix: JSCompiler_object_inline_segmentPrefix_1675,
|
2843
2843
|
boundaryPrefix: idPrefix,
|
2844
2844
|
startInlineScript: "<script",
|
2845
2845
|
startInlineStyle: "<style",
|
@@ -2859,14 +2859,14 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2859
2859
|
charsetChunks: [],
|
2860
2860
|
viewportChunks: [],
|
2861
2861
|
hoistableChunks: [],
|
2862
|
-
preconnects:
|
2863
|
-
fontPreloads:
|
2864
|
-
highImagePreloads:
|
2865
|
-
styles:
|
2866
|
-
bootstrapScripts:
|
2867
|
-
scripts:
|
2868
|
-
bulkPreloads:
|
2869
|
-
preloads:
|
2862
|
+
preconnects: JSCompiler_object_inline_preconnects_1689,
|
2863
|
+
fontPreloads: JSCompiler_object_inline_fontPreloads_1690,
|
2864
|
+
highImagePreloads: JSCompiler_object_inline_highImagePreloads_1691,
|
2865
|
+
styles: JSCompiler_object_inline_styles_1692,
|
2866
|
+
bootstrapScripts: JSCompiler_object_inline_bootstrapScripts_1693,
|
2867
|
+
scripts: JSCompiler_object_inline_scripts_1694,
|
2868
|
+
bulkPreloads: JSCompiler_object_inline_bulkPreloads_1695,
|
2869
|
+
preloads: JSCompiler_object_inline_preloads_1696,
|
2870
2870
|
nonce: { script: void 0, style: void 0 },
|
2871
2871
|
stylesToHoist: !1,
|
2872
2872
|
generateStaticMarkup: generateStaticMarkup
|
@@ -3594,7 +3594,7 @@ function describeComponentStackByType(type) {
|
|
3594
3594
|
(location = location.slice(29)),
|
3595
3595
|
(type = location.indexOf("\n")),
|
3596
3596
|
-1 !== type && (location = location.slice(type + 1)),
|
3597
|
-
(type = location.indexOf("
|
3597
|
+
(type = location.indexOf("react_stack_bottom_frame")),
|
3598
3598
|
-1 !== type && (type = location.lastIndexOf("\n", type)),
|
3599
3599
|
(type = -1 !== type ? (location = location.slice(0, type)) : ""),
|
3600
3600
|
(location = type.lastIndexOf("\n")),
|
@@ -6456,4 +6456,4 @@ exports.renderToString = function (children, options) {
|
|
6456
6456
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
6457
6457
|
);
|
6458
6458
|
};
|
6459
|
-
exports.version = "19.2.0-canary-
|
6459
|
+
exports.version = "19.2.0-canary-ef8b6fa2-20250702";
|
@@ -4118,7 +4118,7 @@
|
|
4118
4118
|
prevPrepareStackTrace = error.indexOf("\n");
|
4119
4119
|
-1 !== prevPrepareStackTrace &&
|
4120
4120
|
(error = error.slice(prevPrepareStackTrace + 1));
|
4121
|
-
prevPrepareStackTrace = error.indexOf("
|
4121
|
+
prevPrepareStackTrace = error.indexOf("react_stack_bottom_frame");
|
4122
4122
|
-1 !== prevPrepareStackTrace &&
|
4123
4123
|
(prevPrepareStackTrace = error.lastIndexOf(
|
4124
4124
|
"\n",
|
@@ -5471,26 +5471,30 @@
|
|
5471
5471
|
type.displayName || type.name || "Component"
|
5472
5472
|
);
|
5473
5473
|
if ("function" === typeof type.getDerivedStateFromProps) {
|
5474
|
-
var
|
5475
|
-
|
5474
|
+
var componentName$jscomp$4 =
|
5475
|
+
getComponentNameFromType(type) || "Unknown";
|
5476
|
+
didWarnAboutGetDerivedStateOnFunctionComponent[
|
5477
|
+
componentName$jscomp$4
|
5478
|
+
] ||
|
5476
5479
|
(console.error(
|
5477
5480
|
"%s: Function components do not support getDerivedStateFromProps.",
|
5478
|
-
|
5481
|
+
componentName$jscomp$4
|
5479
5482
|
),
|
5480
|
-
(didWarnAboutGetDerivedStateOnFunctionComponent[
|
5481
|
-
|
5483
|
+
(didWarnAboutGetDerivedStateOnFunctionComponent[
|
5484
|
+
componentName$jscomp$4
|
5485
|
+
] = !0));
|
5482
5486
|
}
|
5483
5487
|
if (
|
5484
5488
|
"object" === typeof type.contextType &&
|
5485
5489
|
null !== type.contextType
|
5486
5490
|
) {
|
5487
|
-
var
|
5488
|
-
didWarnAboutContextTypeOnFunctionComponent[
|
5491
|
+
var _componentName2 = getComponentNameFromType(type) || "Unknown";
|
5492
|
+
didWarnAboutContextTypeOnFunctionComponent[_componentName2] ||
|
5489
5493
|
(console.error(
|
5490
5494
|
"%s: Function components do not support contextType.",
|
5491
|
-
|
5495
|
+
_componentName2
|
5492
5496
|
),
|
5493
|
-
(didWarnAboutContextTypeOnFunctionComponent[
|
5497
|
+
(didWarnAboutContextTypeOnFunctionComponent[_componentName2] =
|
5494
5498
|
!0));
|
5495
5499
|
}
|
5496
5500
|
finishFunctionComponent(
|
@@ -9615,26 +9619,26 @@
|
|
9615
9619
|
"function" === typeof WeakMap ? WeakMap : Map
|
9616
9620
|
)();
|
9617
9621
|
var callComponent = {
|
9618
|
-
|
9622
|
+
react_stack_bottom_frame: function (Component, props, secondArg) {
|
9619
9623
|
return Component(props, secondArg);
|
9620
9624
|
}
|
9621
9625
|
},
|
9622
9626
|
callComponentInDEV =
|
9623
|
-
callComponent
|
9627
|
+
callComponent.react_stack_bottom_frame.bind(callComponent),
|
9624
9628
|
callRender = {
|
9625
|
-
|
9629
|
+
react_stack_bottom_frame: function (instance) {
|
9626
9630
|
return instance.render();
|
9627
9631
|
}
|
9628
9632
|
},
|
9629
|
-
callRenderInDEV = callRender
|
9633
|
+
callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender),
|
9630
9634
|
callLazyInit = {
|
9631
|
-
|
9635
|
+
react_stack_bottom_frame: function (lazy) {
|
9632
9636
|
var init = lazy._init;
|
9633
9637
|
return init(lazy._payload);
|
9634
9638
|
}
|
9635
9639
|
},
|
9636
9640
|
callLazyInitInDEV =
|
9637
|
-
callLazyInit
|
9641
|
+
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
|
9638
9642
|
lastResetTime = 0;
|
9639
9643
|
if (
|
9640
9644
|
"object" === typeof performance &&
|
@@ -9683,5 +9687,5 @@
|
|
9683
9687
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
|
9684
9688
|
);
|
9685
9689
|
};
|
9686
|
-
exports.version = "19.2.0-canary-
|
9690
|
+
exports.version = "19.2.0-canary-ef8b6fa2-20250702";
|
9687
9691
|
})();
|
@@ -2743,16 +2743,16 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2743
2743
|
"\x3c/script>"
|
2744
2744
|
));
|
2745
2745
|
bootstrapScriptContent = idPrefix + "P:";
|
2746
|
-
var
|
2746
|
+
var JSCompiler_object_inline_segmentPrefix_1675 = idPrefix + "S:";
|
2747
2747
|
idPrefix += "B:";
|
2748
|
-
var
|
2749
|
-
|
2750
|
-
|
2751
|
-
|
2752
|
-
|
2753
|
-
|
2754
|
-
|
2755
|
-
|
2748
|
+
var JSCompiler_object_inline_preconnects_1689 = new Set(),
|
2749
|
+
JSCompiler_object_inline_fontPreloads_1690 = new Set(),
|
2750
|
+
JSCompiler_object_inline_highImagePreloads_1691 = new Set(),
|
2751
|
+
JSCompiler_object_inline_styles_1692 = new Map(),
|
2752
|
+
JSCompiler_object_inline_bootstrapScripts_1693 = new Set(),
|
2753
|
+
JSCompiler_object_inline_scripts_1694 = new Set(),
|
2754
|
+
JSCompiler_object_inline_bulkPreloads_1695 = new Set(),
|
2755
|
+
JSCompiler_object_inline_preloads_1696 = {
|
2756
2756
|
images: new Map(),
|
2757
2757
|
stylesheets: new Map(),
|
2758
2758
|
scripts: new Map(),
|
@@ -2789,7 +2789,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2789
2789
|
scriptConfig.moduleScriptResources[href] = null;
|
2790
2790
|
scriptConfig = [];
|
2791
2791
|
pushLinkImpl(scriptConfig, props);
|
2792
|
-
|
2792
|
+
JSCompiler_object_inline_bootstrapScripts_1693.add(scriptConfig);
|
2793
2793
|
bootstrapChunks.push('<script src="', escapeTextForBrowser(src), '"');
|
2794
2794
|
"string" === typeof integrity &&
|
2795
2795
|
bootstrapChunks.push(
|
@@ -2836,7 +2836,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2836
2836
|
(props.moduleScriptResources[scriptConfig] = null),
|
2837
2837
|
(props = []),
|
2838
2838
|
pushLinkImpl(props, integrity),
|
2839
|
-
|
2839
|
+
JSCompiler_object_inline_bootstrapScripts_1693.add(props),
|
2840
2840
|
bootstrapChunks.push(
|
2841
2841
|
'<script type="module" src="',
|
2842
2842
|
escapeTextForBrowser(i),
|
@@ -2858,7 +2858,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2858
2858
|
bootstrapChunks.push(' async="">\x3c/script>');
|
2859
2859
|
return {
|
2860
2860
|
placeholderPrefix: bootstrapScriptContent,
|
2861
|
-
segmentPrefix:
|
2861
|
+
segmentPrefix: JSCompiler_object_inline_segmentPrefix_1675,
|
2862
2862
|
boundaryPrefix: idPrefix,
|
2863
2863
|
startInlineScript: "<script",
|
2864
2864
|
startInlineStyle: "<style",
|
@@ -2878,14 +2878,14 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2878
2878
|
charsetChunks: [],
|
2879
2879
|
viewportChunks: [],
|
2880
2880
|
hoistableChunks: [],
|
2881
|
-
preconnects:
|
2882
|
-
fontPreloads:
|
2883
|
-
highImagePreloads:
|
2884
|
-
styles:
|
2885
|
-
bootstrapScripts:
|
2886
|
-
scripts:
|
2887
|
-
bulkPreloads:
|
2888
|
-
preloads:
|
2881
|
+
preconnects: JSCompiler_object_inline_preconnects_1689,
|
2882
|
+
fontPreloads: JSCompiler_object_inline_fontPreloads_1690,
|
2883
|
+
highImagePreloads: JSCompiler_object_inline_highImagePreloads_1691,
|
2884
|
+
styles: JSCompiler_object_inline_styles_1692,
|
2885
|
+
bootstrapScripts: JSCompiler_object_inline_bootstrapScripts_1693,
|
2886
|
+
scripts: JSCompiler_object_inline_scripts_1694,
|
2887
|
+
bulkPreloads: JSCompiler_object_inline_bulkPreloads_1695,
|
2888
|
+
preloads: JSCompiler_object_inline_preloads_1696,
|
2889
2889
|
nonce: { script: void 0, style: void 0 },
|
2890
2890
|
stylesToHoist: !1,
|
2891
2891
|
generateStaticMarkup: generateStaticMarkup
|
@@ -3641,7 +3641,7 @@ function describeComponentStackByType(type) {
|
|
3641
3641
|
(location = location.slice(29)),
|
3642
3642
|
(type = location.indexOf("\n")),
|
3643
3643
|
-1 !== type && (location = location.slice(type + 1)),
|
3644
|
-
(type = location.indexOf("
|
3644
|
+
(type = location.indexOf("react_stack_bottom_frame")),
|
3645
3645
|
-1 !== type && (type = location.lastIndexOf("\n", type)),
|
3646
3646
|
(type = -1 !== type ? (location = location.slice(0, type)) : ""),
|
3647
3647
|
(location = type.lastIndexOf("\n")),
|
@@ -6539,4 +6539,4 @@ exports.renderToString = function (children, options) {
|
|
6539
6539
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
|
6540
6540
|
);
|
6541
6541
|
};
|
6542
|
-
exports.version = "19.2.0-canary-
|
6542
|
+
exports.version = "19.2.0-canary-ef8b6fa2-20250702";
|
@@ -4272,7 +4272,7 @@
|
|
4272
4272
|
prevPrepareStackTrace = error.indexOf("\n");
|
4273
4273
|
-1 !== prevPrepareStackTrace &&
|
4274
4274
|
(error = error.slice(prevPrepareStackTrace + 1));
|
4275
|
-
prevPrepareStackTrace = error.indexOf("
|
4275
|
+
prevPrepareStackTrace = error.indexOf("react_stack_bottom_frame");
|
4276
4276
|
-1 !== prevPrepareStackTrace &&
|
4277
4277
|
(prevPrepareStackTrace = error.lastIndexOf(
|
4278
4278
|
"\n",
|
@@ -5673,26 +5673,30 @@
|
|
5673
5673
|
type.displayName || type.name || "Component"
|
5674
5674
|
);
|
5675
5675
|
if ("function" === typeof type.getDerivedStateFromProps) {
|
5676
|
-
var
|
5677
|
-
|
5676
|
+
var componentName$jscomp$4 =
|
5677
|
+
getComponentNameFromType(type) || "Unknown";
|
5678
|
+
didWarnAboutGetDerivedStateOnFunctionComponent[
|
5679
|
+
componentName$jscomp$4
|
5680
|
+
] ||
|
5678
5681
|
(console.error(
|
5679
5682
|
"%s: Function components do not support getDerivedStateFromProps.",
|
5680
|
-
|
5683
|
+
componentName$jscomp$4
|
5681
5684
|
),
|
5682
|
-
(didWarnAboutGetDerivedStateOnFunctionComponent[
|
5683
|
-
|
5685
|
+
(didWarnAboutGetDerivedStateOnFunctionComponent[
|
5686
|
+
componentName$jscomp$4
|
5687
|
+
] = !0));
|
5684
5688
|
}
|
5685
5689
|
if (
|
5686
5690
|
"object" === typeof type.contextType &&
|
5687
5691
|
null !== type.contextType
|
5688
5692
|
) {
|
5689
|
-
var
|
5690
|
-
didWarnAboutContextTypeOnFunctionComponent[
|
5693
|
+
var _componentName2 = getComponentNameFromType(type) || "Unknown";
|
5694
|
+
didWarnAboutContextTypeOnFunctionComponent[_componentName2] ||
|
5691
5695
|
(console.error(
|
5692
5696
|
"%s: Function components do not support contextType.",
|
5693
|
-
|
5697
|
+
_componentName2
|
5694
5698
|
),
|
5695
|
-
(didWarnAboutContextTypeOnFunctionComponent[
|
5699
|
+
(didWarnAboutContextTypeOnFunctionComponent[_componentName2] =
|
5696
5700
|
!0));
|
5697
5701
|
}
|
5698
5702
|
finishFunctionComponent(
|
@@ -8432,11 +8436,11 @@
|
|
8432
8436
|
}
|
8433
8437
|
function ensureCorrectIsomorphicReactVersion() {
|
8434
8438
|
var isomorphicReactPackageVersion = React.version;
|
8435
|
-
if ("19.2.0-canary-
|
8439
|
+
if ("19.2.0-canary-ef8b6fa2-20250702" !== isomorphicReactPackageVersion)
|
8436
8440
|
throw Error(
|
8437
8441
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8438
8442
|
(isomorphicReactPackageVersion +
|
8439
|
-
"\n - react-dom: 19.2.0-canary-
|
8443
|
+
"\n - react-dom: 19.2.0-canary-ef8b6fa2-20250702\nLearn more: https://react.dev/warnings/version-mismatch")
|
8440
8444
|
);
|
8441
8445
|
}
|
8442
8446
|
var React = require("react"),
|
@@ -9931,26 +9935,26 @@
|
|
9931
9935
|
"function" === typeof WeakMap ? WeakMap : Map
|
9932
9936
|
)();
|
9933
9937
|
var callComponent = {
|
9934
|
-
|
9938
|
+
react_stack_bottom_frame: function (Component, props, secondArg) {
|
9935
9939
|
return Component(props, secondArg);
|
9936
9940
|
}
|
9937
9941
|
},
|
9938
9942
|
callComponentInDEV =
|
9939
|
-
callComponent
|
9943
|
+
callComponent.react_stack_bottom_frame.bind(callComponent),
|
9940
9944
|
callRender = {
|
9941
|
-
|
9945
|
+
react_stack_bottom_frame: function (instance) {
|
9942
9946
|
return instance.render();
|
9943
9947
|
}
|
9944
9948
|
},
|
9945
|
-
callRenderInDEV = callRender
|
9949
|
+
callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender),
|
9946
9950
|
callLazyInit = {
|
9947
|
-
|
9951
|
+
react_stack_bottom_frame: function (lazy) {
|
9948
9952
|
var init = lazy._init;
|
9949
9953
|
return init(lazy._payload);
|
9950
9954
|
}
|
9951
9955
|
},
|
9952
9956
|
callLazyInitInDEV =
|
9953
|
-
callLazyInit
|
9957
|
+
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
|
9954
9958
|
lastResetTime = 0;
|
9955
9959
|
if (
|
9956
9960
|
"object" === typeof performance &&
|
@@ -10126,5 +10130,5 @@
|
|
10126
10130
|
startWork(request);
|
10127
10131
|
});
|
10128
10132
|
};
|
10129
|
-
exports.version = "19.2.0-canary-
|
10133
|
+
exports.version = "19.2.0-canary-ef8b6fa2-20250702";
|
10130
10134
|
})();
|
@@ -3977,7 +3977,7 @@ function describeComponentStackByType(type) {
|
|
3977
3977
|
(location = location.slice(29)),
|
3978
3978
|
(type = location.indexOf("\n")),
|
3979
3979
|
-1 !== type && (location = location.slice(type + 1)),
|
3980
|
-
(type = location.indexOf("
|
3980
|
+
(type = location.indexOf("react_stack_bottom_frame")),
|
3981
3981
|
-1 !== type && (type = location.lastIndexOf("\n", type)),
|
3982
3982
|
(type = -1 !== type ? (location = location.slice(0, type)) : ""),
|
3983
3983
|
(location = type.lastIndexOf("\n")),
|
@@ -6842,12 +6842,12 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
6842
6842
|
}
|
6843
6843
|
function ensureCorrectIsomorphicReactVersion() {
|
6844
6844
|
var isomorphicReactPackageVersion = React.version;
|
6845
|
-
if ("19.2.0-canary-
|
6845
|
+
if ("19.2.0-canary-ef8b6fa2-20250702" !== isomorphicReactPackageVersion)
|
6846
6846
|
throw Error(
|
6847
6847
|
formatProdErrorMessage(
|
6848
6848
|
527,
|
6849
6849
|
isomorphicReactPackageVersion,
|
6850
|
-
"19.2.0-canary-
|
6850
|
+
"19.2.0-canary-ef8b6fa2-20250702"
|
6851
6851
|
)
|
6852
6852
|
);
|
6853
6853
|
}
|
@@ -6994,4 +6994,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6994
6994
|
startWork(request);
|
6995
6995
|
});
|
6996
6996
|
};
|
6997
|
-
exports.version = "19.2.0-canary-
|
6997
|
+
exports.version = "19.2.0-canary-ef8b6fa2-20250702";
|
@@ -5364,7 +5364,7 @@ function formatOwnerStack(error) {
|
|
5364
5364
|
prevPrepareStackTrace = error.indexOf("\n");
|
5365
5365
|
-1 !== prevPrepareStackTrace &&
|
5366
5366
|
(error = error.slice(prevPrepareStackTrace + 1));
|
5367
|
-
prevPrepareStackTrace = error.indexOf("
|
5367
|
+
prevPrepareStackTrace = error.indexOf("react_stack_bottom_frame");
|
5368
5368
|
-1 !== prevPrepareStackTrace &&
|
5369
5369
|
(prevPrepareStackTrace = error.lastIndexOf("\n", prevPrepareStackTrace));
|
5370
5370
|
if (-1 !== prevPrepareStackTrace)
|
@@ -5596,26 +5596,25 @@ function describeComponentStackByType(type) {
|
|
5596
5596
|
return "";
|
5597
5597
|
}
|
5598
5598
|
var callComponent = {
|
5599
|
-
|
5599
|
+
react_stack_bottom_frame: function (Component, props, secondArg) {
|
5600
5600
|
return Component(props, secondArg);
|
5601
5601
|
}
|
5602
5602
|
},
|
5603
5603
|
callComponentInDEV =
|
5604
|
-
callComponent
|
5604
|
+
callComponent.react_stack_bottom_frame.bind(callComponent),
|
5605
5605
|
callRender = {
|
5606
|
-
|
5606
|
+
react_stack_bottom_frame: function (instance) {
|
5607
5607
|
return instance.render();
|
5608
5608
|
}
|
5609
5609
|
},
|
5610
|
-
callRenderInDEV = callRender
|
5610
|
+
callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender),
|
5611
5611
|
callLazyInit = {
|
5612
|
-
|
5612
|
+
react_stack_bottom_frame: function (lazy) {
|
5613
5613
|
var init = lazy._init;
|
5614
5614
|
return init(lazy._payload);
|
5615
5615
|
}
|
5616
5616
|
},
|
5617
|
-
callLazyInitInDEV =
|
5618
|
-
callLazyInit["react-stack-bottom-frame"].bind(callLazyInit),
|
5617
|
+
callLazyInitInDEV = callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
|
5619
5618
|
lastResetTime = 0,
|
5620
5619
|
getCurrentTime;
|
5621
5620
|
if ("object" === typeof performance && "function" === typeof performance.now) {
|
@@ -6723,23 +6722,27 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
6723
6722
|
type.displayName || type.name || "Component"
|
6724
6723
|
);
|
6725
6724
|
if ("function" === typeof type.getDerivedStateFromProps) {
|
6726
|
-
var
|
6727
|
-
|
6725
|
+
var componentName$jscomp$4 =
|
6726
|
+
getComponentNameFromType(type) || "Unknown";
|
6727
|
+
didWarnAboutGetDerivedStateOnFunctionComponent[
|
6728
|
+
componentName$jscomp$4
|
6729
|
+
] ||
|
6728
6730
|
(console.error(
|
6729
6731
|
"%s: Function components do not support getDerivedStateFromProps.",
|
6730
|
-
|
6732
|
+
componentName$jscomp$4
|
6731
6733
|
),
|
6732
|
-
(didWarnAboutGetDerivedStateOnFunctionComponent[
|
6733
|
-
|
6734
|
+
(didWarnAboutGetDerivedStateOnFunctionComponent[
|
6735
|
+
componentName$jscomp$4
|
6736
|
+
] = !0));
|
6734
6737
|
}
|
6735
6738
|
if ("object" === typeof type.contextType && null !== type.contextType) {
|
6736
|
-
var
|
6737
|
-
didWarnAboutContextTypeOnFunctionComponent[
|
6739
|
+
var _componentName2 = getComponentNameFromType(type) || "Unknown";
|
6740
|
+
didWarnAboutContextTypeOnFunctionComponent[_componentName2] ||
|
6738
6741
|
(console.error(
|
6739
6742
|
"%s: Function components do not support contextType.",
|
6740
|
-
|
6743
|
+
_componentName2
|
6741
6744
|
),
|
6742
|
-
(didWarnAboutContextTypeOnFunctionComponent[
|
6745
|
+
(didWarnAboutContextTypeOnFunctionComponent[_componentName2] = !0));
|
6743
6746
|
}
|
6744
6747
|
finishFunctionComponent(
|
6745
6748
|
request,
|
@@ -9305,15 +9308,15 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
9305
9308
|
parentNode[2].push(node);
|
9306
9309
|
}
|
9307
9310
|
}
|
9308
|
-
var isomorphicReactPackageVersion$jscomp$
|
9311
|
+
var isomorphicReactPackageVersion$jscomp$inline_763 = React.version;
|
9309
9312
|
if (
|
9310
|
-
"19.2.0-canary-
|
9311
|
-
isomorphicReactPackageVersion$jscomp$
|
9313
|
+
"19.2.0-canary-ef8b6fa2-20250702" !==
|
9314
|
+
isomorphicReactPackageVersion$jscomp$inline_763
|
9312
9315
|
)
|
9313
9316
|
throw Error(
|
9314
9317
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
9315
|
-
(isomorphicReactPackageVersion$jscomp$
|
9316
|
-
"\n - react-dom: 19.2.0-canary-
|
9318
|
+
(isomorphicReactPackageVersion$jscomp$inline_763 +
|
9319
|
+
"\n - react-dom: 19.2.0-canary-ef8b6fa2-20250702\nLearn more: https://react.dev/warnings/version-mismatch")
|
9317
9320
|
);
|
9318
9321
|
exports.renderToReadableStream = function (children, options) {
|
9319
9322
|
return new Promise(function (resolve, reject) {
|
@@ -9406,4 +9409,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
9406
9409
|
startWork(request$jscomp$0);
|
9407
9410
|
});
|
9408
9411
|
};
|
9409
|
-
exports.version = "19.2.0-canary-
|
9412
|
+
exports.version = "19.2.0-canary-ef8b6fa2-20250702";
|
@@ -3621,7 +3621,7 @@ function describeComponentStackByType(type) {
|
|
3621
3621
|
(location = location.slice(29)),
|
3622
3622
|
(type = location.indexOf("\n")),
|
3623
3623
|
-1 !== type && (location = location.slice(type + 1)),
|
3624
|
-
(type = location.indexOf("
|
3624
|
+
(type = location.indexOf("react_stack_bottom_frame")),
|
3625
3625
|
-1 !== type && (type = location.lastIndexOf("\n", type)),
|
3626
3626
|
(type = -1 !== type ? (location = location.slice(0, type)) : ""),
|
3627
3627
|
(location = type.lastIndexOf("\n")),
|
@@ -6485,15 +6485,15 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
6485
6485
|
parentNode[2].push(node);
|
6486
6486
|
}
|
6487
6487
|
}
|
6488
|
-
var isomorphicReactPackageVersion$jscomp$
|
6488
|
+
var isomorphicReactPackageVersion$jscomp$inline_815 = React.version;
|
6489
6489
|
if (
|
6490
|
-
"19.2.0-canary-
|
6491
|
-
isomorphicReactPackageVersion$jscomp$
|
6490
|
+
"19.2.0-canary-ef8b6fa2-20250702" !==
|
6491
|
+
isomorphicReactPackageVersion$jscomp$inline_815
|
6492
6492
|
)
|
6493
6493
|
throw Error(
|
6494
6494
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6495
|
-
(isomorphicReactPackageVersion$jscomp$
|
6496
|
-
"\n - react-dom: 19.2.0-canary-
|
6495
|
+
(isomorphicReactPackageVersion$jscomp$inline_815 +
|
6496
|
+
"\n - react-dom: 19.2.0-canary-ef8b6fa2-20250702\nLearn more: https://react.dev/warnings/version-mismatch")
|
6497
6497
|
);
|
6498
6498
|
exports.renderToReadableStream = function (children, options) {
|
6499
6499
|
return new Promise(function (resolve, reject) {
|
@@ -6584,4 +6584,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6584
6584
|
startWork(request);
|
6585
6585
|
});
|
6586
6586
|
};
|
6587
|
-
exports.version = "19.2.0-canary-
|
6587
|
+
exports.version = "19.2.0-canary-ef8b6fa2-20250702";
|