Edit File by line
/home/barbar84/www/wp-inclu.../js/dist
File: components.js
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/inherits.js
[49500] Fix | Delete
var inherits = __webpack_require__("Ji7U");
[49501] Fix | Delete
[49502] Fix | Delete
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js
[49503] Fix | Delete
var possibleConstructorReturn = __webpack_require__("md7G");
[49504] Fix | Delete
[49505] Fix | Delete
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js
[49506] Fix | Delete
var getPrototypeOf = __webpack_require__("foSv");
[49507] Fix | Delete
[49508] Fix | Delete
// EXTERNAL MODULE: external ["wp","element"]
[49509] Fix | Delete
var external_wp_element_ = __webpack_require__("GRId");
[49510] Fix | Delete
[49511] Fix | Delete
// EXTERNAL MODULE: external "lodash"
[49512] Fix | Delete
var external_lodash_ = __webpack_require__("YLtl");
[49513] Fix | Delete
[49514] Fix | Delete
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js
[49515] Fix | Delete
var esm_typeof = __webpack_require__("U8pU");
[49516] Fix | Delete
[49517] Fix | Delete
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js + 1 modules
[49518] Fix | Delete
var objectWithoutProperties = __webpack_require__("Ff2n");
[49519] Fix | Delete
[49520] Fix | Delete
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
[49521] Fix | Delete
var defineProperty = __webpack_require__("rePB");
[49522] Fix | Delete
[49523] Fix | Delete
// EXTERNAL MODULE: external ["wp","isShallowEqual"]
[49524] Fix | Delete
var external_wp_isShallowEqual_ = __webpack_require__("rl8x");
[49525] Fix | Delete
var external_wp_isShallowEqual_default = /*#__PURE__*/__webpack_require__.n(external_wp_isShallowEqual_);
[49526] Fix | Delete
[49527] Fix | Delete
// EXTERNAL MODULE: ./node_modules/@wordpress/components/build-module/slot-fill/bubbles-virtually/slot-fill-context.js
[49528] Fix | Delete
var slot_fill_context = __webpack_require__("JYkG");
[49529] Fix | Delete
[49530] Fix | Delete
// CONCATENATED MODULE: ./node_modules/@wordpress/components/build-module/slot-fill/bubbles-virtually/slot-fill-provider.js
[49531] Fix | Delete
[49532] Fix | Delete
[49533] Fix | Delete
[49534] Fix | Delete
[49535] Fix | Delete
[49536] Fix | Delete
[49537] Fix | Delete
[49538] Fix | Delete
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return Object(esm_typeof["a" /* default */])(key) === "symbol" ? key : String(key); }
[49539] Fix | Delete
[49540] Fix | Delete
function _toPrimitive(input, hint) { if (Object(esm_typeof["a" /* default */])(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (Object(esm_typeof["a" /* default */])(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
[49541] Fix | Delete
[49542] Fix | Delete
function 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; }
[49543] Fix | Delete
[49544] Fix | Delete
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { Object(defineProperty["a" /* default */])(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
[49545] Fix | Delete
[49546] Fix | Delete
/**
[49547] Fix | Delete
* WordPress dependencies
[49548] Fix | Delete
*/
[49549] Fix | Delete
[49550] Fix | Delete
[49551] Fix | Delete
/**
[49552] Fix | Delete
* Internal dependencies
[49553] Fix | Delete
*/
[49554] Fix | Delete
[49555] Fix | Delete
[49556] Fix | Delete
[49557] Fix | Delete
function useSlotRegistry() {
[49558] Fix | Delete
var _useState = Object(external_wp_element_["useState"])({}),
[49559] Fix | Delete
_useState2 = Object(slicedToArray["a" /* default */])(_useState, 2),
[49560] Fix | Delete
slots = _useState2[0],
[49561] Fix | Delete
setSlots = _useState2[1];
[49562] Fix | Delete
[49563] Fix | Delete
var _useState3 = Object(external_wp_element_["useState"])({}),
[49564] Fix | Delete
_useState4 = Object(slicedToArray["a" /* default */])(_useState3, 2),
[49565] Fix | Delete
fills = _useState4[0],
[49566] Fix | Delete
setFills = _useState4[1];
[49567] Fix | Delete
[49568] Fix | Delete
var registerSlot = Object(external_wp_element_["useCallback"])(function (name, ref, fillProps) {
[49569] Fix | Delete
setSlots(function (prevSlots) {
[49570] Fix | Delete
var slot = prevSlots[name] || {};
[49571] Fix | Delete
return _objectSpread(_objectSpread({}, prevSlots), {}, Object(defineProperty["a" /* default */])({}, name, _objectSpread(_objectSpread({}, slot), {}, {
[49572] Fix | Delete
ref: ref || slot.ref,
[49573] Fix | Delete
fillProps: fillProps || slot.fillProps || {}
[49574] Fix | Delete
})));
[49575] Fix | Delete
});
[49576] Fix | Delete
}, []);
[49577] Fix | Delete
var unregisterSlot = Object(external_wp_element_["useCallback"])(function (name, ref) {
[49578] Fix | Delete
setSlots(function (prevSlots) {
[49579] Fix | Delete
var slot = prevSlots[name],
[49580] Fix | Delete
nextSlots = Object(objectWithoutProperties["a" /* default */])(prevSlots, [name].map(_toPropertyKey)); // Make sure we're not unregistering a slot registered by another element
[49581] Fix | Delete
// See https://github.com/WordPress/gutenberg/pull/19242#issuecomment-590295412
[49582] Fix | Delete
[49583] Fix | Delete
[49584] Fix | Delete
if ((slot === null || slot === void 0 ? void 0 : slot.ref) === ref) {
[49585] Fix | Delete
return nextSlots;
[49586] Fix | Delete
}
[49587] Fix | Delete
[49588] Fix | Delete
return prevSlots;
[49589] Fix | Delete
});
[49590] Fix | Delete
}, []);
[49591] Fix | Delete
var updateSlot = Object(external_wp_element_["useCallback"])(function (name, fillProps) {
[49592] Fix | Delete
var slot = slots[name];
[49593] Fix | Delete
[49594] Fix | Delete
if (!slot) {
[49595] Fix | Delete
return;
[49596] Fix | Delete
}
[49597] Fix | Delete
[49598] Fix | Delete
if (!external_wp_isShallowEqual_default()(slot.fillProps, fillProps)) {
[49599] Fix | Delete
slot.fillProps = fillProps;
[49600] Fix | Delete
var slotFills = fills[name];
[49601] Fix | Delete
[49602] Fix | Delete
if (slotFills) {
[49603] Fix | Delete
// Force update fills
[49604] Fix | Delete
slotFills.map(function (fill) {
[49605] Fix | Delete
return fill.current.rerender();
[49606] Fix | Delete
});
[49607] Fix | Delete
}
[49608] Fix | Delete
}
[49609] Fix | Delete
}, [slots, fills]);
[49610] Fix | Delete
var registerFill = Object(external_wp_element_["useCallback"])(function (name, ref) {
[49611] Fix | Delete
setFills(function (prevFills) {
[49612] Fix | Delete
return _objectSpread(_objectSpread({}, prevFills), {}, Object(defineProperty["a" /* default */])({}, name, [].concat(Object(toConsumableArray["a" /* default */])(prevFills[name] || []), [ref])));
[49613] Fix | Delete
});
[49614] Fix | Delete
}, []);
[49615] Fix | Delete
var unregisterFill = Object(external_wp_element_["useCallback"])(function (name, ref) {
[49616] Fix | Delete
setFills(function (prevFills) {
[49617] Fix | Delete
if (prevFills[name]) {
[49618] Fix | Delete
return _objectSpread(_objectSpread({}, prevFills), {}, Object(defineProperty["a" /* default */])({}, name, prevFills[name].filter(function (fillRef) {
[49619] Fix | Delete
return fillRef !== ref;
[49620] Fix | Delete
})));
[49621] Fix | Delete
}
[49622] Fix | Delete
[49623] Fix | Delete
return prevFills;
[49624] Fix | Delete
});
[49625] Fix | Delete
}, []); // Memoizing the return value so it can be directly passed to Provider value
[49626] Fix | Delete
[49627] Fix | Delete
var registry = Object(external_wp_element_["useMemo"])(function () {
[49628] Fix | Delete
return {
[49629] Fix | Delete
slots: slots,
[49630] Fix | Delete
fills: fills,
[49631] Fix | Delete
registerSlot: registerSlot,
[49632] Fix | Delete
updateSlot: updateSlot,
[49633] Fix | Delete
unregisterSlot: unregisterSlot,
[49634] Fix | Delete
registerFill: registerFill,
[49635] Fix | Delete
unregisterFill: unregisterFill
[49636] Fix | Delete
};
[49637] Fix | Delete
}, [slots, fills, registerSlot, updateSlot, unregisterSlot, registerFill, unregisterFill]);
[49638] Fix | Delete
return registry;
[49639] Fix | Delete
}
[49640] Fix | Delete
[49641] Fix | Delete
function slot_fill_provider_SlotFillProvider(_ref) {
[49642] Fix | Delete
var children = _ref.children;
[49643] Fix | Delete
var registry = useSlotRegistry();
[49644] Fix | Delete
return Object(external_wp_element_["createElement"])(slot_fill_context["a" /* default */].Provider, {
[49645] Fix | Delete
value: registry
[49646] Fix | Delete
}, children);
[49647] Fix | Delete
}
[49648] Fix | Delete
[49649] Fix | Delete
// CONCATENATED MODULE: ./node_modules/@wordpress/components/build-module/slot-fill/context.js
[49650] Fix | Delete
[49651] Fix | Delete
[49652] Fix | Delete
[49653] Fix | Delete
[49654] Fix | Delete
[49655] Fix | Delete
[49656] Fix | Delete
[49657] Fix | Delete
[49658] Fix | Delete
[49659] Fix | Delete
[49660] Fix | Delete
function _createSuper(Derived) { var hasNativeReflectConstruct = _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); }; }
[49661] Fix | Delete
[49662] Fix | Delete
function _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; } }
[49663] Fix | Delete
[49664] Fix | Delete
/**
[49665] Fix | Delete
* External dependencies
[49666] Fix | Delete
*/
[49667] Fix | Delete
[49668] Fix | Delete
/**
[49669] Fix | Delete
* WordPress dependencies
[49670] Fix | Delete
*/
[49671] Fix | Delete
[49672] Fix | Delete
[49673] Fix | Delete
/**
[49674] Fix | Delete
* Internal dependencies
[49675] Fix | Delete
*/
[49676] Fix | Delete
[49677] Fix | Delete
[49678] Fix | Delete
var SlotFillContext = Object(external_wp_element_["createContext"])({
[49679] Fix | Delete
registerSlot: function registerSlot() {},
[49680] Fix | Delete
unregisterSlot: function unregisterSlot() {},
[49681] Fix | Delete
registerFill: function registerFill() {},
[49682] Fix | Delete
unregisterFill: function unregisterFill() {},
[49683] Fix | Delete
getSlot: function getSlot() {},
[49684] Fix | Delete
getFills: function getFills() {},
[49685] Fix | Delete
subscribe: function subscribe() {}
[49686] Fix | Delete
});
[49687] Fix | Delete
var Provider = SlotFillContext.Provider,
[49688] Fix | Delete
Consumer = SlotFillContext.Consumer;
[49689] Fix | Delete
[49690] Fix | Delete
var context_SlotFillProvider = /*#__PURE__*/function (_Component) {
[49691] Fix | Delete
Object(inherits["a" /* default */])(SlotFillProvider, _Component);
[49692] Fix | Delete
[49693] Fix | Delete
var _super = _createSuper(SlotFillProvider);
[49694] Fix | Delete
[49695] Fix | Delete
function SlotFillProvider() {
[49696] Fix | Delete
var _this;
[49697] Fix | Delete
[49698] Fix | Delete
Object(classCallCheck["a" /* default */])(this, SlotFillProvider);
[49699] Fix | Delete
[49700] Fix | Delete
_this = _super.apply(this, arguments);
[49701] Fix | Delete
_this.registerSlot = _this.registerSlot.bind(Object(assertThisInitialized["a" /* default */])(_this));
[49702] Fix | Delete
_this.registerFill = _this.registerFill.bind(Object(assertThisInitialized["a" /* default */])(_this));
[49703] Fix | Delete
_this.unregisterSlot = _this.unregisterSlot.bind(Object(assertThisInitialized["a" /* default */])(_this));
[49704] Fix | Delete
_this.unregisterFill = _this.unregisterFill.bind(Object(assertThisInitialized["a" /* default */])(_this));
[49705] Fix | Delete
_this.getSlot = _this.getSlot.bind(Object(assertThisInitialized["a" /* default */])(_this));
[49706] Fix | Delete
_this.getFills = _this.getFills.bind(Object(assertThisInitialized["a" /* default */])(_this));
[49707] Fix | Delete
_this.hasFills = _this.hasFills.bind(Object(assertThisInitialized["a" /* default */])(_this));
[49708] Fix | Delete
_this.subscribe = _this.subscribe.bind(Object(assertThisInitialized["a" /* default */])(_this));
[49709] Fix | Delete
_this.slots = {};
[49710] Fix | Delete
_this.fills = {};
[49711] Fix | Delete
_this.listeners = [];
[49712] Fix | Delete
_this.contextValue = {
[49713] Fix | Delete
registerSlot: _this.registerSlot,
[49714] Fix | Delete
unregisterSlot: _this.unregisterSlot,
[49715] Fix | Delete
registerFill: _this.registerFill,
[49716] Fix | Delete
unregisterFill: _this.unregisterFill,
[49717] Fix | Delete
getSlot: _this.getSlot,
[49718] Fix | Delete
getFills: _this.getFills,
[49719] Fix | Delete
hasFills: _this.hasFills,
[49720] Fix | Delete
subscribe: _this.subscribe
[49721] Fix | Delete
};
[49722] Fix | Delete
return _this;
[49723] Fix | Delete
}
[49724] Fix | Delete
[49725] Fix | Delete
Object(createClass["a" /* default */])(SlotFillProvider, [{
[49726] Fix | Delete
key: "registerSlot",
[49727] Fix | Delete
value: function registerSlot(name, slot) {
[49728] Fix | Delete
var previousSlot = this.slots[name];
[49729] Fix | Delete
this.slots[name] = slot;
[49730] Fix | Delete
this.triggerListeners(); // Sometimes the fills are registered after the initial render of slot
[49731] Fix | Delete
// But before the registerSlot call, we need to rerender the slot
[49732] Fix | Delete
[49733] Fix | Delete
this.forceUpdateSlot(name); // If a new instance of a slot is being mounted while another with the
[49734] Fix | Delete
// same name exists, force its update _after_ the new slot has been
[49735] Fix | Delete
// assigned into the instance, such that its own rendering of children
[49736] Fix | Delete
// will be empty (the new Slot will subsume all fills for this name).
[49737] Fix | Delete
[49738] Fix | Delete
if (previousSlot) {
[49739] Fix | Delete
previousSlot.forceUpdate();
[49740] Fix | Delete
}
[49741] Fix | Delete
}
[49742] Fix | Delete
}, {
[49743] Fix | Delete
key: "registerFill",
[49744] Fix | Delete
value: function registerFill(name, instance) {
[49745] Fix | Delete
this.fills[name] = [].concat(Object(toConsumableArray["a" /* default */])(this.fills[name] || []), [instance]);
[49746] Fix | Delete
this.forceUpdateSlot(name);
[49747] Fix | Delete
}
[49748] Fix | Delete
}, {
[49749] Fix | Delete
key: "unregisterSlot",
[49750] Fix | Delete
value: function unregisterSlot(name, instance) {
[49751] Fix | Delete
// If a previous instance of a Slot by this name unmounts, do nothing,
[49752] Fix | Delete
// as the slot and its fills should only be removed for the current
[49753] Fix | Delete
// known instance.
[49754] Fix | Delete
if (this.slots[name] !== instance) {
[49755] Fix | Delete
return;
[49756] Fix | Delete
}
[49757] Fix | Delete
[49758] Fix | Delete
delete this.slots[name];
[49759] Fix | Delete
this.triggerListeners();
[49760] Fix | Delete
}
[49761] Fix | Delete
}, {
[49762] Fix | Delete
key: "unregisterFill",
[49763] Fix | Delete
value: function unregisterFill(name, instance) {
[49764] Fix | Delete
this.fills[name] = Object(external_lodash_["without"])(this.fills[name], instance);
[49765] Fix | Delete
this.resetFillOccurrence(name);
[49766] Fix | Delete
this.forceUpdateSlot(name);
[49767] Fix | Delete
}
[49768] Fix | Delete
}, {
[49769] Fix | Delete
key: "getSlot",
[49770] Fix | Delete
value: function getSlot(name) {
[49771] Fix | Delete
return this.slots[name];
[49772] Fix | Delete
}
[49773] Fix | Delete
}, {
[49774] Fix | Delete
key: "getFills",
[49775] Fix | Delete
value: function getFills(name, slotInstance) {
[49776] Fix | Delete
// Fills should only be returned for the current instance of the slot
[49777] Fix | Delete
// in which they occupy.
[49778] Fix | Delete
if (this.slots[name] !== slotInstance) {
[49779] Fix | Delete
return [];
[49780] Fix | Delete
}
[49781] Fix | Delete
[49782] Fix | Delete
return Object(external_lodash_["sortBy"])(this.fills[name], 'occurrence');
[49783] Fix | Delete
}
[49784] Fix | Delete
}, {
[49785] Fix | Delete
key: "hasFills",
[49786] Fix | Delete
value: function hasFills(name) {
[49787] Fix | Delete
return this.fills[name] && !!this.fills[name].length;
[49788] Fix | Delete
}
[49789] Fix | Delete
}, {
[49790] Fix | Delete
key: "resetFillOccurrence",
[49791] Fix | Delete
value: function resetFillOccurrence(name) {
[49792] Fix | Delete
Object(external_lodash_["forEach"])(this.fills[name], function (instance) {
[49793] Fix | Delete
instance.occurrence = undefined;
[49794] Fix | Delete
});
[49795] Fix | Delete
}
[49796] Fix | Delete
}, {
[49797] Fix | Delete
key: "forceUpdateSlot",
[49798] Fix | Delete
value: function forceUpdateSlot(name) {
[49799] Fix | Delete
var slot = this.getSlot(name);
[49800] Fix | Delete
[49801] Fix | Delete
if (slot) {
[49802] Fix | Delete
slot.forceUpdate();
[49803] Fix | Delete
}
[49804] Fix | Delete
}
[49805] Fix | Delete
}, {
[49806] Fix | Delete
key: "triggerListeners",
[49807] Fix | Delete
value: function triggerListeners() {
[49808] Fix | Delete
this.listeners.forEach(function (listener) {
[49809] Fix | Delete
return listener();
[49810] Fix | Delete
});
[49811] Fix | Delete
}
[49812] Fix | Delete
}, {
[49813] Fix | Delete
key: "subscribe",
[49814] Fix | Delete
value: function subscribe(listener) {
[49815] Fix | Delete
var _this2 = this;
[49816] Fix | Delete
[49817] Fix | Delete
this.listeners.push(listener);
[49818] Fix | Delete
return function () {
[49819] Fix | Delete
_this2.listeners = Object(external_lodash_["without"])(_this2.listeners, listener);
[49820] Fix | Delete
};
[49821] Fix | Delete
}
[49822] Fix | Delete
}, {
[49823] Fix | Delete
key: "render",
[49824] Fix | Delete
value: function render() {
[49825] Fix | Delete
return Object(external_wp_element_["createElement"])(Provider, {
[49826] Fix | Delete
value: this.contextValue
[49827] Fix | Delete
}, Object(external_wp_element_["createElement"])(slot_fill_provider_SlotFillProvider, null, this.props.children));
[49828] Fix | Delete
}
[49829] Fix | Delete
}]);
[49830] Fix | Delete
[49831] Fix | Delete
return SlotFillProvider;
[49832] Fix | Delete
}(external_wp_element_["Component"]);
[49833] Fix | Delete
/**
[49834] Fix | Delete
* React hook returning the active slot given a name.
[49835] Fix | Delete
*
[49836] Fix | Delete
* @param {string} name Slot name.
[49837] Fix | Delete
* @return {Object} Slot object.
[49838] Fix | Delete
*/
[49839] Fix | Delete
[49840] Fix | Delete
[49841] Fix | Delete
var context_useSlot = function useSlot(name) {
[49842] Fix | Delete
var _useContext = Object(external_wp_element_["useContext"])(SlotFillContext),
[49843] Fix | Delete
getSlot = _useContext.getSlot,
[49844] Fix | Delete
subscribe = _useContext.subscribe;
[49845] Fix | Delete
[49846] Fix | Delete
var _useState = Object(external_wp_element_["useState"])(getSlot(name)),
[49847] Fix | Delete
_useState2 = Object(slicedToArray["a" /* default */])(_useState, 2),
[49848] Fix | Delete
slot = _useState2[0],
[49849] Fix | Delete
setSlot = _useState2[1];
[49850] Fix | Delete
[49851] Fix | Delete
Object(external_wp_element_["useEffect"])(function () {
[49852] Fix | Delete
setSlot(getSlot(name));
[49853] Fix | Delete
var unsubscribe = subscribe(function () {
[49854] Fix | Delete
setSlot(getSlot(name));
[49855] Fix | Delete
});
[49856] Fix | Delete
return unsubscribe;
[49857] Fix | Delete
}, [name]);
[49858] Fix | Delete
return slot;
[49859] Fix | Delete
};
[49860] Fix | Delete
/* harmony default export */ var context = __webpack_exports__["b"] = (context_SlotFillProvider);
[49861] Fix | Delete
[49862] Fix | Delete
[49863] Fix | Delete
[49864] Fix | Delete
/***/ }),
[49865] Fix | Delete
[49866] Fix | Delete
/***/ "bWcr":
[49867] Fix | Delete
/***/ (function(module, __webpack_exports__, __webpack_require__) {
[49868] Fix | Delete
[49869] Fix | Delete
"use strict";
[49870] Fix | Delete
/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("GRId");
[49871] Fix | Delete
/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__);
[49872] Fix | Delete
/* harmony import */ var _wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("Tqx9");
[49873] Fix | Delete
/* harmony import */ var _wordpress_primitives__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__);
[49874] Fix | Delete
[49875] Fix | Delete
[49876] Fix | Delete
/**
[49877] Fix | Delete
* WordPress dependencies
[49878] Fix | Delete
*/
[49879] Fix | Delete
[49880] Fix | Delete
var closeSmall = Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(_wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__["SVG"], {
[49881] Fix | Delete
xmlns: "http://www.w3.org/2000/svg",
[49882] Fix | Delete
viewBox: "0 0 24 24"
[49883] Fix | Delete
}, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(_wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__["Path"], {
[49884] Fix | Delete
d: "M13 11.9l3.3-3.4-1.1-1-3.2 3.3-3.2-3.3-1.1 1 3.3 3.4-3.5 3.6 1 1L12 13l3.5 3.5 1-1z"
[49885] Fix | Delete
}));
[49886] Fix | Delete
/* harmony default export */ __webpack_exports__["a"] = (closeSmall);
[49887] Fix | Delete
[49888] Fix | Delete
[49889] Fix | Delete
/***/ }),
[49890] Fix | Delete
[49891] Fix | Delete
/***/ "c6aN":
[49892] Fix | Delete
/***/ (function(module, exports, __webpack_require__) {
[49893] Fix | Delete
[49894] Fix | Delete
var moment = __webpack_require__("wy2R");
[49895] Fix | Delete
[49896] Fix | Delete
function isValidMoment(testMoment) {
[49897] Fix | Delete
if (typeof moment.isMoment === 'function' && !moment.isMoment(testMoment)) {
[49898] Fix | Delete
return false;
[49899] Fix | Delete
}
[49900] Fix | Delete
[49901] Fix | Delete
/* istanbul ignore else */
[49902] Fix | Delete
if (typeof testMoment.isValid === 'function') {
[49903] Fix | Delete
// moment 1.7.0+
[49904] Fix | Delete
return testMoment.isValid();
[49905] Fix | Delete
}
[49906] Fix | Delete
[49907] Fix | Delete
/* istanbul ignore next */
[49908] Fix | Delete
return !isNaN(testMoment);
[49909] Fix | Delete
}
[49910] Fix | Delete
[49911] Fix | Delete
module.exports = {
[49912] Fix | Delete
isValidMoment : isValidMoment,
[49913] Fix | Delete
};
[49914] Fix | Delete
[49915] Fix | Delete
[49916] Fix | Delete
/***/ }),
[49917] Fix | Delete
[49918] Fix | Delete
/***/ "cD2C":
[49919] Fix | Delete
/***/ (function(module, exports, __webpack_require__) {
[49920] Fix | Delete
[49921] Fix | Delete
"use strict";
[49922] Fix | Delete
[49923] Fix | Delete
[49924] Fix | Delete
if (true) {
[49925] Fix | Delete
module.exports = __webpack_require__("5aBA");
[49926] Fix | Delete
} else {}
[49927] Fix | Delete
[49928] Fix | Delete
[49929] Fix | Delete
/***/ }),
[49930] Fix | Delete
[49931] Fix | Delete
/***/ "cDcd":
[49932] Fix | Delete
/***/ (function(module, exports) {
[49933] Fix | Delete
[49934] Fix | Delete
(function() { module.exports = window["React"]; }());
[49935] Fix | Delete
[49936] Fix | Delete
/***/ }),
[49937] Fix | Delete
[49938] Fix | Delete
/***/ "cGtP":
[49939] Fix | Delete
/***/ (function(module, __webpack_exports__, __webpack_require__) {
[49940] Fix | Delete
[49941] Fix | Delete
"use strict";
[49942] Fix | Delete
/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("GRId");
[49943] Fix | Delete
/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__);
[49944] Fix | Delete
/* harmony import */ var _wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("Tqx9");
[49945] Fix | Delete
/* harmony import */ var _wordpress_primitives__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__);
[49946] Fix | Delete
[49947] Fix | Delete
[49948] Fix | Delete
/**
[49949] Fix | Delete
* WordPress dependencies
[49950] Fix | Delete
*/
[49951] Fix | Delete
[49952] Fix | Delete
var search = Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(_wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__["SVG"], {
[49953] Fix | Delete
xmlns: "http://www.w3.org/2000/svg",
[49954] Fix | Delete
viewBox: "0 0 24 24"
[49955] Fix | Delete
}, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(_wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__["Path"], {
[49956] Fix | Delete
d: "M13.5 6C10.5 6 8 8.5 8 11.5c0 1.1.3 2.1.9 3l-3.4 3 1 1.1 3.4-2.9c1 .9 2.2 1.4 3.6 1.4 3 0 5.5-2.5 5.5-5.5C19 8.5 16.5 6 13.5 6zm0 9.5c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z"
[49957] Fix | Delete
}));
[49958] Fix | Delete
/* harmony default export */ __webpack_exports__["a"] = (search);
[49959] Fix | Delete
[49960] Fix | Delete
[49961] Fix | Delete
/***/ }),
[49962] Fix | Delete
[49963] Fix | Delete
/***/ "dQ10":
[49964] Fix | Delete
/***/ (function(module, __webpack_exports__, __webpack_require__) {
[49965] Fix | Delete
[49966] Fix | Delete
"use strict";
[49967] Fix | Delete
[49968] Fix | Delete
// EXPORTS
[49969] Fix | Delete
__webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ createComponent; });
[49970] Fix | Delete
[49971] Fix | Delete
// EXTERNAL MODULE: external "React"
[49972] Fix | Delete
var external_React_ = __webpack_require__("cDcd");
[49973] Fix | Delete
[49974] Fix | Delete
// EXTERNAL MODULE: ./node_modules/reakit/node_modules/reakit-system/es/_rollupPluginBabelHelpers-0c84a174.js
[49975] Fix | Delete
var _rollupPluginBabelHelpers_0c84a174 = __webpack_require__("ixHF");
[49976] Fix | Delete
[49977] Fix | Delete
// EXTERNAL MODULE: ./node_modules/reakit/node_modules/reakit-system/es/useCreateElement.js
[49978] Fix | Delete
var useCreateElement = __webpack_require__("sej1");
[49979] Fix | Delete
[49980] Fix | Delete
// EXTERNAL MODULE: ./node_modules/reakit/node_modules/reakit-utils/es/_rollupPluginBabelHelpers-1f0bf8c2.js
[49981] Fix | Delete
var _rollupPluginBabelHelpers_1f0bf8c2 = __webpack_require__("vk5B");
[49982] Fix | Delete
[49983] Fix | Delete
// EXTERNAL MODULE: ./node_modules/reakit/node_modules/reakit-utils/es/isObject.js
[49984] Fix | Delete
var isObject = __webpack_require__("nBMU");
[49985] Fix | Delete
[49986] Fix | Delete
// CONCATENATED MODULE: ./node_modules/reakit/node_modules/reakit-utils/es/isPlainObject.js
[49987] Fix | Delete
[49988] Fix | Delete
[49989] Fix | Delete
/**
[49990] Fix | Delete
* Checks whether `arg` is a plain object or not.
[49991] Fix | Delete
*
[49992] Fix | Delete
* @returns {boolean}
[49993] Fix | Delete
*/
[49994] Fix | Delete
[49995] Fix | Delete
function isPlainObject(arg) {
[49996] Fix | Delete
var _proto$constructor;
[49997] Fix | Delete
[49998] Fix | Delete
if (!Object(isObject["a" /* isObject */])(arg)) return false;
[49999] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function