@@ -89,8 +89,7 @@ var isArrayImpl = Array.isArray,
89
89
enableTransitionTracing = dynamicFeatureFlags . enableTransitionTracing ,
90
90
enableAsyncActions = dynamicFeatureFlags . enableAsyncActions ,
91
91
hasOwnProperty = Object . prototype . hasOwnProperty ,
92
- ReactCurrentOwner$1 = { current : null } ,
93
- RESERVED_PROPS$1 = { key : ! 0 , ref : ! 0 , __self : ! 0 , __source : ! 0 } ;
92
+ ReactCurrentOwner$1 = { current : null } ;
94
93
function createElement$1 ( type , config , children ) {
95
94
var propName ,
96
95
props = { } ,
@@ -101,7 +100,10 @@ function createElement$1(type, config, children) {
101
100
void 0 !== config . key && ( key = "" + config . key ) ,
102
101
config ) )
103
102
hasOwnProperty . call ( config , propName ) &&
104
- ! RESERVED_PROPS$1 . hasOwnProperty ( propName ) &&
103
+ "key" !== propName &&
104
+ "ref" !== propName &&
105
+ "__self" !== propName &&
106
+ "__source" !== propName &&
105
107
( props [ propName ] = config [ propName ] ) ;
106
108
var childrenLength = arguments . length - 2 ;
107
109
if ( 1 === childrenLength ) props . children = children ;
@@ -149,8 +151,7 @@ var ReactCurrentDispatcher = { current: null },
149
151
ReactCurrentBatchConfig : ReactCurrentBatchConfig ,
150
152
ReactCurrentOwner : ReactCurrentOwner$1
151
153
} ,
152
- ReactCurrentOwner = ReactSharedInternals . ReactCurrentOwner ,
153
- RESERVED_PROPS = { key : ! 0 , ref : ! 0 , __self : ! 0 , __source : ! 0 } ;
154
+ ReactCurrentOwner = ReactSharedInternals . ReactCurrentOwner ;
154
155
function jsx$1 ( type , config , maybeKey ) {
155
156
var propName ,
156
157
props = { } ,
@@ -161,7 +162,10 @@ function jsx$1(type, config, maybeKey) {
161
162
void 0 !== config . ref && ( ref = config . ref ) ;
162
163
for ( propName in config )
163
164
hasOwnProperty . call ( config , propName ) &&
164
- ! RESERVED_PROPS . hasOwnProperty ( propName ) &&
165
+ "key" !== propName &&
166
+ "ref" !== propName &&
167
+ "__self" !== propName &&
168
+ "__source" !== propName &&
165
169
( props [ propName ] = config [ propName ] ) ;
166
170
if ( type && type . defaultProps )
167
171
for ( propName in ( ( config = type . defaultProps ) , config ) )
@@ -386,7 +390,10 @@ exports.cloneElement = function (element, config, children) {
386
390
var defaultProps = element . type . defaultProps ;
387
391
for ( propName in config )
388
392
hasOwnProperty . call ( config , propName ) &&
389
- ! RESERVED_PROPS$1 . hasOwnProperty ( propName ) &&
393
+ "key" !== propName &&
394
+ "ref" !== propName &&
395
+ "__self" !== propName &&
396
+ "__source" !== propName &&
390
397
( props [ propName ] =
391
398
void 0 === config [ propName ] && void 0 !== defaultProps
392
399
? defaultProps [ propName ]
@@ -574,7 +581,7 @@ exports.useSyncExternalStore = function (
574
581
exports . useTransition = function ( ) {
575
582
return ReactCurrentDispatcher . current . useTransition ( ) ;
576
583
} ;
577
- exports . version = "18.3.0-www-classic-65d179d4 " ;
584
+ exports . version = "18.3.0-www-classic-a4e84017 " ;
578
585
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
579
586
"function" ===
580
587
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ . registerInternalModuleStop &&
0 commit comments