Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-conte.../plugins/wpforms-.../assets/js/integrat.../divi
File: formselector.es5.js
[3500] Fix | Delete
if (key !== 'children' && key !== 'key') {
[3501] Fix | Delete
setCurrentlyValidatingElement$1(fragment);
[3502] Fix | Delete
[3503] Fix | Delete
error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);
[3504] Fix | Delete
[3505] Fix | Delete
setCurrentlyValidatingElement$1(null);
[3506] Fix | Delete
break;
[3507] Fix | Delete
}
[3508] Fix | Delete
}
[3509] Fix | Delete
[3510] Fix | Delete
if (fragment.ref !== null) {
[3511] Fix | Delete
setCurrentlyValidatingElement$1(fragment);
[3512] Fix | Delete
[3513] Fix | Delete
error('Invalid attribute `ref` supplied to `React.Fragment`.');
[3514] Fix | Delete
[3515] Fix | Delete
setCurrentlyValidatingElement$1(null);
[3516] Fix | Delete
}
[3517] Fix | Delete
}
[3518] Fix | Delete
}
[3519] Fix | Delete
function createElementWithValidation(type, props, children) {
[3520] Fix | Delete
var validType = isValidElementType(type); // We warn in this case but don't throw. We expect the element creation to
[3521] Fix | Delete
// succeed and there will likely be errors in render.
[3522] Fix | Delete
[3523] Fix | Delete
if (!validType) {
[3524] Fix | Delete
var info = '';
[3525] Fix | Delete
[3526] Fix | Delete
if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {
[3527] Fix | Delete
info += ' You likely forgot to export your component from the file ' + "it's defined in, or you might have mixed up default and named imports.";
[3528] Fix | Delete
}
[3529] Fix | Delete
[3530] Fix | Delete
var sourceInfo = getSourceInfoErrorAddendumForProps(props);
[3531] Fix | Delete
[3532] Fix | Delete
if (sourceInfo) {
[3533] Fix | Delete
info += sourceInfo;
[3534] Fix | Delete
} else {
[3535] Fix | Delete
info += getDeclarationErrorAddendum();
[3536] Fix | Delete
}
[3537] Fix | Delete
[3538] Fix | Delete
var typeString;
[3539] Fix | Delete
[3540] Fix | Delete
if (type === null) {
[3541] Fix | Delete
typeString = 'null';
[3542] Fix | Delete
} else if (isArray(type)) {
[3543] Fix | Delete
typeString = 'array';
[3544] Fix | Delete
} else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) {
[3545] Fix | Delete
typeString = "<" + (getComponentNameFromType(type.type) || 'Unknown') + " />";
[3546] Fix | Delete
info = ' Did you accidentally export a JSX literal instead of a component?';
[3547] Fix | Delete
} else {
[3548] Fix | Delete
typeString = typeof type;
[3549] Fix | Delete
}
[3550] Fix | Delete
[3551] Fix | Delete
{
[3552] Fix | Delete
error('React.createElement: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', typeString, info);
[3553] Fix | Delete
}
[3554] Fix | Delete
}
[3555] Fix | Delete
[3556] Fix | Delete
var element = createElement.apply(this, arguments); // The result can be nullish if a mock or a custom function is used.
[3557] Fix | Delete
// TODO: Drop this when these are no longer allowed as the type argument.
[3558] Fix | Delete
[3559] Fix | Delete
if (element == null) {
[3560] Fix | Delete
return element;
[3561] Fix | Delete
} // Skip key warning if the type isn't valid since our key validation logic
[3562] Fix | Delete
// doesn't expect a non-string/function type and can throw confusing errors.
[3563] Fix | Delete
// We don't want exception behavior to differ between dev and prod.
[3564] Fix | Delete
// (Rendering will throw with a helpful message and as soon as the type is
[3565] Fix | Delete
// fixed, the key warnings will appear.)
[3566] Fix | Delete
[3567] Fix | Delete
[3568] Fix | Delete
if (validType) {
[3569] Fix | Delete
for (var i = 2; i < arguments.length; i++) {
[3570] Fix | Delete
validateChildKeys(arguments[i], type);
[3571] Fix | Delete
}
[3572] Fix | Delete
}
[3573] Fix | Delete
[3574] Fix | Delete
if (type === REACT_FRAGMENT_TYPE) {
[3575] Fix | Delete
validateFragmentProps(element);
[3576] Fix | Delete
} else {
[3577] Fix | Delete
validatePropTypes(element);
[3578] Fix | Delete
}
[3579] Fix | Delete
[3580] Fix | Delete
return element;
[3581] Fix | Delete
}
[3582] Fix | Delete
var didWarnAboutDeprecatedCreateFactory = false;
[3583] Fix | Delete
function createFactoryWithValidation(type) {
[3584] Fix | Delete
var validatedFactory = createElementWithValidation.bind(null, type);
[3585] Fix | Delete
validatedFactory.type = type;
[3586] Fix | Delete
[3587] Fix | Delete
{
[3588] Fix | Delete
if (!didWarnAboutDeprecatedCreateFactory) {
[3589] Fix | Delete
didWarnAboutDeprecatedCreateFactory = true;
[3590] Fix | Delete
[3591] Fix | Delete
warn('React.createFactory() is deprecated and will be removed in ' + 'a future major release. Consider using JSX ' + 'or use React.createElement() directly instead.');
[3592] Fix | Delete
} // Legacy hook: remove it
[3593] Fix | Delete
[3594] Fix | Delete
[3595] Fix | Delete
Object.defineProperty(validatedFactory, 'type', {
[3596] Fix | Delete
enumerable: false,
[3597] Fix | Delete
get: function () {
[3598] Fix | Delete
warn('Factory.type is deprecated. Access the class directly ' + 'before passing it to createFactory.');
[3599] Fix | Delete
[3600] Fix | Delete
Object.defineProperty(this, 'type', {
[3601] Fix | Delete
value: type
[3602] Fix | Delete
});
[3603] Fix | Delete
return type;
[3604] Fix | Delete
}
[3605] Fix | Delete
});
[3606] Fix | Delete
}
[3607] Fix | Delete
[3608] Fix | Delete
return validatedFactory;
[3609] Fix | Delete
}
[3610] Fix | Delete
function cloneElementWithValidation(element, props, children) {
[3611] Fix | Delete
var newElement = cloneElement.apply(this, arguments);
[3612] Fix | Delete
[3613] Fix | Delete
for (var i = 2; i < arguments.length; i++) {
[3614] Fix | Delete
validateChildKeys(arguments[i], newElement.type);
[3615] Fix | Delete
}
[3616] Fix | Delete
[3617] Fix | Delete
validatePropTypes(newElement);
[3618] Fix | Delete
return newElement;
[3619] Fix | Delete
}
[3620] Fix | Delete
[3621] Fix | Delete
function startTransition(scope, options) {
[3622] Fix | Delete
var prevTransition = ReactCurrentBatchConfig.transition;
[3623] Fix | Delete
ReactCurrentBatchConfig.transition = {};
[3624] Fix | Delete
var currentTransition = ReactCurrentBatchConfig.transition;
[3625] Fix | Delete
[3626] Fix | Delete
{
[3627] Fix | Delete
ReactCurrentBatchConfig.transition._updatedFibers = new Set();
[3628] Fix | Delete
}
[3629] Fix | Delete
[3630] Fix | Delete
try {
[3631] Fix | Delete
scope();
[3632] Fix | Delete
} finally {
[3633] Fix | Delete
ReactCurrentBatchConfig.transition = prevTransition;
[3634] Fix | Delete
[3635] Fix | Delete
{
[3636] Fix | Delete
if (prevTransition === null && currentTransition._updatedFibers) {
[3637] Fix | Delete
var updatedFibersCount = currentTransition._updatedFibers.size;
[3638] Fix | Delete
[3639] Fix | Delete
if (updatedFibersCount > 10) {
[3640] Fix | Delete
warn('Detected a large number of updates inside startTransition. ' + 'If this is due to a subscription please re-write it to use React provided hooks. ' + 'Otherwise concurrent mode guarantees are off the table.');
[3641] Fix | Delete
}
[3642] Fix | Delete
[3643] Fix | Delete
currentTransition._updatedFibers.clear();
[3644] Fix | Delete
}
[3645] Fix | Delete
}
[3646] Fix | Delete
}
[3647] Fix | Delete
}
[3648] Fix | Delete
[3649] Fix | Delete
var didWarnAboutMessageChannel = false;
[3650] Fix | Delete
var enqueueTaskImpl = null;
[3651] Fix | Delete
function enqueueTask(task) {
[3652] Fix | Delete
if (enqueueTaskImpl === null) {
[3653] Fix | Delete
try {
[3654] Fix | Delete
// read require off the module object to get around the bundlers.
[3655] Fix | Delete
// we don't want them to detect a require and bundle a Node polyfill.
[3656] Fix | Delete
var requireString = ('require' + Math.random()).slice(0, 7);
[3657] Fix | Delete
var nodeRequire = module && module[requireString]; // assuming we're in node, let's try to get node's
[3658] Fix | Delete
// version of setImmediate, bypassing fake timers if any.
[3659] Fix | Delete
[3660] Fix | Delete
enqueueTaskImpl = nodeRequire.call(module, 'timers').setImmediate;
[3661] Fix | Delete
} catch (_err) {
[3662] Fix | Delete
// we're in a browser
[3663] Fix | Delete
// we can't use regular timers because they may still be faked
[3664] Fix | Delete
// so we try MessageChannel+postMessage instead
[3665] Fix | Delete
enqueueTaskImpl = function (callback) {
[3666] Fix | Delete
{
[3667] Fix | Delete
if (didWarnAboutMessageChannel === false) {
[3668] Fix | Delete
didWarnAboutMessageChannel = true;
[3669] Fix | Delete
[3670] Fix | Delete
if (typeof MessageChannel === 'undefined') {
[3671] Fix | Delete
error('This browser does not have a MessageChannel implementation, ' + 'so enqueuing tasks via await act(async () => ...) will fail. ' + 'Please file an issue at https://github.com/facebook/react/issues ' + 'if you encounter this warning.');
[3672] Fix | Delete
}
[3673] Fix | Delete
}
[3674] Fix | Delete
}
[3675] Fix | Delete
[3676] Fix | Delete
var channel = new MessageChannel();
[3677] Fix | Delete
channel.port1.onmessage = callback;
[3678] Fix | Delete
channel.port2.postMessage(undefined);
[3679] Fix | Delete
};
[3680] Fix | Delete
}
[3681] Fix | Delete
}
[3682] Fix | Delete
[3683] Fix | Delete
return enqueueTaskImpl(task);
[3684] Fix | Delete
}
[3685] Fix | Delete
[3686] Fix | Delete
var actScopeDepth = 0;
[3687] Fix | Delete
var didWarnNoAwaitAct = false;
[3688] Fix | Delete
function act(callback) {
[3689] Fix | Delete
{
[3690] Fix | Delete
// `act` calls can be nested, so we track the depth. This represents the
[3691] Fix | Delete
// number of `act` scopes on the stack.
[3692] Fix | Delete
var prevActScopeDepth = actScopeDepth;
[3693] Fix | Delete
actScopeDepth++;
[3694] Fix | Delete
[3695] Fix | Delete
if (ReactCurrentActQueue.current === null) {
[3696] Fix | Delete
// This is the outermost `act` scope. Initialize the queue. The reconciler
[3697] Fix | Delete
// will detect the queue and use it instead of Scheduler.
[3698] Fix | Delete
ReactCurrentActQueue.current = [];
[3699] Fix | Delete
}
[3700] Fix | Delete
[3701] Fix | Delete
var prevIsBatchingLegacy = ReactCurrentActQueue.isBatchingLegacy;
[3702] Fix | Delete
var result;
[3703] Fix | Delete
[3704] Fix | Delete
try {
[3705] Fix | Delete
// Used to reproduce behavior of `batchedUpdates` in legacy mode. Only
[3706] Fix | Delete
// set to `true` while the given callback is executed, not for updates
[3707] Fix | Delete
// triggered during an async event, because this is how the legacy
[3708] Fix | Delete
// implementation of `act` behaved.
[3709] Fix | Delete
ReactCurrentActQueue.isBatchingLegacy = true;
[3710] Fix | Delete
result = callback(); // Replicate behavior of original `act` implementation in legacy mode,
[3711] Fix | Delete
// which flushed updates immediately after the scope function exits, even
[3712] Fix | Delete
// if it's an async function.
[3713] Fix | Delete
[3714] Fix | Delete
if (!prevIsBatchingLegacy && ReactCurrentActQueue.didScheduleLegacyUpdate) {
[3715] Fix | Delete
var queue = ReactCurrentActQueue.current;
[3716] Fix | Delete
[3717] Fix | Delete
if (queue !== null) {
[3718] Fix | Delete
ReactCurrentActQueue.didScheduleLegacyUpdate = false;
[3719] Fix | Delete
flushActQueue(queue);
[3720] Fix | Delete
}
[3721] Fix | Delete
}
[3722] Fix | Delete
} catch (error) {
[3723] Fix | Delete
popActScope(prevActScopeDepth);
[3724] Fix | Delete
throw error;
[3725] Fix | Delete
} finally {
[3726] Fix | Delete
ReactCurrentActQueue.isBatchingLegacy = prevIsBatchingLegacy;
[3727] Fix | Delete
}
[3728] Fix | Delete
[3729] Fix | Delete
if (result !== null && typeof result === 'object' && typeof result.then === 'function') {
[3730] Fix | Delete
var thenableResult = result; // The callback is an async function (i.e. returned a promise). Wait
[3731] Fix | Delete
// for it to resolve before exiting the current scope.
[3732] Fix | Delete
[3733] Fix | Delete
var wasAwaited = false;
[3734] Fix | Delete
var thenable = {
[3735] Fix | Delete
then: function (resolve, reject) {
[3736] Fix | Delete
wasAwaited = true;
[3737] Fix | Delete
thenableResult.then(function (returnValue) {
[3738] Fix | Delete
popActScope(prevActScopeDepth);
[3739] Fix | Delete
[3740] Fix | Delete
if (actScopeDepth === 0) {
[3741] Fix | Delete
// We've exited the outermost act scope. Recursively flush the
[3742] Fix | Delete
// queue until there's no remaining work.
[3743] Fix | Delete
recursivelyFlushAsyncActWork(returnValue, resolve, reject);
[3744] Fix | Delete
} else {
[3745] Fix | Delete
resolve(returnValue);
[3746] Fix | Delete
}
[3747] Fix | Delete
}, function (error) {
[3748] Fix | Delete
// The callback threw an error.
[3749] Fix | Delete
popActScope(prevActScopeDepth);
[3750] Fix | Delete
reject(error);
[3751] Fix | Delete
});
[3752] Fix | Delete
}
[3753] Fix | Delete
};
[3754] Fix | Delete
[3755] Fix | Delete
{
[3756] Fix | Delete
if (!didWarnNoAwaitAct && typeof Promise !== 'undefined') {
[3757] Fix | Delete
// eslint-disable-next-line no-undef
[3758] Fix | Delete
Promise.resolve().then(function () {}).then(function () {
[3759] Fix | Delete
if (!wasAwaited) {
[3760] Fix | Delete
didWarnNoAwaitAct = true;
[3761] Fix | Delete
[3762] Fix | Delete
error('You called act(async () => ...) without await. ' + 'This could lead to unexpected testing behaviour, ' + 'interleaving multiple act calls and mixing their ' + 'scopes. ' + 'You should - await act(async () => ...);');
[3763] Fix | Delete
}
[3764] Fix | Delete
});
[3765] Fix | Delete
}
[3766] Fix | Delete
}
[3767] Fix | Delete
[3768] Fix | Delete
return thenable;
[3769] Fix | Delete
} else {
[3770] Fix | Delete
var returnValue = result; // The callback is not an async function. Exit the current scope
[3771] Fix | Delete
// immediately, without awaiting.
[3772] Fix | Delete
[3773] Fix | Delete
popActScope(prevActScopeDepth);
[3774] Fix | Delete
[3775] Fix | Delete
if (actScopeDepth === 0) {
[3776] Fix | Delete
// Exiting the outermost act scope. Flush the queue.
[3777] Fix | Delete
var _queue = ReactCurrentActQueue.current;
[3778] Fix | Delete
[3779] Fix | Delete
if (_queue !== null) {
[3780] Fix | Delete
flushActQueue(_queue);
[3781] Fix | Delete
ReactCurrentActQueue.current = null;
[3782] Fix | Delete
} // Return a thenable. If the user awaits it, we'll flush again in
[3783] Fix | Delete
// case additional work was scheduled by a microtask.
[3784] Fix | Delete
[3785] Fix | Delete
[3786] Fix | Delete
var _thenable = {
[3787] Fix | Delete
then: function (resolve, reject) {
[3788] Fix | Delete
// Confirm we haven't re-entered another `act` scope, in case
[3789] Fix | Delete
// the user does something weird like await the thenable
[3790] Fix | Delete
// multiple times.
[3791] Fix | Delete
if (ReactCurrentActQueue.current === null) {
[3792] Fix | Delete
// Recursively flush the queue until there's no remaining work.
[3793] Fix | Delete
ReactCurrentActQueue.current = [];
[3794] Fix | Delete
recursivelyFlushAsyncActWork(returnValue, resolve, reject);
[3795] Fix | Delete
} else {
[3796] Fix | Delete
resolve(returnValue);
[3797] Fix | Delete
}
[3798] Fix | Delete
}
[3799] Fix | Delete
};
[3800] Fix | Delete
return _thenable;
[3801] Fix | Delete
} else {
[3802] Fix | Delete
// Since we're inside a nested `act` scope, the returned thenable
[3803] Fix | Delete
// immediately resolves. The outer scope will flush the queue.
[3804] Fix | Delete
var _thenable2 = {
[3805] Fix | Delete
then: function (resolve, reject) {
[3806] Fix | Delete
resolve(returnValue);
[3807] Fix | Delete
}
[3808] Fix | Delete
};
[3809] Fix | Delete
return _thenable2;
[3810] Fix | Delete
}
[3811] Fix | Delete
}
[3812] Fix | Delete
}
[3813] Fix | Delete
}
[3814] Fix | Delete
[3815] Fix | Delete
function popActScope(prevActScopeDepth) {
[3816] Fix | Delete
{
[3817] Fix | Delete
if (prevActScopeDepth !== actScopeDepth - 1) {
[3818] Fix | Delete
error('You seem to have overlapping act() calls, this is not supported. ' + 'Be sure to await previous act() calls before making a new one. ');
[3819] Fix | Delete
}
[3820] Fix | Delete
[3821] Fix | Delete
actScopeDepth = prevActScopeDepth;
[3822] Fix | Delete
}
[3823] Fix | Delete
}
[3824] Fix | Delete
[3825] Fix | Delete
function recursivelyFlushAsyncActWork(returnValue, resolve, reject) {
[3826] Fix | Delete
{
[3827] Fix | Delete
var queue = ReactCurrentActQueue.current;
[3828] Fix | Delete
[3829] Fix | Delete
if (queue !== null) {
[3830] Fix | Delete
try {
[3831] Fix | Delete
flushActQueue(queue);
[3832] Fix | Delete
enqueueTask(function () {
[3833] Fix | Delete
if (queue.length === 0) {
[3834] Fix | Delete
// No additional work was scheduled. Finish.
[3835] Fix | Delete
ReactCurrentActQueue.current = null;
[3836] Fix | Delete
resolve(returnValue);
[3837] Fix | Delete
} else {
[3838] Fix | Delete
// Keep flushing work until there's none left.
[3839] Fix | Delete
recursivelyFlushAsyncActWork(returnValue, resolve, reject);
[3840] Fix | Delete
}
[3841] Fix | Delete
});
[3842] Fix | Delete
} catch (error) {
[3843] Fix | Delete
reject(error);
[3844] Fix | Delete
}
[3845] Fix | Delete
} else {
[3846] Fix | Delete
resolve(returnValue);
[3847] Fix | Delete
}
[3848] Fix | Delete
}
[3849] Fix | Delete
}
[3850] Fix | Delete
[3851] Fix | Delete
var isFlushing = false;
[3852] Fix | Delete
[3853] Fix | Delete
function flushActQueue(queue) {
[3854] Fix | Delete
{
[3855] Fix | Delete
if (!isFlushing) {
[3856] Fix | Delete
// Prevent re-entrance.
[3857] Fix | Delete
isFlushing = true;
[3858] Fix | Delete
var i = 0;
[3859] Fix | Delete
[3860] Fix | Delete
try {
[3861] Fix | Delete
for (; i < queue.length; i++) {
[3862] Fix | Delete
var callback = queue[i];
[3863] Fix | Delete
[3864] Fix | Delete
do {
[3865] Fix | Delete
callback = callback(true);
[3866] Fix | Delete
} while (callback !== null);
[3867] Fix | Delete
}
[3868] Fix | Delete
[3869] Fix | Delete
queue.length = 0;
[3870] Fix | Delete
} catch (error) {
[3871] Fix | Delete
// If something throws, leave the remaining callbacks on the queue.
[3872] Fix | Delete
queue = queue.slice(i + 1);
[3873] Fix | Delete
throw error;
[3874] Fix | Delete
} finally {
[3875] Fix | Delete
isFlushing = false;
[3876] Fix | Delete
}
[3877] Fix | Delete
}
[3878] Fix | Delete
}
[3879] Fix | Delete
}
[3880] Fix | Delete
[3881] Fix | Delete
var createElement$1 = createElementWithValidation ;
[3882] Fix | Delete
var cloneElement$1 = cloneElementWithValidation ;
[3883] Fix | Delete
var createFactory = createFactoryWithValidation ;
[3884] Fix | Delete
var Children = {
[3885] Fix | Delete
map: mapChildren,
[3886] Fix | Delete
forEach: forEachChildren,
[3887] Fix | Delete
count: countChildren,
[3888] Fix | Delete
toArray: toArray,
[3889] Fix | Delete
only: onlyChild
[3890] Fix | Delete
};
[3891] Fix | Delete
[3892] Fix | Delete
exports.Children = Children;
[3893] Fix | Delete
exports.Component = Component;
[3894] Fix | Delete
exports.Fragment = REACT_FRAGMENT_TYPE;
[3895] Fix | Delete
exports.Profiler = REACT_PROFILER_TYPE;
[3896] Fix | Delete
exports.PureComponent = PureComponent;
[3897] Fix | Delete
exports.StrictMode = REACT_STRICT_MODE_TYPE;
[3898] Fix | Delete
exports.Suspense = REACT_SUSPENSE_TYPE;
[3899] Fix | Delete
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactSharedInternals;
[3900] Fix | Delete
exports.cloneElement = cloneElement$1;
[3901] Fix | Delete
exports.createContext = createContext;
[3902] Fix | Delete
exports.createElement = createElement$1;
[3903] Fix | Delete
exports.createFactory = createFactory;
[3904] Fix | Delete
exports.createRef = createRef;
[3905] Fix | Delete
exports.forwardRef = forwardRef;
[3906] Fix | Delete
exports.isValidElement = isValidElement;
[3907] Fix | Delete
exports.lazy = lazy;
[3908] Fix | Delete
exports.memo = memo;
[3909] Fix | Delete
exports.startTransition = startTransition;
[3910] Fix | Delete
exports.unstable_act = act;
[3911] Fix | Delete
exports.useCallback = useCallback;
[3912] Fix | Delete
exports.useContext = useContext;
[3913] Fix | Delete
exports.useDebugValue = useDebugValue;
[3914] Fix | Delete
exports.useDeferredValue = useDeferredValue;
[3915] Fix | Delete
exports.useEffect = useEffect;
[3916] Fix | Delete
exports.useId = useId;
[3917] Fix | Delete
exports.useImperativeHandle = useImperativeHandle;
[3918] Fix | Delete
exports.useInsertionEffect = useInsertionEffect;
[3919] Fix | Delete
exports.useLayoutEffect = useLayoutEffect;
[3920] Fix | Delete
exports.useMemo = useMemo;
[3921] Fix | Delete
exports.useReducer = useReducer;
[3922] Fix | Delete
exports.useRef = useRef;
[3923] Fix | Delete
exports.useState = useState;
[3924] Fix | Delete
exports.useSyncExternalStore = useSyncExternalStore;
[3925] Fix | Delete
exports.useTransition = useTransition;
[3926] Fix | Delete
exports.version = ReactVersion;
[3927] Fix | Delete
/* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
[3928] Fix | Delete
if (
[3929] Fix | Delete
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' &&
[3930] Fix | Delete
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop ===
[3931] Fix | Delete
'function'
[3932] Fix | Delete
) {
[3933] Fix | Delete
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());
[3934] Fix | Delete
}
[3935] Fix | Delete
[3936] Fix | Delete
})();
[3937] Fix | Delete
}
[3938] Fix | Delete
[3939] Fix | Delete
}).call(this,require("hmr7eR"))
[3940] Fix | Delete
},{"hmr7eR":1}],13:[function(require,module,exports){
[3941] Fix | Delete
/**
[3942] Fix | Delete
* @license React
[3943] Fix | Delete
* react.production.min.js
[3944] Fix | Delete
*
[3945] Fix | Delete
* Copyright (c) Facebook, Inc. and its affiliates.
[3946] Fix | Delete
*
[3947] Fix | Delete
* This source code is licensed under the MIT license found in the
[3948] Fix | Delete
* LICENSE file in the root directory of this source tree.
[3949] Fix | Delete
*/
[3950] Fix | Delete
'use strict';var l=Symbol.for("react.element"),n=Symbol.for("react.portal"),p=Symbol.for("react.fragment"),q=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),t=Symbol.for("react.provider"),u=Symbol.for("react.context"),v=Symbol.for("react.forward_ref"),w=Symbol.for("react.suspense"),x=Symbol.for("react.memo"),y=Symbol.for("react.lazy"),z=Symbol.iterator;function A(a){if(null===a||"object"!==typeof a)return null;a=z&&a[z]||a["@@iterator"];return"function"===typeof a?a:null}
[3951] Fix | Delete
var B={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},C=Object.assign,D={};function E(a,b,e){this.props=a;this.context=b;this.refs=D;this.updater=e||B}E.prototype.isReactComponent={};
[3952] Fix | Delete
E.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,a,b,"setState")};E.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function F(){}F.prototype=E.prototype;function G(a,b,e){this.props=a;this.context=b;this.refs=D;this.updater=e||B}var H=G.prototype=new F;
[3953] Fix | Delete
H.constructor=G;C(H,E.prototype);H.isPureReactComponent=!0;var I=Array.isArray,J=Object.prototype.hasOwnProperty,K={current:null},L={key:!0,ref:!0,__self:!0,__source:!0};
[3954] Fix | Delete
function M(a,b,e){var d,c={},k=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)J.call(b,d)&&!L.hasOwnProperty(d)&&(c[d]=b[d]);var g=arguments.length-2;if(1===g)c.children=e;else if(1<g){for(var f=Array(g),m=0;m<g;m++)f[m]=arguments[m+2];c.children=f}if(a&&a.defaultProps)for(d in g=a.defaultProps,g)void 0===c[d]&&(c[d]=g[d]);return{$$typeof:l,type:a,key:k,ref:h,props:c,_owner:K.current}}
[3955] Fix | Delete
function N(a,b){return{$$typeof:l,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function O(a){return"object"===typeof a&&null!==a&&a.$$typeof===l}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}var P=/\/+/g;function Q(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
[3956] Fix | Delete
function R(a,b,e,d,c){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case l:case n:h=!0}}if(h)return h=a,c=c(h),a=""===d?"."+Q(h,0):d,I(c)?(e="",null!=a&&(e=a.replace(P,"$&/")+"/"),R(c,b,e,"",function(a){return a})):null!=c&&(O(c)&&(c=N(c,e+(!c.key||h&&h.key===c.key?"":(""+c.key).replace(P,"$&/")+"/")+a)),b.push(c)),1;h=0;d=""===d?".":d+":";if(I(a))for(var g=0;g<a.length;g++){k=
[3957] Fix | Delete
a[g];var f=d+Q(k,g);h+=R(k,b,e,f,c)}else if(f=A(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=d+Q(k,g++),h+=R(k,b,e,f,c);else if("object"===k)throw b=String(a),Error("Objects are not valid as a React child (found: "+("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return h}
[3958] Fix | Delete
function S(a,b,e){if(null==a)return a;var d=[],c=0;R(a,d,"","",function(a){return b.call(e,a,c++)});return d}function T(a){if(-1===a._status){var b=a._result;b=b();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}
[3959] Fix | Delete
var U={current:null},V={transition:null},W={ReactCurrentDispatcher:U,ReactCurrentBatchConfig:V,ReactCurrentOwner:K};exports.Children={map:S,forEach:function(a,b,e){S(a,function(){b.apply(this,arguments)},e)},count:function(a){var b=0;S(a,function(){b++});return b},toArray:function(a){return S(a,function(a){return a})||[]},only:function(a){if(!O(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};exports.Component=E;exports.Fragment=p;
[3960] Fix | Delete
exports.Profiler=r;exports.PureComponent=G;exports.StrictMode=q;exports.Suspense=w;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=W;
[3961] Fix | Delete
exports.cloneElement=function(a,b,e){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=C({},a.props),c=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=K.current);void 0!==b.key&&(c=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)J.call(b,f)&&!L.hasOwnProperty(f)&&(d[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)d.children=e;else if(1<f){g=Array(f);
[3962] Fix | Delete
for(var m=0;m<f;m++)g[m]=arguments[m+2];d.children=g}return{$$typeof:l,type:a.type,key:c,ref:k,props:d,_owner:h}};exports.createContext=function(a){a={$$typeof:u,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:t,_context:a};return a.Consumer=a};exports.createElement=M;exports.createFactory=function(a){var b=M.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};
[3963] Fix | Delete
exports.forwardRef=function(a){return{$$typeof:v,render:a}};exports.isValidElement=O;exports.lazy=function(a){return{$$typeof:y,_payload:{_status:-1,_result:a},_init:T}};exports.memo=function(a,b){return{$$typeof:x,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=V.transition;V.transition={};try{a()}finally{V.transition=b}};exports.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.");};
[3964] Fix | Delete
exports.useCallback=function(a,b){return U.current.useCallback(a,b)};exports.useContext=function(a){return U.current.useContext(a)};exports.useDebugValue=function(){};exports.useDeferredValue=function(a){return U.current.useDeferredValue(a)};exports.useEffect=function(a,b){return U.current.useEffect(a,b)};exports.useId=function(){return U.current.useId()};exports.useImperativeHandle=function(a,b,e){return U.current.useImperativeHandle(a,b,e)};
[3965] Fix | Delete
exports.useInsertionEffect=function(a,b){return U.current.useInsertionEffect(a,b)};exports.useLayoutEffect=function(a,b){return U.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return U.current.useMemo(a,b)};exports.useReducer=function(a,b,e){return U.current.useReducer(a,b,e)};exports.useRef=function(a){return U.current.useRef(a)};exports.useState=function(a){return U.current.useState(a)};exports.useSyncExternalStore=function(a,b,e){return U.current.useSyncExternalStore(a,b,e)};
[3966] Fix | Delete
exports.useTransition=function(){return U.current.useTransition()};exports.version="18.2.0";
[3967] Fix | Delete
[3968] Fix | Delete
},{}],14:[function(require,module,exports){
[3969] Fix | Delete
(function (process){
[3970] Fix | Delete
'use strict';
[3971] Fix | Delete
[3972] Fix | Delete
if (process.env.NODE_ENV === 'production') {
[3973] Fix | Delete
module.exports = require('./cjs/react.production.min.js');
[3974] Fix | Delete
} else {
[3975] Fix | Delete
module.exports = require('./cjs/react.development.js');
[3976] Fix | Delete
}
[3977] Fix | Delete
[3978] Fix | Delete
}).call(this,require("hmr7eR"))
[3979] Fix | Delete
},{"./cjs/react.development.js":12,"./cjs/react.production.min.js":13,"hmr7eR":1}],15:[function(require,module,exports){
[3980] Fix | Delete
"use strict";
[3981] Fix | Delete
[3982] Fix | Delete
var _react = _interopRequireWildcard(require("react"));
[3983] Fix | Delete
var _propTypes = _interopRequireDefault(require("prop-types"));
[3984] Fix | Delete
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
[3985] Fix | Delete
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
[3986] Fix | Delete
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
[3987] Fix | Delete
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
[3988] Fix | Delete
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
[3989] Fix | Delete
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
[3990] Fix | Delete
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
[3991] Fix | Delete
function _callSuper(_this, derived, args) {
[3992] Fix | Delete
function isNativeReflectConstruct() {
[3993] Fix | Delete
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
[3994] Fix | Delete
if (Reflect.construct.sham) return false;
[3995] Fix | Delete
if (typeof Proxy === "function") return true;
[3996] Fix | Delete
try {
[3997] Fix | Delete
return !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
[3998] Fix | Delete
} catch (e) {
[3999] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function