77 * @noflow
88 * @nolint
99 * @preventMunge
10- * @generated SignedSource<<77ef7f9c50bfdc1ebd871ef8296a1aae >>
10+ * @generated SignedSource<<eeda2335f11ef85ccbd49c18671110ee >>
1111 */
1212
1313"use strict" ;
@@ -618,9 +618,6 @@ function getLanesToRetrySynchronouslyOnError(root, originallyAttemptedLanes) {
618618 root = root . pendingLanes & - 536870913 ;
619619 return 0 !== root ? root : root & 536870912 ? 536870912 : 0 ;
620620}
621- function includesBlockingLane ( root , lanes ) {
622- return 0 !== ( root . current . mode & 32 ) ? ! 1 : 0 !== ( lanes & 60 ) ;
623- }
624621function claimNextTransitionLane ( ) {
625622 var lane = nextTransitionLane ;
626623 nextTransitionLane <<= 1 ;
@@ -2706,12 +2703,11 @@ function updateSyncExternalStore(subscribe, getSnapshot) {
27062703 { destroy : void 0 } ,
27072704 null
27082705 ) ;
2709- subscribe = workInProgressRoot ;
2710- if ( null === subscribe )
2706+ if ( null === workInProgressRoot )
27112707 throw Error (
27122708 "Expected a work-in-progress root. This is a bug in React. Please file an issue."
27132709 ) ;
2714- includesBlockingLane ( subscribe , renderLanes ) ||
2710+ 0 !== ( renderLanes & 60 ) ||
27152711 pushStoreConsistencyCheck ( fiber , getSnapshot , nextSnapshot ) ;
27162712 }
27172713 return nextSnapshot ;
@@ -3375,23 +3371,22 @@ var HooksDispatcherOnMount = {
33753371 var fiber = currentlyRenderingFiber$1 ,
33763372 hook = mountWorkInProgressHook ( ) ;
33773373 var nextSnapshot = getSnapshot ( ) ;
3378- var root = workInProgressRoot ;
3379- if ( null === root )
3374+ if ( null === workInProgressRoot )
33803375 throw Error (
33813376 "Expected a work-in-progress root. This is a bug in React. Please file an issue."
33823377 ) ;
3383- includesBlockingLane ( root , workInProgressRootRenderLanes ) ||
3378+ 0 !== ( workInProgressRootRenderLanes & 60 ) ||
33843379 pushStoreConsistencyCheck ( fiber , getSnapshot , nextSnapshot ) ;
33853380 hook . memoizedState = nextSnapshot ;
3386- root = { value : nextSnapshot , getSnapshot : getSnapshot } ;
3387- hook . queue = root ;
3388- mountEffect ( subscribeToStore . bind ( null , fiber , root , subscribe ) , [
3381+ var inst = { value : nextSnapshot , getSnapshot : getSnapshot } ;
3382+ hook . queue = inst ;
3383+ mountEffect ( subscribeToStore . bind ( null , fiber , inst , subscribe ) , [
33893384 subscribe
33903385 ] ) ;
33913386 fiber . flags |= 2048 ;
33923387 pushEffect (
33933388 9 ,
3394- updateStoreInstance . bind ( null , fiber , root , nextSnapshot , getSnapshot ) ,
3389+ updateStoreInstance . bind ( null , fiber , inst , nextSnapshot , getSnapshot ) ,
33953390 { destroy : void 0 } ,
33963391 null
33973392 ) ;
@@ -7643,9 +7638,7 @@ function performConcurrentWorkOnRoot(root, didTimeout) {
76437638 ) ;
76447639 if ( 0 === lanes ) return null ;
76457640 var exitStatus = ( didTimeout =
7646- ! includesBlockingLane ( root , lanes ) &&
7647- 0 === ( lanes & root . expiredLanes ) &&
7648- ! didTimeout )
7641+ 0 === ( lanes & 60 ) && 0 === ( lanes & root . expiredLanes ) && ! didTimeout )
76497642 ? renderRootConcurrent ( root , lanes )
76507643 : renderRootSync ( root , lanes ) ;
76517644 if ( 0 !== exitStatus ) {
@@ -7976,7 +7969,7 @@ function prepareFreshStack(root, lanes) {
79767969 workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
79777970 null ;
79787971 workInProgressRootDidIncludeRecursiveRenderUpdate = ! 1 ;
7979- 0 === ( root . current . mode & 32 ) && 0 !== ( lanes & 8 ) && ( lanes |= lanes & 32 ) ;
7972+ 0 !== ( lanes & 8 ) && ( lanes |= lanes & 32 ) ;
79807973 var allEntangledLanes = root . entangledLanes ;
79817974 if ( 0 !== allEntangledLanes )
79827975 for (
@@ -8959,23 +8952,15 @@ function createContainer(
89598952 onRecoverableError ,
89608953 null
89618954 ) ;
8962- 1 === tag
8963- ? ( ( tag = 1 ) ,
8964- ! 0 === isStrictMode && ( tag |= 24 ) ,
8965- concurrentUpdatesByDefaultOverride && ( tag |= 32 ) )
8966- : ( tag = 0 ) ;
8955+ 1 === tag ? ( ( tag = 1 ) , ! 0 === isStrictMode && ( tag |= 24 ) ) : ( tag = 0 ) ;
89678956 isStrictMode = createFiberImplClass ( 3 , null , null , tag ) ;
89688957 containerInfo . current = isStrictMode ;
89698958 isStrictMode . stateNode = containerInfo ;
8970- concurrentUpdatesByDefaultOverride = createCache ( ) ;
8971- concurrentUpdatesByDefaultOverride . refCount ++ ;
8972- containerInfo . pooledCache = concurrentUpdatesByDefaultOverride ;
8973- concurrentUpdatesByDefaultOverride . refCount ++ ;
8974- isStrictMode . memoizedState = {
8975- element : null ,
8976- isDehydrated : ! 1 ,
8977- cache : concurrentUpdatesByDefaultOverride
8978- } ;
8959+ tag = createCache ( ) ;
8960+ tag . refCount ++ ;
8961+ containerInfo . pooledCache = tag ;
8962+ tag . refCount ++ ;
8963+ isStrictMode . memoizedState = { element : null , isDehydrated : ! 1 , cache : tag } ;
89798964 initializeUpdateQueue ( isStrictMode ) ;
89808965 return containerInfo ;
89818966}
@@ -9338,19 +9323,19 @@ function wrapFiber(fiber) {
93389323 fiberToWrapper . set ( fiber , wrapper ) ) ;
93399324 return wrapper ;
93409325}
9341- var devToolsConfig$jscomp$inline_1036 = {
9326+ var devToolsConfig$jscomp$inline_1035 = {
93429327 findFiberByHostInstance : function ( ) {
93439328 throw Error ( "TestRenderer does not support findFiberByHostInstance()" ) ;
93449329 } ,
93459330 bundleType : 0 ,
9346- version : "19.0.0-native-fb-da4abf00-20240723 " ,
9331+ version : "19.0.0-native-fb-14a4699f-20240725 " ,
93479332 rendererPackageName : "react-test-renderer"
93489333} ;
9349- var internals$jscomp$inline_1213 = {
9350- bundleType : devToolsConfig$jscomp$inline_1036 . bundleType ,
9351- version : devToolsConfig$jscomp$inline_1036 . version ,
9352- rendererPackageName : devToolsConfig$jscomp$inline_1036 . rendererPackageName ,
9353- rendererConfig : devToolsConfig$jscomp$inline_1036 . rendererConfig ,
9334+ var internals$jscomp$inline_1211 = {
9335+ bundleType : devToolsConfig$jscomp$inline_1035 . bundleType ,
9336+ version : devToolsConfig$jscomp$inline_1035 . version ,
9337+ rendererPackageName : devToolsConfig$jscomp$inline_1035 . rendererPackageName ,
9338+ rendererConfig : devToolsConfig$jscomp$inline_1035 . rendererConfig ,
93549339 overrideHookState : null ,
93559340 overrideHookStateDeletePath : null ,
93569341 overrideHookStateRenamePath : null ,
@@ -9367,44 +9352,40 @@ var internals$jscomp$inline_1213 = {
93679352 return null === fiber ? null : fiber . stateNode ;
93689353 } ,
93699354 findFiberByHostInstance :
9370- devToolsConfig$jscomp$inline_1036 . findFiberByHostInstance ||
9355+ devToolsConfig$jscomp$inline_1035 . findFiberByHostInstance ||
93719356 emptyFindFiberByHostInstance ,
93729357 findHostInstancesForRefresh : null ,
93739358 scheduleRefresh : null ,
93749359 scheduleRoot : null ,
93759360 setRefreshHandler : null ,
93769361 getCurrentFiber : null ,
9377- reconcilerVersion : "19.0.0-native-fb-da4abf00-20240723 "
9362+ reconcilerVersion : "19.0.0-native-fb-14a4699f-20240725 "
93789363} ;
93799364if ( "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ ) {
9380- var hook$jscomp$inline_1214 = __REACT_DEVTOOLS_GLOBAL_HOOK__ ;
9365+ var hook$jscomp$inline_1212 = __REACT_DEVTOOLS_GLOBAL_HOOK__ ;
93819366 if (
9382- ! hook$jscomp$inline_1214 . isDisabled &&
9383- hook$jscomp$inline_1214 . supportsFiber
9367+ ! hook$jscomp$inline_1212 . isDisabled &&
9368+ hook$jscomp$inline_1212 . supportsFiber
93849369 )
93859370 try {
9386- ( rendererID = hook$jscomp$inline_1214 . inject (
9387- internals$jscomp$inline_1213
9371+ ( rendererID = hook$jscomp$inline_1212 . inject (
9372+ internals$jscomp$inline_1211
93889373 ) ) ,
9389- ( injectedHook = hook$jscomp$inline_1214 ) ;
9374+ ( injectedHook = hook$jscomp$inline_1212 ) ;
93909375 } catch ( err ) { }
93919376}
93929377exports . _Scheduler = Scheduler ;
93939378exports . act = act ;
93949379exports . create = function ( element , options ) {
93959380 var createNodeMock = defaultTestOptions . createNodeMock ,
93969381 isConcurrent = ! 1 ,
9397- isStrictMode = ! 1 ,
9398- concurrentUpdatesByDefault = null ;
9382+ isStrictMode = ! 1 ;
93999383 "object" === typeof options &&
94009384 null !== options &&
94019385 ( "function" === typeof options . createNodeMock &&
94029386 ( createNodeMock = options . createNodeMock ) ,
94039387 ( isConcurrent = options . unstable_isConcurrent ) ,
9404- ! 0 === options . unstable_strictMode && ( isStrictMode = ! 0 ) ,
9405- void 0 !== options . unstable_concurrentUpdatesByDefault &&
9406- ( concurrentUpdatesByDefault =
9407- options . unstable_concurrentUpdatesByDefault ) ) ;
9388+ ! 0 === options . unstable_strictMode && ( isStrictMode = ! 0 ) ) ;
94089389 var container = {
94099390 children : [ ] ,
94109391 createNodeMock : createNodeMock ,
@@ -9415,7 +9396,7 @@ exports.create = function (element, options) {
94159396 isConcurrent ? 1 : 0 ,
94169397 null ,
94179398 isStrictMode ,
9418- concurrentUpdatesByDefault ,
9399+ ! 1 ,
94199400 "" ,
94209401 defaultOnUncaughtError ,
94219402 defaultOnCaughtError ,
0 commit comments