react-dom 19.0.0-rc-b01722d5-20241114 → 19.0.0-rc-e1ef8c95-20241115
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 +20 -28
- package/cjs/react-dom-client.production.js +163 -171
- package/cjs/react-dom-profiling.development.js +20 -28
- package/cjs/react-dom-profiling.profiling.js +166 -174
- 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
@@ -2088,19 +2088,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) {
|
|
2088
2088
|
}
|
2089
2089
|
var isInputEventSupported = !1;
|
2090
2090
|
if (canUseDOM) {
|
2091
|
-
var JSCompiler_inline_result$jscomp$
|
2091
|
+
var JSCompiler_inline_result$jscomp$298;
|
2092
2092
|
if (canUseDOM) {
|
2093
|
-
var isSupported$jscomp$
|
2094
|
-
if (!isSupported$jscomp$
|
2095
|
-
var element$jscomp$
|
2096
|
-
element$jscomp$
|
2097
|
-
isSupported$jscomp$
|
2098
|
-
"function" === typeof element$jscomp$
|
2093
|
+
var isSupported$jscomp$inline_434 = "oninput" in document;
|
2094
|
+
if (!isSupported$jscomp$inline_434) {
|
2095
|
+
var element$jscomp$inline_435 = document.createElement("div");
|
2096
|
+
element$jscomp$inline_435.setAttribute("oninput", "return;");
|
2097
|
+
isSupported$jscomp$inline_434 =
|
2098
|
+
"function" === typeof element$jscomp$inline_435.oninput;
|
2099
2099
|
}
|
2100
|
-
JSCompiler_inline_result$jscomp$
|
2101
|
-
} else JSCompiler_inline_result$jscomp$
|
2100
|
+
JSCompiler_inline_result$jscomp$298 = isSupported$jscomp$inline_434;
|
2101
|
+
} else JSCompiler_inline_result$jscomp$298 = !1;
|
2102
2102
|
isInputEventSupported =
|
2103
|
-
JSCompiler_inline_result$jscomp$
|
2103
|
+
JSCompiler_inline_result$jscomp$298 &&
|
2104
2104
|
(!document.documentMode || 9 < document.documentMode);
|
2105
2105
|
}
|
2106
2106
|
function stopWatchingForValueChange() {
|
@@ -10814,14 +10814,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
|
10814
10814
|
!shouldTimeSlice &&
|
10815
10815
|
markRootSuspended(root$jscomp$0, lanes, 0, !1);
|
10816
10816
|
break;
|
10817
|
-
} else
|
10818
|
-
markRootSuspended(
|
10819
|
-
root$jscomp$0,
|
10820
|
-
lanes,
|
10821
|
-
0,
|
10822
|
-
!workInProgressRootDidSkipSuspendedSiblings
|
10823
|
-
);
|
10824
|
-
else {
|
10817
|
+
} else {
|
10825
10818
|
forceSync = root$jscomp$0.current.alternate;
|
10826
10819
|
if (
|
10827
10820
|
renderWasConcurrent &&
|
@@ -10890,16 +10883,15 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
|
10890
10883
|
case 1:
|
10891
10884
|
throw Error(formatProdErrorMessage(345));
|
10892
10885
|
case 4:
|
10893
|
-
if ((lanes & 4194176)
|
10894
|
-
|
10895
|
-
|
10896
|
-
|
10897
|
-
|
10898
|
-
|
10899
|
-
|
10900
|
-
|
10901
|
-
|
10902
|
-
break;
|
10886
|
+
if ((lanes & 4194176) !== lanes) break;
|
10887
|
+
case 6:
|
10888
|
+
markRootSuspended(
|
10889
|
+
shouldTimeSlice,
|
10890
|
+
lanes,
|
10891
|
+
workInProgressDeferredLane,
|
10892
|
+
!workInProgressRootDidSkipSuspendedSiblings
|
10893
|
+
);
|
10894
|
+
break a;
|
10903
10895
|
case 2:
|
10904
10896
|
workInProgressRootRecoverableErrors = null;
|
10905
10897
|
break;
|
@@ -11285,8 +11277,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
|
11285
11277
|
workLoopSync();
|
11286
11278
|
memoizedUpdaters = workInProgressRootExitStatus;
|
11287
11279
|
break;
|
11288
|
-
} catch (thrownValue$
|
11289
|
-
handleThrow(root, thrownValue$
|
11280
|
+
} catch (thrownValue$178) {
|
11281
|
+
handleThrow(root, thrownValue$178);
|
11290
11282
|
}
|
11291
11283
|
while (1);
|
11292
11284
|
lanes && root.shellSuspendCounter++;
|
@@ -11407,8 +11399,8 @@ function renderRootConcurrent(root, lanes) {
|
|
11407
11399
|
}
|
11408
11400
|
workLoopConcurrent();
|
11409
11401
|
break;
|
11410
|
-
} catch (thrownValue$
|
11411
|
-
handleThrow(root, thrownValue$
|
11402
|
+
} catch (thrownValue$180) {
|
11403
|
+
handleThrow(root, thrownValue$180);
|
11412
11404
|
}
|
11413
11405
|
while (1);
|
11414
11406
|
lastContextDependency = currentlyRenderingFiber = null;
|
@@ -11752,7 +11744,7 @@ function releaseRootPooledCache(root, remainingLanes) {
|
|
11752
11744
|
}
|
11753
11745
|
function flushPassiveEffects() {
|
11754
11746
|
if (null !== rootWithPendingPassiveEffects) {
|
11755
|
-
var root$
|
11747
|
+
var root$184 = rootWithPendingPassiveEffects,
|
11756
11748
|
remainingLanes = pendingPassiveEffectsRemainingLanes;
|
11757
11749
|
pendingPassiveEffectsRemainingLanes = 0;
|
11758
11750
|
var renderPriority = lanesToEventPriority(pendingPassiveEffectsLanes),
|
@@ -11802,7 +11794,7 @@ function flushPassiveEffects() {
|
|
11802
11794
|
} finally {
|
11803
11795
|
(ReactDOMSharedInternals.p = previousPriority),
|
11804
11796
|
(ReactSharedInternals.T = prevTransition),
|
11805
|
-
releaseRootPooledCache(root$
|
11797
|
+
releaseRootPooledCache(root$184, remainingLanes);
|
11806
11798
|
}
|
11807
11799
|
}
|
11808
11800
|
return !1;
|
@@ -11952,14 +11944,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
|
11952
11944
|
isFlushingWork = !0;
|
11953
11945
|
do {
|
11954
11946
|
var didPerformSomeWork = !1;
|
11955
|
-
for (var root$
|
11947
|
+
for (var root$186 = firstScheduledRoot; null !== root$186; ) {
|
11956
11948
|
if (!onlyLegacy)
|
11957
11949
|
if (0 !== syncTransitionLanes) {
|
11958
|
-
var pendingLanes = root$
|
11950
|
+
var pendingLanes = root$186.pendingLanes;
|
11959
11951
|
if (0 === pendingLanes) var JSCompiler_inline_result = 0;
|
11960
11952
|
else {
|
11961
|
-
var suspendedLanes = root$
|
11962
|
-
pingedLanes = root$
|
11953
|
+
var suspendedLanes = root$186.suspendedLanes,
|
11954
|
+
pingedLanes = root$186.pingedLanes;
|
11963
11955
|
JSCompiler_inline_result =
|
11964
11956
|
(1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
|
11965
11957
|
JSCompiler_inline_result &=
|
@@ -11973,18 +11965,18 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
|
11973
11965
|
}
|
11974
11966
|
0 !== JSCompiler_inline_result &&
|
11975
11967
|
((didPerformSomeWork = !0),
|
11976
|
-
performSyncWorkOnRoot(root$
|
11968
|
+
performSyncWorkOnRoot(root$186, JSCompiler_inline_result));
|
11977
11969
|
} else
|
11978
11970
|
(JSCompiler_inline_result = workInProgressRootRenderLanes),
|
11979
11971
|
(JSCompiler_inline_result = getNextLanes(
|
11980
|
-
root$
|
11981
|
-
root$
|
11972
|
+
root$186,
|
11973
|
+
root$186 === workInProgressRoot ? JSCompiler_inline_result : 0
|
11982
11974
|
)),
|
11983
11975
|
0 === (JSCompiler_inline_result & 3) ||
|
11984
|
-
checkIfRootIsPrerendering(root$
|
11976
|
+
checkIfRootIsPrerendering(root$186, JSCompiler_inline_result) ||
|
11985
11977
|
((didPerformSomeWork = !0),
|
11986
|
-
performSyncWorkOnRoot(root$
|
11987
|
-
root$
|
11978
|
+
performSyncWorkOnRoot(root$186, JSCompiler_inline_result));
|
11979
|
+
root$186 = root$186.next;
|
11988
11980
|
}
|
11989
11981
|
} while (didPerformSomeWork);
|
11990
11982
|
isFlushingWork = !1;
|
@@ -12215,20 +12207,20 @@ function extractEvents$1(
|
|
12215
12207
|
}
|
12216
12208
|
}
|
12217
12209
|
for (
|
12218
|
-
var i$jscomp$
|
12219
|
-
i$jscomp$
|
12220
|
-
i$jscomp$
|
12210
|
+
var i$jscomp$inline_1527 = 0;
|
12211
|
+
i$jscomp$inline_1527 < simpleEventPluginEvents.length;
|
12212
|
+
i$jscomp$inline_1527++
|
12221
12213
|
) {
|
12222
|
-
var eventName$jscomp$
|
12223
|
-
simpleEventPluginEvents[i$jscomp$
|
12224
|
-
domEventName$jscomp$
|
12225
|
-
eventName$jscomp$
|
12226
|
-
capitalizedEvent$jscomp$
|
12227
|
-
eventName$jscomp$
|
12228
|
-
eventName$jscomp$
|
12214
|
+
var eventName$jscomp$inline_1528 =
|
12215
|
+
simpleEventPluginEvents[i$jscomp$inline_1527],
|
12216
|
+
domEventName$jscomp$inline_1529 =
|
12217
|
+
eventName$jscomp$inline_1528.toLowerCase(),
|
12218
|
+
capitalizedEvent$jscomp$inline_1530 =
|
12219
|
+
eventName$jscomp$inline_1528[0].toUpperCase() +
|
12220
|
+
eventName$jscomp$inline_1528.slice(1);
|
12229
12221
|
registerSimpleEvent(
|
12230
|
-
domEventName$jscomp$
|
12231
|
-
"on" + capitalizedEvent$jscomp$
|
12222
|
+
domEventName$jscomp$inline_1529,
|
12223
|
+
"on" + capitalizedEvent$jscomp$inline_1530
|
12232
12224
|
);
|
12233
12225
|
}
|
12234
12226
|
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
@@ -13411,34 +13403,34 @@ function setInitialProperties(domElement, tag, props) {
|
|
13411
13403
|
defaultChecked = null;
|
13412
13404
|
for (hasSrc in props)
|
13413
13405
|
if (props.hasOwnProperty(hasSrc)) {
|
13414
|
-
var propValue$
|
13415
|
-
if (null != propValue$
|
13406
|
+
var propValue$200 = props[hasSrc];
|
13407
|
+
if (null != propValue$200)
|
13416
13408
|
switch (hasSrc) {
|
13417
13409
|
case "name":
|
13418
|
-
hasSrcSet = propValue$
|
13410
|
+
hasSrcSet = propValue$200;
|
13419
13411
|
break;
|
13420
13412
|
case "type":
|
13421
|
-
propValue = propValue$
|
13413
|
+
propValue = propValue$200;
|
13422
13414
|
break;
|
13423
13415
|
case "checked":
|
13424
|
-
checked = propValue$
|
13416
|
+
checked = propValue$200;
|
13425
13417
|
break;
|
13426
13418
|
case "defaultChecked":
|
13427
|
-
defaultChecked = propValue$
|
13419
|
+
defaultChecked = propValue$200;
|
13428
13420
|
break;
|
13429
13421
|
case "value":
|
13430
|
-
propKey = propValue$
|
13422
|
+
propKey = propValue$200;
|
13431
13423
|
break;
|
13432
13424
|
case "defaultValue":
|
13433
|
-
defaultValue = propValue$
|
13425
|
+
defaultValue = propValue$200;
|
13434
13426
|
break;
|
13435
13427
|
case "children":
|
13436
13428
|
case "dangerouslySetInnerHTML":
|
13437
|
-
if (null != propValue$
|
13429
|
+
if (null != propValue$200)
|
13438
13430
|
throw Error(formatProdErrorMessage(137, tag));
|
13439
13431
|
break;
|
13440
13432
|
default:
|
13441
|
-
setProp(domElement, tag, hasSrc, propValue$
|
13433
|
+
setProp(domElement, tag, hasSrc, propValue$200, props, null);
|
13442
13434
|
}
|
13443
13435
|
}
|
13444
13436
|
initInput(
|
@@ -13575,14 +13567,14 @@ function setInitialProperties(domElement, tag, props) {
|
|
13575
13567
|
return;
|
13576
13568
|
default:
|
13577
13569
|
if (isCustomElement(tag)) {
|
13578
|
-
for (propValue$
|
13579
|
-
props.hasOwnProperty(propValue$
|
13580
|
-
((hasSrc = props[propValue$
|
13570
|
+
for (propValue$200 in props)
|
13571
|
+
props.hasOwnProperty(propValue$200) &&
|
13572
|
+
((hasSrc = props[propValue$200]),
|
13581
13573
|
void 0 !== hasSrc &&
|
13582
13574
|
setPropOnCustomElement(
|
13583
13575
|
domElement,
|
13584
13576
|
tag,
|
13585
|
-
propValue$
|
13577
|
+
propValue$200,
|
13586
13578
|
hasSrc,
|
13587
13579
|
props,
|
13588
13580
|
void 0
|
@@ -13630,14 +13622,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13630
13622
|
setProp(domElement, tag, propKey, null, nextProps, lastProp);
|
13631
13623
|
}
|
13632
13624
|
}
|
13633
|
-
for (var propKey$
|
13634
|
-
var propKey = nextProps[propKey$
|
13635
|
-
lastProp = lastProps[propKey$
|
13625
|
+
for (var propKey$217 in nextProps) {
|
13626
|
+
var propKey = nextProps[propKey$217];
|
13627
|
+
lastProp = lastProps[propKey$217];
|
13636
13628
|
if (
|
13637
|
-
nextProps.hasOwnProperty(propKey$
|
13629
|
+
nextProps.hasOwnProperty(propKey$217) &&
|
13638
13630
|
(null != propKey || null != lastProp)
|
13639
13631
|
)
|
13640
|
-
switch (propKey$
|
13632
|
+
switch (propKey$217) {
|
13641
13633
|
case "type":
|
13642
13634
|
type = propKey;
|
13643
13635
|
break;
|
@@ -13666,7 +13658,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13666
13658
|
setProp(
|
13667
13659
|
domElement,
|
13668
13660
|
tag,
|
13669
|
-
propKey$
|
13661
|
+
propKey$217,
|
13670
13662
|
propKey,
|
13671
13663
|
nextProps,
|
13672
13664
|
lastProp
|
@@ -13685,7 +13677,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13685
13677
|
);
|
13686
13678
|
return;
|
13687
13679
|
case "select":
|
13688
|
-
propKey = value = defaultValue = propKey$
|
13680
|
+
propKey = value = defaultValue = propKey$217 = null;
|
13689
13681
|
for (type in lastProps)
|
13690
13682
|
if (
|
13691
13683
|
((lastDefaultValue = lastProps[type]),
|
@@ -13716,7 +13708,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13716
13708
|
)
|
13717
13709
|
switch (name) {
|
13718
13710
|
case "value":
|
13719
|
-
propKey$
|
13711
|
+
propKey$217 = type;
|
13720
13712
|
break;
|
13721
13713
|
case "defaultValue":
|
13722
13714
|
defaultValue = type;
|
@@ -13737,15 +13729,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13737
13729
|
tag = defaultValue;
|
13738
13730
|
lastProps = value;
|
13739
13731
|
nextProps = propKey;
|
13740
|
-
null != propKey$
|
13741
|
-
? updateOptions(domElement, !!lastProps, propKey$
|
13732
|
+
null != propKey$217
|
13733
|
+
? updateOptions(domElement, !!lastProps, propKey$217, !1)
|
13742
13734
|
: !!nextProps !== !!lastProps &&
|
13743
13735
|
(null != tag
|
13744
13736
|
? updateOptions(domElement, !!lastProps, tag, !0)
|
13745
13737
|
: updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1));
|
13746
13738
|
return;
|
13747
13739
|
case "textarea":
|
13748
|
-
propKey = propKey$
|
13740
|
+
propKey = propKey$217 = null;
|
13749
13741
|
for (defaultValue in lastProps)
|
13750
13742
|
if (
|
13751
13743
|
((name = lastProps[defaultValue]),
|
@@ -13769,7 +13761,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13769
13761
|
)
|
13770
13762
|
switch (value) {
|
13771
13763
|
case "value":
|
13772
|
-
propKey$
|
13764
|
+
propKey$217 = name;
|
13773
13765
|
break;
|
13774
13766
|
case "defaultValue":
|
13775
13767
|
propKey = name;
|
@@ -13783,17 +13775,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13783
13775
|
name !== type &&
|
13784
13776
|
setProp(domElement, tag, value, name, nextProps, type);
|
13785
13777
|
}
|
13786
|
-
updateTextarea(domElement, propKey$
|
13778
|
+
updateTextarea(domElement, propKey$217, propKey);
|
13787
13779
|
return;
|
13788
13780
|
case "option":
|
13789
|
-
for (var propKey$
|
13781
|
+
for (var propKey$233 in lastProps)
|
13790
13782
|
if (
|
13791
|
-
((propKey$
|
13792
|
-
lastProps.hasOwnProperty(propKey$
|
13793
|
-
null != propKey$
|
13794
|
-
!nextProps.hasOwnProperty(propKey$
|
13783
|
+
((propKey$217 = lastProps[propKey$233]),
|
13784
|
+
lastProps.hasOwnProperty(propKey$233) &&
|
13785
|
+
null != propKey$217 &&
|
13786
|
+
!nextProps.hasOwnProperty(propKey$233))
|
13795
13787
|
)
|
13796
|
-
switch (propKey$
|
13788
|
+
switch (propKey$233) {
|
13797
13789
|
case "selected":
|
13798
13790
|
domElement.selected = !1;
|
13799
13791
|
break;
|
@@ -13801,33 +13793,33 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13801
13793
|
setProp(
|
13802
13794
|
domElement,
|
13803
13795
|
tag,
|
13804
|
-
propKey$
|
13796
|
+
propKey$233,
|
13805
13797
|
null,
|
13806
13798
|
nextProps,
|
13807
|
-
propKey$
|
13799
|
+
propKey$217
|
13808
13800
|
);
|
13809
13801
|
}
|
13810
13802
|
for (lastDefaultValue in nextProps)
|
13811
13803
|
if (
|
13812
|
-
((propKey$
|
13804
|
+
((propKey$217 = nextProps[lastDefaultValue]),
|
13813
13805
|
(propKey = lastProps[lastDefaultValue]),
|
13814
13806
|
nextProps.hasOwnProperty(lastDefaultValue) &&
|
13815
|
-
propKey$
|
13816
|
-
(null != propKey$
|
13807
|
+
propKey$217 !== propKey &&
|
13808
|
+
(null != propKey$217 || null != propKey))
|
13817
13809
|
)
|
13818
13810
|
switch (lastDefaultValue) {
|
13819
13811
|
case "selected":
|
13820
13812
|
domElement.selected =
|
13821
|
-
propKey$
|
13822
|
-
"function" !== typeof propKey$
|
13823
|
-
"symbol" !== typeof propKey$
|
13813
|
+
propKey$217 &&
|
13814
|
+
"function" !== typeof propKey$217 &&
|
13815
|
+
"symbol" !== typeof propKey$217;
|
13824
13816
|
break;
|
13825
13817
|
default:
|
13826
13818
|
setProp(
|
13827
13819
|
domElement,
|
13828
13820
|
tag,
|
13829
13821
|
lastDefaultValue,
|
13830
|
-
propKey$
|
13822
|
+
propKey$217,
|
13831
13823
|
nextProps,
|
13832
13824
|
propKey
|
13833
13825
|
);
|
@@ -13848,24 +13840,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13848
13840
|
case "track":
|
13849
13841
|
case "wbr":
|
13850
13842
|
case "menuitem":
|
13851
|
-
for (var propKey$
|
13852
|
-
(propKey$
|
13853
|
-
lastProps.hasOwnProperty(propKey$
|
13854
|
-
null != propKey$
|
13855
|
-
!nextProps.hasOwnProperty(propKey$
|
13856
|
-
setProp(domElement, tag, propKey$
|
13843
|
+
for (var propKey$238 in lastProps)
|
13844
|
+
(propKey$217 = lastProps[propKey$238]),
|
13845
|
+
lastProps.hasOwnProperty(propKey$238) &&
|
13846
|
+
null != propKey$217 &&
|
13847
|
+
!nextProps.hasOwnProperty(propKey$238) &&
|
13848
|
+
setProp(domElement, tag, propKey$238, null, nextProps, propKey$217);
|
13857
13849
|
for (checked in nextProps)
|
13858
13850
|
if (
|
13859
|
-
((propKey$
|
13851
|
+
((propKey$217 = nextProps[checked]),
|
13860
13852
|
(propKey = lastProps[checked]),
|
13861
13853
|
nextProps.hasOwnProperty(checked) &&
|
13862
|
-
propKey$
|
13863
|
-
(null != propKey$
|
13854
|
+
propKey$217 !== propKey &&
|
13855
|
+
(null != propKey$217 || null != propKey))
|
13864
13856
|
)
|
13865
13857
|
switch (checked) {
|
13866
13858
|
case "children":
|
13867
13859
|
case "dangerouslySetInnerHTML":
|
13868
|
-
if (null != propKey$
|
13860
|
+
if (null != propKey$217)
|
13869
13861
|
throw Error(formatProdErrorMessage(137, tag));
|
13870
13862
|
break;
|
13871
13863
|
default:
|
@@ -13873,7 +13865,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13873
13865
|
domElement,
|
13874
13866
|
tag,
|
13875
13867
|
checked,
|
13876
|
-
propKey$
|
13868
|
+
propKey$217,
|
13877
13869
|
nextProps,
|
13878
13870
|
propKey
|
13879
13871
|
);
|
@@ -13881,49 +13873,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13881
13873
|
return;
|
13882
13874
|
default:
|
13883
13875
|
if (isCustomElement(tag)) {
|
13884
|
-
for (var propKey$
|
13885
|
-
(propKey$
|
13886
|
-
lastProps.hasOwnProperty(propKey$
|
13887
|
-
void 0 !== propKey$
|
13888
|
-
!nextProps.hasOwnProperty(propKey$
|
13876
|
+
for (var propKey$243 in lastProps)
|
13877
|
+
(propKey$217 = lastProps[propKey$243]),
|
13878
|
+
lastProps.hasOwnProperty(propKey$243) &&
|
13879
|
+
void 0 !== propKey$217 &&
|
13880
|
+
!nextProps.hasOwnProperty(propKey$243) &&
|
13889
13881
|
setPropOnCustomElement(
|
13890
13882
|
domElement,
|
13891
13883
|
tag,
|
13892
|
-
propKey$
|
13884
|
+
propKey$243,
|
13893
13885
|
void 0,
|
13894
13886
|
nextProps,
|
13895
|
-
propKey$
|
13887
|
+
propKey$217
|
13896
13888
|
);
|
13897
13889
|
for (defaultChecked in nextProps)
|
13898
|
-
(propKey$
|
13890
|
+
(propKey$217 = nextProps[defaultChecked]),
|
13899
13891
|
(propKey = lastProps[defaultChecked]),
|
13900
13892
|
!nextProps.hasOwnProperty(defaultChecked) ||
|
13901
|
-
propKey$
|
13902
|
-
(void 0 === propKey$
|
13893
|
+
propKey$217 === propKey ||
|
13894
|
+
(void 0 === propKey$217 && void 0 === propKey) ||
|
13903
13895
|
setPropOnCustomElement(
|
13904
13896
|
domElement,
|
13905
13897
|
tag,
|
13906
13898
|
defaultChecked,
|
13907
|
-
propKey$
|
13899
|
+
propKey$217,
|
13908
13900
|
nextProps,
|
13909
13901
|
propKey
|
13910
13902
|
);
|
13911
13903
|
return;
|
13912
13904
|
}
|
13913
13905
|
}
|
13914
|
-
for (var propKey$
|
13915
|
-
(propKey$
|
13916
|
-
lastProps.hasOwnProperty(propKey$
|
13917
|
-
null != propKey$
|
13918
|
-
!nextProps.hasOwnProperty(propKey$
|
13919
|
-
setProp(domElement, tag, propKey$
|
13906
|
+
for (var propKey$248 in lastProps)
|
13907
|
+
(propKey$217 = lastProps[propKey$248]),
|
13908
|
+
lastProps.hasOwnProperty(propKey$248) &&
|
13909
|
+
null != propKey$217 &&
|
13910
|
+
!nextProps.hasOwnProperty(propKey$248) &&
|
13911
|
+
setProp(domElement, tag, propKey$248, null, nextProps, propKey$217);
|
13920
13912
|
for (lastProp in nextProps)
|
13921
|
-
(propKey$
|
13913
|
+
(propKey$217 = nextProps[lastProp]),
|
13922
13914
|
(propKey = lastProps[lastProp]),
|
13923
13915
|
!nextProps.hasOwnProperty(lastProp) ||
|
13924
|
-
propKey$
|
13925
|
-
(null == propKey$
|
13926
|
-
setProp(domElement, tag, lastProp, propKey$
|
13916
|
+
propKey$217 === propKey ||
|
13917
|
+
(null == propKey$217 && null == propKey) ||
|
13918
|
+
setProp(domElement, tag, lastProp, propKey$217, nextProps, propKey);
|
13927
13919
|
}
|
13928
13920
|
var eventsEnabled = null,
|
13929
13921
|
selectionInformation = null;
|
@@ -14468,26 +14460,26 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
|
14468
14460
|
"string" === typeof pendingProps.precedence
|
14469
14461
|
) {
|
14470
14462
|
type = getStyleKey(pendingProps.href);
|
14471
|
-
var styles$
|
14463
|
+
var styles$256 = getResourcesFromRoot(
|
14472
14464
|
JSCompiler_inline_result
|
14473
14465
|
).hoistableStyles,
|
14474
|
-
resource$
|
14475
|
-
resource$
|
14466
|
+
resource$257 = styles$256.get(type);
|
14467
|
+
resource$257 ||
|
14476
14468
|
((JSCompiler_inline_result =
|
14477
14469
|
JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result),
|
14478
|
-
(resource$
|
14470
|
+
(resource$257 = {
|
14479
14471
|
type: "stylesheet",
|
14480
14472
|
instance: null,
|
14481
14473
|
count: 0,
|
14482
14474
|
state: { loading: 0, preload: null }
|
14483
14475
|
}),
|
14484
|
-
styles$
|
14485
|
-
(styles$
|
14476
|
+
styles$256.set(type, resource$257),
|
14477
|
+
(styles$256 = JSCompiler_inline_result.querySelector(
|
14486
14478
|
getStylesheetSelectorFromKey(type)
|
14487
14479
|
)) &&
|
14488
|
-
!styles$
|
14489
|
-
((resource$
|
14490
|
-
(resource$
|
14480
|
+
!styles$256._p &&
|
14481
|
+
((resource$257.instance = styles$256),
|
14482
|
+
(resource$257.state.loading = 5)),
|
14491
14483
|
preloadPropsMap.has(type) ||
|
14492
14484
|
((pendingProps = {
|
14493
14485
|
rel: "preload",
|
@@ -14500,16 +14492,16 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
|
14500
14492
|
referrerPolicy: pendingProps.referrerPolicy
|
14501
14493
|
}),
|
14502
14494
|
preloadPropsMap.set(type, pendingProps),
|
14503
|
-
styles$
|
14495
|
+
styles$256 ||
|
14504
14496
|
preloadStylesheet(
|
14505
14497
|
JSCompiler_inline_result,
|
14506
14498
|
type,
|
14507
14499
|
pendingProps,
|
14508
|
-
resource$
|
14500
|
+
resource$257.state
|
14509
14501
|
)));
|
14510
14502
|
if (currentProps && null === currentResource)
|
14511
14503
|
throw Error(formatProdErrorMessage(528, ""));
|
14512
|
-
return resource$
|
14504
|
+
return resource$257;
|
14513
14505
|
}
|
14514
14506
|
if (currentProps && null !== currentResource)
|
14515
14507
|
throw Error(formatProdErrorMessage(529, ""));
|
@@ -14606,37 +14598,37 @@ function acquireResource(hoistableRoot, resource, props) {
|
|
14606
14598
|
return (resource.instance = instance);
|
14607
14599
|
case "stylesheet":
|
14608
14600
|
styleProps = getStyleKey(props.href);
|
14609
|
-
var instance$
|
14601
|
+
var instance$262 = hoistableRoot.querySelector(
|
14610
14602
|
getStylesheetSelectorFromKey(styleProps)
|
14611
14603
|
);
|
14612
|
-
if (instance$
|
14604
|
+
if (instance$262)
|
14613
14605
|
return (
|
14614
14606
|
(resource.state.loading |= 4),
|
14615
|
-
(resource.instance = instance$
|
14616
|
-
markNodeAsHoistable(instance$
|
14617
|
-
instance$
|
14607
|
+
(resource.instance = instance$262),
|
14608
|
+
markNodeAsHoistable(instance$262),
|
14609
|
+
instance$262
|
14618
14610
|
);
|
14619
14611
|
instance = stylesheetPropsFromRawProps(props);
|
14620
14612
|
(styleProps = preloadPropsMap.get(styleProps)) &&
|
14621
14613
|
adoptPreloadPropsForStylesheet(instance, styleProps);
|
14622
|
-
instance$
|
14614
|
+
instance$262 = (
|
14623
14615
|
hoistableRoot.ownerDocument || hoistableRoot
|
14624
14616
|
).createElement("link");
|
14625
|
-
markNodeAsHoistable(instance$
|
14626
|
-
var linkInstance = instance$
|
14617
|
+
markNodeAsHoistable(instance$262);
|
14618
|
+
var linkInstance = instance$262;
|
14627
14619
|
linkInstance._p = new Promise(function (resolve, reject) {
|
14628
14620
|
linkInstance.onload = resolve;
|
14629
14621
|
linkInstance.onerror = reject;
|
14630
14622
|
});
|
14631
|
-
setInitialProperties(instance$
|
14623
|
+
setInitialProperties(instance$262, "link", instance);
|
14632
14624
|
resource.state.loading |= 4;
|
14633
|
-
insertStylesheet(instance$
|
14634
|
-
return (resource.instance = instance$
|
14625
|
+
insertStylesheet(instance$262, props.precedence, hoistableRoot);
|
14626
|
+
return (resource.instance = instance$262);
|
14635
14627
|
case "script":
|
14636
|
-
instance$
|
14628
|
+
instance$262 = getScriptKey(props.src);
|
14637
14629
|
if (
|
14638
14630
|
(styleProps = hoistableRoot.querySelector(
|
14639
|
-
getScriptSelectorFromKey(instance$
|
14631
|
+
getScriptSelectorFromKey(instance$262)
|
14640
14632
|
))
|
14641
14633
|
)
|
14642
14634
|
return (
|
@@ -14645,7 +14637,7 @@ function acquireResource(hoistableRoot, resource, props) {
|
|
14645
14637
|
styleProps
|
14646
14638
|
);
|
14647
14639
|
instance = props;
|
14648
|
-
if ((styleProps = preloadPropsMap.get(instance$
|
14640
|
+
if ((styleProps = preloadPropsMap.get(instance$262)))
|
14649
14641
|
(instance = assign({}, props)),
|
14650
14642
|
adoptPreloadPropsForScript(instance, styleProps);
|
14651
14643
|
hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;
|
@@ -15688,16 +15680,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
15688
15680
|
0 === i && attemptExplicitHydrationTarget(target);
|
15689
15681
|
}
|
15690
15682
|
};
|
15691
|
-
var isomorphicReactPackageVersion$jscomp$
|
15683
|
+
var isomorphicReactPackageVersion$jscomp$inline_1776 = React.version;
|
15692
15684
|
if (
|
15693
|
-
"19.0.0-rc-
|
15694
|
-
isomorphicReactPackageVersion$jscomp$
|
15685
|
+
"19.0.0-rc-e1ef8c95-20241115" !==
|
15686
|
+
isomorphicReactPackageVersion$jscomp$inline_1776
|
15695
15687
|
)
|
15696
15688
|
throw Error(
|
15697
15689
|
formatProdErrorMessage(
|
15698
15690
|
527,
|
15699
|
-
isomorphicReactPackageVersion$jscomp$
|
15700
|
-
"19.0.0-rc-
|
15691
|
+
isomorphicReactPackageVersion$jscomp$inline_1776,
|
15692
|
+
"19.0.0-rc-e1ef8c95-20241115"
|
15701
15693
|
)
|
15702
15694
|
);
|
15703
15695
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -15717,18 +15709,18 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
15717
15709
|
null === componentOrElement ? null : componentOrElement.stateNode;
|
15718
15710
|
return componentOrElement;
|
15719
15711
|
};
|
15720
|
-
var internals$jscomp$
|
15712
|
+
var internals$jscomp$inline_1783 = {
|
15721
15713
|
bundleType: 0,
|
15722
|
-
version: "19.0.0-rc-
|
15714
|
+
version: "19.0.0-rc-e1ef8c95-20241115",
|
15723
15715
|
rendererPackageName: "react-dom",
|
15724
15716
|
currentDispatcherRef: ReactSharedInternals,
|
15725
15717
|
findFiberByHostInstance: getClosestInstanceFromNode,
|
15726
|
-
reconcilerVersion: "19.0.0-rc-
|
15718
|
+
reconcilerVersion: "19.0.0-rc-e1ef8c95-20241115",
|
15727
15719
|
getLaneLabelMap: function () {
|
15728
15720
|
for (
|
15729
|
-
var map = new Map(), lane = 1, index$
|
15730
|
-
31 > index$
|
15731
|
-
index$
|
15721
|
+
var map = new Map(), lane = 1, index$279 = 0;
|
15722
|
+
31 > index$279;
|
15723
|
+
index$279++
|
15732
15724
|
) {
|
15733
15725
|
var label = getLabelForLane(lane);
|
15734
15726
|
map.set(lane, label);
|
@@ -15741,16 +15733,16 @@ var internals$jscomp$inline_1784 = {
|
|
15741
15733
|
}
|
15742
15734
|
};
|
15743
15735
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
15744
|
-
var hook$jscomp$
|
15736
|
+
var hook$jscomp$inline_2220 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
15745
15737
|
if (
|
15746
|
-
!hook$jscomp$
|
15747
|
-
hook$jscomp$
|
15738
|
+
!hook$jscomp$inline_2220.isDisabled &&
|
15739
|
+
hook$jscomp$inline_2220.supportsFiber
|
15748
15740
|
)
|
15749
15741
|
try {
|
15750
|
-
(rendererID = hook$jscomp$
|
15751
|
-
internals$jscomp$
|
15742
|
+
(rendererID = hook$jscomp$inline_2220.inject(
|
15743
|
+
internals$jscomp$inline_1783
|
15752
15744
|
)),
|
15753
|
-
(injectedHook = hook$jscomp$
|
15745
|
+
(injectedHook = hook$jscomp$inline_2220);
|
15754
15746
|
} catch (err) {}
|
15755
15747
|
}
|
15756
15748
|
function noop() {}
|
@@ -16003,7 +15995,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
16003
15995
|
exports.useFormStatus = function () {
|
16004
15996
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
16005
15997
|
};
|
16006
|
-
exports.version = "19.0.0-rc-
|
15998
|
+
exports.version = "19.0.0-rc-e1ef8c95-20241115";
|
16007
15999
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
16008
16000
|
"function" ===
|
16009
16001
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|