@@ -94,9 +94,8 @@ var pureComponentPrototype = (PureComponent.prototype = new ComponentDummy());
9494pureComponentPrototype . constructor = PureComponent ;
9595assign ( pureComponentPrototype , Component . prototype ) ;
9696pureComponentPrototype . isPureReactComponent = ! 0 ;
97- var isArrayImpl = Array . isArray ;
98- function noop ( ) { }
99- var ReactSharedInternals = { H : null , A : null , T : null , S : null } ,
97+ var isArrayImpl = Array . isArray ,
98+ ReactSharedInternals = { H : null , A : null , T : null , S : null } ,
10099 hasOwnProperty = Object . prototype . hasOwnProperty ;
101100function ReactElement ( type , key , self , source , owner , props ) {
102101 self = props . ref ;
@@ -157,6 +156,7 @@ function getElementKey(element, index) {
157156 ? escape ( "" + element . key )
158157 : index . toString ( 36 ) ;
159158}
159+ function noop$1 ( ) { }
160160function resolveThenable ( thenable ) {
161161 switch ( thenable . status ) {
162162 case "fulfilled" :
@@ -166,7 +166,7 @@ function resolveThenable(thenable) {
166166 default :
167167 switch (
168168 ( "string" === typeof thenable . status
169- ? thenable . then ( noop , noop )
169+ ? thenable . then ( noop$1 , noop$1 )
170170 : ( ( thenable . status = "pending" ) ,
171171 thenable . then (
172172 function ( fulfilledValue ) {
@@ -387,6 +387,7 @@ function startTransition(scope, options) {
387387 ( ReactSharedInternals . T = prevTransition ) ;
388388 }
389389}
390+ function noop ( ) { }
390391function addTransitionType ( type ) {
391392 if ( enableViewTransition ) {
392393 var transition = ReactSharedInternals . T ;
@@ -639,7 +640,7 @@ exports.useSyncExternalStore = function (
639640exports . useTransition = function ( ) {
640641 return ReactSharedInternals . H . useTransition ( ) ;
641642} ;
642- exports . version = "19.2.0-www-classic-21fdf308 -20250508" ;
643+ exports . version = "19.2.0-www-classic-9518f118 -20250508" ;
643644"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
644645 "function" ===
645646 typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ . registerInternalModuleStop &&
0 commit comments