@@ -381,40 +381,42 @@ function addTransitionType(type) {
381381 } else startTransition ( addTransitionType . bind ( null , type ) ) ;
382382 }
383383}
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
414394 ) ;
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 ;
418420exports . Component = Component ;
419421exports . Fragment = REACT_FRAGMENT_TYPE ;
420422exports . Profiler = REACT_PROFILER_TYPE ;
@@ -604,7 +606,7 @@ exports.useSyncExternalStore = function (
604606exports . useTransition = function ( ) {
605607 return ReactSharedInternals . H . useTransition ( ) ;
606608} ;
607- exports . version = "19.2.0-www-classic-0e10ee90 -20250912" ;
609+ exports . version = "19.2.0-www-classic-8a8e9a7e -20250912" ;
608610"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
609611 "function" ===
610612 typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ . registerInternalModuleStop &&
0 commit comments