@@ -381,40 +381,42 @@ function addTransitionType(type) {
381
381
} else startTransition ( addTransitionType . bind ( null , type ) ) ;
382
382
}
383
383
}
384
- var ReactCompilerRuntime = { __proto__ : null , c : useMemoCache } ;
385
- exports . Children = {
386
- map : mapChildren ,
387
- forEach : function ( children , forEachFunc , forEachContext ) {
388
- mapChildren (
389
- children ,
390
- function ( ) {
391
- forEachFunc . apply ( this , arguments ) ;
392
- } ,
393
- forEachContext
394
- ) ;
395
- } ,
396
- count : function ( children ) {
397
- var n = 0 ;
398
- mapChildren ( children , function ( ) {
399
- n ++ ;
400
- } ) ;
401
- return n ;
402
- } ,
403
- toArray : function ( children ) {
404
- return (
405
- mapChildren ( children , function ( child ) {
406
- return child ;
407
- } ) || [ ]
408
- ) ;
409
- } ,
410
- only : function ( children ) {
411
- if ( ! isValidElement ( children ) )
412
- throw Error (
413
- "React.Children.only expected to receive a single React element child."
384
+ var ReactCompilerRuntime = { __proto__ : null , c : useMemoCache } ,
385
+ Children = {
386
+ map : mapChildren ,
387
+ forEach : function ( children , forEachFunc , forEachContext ) {
388
+ mapChildren (
389
+ children ,
390
+ function ( ) {
391
+ forEachFunc . apply ( this , arguments ) ;
392
+ } ,
393
+ forEachContext
414
394
) ;
415
- return children ;
416
- }
417
- } ;
395
+ } ,
396
+ count : function ( children ) {
397
+ var n = 0 ;
398
+ mapChildren ( children , function ( ) {
399
+ n ++ ;
400
+ } ) ;
401
+ return n ;
402
+ } ,
403
+ toArray : function ( children ) {
404
+ return (
405
+ mapChildren ( children , function ( child ) {
406
+ return child ;
407
+ } ) || [ ]
408
+ ) ;
409
+ } ,
410
+ only : function ( children ) {
411
+ if ( ! isValidElement ( children ) )
412
+ throw Error (
413
+ "React.Children.only expected to receive a single React element child."
414
+ ) ;
415
+ return children ;
416
+ }
417
+ } ;
418
+ exports . Activity = REACT_ACTIVITY_TYPE ;
419
+ exports . Children = Children ;
418
420
exports . Component = Component ;
419
421
exports . Fragment = REACT_FRAGMENT_TYPE ;
420
422
exports . Profiler = REACT_PROFILER_TYPE ;
@@ -604,7 +606,7 @@ exports.useSyncExternalStore = function (
604
606
exports . useTransition = function ( ) {
605
607
return ReactSharedInternals . H . useTransition ( ) ;
606
608
} ;
607
- exports . version = "19.2.0-www-classic-0e10ee90 -20250912" ;
609
+ exports . version = "19.2.0-www-classic-8a8e9a7e -20250912" ;
608
610
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
609
611
"function" ===
610
612
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ . registerInternalModuleStop &&
0 commit comments