1989 lines
79 KiB
JavaScript
1989 lines
79 KiB
JavaScript
|
/*! elementor-pro - v3.21.0 - 15-04-2024 */
|
||
|
/******/ (() => { // webpackBootstrap
|
||
|
/******/ "use strict";
|
||
|
/******/ var __webpack_modules__ = ({
|
||
|
|
||
|
/***/ "@wordpress/i18n":
|
||
|
/*!**************************!*\
|
||
|
!*** external "wp.i18n" ***!
|
||
|
\**************************/
|
||
|
/***/ ((module) => {
|
||
|
|
||
|
module.exports = wp.i18n;
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/a-callable.js":
|
||
|
/*!*******************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/a-callable.js ***!
|
||
|
\*******************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
|
||
|
var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../node_modules/core-js/internals/try-to-string.js");
|
||
|
|
||
|
var $TypeError = TypeError;
|
||
|
|
||
|
// `Assert: IsCallable(argument) is true`
|
||
|
module.exports = function (argument) {
|
||
|
if (isCallable(argument)) return argument;
|
||
|
throw new $TypeError(tryToString(argument) + ' is not a function');
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/an-object.js":
|
||
|
/*!******************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/an-object.js ***!
|
||
|
\******************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
|
||
|
|
||
|
var $String = String;
|
||
|
var $TypeError = TypeError;
|
||
|
|
||
|
// `Assert: Type(argument) is Object`
|
||
|
module.exports = function (argument) {
|
||
|
if (isObject(argument)) return argument;
|
||
|
throw new $TypeError($String(argument) + ' is not an object');
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/array-includes.js":
|
||
|
/*!***********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/array-includes.js ***!
|
||
|
\***********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
|
||
|
var toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "../node_modules/core-js/internals/to-absolute-index.js");
|
||
|
var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../node_modules/core-js/internals/length-of-array-like.js");
|
||
|
|
||
|
// `Array.prototype.{ indexOf, includes }` methods implementation
|
||
|
var createMethod = function (IS_INCLUDES) {
|
||
|
return function ($this, el, fromIndex) {
|
||
|
var O = toIndexedObject($this);
|
||
|
var length = lengthOfArrayLike(O);
|
||
|
var index = toAbsoluteIndex(fromIndex, length);
|
||
|
var value;
|
||
|
// Array#includes uses SameValueZero equality algorithm
|
||
|
// eslint-disable-next-line no-self-compare -- NaN check
|
||
|
if (IS_INCLUDES && el !== el) while (length > index) {
|
||
|
value = O[index++];
|
||
|
// eslint-disable-next-line no-self-compare -- NaN check
|
||
|
if (value !== value) return true;
|
||
|
// Array#indexOf ignores holes, Array#includes - not
|
||
|
} else for (;length > index; index++) {
|
||
|
if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
|
||
|
} return !IS_INCLUDES && -1;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
module.exports = {
|
||
|
// `Array.prototype.includes` method
|
||
|
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
||
|
includes: createMethod(true),
|
||
|
// `Array.prototype.indexOf` method
|
||
|
// https://tc39.es/ecma262/#sec-array.prototype.indexof
|
||
|
indexOf: createMethod(false)
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/array-set-length.js":
|
||
|
/*!*************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/array-set-length.js ***!
|
||
|
\*************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
|
||
|
var isArray = __webpack_require__(/*! ../internals/is-array */ "../node_modules/core-js/internals/is-array.js");
|
||
|
|
||
|
var $TypeError = TypeError;
|
||
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
||
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
||
|
|
||
|
// Safari < 13 does not throw an error in this case
|
||
|
var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
|
||
|
// makes no sense without proper strict mode support
|
||
|
if (this !== undefined) return true;
|
||
|
try {
|
||
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
||
|
Object.defineProperty([], 'length', { writable: false }).length = 1;
|
||
|
} catch (error) {
|
||
|
return error instanceof TypeError;
|
||
|
}
|
||
|
}();
|
||
|
|
||
|
module.exports = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
|
||
|
if (isArray(O) && !getOwnPropertyDescriptor(O, 'length').writable) {
|
||
|
throw new $TypeError('Cannot set read only .length');
|
||
|
} return O.length = length;
|
||
|
} : function (O, length) {
|
||
|
return O.length = length;
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/classof-raw.js":
|
||
|
/*!********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/classof-raw.js ***!
|
||
|
\********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
|
||
|
|
||
|
var toString = uncurryThis({}.toString);
|
||
|
var stringSlice = uncurryThis(''.slice);
|
||
|
|
||
|
module.exports = function (it) {
|
||
|
return stringSlice(toString(it), 8, -1);
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/copy-constructor-properties.js":
|
||
|
/*!************************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/copy-constructor-properties.js ***!
|
||
|
\************************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
|
||
|
var ownKeys = __webpack_require__(/*! ../internals/own-keys */ "../node_modules/core-js/internals/own-keys.js");
|
||
|
var getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../node_modules/core-js/internals/object-get-own-property-descriptor.js");
|
||
|
var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
|
||
|
|
||
|
module.exports = function (target, source, exceptions) {
|
||
|
var keys = ownKeys(source);
|
||
|
var defineProperty = definePropertyModule.f;
|
||
|
var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
||
|
for (var i = 0; i < keys.length; i++) {
|
||
|
var key = keys[i];
|
||
|
if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
|
||
|
defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/create-non-enumerable-property.js":
|
||
|
/*!***************************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/create-non-enumerable-property.js ***!
|
||
|
\***************************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
|
||
|
var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
|
||
|
var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js");
|
||
|
|
||
|
module.exports = DESCRIPTORS ? function (object, key, value) {
|
||
|
return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
|
||
|
} : function (object, key, value) {
|
||
|
object[key] = value;
|
||
|
return object;
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/create-property-descriptor.js":
|
||
|
/*!***********************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/create-property-descriptor.js ***!
|
||
|
\***********************************************************************/
|
||
|
/***/ ((module) => {
|
||
|
|
||
|
|
||
|
module.exports = function (bitmap, value) {
|
||
|
return {
|
||
|
enumerable: !(bitmap & 1),
|
||
|
configurable: !(bitmap & 2),
|
||
|
writable: !(bitmap & 4),
|
||
|
value: value
|
||
|
};
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/define-built-in.js":
|
||
|
/*!************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/define-built-in.js ***!
|
||
|
\************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
|
||
|
var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
|
||
|
var makeBuiltIn = __webpack_require__(/*! ../internals/make-built-in */ "../node_modules/core-js/internals/make-built-in.js");
|
||
|
var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
|
||
|
|
||
|
module.exports = function (O, key, value, options) {
|
||
|
if (!options) options = {};
|
||
|
var simple = options.enumerable;
|
||
|
var name = options.name !== undefined ? options.name : key;
|
||
|
if (isCallable(value)) makeBuiltIn(value, name, options);
|
||
|
if (options.global) {
|
||
|
if (simple) O[key] = value;
|
||
|
else defineGlobalProperty(key, value);
|
||
|
} else {
|
||
|
try {
|
||
|
if (!options.unsafe) delete O[key];
|
||
|
else if (O[key]) simple = true;
|
||
|
} catch (error) { /* empty */ }
|
||
|
if (simple) O[key] = value;
|
||
|
else definePropertyModule.f(O, key, {
|
||
|
value: value,
|
||
|
enumerable: false,
|
||
|
configurable: !options.nonConfigurable,
|
||
|
writable: !options.nonWritable
|
||
|
});
|
||
|
} return O;
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/define-global-property.js":
|
||
|
/*!*******************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/define-global-property.js ***!
|
||
|
\*******************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
|
||
|
|
||
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
||
|
var defineProperty = Object.defineProperty;
|
||
|
|
||
|
module.exports = function (key, value) {
|
||
|
try {
|
||
|
defineProperty(global, key, { value: value, configurable: true, writable: true });
|
||
|
} catch (error) {
|
||
|
global[key] = value;
|
||
|
} return value;
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/descriptors.js":
|
||
|
/*!********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/descriptors.js ***!
|
||
|
\********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
|
||
|
|
||
|
// Detect IE8's incomplete defineProperty implementation
|
||
|
module.exports = !fails(function () {
|
||
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
||
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
|
||
|
});
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/document-all.js":
|
||
|
/*!*********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/document-all.js ***!
|
||
|
\*********************************************************/
|
||
|
/***/ ((module) => {
|
||
|
|
||
|
|
||
|
var documentAll = typeof document == 'object' && document.all;
|
||
|
|
||
|
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
||
|
// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
|
||
|
var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
|
||
|
|
||
|
module.exports = {
|
||
|
all: documentAll,
|
||
|
IS_HTMLDDA: IS_HTMLDDA
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/document-create-element.js":
|
||
|
/*!********************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/document-create-element.js ***!
|
||
|
\********************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
|
||
|
var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
|
||
|
|
||
|
var document = global.document;
|
||
|
// typeof document.createElement is 'object' in old IE
|
||
|
var EXISTS = isObject(document) && isObject(document.createElement);
|
||
|
|
||
|
module.exports = function (it) {
|
||
|
return EXISTS ? document.createElement(it) : {};
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/does-not-exceed-safe-integer.js":
|
||
|
/*!*************************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/does-not-exceed-safe-integer.js ***!
|
||
|
\*************************************************************************/
|
||
|
/***/ ((module) => {
|
||
|
|
||
|
|
||
|
var $TypeError = TypeError;
|
||
|
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
|
||
|
|
||
|
module.exports = function (it) {
|
||
|
if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
|
||
|
return it;
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/engine-user-agent.js":
|
||
|
/*!**************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/engine-user-agent.js ***!
|
||
|
\**************************************************************/
|
||
|
/***/ ((module) => {
|
||
|
|
||
|
|
||
|
module.exports = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/engine-v8-version.js":
|
||
|
/*!**************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/engine-v8-version.js ***!
|
||
|
\**************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
|
||
|
var userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ "../node_modules/core-js/internals/engine-user-agent.js");
|
||
|
|
||
|
var process = global.process;
|
||
|
var Deno = global.Deno;
|
||
|
var versions = process && process.versions || Deno && Deno.version;
|
||
|
var v8 = versions && versions.v8;
|
||
|
var match, version;
|
||
|
|
||
|
if (v8) {
|
||
|
match = v8.split('.');
|
||
|
// in old Chrome, versions of V8 isn't V8 = Chrome / 10
|
||
|
// but their correct versions are not interesting for us
|
||
|
version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
|
||
|
}
|
||
|
|
||
|
// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
|
||
|
// so check `userAgent` even if `.v8` exists, but 0
|
||
|
if (!version && userAgent) {
|
||
|
match = userAgent.match(/Edge\/(\d+)/);
|
||
|
if (!match || match[1] >= 74) {
|
||
|
match = userAgent.match(/Chrome\/(\d+)/);
|
||
|
if (match) version = +match[1];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = version;
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/enum-bug-keys.js":
|
||
|
/*!**********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/enum-bug-keys.js ***!
|
||
|
\**********************************************************/
|
||
|
/***/ ((module) => {
|
||
|
|
||
|
|
||
|
// IE8- don't enum bug keys
|
||
|
module.exports = [
|
||
|
'constructor',
|
||
|
'hasOwnProperty',
|
||
|
'isPrototypeOf',
|
||
|
'propertyIsEnumerable',
|
||
|
'toLocaleString',
|
||
|
'toString',
|
||
|
'valueOf'
|
||
|
];
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/export.js":
|
||
|
/*!***************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/export.js ***!
|
||
|
\***************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
|
||
|
var getOwnPropertyDescriptor = (__webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../node_modules/core-js/internals/object-get-own-property-descriptor.js").f);
|
||
|
var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
|
||
|
var defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ "../node_modules/core-js/internals/define-built-in.js");
|
||
|
var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
|
||
|
var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "../node_modules/core-js/internals/copy-constructor-properties.js");
|
||
|
var isForced = __webpack_require__(/*! ../internals/is-forced */ "../node_modules/core-js/internals/is-forced.js");
|
||
|
|
||
|
/*
|
||
|
options.target - name of the target object
|
||
|
options.global - target is the global object
|
||
|
options.stat - export as static methods of target
|
||
|
options.proto - export as prototype methods of target
|
||
|
options.real - real prototype method for the `pure` version
|
||
|
options.forced - export even if the native feature is available
|
||
|
options.bind - bind methods to the target, required for the `pure` version
|
||
|
options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
|
||
|
options.unsafe - use the simple assignment of property instead of delete + defineProperty
|
||
|
options.sham - add a flag to not completely full polyfills
|
||
|
options.enumerable - export as enumerable property
|
||
|
options.dontCallGetSet - prevent calling a getter on target
|
||
|
options.name - the .name of the function if it does not match the key
|
||
|
*/
|
||
|
module.exports = function (options, source) {
|
||
|
var TARGET = options.target;
|
||
|
var GLOBAL = options.global;
|
||
|
var STATIC = options.stat;
|
||
|
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
||
|
if (GLOBAL) {
|
||
|
target = global;
|
||
|
} else if (STATIC) {
|
||
|
target = global[TARGET] || defineGlobalProperty(TARGET, {});
|
||
|
} else {
|
||
|
target = (global[TARGET] || {}).prototype;
|
||
|
}
|
||
|
if (target) for (key in source) {
|
||
|
sourceProperty = source[key];
|
||
|
if (options.dontCallGetSet) {
|
||
|
descriptor = getOwnPropertyDescriptor(target, key);
|
||
|
targetProperty = descriptor && descriptor.value;
|
||
|
} else targetProperty = target[key];
|
||
|
FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
|
||
|
// contained in target
|
||
|
if (!FORCED && targetProperty !== undefined) {
|
||
|
if (typeof sourceProperty == typeof targetProperty) continue;
|
||
|
copyConstructorProperties(sourceProperty, targetProperty);
|
||
|
}
|
||
|
// add a flag to not completely full polyfills
|
||
|
if (options.sham || (targetProperty && targetProperty.sham)) {
|
||
|
createNonEnumerableProperty(sourceProperty, 'sham', true);
|
||
|
}
|
||
|
defineBuiltIn(target, key, sourceProperty, options);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/fails.js":
|
||
|
/*!**************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/fails.js ***!
|
||
|
\**************************************************/
|
||
|
/***/ ((module) => {
|
||
|
|
||
|
|
||
|
module.exports = function (exec) {
|
||
|
try {
|
||
|
return !!exec();
|
||
|
} catch (error) {
|
||
|
return true;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/function-bind-native.js":
|
||
|
/*!*****************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/function-bind-native.js ***!
|
||
|
\*****************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
|
||
|
|
||
|
module.exports = !fails(function () {
|
||
|
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
||
|
var test = (function () { /* empty */ }).bind();
|
||
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
||
|
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
||
|
});
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/function-call.js":
|
||
|
/*!**********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/function-call.js ***!
|
||
|
\**********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
|
||
|
|
||
|
var call = Function.prototype.call;
|
||
|
|
||
|
module.exports = NATIVE_BIND ? call.bind(call) : function () {
|
||
|
return call.apply(call, arguments);
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/function-name.js":
|
||
|
/*!**********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/function-name.js ***!
|
||
|
\**********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
|
||
|
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
|
||
|
|
||
|
var FunctionPrototype = Function.prototype;
|
||
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
||
|
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
||
|
|
||
|
var EXISTS = hasOwn(FunctionPrototype, 'name');
|
||
|
// additional protection from minified / mangled / dropped function names
|
||
|
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
||
|
var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
|
||
|
|
||
|
module.exports = {
|
||
|
EXISTS: EXISTS,
|
||
|
PROPER: PROPER,
|
||
|
CONFIGURABLE: CONFIGURABLE
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/function-uncurry-this.js":
|
||
|
/*!******************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/function-uncurry-this.js ***!
|
||
|
\******************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
|
||
|
|
||
|
var FunctionPrototype = Function.prototype;
|
||
|
var call = FunctionPrototype.call;
|
||
|
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
|
||
|
|
||
|
module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
||
|
return function () {
|
||
|
return call.apply(fn, arguments);
|
||
|
};
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/get-built-in.js":
|
||
|
/*!*********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/get-built-in.js ***!
|
||
|
\*********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
|
||
|
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
|
||
|
|
||
|
var aFunction = function (argument) {
|
||
|
return isCallable(argument) ? argument : undefined;
|
||
|
};
|
||
|
|
||
|
module.exports = function (namespace, method) {
|
||
|
return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method];
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/get-method.js":
|
||
|
/*!*******************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/get-method.js ***!
|
||
|
\*******************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
|
||
|
var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ "../node_modules/core-js/internals/is-null-or-undefined.js");
|
||
|
|
||
|
// `GetMethod` abstract operation
|
||
|
// https://tc39.es/ecma262/#sec-getmethod
|
||
|
module.exports = function (V, P) {
|
||
|
var func = V[P];
|
||
|
return isNullOrUndefined(func) ? undefined : aCallable(func);
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/global.js":
|
||
|
/*!***************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/global.js ***!
|
||
|
\***************************************************/
|
||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||
|
|
||
|
|
||
|
var check = function (it) {
|
||
|
return it && it.Math === Math && it;
|
||
|
};
|
||
|
|
||
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
||
|
module.exports =
|
||
|
// eslint-disable-next-line es/no-global-this -- safe
|
||
|
check(typeof globalThis == 'object' && globalThis) ||
|
||
|
check(typeof window == 'object' && window) ||
|
||
|
// eslint-disable-next-line no-restricted-globals -- safe
|
||
|
check(typeof self == 'object' && self) ||
|
||
|
check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
|
||
|
// eslint-disable-next-line no-new-func -- fallback
|
||
|
(function () { return this; })() || this || Function('return this')();
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/has-own-property.js":
|
||
|
/*!*************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/has-own-property.js ***!
|
||
|
\*************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
|
||
|
var toObject = __webpack_require__(/*! ../internals/to-object */ "../node_modules/core-js/internals/to-object.js");
|
||
|
|
||
|
var hasOwnProperty = uncurryThis({}.hasOwnProperty);
|
||
|
|
||
|
// `HasOwnProperty` abstract operation
|
||
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
||
|
// eslint-disable-next-line es/no-object-hasown -- safe
|
||
|
module.exports = Object.hasOwn || function hasOwn(it, key) {
|
||
|
return hasOwnProperty(toObject(it), key);
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/hidden-keys.js":
|
||
|
/*!********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/hidden-keys.js ***!
|
||
|
\********************************************************/
|
||
|
/***/ ((module) => {
|
||
|
|
||
|
|
||
|
module.exports = {};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/ie8-dom-define.js":
|
||
|
/*!***********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/ie8-dom-define.js ***!
|
||
|
\***********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
|
||
|
var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
|
||
|
var createElement = __webpack_require__(/*! ../internals/document-create-element */ "../node_modules/core-js/internals/document-create-element.js");
|
||
|
|
||
|
// Thanks to IE8 for its funny defineProperty
|
||
|
module.exports = !DESCRIPTORS && !fails(function () {
|
||
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
||
|
return Object.defineProperty(createElement('div'), 'a', {
|
||
|
get: function () { return 7; }
|
||
|
}).a !== 7;
|
||
|
});
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/indexed-object.js":
|
||
|
/*!***********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/indexed-object.js ***!
|
||
|
\***********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
|
||
|
var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
|
||
|
var classof = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js");
|
||
|
|
||
|
var $Object = Object;
|
||
|
var split = uncurryThis(''.split);
|
||
|
|
||
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
||
|
module.exports = fails(function () {
|
||
|
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
||
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
||
|
return !$Object('z').propertyIsEnumerable(0);
|
||
|
}) ? function (it) {
|
||
|
return classof(it) === 'String' ? split(it, '') : $Object(it);
|
||
|
} : $Object;
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/inspect-source.js":
|
||
|
/*!***********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/inspect-source.js ***!
|
||
|
\***********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
|
||
|
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
|
||
|
var store = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
|
||
|
|
||
|
var functionToString = uncurryThis(Function.toString);
|
||
|
|
||
|
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
||
|
if (!isCallable(store.inspectSource)) {
|
||
|
store.inspectSource = function (it) {
|
||
|
return functionToString(it);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
module.exports = store.inspectSource;
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/internal-state.js":
|
||
|
/*!***********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/internal-state.js ***!
|
||
|
\***********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/weak-map-basic-detection */ "../node_modules/core-js/internals/weak-map-basic-detection.js");
|
||
|
var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
|
||
|
var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
|
||
|
var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
|
||
|
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
|
||
|
var shared = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
|
||
|
var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../node_modules/core-js/internals/shared-key.js");
|
||
|
var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js");
|
||
|
|
||
|
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
||
|
var TypeError = global.TypeError;
|
||
|
var WeakMap = global.WeakMap;
|
||
|
var set, get, has;
|
||
|
|
||
|
var enforce = function (it) {
|
||
|
return has(it) ? get(it) : set(it, {});
|
||
|
};
|
||
|
|
||
|
var getterFor = function (TYPE) {
|
||
|
return function (it) {
|
||
|
var state;
|
||
|
if (!isObject(it) || (state = get(it)).type !== TYPE) {
|
||
|
throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
|
||
|
} return state;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
if (NATIVE_WEAK_MAP || shared.state) {
|
||
|
var store = shared.state || (shared.state = new WeakMap());
|
||
|
/* eslint-disable no-self-assign -- prototype methods protection */
|
||
|
store.get = store.get;
|
||
|
store.has = store.has;
|
||
|
store.set = store.set;
|
||
|
/* eslint-enable no-self-assign -- prototype methods protection */
|
||
|
set = function (it, metadata) {
|
||
|
if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
||
|
metadata.facade = it;
|
||
|
store.set(it, metadata);
|
||
|
return metadata;
|
||
|
};
|
||
|
get = function (it) {
|
||
|
return store.get(it) || {};
|
||
|
};
|
||
|
has = function (it) {
|
||
|
return store.has(it);
|
||
|
};
|
||
|
} else {
|
||
|
var STATE = sharedKey('state');
|
||
|
hiddenKeys[STATE] = true;
|
||
|
set = function (it, metadata) {
|
||
|
if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
||
|
metadata.facade = it;
|
||
|
createNonEnumerableProperty(it, STATE, metadata);
|
||
|
return metadata;
|
||
|
};
|
||
|
get = function (it) {
|
||
|
return hasOwn(it, STATE) ? it[STATE] : {};
|
||
|
};
|
||
|
has = function (it) {
|
||
|
return hasOwn(it, STATE);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
set: set,
|
||
|
get: get,
|
||
|
has: has,
|
||
|
enforce: enforce,
|
||
|
getterFor: getterFor
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/is-array.js":
|
||
|
/*!*****************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/is-array.js ***!
|
||
|
\*****************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var classof = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js");
|
||
|
|
||
|
// `IsArray` abstract operation
|
||
|
// https://tc39.es/ecma262/#sec-isarray
|
||
|
// eslint-disable-next-line es/no-array-isarray -- safe
|
||
|
module.exports = Array.isArray || function isArray(argument) {
|
||
|
return classof(argument) === 'Array';
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/is-callable.js":
|
||
|
/*!********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/is-callable.js ***!
|
||
|
\********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var $documentAll = __webpack_require__(/*! ../internals/document-all */ "../node_modules/core-js/internals/document-all.js");
|
||
|
|
||
|
var documentAll = $documentAll.all;
|
||
|
|
||
|
// `IsCallable` abstract operation
|
||
|
// https://tc39.es/ecma262/#sec-iscallable
|
||
|
module.exports = $documentAll.IS_HTMLDDA ? function (argument) {
|
||
|
return typeof argument == 'function' || argument === documentAll;
|
||
|
} : function (argument) {
|
||
|
return typeof argument == 'function';
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/is-forced.js":
|
||
|
/*!******************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/is-forced.js ***!
|
||
|
\******************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
|
||
|
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
|
||
|
|
||
|
var replacement = /#|\.prototype\./;
|
||
|
|
||
|
var isForced = function (feature, detection) {
|
||
|
var value = data[normalize(feature)];
|
||
|
return value === POLYFILL ? true
|
||
|
: value === NATIVE ? false
|
||
|
: isCallable(detection) ? fails(detection)
|
||
|
: !!detection;
|
||
|
};
|
||
|
|
||
|
var normalize = isForced.normalize = function (string) {
|
||
|
return String(string).replace(replacement, '.').toLowerCase();
|
||
|
};
|
||
|
|
||
|
var data = isForced.data = {};
|
||
|
var NATIVE = isForced.NATIVE = 'N';
|
||
|
var POLYFILL = isForced.POLYFILL = 'P';
|
||
|
|
||
|
module.exports = isForced;
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/is-null-or-undefined.js":
|
||
|
/*!*****************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/is-null-or-undefined.js ***!
|
||
|
\*****************************************************************/
|
||
|
/***/ ((module) => {
|
||
|
|
||
|
|
||
|
// we can't use just `it == null` since of `document.all` special case
|
||
|
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
|
||
|
module.exports = function (it) {
|
||
|
return it === null || it === undefined;
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/is-object.js":
|
||
|
/*!******************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/is-object.js ***!
|
||
|
\******************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
|
||
|
var $documentAll = __webpack_require__(/*! ../internals/document-all */ "../node_modules/core-js/internals/document-all.js");
|
||
|
|
||
|
var documentAll = $documentAll.all;
|
||
|
|
||
|
module.exports = $documentAll.IS_HTMLDDA ? function (it) {
|
||
|
return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll;
|
||
|
} : function (it) {
|
||
|
return typeof it == 'object' ? it !== null : isCallable(it);
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/is-pure.js":
|
||
|
/*!****************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/is-pure.js ***!
|
||
|
\****************************************************/
|
||
|
/***/ ((module) => {
|
||
|
|
||
|
|
||
|
module.exports = false;
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/is-symbol.js":
|
||
|
/*!******************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/is-symbol.js ***!
|
||
|
\******************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js");
|
||
|
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
|
||
|
var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js");
|
||
|
var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../node_modules/core-js/internals/use-symbol-as-uid.js");
|
||
|
|
||
|
var $Object = Object;
|
||
|
|
||
|
module.exports = USE_SYMBOL_AS_UID ? function (it) {
|
||
|
return typeof it == 'symbol';
|
||
|
} : function (it) {
|
||
|
var $Symbol = getBuiltIn('Symbol');
|
||
|
return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/length-of-array-like.js":
|
||
|
/*!*****************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/length-of-array-like.js ***!
|
||
|
\*****************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var toLength = __webpack_require__(/*! ../internals/to-length */ "../node_modules/core-js/internals/to-length.js");
|
||
|
|
||
|
// `LengthOfArrayLike` abstract operation
|
||
|
// https://tc39.es/ecma262/#sec-lengthofarraylike
|
||
|
module.exports = function (obj) {
|
||
|
return toLength(obj.length);
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/make-built-in.js":
|
||
|
/*!**********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/make-built-in.js ***!
|
||
|
\**********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
|
||
|
var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
|
||
|
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
|
||
|
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
|
||
|
var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
|
||
|
var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(/*! ../internals/function-name */ "../node_modules/core-js/internals/function-name.js").CONFIGURABLE);
|
||
|
var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "../node_modules/core-js/internals/inspect-source.js");
|
||
|
var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "../node_modules/core-js/internals/internal-state.js");
|
||
|
|
||
|
var enforceInternalState = InternalStateModule.enforce;
|
||
|
var getInternalState = InternalStateModule.get;
|
||
|
var $String = String;
|
||
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
||
|
var defineProperty = Object.defineProperty;
|
||
|
var stringSlice = uncurryThis(''.slice);
|
||
|
var replace = uncurryThis(''.replace);
|
||
|
var join = uncurryThis([].join);
|
||
|
|
||
|
var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
|
||
|
return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
||
|
});
|
||
|
|
||
|
var TEMPLATE = String(String).split('String');
|
||
|
|
||
|
var makeBuiltIn = module.exports = function (value, name, options) {
|
||
|
if (stringSlice($String(name), 0, 7) === 'Symbol(') {
|
||
|
name = '[' + replace($String(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
|
||
|
}
|
||
|
if (options && options.getter) name = 'get ' + name;
|
||
|
if (options && options.setter) name = 'set ' + name;
|
||
|
if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
||
|
if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
|
||
|
else value.name = name;
|
||
|
}
|
||
|
if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
|
||
|
defineProperty(value, 'length', { value: options.arity });
|
||
|
}
|
||
|
try {
|
||
|
if (options && hasOwn(options, 'constructor') && options.constructor) {
|
||
|
if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
|
||
|
// in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
|
||
|
} else if (value.prototype) value.prototype = undefined;
|
||
|
} catch (error) { /* empty */ }
|
||
|
var state = enforceInternalState(value);
|
||
|
if (!hasOwn(state, 'source')) {
|
||
|
state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
|
||
|
} return value;
|
||
|
};
|
||
|
|
||
|
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
||
|
// eslint-disable-next-line no-extend-native -- required
|
||
|
Function.prototype.toString = makeBuiltIn(function toString() {
|
||
|
return isCallable(this) && getInternalState(this).source || inspectSource(this);
|
||
|
}, 'toString');
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/math-trunc.js":
|
||
|
/*!*******************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/math-trunc.js ***!
|
||
|
\*******************************************************/
|
||
|
/***/ ((module) => {
|
||
|
|
||
|
|
||
|
var ceil = Math.ceil;
|
||
|
var floor = Math.floor;
|
||
|
|
||
|
// `Math.trunc` method
|
||
|
// https://tc39.es/ecma262/#sec-math.trunc
|
||
|
// eslint-disable-next-line es/no-math-trunc -- safe
|
||
|
module.exports = Math.trunc || function trunc(x) {
|
||
|
var n = +x;
|
||
|
return (n > 0 ? floor : ceil)(n);
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/object-define-property.js":
|
||
|
/*!*******************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/object-define-property.js ***!
|
||
|
\*******************************************************************/
|
||
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
|
||
|
var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "../node_modules/core-js/internals/ie8-dom-define.js");
|
||
|
var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(/*! ../internals/v8-prototype-define-bug */ "../node_modules/core-js/internals/v8-prototype-define-bug.js");
|
||
|
var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
|
||
|
var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ "../node_modules/core-js/internals/to-property-key.js");
|
||
|
|
||
|
var $TypeError = TypeError;
|
||
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
||
|
var $defineProperty = Object.defineProperty;
|
||
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
||
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
||
|
var ENUMERABLE = 'enumerable';
|
||
|
var CONFIGURABLE = 'configurable';
|
||
|
var WRITABLE = 'writable';
|
||
|
|
||
|
// `Object.defineProperty` method
|
||
|
// https://tc39.es/ecma262/#sec-object.defineproperty
|
||
|
exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
|
||
|
anObject(O);
|
||
|
P = toPropertyKey(P);
|
||
|
anObject(Attributes);
|
||
|
if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
|
||
|
var current = $getOwnPropertyDescriptor(O, P);
|
||
|
if (current && current[WRITABLE]) {
|
||
|
O[P] = Attributes.value;
|
||
|
Attributes = {
|
||
|
configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
|
||
|
enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
|
||
|
writable: false
|
||
|
};
|
||
|
}
|
||
|
} return $defineProperty(O, P, Attributes);
|
||
|
} : $defineProperty : function defineProperty(O, P, Attributes) {
|
||
|
anObject(O);
|
||
|
P = toPropertyKey(P);
|
||
|
anObject(Attributes);
|
||
|
if (IE8_DOM_DEFINE) try {
|
||
|
return $defineProperty(O, P, Attributes);
|
||
|
} catch (error) { /* empty */ }
|
||
|
if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
|
||
|
if ('value' in Attributes) O[P] = Attributes.value;
|
||
|
return O;
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/object-get-own-property-descriptor.js":
|
||
|
/*!*******************************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
|
||
|
\*******************************************************************************/
|
||
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
|
||
|
var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
|
||
|
var propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "../node_modules/core-js/internals/object-property-is-enumerable.js");
|
||
|
var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js");
|
||
|
var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
|
||
|
var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ "../node_modules/core-js/internals/to-property-key.js");
|
||
|
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
|
||
|
var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "../node_modules/core-js/internals/ie8-dom-define.js");
|
||
|
|
||
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
||
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
||
|
|
||
|
// `Object.getOwnPropertyDescriptor` method
|
||
|
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
|
||
|
exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
|
||
|
O = toIndexedObject(O);
|
||
|
P = toPropertyKey(P);
|
||
|
if (IE8_DOM_DEFINE) try {
|
||
|
return $getOwnPropertyDescriptor(O, P);
|
||
|
} catch (error) { /* empty */ }
|
||
|
if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/object-get-own-property-names.js":
|
||
|
/*!**************************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/object-get-own-property-names.js ***!
|
||
|
\**************************************************************************/
|
||
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "../node_modules/core-js/internals/object-keys-internal.js");
|
||
|
var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "../node_modules/core-js/internals/enum-bug-keys.js");
|
||
|
|
||
|
var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
||
|
|
||
|
// `Object.getOwnPropertyNames` method
|
||
|
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
||
|
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
||
|
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
||
|
return internalObjectKeys(O, hiddenKeys);
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/object-get-own-property-symbols.js":
|
||
|
/*!****************************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/object-get-own-property-symbols.js ***!
|
||
|
\****************************************************************************/
|
||
|
/***/ ((__unused_webpack_module, exports) => {
|
||
|
|
||
|
|
||
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
||
|
exports.f = Object.getOwnPropertySymbols;
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/object-is-prototype-of.js":
|
||
|
/*!*******************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/object-is-prototype-of.js ***!
|
||
|
\*******************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
|
||
|
|
||
|
module.exports = uncurryThis({}.isPrototypeOf);
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/object-keys-internal.js":
|
||
|
/*!*****************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/object-keys-internal.js ***!
|
||
|
\*****************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
|
||
|
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
|
||
|
var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
|
||
|
var indexOf = (__webpack_require__(/*! ../internals/array-includes */ "../node_modules/core-js/internals/array-includes.js").indexOf);
|
||
|
var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js");
|
||
|
|
||
|
var push = uncurryThis([].push);
|
||
|
|
||
|
module.exports = function (object, names) {
|
||
|
var O = toIndexedObject(object);
|
||
|
var i = 0;
|
||
|
var result = [];
|
||
|
var key;
|
||
|
for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
|
||
|
// Don't enum bug & hidden keys
|
||
|
while (names.length > i) if (hasOwn(O, key = names[i++])) {
|
||
|
~indexOf(result, key) || push(result, key);
|
||
|
}
|
||
|
return result;
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/object-property-is-enumerable.js":
|
||
|
/*!**************************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/object-property-is-enumerable.js ***!
|
||
|
\**************************************************************************/
|
||
|
/***/ ((__unused_webpack_module, exports) => {
|
||
|
|
||
|
|
||
|
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
||
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
||
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
||
|
|
||
|
// Nashorn ~ JDK8 bug
|
||
|
var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
|
||
|
|
||
|
// `Object.prototype.propertyIsEnumerable` method implementation
|
||
|
// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
|
||
|
exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
||
|
var descriptor = getOwnPropertyDescriptor(this, V);
|
||
|
return !!descriptor && descriptor.enumerable;
|
||
|
} : $propertyIsEnumerable;
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/ordinary-to-primitive.js":
|
||
|
/*!******************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/ordinary-to-primitive.js ***!
|
||
|
\******************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
|
||
|
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
|
||
|
var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
|
||
|
|
||
|
var $TypeError = TypeError;
|
||
|
|
||
|
// `OrdinaryToPrimitive` abstract operation
|
||
|
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
||
|
module.exports = function (input, pref) {
|
||
|
var fn, val;
|
||
|
if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
|
||
|
if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
|
||
|
if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
|
||
|
throw new $TypeError("Can't convert object to primitive value");
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/own-keys.js":
|
||
|
/*!*****************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/own-keys.js ***!
|
||
|
\*****************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js");
|
||
|
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
|
||
|
var getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "../node_modules/core-js/internals/object-get-own-property-names.js");
|
||
|
var getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "../node_modules/core-js/internals/object-get-own-property-symbols.js");
|
||
|
var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
|
||
|
|
||
|
var concat = uncurryThis([].concat);
|
||
|
|
||
|
// all object keys, includes non-enumerable and symbols
|
||
|
module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
|
||
|
var keys = getOwnPropertyNamesModule.f(anObject(it));
|
||
|
var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
||
|
return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/require-object-coercible.js":
|
||
|
/*!*********************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/require-object-coercible.js ***!
|
||
|
\*********************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ "../node_modules/core-js/internals/is-null-or-undefined.js");
|
||
|
|
||
|
var $TypeError = TypeError;
|
||
|
|
||
|
// `RequireObjectCoercible` abstract operation
|
||
|
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
||
|
module.exports = function (it) {
|
||
|
if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
|
||
|
return it;
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/shared-key.js":
|
||
|
/*!*******************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/shared-key.js ***!
|
||
|
\*******************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var shared = __webpack_require__(/*! ../internals/shared */ "../node_modules/core-js/internals/shared.js");
|
||
|
var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js");
|
||
|
|
||
|
var keys = shared('keys');
|
||
|
|
||
|
module.exports = function (key) {
|
||
|
return keys[key] || (keys[key] = uid(key));
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/shared-store.js":
|
||
|
/*!*********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/shared-store.js ***!
|
||
|
\*********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
|
||
|
var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
|
||
|
|
||
|
var SHARED = '__core-js_shared__';
|
||
|
var store = global[SHARED] || defineGlobalProperty(SHARED, {});
|
||
|
|
||
|
module.exports = store;
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/shared.js":
|
||
|
/*!***************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/shared.js ***!
|
||
|
\***************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
|
||
|
var store = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
|
||
|
|
||
|
(module.exports = function (key, value) {
|
||
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
||
|
})('versions', []).push({
|
||
|
version: '3.33.2',
|
||
|
mode: IS_PURE ? 'pure' : 'global',
|
||
|
copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
|
||
|
license: 'https://github.com/zloirock/core-js/blob/v3.33.2/LICENSE',
|
||
|
source: 'https://github.com/zloirock/core-js'
|
||
|
});
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/symbol-constructor-detection.js":
|
||
|
/*!*************************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/symbol-constructor-detection.js ***!
|
||
|
\*************************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
/* eslint-disable es/no-symbol -- required for testing */
|
||
|
var V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ "../node_modules/core-js/internals/engine-v8-version.js");
|
||
|
var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
|
||
|
var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
|
||
|
|
||
|
var $String = global.String;
|
||
|
|
||
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
||
|
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
||
|
var symbol = Symbol('symbol detection');
|
||
|
// Chrome 38 Symbol has incorrect toString conversion
|
||
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
||
|
// nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
|
||
|
// of course, fail.
|
||
|
return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
|
||
|
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
|
||
|
!Symbol.sham && V8_VERSION && V8_VERSION < 41;
|
||
|
});
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/to-absolute-index.js":
|
||
|
/*!**************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/to-absolute-index.js ***!
|
||
|
\**************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../node_modules/core-js/internals/to-integer-or-infinity.js");
|
||
|
|
||
|
var max = Math.max;
|
||
|
var min = Math.min;
|
||
|
|
||
|
// Helper for a popular repeating case of the spec:
|
||
|
// Let integer be ? ToInteger(index).
|
||
|
// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
|
||
|
module.exports = function (index, length) {
|
||
|
var integer = toIntegerOrInfinity(index);
|
||
|
return integer < 0 ? max(integer + length, 0) : min(integer, length);
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/to-indexed-object.js":
|
||
|
/*!**************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/to-indexed-object.js ***!
|
||
|
\**************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
// toObject with fallback for non-array-like ES3 strings
|
||
|
var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "../node_modules/core-js/internals/indexed-object.js");
|
||
|
var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "../node_modules/core-js/internals/require-object-coercible.js");
|
||
|
|
||
|
module.exports = function (it) {
|
||
|
return IndexedObject(requireObjectCoercible(it));
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/to-integer-or-infinity.js":
|
||
|
/*!*******************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/to-integer-or-infinity.js ***!
|
||
|
\*******************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var trunc = __webpack_require__(/*! ../internals/math-trunc */ "../node_modules/core-js/internals/math-trunc.js");
|
||
|
|
||
|
// `ToIntegerOrInfinity` abstract operation
|
||
|
// https://tc39.es/ecma262/#sec-tointegerorinfinity
|
||
|
module.exports = function (argument) {
|
||
|
var number = +argument;
|
||
|
// eslint-disable-next-line no-self-compare -- NaN check
|
||
|
return number !== number || number === 0 ? 0 : trunc(number);
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/to-length.js":
|
||
|
/*!******************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/to-length.js ***!
|
||
|
\******************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../node_modules/core-js/internals/to-integer-or-infinity.js");
|
||
|
|
||
|
var min = Math.min;
|
||
|
|
||
|
// `ToLength` abstract operation
|
||
|
// https://tc39.es/ecma262/#sec-tolength
|
||
|
module.exports = function (argument) {
|
||
|
return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/to-object.js":
|
||
|
/*!******************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/to-object.js ***!
|
||
|
\******************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "../node_modules/core-js/internals/require-object-coercible.js");
|
||
|
|
||
|
var $Object = Object;
|
||
|
|
||
|
// `ToObject` abstract operation
|
||
|
// https://tc39.es/ecma262/#sec-toobject
|
||
|
module.exports = function (argument) {
|
||
|
return $Object(requireObjectCoercible(argument));
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/to-primitive.js":
|
||
|
/*!*********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/to-primitive.js ***!
|
||
|
\*********************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
|
||
|
var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
|
||
|
var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../node_modules/core-js/internals/is-symbol.js");
|
||
|
var getMethod = __webpack_require__(/*! ../internals/get-method */ "../node_modules/core-js/internals/get-method.js");
|
||
|
var ordinaryToPrimitive = __webpack_require__(/*! ../internals/ordinary-to-primitive */ "../node_modules/core-js/internals/ordinary-to-primitive.js");
|
||
|
var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
|
||
|
|
||
|
var $TypeError = TypeError;
|
||
|
var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
|
||
|
|
||
|
// `ToPrimitive` abstract operation
|
||
|
// https://tc39.es/ecma262/#sec-toprimitive
|
||
|
module.exports = function (input, pref) {
|
||
|
if (!isObject(input) || isSymbol(input)) return input;
|
||
|
var exoticToPrim = getMethod(input, TO_PRIMITIVE);
|
||
|
var result;
|
||
|
if (exoticToPrim) {
|
||
|
if (pref === undefined) pref = 'default';
|
||
|
result = call(exoticToPrim, input, pref);
|
||
|
if (!isObject(result) || isSymbol(result)) return result;
|
||
|
throw new $TypeError("Can't convert object to primitive value");
|
||
|
}
|
||
|
if (pref === undefined) pref = 'number';
|
||
|
return ordinaryToPrimitive(input, pref);
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/to-property-key.js":
|
||
|
/*!************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/to-property-key.js ***!
|
||
|
\************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "../node_modules/core-js/internals/to-primitive.js");
|
||
|
var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../node_modules/core-js/internals/is-symbol.js");
|
||
|
|
||
|
// `ToPropertyKey` abstract operation
|
||
|
// https://tc39.es/ecma262/#sec-topropertykey
|
||
|
module.exports = function (argument) {
|
||
|
var key = toPrimitive(argument, 'string');
|
||
|
return isSymbol(key) ? key : key + '';
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/try-to-string.js":
|
||
|
/*!**********************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/try-to-string.js ***!
|
||
|
\**********************************************************/
|
||
|
/***/ ((module) => {
|
||
|
|
||
|
|
||
|
var $String = String;
|
||
|
|
||
|
module.exports = function (argument) {
|
||
|
try {
|
||
|
return $String(argument);
|
||
|
} catch (error) {
|
||
|
return 'Object';
|
||
|
}
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/uid.js":
|
||
|
/*!************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/uid.js ***!
|
||
|
\************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
|
||
|
|
||
|
var id = 0;
|
||
|
var postfix = Math.random();
|
||
|
var toString = uncurryThis(1.0.toString);
|
||
|
|
||
|
module.exports = function (key) {
|
||
|
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/use-symbol-as-uid.js":
|
||
|
/*!**************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/use-symbol-as-uid.js ***!
|
||
|
\**************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
/* eslint-disable es/no-symbol -- required for testing */
|
||
|
var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
|
||
|
|
||
|
module.exports = NATIVE_SYMBOL
|
||
|
&& !Symbol.sham
|
||
|
&& typeof Symbol.iterator == 'symbol';
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/v8-prototype-define-bug.js":
|
||
|
/*!********************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/v8-prototype-define-bug.js ***!
|
||
|
\********************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
|
||
|
var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
|
||
|
|
||
|
// V8 ~ Chrome 36-
|
||
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
||
|
module.exports = DESCRIPTORS && fails(function () {
|
||
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
||
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
||
|
value: 42,
|
||
|
writable: false
|
||
|
}).prototype !== 42;
|
||
|
});
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/weak-map-basic-detection.js":
|
||
|
/*!*********************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/weak-map-basic-detection.js ***!
|
||
|
\*********************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
|
||
|
var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
|
||
|
|
||
|
var WeakMap = global.WeakMap;
|
||
|
|
||
|
module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/internals/well-known-symbol.js":
|
||
|
/*!**************************************************************!*\
|
||
|
!*** ../node_modules/core-js/internals/well-known-symbol.js ***!
|
||
|
\**************************************************************/
|
||
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
|
||
|
var shared = __webpack_require__(/*! ../internals/shared */ "../node_modules/core-js/internals/shared.js");
|
||
|
var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
|
||
|
var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js");
|
||
|
var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
|
||
|
var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../node_modules/core-js/internals/use-symbol-as-uid.js");
|
||
|
|
||
|
var Symbol = global.Symbol;
|
||
|
var WellKnownSymbolsStore = shared('wks');
|
||
|
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
|
||
|
|
||
|
module.exports = function (name) {
|
||
|
if (!hasOwn(WellKnownSymbolsStore, name)) {
|
||
|
WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)
|
||
|
? Symbol[name]
|
||
|
: createWellKnownSymbol('Symbol.' + name);
|
||
|
} return WellKnownSymbolsStore[name];
|
||
|
};
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "../node_modules/core-js/modules/es.array.push.js":
|
||
|
/*!********************************************************!*\
|
||
|
!*** ../node_modules/core-js/modules/es.array.push.js ***!
|
||
|
\********************************************************/
|
||
|
/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
|
||
|
|
||
|
|
||
|
var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js");
|
||
|
var toObject = __webpack_require__(/*! ../internals/to-object */ "../node_modules/core-js/internals/to-object.js");
|
||
|
var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../node_modules/core-js/internals/length-of-array-like.js");
|
||
|
var setArrayLength = __webpack_require__(/*! ../internals/array-set-length */ "../node_modules/core-js/internals/array-set-length.js");
|
||
|
var doesNotExceedSafeInteger = __webpack_require__(/*! ../internals/does-not-exceed-safe-integer */ "../node_modules/core-js/internals/does-not-exceed-safe-integer.js");
|
||
|
var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
|
||
|
|
||
|
var INCORRECT_TO_LENGTH = fails(function () {
|
||
|
return [].push.call({ length: 0x100000000 }, 1) !== 4294967297;
|
||
|
});
|
||
|
|
||
|
// V8 and Safari <= 15.4, FF < 23 throws InternalError
|
||
|
// https://bugs.chromium.org/p/v8/issues/detail?id=12681
|
||
|
var properErrorOnNonWritableLength = function () {
|
||
|
try {
|
||
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
||
|
Object.defineProperty([], 'length', { writable: false }).push();
|
||
|
} catch (error) {
|
||
|
return error instanceof TypeError;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
var FORCED = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();
|
||
|
|
||
|
// `Array.prototype.push` method
|
||
|
// https://tc39.es/ecma262/#sec-array.prototype.push
|
||
|
$({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
|
||
|
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
||
|
push: function push(item) {
|
||
|
var O = toObject(this);
|
||
|
var len = lengthOfArrayLike(O);
|
||
|
var argCount = arguments.length;
|
||
|
doesNotExceedSafeInteger(len + argCount);
|
||
|
for (var i = 0; i < argCount; i++) {
|
||
|
O[len] = arguments[i];
|
||
|
len++;
|
||
|
}
|
||
|
setArrayLength(O, len);
|
||
|
return len;
|
||
|
}
|
||
|
});
|
||
|
|
||
|
|
||
|
/***/ })
|
||
|
|
||
|
/******/ });
|
||
|
/************************************************************************/
|
||
|
/******/ // The module cache
|
||
|
/******/ var __webpack_module_cache__ = {};
|
||
|
/******/
|
||
|
/******/ // The require function
|
||
|
/******/ function __webpack_require__(moduleId) {
|
||
|
/******/ // Check if module is in cache
|
||
|
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
||
|
/******/ if (cachedModule !== undefined) {
|
||
|
/******/ return cachedModule.exports;
|
||
|
/******/ }
|
||
|
/******/ // Create a new module (and put it into the cache)
|
||
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
||
|
/******/ // no module.id needed
|
||
|
/******/ // no module.loaded needed
|
||
|
/******/ exports: {}
|
||
|
/******/ };
|
||
|
/******/
|
||
|
/******/ // Execute the module function
|
||
|
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||
|
/******/
|
||
|
/******/ // Return the exports of the module
|
||
|
/******/ return module.exports;
|
||
|
/******/ }
|
||
|
/******/
|
||
|
/************************************************************************/
|
||
|
/******/ /* webpack/runtime/global */
|
||
|
/******/ (() => {
|
||
|
/******/ __webpack_require__.g = (function() {
|
||
|
/******/ if (typeof globalThis === 'object') return globalThis;
|
||
|
/******/ try {
|
||
|
/******/ return this || new Function('return this')();
|
||
|
/******/ } catch (e) {
|
||
|
/******/ if (typeof window === 'object') return window;
|
||
|
/******/ }
|
||
|
/******/ })();
|
||
|
/******/ })();
|
||
|
/******/
|
||
|
/************************************************************************/
|
||
|
var __webpack_exports__ = {};
|
||
|
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
|
||
|
(() => {
|
||
|
/*!**************************************************************!*\
|
||
|
!*** ../assets/dev/js/admin/gutenberg-woocommerce-notice.js ***!
|
||
|
\**************************************************************/
|
||
|
/* provided dependency */ var __ = __webpack_require__(/*! @wordpress/i18n */ "@wordpress/i18n")["__"];
|
||
|
|
||
|
|
||
|
__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js");
|
||
|
(function ($) {
|
||
|
'use strict';
|
||
|
|
||
|
let previousNumberOfBlocks;
|
||
|
let isCachedCartNoticeDismissed;
|
||
|
let hasCartNoticeDismissalMetaValue;
|
||
|
let blockNames = [];
|
||
|
const GutenbergWooCommerceEditorBlockNotice = {
|
||
|
handleGutenbergEditorNotices() {
|
||
|
wp.data.subscribe(async () => {
|
||
|
const blocks = wp.data.select('core/block-editor').getBlocks();
|
||
|
blockNames = this.getBlockNames(blocks);
|
||
|
if (1 === blocks.length) {
|
||
|
blockNames = this.maybeRemoveEmptyDefaultBlockFromBlockNames(blocks);
|
||
|
}
|
||
|
if (blockNames.length !== previousNumberOfBlocks) {
|
||
|
await this.maybeCreateNotice();
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
getPostId() {
|
||
|
return wp.data.select('core/editor').getCurrentPostId();
|
||
|
},
|
||
|
async maybeCreateNotice() {
|
||
|
previousNumberOfBlocks = blockNames.length || 0;
|
||
|
if (null === this.getPostId()) {
|
||
|
return;
|
||
|
}
|
||
|
const woocommerceCartBlockNames = ['woocommerce/cart', 'woocommerce/classic-shortcode'],
|
||
|
hasWoocommerceCartBlock = undefined !== Object.keys(blockNames).find(index => woocommerceCartBlockNames.includes(blockNames[index]));
|
||
|
if (!hasWoocommerceCartBlock) {
|
||
|
if (!!hasCartNoticeDismissalMetaValue) {
|
||
|
this.setCartNoticeDismissalState(false);
|
||
|
}
|
||
|
this.removeNotice();
|
||
|
return;
|
||
|
} else if (await this.shouldHideNotice()) {
|
||
|
this.removeNotice();
|
||
|
return;
|
||
|
}
|
||
|
this.createNotice();
|
||
|
},
|
||
|
createNotice() {
|
||
|
const noticeText = __('This page uses the WooCommerce Cart Block. Before editing the page with Elementor and using the Elementor Cart widget, please check out this article.', 'elementor-pro'),
|
||
|
linkLabel = __('Read More', 'elementor-pro'),
|
||
|
linkUrl = 'https://go.elementor.com/wp-dash-woocommerce-cart-block/';
|
||
|
wp.data.dispatch('core/notices').createNotice('warning', noticeText, {
|
||
|
id: 'elementor-woocommerce-editor-block-notice',
|
||
|
isDismissible: true,
|
||
|
actions: [{
|
||
|
label: linkLabel,
|
||
|
onClick: () => window.open(linkUrl, '_blank')
|
||
|
}],
|
||
|
onDismiss: () => this.setCartNoticeDismissalState(true)
|
||
|
});
|
||
|
},
|
||
|
removeNotice() {
|
||
|
wp.data.dispatch('core/notices').removeNotice('elementor-woocommerce-editor-block-notice');
|
||
|
},
|
||
|
getCartNoticeDismissalState() {
|
||
|
return fetch(`${elementorCommon.config.urls.rest}elementor-pro/v1/get-notice-dismissed/${this.getPostId()}`, {
|
||
|
method: 'GET',
|
||
|
headers: {
|
||
|
'Content-Type': 'application/json',
|
||
|
'X-WP-Nonce': elementorWebCliConfig.nonce
|
||
|
}
|
||
|
}).then(response => {
|
||
|
if (!(response instanceof Response)) {
|
||
|
return response.json();
|
||
|
} else if (!response.ok || 400 <= response.status) {
|
||
|
return {};
|
||
|
}
|
||
|
return response.json();
|
||
|
}).catch(() => {
|
||
|
return {};
|
||
|
});
|
||
|
},
|
||
|
setCartNoticeDismissalState(isCartNoticeDismissed) {
|
||
|
return fetch(`${elementorCommon.config.urls.rest}elementor-pro/v1/set-notice-dismissed`, {
|
||
|
method: 'POST',
|
||
|
headers: {
|
||
|
'Content-Type': 'application/json',
|
||
|
'X-WP-Nonce': elementorWebCliConfig.nonce
|
||
|
},
|
||
|
body: JSON.stringify({
|
||
|
post_id: this.getPostId(),
|
||
|
is_custom_wc_cart_notice_dismissed: isCartNoticeDismissed
|
||
|
})
|
||
|
}).then(response => {
|
||
|
if (!(response instanceof Response)) {
|
||
|
return response.json();
|
||
|
} else if (!response.ok || 400 <= response.status) {
|
||
|
return {};
|
||
|
}
|
||
|
hasCartNoticeDismissalMetaValue = true;
|
||
|
isCachedCartNoticeDismissed = isCartNoticeDismissed;
|
||
|
return response.json();
|
||
|
}).catch(() => {
|
||
|
return {};
|
||
|
});
|
||
|
},
|
||
|
async shouldHideNotice() {
|
||
|
if (undefined !== isCachedCartNoticeDismissed) {
|
||
|
return isCachedCartNoticeDismissed;
|
||
|
}
|
||
|
const endpointData = await this.getCartNoticeDismissalState(this.getPostId());
|
||
|
if (endpointData.hasOwnProperty('is_custom_wc_cart_notice_dismissed')) {
|
||
|
hasCartNoticeDismissalMetaValue = true;
|
||
|
}
|
||
|
isCachedCartNoticeDismissed = 'true' === endpointData.is_custom_wc_cart_notice_dismissed || false;
|
||
|
return isCachedCartNoticeDismissed;
|
||
|
},
|
||
|
getBlockNames(blocks, blockNameArray = []) {
|
||
|
blockNames = blockNameArray;
|
||
|
Object.keys(blocks).forEach(index => {
|
||
|
const block = blocks[index];
|
||
|
blockNames.push(block.name);
|
||
|
const innerBlockCount = block.innerBlocks?.length || 0;
|
||
|
if (0 !== innerBlockCount) {
|
||
|
this.getBlockNames(block.innerBlocks, blockNames);
|
||
|
}
|
||
|
});
|
||
|
return blockNames;
|
||
|
},
|
||
|
maybeRemoveEmptyDefaultBlockFromBlockNames(blocks) {
|
||
|
const isBlockDefaultEmptyParagraph = 1 === blocks.length && 'core/paragraph' === blocks[0].name && '' === blocks[0].attributes.content;
|
||
|
if (isBlockDefaultEmptyParagraph) {
|
||
|
return [];
|
||
|
}
|
||
|
return blockNames;
|
||
|
},
|
||
|
init() {
|
||
|
this.handleGutenbergEditorNotices();
|
||
|
}
|
||
|
};
|
||
|
$(function () {
|
||
|
GutenbergWooCommerceEditorBlockNotice.init();
|
||
|
});
|
||
|
})(jQuery);
|
||
|
})();
|
||
|
|
||
|
/******/ })()
|
||
|
;
|
||
|
//# sourceMappingURL=gutenberg-woocommerce-notice.js.map
|