Edit File by line
/home/barbar84/www/wp-inclu.../js/dist
File: components.js
Object(external_wp_hooks_["removeAction"])('hookRemoved', namespace);
[41500] Fix | Delete
Object(external_wp_hooks_["removeAction"])('hookAdded', namespace);
[41501] Fix | Delete
}
[41502] Fix | Delete
}
[41503] Fix | Delete
}, {
[41504] Fix | Delete
key: "render",
[41505] Fix | Delete
value: function render() {
[41506] Fix | Delete
return Object(external_wp_element_["createElement"])(FilteredComponent, this.props);
[41507] Fix | Delete
}
[41508] Fix | Delete
}]);
[41509] Fix | Delete
[41510] Fix | Delete
return FilteredComponentRenderer;
[41511] Fix | Delete
}(external_wp_element_["Component"]);
[41512] Fix | Delete
[41513] Fix | Delete
FilteredComponentRenderer.instances = [];
[41514] Fix | Delete
/**
[41515] Fix | Delete
* Updates the FilteredComponent definition, forcing a render for each
[41516] Fix | Delete
* mounted instance. This occurs a maximum of once per animation frame.
[41517] Fix | Delete
*/
[41518] Fix | Delete
[41519] Fix | Delete
var throttledForceUpdate = Object(external_lodash_["debounce"])(function () {
[41520] Fix | Delete
// Recreate the filtered component, only after delay so that it's
[41521] Fix | Delete
// computed once, even if many filters added.
[41522] Fix | Delete
FilteredComponent = Object(external_wp_hooks_["applyFilters"])(hookName, OriginalComponent); // Force each instance to render.
[41523] Fix | Delete
[41524] Fix | Delete
FilteredComponentRenderer.instances.forEach(function (instance) {
[41525] Fix | Delete
instance.forceUpdate();
[41526] Fix | Delete
});
[41527] Fix | Delete
}, ANIMATION_FRAME_PERIOD);
[41528] Fix | Delete
/**
[41529] Fix | Delete
* When a filter is added or removed for the matching hook name, each
[41530] Fix | Delete
* mounted instance should re-render with the new filters having been
[41531] Fix | Delete
* applied to the original component.
[41532] Fix | Delete
*
[41533] Fix | Delete
* @param {string} updatedHookName Name of the hook that was updated.
[41534] Fix | Delete
*/
[41535] Fix | Delete
[41536] Fix | Delete
function onHooksUpdated(updatedHookName) {
[41537] Fix | Delete
if (updatedHookName === hookName) {
[41538] Fix | Delete
throttledForceUpdate();
[41539] Fix | Delete
}
[41540] Fix | Delete
}
[41541] Fix | Delete
[41542] Fix | Delete
return FilteredComponentRenderer;
[41543] Fix | Delete
}, 'withFilters');
[41544] Fix | Delete
}
[41545] Fix | Delete
[41546] Fix | Delete
// CONCATENATED MODULE: ./node_modules/@wordpress/components/build-module/higher-order/with-focus-return/index.js
[41547] Fix | Delete
[41548] Fix | Delete
[41549] Fix | Delete
/**
[41550] Fix | Delete
* WordPress dependencies
[41551] Fix | Delete
*/
[41552] Fix | Delete
[41553] Fix | Delete
[41554] Fix | Delete
[41555] Fix | Delete
/**
[41556] Fix | Delete
* Returns true if the given object is component-like. An object is component-
[41557] Fix | Delete
* like if it is an instance of wp.element.Component, or is a function.
[41558] Fix | Delete
*
[41559] Fix | Delete
* @param {*} object Object to test.
[41560] Fix | Delete
*
[41561] Fix | Delete
* @return {boolean} Whether object is component-like.
[41562] Fix | Delete
*/
[41563] Fix | Delete
[41564] Fix | Delete
function isComponentLike(object) {
[41565] Fix | Delete
return object instanceof external_wp_element_["Component"] || typeof object === 'function';
[41566] Fix | Delete
}
[41567] Fix | Delete
/**
[41568] Fix | Delete
* Higher Order Component used to be used to wrap disposable elements like
[41569] Fix | Delete
* sidebars, modals, dropdowns. When mounting the wrapped component, we track a
[41570] Fix | Delete
* reference to the current active element so we know where to restore focus
[41571] Fix | Delete
* when the component is unmounted.
[41572] Fix | Delete
*
[41573] Fix | Delete
* @param {(WPComponent|Object)} options The component to be enhanced with
[41574] Fix | Delete
* focus return behavior, or an object
[41575] Fix | Delete
* describing the component and the
[41576] Fix | Delete
* focus return characteristics.
[41577] Fix | Delete
*
[41578] Fix | Delete
* @return {Function} Higher Order Component with the focus restauration behaviour.
[41579] Fix | Delete
*/
[41580] Fix | Delete
[41581] Fix | Delete
[41582] Fix | Delete
/* harmony default export */ var with_focus_return = (Object(external_wp_compose_["createHigherOrderComponent"])(function (options) {
[41583] Fix | Delete
var HoC = function HoC() {
[41584] Fix | Delete
var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
[41585] Fix | Delete
onFocusReturn = _ref.onFocusReturn;
[41586] Fix | Delete
[41587] Fix | Delete
return function (WrappedComponent) {
[41588] Fix | Delete
var WithFocusReturn = function WithFocusReturn(props) {
[41589] Fix | Delete
var ref = Object(external_wp_compose_["useFocusReturn"])(onFocusReturn);
[41590] Fix | Delete
return Object(external_wp_element_["createElement"])("div", {
[41591] Fix | Delete
ref: ref
[41592] Fix | Delete
}, Object(external_wp_element_["createElement"])(WrappedComponent, props));
[41593] Fix | Delete
};
[41594] Fix | Delete
[41595] Fix | Delete
return WithFocusReturn;
[41596] Fix | Delete
};
[41597] Fix | Delete
};
[41598] Fix | Delete
[41599] Fix | Delete
if (isComponentLike(options)) {
[41600] Fix | Delete
var WrappedComponent = options;
[41601] Fix | Delete
return HoC()(WrappedComponent);
[41602] Fix | Delete
}
[41603] Fix | Delete
[41604] Fix | Delete
return HoC(options);
[41605] Fix | Delete
}, 'withFocusReturn'));
[41606] Fix | Delete
var with_focus_return_Provider = function Provider(_ref2) {
[41607] Fix | Delete
var children = _ref2.children;
[41608] Fix | Delete
external_wp_deprecated_default()('wp.components.FocusReturnProvider component', {
[41609] Fix | Delete
hint: 'This provider is not used anymore. You can just remove it from your codebase'
[41610] Fix | Delete
});
[41611] Fix | Delete
return children;
[41612] Fix | Delete
};
[41613] Fix | Delete
[41614] Fix | Delete
// EXTERNAL MODULE: ./node_modules/uuid/dist/esm-browser/v4.js + 4 modules
[41615] Fix | Delete
var v4 = __webpack_require__("7Cbv");
[41616] Fix | Delete
[41617] Fix | Delete
// CONCATENATED MODULE: ./node_modules/@wordpress/components/build-module/higher-order/with-notices/index.js
[41618] Fix | Delete
[41619] Fix | Delete
[41620] Fix | Delete
[41621] Fix | Delete
[41622] Fix | Delete
[41623] Fix | Delete
[41624] Fix | Delete
[41625] Fix | Delete
[41626] Fix | Delete
[41627] Fix | Delete
[41628] Fix | Delete
[41629] Fix | Delete
function with_notices_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
[41630] Fix | Delete
[41631] Fix | Delete
function with_notices_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { with_notices_ownKeys(Object(source), true).forEach(function (key) { Object(esm_defineProperty["a" /* default */])(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { with_notices_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
[41632] Fix | Delete
[41633] Fix | Delete
function with_notices_createSuper(Derived) { var hasNativeReflectConstruct = with_notices_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = Object(getPrototypeOf["a" /* default */])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = Object(getPrototypeOf["a" /* default */])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return Object(possibleConstructorReturn["a" /* default */])(this, result); }; }
[41634] Fix | Delete
[41635] Fix | Delete
function with_notices_isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
[41636] Fix | Delete
[41637] Fix | Delete
/**
[41638] Fix | Delete
* External dependencies
[41639] Fix | Delete
*/
[41640] Fix | Delete
[41641] Fix | Delete
/**
[41642] Fix | Delete
* WordPress dependencies
[41643] Fix | Delete
*/
[41644] Fix | Delete
[41645] Fix | Delete
[41646] Fix | Delete
[41647] Fix | Delete
/**
[41648] Fix | Delete
* Internal dependencies
[41649] Fix | Delete
*/
[41650] Fix | Delete
[41651] Fix | Delete
[41652] Fix | Delete
/**
[41653] Fix | Delete
* Override the default edit UI to include notices if supported.
[41654] Fix | Delete
*
[41655] Fix | Delete
* @param {WPComponent} OriginalComponent Original component.
[41656] Fix | Delete
*
[41657] Fix | Delete
* @return {WPComponent} Wrapped component.
[41658] Fix | Delete
*/
[41659] Fix | Delete
[41660] Fix | Delete
/* harmony default export */ var with_notices = (Object(external_wp_compose_["createHigherOrderComponent"])(function (OriginalComponent) {
[41661] Fix | Delete
return /*#__PURE__*/function (_Component) {
[41662] Fix | Delete
Object(inherits["a" /* default */])(WrappedBlockEdit, _Component);
[41663] Fix | Delete
[41664] Fix | Delete
var _super = with_notices_createSuper(WrappedBlockEdit);
[41665] Fix | Delete
[41666] Fix | Delete
function WrappedBlockEdit() {
[41667] Fix | Delete
var _this;
[41668] Fix | Delete
[41669] Fix | Delete
Object(classCallCheck["a" /* default */])(this, WrappedBlockEdit);
[41670] Fix | Delete
[41671] Fix | Delete
_this = _super.apply(this, arguments);
[41672] Fix | Delete
_this.createNotice = _this.createNotice.bind(Object(assertThisInitialized["a" /* default */])(_this));
[41673] Fix | Delete
_this.createErrorNotice = _this.createErrorNotice.bind(Object(assertThisInitialized["a" /* default */])(_this));
[41674] Fix | Delete
_this.removeNotice = _this.removeNotice.bind(Object(assertThisInitialized["a" /* default */])(_this));
[41675] Fix | Delete
_this.removeAllNotices = _this.removeAllNotices.bind(Object(assertThisInitialized["a" /* default */])(_this));
[41676] Fix | Delete
_this.state = {
[41677] Fix | Delete
noticeList: []
[41678] Fix | Delete
};
[41679] Fix | Delete
_this.noticeOperations = {
[41680] Fix | Delete
createNotice: _this.createNotice,
[41681] Fix | Delete
createErrorNotice: _this.createErrorNotice,
[41682] Fix | Delete
removeAllNotices: _this.removeAllNotices,
[41683] Fix | Delete
removeNotice: _this.removeNotice
[41684] Fix | Delete
};
[41685] Fix | Delete
return _this;
[41686] Fix | Delete
}
[41687] Fix | Delete
/**
[41688] Fix | Delete
* Function passed down as a prop that adds a new notice.
[41689] Fix | Delete
*
[41690] Fix | Delete
* @param {Object} notice Notice to add.
[41691] Fix | Delete
*/
[41692] Fix | Delete
[41693] Fix | Delete
[41694] Fix | Delete
Object(createClass["a" /* default */])(WrappedBlockEdit, [{
[41695] Fix | Delete
key: "createNotice",
[41696] Fix | Delete
value: function createNotice(notice) {
[41697] Fix | Delete
var noticeToAdd = notice.id ? notice : with_notices_objectSpread(with_notices_objectSpread({}, notice), {}, {
[41698] Fix | Delete
id: Object(v4["a" /* default */])()
[41699] Fix | Delete
});
[41700] Fix | Delete
this.setState(function (state) {
[41701] Fix | Delete
return {
[41702] Fix | Delete
noticeList: [].concat(Object(toConsumableArray["a" /* default */])(state.noticeList), [noticeToAdd])
[41703] Fix | Delete
};
[41704] Fix | Delete
});
[41705] Fix | Delete
}
[41706] Fix | Delete
/**
[41707] Fix | Delete
* Function passed as a prop that adds a new error notice.
[41708] Fix | Delete
*
[41709] Fix | Delete
* @param {string} msg Error message of the notice.
[41710] Fix | Delete
*/
[41711] Fix | Delete
[41712] Fix | Delete
}, {
[41713] Fix | Delete
key: "createErrorNotice",
[41714] Fix | Delete
value: function createErrorNotice(msg) {
[41715] Fix | Delete
this.createNotice({
[41716] Fix | Delete
status: 'error',
[41717] Fix | Delete
content: msg
[41718] Fix | Delete
});
[41719] Fix | Delete
}
[41720] Fix | Delete
/**
[41721] Fix | Delete
* Removes a notice by id.
[41722] Fix | Delete
*
[41723] Fix | Delete
* @param {string} id Id of the notice to remove.
[41724] Fix | Delete
*/
[41725] Fix | Delete
[41726] Fix | Delete
}, {
[41727] Fix | Delete
key: "removeNotice",
[41728] Fix | Delete
value: function removeNotice(id) {
[41729] Fix | Delete
this.setState(function (state) {
[41730] Fix | Delete
return {
[41731] Fix | Delete
noticeList: state.noticeList.filter(function (notice) {
[41732] Fix | Delete
return notice.id !== id;
[41733] Fix | Delete
})
[41734] Fix | Delete
};
[41735] Fix | Delete
});
[41736] Fix | Delete
}
[41737] Fix | Delete
/**
[41738] Fix | Delete
* Removes all notices
[41739] Fix | Delete
*/
[41740] Fix | Delete
[41741] Fix | Delete
}, {
[41742] Fix | Delete
key: "removeAllNotices",
[41743] Fix | Delete
value: function removeAllNotices() {
[41744] Fix | Delete
this.setState({
[41745] Fix | Delete
noticeList: []
[41746] Fix | Delete
});
[41747] Fix | Delete
}
[41748] Fix | Delete
}, {
[41749] Fix | Delete
key: "render",
[41750] Fix | Delete
value: function render() {
[41751] Fix | Delete
return Object(external_wp_element_["createElement"])(OriginalComponent, Object(esm_extends["a" /* default */])({
[41752] Fix | Delete
noticeList: this.state.noticeList,
[41753] Fix | Delete
noticeOperations: this.noticeOperations,
[41754] Fix | Delete
noticeUI: this.state.noticeList.length > 0 && Object(external_wp_element_["createElement"])(list, {
[41755] Fix | Delete
className: "components-with-notices-ui",
[41756] Fix | Delete
notices: this.state.noticeList,
[41757] Fix | Delete
onRemove: this.removeNotice
[41758] Fix | Delete
})
[41759] Fix | Delete
}, this.props));
[41760] Fix | Delete
}
[41761] Fix | Delete
}]);
[41762] Fix | Delete
[41763] Fix | Delete
return WrappedBlockEdit;
[41764] Fix | Delete
}(external_wp_element_["Component"]);
[41765] Fix | Delete
}));
[41766] Fix | Delete
[41767] Fix | Delete
// CONCATENATED MODULE: ./node_modules/@wordpress/components/build-module/ui/context/component-system-provider.js
[41768] Fix | Delete
[41769] Fix | Delete
[41770] Fix | Delete
[41771] Fix | Delete
function component_system_provider_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
[41772] Fix | Delete
[41773] Fix | Delete
function component_system_provider_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { component_system_provider_ownKeys(Object(source), true).forEach(function (key) { Object(esm_defineProperty["a" /* default */])(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { component_system_provider_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
[41774] Fix | Delete
[41775] Fix | Delete
/**
[41776] Fix | Delete
* External dependencies
[41777] Fix | Delete
*/
[41778] Fix | Delete
[41779] Fix | Delete
/**
[41780] Fix | Delete
* @param {Object} props
[41781] Fix | Delete
* @param {string[]} [props.__unstableNextInclude]
[41782] Fix | Delete
* @param {import('react').ReactNode} props.children
[41783] Fix | Delete
* @param {any} props.value
[41784] Fix | Delete
*/
[41785] Fix | Delete
[41786] Fix | Delete
function ComponentSystemProvider(_ref) {
[41787] Fix | Delete
var _ref$__unstableNextIn = _ref.__unstableNextInclude,
[41788] Fix | Delete
__unstableNextInclude = _ref$__unstableNextIn === void 0 ? [] : _ref$__unstableNextIn,
[41789] Fix | Delete
children = _ref.children,
[41790] Fix | Delete
_ref$value = _ref.value,
[41791] Fix | Delete
value = _ref$value === void 0 ? {} : _ref$value;
[41792] Fix | Delete
[41793] Fix | Delete
if (false) { var contextValue; }
[41794] Fix | Delete
[41795] Fix | Delete
return children;
[41796] Fix | Delete
}
[41797] Fix | Delete
[41798] Fix | Delete
// CONCATENATED MODULE: ./node_modules/@wordpress/components/build-module/index.js
[41799] Fix | Delete
// Primitives
[41800] Fix | Delete
// Components
[41801] Fix | Delete
[41802] Fix | Delete
[41803] Fix | Delete
[41804] Fix | Delete
[41805] Fix | Delete
[41806] Fix | Delete
[41807] Fix | Delete
[41808] Fix | Delete
[41809] Fix | Delete
[41810] Fix | Delete
[41811] Fix | Delete
[41812] Fix | Delete
[41813] Fix | Delete
[41814] Fix | Delete
[41815] Fix | Delete
[41816] Fix | Delete
[41817] Fix | Delete
[41818] Fix | Delete
[41819] Fix | Delete
[41820] Fix | Delete
[41821] Fix | Delete
[41822] Fix | Delete
[41823] Fix | Delete
[41824] Fix | Delete
[41825] Fix | Delete
[41826] Fix | Delete
[41827] Fix | Delete
[41828] Fix | Delete
[41829] Fix | Delete
[41830] Fix | Delete
[41831] Fix | Delete
[41832] Fix | Delete
[41833] Fix | Delete
[41834] Fix | Delete
[41835] Fix | Delete
[41836] Fix | Delete
[41837] Fix | Delete
[41838] Fix | Delete
[41839] Fix | Delete
[41840] Fix | Delete
[41841] Fix | Delete
[41842] Fix | Delete
[41843] Fix | Delete
[41844] Fix | Delete
[41845] Fix | Delete
[41846] Fix | Delete
[41847] Fix | Delete
[41848] Fix | Delete
[41849] Fix | Delete
[41850] Fix | Delete
[41851] Fix | Delete
[41852] Fix | Delete
[41853] Fix | Delete
[41854] Fix | Delete
[41855] Fix | Delete
[41856] Fix | Delete
[41857] Fix | Delete
[41858] Fix | Delete
[41859] Fix | Delete
[41860] Fix | Delete
[41861] Fix | Delete
[41862] Fix | Delete
[41863] Fix | Delete
[41864] Fix | Delete
[41865] Fix | Delete
[41866] Fix | Delete
[41867] Fix | Delete
[41868] Fix | Delete
[41869] Fix | Delete
[41870] Fix | Delete
[41871] Fix | Delete
[41872] Fix | Delete
[41873] Fix | Delete
[41874] Fix | Delete
[41875] Fix | Delete
[41876] Fix | Delete
[41877] Fix | Delete
[41878] Fix | Delete
[41879] Fix | Delete
[41880] Fix | Delete
[41881] Fix | Delete
[41882] Fix | Delete
[41883] Fix | Delete
[41884] Fix | Delete
[41885] Fix | Delete
[41886] Fix | Delete
[41887] Fix | Delete
[41888] Fix | Delete
[41889] Fix | Delete
[41890] Fix | Delete
[41891] Fix | Delete
[41892] Fix | Delete
[41893] Fix | Delete
[41894] Fix | Delete
[41895] Fix | Delete
[41896] Fix | Delete
[41897] Fix | Delete
[41898] Fix | Delete
[41899] Fix | Delete
[41900] Fix | Delete
[41901] Fix | Delete
[41902] Fix | Delete
[41903] Fix | Delete
// Higher-Order Components
[41904] Fix | Delete
[41905] Fix | Delete
[41906] Fix | Delete
[41907] Fix | Delete
[41908] Fix | Delete
[41909] Fix | Delete
[41910] Fix | Delete
[41911] Fix | Delete
[41912] Fix | Delete
// Component System
[41913] Fix | Delete
[41914] Fix | Delete
[41915] Fix | Delete
[41916] Fix | Delete
[41917] Fix | Delete
/***/ }),
[41918] Fix | Delete
[41919] Fix | Delete
/***/ "SIPS":
[41920] Fix | Delete
/***/ (function(module, __webpack_exports__, __webpack_require__) {
[41921] Fix | Delete
[41922] Fix | Delete
"use strict";
[41923] Fix | Delete
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return getRegisteredStyles; });
[41924] Fix | Delete
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return insertStyles; });
[41925] Fix | Delete
var isBrowser = "object" !== 'undefined';
[41926] Fix | Delete
function getRegisteredStyles(registered, registeredStyles, classNames) {
[41927] Fix | Delete
var rawClassName = '';
[41928] Fix | Delete
classNames.split(' ').forEach(function (className) {
[41929] Fix | Delete
if (registered[className] !== undefined) {
[41930] Fix | Delete
registeredStyles.push(registered[className]);
[41931] Fix | Delete
} else {
[41932] Fix | Delete
rawClassName += className + " ";
[41933] Fix | Delete
}
[41934] Fix | Delete
});
[41935] Fix | Delete
return rawClassName;
[41936] Fix | Delete
}
[41937] Fix | Delete
var insertStyles = function insertStyles(cache, serialized, isStringTag) {
[41938] Fix | Delete
var className = cache.key + "-" + serialized.name;
[41939] Fix | Delete
[41940] Fix | Delete
if ( // we only need to add the styles to the registered cache if the
[41941] Fix | Delete
// class name could be used further down
[41942] Fix | Delete
// the tree but if it's a string tag, we know it won't
[41943] Fix | Delete
// so we don't have to add it to registered cache.
[41944] Fix | Delete
// this improves memory usage since we can avoid storing the whole style string
[41945] Fix | Delete
(isStringTag === false || // we need to always store it if we're in compat mode and
[41946] Fix | Delete
// in node since emotion-server relies on whether a style is in
[41947] Fix | Delete
// the registered cache to know whether a style is global or not
[41948] Fix | Delete
// also, note that this check will be dead code eliminated in the browser
[41949] Fix | Delete
isBrowser === false && cache.compat !== undefined) && cache.registered[className] === undefined) {
[41950] Fix | Delete
cache.registered[className] = serialized.styles;
[41951] Fix | Delete
}
[41952] Fix | Delete
[41953] Fix | Delete
if (cache.inserted[serialized.name] === undefined) {
[41954] Fix | Delete
var current = serialized;
[41955] Fix | Delete
[41956] Fix | Delete
do {
[41957] Fix | Delete
var maybeStyles = cache.insert("." + className, current, cache.sheet, true);
[41958] Fix | Delete
[41959] Fix | Delete
current = current.next;
[41960] Fix | Delete
} while (current !== undefined);
[41961] Fix | Delete
}
[41962] Fix | Delete
};
[41963] Fix | Delete
[41964] Fix | Delete
[41965] Fix | Delete
[41966] Fix | Delete
[41967] Fix | Delete
/***/ }),
[41968] Fix | Delete
[41969] Fix | Delete
/***/ "SSiF":
[41970] Fix | Delete
/***/ (function(module, exports, __webpack_require__) {
[41971] Fix | Delete
[41972] Fix | Delete
var e=__webpack_require__("cDcd"),n={display:"block",opacity:0,position:"absolute",top:0,left:0,height:"100%",width:"100%",overflow:"hidden",pointerEvents:"none",zIndex:-1},t=function(t){var r=t.onResize,u=e.useRef();return function(n,t){var r=function(){return n.current&&n.current.contentDocument&&n.current.contentDocument.defaultView};function u(){t();var e=r();e&&e.addEventListener("resize",t)}e.useEffect((function(){return r()?u():n.current&&n.current.addEventListener&&n.current.addEventListener("load",u),function(){var e=r();e&&"function"==typeof e.removeEventListener&&e.removeEventListener("resize",t)}}),[])}(u,(function(){return r(u)})),e.createElement("iframe",{style:n,src:"about:blank",ref:u,"aria-hidden":!0,tabIndex:-1,frameBorder:0})},r=function(e){return{width:null!=e?e.offsetWidth:null,height:null!=e?e.offsetHeight:null}};module.exports=function(n){void 0===n&&(n=r);var u=e.useState(n(null)),o=u[0],i=u[1],c=e.useCallback((function(e){return i(n(e.current))}),[n]);return[e.useMemo((function(){return e.createElement(t,{onResize:c})}),[c]),o]};
[41973] Fix | Delete
[41974] Fix | Delete
[41975] Fix | Delete
/***/ }),
[41976] Fix | Delete
[41977] Fix | Delete
/***/ "SksO":
[41978] Fix | Delete
/***/ (function(module, exports) {
[41979] Fix | Delete
[41980] Fix | Delete
function _setPrototypeOf(o, p) {
[41981] Fix | Delete
module.exports = _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
[41982] Fix | Delete
o.__proto__ = p;
[41983] Fix | Delete
return o;
[41984] Fix | Delete
};
[41985] Fix | Delete
[41986] Fix | Delete
return _setPrototypeOf(o, p);
[41987] Fix | Delete
}
[41988] Fix | Delete
[41989] Fix | Delete
module.exports = _setPrototypeOf;
[41990] Fix | Delete
[41991] Fix | Delete
/***/ }),
[41992] Fix | Delete
[41993] Fix | Delete
/***/ "TFuP":
[41994] Fix | Delete
/***/ (function(module, __webpack_exports__, __webpack_require__) {
[41995] Fix | Delete
[41996] Fix | Delete
"use strict";
[41997] Fix | Delete
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return COMPOSITE_KEYS; });
[41998] Fix | Delete
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return COMPOSITE_GROUP_KEYS; });
[41999] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function