react-dom 19.0.0-rc-cc1ec60d0d-20240607 → 19.0.0-rc-20b6f4c0e8-20240607
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 +75 -59
- package/cjs/react-dom-client.production.js +59 -52
- package/cjs/react-dom-profiling.development.js +75 -59
- package/cjs/react-dom-profiling.profiling.js +59 -52
- package/cjs/react-dom-server-legacy.browser.development.js +2 -2
- package/cjs/react-dom-server-legacy.browser.production.js +3 -3
- package/cjs/react-dom-server-legacy.node.development.js +2 -2
- package/cjs/react-dom-server-legacy.node.production.js +3 -3
- package/cjs/react-dom-server.browser.development.js +2 -2
- package/cjs/react-dom-server.browser.production.js +5 -5
- package/cjs/react-dom-server.bun.development.js +2 -2
- package/cjs/react-dom-server.bun.production.js +5 -5
- package/cjs/react-dom-server.edge.development.js +2 -2
- package/cjs/react-dom-server.edge.production.js +5 -5
- package/cjs/react-dom-server.node.development.js +2 -2
- package/cjs/react-dom-server.node.production.js +5 -5
- 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
@@ -11337,7 +11337,7 @@ var ownerHasKeyUseWarning;
|
|
11337
11337
|
var ownerHasFunctionTypeWarning;
|
11338
11338
|
var ownerHasSymbolTypeWarning;
|
11339
11339
|
|
11340
|
-
var warnForMissingKey = function (
|
11340
|
+
var warnForMissingKey = function (returnFiber, workInProgress, child) {};
|
11341
11341
|
|
11342
11342
|
{
|
11343
11343
|
didWarnAboutMaps = false;
|
@@ -11352,7 +11352,7 @@ var warnForMissingKey = function (child, returnFiber) {};
|
|
11352
11352
|
ownerHasFunctionTypeWarning = {};
|
11353
11353
|
ownerHasSymbolTypeWarning = {};
|
11354
11354
|
|
11355
|
-
warnForMissingKey = function (
|
11355
|
+
warnForMissingKey = function (returnFiber, workInProgress, child) {
|
11356
11356
|
if (child === null || typeof child !== 'object') {
|
11357
11357
|
return;
|
11358
11358
|
}
|
@@ -11411,15 +11411,9 @@ var warnForMissingKey = function (child, returnFiber) {};
|
|
11411
11411
|
// Give the component that originally created this child.
|
11412
11412
|
childOwnerAppendix = " It was passed a child from " + ownerName + ".";
|
11413
11413
|
}
|
11414
|
-
}
|
11415
|
-
// TODO: Refactor the warnForMissingKey calls to happen after fiber creation
|
11416
|
-
// so that we can get access to the fiber that will eventually be created.
|
11417
|
-
// That way the log can show up associated with the right instance in DevTools.
|
11418
|
-
|
11414
|
+
}
|
11419
11415
|
|
11420
|
-
|
11421
|
-
fiber.return = returnFiber;
|
11422
|
-
runWithFiberInDEV(fiber, function () {
|
11416
|
+
runWithFiberInDEV(workInProgress, function () {
|
11423
11417
|
error('Each child in a list should have a unique "key" prop.' + '%s%s See https://react.dev/link/warning-keys for more information.', currentComponentErrorInfo, childOwnerAppendix);
|
11424
11418
|
});
|
11425
11419
|
};
|
@@ -12016,7 +12010,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
12016
12010
|
*/
|
12017
12011
|
|
12018
12012
|
|
12019
|
-
function warnOnInvalidKey(child, knownKeys
|
12013
|
+
function warnOnInvalidKey(returnFiber, workInProgress, child, knownKeys) {
|
12020
12014
|
{
|
12021
12015
|
if (typeof child !== 'object' || child === null) {
|
12022
12016
|
return knownKeys;
|
@@ -12025,7 +12019,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
12025
12019
|
switch (child.$$typeof) {
|
12026
12020
|
case REACT_ELEMENT_TYPE:
|
12027
12021
|
case REACT_PORTAL_TYPE:
|
12028
|
-
warnForMissingKey(
|
12022
|
+
warnForMissingKey(returnFiber, workInProgress, child);
|
12029
12023
|
var key = child.key;
|
12030
12024
|
|
12031
12025
|
if (typeof key !== 'string') {
|
@@ -12043,8 +12037,9 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
12043
12037
|
break;
|
12044
12038
|
}
|
12045
12039
|
|
12046
|
-
|
12047
|
-
|
12040
|
+
runWithFiberInDEV(workInProgress, function () {
|
12041
|
+
error('Encountered two children with the same key, `%s`. ' + 'Keys should be unique so that components maintain their identity ' + 'across updates. Non-unique keys may cause children to be ' + 'duplicated and/or omitted — the behavior is unsupported and ' + 'could change in a future version.', key);
|
12042
|
+
});
|
12048
12043
|
break;
|
12049
12044
|
|
12050
12045
|
case REACT_LAZY_TYPE:
|
@@ -12055,7 +12050,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
12055
12050
|
resolvedChild = callLazyInitInDEV(child);
|
12056
12051
|
}
|
12057
12052
|
|
12058
|
-
warnOnInvalidKey(resolvedChild, knownKeys
|
12053
|
+
warnOnInvalidKey(returnFiber, workInProgress, resolvedChild, knownKeys);
|
12059
12054
|
break;
|
12060
12055
|
}
|
12061
12056
|
}
|
@@ -12080,16 +12075,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
12080
12075
|
// (adding everything to a Map) in for every insert/move.
|
12081
12076
|
// If you change this code, also update reconcileChildrenIterator() which
|
12082
12077
|
// uses the same algorithm.
|
12083
|
-
|
12084
|
-
// First, validate keys.
|
12085
|
-
var knownKeys = null;
|
12086
|
-
|
12087
|
-
for (var i = 0; i < newChildren.length; i++) {
|
12088
|
-
var child = newChildren[i];
|
12089
|
-
knownKeys = warnOnInvalidKey(child, knownKeys, returnFiber);
|
12090
|
-
}
|
12091
|
-
}
|
12092
|
-
|
12078
|
+
var knownKeys = null;
|
12093
12079
|
var resultingFirstChild = null;
|
12094
12080
|
var previousNewFiber = null;
|
12095
12081
|
var oldFiber = currentFirstChild;
|
@@ -12119,6 +12105,10 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
12119
12105
|
break;
|
12120
12106
|
}
|
12121
12107
|
|
12108
|
+
{
|
12109
|
+
knownKeys = warnOnInvalidKey(returnFiber, newFiber, newChildren[newIdx], knownKeys);
|
12110
|
+
}
|
12111
|
+
|
12122
12112
|
if (shouldTrackSideEffects) {
|
12123
12113
|
if (oldFiber && newFiber.alternate === null) {
|
12124
12114
|
// We matched the slot, but we didn't reuse the existing fiber, so we
|
@@ -12166,6 +12156,10 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
12166
12156
|
continue;
|
12167
12157
|
}
|
12168
12158
|
|
12159
|
+
{
|
12160
|
+
knownKeys = warnOnInvalidKey(returnFiber, _newFiber, newChildren[newIdx], knownKeys);
|
12161
|
+
}
|
12162
|
+
|
12169
12163
|
lastPlacedIndex = placeChild(_newFiber, lastPlacedIndex, newIdx);
|
12170
12164
|
|
12171
12165
|
if (previousNewFiber === null) {
|
@@ -12193,6 +12187,10 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
12193
12187
|
var _newFiber2 = updateFromMap(existingChildren, returnFiber, newIdx, newChildren[newIdx], lanes, debugInfo);
|
12194
12188
|
|
12195
12189
|
if (_newFiber2 !== null) {
|
12190
|
+
{
|
12191
|
+
knownKeys = warnOnInvalidKey(returnFiber, _newFiber2, newChildren[newIdx], knownKeys);
|
12192
|
+
}
|
12193
|
+
|
12196
12194
|
if (shouldTrackSideEffects) {
|
12197
12195
|
if (_newFiber2.alternate !== null) {
|
12198
12196
|
// The new fiber is a work in progress, but if there exists a
|
@@ -12287,11 +12285,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
12287
12285
|
var knownKeys = null;
|
12288
12286
|
var step = newChildren.next();
|
12289
12287
|
|
12290
|
-
{
|
12291
|
-
knownKeys = warnOnInvalidKey(step.value, knownKeys, returnFiber);
|
12292
|
-
}
|
12293
|
-
|
12294
|
-
for (; oldFiber !== null && !step.done; newIdx++, step = newChildren.next(), knownKeys = warnOnInvalidKey(step.value, knownKeys, returnFiber) ) {
|
12288
|
+
for (; oldFiber !== null && !step.done; newIdx++, step = newChildren.next()) {
|
12295
12289
|
if (oldFiber.index > newIdx) {
|
12296
12290
|
nextOldFiber = oldFiber;
|
12297
12291
|
oldFiber = null;
|
@@ -12313,6 +12307,10 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
12313
12307
|
break;
|
12314
12308
|
}
|
12315
12309
|
|
12310
|
+
{
|
12311
|
+
knownKeys = warnOnInvalidKey(returnFiber, newFiber, step.value, knownKeys);
|
12312
|
+
}
|
12313
|
+
|
12316
12314
|
if (shouldTrackSideEffects) {
|
12317
12315
|
if (oldFiber && newFiber.alternate === null) {
|
12318
12316
|
// We matched the slot, but we didn't reuse the existing fiber, so we
|
@@ -12353,13 +12351,17 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
12353
12351
|
if (oldFiber === null) {
|
12354
12352
|
// If we don't have any more existing children we can choose a fast path
|
12355
12353
|
// since the rest will all be insertions.
|
12356
|
-
for (; !step.done; newIdx++, step = newChildren.next()
|
12354
|
+
for (; !step.done; newIdx++, step = newChildren.next()) {
|
12357
12355
|
var _newFiber3 = createChild(returnFiber, step.value, lanes, debugInfo);
|
12358
12356
|
|
12359
12357
|
if (_newFiber3 === null) {
|
12360
12358
|
continue;
|
12361
12359
|
}
|
12362
12360
|
|
12361
|
+
{
|
12362
|
+
knownKeys = warnOnInvalidKey(returnFiber, _newFiber3, step.value, knownKeys);
|
12363
|
+
}
|
12364
|
+
|
12363
12365
|
lastPlacedIndex = placeChild(_newFiber3, lastPlacedIndex, newIdx);
|
12364
12366
|
|
12365
12367
|
if (previousNewFiber === null) {
|
@@ -12383,10 +12385,14 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
12383
12385
|
|
12384
12386
|
var existingChildren = mapRemainingChildren(oldFiber); // Keep scanning and use the map to restore deleted items as moves.
|
12385
12387
|
|
12386
|
-
for (; !step.done; newIdx++, step = newChildren.next()
|
12388
|
+
for (; !step.done; newIdx++, step = newChildren.next()) {
|
12387
12389
|
var _newFiber4 = updateFromMap(existingChildren, returnFiber, newIdx, step.value, lanes, debugInfo);
|
12388
12390
|
|
12389
12391
|
if (_newFiber4 !== null) {
|
12392
|
+
{
|
12393
|
+
knownKeys = warnOnInvalidKey(returnFiber, _newFiber4, step.value, knownKeys);
|
12394
|
+
}
|
12395
|
+
|
12390
12396
|
if (shouldTrackSideEffects) {
|
12391
12397
|
if (_newFiber4.alternate !== null) {
|
12392
12398
|
// The new fiber is a work in progress, but if there exists a
|
@@ -35432,8 +35438,25 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
|
35432
35438
|
|
35433
35439
|
_styles.set(_key, _resource);
|
35434
35440
|
|
35441
|
+
var instance = ownerDocument.querySelector(getStylesheetSelectorFromKey(_key));
|
35442
|
+
|
35443
|
+
if (instance) {
|
35444
|
+
var loadingState = instance._p;
|
35445
|
+
|
35446
|
+
if (loadingState) ; else {
|
35447
|
+
// This instance is already loaded
|
35448
|
+
_resource.instance = instance;
|
35449
|
+
_resource.state.loading = Loaded | Inserted;
|
35450
|
+
}
|
35451
|
+
}
|
35452
|
+
|
35435
35453
|
if (!preloadPropsMap.has(_key)) {
|
35436
|
-
|
35454
|
+
var preloadProps = preloadPropsFromStylesheet(qualifiedProps);
|
35455
|
+
preloadPropsMap.set(_key, preloadProps);
|
35456
|
+
|
35457
|
+
if (!instance) {
|
35458
|
+
preloadStylesheet(ownerDocument, _key, preloadProps, _resource.state);
|
35459
|
+
}
|
35437
35460
|
}
|
35438
35461
|
}
|
35439
35462
|
|
@@ -35580,31 +35603,24 @@ function stylesheetPropsFromRawProps(rawProps) {
|
|
35580
35603
|
}
|
35581
35604
|
|
35582
35605
|
function preloadStylesheet(ownerDocument, key, preloadProps, state) {
|
35583
|
-
|
35584
|
-
|
35585
|
-
if (
|
35586
|
-
//
|
35587
|
-
//
|
35588
|
-
|
35589
|
-
|
35590
|
-
|
35591
|
-
|
35592
|
-
|
35593
|
-
|
35594
|
-
|
35595
|
-
|
35596
|
-
|
35597
|
-
|
35598
|
-
|
35599
|
-
|
35600
|
-
|
35601
|
-
instance.addEventListener('error', function () {
|
35602
|
-
return state.loading |= Errored;
|
35603
|
-
});
|
35604
|
-
setInitialProperties(instance, 'link', preloadProps);
|
35605
|
-
markNodeAsHoistable(instance);
|
35606
|
-
ownerDocument.head.appendChild(instance);
|
35607
|
-
}
|
35606
|
+
var preloadEl = ownerDocument.querySelector(getPreloadStylesheetSelectorFromKey(key));
|
35607
|
+
|
35608
|
+
if (preloadEl) {
|
35609
|
+
// If we find a preload already it was SSR'd and we won't have an actual
|
35610
|
+
// loading state to track. For now we will just assume it is loaded
|
35611
|
+
state.loading = Loaded;
|
35612
|
+
} else {
|
35613
|
+
var instance = ownerDocument.createElement('link');
|
35614
|
+
state.preload = instance;
|
35615
|
+
instance.addEventListener('load', function () {
|
35616
|
+
return state.loading |= Loaded;
|
35617
|
+
});
|
35618
|
+
instance.addEventListener('error', function () {
|
35619
|
+
return state.loading |= Errored;
|
35620
|
+
});
|
35621
|
+
setInitialProperties(instance, 'link', preloadProps);
|
35622
|
+
markNodeAsHoistable(instance);
|
35623
|
+
ownerDocument.head.appendChild(instance);
|
35608
35624
|
}
|
35609
35625
|
}
|
35610
35626
|
|
@@ -36472,7 +36488,7 @@ identifierPrefix, onUncaughtError, onCaughtError, onRecoverableError, transition
|
|
36472
36488
|
return root;
|
36473
36489
|
}
|
36474
36490
|
|
36475
|
-
var ReactVersion = '19.0.0-rc-
|
36491
|
+
var ReactVersion = '19.0.0-rc-20b6f4c0e8-20240607';
|
36476
36492
|
|
36477
36493
|
function createPortal$1(children, containerInfo, // TODO: figure out the API for cross-renderer implementation.
|
36478
36494
|
implementation) {
|
@@ -3204,7 +3204,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
3204
3204
|
nextOldFiber = null,
|
3205
3205
|
step = newChildren.next();
|
3206
3206
|
null !== oldFiber && !step.done;
|
3207
|
-
newIdx++, step = newChildren.next()
|
3207
|
+
newIdx++, step = newChildren.next()
|
3208
3208
|
) {
|
3209
3209
|
oldFiber.index > newIdx
|
3210
3210
|
? ((nextOldFiber = oldFiber), (oldFiber = null))
|
@@ -3232,7 +3232,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
3232
3232
|
resultingFirstChild
|
3233
3233
|
);
|
3234
3234
|
if (null === oldFiber) {
|
3235
|
-
for (; !step.done; newIdx++, step = newChildren.next()
|
3235
|
+
for (; !step.done; newIdx++, step = newChildren.next())
|
3236
3236
|
(step = createChild(returnFiber, step.value, lanes)),
|
3237
3237
|
null !== step &&
|
3238
3238
|
((currentFirstChild = placeChild(step, currentFirstChild, newIdx)),
|
@@ -3246,7 +3246,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
3246
3246
|
for (
|
3247
3247
|
oldFiber = mapRemainingChildren(oldFiber);
|
3248
3248
|
!step.done;
|
3249
|
-
newIdx++, step = newChildren.next()
|
3249
|
+
newIdx++, step = newChildren.next()
|
3250
3250
|
)
|
3251
3251
|
(step = updateFromMap(oldFiber, returnFiber, newIdx, step.value, lanes)),
|
3252
3252
|
null !== step &&
|
@@ -14104,20 +14104,20 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
|
14104
14104
|
case "style":
|
14105
14105
|
return "string" === typeof pendingProps.precedence &&
|
14106
14106
|
"string" === typeof pendingProps.href
|
14107
|
-
? ((
|
14108
|
-
(
|
14107
|
+
? ((currentProps = getStyleKey(pendingProps.href)),
|
14108
|
+
(pendingProps = getResourcesFromRoot(
|
14109
14109
|
JSCompiler_inline_result
|
14110
14110
|
).hoistableStyles),
|
14111
|
-
(
|
14112
|
-
|
14113
|
-
((
|
14111
|
+
(currentResource = pendingProps.get(currentProps)),
|
14112
|
+
currentResource ||
|
14113
|
+
((currentResource = {
|
14114
14114
|
type: "style",
|
14115
14115
|
instance: null,
|
14116
14116
|
count: 0,
|
14117
14117
|
state: null
|
14118
14118
|
}),
|
14119
|
-
|
14120
|
-
|
14119
|
+
pendingProps.set(currentProps, currentResource)),
|
14120
|
+
currentResource)
|
14121
14121
|
: { type: "void", instance: null, count: 0, state: null };
|
14122
14122
|
case "link":
|
14123
14123
|
if (
|
@@ -14140,22 +14140,31 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
|
14140
14140
|
state: { loading: 0, preload: null }
|
14141
14141
|
}),
|
14142
14142
|
styles$249.set(type, resource$250),
|
14143
|
+
(styles$249 = JSCompiler_inline_result.querySelector(
|
14144
|
+
getStylesheetSelectorFromKey(type)
|
14145
|
+
)) &&
|
14146
|
+
!styles$249._p &&
|
14147
|
+
((resource$250.instance = styles$249),
|
14148
|
+
(resource$250.state.loading = 5)),
|
14143
14149
|
preloadPropsMap.has(type) ||
|
14144
|
-
|
14145
|
-
|
14146
|
-
|
14147
|
-
|
14148
|
-
|
14149
|
-
|
14150
|
-
|
14151
|
-
|
14152
|
-
|
14153
|
-
|
14154
|
-
|
14155
|
-
|
14156
|
-
|
14157
|
-
|
14158
|
-
|
14150
|
+
((pendingProps = {
|
14151
|
+
rel: "preload",
|
14152
|
+
as: "style",
|
14153
|
+
href: pendingProps.href,
|
14154
|
+
crossOrigin: pendingProps.crossOrigin,
|
14155
|
+
integrity: pendingProps.integrity,
|
14156
|
+
media: pendingProps.media,
|
14157
|
+
hrefLang: pendingProps.hrefLang,
|
14158
|
+
referrerPolicy: pendingProps.referrerPolicy
|
14159
|
+
}),
|
14160
|
+
preloadPropsMap.set(type, pendingProps),
|
14161
|
+
styles$249 ||
|
14162
|
+
preloadStylesheet(
|
14163
|
+
JSCompiler_inline_result,
|
14164
|
+
type,
|
14165
|
+
pendingProps,
|
14166
|
+
resource$250.state
|
14167
|
+
)));
|
14159
14168
|
if (currentProps && null === currentResource)
|
14160
14169
|
throw Error(formatProdErrorMessage(528, ""));
|
14161
14170
|
return resource$250;
|
@@ -14171,20 +14180,20 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
|
14171
14180
|
currentProps &&
|
14172
14181
|
"function" !== typeof currentProps &&
|
14173
14182
|
"symbol" !== typeof currentProps
|
14174
|
-
? ((
|
14175
|
-
(
|
14183
|
+
? ((currentProps = getScriptKey(pendingProps)),
|
14184
|
+
(pendingProps = getResourcesFromRoot(
|
14176
14185
|
JSCompiler_inline_result
|
14177
14186
|
).hoistableScripts),
|
14178
|
-
(
|
14179
|
-
|
14180
|
-
((
|
14187
|
+
(currentResource = pendingProps.get(currentProps)),
|
14188
|
+
currentResource ||
|
14189
|
+
((currentResource = {
|
14181
14190
|
type: "script",
|
14182
14191
|
instance: null,
|
14183
14192
|
count: 0,
|
14184
14193
|
state: null
|
14185
14194
|
}),
|
14186
|
-
|
14187
|
-
|
14195
|
+
pendingProps.set(currentProps, currentResource)),
|
14196
|
+
currentResource)
|
14188
14197
|
: { type: "void", instance: null, count: 0, state: null }
|
14189
14198
|
);
|
14190
14199
|
default:
|
@@ -14204,21 +14213,19 @@ function stylesheetPropsFromRawProps(rawProps) {
|
|
14204
14213
|
});
|
14205
14214
|
}
|
14206
14215
|
function preloadStylesheet(ownerDocument, key, preloadProps, state) {
|
14207
|
-
|
14208
|
-
|
14209
|
-
(
|
14210
|
-
|
14211
|
-
|
14212
|
-
(state.
|
14213
|
-
|
14214
|
-
|
14215
|
-
|
14216
|
-
|
14217
|
-
|
14218
|
-
|
14219
|
-
|
14220
|
-
markNodeAsHoistable(key),
|
14221
|
-
ownerDocument.head.appendChild(key)));
|
14216
|
+
ownerDocument.querySelector('link[rel="preload"][as="style"][' + key + "]")
|
14217
|
+
? (state.loading = 1)
|
14218
|
+
: ((key = ownerDocument.createElement("link")),
|
14219
|
+
(state.preload = key),
|
14220
|
+
key.addEventListener("load", function () {
|
14221
|
+
return (state.loading |= 1);
|
14222
|
+
}),
|
14223
|
+
key.addEventListener("error", function () {
|
14224
|
+
return (state.loading |= 2);
|
14225
|
+
}),
|
14226
|
+
setInitialProperties(key, "link", preloadProps),
|
14227
|
+
markNodeAsHoistable(key),
|
14228
|
+
ownerDocument.head.appendChild(key));
|
14222
14229
|
}
|
14223
14230
|
function getScriptKey(src) {
|
14224
14231
|
return '[src="' + escapeSelectorAttributeValueInsideDoubleQuotes(src) + '"]';
|
@@ -15336,14 +15343,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
15336
15343
|
};
|
15337
15344
|
var isomorphicReactPackageVersion$jscomp$inline_1739 = React.version;
|
15338
15345
|
if (
|
15339
|
-
"19.0.0-rc-
|
15346
|
+
"19.0.0-rc-20b6f4c0e8-20240607" !==
|
15340
15347
|
isomorphicReactPackageVersion$jscomp$inline_1739
|
15341
15348
|
)
|
15342
15349
|
throw Error(
|
15343
15350
|
formatProdErrorMessage(
|
15344
15351
|
527,
|
15345
15352
|
isomorphicReactPackageVersion$jscomp$inline_1739,
|
15346
|
-
"19.0.0-rc-
|
15353
|
+
"19.0.0-rc-20b6f4c0e8-20240607"
|
15347
15354
|
)
|
15348
15355
|
);
|
15349
15356
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -15362,7 +15369,7 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
15362
15369
|
var devToolsConfig$jscomp$inline_1746 = {
|
15363
15370
|
findFiberByHostInstance: getClosestInstanceFromNode,
|
15364
15371
|
bundleType: 0,
|
15365
|
-
version: "19.0.0-rc-
|
15372
|
+
version: "19.0.0-rc-20b6f4c0e8-20240607",
|
15366
15373
|
rendererPackageName: "react-dom"
|
15367
15374
|
};
|
15368
15375
|
(function (internals) {
|
@@ -15405,7 +15412,7 @@ var devToolsConfig$jscomp$inline_1746 = {
|
|
15405
15412
|
scheduleRoot: null,
|
15406
15413
|
setRefreshHandler: null,
|
15407
15414
|
getCurrentFiber: null,
|
15408
|
-
reconcilerVersion: "19.0.0-rc-
|
15415
|
+
reconcilerVersion: "19.0.0-rc-20b6f4c0e8-20240607"
|
15409
15416
|
});
|
15410
15417
|
function noop() {}
|
15411
15418
|
function getCrossOriginStringAs(as, input) {
|
@@ -15659,7 +15666,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
15659
15666
|
exports.useFormStatus = function () {
|
15660
15667
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
15661
15668
|
};
|
15662
|
-
exports.version = "19.0.0-rc-
|
15669
|
+
exports.version = "19.0.0-rc-20b6f4c0e8-20240607";
|
15663
15670
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
15664
15671
|
"function" ===
|
15665
15672
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -17,7 +17,7 @@ if (process.env.NODE_ENV !== "production") {
|
|
17
17
|
var React = require('react');
|
18
18
|
var ReactDOM = require('react-dom');
|
19
19
|
|
20
|
-
var ReactVersion = '19.0.0-rc-
|
20
|
+
var ReactVersion = '19.0.0-rc-20b6f4c0e8-20240607';
|
21
21
|
|
22
22
|
var ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
|
23
23
|
|
@@ -1941,7 +1941,7 @@ function sanitizeURL(url) {
|
|
1941
1941
|
// Run `yarn generate-inline-fizz-runtime` to generate.
|
1942
1942
|
var clientRenderBoundary = '$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data="$!",a=a.dataset,c&&(a.dgst=c),d&&(a.msg=d),e&&(a.stck=e),f&&(a.cstck=f),b._reactRetry&&b._reactRetry())};';
|
1943
1943
|
var completeBoundary = '$RC=function(b,c,e){c=document.getElementById(c);c.parentNode.removeChild(c);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var d=a.data;if("/$"===d)if(0===f)break;else f--;else"$"!==d&&"$?"!==d&&"$!"!==d||f++}d=a.nextSibling;e.removeChild(a);a=d}while(a);for(;c.firstChild;)e.insertBefore(c.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};';
|
1944
|
-
var completeBoundaryWithStyles = '$RM=new Map;\n$RR=function(
|
1944
|
+
var completeBoundaryWithStyles = '$RM=new Map;\n$RR=function(t,u,y){function v(n){this._p=null;n()}for(var w=$RC,p=$RM,q=new Map,r=document,g,b,h=r.querySelectorAll("link[data-precedence],style[data-precedence]"),x=[],k=0;b=h[k++];)"not all"===b.getAttribute("media")?x.push(b):("LINK"===b.tagName&&p.set(b.getAttribute("href"),b),q.set(b.dataset.precedence,g=b));b=0;h=[];var l,a;for(k=!0;;){if(k){var e=y[b++];if(!e){k=!1;b=0;continue}var c=!1,m=0;var d=e[m++];if(a=p.get(d)){var f=a._p;c=!0}else{a=r.createElement("link");a.href=\nd;a.rel="stylesheet";for(a.dataset.precedence=l=e[m++];f=e[m++];)a.setAttribute(f,e[m++]);f=a._p=new Promise(function(n,z){a.onload=v.bind(a,n);a.onerror=v.bind(a,z)});p.set(d,a)}d=a.getAttribute("media");!f||d&&!matchMedia(d).matches||h.push(f);if(c)continue}else{a=x[b++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=q.get(l)||g;c===g&&(g=a);q.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=r.head,c.insertBefore(a,c.firstChild))}Promise.all(h).then(w.bind(null,\nt,u,""),w.bind(null,t,u,"Resource failed to load"))};';
|
1945
1945
|
var completeSegment = '$RS=function(a,b){a=document.getElementById(a);b=document.getElementById(b);for(a.parentNode.removeChild(a);a.firstChild;)b.parentNode.insertBefore(a.firstChild,b);b.parentNode.removeChild(b)};';
|
1946
1946
|
var formReplaying = 'addEventListener("submit",function(a){if(!a.defaultPrevented){var c=a.target,d=a.submitter,e=c.action,b=d;if(d){var f=d.getAttribute("formAction");null!=f&&(e=f,b=null)}"javascript:throw new Error(\'React form unexpectedly submitted.\')"===e&&(a.preventDefault(),b?(a=document.createElement("input"),a.name=b.name,a.value=b.value,b.parentNode.insertBefore(a,b),b=new FormData(c),a.parentNode.removeChild(a)):b=new FormData(c),a=c.ownerDocument||c,(a.$$reactFormReplay=a.$$reactFormReplay||[]).push(c,d,b))}});';
|
1947
1947
|
|
@@ -5098,12 +5098,12 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
5098
5098
|
? 0 === (completedSegments.instructions & 2)
|
5099
5099
|
? ((completedSegments.instructions |= 10),
|
5100
5100
|
destination.push(
|
5101
|
-
'$RC=function(b,c,e){c=document.getElementById(c);c.parentNode.removeChild(c);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var d=a.data;if("/$"===d)if(0===f)break;else f--;else"$"!==d&&"$?"!==d&&"$!"!==d||f++}d=a.nextSibling;e.removeChild(a);a=d}while(a);for(;c.firstChild;)e.insertBefore(c.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};$RM=new Map;\n$RR=function(
|
5101
|
+
'$RC=function(b,c,e){c=document.getElementById(c);c.parentNode.removeChild(c);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var d=a.data;if("/$"===d)if(0===f)break;else f--;else"$"!==d&&"$?"!==d&&"$!"!==d||f++}d=a.nextSibling;e.removeChild(a);a=d}while(a);for(;c.firstChild;)e.insertBefore(c.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};$RM=new Map;\n$RR=function(t,u,y){function v(n){this._p=null;n()}for(var w=$RC,p=$RM,q=new Map,r=document,g,b,h=r.querySelectorAll("link[data-precedence],style[data-precedence]"),x=[],k=0;b=h[k++];)"not all"===b.getAttribute("media")?x.push(b):("LINK"===b.tagName&&p.set(b.getAttribute("href"),b),q.set(b.dataset.precedence,g=b));b=0;h=[];var l,a;for(k=!0;;){if(k){var e=y[b++];if(!e){k=!1;b=0;continue}var c=!1,m=0;var d=e[m++];if(a=p.get(d)){var f=a._p;c=!0}else{a=r.createElement("link");a.href=\nd;a.rel="stylesheet";for(a.dataset.precedence=l=e[m++];f=e[m++];)a.setAttribute(f,e[m++]);f=a._p=new Promise(function(n,z){a.onload=v.bind(a,n);a.onerror=v.bind(a,z)});p.set(d,a)}d=a.getAttribute("media");!f||d&&!matchMedia(d).matches||h.push(f);if(c)continue}else{a=x[b++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=q.get(l)||g;c===g&&(g=a);q.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=r.head,c.insertBefore(a,c.firstChild))}Promise.all(h).then(w.bind(null,\nt,u,""),w.bind(null,t,u,"Resource failed to load"))};$RR("'
|
5102
5102
|
))
|
5103
5103
|
: 0 === (completedSegments.instructions & 8)
|
5104
5104
|
? ((completedSegments.instructions |= 8),
|
5105
5105
|
destination.push(
|
5106
|
-
'$RM=new Map;\n$RR=function(
|
5106
|
+
'$RM=new Map;\n$RR=function(t,u,y){function v(n){this._p=null;n()}for(var w=$RC,p=$RM,q=new Map,r=document,g,b,h=r.querySelectorAll("link[data-precedence],style[data-precedence]"),x=[],k=0;b=h[k++];)"not all"===b.getAttribute("media")?x.push(b):("LINK"===b.tagName&&p.set(b.getAttribute("href"),b),q.set(b.dataset.precedence,g=b));b=0;h=[];var l,a;for(k=!0;;){if(k){var e=y[b++];if(!e){k=!1;b=0;continue}var c=!1,m=0;var d=e[m++];if(a=p.get(d)){var f=a._p;c=!0}else{a=r.createElement("link");a.href=\nd;a.rel="stylesheet";for(a.dataset.precedence=l=e[m++];f=e[m++];)a.setAttribute(f,e[m++]);f=a._p=new Promise(function(n,z){a.onload=v.bind(a,n);a.onerror=v.bind(a,z)});p.set(d,a)}d=a.getAttribute("media");!f||d&&!matchMedia(d).matches||h.push(f);if(c)continue}else{a=x[b++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=q.get(l)||g;c===g&&(g=a);q.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=r.head,c.insertBefore(a,c.firstChild))}Promise.all(h).then(w.bind(null,\nt,u,""),w.bind(null,t,u,"Resource failed to load"))};$RR("'
|
5107
5107
|
))
|
5108
5108
|
: destination.push('$RR("')
|
5109
5109
|
: 0 === (completedSegments.instructions & 2)
|
@@ -5469,4 +5469,4 @@ exports.renderToString = function (children, options) {
|
|
5469
5469
|
'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'
|
5470
5470
|
);
|
5471
5471
|
};
|
5472
|
-
exports.version = "19.0.0-rc-
|
5472
|
+
exports.version = "19.0.0-rc-20b6f4c0e8-20240607";
|
@@ -17,7 +17,7 @@ if (process.env.NODE_ENV !== "production") {
|
|
17
17
|
var React = require('react');
|
18
18
|
var ReactDOM = require('react-dom');
|
19
19
|
|
20
|
-
var ReactVersion = '19.0.0-rc-
|
20
|
+
var ReactVersion = '19.0.0-rc-20b6f4c0e8-20240607';
|
21
21
|
|
22
22
|
var ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
|
23
23
|
|
@@ -1941,7 +1941,7 @@ function sanitizeURL(url) {
|
|
1941
1941
|
// Run `yarn generate-inline-fizz-runtime` to generate.
|
1942
1942
|
var clientRenderBoundary = '$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data="$!",a=a.dataset,c&&(a.dgst=c),d&&(a.msg=d),e&&(a.stck=e),f&&(a.cstck=f),b._reactRetry&&b._reactRetry())};';
|
1943
1943
|
var completeBoundary = '$RC=function(b,c,e){c=document.getElementById(c);c.parentNode.removeChild(c);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var d=a.data;if("/$"===d)if(0===f)break;else f--;else"$"!==d&&"$?"!==d&&"$!"!==d||f++}d=a.nextSibling;e.removeChild(a);a=d}while(a);for(;c.firstChild;)e.insertBefore(c.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};';
|
1944
|
-
var completeBoundaryWithStyles = '$RM=new Map;\n$RR=function(
|
1944
|
+
var completeBoundaryWithStyles = '$RM=new Map;\n$RR=function(t,u,y){function v(n){this._p=null;n()}for(var w=$RC,p=$RM,q=new Map,r=document,g,b,h=r.querySelectorAll("link[data-precedence],style[data-precedence]"),x=[],k=0;b=h[k++];)"not all"===b.getAttribute("media")?x.push(b):("LINK"===b.tagName&&p.set(b.getAttribute("href"),b),q.set(b.dataset.precedence,g=b));b=0;h=[];var l,a;for(k=!0;;){if(k){var e=y[b++];if(!e){k=!1;b=0;continue}var c=!1,m=0;var d=e[m++];if(a=p.get(d)){var f=a._p;c=!0}else{a=r.createElement("link");a.href=\nd;a.rel="stylesheet";for(a.dataset.precedence=l=e[m++];f=e[m++];)a.setAttribute(f,e[m++]);f=a._p=new Promise(function(n,z){a.onload=v.bind(a,n);a.onerror=v.bind(a,z)});p.set(d,a)}d=a.getAttribute("media");!f||d&&!matchMedia(d).matches||h.push(f);if(c)continue}else{a=x[b++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=q.get(l)||g;c===g&&(g=a);q.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=r.head,c.insertBefore(a,c.firstChild))}Promise.all(h).then(w.bind(null,\nt,u,""),w.bind(null,t,u,"Resource failed to load"))};';
|
1945
1945
|
var completeSegment = '$RS=function(a,b){a=document.getElementById(a);b=document.getElementById(b);for(a.parentNode.removeChild(a);a.firstChild;)b.parentNode.insertBefore(a.firstChild,b);b.parentNode.removeChild(b)};';
|
1946
1946
|
var formReplaying = 'addEventListener("submit",function(a){if(!a.defaultPrevented){var c=a.target,d=a.submitter,e=c.action,b=d;if(d){var f=d.getAttribute("formAction");null!=f&&(e=f,b=null)}"javascript:throw new Error(\'React form unexpectedly submitted.\')"===e&&(a.preventDefault(),b?(a=document.createElement("input"),a.name=b.name,a.value=b.value,b.parentNode.insertBefore(a,b),b=new FormData(c),a.parentNode.removeChild(a)):b=new FormData(c),a=c.ownerDocument||c,(a.$$reactFormReplay=a.$$reactFormReplay||[]).push(c,d,b))}});';
|
1947
1947
|
|
@@ -5173,12 +5173,12 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
5173
5173
|
? 0 === (completedSegments.instructions & 2)
|
5174
5174
|
? ((completedSegments.instructions |= 10),
|
5175
5175
|
destination.push(
|
5176
|
-
'$RC=function(b,c,e){c=document.getElementById(c);c.parentNode.removeChild(c);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var d=a.data;if("/$"===d)if(0===f)break;else f--;else"$"!==d&&"$?"!==d&&"$!"!==d||f++}d=a.nextSibling;e.removeChild(a);a=d}while(a);for(;c.firstChild;)e.insertBefore(c.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};$RM=new Map;\n$RR=function(
|
5176
|
+
'$RC=function(b,c,e){c=document.getElementById(c);c.parentNode.removeChild(c);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var d=a.data;if("/$"===d)if(0===f)break;else f--;else"$"!==d&&"$?"!==d&&"$!"!==d||f++}d=a.nextSibling;e.removeChild(a);a=d}while(a);for(;c.firstChild;)e.insertBefore(c.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};$RM=new Map;\n$RR=function(t,u,y){function v(n){this._p=null;n()}for(var w=$RC,p=$RM,q=new Map,r=document,g,b,h=r.querySelectorAll("link[data-precedence],style[data-precedence]"),x=[],k=0;b=h[k++];)"not all"===b.getAttribute("media")?x.push(b):("LINK"===b.tagName&&p.set(b.getAttribute("href"),b),q.set(b.dataset.precedence,g=b));b=0;h=[];var l,a;for(k=!0;;){if(k){var e=y[b++];if(!e){k=!1;b=0;continue}var c=!1,m=0;var d=e[m++];if(a=p.get(d)){var f=a._p;c=!0}else{a=r.createElement("link");a.href=\nd;a.rel="stylesheet";for(a.dataset.precedence=l=e[m++];f=e[m++];)a.setAttribute(f,e[m++]);f=a._p=new Promise(function(n,z){a.onload=v.bind(a,n);a.onerror=v.bind(a,z)});p.set(d,a)}d=a.getAttribute("media");!f||d&&!matchMedia(d).matches||h.push(f);if(c)continue}else{a=x[b++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=q.get(l)||g;c===g&&(g=a);q.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=r.head,c.insertBefore(a,c.firstChild))}Promise.all(h).then(w.bind(null,\nt,u,""),w.bind(null,t,u,"Resource failed to load"))};$RR("'
|
5177
5177
|
))
|
5178
5178
|
: 0 === (completedSegments.instructions & 8)
|
5179
5179
|
? ((completedSegments.instructions |= 8),
|
5180
5180
|
destination.push(
|
5181
|
-
'$RM=new Map;\n$RR=function(
|
5181
|
+
'$RM=new Map;\n$RR=function(t,u,y){function v(n){this._p=null;n()}for(var w=$RC,p=$RM,q=new Map,r=document,g,b,h=r.querySelectorAll("link[data-precedence],style[data-precedence]"),x=[],k=0;b=h[k++];)"not all"===b.getAttribute("media")?x.push(b):("LINK"===b.tagName&&p.set(b.getAttribute("href"),b),q.set(b.dataset.precedence,g=b));b=0;h=[];var l,a;for(k=!0;;){if(k){var e=y[b++];if(!e){k=!1;b=0;continue}var c=!1,m=0;var d=e[m++];if(a=p.get(d)){var f=a._p;c=!0}else{a=r.createElement("link");a.href=\nd;a.rel="stylesheet";for(a.dataset.precedence=l=e[m++];f=e[m++];)a.setAttribute(f,e[m++]);f=a._p=new Promise(function(n,z){a.onload=v.bind(a,n);a.onerror=v.bind(a,z)});p.set(d,a)}d=a.getAttribute("media");!f||d&&!matchMedia(d).matches||h.push(f);if(c)continue}else{a=x[b++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=q.get(l)||g;c===g&&(g=a);q.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=r.head,c.insertBefore(a,c.firstChild))}Promise.all(h).then(w.bind(null,\nt,u,""),w.bind(null,t,u,"Resource failed to load"))};$RR("'
|
5182
5182
|
))
|
5183
5183
|
: destination.push('$RR("')
|
5184
5184
|
: 0 === (completedSegments.instructions & 2)
|
@@ -5551,4 +5551,4 @@ exports.renderToString = function (children, options) {
|
|
5551
5551
|
'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'
|
5552
5552
|
);
|
5553
5553
|
};
|
5554
|
-
exports.version = "19.0.0-rc-
|
5554
|
+
exports.version = "19.0.0-rc-20b6f4c0e8-20240607";
|
@@ -17,7 +17,7 @@ if (process.env.NODE_ENV !== "production") {
|
|
17
17
|
var React = require('react');
|
18
18
|
var ReactDOM = require('react-dom');
|
19
19
|
|
20
|
-
var reactDOMPackageVersion = '19.0.0-rc-
|
20
|
+
var reactDOMPackageVersion = '19.0.0-rc-20b6f4c0e8-20240607';
|
21
21
|
|
22
22
|
var ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
|
23
23
|
|
@@ -2028,7 +2028,7 @@ function sanitizeURL(url) {
|
|
2028
2028
|
// Run `yarn generate-inline-fizz-runtime` to generate.
|
2029
2029
|
var clientRenderBoundary = '$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data="$!",a=a.dataset,c&&(a.dgst=c),d&&(a.msg=d),e&&(a.stck=e),f&&(a.cstck=f),b._reactRetry&&b._reactRetry())};';
|
2030
2030
|
var completeBoundary = '$RC=function(b,c,e){c=document.getElementById(c);c.parentNode.removeChild(c);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var d=a.data;if("/$"===d)if(0===f)break;else f--;else"$"!==d&&"$?"!==d&&"$!"!==d||f++}d=a.nextSibling;e.removeChild(a);a=d}while(a);for(;c.firstChild;)e.insertBefore(c.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};';
|
2031
|
-
var completeBoundaryWithStyles = '$RM=new Map;\n$RR=function(
|
2031
|
+
var completeBoundaryWithStyles = '$RM=new Map;\n$RR=function(t,u,y){function v(n){this._p=null;n()}for(var w=$RC,p=$RM,q=new Map,r=document,g,b,h=r.querySelectorAll("link[data-precedence],style[data-precedence]"),x=[],k=0;b=h[k++];)"not all"===b.getAttribute("media")?x.push(b):("LINK"===b.tagName&&p.set(b.getAttribute("href"),b),q.set(b.dataset.precedence,g=b));b=0;h=[];var l,a;for(k=!0;;){if(k){var e=y[b++];if(!e){k=!1;b=0;continue}var c=!1,m=0;var d=e[m++];if(a=p.get(d)){var f=a._p;c=!0}else{a=r.createElement("link");a.href=\nd;a.rel="stylesheet";for(a.dataset.precedence=l=e[m++];f=e[m++];)a.setAttribute(f,e[m++]);f=a._p=new Promise(function(n,z){a.onload=v.bind(a,n);a.onerror=v.bind(a,z)});p.set(d,a)}d=a.getAttribute("media");!f||d&&!matchMedia(d).matches||h.push(f);if(c)continue}else{a=x[b++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=q.get(l)||g;c===g&&(g=a);q.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=r.head,c.insertBefore(a,c.firstChild))}Promise.all(h).then(w.bind(null,\nt,u,""),w.bind(null,t,u,"Resource failed to load"))};';
|
2032
2032
|
var completeSegment = '$RS=function(a,b){a=document.getElementById(a);b=document.getElementById(b);for(a.parentNode.removeChild(a);a.firstChild;)b.parentNode.insertBefore(a.firstChild,b);b.parentNode.removeChild(b)};';
|
2033
2033
|
var formReplaying = 'addEventListener("submit",function(a){if(!a.defaultPrevented){var c=a.target,d=a.submitter,e=c.action,b=d;if(d){var f=d.getAttribute("formAction");null!=f&&(e=f,b=null)}"javascript:throw new Error(\'React form unexpectedly submitted.\')"===e&&(a.preventDefault(),b?(a=document.createElement("input"),a.name=b.name,a.value=b.value,b.parentNode.insertBefore(a,b),b=new FormData(c),a.parentNode.removeChild(a)):b=new FormData(c),a=c.ownerDocument||c,(a.$$reactFormReplay=a.$$reactFormReplay||[]).push(c,d,b))}});';
|
2034
2034
|
|