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.
@@ -11289,7 +11289,7 @@ var ownerHasKeyUseWarning;
11289
11289
  var ownerHasFunctionTypeWarning;
11290
11290
  var ownerHasSymbolTypeWarning;
11291
11291
 
11292
- var warnForMissingKey = function (child, returnFiber) {};
11292
+ var warnForMissingKey = function (returnFiber, workInProgress, child) {};
11293
11293
 
11294
11294
  {
11295
11295
  didWarnAboutMaps = false;
@@ -11304,7 +11304,7 @@ var warnForMissingKey = function (child, returnFiber) {};
11304
11304
  ownerHasFunctionTypeWarning = {};
11305
11305
  ownerHasSymbolTypeWarning = {};
11306
11306
 
11307
- warnForMissingKey = function (child, returnFiber) {
11307
+ warnForMissingKey = function (returnFiber, workInProgress, child) {
11308
11308
  if (child === null || typeof child !== 'object') {
11309
11309
  return;
11310
11310
  }
@@ -11363,15 +11363,9 @@ var warnForMissingKey = function (child, returnFiber) {};
11363
11363
  // Give the component that originally created this child.
11364
11364
  childOwnerAppendix = " It was passed a child from " + ownerName + ".";
11365
11365
  }
11366
- } // We create a fake Fiber for the child to log the stack trace from.
11367
- // TODO: Refactor the warnForMissingKey calls to happen after fiber creation
11368
- // so that we can get access to the fiber that will eventually be created.
11369
- // That way the log can show up associated with the right instance in DevTools.
11370
-
11366
+ }
11371
11367
 
11372
- var fiber = createFiberFromElement(child, returnFiber.mode, 0);
11373
- fiber.return = returnFiber;
11374
- runWithFiberInDEV(fiber, function () {
11368
+ runWithFiberInDEV(workInProgress, function () {
11375
11369
  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);
11376
11370
  });
11377
11371
  };
@@ -11968,7 +11962,7 @@ function createChildReconciler(shouldTrackSideEffects) {
11968
11962
  */
11969
11963
 
11970
11964
 
11971
- function warnOnInvalidKey(child, knownKeys, returnFiber) {
11965
+ function warnOnInvalidKey(returnFiber, workInProgress, child, knownKeys) {
11972
11966
  {
11973
11967
  if (typeof child !== 'object' || child === null) {
11974
11968
  return knownKeys;
@@ -11977,7 +11971,7 @@ function createChildReconciler(shouldTrackSideEffects) {
11977
11971
  switch (child.$$typeof) {
11978
11972
  case REACT_ELEMENT_TYPE:
11979
11973
  case REACT_PORTAL_TYPE:
11980
- warnForMissingKey(child, returnFiber);
11974
+ warnForMissingKey(returnFiber, workInProgress, child);
11981
11975
  var key = child.key;
11982
11976
 
11983
11977
  if (typeof key !== 'string') {
@@ -11995,8 +11989,9 @@ function createChildReconciler(shouldTrackSideEffects) {
11995
11989
  break;
11996
11990
  }
11997
11991
 
11998
- 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);
11999
-
11992
+ runWithFiberInDEV(workInProgress, function () {
11993
+ 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);
11994
+ });
12000
11995
  break;
12001
11996
 
12002
11997
  case REACT_LAZY_TYPE:
@@ -12007,7 +12002,7 @@ function createChildReconciler(shouldTrackSideEffects) {
12007
12002
  resolvedChild = callLazyInitInDEV(child);
12008
12003
  }
12009
12004
 
12010
- warnOnInvalidKey(resolvedChild, knownKeys, returnFiber);
12005
+ warnOnInvalidKey(returnFiber, workInProgress, resolvedChild, knownKeys);
12011
12006
  break;
12012
12007
  }
12013
12008
  }
@@ -12032,16 +12027,7 @@ function createChildReconciler(shouldTrackSideEffects) {
12032
12027
  // (adding everything to a Map) in for every insert/move.
12033
12028
  // If you change this code, also update reconcileChildrenIterator() which
12034
12029
  // uses the same algorithm.
12035
- {
12036
- // First, validate keys.
12037
- var knownKeys = null;
12038
-
12039
- for (var i = 0; i < newChildren.length; i++) {
12040
- var child = newChildren[i];
12041
- knownKeys = warnOnInvalidKey(child, knownKeys, returnFiber);
12042
- }
12043
- }
12044
-
12030
+ var knownKeys = null;
12045
12031
  var resultingFirstChild = null;
12046
12032
  var previousNewFiber = null;
12047
12033
  var oldFiber = currentFirstChild;
@@ -12071,6 +12057,10 @@ function createChildReconciler(shouldTrackSideEffects) {
12071
12057
  break;
12072
12058
  }
12073
12059
 
12060
+ {
12061
+ knownKeys = warnOnInvalidKey(returnFiber, newFiber, newChildren[newIdx], knownKeys);
12062
+ }
12063
+
12074
12064
  if (shouldTrackSideEffects) {
12075
12065
  if (oldFiber && newFiber.alternate === null) {
12076
12066
  // We matched the slot, but we didn't reuse the existing fiber, so we
@@ -12118,6 +12108,10 @@ function createChildReconciler(shouldTrackSideEffects) {
12118
12108
  continue;
12119
12109
  }
12120
12110
 
12111
+ {
12112
+ knownKeys = warnOnInvalidKey(returnFiber, _newFiber, newChildren[newIdx], knownKeys);
12113
+ }
12114
+
12121
12115
  lastPlacedIndex = placeChild(_newFiber, lastPlacedIndex, newIdx);
12122
12116
 
12123
12117
  if (previousNewFiber === null) {
@@ -12145,6 +12139,10 @@ function createChildReconciler(shouldTrackSideEffects) {
12145
12139
  var _newFiber2 = updateFromMap(existingChildren, returnFiber, newIdx, newChildren[newIdx], lanes, debugInfo);
12146
12140
 
12147
12141
  if (_newFiber2 !== null) {
12142
+ {
12143
+ knownKeys = warnOnInvalidKey(returnFiber, _newFiber2, newChildren[newIdx], knownKeys);
12144
+ }
12145
+
12148
12146
  if (shouldTrackSideEffects) {
12149
12147
  if (_newFiber2.alternate !== null) {
12150
12148
  // The new fiber is a work in progress, but if there exists a
@@ -12239,11 +12237,7 @@ function createChildReconciler(shouldTrackSideEffects) {
12239
12237
  var knownKeys = null;
12240
12238
  var step = newChildren.next();
12241
12239
 
12242
- {
12243
- knownKeys = warnOnInvalidKey(step.value, knownKeys, returnFiber);
12244
- }
12245
-
12246
- for (; oldFiber !== null && !step.done; newIdx++, step = newChildren.next(), knownKeys = warnOnInvalidKey(step.value, knownKeys, returnFiber) ) {
12240
+ for (; oldFiber !== null && !step.done; newIdx++, step = newChildren.next()) {
12247
12241
  if (oldFiber.index > newIdx) {
12248
12242
  nextOldFiber = oldFiber;
12249
12243
  oldFiber = null;
@@ -12265,6 +12259,10 @@ function createChildReconciler(shouldTrackSideEffects) {
12265
12259
  break;
12266
12260
  }
12267
12261
 
12262
+ {
12263
+ knownKeys = warnOnInvalidKey(returnFiber, newFiber, step.value, knownKeys);
12264
+ }
12265
+
12268
12266
  if (shouldTrackSideEffects) {
12269
12267
  if (oldFiber && newFiber.alternate === null) {
12270
12268
  // We matched the slot, but we didn't reuse the existing fiber, so we
@@ -12305,13 +12303,17 @@ function createChildReconciler(shouldTrackSideEffects) {
12305
12303
  if (oldFiber === null) {
12306
12304
  // If we don't have any more existing children we can choose a fast path
12307
12305
  // since the rest will all be insertions.
12308
- for (; !step.done; newIdx++, step = newChildren.next(), knownKeys = warnOnInvalidKey(step.value, knownKeys, returnFiber) ) {
12306
+ for (; !step.done; newIdx++, step = newChildren.next()) {
12309
12307
  var _newFiber3 = createChild(returnFiber, step.value, lanes, debugInfo);
12310
12308
 
12311
12309
  if (_newFiber3 === null) {
12312
12310
  continue;
12313
12311
  }
12314
12312
 
12313
+ {
12314
+ knownKeys = warnOnInvalidKey(returnFiber, _newFiber3, step.value, knownKeys);
12315
+ }
12316
+
12315
12317
  lastPlacedIndex = placeChild(_newFiber3, lastPlacedIndex, newIdx);
12316
12318
 
12317
12319
  if (previousNewFiber === null) {
@@ -12335,10 +12337,14 @@ function createChildReconciler(shouldTrackSideEffects) {
12335
12337
 
12336
12338
  var existingChildren = mapRemainingChildren(oldFiber); // Keep scanning and use the map to restore deleted items as moves.
12337
12339
 
12338
- for (; !step.done; newIdx++, step = newChildren.next(), knownKeys = warnOnInvalidKey(step.value, knownKeys, returnFiber) ) {
12340
+ for (; !step.done; newIdx++, step = newChildren.next()) {
12339
12341
  var _newFiber4 = updateFromMap(existingChildren, returnFiber, newIdx, step.value, lanes, debugInfo);
12340
12342
 
12341
12343
  if (_newFiber4 !== null) {
12344
+ {
12345
+ knownKeys = warnOnInvalidKey(returnFiber, _newFiber4, step.value, knownKeys);
12346
+ }
12347
+
12342
12348
  if (shouldTrackSideEffects) {
12343
12349
  if (_newFiber4.alternate !== null) {
12344
12350
  // The new fiber is a work in progress, but if there exists a
@@ -35384,8 +35390,25 @@ function getResource(type, currentProps, pendingProps, currentResource) {
35384
35390
 
35385
35391
  _styles.set(_key, _resource);
35386
35392
 
35393
+ var instance = ownerDocument.querySelector(getStylesheetSelectorFromKey(_key));
35394
+
35395
+ if (instance) {
35396
+ var loadingState = instance._p;
35397
+
35398
+ if (loadingState) ; else {
35399
+ // This instance is already loaded
35400
+ _resource.instance = instance;
35401
+ _resource.state.loading = Loaded | Inserted;
35402
+ }
35403
+ }
35404
+
35387
35405
  if (!preloadPropsMap.has(_key)) {
35388
- preloadStylesheet(ownerDocument, _key, preloadPropsFromStylesheet(qualifiedProps), _resource.state);
35406
+ var preloadProps = preloadPropsFromStylesheet(qualifiedProps);
35407
+ preloadPropsMap.set(_key, preloadProps);
35408
+
35409
+ if (!instance) {
35410
+ preloadStylesheet(ownerDocument, _key, preloadProps, _resource.state);
35411
+ }
35389
35412
  }
35390
35413
  }
35391
35414
 
@@ -35532,31 +35555,24 @@ function stylesheetPropsFromRawProps(rawProps) {
35532
35555
  }
35533
35556
 
35534
35557
  function preloadStylesheet(ownerDocument, key, preloadProps, state) {
35535
- preloadPropsMap.set(key, preloadProps);
35536
-
35537
- if (!ownerDocument.querySelector(getStylesheetSelectorFromKey(key))) {
35538
- // There is no matching stylesheet instance in the Document.
35539
- // We will insert a preload now to kick off loading because
35540
- // we expect this stylesheet to commit
35541
- var preloadEl = ownerDocument.querySelector(getPreloadStylesheetSelectorFromKey(key));
35542
-
35543
- if (preloadEl) {
35544
- // If we find a preload already it was SSR'd and we won't have an actual
35545
- // loading state to track. For now we will just assume it is loaded
35546
- state.loading = Loaded;
35547
- } else {
35548
- var instance = ownerDocument.createElement('link');
35549
- state.preload = instance;
35550
- instance.addEventListener('load', function () {
35551
- return state.loading |= Loaded;
35552
- });
35553
- instance.addEventListener('error', function () {
35554
- return state.loading |= Errored;
35555
- });
35556
- setInitialProperties(instance, 'link', preloadProps);
35557
- markNodeAsHoistable(instance);
35558
- ownerDocument.head.appendChild(instance);
35559
- }
35558
+ var preloadEl = ownerDocument.querySelector(getPreloadStylesheetSelectorFromKey(key));
35559
+
35560
+ if (preloadEl) {
35561
+ // If we find a preload already it was SSR'd and we won't have an actual
35562
+ // loading state to track. For now we will just assume it is loaded
35563
+ state.loading = Loaded;
35564
+ } else {
35565
+ var instance = ownerDocument.createElement('link');
35566
+ state.preload = instance;
35567
+ instance.addEventListener('load', function () {
35568
+ return state.loading |= Loaded;
35569
+ });
35570
+ instance.addEventListener('error', function () {
35571
+ return state.loading |= Errored;
35572
+ });
35573
+ setInitialProperties(instance, 'link', preloadProps);
35574
+ markNodeAsHoistable(instance);
35575
+ ownerDocument.head.appendChild(instance);
35560
35576
  }
35561
35577
  }
35562
35578
 
@@ -36424,7 +36440,7 @@ identifierPrefix, onUncaughtError, onCaughtError, onRecoverableError, transition
36424
36440
  return root;
36425
36441
  }
36426
36442
 
36427
- var ReactVersion = '19.0.0-rc-cc1ec60d0d-20240607';
36443
+ var ReactVersion = '19.0.0-rc-20b6f4c0e8-20240607';
36428
36444
 
36429
36445
  // Might add PROFILE later.
36430
36446
 
@@ -3082,7 +3082,7 @@ function createChildReconciler(shouldTrackSideEffects) {
3082
3082
  nextOldFiber = null,
3083
3083
  step = newChildren.next();
3084
3084
  null !== oldFiber && !step.done;
3085
- newIdx++, step = newChildren.next(), null
3085
+ newIdx++, step = newChildren.next()
3086
3086
  ) {
3087
3087
  oldFiber.index > newIdx
3088
3088
  ? ((nextOldFiber = oldFiber), (oldFiber = null))
@@ -3110,7 +3110,7 @@ function createChildReconciler(shouldTrackSideEffects) {
3110
3110
  resultingFirstChild
3111
3111
  );
3112
3112
  if (null === oldFiber) {
3113
- for (; !step.done; newIdx++, step = newChildren.next(), null)
3113
+ for (; !step.done; newIdx++, step = newChildren.next())
3114
3114
  (step = createChild(returnFiber, step.value, lanes)),
3115
3115
  null !== step &&
3116
3116
  ((currentFirstChild = placeChild(step, currentFirstChild, newIdx)),
@@ -3124,7 +3124,7 @@ function createChildReconciler(shouldTrackSideEffects) {
3124
3124
  for (
3125
3125
  oldFiber = mapRemainingChildren(oldFiber);
3126
3126
  !step.done;
3127
- newIdx++, step = newChildren.next(), null
3127
+ newIdx++, step = newChildren.next()
3128
3128
  )
3129
3129
  (step = updateFromMap(oldFiber, returnFiber, newIdx, step.value, lanes)),
3130
3130
  null !== step &&
@@ -13413,20 +13413,20 @@ function getResource(type, currentProps, pendingProps, currentResource) {
13413
13413
  case "style":
13414
13414
  return "string" === typeof pendingProps.precedence &&
13415
13415
  "string" === typeof pendingProps.href
13416
- ? ((pendingProps = getStyleKey(pendingProps.href)),
13417
- (JSCompiler_inline_result = getResourcesFromRoot(
13416
+ ? ((currentProps = getStyleKey(pendingProps.href)),
13417
+ (pendingProps = getResourcesFromRoot(
13418
13418
  JSCompiler_inline_result
13419
13419
  ).hoistableStyles),
13420
- (currentProps = JSCompiler_inline_result.get(pendingProps)),
13421
- currentProps ||
13422
- ((currentProps = {
13420
+ (currentResource = pendingProps.get(currentProps)),
13421
+ currentResource ||
13422
+ ((currentResource = {
13423
13423
  type: "style",
13424
13424
  instance: null,
13425
13425
  count: 0,
13426
13426
  state: null
13427
13427
  }),
13428
- JSCompiler_inline_result.set(pendingProps, currentProps)),
13429
- currentProps)
13428
+ pendingProps.set(currentProps, currentResource)),
13429
+ currentResource)
13430
13430
  : { type: "void", instance: null, count: 0, state: null };
13431
13431
  case "link":
13432
13432
  if (
@@ -13449,22 +13449,31 @@ function getResource(type, currentProps, pendingProps, currentResource) {
13449
13449
  state: { loading: 0, preload: null }
13450
13450
  }),
13451
13451
  styles$229.set(type, resource$230),
13452
+ (styles$229 = JSCompiler_inline_result.querySelector(
13453
+ getStylesheetSelectorFromKey(type)
13454
+ )) &&
13455
+ !styles$229._p &&
13456
+ ((resource$230.instance = styles$229),
13457
+ (resource$230.state.loading = 5)),
13452
13458
  preloadPropsMap.has(type) ||
13453
- preloadStylesheet(
13454
- JSCompiler_inline_result,
13455
- type,
13456
- {
13457
- rel: "preload",
13458
- as: "style",
13459
- href: pendingProps.href,
13460
- crossOrigin: pendingProps.crossOrigin,
13461
- integrity: pendingProps.integrity,
13462
- media: pendingProps.media,
13463
- hrefLang: pendingProps.hrefLang,
13464
- referrerPolicy: pendingProps.referrerPolicy
13465
- },
13466
- resource$230.state
13467
- ));
13459
+ ((pendingProps = {
13460
+ rel: "preload",
13461
+ as: "style",
13462
+ href: pendingProps.href,
13463
+ crossOrigin: pendingProps.crossOrigin,
13464
+ integrity: pendingProps.integrity,
13465
+ media: pendingProps.media,
13466
+ hrefLang: pendingProps.hrefLang,
13467
+ referrerPolicy: pendingProps.referrerPolicy
13468
+ }),
13469
+ preloadPropsMap.set(type, pendingProps),
13470
+ styles$229 ||
13471
+ preloadStylesheet(
13472
+ JSCompiler_inline_result,
13473
+ type,
13474
+ pendingProps,
13475
+ resource$230.state
13476
+ )));
13468
13477
  if (currentProps && null === currentResource)
13469
13478
  throw Error(formatProdErrorMessage(528, ""));
13470
13479
  return resource$230;
@@ -13480,20 +13489,20 @@ function getResource(type, currentProps, pendingProps, currentResource) {
13480
13489
  currentProps &&
13481
13490
  "function" !== typeof currentProps &&
13482
13491
  "symbol" !== typeof currentProps
13483
- ? ((pendingProps = getScriptKey(pendingProps)),
13484
- (JSCompiler_inline_result = getResourcesFromRoot(
13492
+ ? ((currentProps = getScriptKey(pendingProps)),
13493
+ (pendingProps = getResourcesFromRoot(
13485
13494
  JSCompiler_inline_result
13486
13495
  ).hoistableScripts),
13487
- (currentProps = JSCompiler_inline_result.get(pendingProps)),
13488
- currentProps ||
13489
- ((currentProps = {
13496
+ (currentResource = pendingProps.get(currentProps)),
13497
+ currentResource ||
13498
+ ((currentResource = {
13490
13499
  type: "script",
13491
13500
  instance: null,
13492
13501
  count: 0,
13493
13502
  state: null
13494
13503
  }),
13495
- JSCompiler_inline_result.set(pendingProps, currentProps)),
13496
- currentProps)
13504
+ pendingProps.set(currentProps, currentResource)),
13505
+ currentResource)
13497
13506
  : { type: "void", instance: null, count: 0, state: null }
13498
13507
  );
13499
13508
  default:
@@ -13513,21 +13522,19 @@ function stylesheetPropsFromRawProps(rawProps) {
13513
13522
  });
13514
13523
  }
13515
13524
  function preloadStylesheet(ownerDocument, key, preloadProps, state) {
13516
- preloadPropsMap.set(key, preloadProps);
13517
- ownerDocument.querySelector(getStylesheetSelectorFromKey(key)) ||
13518
- (ownerDocument.querySelector('link[rel="preload"][as="style"][' + key + "]")
13519
- ? (state.loading = 1)
13520
- : ((key = ownerDocument.createElement("link")),
13521
- (state.preload = key),
13522
- key.addEventListener("load", function () {
13523
- return (state.loading |= 1);
13524
- }),
13525
- key.addEventListener("error", function () {
13526
- return (state.loading |= 2);
13527
- }),
13528
- setInitialProperties(key, "link", preloadProps),
13529
- markNodeAsHoistable(key),
13530
- ownerDocument.head.appendChild(key)));
13525
+ ownerDocument.querySelector('link[rel="preload"][as="style"][' + key + "]")
13526
+ ? (state.loading = 1)
13527
+ : ((key = ownerDocument.createElement("link")),
13528
+ (state.preload = key),
13529
+ key.addEventListener("load", function () {
13530
+ return (state.loading |= 1);
13531
+ }),
13532
+ key.addEventListener("error", function () {
13533
+ return (state.loading |= 2);
13534
+ }),
13535
+ setInitialProperties(key, "link", preloadProps),
13536
+ markNodeAsHoistable(key),
13537
+ ownerDocument.head.appendChild(key));
13531
13538
  }
13532
13539
  function getScriptKey(src) {
13533
13540
  return '[src="' + escapeSelectorAttributeValueInsideDoubleQuotes(src) + '"]';
@@ -14626,14 +14633,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
14626
14633
  };
14627
14634
  var isomorphicReactPackageVersion$jscomp$inline_1651 = React.version;
14628
14635
  if (
14629
- "19.0.0-rc-cc1ec60d0d-20240607" !==
14636
+ "19.0.0-rc-20b6f4c0e8-20240607" !==
14630
14637
  isomorphicReactPackageVersion$jscomp$inline_1651
14631
14638
  )
14632
14639
  throw Error(
14633
14640
  formatProdErrorMessage(
14634
14641
  527,
14635
14642
  isomorphicReactPackageVersion$jscomp$inline_1651,
14636
- "19.0.0-rc-cc1ec60d0d-20240607"
14643
+ "19.0.0-rc-20b6f4c0e8-20240607"
14637
14644
  )
14638
14645
  );
14639
14646
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -14652,7 +14659,7 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
14652
14659
  var devToolsConfig$jscomp$inline_1658 = {
14653
14660
  findFiberByHostInstance: getClosestInstanceFromNode,
14654
14661
  bundleType: 0,
14655
- version: "19.0.0-rc-cc1ec60d0d-20240607",
14662
+ version: "19.0.0-rc-20b6f4c0e8-20240607",
14656
14663
  rendererPackageName: "react-dom"
14657
14664
  };
14658
14665
  var internals$jscomp$inline_2036 = {
@@ -14682,7 +14689,7 @@ var internals$jscomp$inline_2036 = {
14682
14689
  scheduleRoot: null,
14683
14690
  setRefreshHandler: null,
14684
14691
  getCurrentFiber: null,
14685
- reconcilerVersion: "19.0.0-rc-cc1ec60d0d-20240607"
14692
+ reconcilerVersion: "19.0.0-rc-20b6f4c0e8-20240607"
14686
14693
  };
14687
14694
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
14688
14695
  var hook$jscomp$inline_2037 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -14788,4 +14795,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
14788
14795
  listenToAllSupportedEvents(container);
14789
14796
  return new ReactDOMHydrationRoot(initialChildren);
14790
14797
  };
14791
- exports.version = "19.0.0-rc-cc1ec60d0d-20240607";
14798
+ exports.version = "19.0.0-rc-20b6f4c0e8-20240607";