react-dom 19.3.0-canary-4fdf7cf2-20251003 → 19.3.0-canary-c7862584-20251006
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 +186 -121
- package/cjs/react-dom-client.production.js +5 -5
- package/cjs/react-dom-profiling.development.js +186 -121
- package/cjs/react-dom-profiling.profiling.js +5 -5
- package/cjs/react-dom-server-legacy.browser.development.js +1 -1
- package/cjs/react-dom-server-legacy.browser.production.js +1 -1
- package/cjs/react-dom-server-legacy.node.development.js +1 -1
- package/cjs/react-dom-server-legacy.node.production.js +1 -1
- package/cjs/react-dom-server.browser.development.js +3 -3
- package/cjs/react-dom-server.browser.production.js +3 -3
- package/cjs/react-dom-server.bun.development.js +3 -3
- package/cjs/react-dom-server.bun.production.js +3 -3
- package/cjs/react-dom-server.edge.development.js +3 -3
- package/cjs/react-dom-server.edge.production.js +3 -3
- package/cjs/react-dom-server.node.development.js +3 -3
- package/cjs/react-dom-server.node.production.js +3 -3
- 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
|
@@ -3756,7 +3756,11 @@
|
|
|
3756
3756
|
registerTwoPhaseEvent(reactName, [domEventName]);
|
|
3757
3757
|
}
|
|
3758
3758
|
function getArrayKind(array) {
|
|
3759
|
-
for (
|
|
3759
|
+
for (
|
|
3760
|
+
var kind = EMPTY_ARRAY, i = 0;
|
|
3761
|
+
i < array.length && i < OBJECT_WIDTH_LIMIT;
|
|
3762
|
+
i++
|
|
3763
|
+
) {
|
|
3760
3764
|
var value = array[i];
|
|
3761
3765
|
if ("object" === typeof value && null !== value)
|
|
3762
3766
|
if (
|
|
@@ -3781,10 +3785,26 @@
|
|
|
3781
3785
|
return kind;
|
|
3782
3786
|
}
|
|
3783
3787
|
function addObjectToProperties(object, properties, indent, prefix) {
|
|
3784
|
-
|
|
3785
|
-
|
|
3788
|
+
var addedProperties = 0,
|
|
3789
|
+
key;
|
|
3790
|
+
for (key in object)
|
|
3791
|
+
if (
|
|
3792
|
+
hasOwnProperty.call(object, key) &&
|
|
3786
3793
|
"_" !== key[0] &&
|
|
3787
|
-
|
|
3794
|
+
(addedProperties++,
|
|
3795
|
+
addValueToProperties(key, object[key], properties, indent, prefix),
|
|
3796
|
+
addedProperties >= OBJECT_WIDTH_LIMIT)
|
|
3797
|
+
) {
|
|
3798
|
+
properties.push([
|
|
3799
|
+
prefix +
|
|
3800
|
+
"\u00a0\u00a0".repeat(indent) +
|
|
3801
|
+
"Only " +
|
|
3802
|
+
OBJECT_WIDTH_LIMIT +
|
|
3803
|
+
" properties are shown. React will not log more properties of this object.",
|
|
3804
|
+
""
|
|
3805
|
+
]);
|
|
3806
|
+
break;
|
|
3807
|
+
}
|
|
3788
3808
|
}
|
|
3789
3809
|
function addValueToProperties(
|
|
3790
3810
|
propertyName,
|
|
@@ -3831,21 +3851,27 @@
|
|
|
3831
3851
|
prefix
|
|
3832
3852
|
);
|
|
3833
3853
|
propertyName = !1;
|
|
3854
|
+
key = 0;
|
|
3834
3855
|
for (var propKey in value)
|
|
3835
|
-
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
propKey
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3856
|
+
if (
|
|
3857
|
+
(key++,
|
|
3858
|
+
"children" === propKey
|
|
3859
|
+
? null != value.children &&
|
|
3860
|
+
(!isArrayImpl(value.children) ||
|
|
3861
|
+
0 < value.children.length) &&
|
|
3862
|
+
(propertyName = !0)
|
|
3863
|
+
: hasOwnProperty.call(value, propKey) &&
|
|
3864
|
+
"_" !== propKey[0] &&
|
|
3865
|
+
addValueToProperties(
|
|
3866
|
+
propKey,
|
|
3867
|
+
value[propKey],
|
|
3868
|
+
properties,
|
|
3869
|
+
indent + 1,
|
|
3870
|
+
prefix
|
|
3871
|
+
),
|
|
3872
|
+
key >= OBJECT_WIDTH_LIMIT)
|
|
3873
|
+
)
|
|
3874
|
+
break;
|
|
3849
3875
|
properties.push([
|
|
3850
3876
|
"",
|
|
3851
3877
|
propertyName ? ">\u2026</" + typeName + ">" : "/>"
|
|
@@ -3853,35 +3879,49 @@
|
|
|
3853
3879
|
return;
|
|
3854
3880
|
}
|
|
3855
3881
|
typeName = Object.prototype.toString.call(value);
|
|
3856
|
-
|
|
3857
|
-
if ("Array" ===
|
|
3882
|
+
propKey = typeName.slice(8, typeName.length - 1);
|
|
3883
|
+
if ("Array" === propKey)
|
|
3858
3884
|
if (
|
|
3859
|
-
((
|
|
3860
|
-
|
|
3885
|
+
((typeName = value.length > OBJECT_WIDTH_LIMIT),
|
|
3886
|
+
(key = getArrayKind(value)),
|
|
3887
|
+
key === PRIMITIVE_ARRAY || key === EMPTY_ARRAY)
|
|
3861
3888
|
) {
|
|
3862
|
-
value = JSON.stringify(
|
|
3889
|
+
value = JSON.stringify(
|
|
3890
|
+
typeName
|
|
3891
|
+
? value.slice(0, OBJECT_WIDTH_LIMIT).concat("\u2026")
|
|
3892
|
+
: value
|
|
3893
|
+
);
|
|
3863
3894
|
break;
|
|
3864
|
-
} else if (
|
|
3895
|
+
} else if (key === ENTRIES_ARRAY) {
|
|
3865
3896
|
properties.push([
|
|
3866
3897
|
prefix + "\u00a0\u00a0".repeat(indent) + propertyName,
|
|
3867
3898
|
""
|
|
3868
3899
|
]);
|
|
3869
3900
|
for (
|
|
3870
3901
|
propertyName = 0;
|
|
3871
|
-
propertyName < value.length
|
|
3902
|
+
propertyName < value.length &&
|
|
3903
|
+
propertyName < OBJECT_WIDTH_LIMIT;
|
|
3872
3904
|
propertyName++
|
|
3873
3905
|
)
|
|
3874
|
-
(
|
|
3906
|
+
(propKey = value[propertyName]),
|
|
3875
3907
|
addValueToProperties(
|
|
3876
|
-
|
|
3877
|
-
|
|
3908
|
+
propKey[0],
|
|
3909
|
+
propKey[1],
|
|
3878
3910
|
properties,
|
|
3879
3911
|
indent + 1,
|
|
3880
3912
|
prefix
|
|
3881
3913
|
);
|
|
3914
|
+
typeName &&
|
|
3915
|
+
addValueToProperties(
|
|
3916
|
+
OBJECT_WIDTH_LIMIT.toString(),
|
|
3917
|
+
"\u2026",
|
|
3918
|
+
properties,
|
|
3919
|
+
indent + 1,
|
|
3920
|
+
prefix
|
|
3921
|
+
);
|
|
3882
3922
|
return;
|
|
3883
3923
|
}
|
|
3884
|
-
if ("Promise" ===
|
|
3924
|
+
if ("Promise" === propKey) {
|
|
3885
3925
|
if ("fulfilled" === value.status) {
|
|
3886
3926
|
if (
|
|
3887
3927
|
((typeName = properties.length),
|
|
@@ -3921,13 +3961,13 @@
|
|
|
3921
3961
|
]);
|
|
3922
3962
|
return;
|
|
3923
3963
|
}
|
|
3924
|
-
"Object" ===
|
|
3925
|
-
(
|
|
3926
|
-
"function" === typeof
|
|
3927
|
-
(
|
|
3964
|
+
"Object" === propKey &&
|
|
3965
|
+
(typeName = Object.getPrototypeOf(value)) &&
|
|
3966
|
+
"function" === typeof typeName.constructor &&
|
|
3967
|
+
(propKey = typeName.constructor.name);
|
|
3928
3968
|
properties.push([
|
|
3929
3969
|
prefix + "\u00a0\u00a0".repeat(indent) + propertyName,
|
|
3930
|
-
"Object" ===
|
|
3970
|
+
"Object" === propKey ? (3 > indent ? "" : "\u2026") : propKey
|
|
3931
3971
|
]);
|
|
3932
3972
|
3 > indent &&
|
|
3933
3973
|
addObjectToProperties(value, properties, indent + 1, prefix);
|
|
@@ -3955,100 +3995,122 @@
|
|
|
3955
3995
|
]);
|
|
3956
3996
|
}
|
|
3957
3997
|
function addObjectDiffToProperties(prev, next, properties, indent) {
|
|
3958
|
-
var isDeeplyEqual = !0
|
|
3959
|
-
|
|
3998
|
+
var isDeeplyEqual = !0,
|
|
3999
|
+
prevPropertiesChecked = 0;
|
|
4000
|
+
for (key in prev) {
|
|
4001
|
+
if (prevPropertiesChecked > OBJECT_WIDTH_LIMIT) {
|
|
4002
|
+
properties.push([
|
|
4003
|
+
"Previous object has more than " +
|
|
4004
|
+
OBJECT_WIDTH_LIMIT +
|
|
4005
|
+
" properties. React will not attempt to diff objects with too many properties.",
|
|
4006
|
+
""
|
|
4007
|
+
]);
|
|
4008
|
+
isDeeplyEqual = !1;
|
|
4009
|
+
break;
|
|
4010
|
+
}
|
|
3960
4011
|
key in next ||
|
|
3961
4012
|
(properties.push([
|
|
3962
4013
|
REMOVED + "\u00a0\u00a0".repeat(indent) + key,
|
|
3963
4014
|
"\u2026"
|
|
3964
4015
|
]),
|
|
3965
4016
|
(isDeeplyEqual = !1));
|
|
3966
|
-
|
|
4017
|
+
prevPropertiesChecked++;
|
|
4018
|
+
}
|
|
4019
|
+
prevPropertiesChecked = 0;
|
|
4020
|
+
for (var _key in next) {
|
|
4021
|
+
if (prevPropertiesChecked > OBJECT_WIDTH_LIMIT) {
|
|
4022
|
+
properties.push([
|
|
4023
|
+
"Next object has more than " +
|
|
4024
|
+
OBJECT_WIDTH_LIMIT +
|
|
4025
|
+
" properties. React will not attempt to diff objects with too many properties.",
|
|
4026
|
+
""
|
|
4027
|
+
]);
|
|
4028
|
+
isDeeplyEqual = !1;
|
|
4029
|
+
break;
|
|
4030
|
+
}
|
|
3967
4031
|
if (_key in prev) {
|
|
3968
4032
|
var key = prev[_key];
|
|
3969
4033
|
var nextValue = next[_key];
|
|
3970
4034
|
if (key !== nextValue) {
|
|
3971
|
-
if (0 === indent && "children" === _key)
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
|
|
3991
|
-
|
|
3992
|
-
|
|
3993
|
-
|
|
3994
|
-
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
}
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
|
|
4013
|
-
]
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4019
|
-
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
|
|
4027
|
-
|
|
4035
|
+
if (0 === indent && "children" === _key) {
|
|
4036
|
+
isDeeplyEqual = "\u00a0\u00a0".repeat(indent) + _key;
|
|
4037
|
+
properties.push(
|
|
4038
|
+
[REMOVED + isDeeplyEqual, "\u2026"],
|
|
4039
|
+
[ADDED + isDeeplyEqual, "\u2026"]
|
|
4040
|
+
);
|
|
4041
|
+
isDeeplyEqual = !1;
|
|
4042
|
+
continue;
|
|
4043
|
+
}
|
|
4044
|
+
if (!(3 <= indent))
|
|
4045
|
+
if (
|
|
4046
|
+
"object" === typeof key &&
|
|
4047
|
+
"object" === typeof nextValue &&
|
|
4048
|
+
null !== key &&
|
|
4049
|
+
null !== nextValue &&
|
|
4050
|
+
key.$$typeof === nextValue.$$typeof
|
|
4051
|
+
)
|
|
4052
|
+
if (nextValue.$$typeof === REACT_ELEMENT_TYPE) {
|
|
4053
|
+
if (
|
|
4054
|
+
key.type === nextValue.type &&
|
|
4055
|
+
key.key === nextValue.key
|
|
4056
|
+
) {
|
|
4057
|
+
key = getComponentNameFromType(nextValue.type) || "\u2026";
|
|
4058
|
+
isDeeplyEqual = "\u00a0\u00a0".repeat(indent) + _key;
|
|
4059
|
+
key = "<" + key + " \u2026 />";
|
|
4060
|
+
properties.push(
|
|
4061
|
+
[REMOVED + isDeeplyEqual, key],
|
|
4062
|
+
[ADDED + isDeeplyEqual, key]
|
|
4063
|
+
);
|
|
4064
|
+
isDeeplyEqual = !1;
|
|
4065
|
+
continue;
|
|
4066
|
+
}
|
|
4067
|
+
} else {
|
|
4068
|
+
var prevKind = Object.prototype.toString.call(key),
|
|
4069
|
+
nextKind = Object.prototype.toString.call(nextValue);
|
|
4070
|
+
if (
|
|
4071
|
+
prevKind === nextKind &&
|
|
4072
|
+
("[object Object]" === nextKind ||
|
|
4073
|
+
"[object Array]" === nextKind)
|
|
4074
|
+
) {
|
|
4075
|
+
prevKind = [
|
|
4076
|
+
UNCHANGED + "\u00a0\u00a0".repeat(indent) + _key,
|
|
4077
|
+
"[object Array]" === nextKind ? "Array" : ""
|
|
4078
|
+
];
|
|
4079
|
+
properties.push(prevKind);
|
|
4080
|
+
nextKind = properties.length;
|
|
4081
|
+
addObjectDiffToProperties(
|
|
4082
|
+
key,
|
|
4083
|
+
nextValue,
|
|
4084
|
+
properties,
|
|
4085
|
+
indent + 1
|
|
4086
|
+
)
|
|
4087
|
+
? nextKind === properties.length &&
|
|
4088
|
+
(prevKind[1] =
|
|
4089
|
+
"Referentially unequal but deeply equal objects. Consider memoization.")
|
|
4090
|
+
: (isDeeplyEqual = !1);
|
|
4091
|
+
continue;
|
|
4028
4092
|
}
|
|
4029
|
-
else if (
|
|
4030
|
-
"function" === typeof key &&
|
|
4031
|
-
"function" === typeof nextValue &&
|
|
4032
|
-
key.name === nextValue.name &&
|
|
4033
|
-
key.length === nextValue.length &&
|
|
4034
|
-
((prevKind = Function.prototype.toString.call(key)),
|
|
4035
|
-
(nextKind = Function.prototype.toString.call(nextValue)),
|
|
4036
|
-
prevKind === nextKind)
|
|
4037
|
-
) {
|
|
4038
|
-
key =
|
|
4039
|
-
"" === nextValue.name
|
|
4040
|
-
? "() => {}"
|
|
4041
|
-
: nextValue.name + "() {}";
|
|
4042
|
-
properties.push([
|
|
4043
|
-
UNCHANGED + "\u00a0\u00a0".repeat(indent) + _key,
|
|
4044
|
-
key +
|
|
4045
|
-
" Referentially unequal function closure. Consider memoization."
|
|
4046
|
-
]);
|
|
4047
|
-
continue;
|
|
4048
4093
|
}
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
|
|
4094
|
+
else if (
|
|
4095
|
+
"function" === typeof key &&
|
|
4096
|
+
"function" === typeof nextValue &&
|
|
4097
|
+
key.name === nextValue.name &&
|
|
4098
|
+
key.length === nextValue.length &&
|
|
4099
|
+
((prevKind = Function.prototype.toString.call(key)),
|
|
4100
|
+
(nextKind = Function.prototype.toString.call(nextValue)),
|
|
4101
|
+
prevKind === nextKind)
|
|
4102
|
+
) {
|
|
4103
|
+
key =
|
|
4104
|
+
"" === nextValue.name ? "() => {}" : nextValue.name + "() {}";
|
|
4105
|
+
properties.push([
|
|
4106
|
+
UNCHANGED + "\u00a0\u00a0".repeat(indent) + _key,
|
|
4107
|
+
key +
|
|
4108
|
+
" Referentially unequal function closure. Consider memoization."
|
|
4109
|
+
]);
|
|
4110
|
+
continue;
|
|
4111
|
+
}
|
|
4112
|
+
addValueToProperties(_key, key, properties, indent, REMOVED);
|
|
4113
|
+
addValueToProperties(_key, nextValue, properties, indent, ADDED);
|
|
4052
4114
|
isDeeplyEqual = !1;
|
|
4053
4115
|
}
|
|
4054
4116
|
} else
|
|
@@ -4057,6 +4119,8 @@
|
|
|
4057
4119
|
"\u2026"
|
|
4058
4120
|
]),
|
|
4059
4121
|
(isDeeplyEqual = !1);
|
|
4122
|
+
prevPropertiesChecked++;
|
|
4123
|
+
}
|
|
4060
4124
|
return isDeeplyEqual;
|
|
4061
4125
|
}
|
|
4062
4126
|
function setCurrentTrackFromLanes(lanes) {
|
|
@@ -25518,6 +25582,7 @@
|
|
|
25518
25582
|
COMPLEX_ARRAY = 1,
|
|
25519
25583
|
PRIMITIVE_ARRAY = 2,
|
|
25520
25584
|
ENTRIES_ARRAY = 3,
|
|
25585
|
+
OBJECT_WIDTH_LIMIT = 100,
|
|
25521
25586
|
REMOVED = "\u2013\u00a0",
|
|
25522
25587
|
ADDED = "+\u00a0",
|
|
25523
25588
|
UNCHANGED = "\u2007\u00a0",
|
|
@@ -27931,11 +27996,11 @@
|
|
|
27931
27996
|
};
|
|
27932
27997
|
(function () {
|
|
27933
27998
|
var isomorphicReactPackageVersion = React.version;
|
|
27934
|
-
if ("19.3.0-canary-
|
|
27999
|
+
if ("19.3.0-canary-c7862584-20251006" !== isomorphicReactPackageVersion)
|
|
27935
28000
|
throw Error(
|
|
27936
28001
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
27937
28002
|
(isomorphicReactPackageVersion +
|
|
27938
|
-
"\n - react-dom: 19.3.0-canary-
|
|
28003
|
+
"\n - react-dom: 19.3.0-canary-c7862584-20251006\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
27939
28004
|
);
|
|
27940
28005
|
})();
|
|
27941
28006
|
("function" === typeof Map &&
|
|
@@ -27972,10 +28037,10 @@
|
|
|
27972
28037
|
!(function () {
|
|
27973
28038
|
var internals = {
|
|
27974
28039
|
bundleType: 1,
|
|
27975
|
-
version: "19.3.0-canary-
|
|
28040
|
+
version: "19.3.0-canary-c7862584-20251006",
|
|
27976
28041
|
rendererPackageName: "react-dom",
|
|
27977
28042
|
currentDispatcherRef: ReactSharedInternals,
|
|
27978
|
-
reconcilerVersion: "19.3.0-canary-
|
|
28043
|
+
reconcilerVersion: "19.3.0-canary-c7862584-20251006"
|
|
27979
28044
|
};
|
|
27980
28045
|
internals.overrideHookState = overrideHookState;
|
|
27981
28046
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
|
@@ -28113,7 +28178,7 @@
|
|
|
28113
28178
|
listenToAllSupportedEvents(container);
|
|
28114
28179
|
return new ReactDOMHydrationRoot(initialChildren);
|
|
28115
28180
|
};
|
|
28116
|
-
exports.version = "19.3.0-canary-
|
|
28181
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
28117
28182
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
28118
28183
|
"function" ===
|
|
28119
28184
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -15916,14 +15916,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
|
15916
15916
|
};
|
|
15917
15917
|
var isomorphicReactPackageVersion$jscomp$inline_1840 = React.version;
|
|
15918
15918
|
if (
|
|
15919
|
-
"19.3.0-canary-
|
|
15919
|
+
"19.3.0-canary-c7862584-20251006" !==
|
|
15920
15920
|
isomorphicReactPackageVersion$jscomp$inline_1840
|
|
15921
15921
|
)
|
|
15922
15922
|
throw Error(
|
|
15923
15923
|
formatProdErrorMessage(
|
|
15924
15924
|
527,
|
|
15925
15925
|
isomorphicReactPackageVersion$jscomp$inline_1840,
|
|
15926
|
-
"19.3.0-canary-
|
|
15926
|
+
"19.3.0-canary-c7862584-20251006"
|
|
15927
15927
|
)
|
|
15928
15928
|
);
|
|
15929
15929
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
@@ -15945,10 +15945,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
|
15945
15945
|
};
|
|
15946
15946
|
var internals$jscomp$inline_2347 = {
|
|
15947
15947
|
bundleType: 0,
|
|
15948
|
-
version: "19.3.0-canary-
|
|
15948
|
+
version: "19.3.0-canary-c7862584-20251006",
|
|
15949
15949
|
rendererPackageName: "react-dom",
|
|
15950
15950
|
currentDispatcherRef: ReactSharedInternals,
|
|
15951
|
-
reconcilerVersion: "19.3.0-canary-
|
|
15951
|
+
reconcilerVersion: "19.3.0-canary-c7862584-20251006"
|
|
15952
15952
|
};
|
|
15953
15953
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
|
15954
15954
|
var hook$jscomp$inline_2348 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
@@ -16046,4 +16046,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
|
|
16046
16046
|
listenToAllSupportedEvents(container);
|
|
16047
16047
|
return new ReactDOMHydrationRoot(initialChildren);
|
|
16048
16048
|
};
|
|
16049
|
-
exports.version = "19.3.0-canary-
|
|
16049
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
@@ -3764,7 +3764,11 @@
|
|
|
3764
3764
|
registerTwoPhaseEvent(reactName, [domEventName]);
|
|
3765
3765
|
}
|
|
3766
3766
|
function getArrayKind(array) {
|
|
3767
|
-
for (
|
|
3767
|
+
for (
|
|
3768
|
+
var kind = EMPTY_ARRAY, i = 0;
|
|
3769
|
+
i < array.length && i < OBJECT_WIDTH_LIMIT;
|
|
3770
|
+
i++
|
|
3771
|
+
) {
|
|
3768
3772
|
var value = array[i];
|
|
3769
3773
|
if ("object" === typeof value && null !== value)
|
|
3770
3774
|
if (
|
|
@@ -3789,10 +3793,26 @@
|
|
|
3789
3793
|
return kind;
|
|
3790
3794
|
}
|
|
3791
3795
|
function addObjectToProperties(object, properties, indent, prefix) {
|
|
3792
|
-
|
|
3793
|
-
|
|
3796
|
+
var addedProperties = 0,
|
|
3797
|
+
key;
|
|
3798
|
+
for (key in object)
|
|
3799
|
+
if (
|
|
3800
|
+
hasOwnProperty.call(object, key) &&
|
|
3794
3801
|
"_" !== key[0] &&
|
|
3795
|
-
|
|
3802
|
+
(addedProperties++,
|
|
3803
|
+
addValueToProperties(key, object[key], properties, indent, prefix),
|
|
3804
|
+
addedProperties >= OBJECT_WIDTH_LIMIT)
|
|
3805
|
+
) {
|
|
3806
|
+
properties.push([
|
|
3807
|
+
prefix +
|
|
3808
|
+
"\u00a0\u00a0".repeat(indent) +
|
|
3809
|
+
"Only " +
|
|
3810
|
+
OBJECT_WIDTH_LIMIT +
|
|
3811
|
+
" properties are shown. React will not log more properties of this object.",
|
|
3812
|
+
""
|
|
3813
|
+
]);
|
|
3814
|
+
break;
|
|
3815
|
+
}
|
|
3796
3816
|
}
|
|
3797
3817
|
function addValueToProperties(
|
|
3798
3818
|
propertyName,
|
|
@@ -3839,21 +3859,27 @@
|
|
|
3839
3859
|
prefix
|
|
3840
3860
|
);
|
|
3841
3861
|
propertyName = !1;
|
|
3862
|
+
key = 0;
|
|
3842
3863
|
for (var propKey in value)
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
propKey
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3864
|
+
if (
|
|
3865
|
+
(key++,
|
|
3866
|
+
"children" === propKey
|
|
3867
|
+
? null != value.children &&
|
|
3868
|
+
(!isArrayImpl(value.children) ||
|
|
3869
|
+
0 < value.children.length) &&
|
|
3870
|
+
(propertyName = !0)
|
|
3871
|
+
: hasOwnProperty.call(value, propKey) &&
|
|
3872
|
+
"_" !== propKey[0] &&
|
|
3873
|
+
addValueToProperties(
|
|
3874
|
+
propKey,
|
|
3875
|
+
value[propKey],
|
|
3876
|
+
properties,
|
|
3877
|
+
indent + 1,
|
|
3878
|
+
prefix
|
|
3879
|
+
),
|
|
3880
|
+
key >= OBJECT_WIDTH_LIMIT)
|
|
3881
|
+
)
|
|
3882
|
+
break;
|
|
3857
3883
|
properties.push([
|
|
3858
3884
|
"",
|
|
3859
3885
|
propertyName ? ">\u2026</" + typeName + ">" : "/>"
|
|
@@ -3861,35 +3887,49 @@
|
|
|
3861
3887
|
return;
|
|
3862
3888
|
}
|
|
3863
3889
|
typeName = Object.prototype.toString.call(value);
|
|
3864
|
-
|
|
3865
|
-
if ("Array" ===
|
|
3890
|
+
propKey = typeName.slice(8, typeName.length - 1);
|
|
3891
|
+
if ("Array" === propKey)
|
|
3866
3892
|
if (
|
|
3867
|
-
((
|
|
3868
|
-
|
|
3893
|
+
((typeName = value.length > OBJECT_WIDTH_LIMIT),
|
|
3894
|
+
(key = getArrayKind(value)),
|
|
3895
|
+
key === PRIMITIVE_ARRAY || key === EMPTY_ARRAY)
|
|
3869
3896
|
) {
|
|
3870
|
-
value = JSON.stringify(
|
|
3897
|
+
value = JSON.stringify(
|
|
3898
|
+
typeName
|
|
3899
|
+
? value.slice(0, OBJECT_WIDTH_LIMIT).concat("\u2026")
|
|
3900
|
+
: value
|
|
3901
|
+
);
|
|
3871
3902
|
break;
|
|
3872
|
-
} else if (
|
|
3903
|
+
} else if (key === ENTRIES_ARRAY) {
|
|
3873
3904
|
properties.push([
|
|
3874
3905
|
prefix + "\u00a0\u00a0".repeat(indent) + propertyName,
|
|
3875
3906
|
""
|
|
3876
3907
|
]);
|
|
3877
3908
|
for (
|
|
3878
3909
|
propertyName = 0;
|
|
3879
|
-
propertyName < value.length
|
|
3910
|
+
propertyName < value.length &&
|
|
3911
|
+
propertyName < OBJECT_WIDTH_LIMIT;
|
|
3880
3912
|
propertyName++
|
|
3881
3913
|
)
|
|
3882
|
-
(
|
|
3914
|
+
(propKey = value[propertyName]),
|
|
3883
3915
|
addValueToProperties(
|
|
3884
|
-
|
|
3885
|
-
|
|
3916
|
+
propKey[0],
|
|
3917
|
+
propKey[1],
|
|
3886
3918
|
properties,
|
|
3887
3919
|
indent + 1,
|
|
3888
3920
|
prefix
|
|
3889
3921
|
);
|
|
3922
|
+
typeName &&
|
|
3923
|
+
addValueToProperties(
|
|
3924
|
+
OBJECT_WIDTH_LIMIT.toString(),
|
|
3925
|
+
"\u2026",
|
|
3926
|
+
properties,
|
|
3927
|
+
indent + 1,
|
|
3928
|
+
prefix
|
|
3929
|
+
);
|
|
3890
3930
|
return;
|
|
3891
3931
|
}
|
|
3892
|
-
if ("Promise" ===
|
|
3932
|
+
if ("Promise" === propKey) {
|
|
3893
3933
|
if ("fulfilled" === value.status) {
|
|
3894
3934
|
if (
|
|
3895
3935
|
((typeName = properties.length),
|
|
@@ -3929,13 +3969,13 @@
|
|
|
3929
3969
|
]);
|
|
3930
3970
|
return;
|
|
3931
3971
|
}
|
|
3932
|
-
"Object" ===
|
|
3933
|
-
(
|
|
3934
|
-
"function" === typeof
|
|
3935
|
-
(
|
|
3972
|
+
"Object" === propKey &&
|
|
3973
|
+
(typeName = Object.getPrototypeOf(value)) &&
|
|
3974
|
+
"function" === typeof typeName.constructor &&
|
|
3975
|
+
(propKey = typeName.constructor.name);
|
|
3936
3976
|
properties.push([
|
|
3937
3977
|
prefix + "\u00a0\u00a0".repeat(indent) + propertyName,
|
|
3938
|
-
"Object" ===
|
|
3978
|
+
"Object" === propKey ? (3 > indent ? "" : "\u2026") : propKey
|
|
3939
3979
|
]);
|
|
3940
3980
|
3 > indent &&
|
|
3941
3981
|
addObjectToProperties(value, properties, indent + 1, prefix);
|
|
@@ -3963,100 +4003,122 @@
|
|
|
3963
4003
|
]);
|
|
3964
4004
|
}
|
|
3965
4005
|
function addObjectDiffToProperties(prev, next, properties, indent) {
|
|
3966
|
-
var isDeeplyEqual = !0
|
|
3967
|
-
|
|
4006
|
+
var isDeeplyEqual = !0,
|
|
4007
|
+
prevPropertiesChecked = 0;
|
|
4008
|
+
for (key in prev) {
|
|
4009
|
+
if (prevPropertiesChecked > OBJECT_WIDTH_LIMIT) {
|
|
4010
|
+
properties.push([
|
|
4011
|
+
"Previous object has more than " +
|
|
4012
|
+
OBJECT_WIDTH_LIMIT +
|
|
4013
|
+
" properties. React will not attempt to diff objects with too many properties.",
|
|
4014
|
+
""
|
|
4015
|
+
]);
|
|
4016
|
+
isDeeplyEqual = !1;
|
|
4017
|
+
break;
|
|
4018
|
+
}
|
|
3968
4019
|
key in next ||
|
|
3969
4020
|
(properties.push([
|
|
3970
4021
|
REMOVED + "\u00a0\u00a0".repeat(indent) + key,
|
|
3971
4022
|
"\u2026"
|
|
3972
4023
|
]),
|
|
3973
4024
|
(isDeeplyEqual = !1));
|
|
3974
|
-
|
|
4025
|
+
prevPropertiesChecked++;
|
|
4026
|
+
}
|
|
4027
|
+
prevPropertiesChecked = 0;
|
|
4028
|
+
for (var _key in next) {
|
|
4029
|
+
if (prevPropertiesChecked > OBJECT_WIDTH_LIMIT) {
|
|
4030
|
+
properties.push([
|
|
4031
|
+
"Next object has more than " +
|
|
4032
|
+
OBJECT_WIDTH_LIMIT +
|
|
4033
|
+
" properties. React will not attempt to diff objects with too many properties.",
|
|
4034
|
+
""
|
|
4035
|
+
]);
|
|
4036
|
+
isDeeplyEqual = !1;
|
|
4037
|
+
break;
|
|
4038
|
+
}
|
|
3975
4039
|
if (_key in prev) {
|
|
3976
4040
|
var key = prev[_key];
|
|
3977
4041
|
var nextValue = next[_key];
|
|
3978
4042
|
if (key !== nextValue) {
|
|
3979
|
-
if (0 === indent && "children" === _key)
|
|
3980
|
-
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
|
|
3991
|
-
|
|
3992
|
-
|
|
3993
|
-
|
|
3994
|
-
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
}
|
|
4011
|
-
|
|
4012
|
-
|
|
4013
|
-
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4019
|
-
|
|
4020
|
-
|
|
4021
|
-
]
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4043
|
+
if (0 === indent && "children" === _key) {
|
|
4044
|
+
isDeeplyEqual = "\u00a0\u00a0".repeat(indent) + _key;
|
|
4045
|
+
properties.push(
|
|
4046
|
+
[REMOVED + isDeeplyEqual, "\u2026"],
|
|
4047
|
+
[ADDED + isDeeplyEqual, "\u2026"]
|
|
4048
|
+
);
|
|
4049
|
+
isDeeplyEqual = !1;
|
|
4050
|
+
continue;
|
|
4051
|
+
}
|
|
4052
|
+
if (!(3 <= indent))
|
|
4053
|
+
if (
|
|
4054
|
+
"object" === typeof key &&
|
|
4055
|
+
"object" === typeof nextValue &&
|
|
4056
|
+
null !== key &&
|
|
4057
|
+
null !== nextValue &&
|
|
4058
|
+
key.$$typeof === nextValue.$$typeof
|
|
4059
|
+
)
|
|
4060
|
+
if (nextValue.$$typeof === REACT_ELEMENT_TYPE) {
|
|
4061
|
+
if (
|
|
4062
|
+
key.type === nextValue.type &&
|
|
4063
|
+
key.key === nextValue.key
|
|
4064
|
+
) {
|
|
4065
|
+
key = getComponentNameFromType(nextValue.type) || "\u2026";
|
|
4066
|
+
isDeeplyEqual = "\u00a0\u00a0".repeat(indent) + _key;
|
|
4067
|
+
key = "<" + key + " \u2026 />";
|
|
4068
|
+
properties.push(
|
|
4069
|
+
[REMOVED + isDeeplyEqual, key],
|
|
4070
|
+
[ADDED + isDeeplyEqual, key]
|
|
4071
|
+
);
|
|
4072
|
+
isDeeplyEqual = !1;
|
|
4073
|
+
continue;
|
|
4074
|
+
}
|
|
4075
|
+
} else {
|
|
4076
|
+
var prevKind = Object.prototype.toString.call(key),
|
|
4077
|
+
nextKind = Object.prototype.toString.call(nextValue);
|
|
4078
|
+
if (
|
|
4079
|
+
prevKind === nextKind &&
|
|
4080
|
+
("[object Object]" === nextKind ||
|
|
4081
|
+
"[object Array]" === nextKind)
|
|
4082
|
+
) {
|
|
4083
|
+
prevKind = [
|
|
4084
|
+
UNCHANGED + "\u00a0\u00a0".repeat(indent) + _key,
|
|
4085
|
+
"[object Array]" === nextKind ? "Array" : ""
|
|
4086
|
+
];
|
|
4087
|
+
properties.push(prevKind);
|
|
4088
|
+
nextKind = properties.length;
|
|
4089
|
+
addObjectDiffToProperties(
|
|
4090
|
+
key,
|
|
4091
|
+
nextValue,
|
|
4092
|
+
properties,
|
|
4093
|
+
indent + 1
|
|
4094
|
+
)
|
|
4095
|
+
? nextKind === properties.length &&
|
|
4096
|
+
(prevKind[1] =
|
|
4097
|
+
"Referentially unequal but deeply equal objects. Consider memoization.")
|
|
4098
|
+
: (isDeeplyEqual = !1);
|
|
4099
|
+
continue;
|
|
4036
4100
|
}
|
|
4037
|
-
else if (
|
|
4038
|
-
"function" === typeof key &&
|
|
4039
|
-
"function" === typeof nextValue &&
|
|
4040
|
-
key.name === nextValue.name &&
|
|
4041
|
-
key.length === nextValue.length &&
|
|
4042
|
-
((prevKind = Function.prototype.toString.call(key)),
|
|
4043
|
-
(nextKind = Function.prototype.toString.call(nextValue)),
|
|
4044
|
-
prevKind === nextKind)
|
|
4045
|
-
) {
|
|
4046
|
-
key =
|
|
4047
|
-
"" === nextValue.name
|
|
4048
|
-
? "() => {}"
|
|
4049
|
-
: nextValue.name + "() {}";
|
|
4050
|
-
properties.push([
|
|
4051
|
-
UNCHANGED + "\u00a0\u00a0".repeat(indent) + _key,
|
|
4052
|
-
key +
|
|
4053
|
-
" Referentially unequal function closure. Consider memoization."
|
|
4054
|
-
]);
|
|
4055
|
-
continue;
|
|
4056
4101
|
}
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4102
|
+
else if (
|
|
4103
|
+
"function" === typeof key &&
|
|
4104
|
+
"function" === typeof nextValue &&
|
|
4105
|
+
key.name === nextValue.name &&
|
|
4106
|
+
key.length === nextValue.length &&
|
|
4107
|
+
((prevKind = Function.prototype.toString.call(key)),
|
|
4108
|
+
(nextKind = Function.prototype.toString.call(nextValue)),
|
|
4109
|
+
prevKind === nextKind)
|
|
4110
|
+
) {
|
|
4111
|
+
key =
|
|
4112
|
+
"" === nextValue.name ? "() => {}" : nextValue.name + "() {}";
|
|
4113
|
+
properties.push([
|
|
4114
|
+
UNCHANGED + "\u00a0\u00a0".repeat(indent) + _key,
|
|
4115
|
+
key +
|
|
4116
|
+
" Referentially unequal function closure. Consider memoization."
|
|
4117
|
+
]);
|
|
4118
|
+
continue;
|
|
4119
|
+
}
|
|
4120
|
+
addValueToProperties(_key, key, properties, indent, REMOVED);
|
|
4121
|
+
addValueToProperties(_key, nextValue, properties, indent, ADDED);
|
|
4060
4122
|
isDeeplyEqual = !1;
|
|
4061
4123
|
}
|
|
4062
4124
|
} else
|
|
@@ -4065,6 +4127,8 @@
|
|
|
4065
4127
|
"\u2026"
|
|
4066
4128
|
]),
|
|
4067
4129
|
(isDeeplyEqual = !1);
|
|
4130
|
+
prevPropertiesChecked++;
|
|
4131
|
+
}
|
|
4068
4132
|
return isDeeplyEqual;
|
|
4069
4133
|
}
|
|
4070
4134
|
function setCurrentTrackFromLanes(lanes) {
|
|
@@ -25570,6 +25634,7 @@
|
|
|
25570
25634
|
COMPLEX_ARRAY = 1,
|
|
25571
25635
|
PRIMITIVE_ARRAY = 2,
|
|
25572
25636
|
ENTRIES_ARRAY = 3,
|
|
25637
|
+
OBJECT_WIDTH_LIMIT = 100,
|
|
25573
25638
|
REMOVED = "\u2013\u00a0",
|
|
25574
25639
|
ADDED = "+\u00a0",
|
|
25575
25640
|
UNCHANGED = "\u2007\u00a0",
|
|
@@ -27983,11 +28048,11 @@
|
|
|
27983
28048
|
};
|
|
27984
28049
|
(function () {
|
|
27985
28050
|
var isomorphicReactPackageVersion = React.version;
|
|
27986
|
-
if ("19.3.0-canary-
|
|
28051
|
+
if ("19.3.0-canary-c7862584-20251006" !== isomorphicReactPackageVersion)
|
|
27987
28052
|
throw Error(
|
|
27988
28053
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
27989
28054
|
(isomorphicReactPackageVersion +
|
|
27990
|
-
"\n - react-dom: 19.3.0-canary-
|
|
28055
|
+
"\n - react-dom: 19.3.0-canary-c7862584-20251006\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
27991
28056
|
);
|
|
27992
28057
|
})();
|
|
27993
28058
|
("function" === typeof Map &&
|
|
@@ -28024,10 +28089,10 @@
|
|
|
28024
28089
|
!(function () {
|
|
28025
28090
|
var internals = {
|
|
28026
28091
|
bundleType: 1,
|
|
28027
|
-
version: "19.3.0-canary-
|
|
28092
|
+
version: "19.3.0-canary-c7862584-20251006",
|
|
28028
28093
|
rendererPackageName: "react-dom",
|
|
28029
28094
|
currentDispatcherRef: ReactSharedInternals,
|
|
28030
|
-
reconcilerVersion: "19.3.0-canary-
|
|
28095
|
+
reconcilerVersion: "19.3.0-canary-c7862584-20251006"
|
|
28031
28096
|
};
|
|
28032
28097
|
internals.overrideHookState = overrideHookState;
|
|
28033
28098
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
|
@@ -28495,7 +28560,7 @@
|
|
|
28495
28560
|
exports.useFormStatus = function () {
|
|
28496
28561
|
return resolveDispatcher().useHostTransitionStatus();
|
|
28497
28562
|
};
|
|
28498
|
-
exports.version = "19.3.0-canary-
|
|
28563
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
28499
28564
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
28500
28565
|
"function" ===
|
|
28501
28566
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -17770,14 +17770,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
|
17770
17770
|
};
|
|
17771
17771
|
var isomorphicReactPackageVersion$jscomp$inline_2138 = React.version;
|
|
17772
17772
|
if (
|
|
17773
|
-
"19.3.0-canary-
|
|
17773
|
+
"19.3.0-canary-c7862584-20251006" !==
|
|
17774
17774
|
isomorphicReactPackageVersion$jscomp$inline_2138
|
|
17775
17775
|
)
|
|
17776
17776
|
throw Error(
|
|
17777
17777
|
formatProdErrorMessage(
|
|
17778
17778
|
527,
|
|
17779
17779
|
isomorphicReactPackageVersion$jscomp$inline_2138,
|
|
17780
|
-
"19.3.0-canary-
|
|
17780
|
+
"19.3.0-canary-c7862584-20251006"
|
|
17781
17781
|
)
|
|
17782
17782
|
);
|
|
17783
17783
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
@@ -17799,10 +17799,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
|
17799
17799
|
};
|
|
17800
17800
|
var internals$jscomp$inline_2658 = {
|
|
17801
17801
|
bundleType: 0,
|
|
17802
|
-
version: "19.3.0-canary-
|
|
17802
|
+
version: "19.3.0-canary-c7862584-20251006",
|
|
17803
17803
|
rendererPackageName: "react-dom",
|
|
17804
17804
|
currentDispatcherRef: ReactSharedInternals,
|
|
17805
|
-
reconcilerVersion: "19.3.0-canary-
|
|
17805
|
+
reconcilerVersion: "19.3.0-canary-c7862584-20251006"
|
|
17806
17806
|
};
|
|
17807
17807
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
|
17808
17808
|
var hook$jscomp$inline_2659 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
@@ -18061,7 +18061,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
|
18061
18061
|
exports.useFormStatus = function () {
|
|
18062
18062
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
|
18063
18063
|
};
|
|
18064
|
-
exports.version = "19.3.0-canary-
|
|
18064
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
18065
18065
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
18066
18066
|
"function" ===
|
|
18067
18067
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -9874,5 +9874,5 @@
|
|
|
9874
9874
|
'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'
|
|
9875
9875
|
);
|
|
9876
9876
|
};
|
|
9877
|
-
exports.version = "19.3.0-canary-
|
|
9877
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
9878
9878
|
})();
|
|
@@ -6601,4 +6601,4 @@ exports.renderToString = function (children, options) {
|
|
|
6601
6601
|
'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'
|
|
6602
6602
|
);
|
|
6603
6603
|
};
|
|
6604
|
-
exports.version = "19.3.0-canary-
|
|
6604
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
@@ -9874,5 +9874,5 @@
|
|
|
9874
9874
|
'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'
|
|
9875
9875
|
);
|
|
9876
9876
|
};
|
|
9877
|
-
exports.version = "19.3.0-canary-
|
|
9877
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
9878
9878
|
})();
|
|
@@ -6690,4 +6690,4 @@ exports.renderToString = function (children, options) {
|
|
|
6690
6690
|
'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'
|
|
6691
6691
|
);
|
|
6692
6692
|
};
|
|
6693
|
-
exports.version = "19.3.0-canary-
|
|
6693
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
@@ -8785,11 +8785,11 @@
|
|
|
8785
8785
|
}
|
|
8786
8786
|
function ensureCorrectIsomorphicReactVersion() {
|
|
8787
8787
|
var isomorphicReactPackageVersion = React.version;
|
|
8788
|
-
if ("19.3.0-canary-
|
|
8788
|
+
if ("19.3.0-canary-c7862584-20251006" !== isomorphicReactPackageVersion)
|
|
8789
8789
|
throw Error(
|
|
8790
8790
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
8791
8791
|
(isomorphicReactPackageVersion +
|
|
8792
|
-
"\n - react-dom: 19.3.0-canary-
|
|
8792
|
+
"\n - react-dom: 19.3.0-canary-c7862584-20251006\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
8793
8793
|
);
|
|
8794
8794
|
}
|
|
8795
8795
|
var React = require("react"),
|
|
@@ -10598,5 +10598,5 @@
|
|
|
10598
10598
|
startWork(request);
|
|
10599
10599
|
});
|
|
10600
10600
|
};
|
|
10601
|
-
exports.version = "19.3.0-canary-
|
|
10601
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
10602
10602
|
})();
|
|
@@ -7148,12 +7148,12 @@ function getPostponedState(request) {
|
|
|
7148
7148
|
}
|
|
7149
7149
|
function ensureCorrectIsomorphicReactVersion() {
|
|
7150
7150
|
var isomorphicReactPackageVersion = React.version;
|
|
7151
|
-
if ("19.3.0-canary-
|
|
7151
|
+
if ("19.3.0-canary-c7862584-20251006" !== isomorphicReactPackageVersion)
|
|
7152
7152
|
throw Error(
|
|
7153
7153
|
formatProdErrorMessage(
|
|
7154
7154
|
527,
|
|
7155
7155
|
isomorphicReactPackageVersion,
|
|
7156
|
-
"19.3.0-canary-
|
|
7156
|
+
"19.3.0-canary-c7862584-20251006"
|
|
7157
7157
|
)
|
|
7158
7158
|
);
|
|
7159
7159
|
}
|
|
@@ -7408,4 +7408,4 @@ exports.resumeAndPrerender = function (children, postponedState, options) {
|
|
|
7408
7408
|
startWork(request);
|
|
7409
7409
|
});
|
|
7410
7410
|
};
|
|
7411
|
-
exports.version = "19.3.0-canary-
|
|
7411
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
@@ -9504,13 +9504,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
|
9504
9504
|
}
|
|
9505
9505
|
var isomorphicReactPackageVersion$jscomp$inline_766 = React.version;
|
|
9506
9506
|
if (
|
|
9507
|
-
"19.3.0-canary-
|
|
9507
|
+
"19.3.0-canary-c7862584-20251006" !==
|
|
9508
9508
|
isomorphicReactPackageVersion$jscomp$inline_766
|
|
9509
9509
|
)
|
|
9510
9510
|
throw Error(
|
|
9511
9511
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
9512
9512
|
(isomorphicReactPackageVersion$jscomp$inline_766 +
|
|
9513
|
-
"\n - react-dom: 19.3.0-canary-
|
|
9513
|
+
"\n - react-dom: 19.3.0-canary-c7862584-20251006\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
9514
9514
|
);
|
|
9515
9515
|
exports.renderToReadableStream = function (children, options) {
|
|
9516
9516
|
return new Promise(function (resolve, reject) {
|
|
@@ -9603,4 +9603,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
|
9603
9603
|
startWork(request$jscomp$0);
|
|
9604
9604
|
});
|
|
9605
9605
|
};
|
|
9606
|
-
exports.version = "19.3.0-canary-
|
|
9606
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
@@ -6646,13 +6646,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
|
6646
6646
|
}
|
|
6647
6647
|
var isomorphicReactPackageVersion$jscomp$inline_821 = React.version;
|
|
6648
6648
|
if (
|
|
6649
|
-
"19.3.0-canary-
|
|
6649
|
+
"19.3.0-canary-c7862584-20251006" !==
|
|
6650
6650
|
isomorphicReactPackageVersion$jscomp$inline_821
|
|
6651
6651
|
)
|
|
6652
6652
|
throw Error(
|
|
6653
6653
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
6654
6654
|
(isomorphicReactPackageVersion$jscomp$inline_821 +
|
|
6655
|
-
"\n - react-dom: 19.3.0-canary-
|
|
6655
|
+
"\n - react-dom: 19.3.0-canary-c7862584-20251006\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
6656
6656
|
);
|
|
6657
6657
|
exports.renderToReadableStream = function (children, options) {
|
|
6658
6658
|
return new Promise(function (resolve, reject) {
|
|
@@ -6743,4 +6743,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
|
6743
6743
|
startWork(request);
|
|
6744
6744
|
});
|
|
6745
6745
|
};
|
|
6746
|
-
exports.version = "19.3.0-canary-
|
|
6746
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
@@ -8808,11 +8808,11 @@
|
|
|
8808
8808
|
}
|
|
8809
8809
|
function ensureCorrectIsomorphicReactVersion() {
|
|
8810
8810
|
var isomorphicReactPackageVersion = React.version;
|
|
8811
|
-
if ("19.3.0-canary-
|
|
8811
|
+
if ("19.3.0-canary-c7862584-20251006" !== isomorphicReactPackageVersion)
|
|
8812
8812
|
throw Error(
|
|
8813
8813
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
8814
8814
|
(isomorphicReactPackageVersion +
|
|
8815
|
-
"\n - react-dom: 19.3.0-canary-
|
|
8815
|
+
"\n - react-dom: 19.3.0-canary-c7862584-20251006\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
8816
8816
|
);
|
|
8817
8817
|
}
|
|
8818
8818
|
var React = require("react"),
|
|
@@ -10617,5 +10617,5 @@
|
|
|
10617
10617
|
startWork(request);
|
|
10618
10618
|
});
|
|
10619
10619
|
};
|
|
10620
|
-
exports.version = "19.3.0-canary-
|
|
10620
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
10621
10621
|
})();
|
|
@@ -7252,11 +7252,11 @@ function getPostponedState(request) {
|
|
|
7252
7252
|
}
|
|
7253
7253
|
function ensureCorrectIsomorphicReactVersion() {
|
|
7254
7254
|
var isomorphicReactPackageVersion = React.version;
|
|
7255
|
-
if ("19.3.0-canary-
|
|
7255
|
+
if ("19.3.0-canary-c7862584-20251006" !== isomorphicReactPackageVersion)
|
|
7256
7256
|
throw Error(
|
|
7257
7257
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
7258
7258
|
(isomorphicReactPackageVersion +
|
|
7259
|
-
"\n - react-dom: 19.3.0-canary-
|
|
7259
|
+
"\n - react-dom: 19.3.0-canary-c7862584-20251006\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
7260
7260
|
);
|
|
7261
7261
|
}
|
|
7262
7262
|
ensureCorrectIsomorphicReactVersion();
|
|
@@ -7510,4 +7510,4 @@ exports.resumeAndPrerender = function (children, postponedState, options) {
|
|
|
7510
7510
|
startWork(request);
|
|
7511
7511
|
});
|
|
7512
7512
|
};
|
|
7513
|
-
exports.version = "19.3.0-canary-
|
|
7513
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
@@ -8682,11 +8682,11 @@
|
|
|
8682
8682
|
}
|
|
8683
8683
|
function ensureCorrectIsomorphicReactVersion() {
|
|
8684
8684
|
var isomorphicReactPackageVersion = React.version;
|
|
8685
|
-
if ("19.3.0-canary-
|
|
8685
|
+
if ("19.3.0-canary-c7862584-20251006" !== isomorphicReactPackageVersion)
|
|
8686
8686
|
throw Error(
|
|
8687
8687
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
8688
8688
|
(isomorphicReactPackageVersion +
|
|
8689
|
-
"\n - react-dom: 19.3.0-canary-
|
|
8689
|
+
"\n - react-dom: 19.3.0-canary-c7862584-20251006\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
8690
8690
|
);
|
|
8691
8691
|
}
|
|
8692
8692
|
function createDrainHandler(destination, request) {
|
|
@@ -10799,5 +10799,5 @@
|
|
|
10799
10799
|
}
|
|
10800
10800
|
};
|
|
10801
10801
|
};
|
|
10802
|
-
exports.version = "19.3.0-canary-
|
|
10802
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
10803
10803
|
})();
|
|
@@ -7143,11 +7143,11 @@ function getPostponedState(request) {
|
|
|
7143
7143
|
}
|
|
7144
7144
|
function ensureCorrectIsomorphicReactVersion() {
|
|
7145
7145
|
var isomorphicReactPackageVersion = React.version;
|
|
7146
|
-
if ("19.3.0-canary-
|
|
7146
|
+
if ("19.3.0-canary-c7862584-20251006" !== isomorphicReactPackageVersion)
|
|
7147
7147
|
throw Error(
|
|
7148
7148
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
7149
7149
|
(isomorphicReactPackageVersion +
|
|
7150
|
-
"\n - react-dom: 19.3.0-canary-
|
|
7150
|
+
"\n - react-dom: 19.3.0-canary-c7862584-20251006\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
7151
7151
|
);
|
|
7152
7152
|
}
|
|
7153
7153
|
ensureCorrectIsomorphicReactVersion();
|
|
@@ -7705,4 +7705,4 @@ exports.resumeToPipeableStream = function (children, postponedState, options) {
|
|
|
7705
7705
|
}
|
|
7706
7706
|
};
|
|
7707
7707
|
};
|
|
7708
|
-
exports.version = "19.3.0-canary-
|
|
7708
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
@@ -416,7 +416,7 @@
|
|
|
416
416
|
exports.useFormStatus = function () {
|
|
417
417
|
return resolveDispatcher().useHostTransitionStatus();
|
|
418
418
|
};
|
|
419
|
-
exports.version = "19.3.0-canary-
|
|
419
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
|
420
420
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
421
421
|
"function" ===
|
|
422
422
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -207,4 +207,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
|
207
207
|
exports.useFormStatus = function () {
|
|
208
208
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
|
209
209
|
};
|
|
210
|
-
exports.version = "19.3.0-canary-
|
|
210
|
+
exports.version = "19.3.0-canary-c7862584-20251006";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-dom",
|
|
3
|
-
"version": "19.3.0-canary-
|
|
3
|
+
"version": "19.3.0-canary-c7862584-20251006",
|
|
4
4
|
"description": "React package for working with the DOM.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://react.dev/",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"scheduler": "0.28.0-canary-
|
|
20
|
+
"scheduler": "0.28.0-canary-c7862584-20251006"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"react": "19.3.0-canary-
|
|
23
|
+
"react": "19.3.0-canary-c7862584-20251006"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"LICENSE",
|