PluginProbe
Elementor Website Builder – more than just a page builder / 4.2.1
Elementor Website Builder – more than just a page builder v4.2.1
4.3.2 4.3.1 4.3.0 4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 All 455 releases
← All changes | assets/js/tabs-handler.js +2547 -1647 4.3.0-beta3 → 4.2.1 View file →
@@ -1,1746 +1,2646 @@
1 1 "use strict";
2 +(self["webpackChunkelementorFrontend"] = self["webpackChunkelementorFrontend"] || []).push([["tabs-handler"],{
2 3
3 -(function() {
4 +/***/ "../modules/atomic-widgets/elements/atomic-tabs/handlers/atomic-tabs-handler.js":
5 +/*!**************************************************************************************!*\
6 + !*** ../modules/atomic-widgets/elements/atomic-tabs/handlers/atomic-tabs-handler.js ***!
7 + \**************************************************************************************/
8 +/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4 9
5 -//#region \0rolldown/runtime.js
6 - var __defProp = Object.defineProperty;
7 - var __name = (target, value) => __defProp(target, "name", {
8 - value,
9 - configurable: true
10 - });
11 - var __commonJSMin = (cb, mod) => () => (mod || (cb((mod = { exports: {} }).exports, mod), cb = null), mod.exports);
12 10
13 -//#endregion
14 11
15 -//#region node_modules/core-js/internals/global-this.js
16 - var require_global_this = /* @__PURE__ */ __commonJSMin(((exports, module) => {
17 - var check = function(it) {
18 - return it && it.Math === Math && it;
19 - };
20 - module.exports = check(typeof globalThis == "object" && globalThis) || check(typeof window == "object" && window) || check(typeof self == "object" && self) || check(typeof global == "object" && global) || check(typeof exports == "object" && exports) || (function() {
21 - return this;
22 - })() || Function("return this")();
23 - }));
12 +var _frontendHandlers = __webpack_require__(/*! @elementor/frontend-handlers */ "@elementor/frontend-handlers");
13 +var _alpinejs = __webpack_require__(/*! @elementor/alpinejs */ "@elementor/alpinejs");
14 +var _utils = __webpack_require__(/*! ./utils */ "../modules/atomic-widgets/elements/atomic-tabs/handlers/utils.js");
15 +var _editorTabsState = __webpack_require__(/*! ./editor-tabs-state */ "../modules/atomic-widgets/elements/atomic-tabs/handlers/editor-tabs-state.js");
16 +const SELECTED_CLASS = 'e--selected';
17 +(0, _frontendHandlers.register)({
18 + elementType: 'e-tabs',
19 + id: 'e-tabs-handler',
20 + callback: ({
21 + element,
22 + settings
23 + }) => {
24 + const tabsId = element.dataset.id;
25 + const defaultActiveTab = settings['default-active-tab'];
26 + _alpinejs.Alpine.data(`eTabs${tabsId}`, () => ({
27 + init() {
28 + (0, _editorTabsState.validateActiveTab)(tabsId, (0, _utils.getDirectTabCount)(this.$el));
29 + },
30 + get activeTab() {
31 + return (0, _editorTabsState.getActiveTabId)(tabsId, defaultActiveTab);
32 + },
33 + navigateTabs({
34 + key,
35 + target: tab
36 + }) {
37 + const nextTab = (0, _utils.getNextTab)(key, tab);
38 + nextTab.focus();
39 + },
40 + tab: {
41 + ':id'() {
42 + const index = (0, _utils.getIndex)(this.$el, _utils.TAB_ELEMENT_TYPE);
43 + return (0, _utils.getTabId)(tabsId, index);
44 + },
45 + '@click'() {
46 + (0, _editorTabsState.setActiveTabIndex)(tabsId, (0, _utils.getIndex)(this.$el, _utils.TAB_ELEMENT_TYPE));
47 + },
48 + '@keydown.arrow-right.prevent'(event) {
49 + this.navigateTabs(event);
50 + },
51 + '@keydown.arrow-left.prevent'(event) {
52 + this.navigateTabs(event);
53 + },
54 + ':class'() {
55 + const id = this.$el.id;
56 + return {
57 + [SELECTED_CLASS]: this.activeTab === id
58 + };
59 + },
60 + ':aria-selected'() {
61 + const id = this.$el.id;
62 + return this.activeTab === id ? 'true' : 'false';
63 + },
64 + ':tabindex'() {
65 + const id = this.$el.id;
66 + return this.activeTab === id ? '0' : '-1';
67 + },
68 + ':aria-controls'() {
69 + const index = (0, _utils.getIndex)(this.$el, _utils.TAB_ELEMENT_TYPE);
70 + return (0, _utils.getTabContentId)(tabsId, index);
71 + }
72 + },
73 + tabContent: {
74 + ':aria-labelledby'() {
75 + const index = (0, _utils.getIndex)(this.$el, _utils.TAB_CONTENT_ELEMENT_TYPE);
76 + return (0, _utils.getTabId)(tabsId, index);
77 + },
78 + 'x-show'() {
79 + const index = (0, _utils.getIndex)(this.$el, _utils.TAB_CONTENT_ELEMENT_TYPE);
80 + const tabId = (0, _utils.getTabId)(tabsId, index);
81 + const isActive = this.activeTab === tabId;
82 + this.$nextTick(() => {
83 + this.$el.classList.toggle(SELECTED_CLASS, isActive);
84 + });
85 + return isActive;
86 + },
87 + ':id'() {
88 + const index = (0, _utils.getIndex)(this.$el, _utils.TAB_CONTENT_ELEMENT_TYPE);
89 + return (0, _utils.getTabContentId)(tabsId, index);
90 + }
91 + }
92 + }));
93 + }
94 +});
24 95
25 -//#endregion
26 -//#region node_modules/core-js/internals/fails.js
27 - var require_fails = /* @__PURE__ */ __commonJSMin(((exports, module) => {
28 - module.exports = function(exec) {
29 - try {
30 - return !!exec();
31 - } catch (error) {
32 - return true;
33 - }
34 - };
35 - }));
96 +/***/ }),
36 97
37 -//#endregion
38 -//#region node_modules/core-js/internals/descriptors.js
39 - var require_descriptors = /* @__PURE__ */ __commonJSMin(((exports, module) => {
40 - var fails = require_fails();
41 - module.exports = !fails(function() {
42 - return Object.defineProperty({}, 1, { get: function() {
43 - return 7;
44 - } })[1] !== 7;
45 - });
46 - }));
98 +/***/ "../modules/atomic-widgets/elements/atomic-tabs/handlers/editor-tabs-state.js":
99 +/*!************************************************************************************!*\
100 + !*** ../modules/atomic-widgets/elements/atomic-tabs/handlers/editor-tabs-state.js ***!
101 + \************************************************************************************/
102 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
47 103
48 -//#endregion
49 -//#region node_modules/core-js/internals/function-bind-native.js
50 - var require_function_bind_native = /* @__PURE__ */ __commonJSMin(((exports, module) => {
51 - var fails = require_fails();
52 - module.exports = !fails(function() {
53 - var test = (function() {}).bind();
54 - return typeof test != "function" || test.hasOwnProperty("prototype");
55 - });
56 - }));
57 104
58 -//#endregion
59 -//#region node_modules/core-js/internals/function-call.js
60 - var require_function_call = /* @__PURE__ */ __commonJSMin(((exports, module) => {
61 - var NATIVE_BIND = require_function_bind_native();
62 - var call = Function.prototype.call;
63 - module.exports = NATIVE_BIND ? call.bind(call) : function() {
64 - return call.apply(call, arguments);
65 - };
66 - }));
67 105
68 -//#endregion
69 -//#region node_modules/core-js/internals/object-property-is-enumerable.js
70 - var require_object_property_is_enumerable = /* @__PURE__ */ __commonJSMin(((exports) => {
71 - var $propertyIsEnumerable = {}.propertyIsEnumerable;
72 - var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
73 - var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
74 - exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
75 - var descriptor = getOwnPropertyDescriptor(this, V);
76 - return !!descriptor && descriptor.enumerable;
77 - } : $propertyIsEnumerable;
78 - }));
106 +Object.defineProperty(exports, "__esModule", ({
107 + value: true
108 +}));
109 +exports.getActiveTabId = getActiveTabId;
110 +exports.setActiveTabIndex = setActiveTabIndex;
111 +exports.validateActiveTab = validateActiveTab;
112 +var _alpinejs = __webpack_require__(/*! @elementor/alpinejs */ "@elementor/alpinejs");
113 +var _utils = __webpack_require__(/*! ./utils */ "../modules/atomic-widgets/elements/atomic-tabs/handlers/utils.js");
114 +/**
115 + * @typedef {Record<string, number>} TabsState - Maps tabsId to the selected tab index.
116 + */
117 +const STORE_NAME = 'editor-atomic-tabs-state';
118 +function ensureStore() {
119 + if (!_alpinejs.Alpine.store(STORE_NAME)) {
120 + _alpinejs.Alpine.store(STORE_NAME, /** @type {TabsState} */{});
121 + }
122 + return /** @type {TabsState} */_alpinejs.Alpine.store(STORE_NAME);
123 +}
124 +function getActiveTabId(tabsId, fallback) {
125 + const store = ensureStore();
126 + const storedIndex = store[tabsId];
127 + if (storedIndex === undefined) {
128 + return fallback;
129 + }
130 + return (0, _utils.getTabId)(tabsId, storedIndex);
131 +}
132 +function setActiveTabIndex(tabsId, index) {
133 + const store = ensureStore();
134 + store[tabsId] = index;
135 +}
136 +function validateActiveTab(tabsId, tabCount) {
137 + const store = ensureStore();
138 + const storedIndex = store[tabsId];
139 + if (storedIndex === undefined) {
140 + return;
141 + }
142 + if (storedIndex >= tabCount) {
143 + delete store[tabsId];
144 + }
145 +}
79 146
80 -//#endregion
81 -//#region node_modules/core-js/internals/create-property-descriptor.js
82 - var require_create_property_descriptor = /* @__PURE__ */ __commonJSMin(((exports, module) => {
83 - module.exports = function(bitmap, value) {
84 - return {
85 - enumerable: !(bitmap & 1),
86 - configurable: !(bitmap & 2),
87 - writable: !(bitmap & 4),
88 - value
89 - };
90 - };
91 - }));
147 +/***/ }),
92 148
93 -//#endregion
94 -//#region node_modules/core-js/internals/function-uncurry-this.js
95 - var require_function_uncurry_this = /* @__PURE__ */ __commonJSMin(((exports, module) => {
96 - var NATIVE_BIND = require_function_bind_native();
97 - var FunctionPrototype = Function.prototype;
98 - var call = FunctionPrototype.call;
99 - var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
100 - module.exports = NATIVE_BIND ? uncurryThisWithBind : function(fn) {
101 - return function() {
102 - return call.apply(fn, arguments);
103 - };
104 - };
105 - }));
149 +/***/ "../modules/atomic-widgets/elements/atomic-tabs/handlers/utils.js":
150 +/*!************************************************************************!*\
151 + !*** ../modules/atomic-widgets/elements/atomic-tabs/handlers/utils.js ***!
152 + \************************************************************************/
153 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
106 154
107 -//#endregion
108 -//#region node_modules/core-js/internals/classof-raw.js
109 - var require_classof_raw = /* @__PURE__ */ __commonJSMin(((exports, module) => {
110 - var uncurryThis = require_function_uncurry_this();
111 - var toString = uncurryThis({}.toString);
112 - var stringSlice = uncurryThis("".slice);
113 - module.exports = function(it) {
114 - return stringSlice(toString(it), 8, -1);
115 - };
116 - }));
117 155
118 -//#endregion
119 -//#region node_modules/core-js/internals/indexed-object.js
120 - var require_indexed_object = /* @__PURE__ */ __commonJSMin(((exports, module) => {
121 - var uncurryThis = require_function_uncurry_this();
122 - var fails = require_fails();
123 - var classof = require_classof_raw();
124 - var $Object = Object;
125 - var split = uncurryThis("".split);
126 - module.exports = fails(function() {
127 - return !$Object("z").propertyIsEnumerable(0);
128 - }) ? function(it) {
129 - return classof(it) === "String" ? split(it, "") : $Object(it);
130 - } : $Object;
131 - }));
132 156
133 -//#endregion
134 -//#region node_modules/core-js/internals/is-null-or-undefined.js
135 - var require_is_null_or_undefined = /* @__PURE__ */ __commonJSMin(((exports, module) => {
136 - module.exports = function(it) {
137 - return it === null || it === void 0;
138 - };
139 - }));
157 +Object.defineProperty(exports, "__esModule", ({
158 + value: true
159 +}));
160 +exports.getTabId = exports.getTabContentId = exports.getNextTab = exports.getIndex = exports.getDirectTabCount = exports.getChildren = exports.TAB_ELEMENT_TYPE = exports.TAB_CONTENT_ELEMENT_TYPE = exports.TABS_MENU_ELEMENT_TYPE = exports.TABS_CONTENT_AREA_ELEMENT_TYPE = void 0;
161 +__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js");
162 +__webpack_require__(/*! core-js/modules/esnext.iterator.filter.js */ "../node_modules/core-js/modules/esnext.iterator.filter.js");
163 +const TAB_ELEMENT_TYPE = exports.TAB_ELEMENT_TYPE = 'e-tab';
164 +const TAB_CONTENT_ELEMENT_TYPE = exports.TAB_CONTENT_ELEMENT_TYPE = 'e-tab-content';
165 +const TABS_CONTENT_AREA_ELEMENT_TYPE = exports.TABS_CONTENT_AREA_ELEMENT_TYPE = 'e-tabs-content-area';
166 +const TABS_MENU_ELEMENT_TYPE = exports.TABS_MENU_ELEMENT_TYPE = 'e-tabs-menu';
167 +const NAVIGATE_UP_KEYS = ['ArrowUp', 'ArrowLeft'];
168 +const NAVIGATE_DOWN_KEYS = ['ArrowDown', 'ArrowRight'];
169 +const getTabId = (tabsId, tabIndex) => {
170 + return `${tabsId}-tab-${tabIndex}`;
171 +};
172 +exports.getTabId = getTabId;
173 +const getTabContentId = (tabsId, tabIndex) => {
174 + return `${tabsId}-tab-content-${tabIndex}`;
175 +};
176 +exports.getTabContentId = getTabContentId;
177 +const getChildren = (el, elementType) => {
178 + const parent = el.parentElement;
179 + return Array.from(parent.children).filter(child => {
180 + return child.dataset.element_type === elementType;
181 + });
182 +};
183 +exports.getChildren = getChildren;
184 +const getIndex = (el, elementType) => {
185 + const children = getChildren(el, elementType);
186 + return children.indexOf(el);
187 +};
188 +exports.getIndex = getIndex;
189 +const getDirectTabCount = tabsRootElement => {
190 + return tabsRootElement.querySelectorAll(`:scope > [data-element_type="${TABS_MENU_ELEMENT_TYPE}"] > [data-element_type="${TAB_ELEMENT_TYPE}"]`).length;
191 +};
192 +exports.getDirectTabCount = getDirectTabCount;
193 +const getNextTab = (key, tab) => {
194 + const tabs = getChildren(tab, TAB_ELEMENT_TYPE);
195 + const tabsLength = tabs.length;
196 + const currentIndex = getIndex(tab, TAB_ELEMENT_TYPE);
197 + if (NAVIGATE_DOWN_KEYS.includes(key)) {
198 + return tabs[(currentIndex + 1) % tabsLength];
199 + }
200 + if (NAVIGATE_UP_KEYS.includes(key)) {
201 + return tabs[(currentIndex - 1 + tabsLength) % tabsLength];
202 + }
203 +};
204 +exports.getNextTab = getNextTab;
140 205
141 -//#endregion
142 -//#region node_modules/core-js/internals/require-object-coercible.js
143 - var require_require_object_coercible = /* @__PURE__ */ __commonJSMin(((exports, module) => {
144 - var isNullOrUndefined = require_is_null_or_undefined();
145 - var $TypeError = TypeError;
146 - module.exports = function(it) {
147 - if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
148 - return it;
149 - };
150 - }));
206 +/***/ }),
151 207
152 -//#endregion
153 -//#region node_modules/core-js/internals/to-indexed-object.js
154 - var require_to_indexed_object = /* @__PURE__ */ __commonJSMin(((exports, module) => {
155 - var IndexedObject = require_indexed_object();
156 - var requireObjectCoercible = require_require_object_coercible();
157 - module.exports = function(it) {
158 - return IndexedObject(requireObjectCoercible(it));
159 - };
160 - }));
208 +/***/ "../node_modules/core-js/internals/a-callable.js":
209 +/*!*******************************************************!*\
210 + !*** ../node_modules/core-js/internals/a-callable.js ***!
211 + \*******************************************************/
212 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
161 213
162 -//#endregion
163 -//#region node_modules/core-js/internals/is-callable.js
164 - var require_is_callable = /* @__PURE__ */ __commonJSMin(((exports, module) => {
165 - var documentAll = typeof document == "object" && document.all;
166 - module.exports = typeof documentAll == "undefined" && documentAll !== void 0 ? function(argument) {
167 - return typeof argument == "function" || argument === documentAll;
168 - } : function(argument) {
169 - return typeof argument == "function";
170 - };
171 - }));
172 214
173 -//#endregion
174 -//#region node_modules/core-js/internals/is-object.js
175 - var require_is_object = /* @__PURE__ */ __commonJSMin(((exports, module) => {
176 - var isCallable = require_is_callable();
177 - module.exports = function(it) {
178 - return typeof it == "object" ? it !== null : isCallable(it);
179 - };
180 - }));
215 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
216 +var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../node_modules/core-js/internals/try-to-string.js");
181 217
182 -//#endregion
183 -//#region node_modules/core-js/internals/get-built-in.js
184 - var require_get_built_in = /* @__PURE__ */ __commonJSMin(((exports, module) => {
185 - var globalThis = require_global_this();
186 - var isCallable = require_is_callable();
187 - var aFunction = function(argument) {
188 - return isCallable(argument) ? argument : void 0;
189 - };
190 - module.exports = function(namespace, method) {
191 - return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
192 - };
193 - }));
218 +var $TypeError = TypeError;
194 219
195 -//#endregion
196 -//#region node_modules/core-js/internals/object-is-prototype-of.js
197 - var require_object_is_prototype_of = /* @__PURE__ */ __commonJSMin(((exports, module) => {
198 - var uncurryThis = require_function_uncurry_this();
199 - module.exports = uncurryThis({}.isPrototypeOf);
200 - }));
220 +// `Assert: IsCallable(argument) is true`
221 +module.exports = function (argument) {
222 + if (isCallable(argument)) return argument;
223 + throw new $TypeError(tryToString(argument) + ' is not a function');
224 +};
201 225
202 -//#endregion
203 -//#region node_modules/core-js/internals/environment-user-agent.js
204 - var require_environment_user_agent = /* @__PURE__ */ __commonJSMin(((exports, module) => {
205 - var navigator = require_global_this().navigator;
206 - var userAgent = navigator && navigator.userAgent;
207 - module.exports = userAgent ? String(userAgent) : "";
208 - }));
209 226
210 -//#endregion
211 -//#region node_modules/core-js/internals/environment-v8-version.js
212 - var require_environment_v8_version = /* @__PURE__ */ __commonJSMin(((exports, module) => {
213 - var globalThis = require_global_this();
214 - var userAgent = require_environment_user_agent();
215 - var process = globalThis.process;
216 - var Deno = globalThis.Deno;
217 - var versions = process && process.versions || Deno && Deno.version;
218 - var v8 = versions && versions.v8;
219 - var match;
220 - var version;
221 - if (v8) {
222 - match = v8.split(".");
223 - version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
224 - }
225 - if (!version && userAgent) {
226 - match = userAgent.match(/Edge\/(\d+)/);
227 - if (!match || match[1] >= 74) {
228 - match = userAgent.match(/Chrome\/(\d+)/);
229 - if (match) version = +match[1];
230 - }
231 - }
232 - module.exports = version;
233 - }));
227 +/***/ }),
234 228
235 -//#endregion
236 -//#region node_modules/core-js/internals/symbol-constructor-detection.js
237 - var require_symbol_constructor_detection = /* @__PURE__ */ __commonJSMin(((exports, module) => {
238 - var V8_VERSION = require_environment_v8_version();
239 - var fails = require_fails();
240 - var $String = require_global_this().String;
241 - module.exports = !!Object.getOwnPropertySymbols && !fails(function() {
242 - var symbol = Symbol("symbol detection");
243 - return !$String(symbol) || !(Object(symbol) instanceof Symbol) || !Symbol.sham && V8_VERSION && V8_VERSION < 41;
244 - });
245 - }));
229 +/***/ "../node_modules/core-js/internals/an-instance.js":
230 +/*!********************************************************!*\
231 + !*** ../node_modules/core-js/internals/an-instance.js ***!
232 + \********************************************************/
233 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
246 234
247 -//#endregion
248 -//#region node_modules/core-js/internals/use-symbol-as-uid.js
249 - var require_use_symbol_as_uid = /* @__PURE__ */ __commonJSMin(((exports, module) => {
250 - var NATIVE_SYMBOL = require_symbol_constructor_detection();
251 - module.exports = NATIVE_SYMBOL && !Symbol.sham && typeof Symbol.iterator == "symbol";
252 - }));
253 235
254 -//#endregion
255 -//#region node_modules/core-js/internals/is-symbol.js
256 - var require_is_symbol = /* @__PURE__ */ __commonJSMin(((exports, module) => {
257 - var getBuiltIn = require_get_built_in();
258 - var isCallable = require_is_callable();
259 - var isPrototypeOf = require_object_is_prototype_of();
260 - var USE_SYMBOL_AS_UID = require_use_symbol_as_uid();
261 - var $Object = Object;
262 - module.exports = USE_SYMBOL_AS_UID ? function(it) {
263 - return typeof it == "symbol";
264 - } : function(it) {
265 - var $Symbol = getBuiltIn("Symbol");
266 - return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
267 - };
268 - }));
236 +var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js");
269 237
270 -//#endregion
271 -//#region node_modules/core-js/internals/try-to-string.js
272 - var require_try_to_string = /* @__PURE__ */ __commonJSMin(((exports, module) => {
273 - var $String = String;
274 - module.exports = function(argument) {
275 - try {
276 - return $String(argument);
277 - } catch (error) {
278 - return "Object";
279 - }
280 - };
281 - }));
238 +var $TypeError = TypeError;
282 239
283 -//#endregion
284 -//#region node_modules/core-js/internals/a-callable.js
285 - var require_a_callable = /* @__PURE__ */ __commonJSMin(((exports, module) => {
286 - var isCallable = require_is_callable();
287 - var tryToString = require_try_to_string();
288 - var $TypeError = TypeError;
289 - module.exports = function(argument) {
290 - if (isCallable(argument)) return argument;
291 - throw new $TypeError(tryToString(argument) + " is not a function");
292 - };
293 - }));
240 +module.exports = function (it, Prototype) {
241 + if (isPrototypeOf(Prototype, it)) return it;
242 + throw new $TypeError('Incorrect invocation');
243 +};
294 244
295 -//#endregion
296 -//#region node_modules/core-js/internals/get-method.js
297 - var require_get_method = /* @__PURE__ */ __commonJSMin(((exports, module) => {
298 - var aCallable = require_a_callable();
299 - var isNullOrUndefined = require_is_null_or_undefined();
300 - module.exports = function(V, P) {
301 - var func = V[P];
302 - return isNullOrUndefined(func) ? void 0 : aCallable(func);
303 - };
304 - }));
305 245
306 -//#endregion
307 -//#region node_modules/core-js/internals/ordinary-to-primitive.js
308 - var require_ordinary_to_primitive = /* @__PURE__ */ __commonJSMin(((exports, module) => {
309 - var call = require_function_call();
310 - var isCallable = require_is_callable();
311 - var isObject = require_is_object();
312 - var $TypeError = TypeError;
313 - module.exports = function(input, pref) {
314 - var fn;
315 - var val;
316 - if (pref === "string" && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
317 - if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
318 - if (pref !== "string" && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
319 - throw new $TypeError("Can't convert object to primitive value");
320 - };
321 - }));
246 +/***/ }),
322 247
323 -//#endregion
324 -//#region node_modules/core-js/internals/is-pure.js
325 - var require_is_pure = /* @__PURE__ */ __commonJSMin(((exports, module) => {
326 - module.exports = false;
327 - }));
248 +/***/ "../node_modules/core-js/internals/an-object.js":
249 +/*!******************************************************!*\
250 + !*** ../node_modules/core-js/internals/an-object.js ***!
251 + \******************************************************/
252 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
328 253
329 -//#endregion
330 -//#region node_modules/core-js/internals/define-global-property.js
331 - var require_define_global_property = /* @__PURE__ */ __commonJSMin(((exports, module) => {
332 - var globalThis = require_global_this();
333 - var defineProperty = Object.defineProperty;
334 - module.exports = function(key, value) {
335 - try {
336 - defineProperty(globalThis, key, {
337 - value,
338 - configurable: true,
339 - writable: true
340 - });
341 - } catch (error) {
342 - globalThis[key] = value;
343 - }
344 - return value;
345 - };
346 - }));
347 254
348 -//#endregion
349 -//#region node_modules/core-js/internals/shared-store.js
350 - var require_shared_store = /* @__PURE__ */ __commonJSMin(((exports, module) => {
351 - var IS_PURE = require_is_pure();
352 - var globalThis = require_global_this();
353 - var defineGlobalProperty = require_define_global_property();
354 - var SHARED = "__core-js_shared__";
355 - var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
356 - (store.versions || (store.versions = [])).push({
357 - version: "3.46.0",
358 - mode: IS_PURE ? "pure" : "global",
359 - copyright: "© 2014-2025 Denis Pushkarev (zloirock.ru), 2025 CoreJS Company (core-js.io)",
360 - license: "https://github.com/zloirock/core-js/blob/v3.46.0/LICENSE",
361 - source: "https://github.com/zloirock/core-js"
362 - });
363 - }));
255 +var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
364 256
365 -//#endregion
366 -//#region node_modules/core-js/internals/shared.js
367 - var require_shared = /* @__PURE__ */ __commonJSMin(((exports, module) => {
368 - var store = require_shared_store();
369 - module.exports = function(key, value) {
370 - return store[key] || (store[key] = value || {});
371 - };
372 - }));
257 +var $String = String;
258 +var $TypeError = TypeError;
373 259
374 -//#endregion
375 -//#region node_modules/core-js/internals/to-object.js
376 - var require_to_object = /* @__PURE__ */ __commonJSMin(((exports, module) => {
377 - var requireObjectCoercible = require_require_object_coercible();
378 - var $Object = Object;
379 - module.exports = function(argument) {
380 - return $Object(requireObjectCoercible(argument));
381 - };
382 - }));
260 +// `Assert: Type(argument) is Object`
261 +module.exports = function (argument) {
262 + if (isObject(argument)) return argument;
263 + throw new $TypeError($String(argument) + ' is not an object');
264 +};
383 265
384 -//#endregion
385 -//#region node_modules/core-js/internals/has-own-property.js
386 - var require_has_own_property = /* @__PURE__ */ __commonJSMin(((exports, module) => {
387 - var uncurryThis = require_function_uncurry_this();
388 - var toObject = require_to_object();
389 - var hasOwnProperty = uncurryThis({}.hasOwnProperty);
390 - module.exports = Object.hasOwn || function hasOwn(it, key) {
391 - return hasOwnProperty(toObject(it), key);
392 - };
393 - }));
394 266
395 -//#endregion
396 -//#region node_modules/core-js/internals/uid.js
397 - var require_uid = /* @__PURE__ */ __commonJSMin(((exports, module) => {
398 - var uncurryThis = require_function_uncurry_this();
399 - var id = 0;
400 - var postfix = Math.random();
401 - var toString = uncurryThis(1.1.toString);
402 - module.exports = function(key) {
403 - return "Symbol(" + (key === void 0 ? "" : key) + ")_" + toString(++id + postfix, 36);
404 - };
405 - }));
267 +/***/ }),
406 268
407 -//#endregion
408 -//#region node_modules/core-js/internals/well-known-symbol.js
409 - var require_well_known_symbol = /* @__PURE__ */ __commonJSMin(((exports, module) => {
410 - var globalThis = require_global_this();
411 - var shared = require_shared();
412 - var hasOwn = require_has_own_property();
413 - var uid = require_uid();
414 - var NATIVE_SYMBOL = require_symbol_constructor_detection();
415 - var USE_SYMBOL_AS_UID = require_use_symbol_as_uid();
416 - var Symbol = globalThis.Symbol;
417 - var WellKnownSymbolsStore = shared("wks");
418 - var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol["for"] || Symbol : Symbol && Symbol.withoutSetter || uid;
419 - module.exports = function(name) {
420 - if (!hasOwn(WellKnownSymbolsStore, name)) WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name) ? Symbol[name] : createWellKnownSymbol("Symbol." + name);
421 - return WellKnownSymbolsStore[name];
422 - };
423 - }));
269 +/***/ "../node_modules/core-js/internals/array-includes.js":
270 +/*!***********************************************************!*\
271 + !*** ../node_modules/core-js/internals/array-includes.js ***!
272 + \***********************************************************/
273 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
424 274
425 -//#endregion
426 -//#region node_modules/core-js/internals/to-primitive.js
427 - var require_to_primitive = /* @__PURE__ */ __commonJSMin(((exports, module) => {
428 - var call = require_function_call();
429 - var isObject = require_is_object();
430 - var isSymbol = require_is_symbol();
431 - var getMethod = require_get_method();
432 - var ordinaryToPrimitive = require_ordinary_to_primitive();
433 - var wellKnownSymbol = require_well_known_symbol();
434 - var $TypeError = TypeError;
435 - var TO_PRIMITIVE = wellKnownSymbol("toPrimitive");
436 - module.exports = function(input, pref) {
437 - if (!isObject(input) || isSymbol(input)) return input;
438 - var exoticToPrim = getMethod(input, TO_PRIMITIVE);
439 - var result;
440 - if (exoticToPrim) {
441 - if (pref === void 0) pref = "default";
442 - result = call(exoticToPrim, input, pref);
443 - if (!isObject(result) || isSymbol(result)) return result;
444 - throw new $TypeError("Can't convert object to primitive value");
445 - }
446 - if (pref === void 0) pref = "number";
447 - return ordinaryToPrimitive(input, pref);
448 - };
449 - }));
450 275
451 -//#endregion
452 -//#region node_modules/core-js/internals/to-property-key.js
453 - var require_to_property_key = /* @__PURE__ */ __commonJSMin(((exports, module) => {
454 - var toPrimitive = require_to_primitive();
455 - var isSymbol = require_is_symbol();
456 - module.exports = function(argument) {
457 - var key = toPrimitive(argument, "string");
458 - return isSymbol(key) ? key : key + "";
459 - };
460 - }));
276 +var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
277 +var toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "../node_modules/core-js/internals/to-absolute-index.js");
278 +var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../node_modules/core-js/internals/length-of-array-like.js");
461 279
462 -//#endregion
463 -//#region node_modules/core-js/internals/document-create-element.js
464 - var require_document_create_element = /* @__PURE__ */ __commonJSMin(((exports, module) => {
465 - var globalThis = require_global_this();
466 - var isObject = require_is_object();
467 - var document = globalThis.document;
468 - var EXISTS = isObject(document) && isObject(document.createElement);
469 - module.exports = function(it) {
470 - return EXISTS ? document.createElement(it) : {};
471 - };
472 - }));
280 +// `Array.prototype.{ indexOf, includes }` methods implementation
281 +var createMethod = function (IS_INCLUDES) {
282 + return function ($this, el, fromIndex) {
283 + var O = toIndexedObject($this);
284 + var length = lengthOfArrayLike(O);
285 + if (length === 0) return !IS_INCLUDES && -1;
286 + var index = toAbsoluteIndex(fromIndex, length);
287 + var value;
288 + // Array#includes uses SameValueZero equality algorithm
289 + // eslint-disable-next-line no-self-compare -- NaN check
290 + if (IS_INCLUDES && el !== el) while (length > index) {
291 + value = O[index++];
292 + // eslint-disable-next-line no-self-compare -- NaN check
293 + if (value !== value) return true;
294 + // Array#indexOf ignores holes, Array#includes - not
295 + } else for (;length > index; index++) {
296 + if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
297 + } return !IS_INCLUDES && -1;
298 + };
299 +};
473 300
474 -//#endregion
475 -//#region node_modules/core-js/internals/ie8-dom-define.js
476 - var require_ie8_dom_define = /* @__PURE__ */ __commonJSMin(((exports, module) => {
477 - var DESCRIPTORS = require_descriptors();
478 - var fails = require_fails();
479 - var createElement = require_document_create_element();
480 - module.exports = !DESCRIPTORS && !fails(function() {
481 - return Object.defineProperty(createElement("div"), "a", { get: function() {
482 - return 7;
483 - } }).a !== 7;
484 - });
485 - }));
301 +module.exports = {
302 + // `Array.prototype.includes` method
303 + // https://tc39.es/ecma262/#sec-array.prototype.includes
304 + includes: createMethod(true),
305 + // `Array.prototype.indexOf` method
306 + // https://tc39.es/ecma262/#sec-array.prototype.indexof
307 + indexOf: createMethod(false)
308 +};
486 309
487 -//#endregion
488 -//#region node_modules/core-js/internals/object-get-own-property-descriptor.js
489 - var require_object_get_own_property_descriptor = /* @__PURE__ */ __commonJSMin(((exports) => {
490 - var DESCRIPTORS = require_descriptors();
491 - var call = require_function_call();
492 - var propertyIsEnumerableModule = require_object_property_is_enumerable();
493 - var createPropertyDescriptor = require_create_property_descriptor();
494 - var toIndexedObject = require_to_indexed_object();
495 - var toPropertyKey = require_to_property_key();
496 - var hasOwn = require_has_own_property();
497 - var IE8_DOM_DEFINE = require_ie8_dom_define();
498 - var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
499 - exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
500 - O = toIndexedObject(O);
501 - P = toPropertyKey(P);
502 - if (IE8_DOM_DEFINE) try {
503 - return $getOwnPropertyDescriptor(O, P);
504 - } catch (error) {}
505 - if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
506 - };
507 - }));
508 310
509 -//#endregion
510 -//#region node_modules/core-js/internals/v8-prototype-define-bug.js
511 - var require_v8_prototype_define_bug = /* @__PURE__ */ __commonJSMin(((exports, module) => {
512 - var DESCRIPTORS = require_descriptors();
513 - var fails = require_fails();
514 - module.exports = DESCRIPTORS && fails(function() {
515 - return Object.defineProperty(function() {}, "prototype", {
516 - value: 42,
517 - writable: false
518 - }).prototype !== 42;
519 - });
520 - }));
311 +/***/ }),
521 312
522 -//#endregion
523 -//#region node_modules/core-js/internals/an-object.js
524 - var require_an_object = /* @__PURE__ */ __commonJSMin(((exports, module) => {
525 - var isObject = require_is_object();
526 - var $String = String;
527 - var $TypeError = TypeError;
528 - module.exports = function(argument) {
529 - if (isObject(argument)) return argument;
530 - throw new $TypeError($String(argument) + " is not an object");
531 - };
532 - }));
313 +/***/ "../node_modules/core-js/internals/call-with-safe-iteration-closing.js":
314 +/*!*****************************************************************************!*\
315 + !*** ../node_modules/core-js/internals/call-with-safe-iteration-closing.js ***!
316 + \*****************************************************************************/
317 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
533 318
534 -//#endregion
535 -//#region node_modules/core-js/internals/object-define-property.js
536 - var require_object_define_property = /* @__PURE__ */ __commonJSMin(((exports) => {
537 - var DESCRIPTORS = require_descriptors();
538 - var IE8_DOM_DEFINE = require_ie8_dom_define();
539 - var V8_PROTOTYPE_DEFINE_BUG = require_v8_prototype_define_bug();
540 - var anObject = require_an_object();
541 - var toPropertyKey = require_to_property_key();
542 - var $TypeError = TypeError;
543 - var $defineProperty = Object.defineProperty;
544 - var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
545 - var ENUMERABLE = "enumerable";
546 - var CONFIGURABLE = "configurable";
547 - var WRITABLE = "writable";
548 - exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
549 - anObject(O);
550 - P = toPropertyKey(P);
551 - anObject(Attributes);
552 - if (typeof O === "function" && P === "prototype" && "value" in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
553 - var current = $getOwnPropertyDescriptor(O, P);
554 - if (current && current[WRITABLE]) {
555 - O[P] = Attributes.value;
556 - Attributes = {
557 - configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
558 - enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
559 - writable: false
560 - };
561 - }
562 - }
563 - return $defineProperty(O, P, Attributes);
564 - } : $defineProperty : function defineProperty(O, P, Attributes) {
565 - anObject(O);
566 - P = toPropertyKey(P);
567 - anObject(Attributes);
568 - if (IE8_DOM_DEFINE) try {
569 - return $defineProperty(O, P, Attributes);
570 - } catch (error) {}
571 - if ("get" in Attributes || "set" in Attributes) throw new $TypeError("Accessors not supported");
572 - if ("value" in Attributes) O[P] = Attributes.value;
573 - return O;
574 - };
575 - }));
576 319
577 -//#endregion
578 -//#region node_modules/core-js/internals/create-non-enumerable-property.js
579 - var require_create_non_enumerable_property = /* @__PURE__ */ __commonJSMin(((exports, module) => {
580 - var DESCRIPTORS = require_descriptors();
581 - var definePropertyModule = require_object_define_property();
582 - var createPropertyDescriptor = require_create_property_descriptor();
583 - module.exports = DESCRIPTORS ? function(object, key, value) {
584 - return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
585 - } : function(object, key, value) {
586 - object[key] = value;
587 - return object;
588 - };
589 - }));
320 +var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
321 +var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js");
590 322
591 -//#endregion
592 -//#region node_modules/core-js/internals/function-name.js
593 - var require_function_name = /* @__PURE__ */ __commonJSMin(((exports, module) => {
594 - var DESCRIPTORS = require_descriptors();
595 - var hasOwn = require_has_own_property();
596 - var FunctionPrototype = Function.prototype;
597 - var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
598 - var EXISTS = hasOwn(FunctionPrototype, "name");
599 - var PROPER = EXISTS && (function something() {}).name === "something";
600 - var CONFIGURABLE = EXISTS && (!DESCRIPTORS || DESCRIPTORS && getDescriptor(FunctionPrototype, "name").configurable);
601 - module.exports = {
602 - EXISTS,
603 - PROPER,
604 - CONFIGURABLE
605 - };
606 - }));
323 +// call something on iterator step with safe closing on error
324 +module.exports = function (iterator, fn, value, ENTRIES) {
325 + try {
326 + return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);
327 + } catch (error) {
328 + iteratorClose(iterator, 'throw', error);
329 + }
330 +};
607 331
608 -//#endregion
609 -//#region node_modules/core-js/internals/inspect-source.js
610 - var require_inspect_source = /* @__PURE__ */ __commonJSMin(((exports, module) => {
611 - var uncurryThis = require_function_uncurry_this();
612 - var isCallable = require_is_callable();
613 - var store = require_shared_store();
614 - var functionToString = uncurryThis(Function.toString);
615 - if (!isCallable(store.inspectSource)) store.inspectSource = function(it) {
616 - return functionToString(it);
617 - };
618 - module.exports = store.inspectSource;
619 - }));
620 332
621 -//#endregion
622 -//#region node_modules/core-js/internals/weak-map-basic-detection.js
623 - var require_weak_map_basic_detection = /* @__PURE__ */ __commonJSMin(((exports, module) => {
624 - var globalThis = require_global_this();
625 - var isCallable = require_is_callable();
626 - var WeakMap = globalThis.WeakMap;
627 - module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
628 - }));
333 +/***/ }),
629 334
630 -//#endregion
631 -//#region node_modules/core-js/internals/shared-key.js
632 - var require_shared_key = /* @__PURE__ */ __commonJSMin(((exports, module) => {
633 - var shared = require_shared();
634 - var uid = require_uid();
635 - var keys = shared("keys");
636 - module.exports = function(key) {
637 - return keys[key] || (keys[key] = uid(key));
638 - };
639 - }));
335 +/***/ "../node_modules/core-js/internals/classof-raw.js":
336 +/*!********************************************************!*\
337 + !*** ../node_modules/core-js/internals/classof-raw.js ***!
338 + \********************************************************/
339 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
640 340
641 -//#endregion
642 -//#region node_modules/core-js/internals/hidden-keys.js
643 - var require_hidden_keys = /* @__PURE__ */ __commonJSMin(((exports, module) => {
644 - module.exports = {};
645 - }));
646 341
647 -//#endregion
648 -//#region node_modules/core-js/internals/internal-state.js
649 - var require_internal_state = /* @__PURE__ */ __commonJSMin(((exports, module) => {
650 - var NATIVE_WEAK_MAP = require_weak_map_basic_detection();
651 - var globalThis = require_global_this();
652 - var isObject = require_is_object();
653 - var createNonEnumerableProperty = require_create_non_enumerable_property();
654 - var hasOwn = require_has_own_property();
655 - var shared = require_shared_store();
656 - var sharedKey = require_shared_key();
657 - var hiddenKeys = require_hidden_keys();
658 - var OBJECT_ALREADY_INITIALIZED = "Object already initialized";
659 - var TypeError = globalThis.TypeError;
660 - var WeakMap = globalThis.WeakMap;
661 - var set;
662 - var get;
663 - var has;
664 - var enforce = function(it) {
665 - return has(it) ? get(it) : set(it, {});
666 - };
667 - var getterFor = function(TYPE) {
668 - return function(it) {
669 - var state;
670 - if (!isObject(it) || (state = get(it)).type !== TYPE) throw new TypeError("Incompatible receiver, " + TYPE + " required");
671 - return state;
672 - };
673 - };
674 - if (NATIVE_WEAK_MAP || shared.state) {
675 - var store = shared.state || (shared.state = new WeakMap());
676 - store.get = store.get;
677 - store.has = store.has;
678 - store.set = store.set;
679 - set = function(it, metadata) {
680 - if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
681 - metadata.facade = it;
682 - store.set(it, metadata);
683 - return metadata;
684 - };
685 - get = function(it) {
686 - return store.get(it) || {};
687 - };
688 - has = function(it) {
689 - return store.has(it);
690 - };
691 - } else {
692 - var STATE = sharedKey("state");
693 - hiddenKeys[STATE] = true;
694 - set = function(it, metadata) {
695 - if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
696 - metadata.facade = it;
697 - createNonEnumerableProperty(it, STATE, metadata);
698 - return metadata;
699 - };
700 - get = function(it) {
701 - return hasOwn(it, STATE) ? it[STATE] : {};
702 - };
703 - has = function(it) {
704 - return hasOwn(it, STATE);
705 - };
706 - }
707 - module.exports = {
708 - set,
709 - get,
710 - has,
711 - enforce,
712 - getterFor
713 - };
714 - }));
342 +var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
715 343
716 -//#endregion
717 -//#region node_modules/core-js/internals/make-built-in.js
718 - var require_make_built_in = /* @__PURE__ */ __commonJSMin(((exports, module) => {
719 - var uncurryThis = require_function_uncurry_this();
720 - var fails = require_fails();
721 - var isCallable = require_is_callable();
722 - var hasOwn = require_has_own_property();
723 - var DESCRIPTORS = require_descriptors();
724 - var CONFIGURABLE_FUNCTION_NAME = require_function_name().CONFIGURABLE;
725 - var inspectSource = require_inspect_source();
726 - var InternalStateModule = require_internal_state();
727 - var enforceInternalState = InternalStateModule.enforce;
728 - var getInternalState = InternalStateModule.get;
729 - var $String = String;
730 - var defineProperty = Object.defineProperty;
731 - var stringSlice = uncurryThis("".slice);
732 - var replace = uncurryThis("".replace);
733 - var join = uncurryThis([].join);
734 - var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function() {
735 - return defineProperty(function() {}, "length", { value: 8 }).length !== 8;
736 - });
737 - var TEMPLATE = String(String).split("String");
738 - var makeBuiltIn = module.exports = function(value, name, options) {
739 - if (stringSlice($String(name), 0, 7) === "Symbol(") name = "[" + replace($String(name), /^Symbol\(([^)]*)\).*$/, "$1") + "]";
740 - if (options && options.getter) name = "get " + name;
741 - if (options && options.setter) name = "set " + name;
742 - if (!hasOwn(value, "name") || CONFIGURABLE_FUNCTION_NAME && value.name !== name) if (DESCRIPTORS) defineProperty(value, "name", {
743 - value: name,
744 - configurable: true
745 - });
746 - else value.name = name;
747 - if (CONFIGURABLE_LENGTH && options && hasOwn(options, "arity") && value.length !== options.arity) defineProperty(value, "length", { value: options.arity });
748 - try {
749 - if (options && hasOwn(options, "constructor") && options.constructor) {
750 - if (DESCRIPTORS) defineProperty(value, "prototype", { writable: false });
751 - } else if (value.prototype) value.prototype = void 0;
752 - } catch (error) {}
753 - var state = enforceInternalState(value);
754 - if (!hasOwn(state, "source")) state.source = join(TEMPLATE, typeof name == "string" ? name : "");
755 - return value;
756 - };
757 - Function.prototype.toString = makeBuiltIn(function toString() {
758 - return isCallable(this) && getInternalState(this).source || inspectSource(this);
759 - }, "toString");
760 - }));
344 +var toString = uncurryThis({}.toString);
345 +var stringSlice = uncurryThis(''.slice);
761 346
762 -//#endregion
763 -//#region node_modules/core-js/internals/define-built-in.js
764 - var require_define_built_in = /* @__PURE__ */ __commonJSMin(((exports, module) => {
765 - var isCallable = require_is_callable();
766 - var definePropertyModule = require_object_define_property();
767 - var makeBuiltIn = require_make_built_in();
768 - var defineGlobalProperty = require_define_global_property();
769 - module.exports = function(O, key, value, options) {
770 - if (!options) options = {};
771 - var simple = options.enumerable;
772 - var name = options.name !== void 0 ? options.name : key;
773 - if (isCallable(value)) makeBuiltIn(value, name, options);
774 - if (options.global) if (simple) O[key] = value;
775 - else defineGlobalProperty(key, value);
776 - else {
777 - try {
778 - if (!options.unsafe) delete O[key];
779 - else if (O[key]) simple = true;
780 - } catch (error) {}
781 - if (simple) O[key] = value;
782 - else definePropertyModule.f(O, key, {
783 - value,
784 - enumerable: false,
785 - configurable: !options.nonConfigurable,
786 - writable: !options.nonWritable
787 - });
788 - }
789 - return O;
790 - };
791 - }));
347 +module.exports = function (it) {
348 + return stringSlice(toString(it), 8, -1);
349 +};
792 350
793 -//#endregion
794 -//#region node_modules/core-js/internals/math-trunc.js
795 - var require_math_trunc = /* @__PURE__ */ __commonJSMin(((exports, module) => {
796 - var ceil = Math.ceil;
797 - var floor = Math.floor;
798 - module.exports = Math.trunc || function trunc(x) {
799 - var n = +x;
800 - return (n > 0 ? floor : ceil)(n);
801 - };
802 - }));
803 351
804 -//#endregion
805 -//#region node_modules/core-js/internals/to-integer-or-infinity.js
806 - var require_to_integer_or_infinity = /* @__PURE__ */ __commonJSMin(((exports, module) => {
807 - var trunc = require_math_trunc();
808 - module.exports = function(argument) {
809 - var number = +argument;
810 - return number !== number || number === 0 ? 0 : trunc(number);
811 - };
812 - }));
352 +/***/ }),
813 353
814 -//#endregion
815 -//#region node_modules/core-js/internals/to-absolute-index.js
816 - var require_to_absolute_index = /* @__PURE__ */ __commonJSMin(((exports, module) => {
817 - var toIntegerOrInfinity = require_to_integer_or_infinity();
818 - var max = Math.max;
819 - var min = Math.min;
820 - module.exports = function(index, length) {
821 - var integer = toIntegerOrInfinity(index);
822 - return integer < 0 ? max(integer + length, 0) : min(integer, length);
823 - };
824 - }));
354 +/***/ "../node_modules/core-js/internals/copy-constructor-properties.js":
355 +/*!************************************************************************!*\
356 + !*** ../node_modules/core-js/internals/copy-constructor-properties.js ***!
357 + \************************************************************************/
358 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
825 359
826 -//#endregion
827 -//#region node_modules/core-js/internals/to-length.js
828 - var require_to_length = /* @__PURE__ */ __commonJSMin(((exports, module) => {
829 - var toIntegerOrInfinity = require_to_integer_or_infinity();
830 - var min = Math.min;
831 - module.exports = function(argument) {
832 - var len = toIntegerOrInfinity(argument);
833 - return len > 0 ? min(len, 9007199254740991) : 0;
834 - };
835 - }));
836 360
837 -//#endregion
838 -//#region node_modules/core-js/internals/length-of-array-like.js
839 - var require_length_of_array_like = /* @__PURE__ */ __commonJSMin(((exports, module) => {
840 - var toLength = require_to_length();
841 - module.exports = function(obj) {
842 - return toLength(obj.length);
843 - };
844 - }));
361 +var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
362 +var ownKeys = __webpack_require__(/*! ../internals/own-keys */ "../node_modules/core-js/internals/own-keys.js");
363 +var getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../node_modules/core-js/internals/object-get-own-property-descriptor.js");
364 +var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
845 365
846 -//#endregion
847 -//#region node_modules/core-js/internals/array-includes.js
848 - var require_array_includes = /* @__PURE__ */ __commonJSMin(((exports, module) => {
849 - var toIndexedObject = require_to_indexed_object();
850 - var toAbsoluteIndex = require_to_absolute_index();
851 - var lengthOfArrayLike = require_length_of_array_like();
852 - var createMethod = function(IS_INCLUDES) {
853 - return function($this, el, fromIndex) {
854 - var O = toIndexedObject($this);
855 - var length = lengthOfArrayLike(O);
856 - if (length === 0) return !IS_INCLUDES && -1;
857 - var index = toAbsoluteIndex(fromIndex, length);
858 - var value;
859 - if (IS_INCLUDES && el !== el) while (length > index) {
860 - value = O[index++];
861 - if (value !== value) return true;
862 - }
863 - else for (; length > index; index++) if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
864 - return !IS_INCLUDES && -1;
865 - };
866 - };
867 - module.exports = {
868 - includes: createMethod(true),
869 - indexOf: createMethod(false)
870 - };
871 - }));
366 +module.exports = function (target, source, exceptions) {
367 + var keys = ownKeys(source);
368 + var defineProperty = definePropertyModule.f;
369 + var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
370 + for (var i = 0; i < keys.length; i++) {
371 + var key = keys[i];
372 + if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
373 + defineProperty(target, key, getOwnPropertyDescriptor(source, key));
374 + }
375 + }
376 +};
872 377
873 -//#endregion
874 -//#region node_modules/core-js/internals/object-keys-internal.js
875 - var require_object_keys_internal = /* @__PURE__ */ __commonJSMin(((exports, module) => {
876 - var uncurryThis = require_function_uncurry_this();
877 - var hasOwn = require_has_own_property();
878 - var toIndexedObject = require_to_indexed_object();
879 - var indexOf = require_array_includes().indexOf;
880 - var hiddenKeys = require_hidden_keys();
881 - var push = uncurryThis([].push);
882 - module.exports = function(object, names) {
883 - var O = toIndexedObject(object);
884 - var i = 0;
885 - var result = [];
886 - var key;
887 - for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
888 - while (names.length > i) if (hasOwn(O, key = names[i++])) ~indexOf(result, key) || push(result, key);
889 - return result;
890 - };
891 - }));
892 378
893 -//#endregion
894 -//#region node_modules/core-js/internals/enum-bug-keys.js
895 - var require_enum_bug_keys = /* @__PURE__ */ __commonJSMin(((exports, module) => {
896 - module.exports = [
897 - "constructor",
898 - "hasOwnProperty",
899 - "isPrototypeOf",
900 - "propertyIsEnumerable",
901 - "toLocaleString",
902 - "toString",
903 - "valueOf"
904 - ];
905 - }));
379 +/***/ }),
906 380
907 -//#endregion
908 -//#region node_modules/core-js/internals/object-get-own-property-names.js
909 - var require_object_get_own_property_names = /* @__PURE__ */ __commonJSMin(((exports) => {
910 - var internalObjectKeys = require_object_keys_internal();
911 - var hiddenKeys = require_enum_bug_keys().concat("length", "prototype");
912 - exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
913 - return internalObjectKeys(O, hiddenKeys);
914 - };
915 - }));
381 +/***/ "../node_modules/core-js/internals/correct-prototype-getter.js":
382 +/*!*********************************************************************!*\
383 + !*** ../node_modules/core-js/internals/correct-prototype-getter.js ***!
384 + \*********************************************************************/
385 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
916 386
917 -//#endregion
918 -//#region node_modules/core-js/internals/object-get-own-property-symbols.js
919 - var require_object_get_own_property_symbols = /* @__PURE__ */ __commonJSMin(((exports) => {
920 - exports.f = Object.getOwnPropertySymbols;
921 - }));
922 387
923 -//#endregion
924 -//#region node_modules/core-js/internals/own-keys.js
925 - var require_own_keys = /* @__PURE__ */ __commonJSMin(((exports, module) => {
926 - var getBuiltIn = require_get_built_in();
927 - var uncurryThis = require_function_uncurry_this();
928 - var getOwnPropertyNamesModule = require_object_get_own_property_names();
929 - var getOwnPropertySymbolsModule = require_object_get_own_property_symbols();
930 - var anObject = require_an_object();
931 - var concat = uncurryThis([].concat);
932 - module.exports = getBuiltIn("Reflect", "ownKeys") || function ownKeys(it) {
933 - var keys = getOwnPropertyNamesModule.f(anObject(it));
934 - var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
935 - return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
936 - };
937 - }));
388 +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
938 389
939 -//#endregion
940 -//#region node_modules/core-js/internals/copy-constructor-properties.js
941 - var require_copy_constructor_properties = /* @__PURE__ */ __commonJSMin(((exports, module) => {
942 - var hasOwn = require_has_own_property();
943 - var ownKeys = require_own_keys();
944 - var getOwnPropertyDescriptorModule = require_object_get_own_property_descriptor();
945 - var definePropertyModule = require_object_define_property();
946 - module.exports = function(target, source, exceptions) {
947 - var keys = ownKeys(source);
948 - var defineProperty = definePropertyModule.f;
949 - var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
950 - for (var i = 0; i < keys.length; i++) {
951 - var key = keys[i];
952 - if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
953 - }
954 - };
955 - }));
390 +module.exports = !fails(function () {
391 + function F() { /* empty */ }
392 + F.prototype.constructor = null;
393 + // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
394 + return Object.getPrototypeOf(new F()) !== F.prototype;
395 +});
956 396
957 -//#endregion
958 -//#region node_modules/core-js/internals/is-forced.js
959 - var require_is_forced = /* @__PURE__ */ __commonJSMin(((exports, module) => {
960 - var fails = require_fails();
961 - var isCallable = require_is_callable();
962 - var replacement = /#|\.prototype\./;
963 - var isForced = function(feature, detection) {
964 - var value = data[normalize(feature)];
965 - return value === POLYFILL ? true : value === NATIVE ? false : isCallable(detection) ? fails(detection) : !!detection;
966 - };
967 - var normalize = isForced.normalize = function(string) {
968 - return String(string).replace(replacement, ".").toLowerCase();
969 - };
970 - var data = isForced.data = {};
971 - var NATIVE = isForced.NATIVE = "N";
972 - var POLYFILL = isForced.POLYFILL = "P";
973 - module.exports = isForced;
974 - }));
975 397
976 -//#endregion
977 -//#region node_modules/core-js/internals/export.js
978 - var require_export = /* @__PURE__ */ __commonJSMin(((exports, module) => {
979 - var globalThis = require_global_this();
980 - var getOwnPropertyDescriptor = require_object_get_own_property_descriptor().f;
981 - var createNonEnumerableProperty = require_create_non_enumerable_property();
982 - var defineBuiltIn = require_define_built_in();
983 - var defineGlobalProperty = require_define_global_property();
984 - var copyConstructorProperties = require_copy_constructor_properties();
985 - var isForced = require_is_forced();
986 - module.exports = function(options, source) {
987 - var TARGET = options.target;
988 - var GLOBAL = options.global;
989 - var STATIC = options.stat;
990 - var FORCED;
991 - var target;
992 - var key;
993 - var targetProperty;
994 - var sourceProperty;
995 - var descriptor;
996 - if (GLOBAL) target = globalThis;
997 - else if (STATIC) target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
998 - else target = globalThis[TARGET] && globalThis[TARGET].prototype;
999 - if (target) for (key in source) {
1000 - sourceProperty = source[key];
1001 - if (options.dontCallGetSet) {
1002 - descriptor = getOwnPropertyDescriptor(target, key);
1003 - targetProperty = descriptor && descriptor.value;
1004 - } else targetProperty = target[key];
1005 - FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? "." : "#") + key, options.forced);
1006 - if (!FORCED && targetProperty !== void 0) {
1007 - if (typeof sourceProperty == typeof targetProperty) continue;
1008 - copyConstructorProperties(sourceProperty, targetProperty);
1009 - }
1010 - if (options.sham || targetProperty && targetProperty.sham) createNonEnumerableProperty(sourceProperty, "sham", true);
1011 - defineBuiltIn(target, key, sourceProperty, options);
1012 - }
1013 - };
1014 - }));
398 +/***/ }),
1015 399
1016 -//#endregion
1017 -//#region node_modules/core-js/internals/object-keys.js
1018 - var require_object_keys = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1019 - var internalObjectKeys = require_object_keys_internal();
1020 - var enumBugKeys = require_enum_bug_keys();
1021 - module.exports = Object.keys || function keys(O) {
1022 - return internalObjectKeys(O, enumBugKeys);
1023 - };
1024 - }));
400 +/***/ "../node_modules/core-js/internals/create-iter-result-object.js":
401 +/*!**********************************************************************!*\
402 + !*** ../node_modules/core-js/internals/create-iter-result-object.js ***!
403 + \**********************************************************************/
404 +/***/ ((module) => {
1025 405
1026 -//#endregion
1027 -//#region node_modules/core-js/internals/object-define-properties.js
1028 - var require_object_define_properties = /* @__PURE__ */ __commonJSMin(((exports) => {
1029 - var DESCRIPTORS = require_descriptors();
1030 - var V8_PROTOTYPE_DEFINE_BUG = require_v8_prototype_define_bug();
1031 - var definePropertyModule = require_object_define_property();
1032 - var anObject = require_an_object();
1033 - var toIndexedObject = require_to_indexed_object();
1034 - var objectKeys = require_object_keys();
1035 - exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1036 - anObject(O);
1037 - var props = toIndexedObject(Properties);
1038 - var keys = objectKeys(Properties);
1039 - var length = keys.length;
1040 - var index = 0;
1041 - var key;
1042 - while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
1043 - return O;
1044 - };
1045 - }));
1046 406
1047 -//#endregion
1048 -//#region node_modules/core-js/internals/html.js
1049 - var require_html = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1050 - var getBuiltIn = require_get_built_in();
1051 - module.exports = getBuiltIn("document", "documentElement");
1052 - }));
407 +// `CreateIterResultObject` abstract operation
408 +// https://tc39.es/ecma262/#sec-createiterresultobject
409 +module.exports = function (value, done) {
410 + return { value: value, done: done };
411 +};
1053 412
1054 -//#endregion
1055 -//#region node_modules/core-js/internals/object-create.js
1056 - var require_object_create = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1057 - var anObject = require_an_object();
1058 - var definePropertiesModule = require_object_define_properties();
1059 - var enumBugKeys = require_enum_bug_keys();
1060 - var hiddenKeys = require_hidden_keys();
1061 - var html = require_html();
1062 - var documentCreateElement = require_document_create_element();
1063 - var sharedKey = require_shared_key();
1064 - var GT = ">";
1065 - var LT = "<";
1066 - var PROTOTYPE = "prototype";
1067 - var SCRIPT = "script";
1068 - var IE_PROTO = sharedKey("IE_PROTO");
1069 - var EmptyConstructor = function() {};
1070 - var scriptTag = function(content) {
1071 - return LT + SCRIPT + GT + content + LT + "/" + SCRIPT + GT;
1072 - };
1073 - var NullProtoObjectViaActiveX = function(activeXDocument) {
1074 - activeXDocument.write(scriptTag(""));
1075 - activeXDocument.close();
1076 - var temp = activeXDocument.parentWindow.Object;
1077 - activeXDocument = null;
1078 - return temp;
1079 - };
1080 - var NullProtoObjectViaIFrame = function() {
1081 - var iframe = documentCreateElement("iframe");
1082 - var JS = "java" + SCRIPT + ":";
1083 - var iframeDocument;
1084 - iframe.style.display = "none";
1085 - html.appendChild(iframe);
1086 - iframe.src = String(JS);
1087 - iframeDocument = iframe.contentWindow.document;
1088 - iframeDocument.open();
1089 - iframeDocument.write(scriptTag("document.F=Object"));
1090 - iframeDocument.close();
1091 - return iframeDocument.F;
1092 - };
1093 - var activeXDocument;
1094 - var NullProtoObject = function() {
1095 - try {
1096 - activeXDocument = new ActiveXObject("htmlfile");
1097 - } catch (error) {}
1098 - NullProtoObject = typeof document != "undefined" ? document.domain && activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame() : NullProtoObjectViaActiveX(activeXDocument);
1099 - var length = enumBugKeys.length;
1100 - while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
1101 - return NullProtoObject();
1102 - };
1103 - hiddenKeys[IE_PROTO] = true;
1104 - module.exports = Object.create || function create(O, Properties) {
1105 - var result;
1106 - if (O !== null) {
1107 - EmptyConstructor[PROTOTYPE] = anObject(O);
1108 - result = new EmptyConstructor();
1109 - EmptyConstructor[PROTOTYPE] = null;
1110 - result[IE_PROTO] = O;
1111 - } else result = NullProtoObject();
1112 - return Properties === void 0 ? result : definePropertiesModule.f(result, Properties);
1113 - };
1114 - }));
1115 413
1116 -//#endregion
1117 -//#region node_modules/core-js/internals/add-to-unscopables.js
1118 - var require_add_to_unscopables = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1119 - var wellKnownSymbol = require_well_known_symbol();
1120 - var create = require_object_create();
1121 - var defineProperty = require_object_define_property().f;
1122 - var UNSCOPABLES = wellKnownSymbol("unscopables");
1123 - var ArrayPrototype = Array.prototype;
1124 - if (ArrayPrototype[UNSCOPABLES] === void 0) defineProperty(ArrayPrototype, UNSCOPABLES, {
1125 - configurable: true,
1126 - value: create(null)
1127 - });
1128 - module.exports = function(key) {
1129 - ArrayPrototype[UNSCOPABLES][key] = true;
1130 - };
1131 - }));
414 +/***/ }),
1132 415
1133 -//#endregion
1134 -//#region node_modules/core-js/modules/es.array.includes.js
1135 - var require_es_array_includes = /* @__PURE__ */ __commonJSMin((() => {
1136 - var $ = require_export();
1137 - var $includes = require_array_includes().includes;
1138 - var fails = require_fails();
1139 - var addToUnscopables = require_add_to_unscopables();
1140 - $({
1141 - target: "Array",
1142 - proto: true,
1143 - forced: fails(function() {
1144 - return !Array(1).includes();
1145 - })
1146 - }, { includes: function includes(el) {
1147 - return $includes(this, el, arguments.length > 1 ? arguments[1] : void 0);
1148 - } });
1149 - addToUnscopables("includes");
1150 - }));
416 +/***/ "../node_modules/core-js/internals/create-non-enumerable-property.js":
417 +/*!***************************************************************************!*\
418 + !*** ../node_modules/core-js/internals/create-non-enumerable-property.js ***!
419 + \***************************************************************************/
420 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1151 421
1152 -//#endregion
1153 -//#region node_modules/core-js/internals/an-instance.js
1154 - var require_an_instance = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1155 - var isPrototypeOf = require_object_is_prototype_of();
1156 - var $TypeError = TypeError;
1157 - module.exports = function(it, Prototype) {
1158 - if (isPrototypeOf(Prototype, it)) return it;
1159 - throw new $TypeError("Incorrect invocation");
1160 - };
1161 - }));
1162 422
1163 -//#endregion
1164 -//#region node_modules/core-js/internals/correct-prototype-getter.js
1165 - var require_correct_prototype_getter = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1166 - var fails = require_fails();
1167 - module.exports = !fails(function() {
1168 - function F() {}
1169 - F.prototype.constructor = null;
1170 - return Object.getPrototypeOf(new F()) !== F.prototype;
1171 - });
1172 - }));
423 +var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
424 +var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
425 +var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js");
1173 426
1174 -//#endregion
1175 -//#region node_modules/core-js/internals/object-get-prototype-of.js
1176 - var require_object_get_prototype_of = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1177 - var hasOwn = require_has_own_property();
1178 - var isCallable = require_is_callable();
1179 - var toObject = require_to_object();
1180 - var sharedKey = require_shared_key();
1181 - var CORRECT_PROTOTYPE_GETTER = require_correct_prototype_getter();
1182 - var IE_PROTO = sharedKey("IE_PROTO");
1183 - var $Object = Object;
1184 - var ObjectPrototype = $Object.prototype;
1185 - module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function(O) {
1186 - var object = toObject(O);
1187 - if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
1188 - var constructor = object.constructor;
1189 - if (isCallable(constructor) && object instanceof constructor) return constructor.prototype;
1190 - return object instanceof $Object ? ObjectPrototype : null;
1191 - };
1192 - }));
427 +module.exports = DESCRIPTORS ? function (object, key, value) {
428 + return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
429 +} : function (object, key, value) {
430 + object[key] = value;
431 + return object;
432 +};
1193 433
1194 -//#endregion
1195 -//#region node_modules/core-js/internals/define-built-in-accessor.js
1196 - var require_define_built_in_accessor = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1197 - var makeBuiltIn = require_make_built_in();
1198 - var defineProperty = require_object_define_property();
1199 - module.exports = function(target, name, descriptor) {
1200 - if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
1201 - if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
1202 - return defineProperty.f(target, name, descriptor);
1203 - };
1204 - }));
1205 434
1206 -//#endregion
1207 -//#region node_modules/core-js/internals/create-property.js
1208 - var require_create_property = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1209 - var DESCRIPTORS = require_descriptors();
1210 - var definePropertyModule = require_object_define_property();
1211 - var createPropertyDescriptor = require_create_property_descriptor();
1212 - module.exports = function(object, key, value) {
1213 - if (DESCRIPTORS) definePropertyModule.f(object, key, createPropertyDescriptor(0, value));
1214 - else object[key] = value;
1215 - };
1216 - }));
435 +/***/ }),
1217 436
1218 -//#endregion
1219 -//#region node_modules/core-js/internals/iterators-core.js
1220 - var require_iterators_core = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1221 - var fails = require_fails();
1222 - var isCallable = require_is_callable();
1223 - var isObject = require_is_object();
1224 - var create = require_object_create();
1225 - var getPrototypeOf = require_object_get_prototype_of();
1226 - var defineBuiltIn = require_define_built_in();
1227 - var wellKnownSymbol = require_well_known_symbol();
1228 - var IS_PURE = require_is_pure();
1229 - var ITERATOR = wellKnownSymbol("iterator");
1230 - var BUGGY_SAFARI_ITERATORS = false;
1231 - var IteratorPrototype;
1232 - var PrototypeOfArrayIteratorPrototype;
1233 - var arrayIterator;
1234 - if ([].keys) {
1235 - arrayIterator = [].keys();
1236 - if (!("next" in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
1237 - else {
1238 - PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
1239 - if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
1240 - }
1241 - }
1242 - if (!isObject(IteratorPrototype) || fails(function() {
1243 - var test = {};
1244 - return IteratorPrototype[ITERATOR].call(test) !== test;
1245 - })) IteratorPrototype = {};
1246 - else if (IS_PURE) IteratorPrototype = create(IteratorPrototype);
1247 - if (!isCallable(IteratorPrototype[ITERATOR])) defineBuiltIn(IteratorPrototype, ITERATOR, function() {
1248 - return this;
1249 - });
1250 - module.exports = {
1251 - IteratorPrototype,
1252 - BUGGY_SAFARI_ITERATORS
1253 - };
1254 - }));
437 +/***/ "../node_modules/core-js/internals/create-property-descriptor.js":
438 +/*!***********************************************************************!*\
439 + !*** ../node_modules/core-js/internals/create-property-descriptor.js ***!
440 + \***********************************************************************/
441 +/***/ ((module) => {
1255 442
1256 -//#endregion
1257 -//#region node_modules/core-js/modules/es.iterator.constructor.js
1258 - var require_es_iterator_constructor = /* @__PURE__ */ __commonJSMin((() => {
1259 - var $ = require_export();
1260 - var globalThis = require_global_this();
1261 - var anInstance = require_an_instance();
1262 - var anObject = require_an_object();
1263 - var isCallable = require_is_callable();
1264 - var getPrototypeOf = require_object_get_prototype_of();
1265 - var defineBuiltInAccessor = require_define_built_in_accessor();
1266 - var createProperty = require_create_property();
1267 - var fails = require_fails();
1268 - var hasOwn = require_has_own_property();
1269 - var wellKnownSymbol = require_well_known_symbol();
1270 - var IteratorPrototype = require_iterators_core().IteratorPrototype;
1271 - var DESCRIPTORS = require_descriptors();
1272 - var IS_PURE = require_is_pure();
1273 - var CONSTRUCTOR = "constructor";
1274 - var ITERATOR = "Iterator";
1275 - var TO_STRING_TAG = wellKnownSymbol("toStringTag");
1276 - var $TypeError = TypeError;
1277 - var NativeIterator = globalThis[ITERATOR];
1278 - var FORCED = IS_PURE || !isCallable(NativeIterator) || NativeIterator.prototype !== IteratorPrototype || !fails(function() {
1279 - NativeIterator({});
1280 - });
1281 - var IteratorConstructor = function Iterator() {
1282 - anInstance(this, IteratorPrototype);
1283 - if (getPrototypeOf(this) === IteratorPrototype) throw new $TypeError("Abstract class Iterator not directly constructable");
1284 - };
1285 - var defineIteratorPrototypeAccessor = function(key, value) {
1286 - if (DESCRIPTORS) defineBuiltInAccessor(IteratorPrototype, key, {
1287 - configurable: true,
1288 - get: function() {
1289 - return value;
1290 - },
1291 - set: function(replacement) {
1292 - anObject(this);
1293 - if (this === IteratorPrototype) throw new $TypeError("You can't redefine this property");
1294 - if (hasOwn(this, key)) this[key] = replacement;
1295 - else createProperty(this, key, replacement);
1296 - }
1297 - });
1298 - else IteratorPrototype[key] = value;
1299 - };
1300 - if (!hasOwn(IteratorPrototype, TO_STRING_TAG)) defineIteratorPrototypeAccessor(TO_STRING_TAG, ITERATOR);
1301 - if (FORCED || !hasOwn(IteratorPrototype, CONSTRUCTOR) || IteratorPrototype[CONSTRUCTOR] === Object) defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
1302 - IteratorConstructor.prototype = IteratorPrototype;
1303 - $({
1304 - global: true,
1305 - constructor: true,
1306 - forced: FORCED
1307 - }, { Iterator: IteratorConstructor });
1308 - }));
1309 443
1310 -//#endregion
1311 -//#region node_modules/core-js/modules/esnext.iterator.constructor.js
1312 - var require_esnext_iterator_constructor = /* @__PURE__ */ __commonJSMin((() => {
1313 - require_es_iterator_constructor();
1314 - }));
444 +module.exports = function (bitmap, value) {
445 + return {
446 + enumerable: !(bitmap & 1),
447 + configurable: !(bitmap & 2),
448 + writable: !(bitmap & 4),
449 + value: value
450 + };
451 +};
1315 452
1316 -//#endregion
1317 -//#region node_modules/core-js/internals/get-iterator-direct.js
1318 - var require_get_iterator_direct = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1319 - module.exports = function(obj) {
1320 - return {
1321 - iterator: obj,
1322 - next: obj.next,
1323 - done: false
1324 - };
1325 - };
1326 - }));
1327 453
1328 -//#endregion
1329 -//#region node_modules/core-js/internals/define-built-ins.js
1330 - var require_define_built_ins = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1331 - var defineBuiltIn = require_define_built_in();
1332 - module.exports = function(target, src, options) {
1333 - for (var key in src) defineBuiltIn(target, key, src[key], options);
1334 - return target;
1335 - };
1336 - }));
454 +/***/ }),
1337 455
1338 -//#endregion
1339 -//#region node_modules/core-js/internals/create-iter-result-object.js
1340 - var require_create_iter_result_object = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1341 - module.exports = function(value, done) {
1342 - return {
1343 - value,
1344 - done
1345 - };
1346 - };
1347 - }));
456 +/***/ "../node_modules/core-js/internals/create-property.js":
457 +/*!************************************************************!*\
458 + !*** ../node_modules/core-js/internals/create-property.js ***!
459 + \************************************************************/
460 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1348 461
1349 -//#endregion
1350 -//#region node_modules/core-js/internals/iterator-close.js
1351 - var require_iterator_close = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1352 - var call = require_function_call();
1353 - var anObject = require_an_object();
1354 - var getMethod = require_get_method();
1355 - module.exports = function(iterator, kind, value) {
1356 - var innerResult;
1357 - var innerError;
1358 - anObject(iterator);
1359 - try {
1360 - innerResult = getMethod(iterator, "return");
1361 - if (!innerResult) {
1362 - if (kind === "throw") throw value;
1363 - return value;
1364 - }
1365 - innerResult = call(innerResult, iterator);
1366 - } catch (error) {
1367 - innerError = true;
1368 - innerResult = error;
1369 - }
1370 - if (kind === "throw") throw value;
1371 - if (innerError) throw innerResult;
1372 - anObject(innerResult);
1373 - return value;
1374 - };
1375 - }));
1376 462
1377 -//#endregion
1378 -//#region node_modules/core-js/internals/iterator-close-all.js
1379 - var require_iterator_close_all = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1380 - var iteratorClose = require_iterator_close();
1381 - module.exports = function(iters, kind, value) {
1382 - for (var i = iters.length - 1; i >= 0; i--) {
1383 - if (iters[i] === void 0) continue;
1384 - try {
1385 - value = iteratorClose(iters[i].iterator, kind, value);
1386 - } catch (error) {
1387 - kind = "throw";
1388 - value = error;
1389 - }
1390 - }
1391 - if (kind === "throw") throw value;
1392 - return value;
1393 - };
1394 - }));
463 +var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
464 +var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
465 +var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js");
1395 466
1396 -//#endregion
1397 -//#region node_modules/core-js/internals/iterator-create-proxy.js
1398 - var require_iterator_create_proxy = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1399 - var call = require_function_call();
1400 - var create = require_object_create();
1401 - var createNonEnumerableProperty = require_create_non_enumerable_property();
1402 - var defineBuiltIns = require_define_built_ins();
1403 - var wellKnownSymbol = require_well_known_symbol();
1404 - var InternalStateModule = require_internal_state();
1405 - var getMethod = require_get_method();
1406 - var IteratorPrototype = require_iterators_core().IteratorPrototype;
1407 - var createIterResultObject = require_create_iter_result_object();
1408 - var iteratorClose = require_iterator_close();
1409 - var iteratorCloseAll = require_iterator_close_all();
1410 - var TO_STRING_TAG = wellKnownSymbol("toStringTag");
1411 - var ITERATOR_HELPER = "IteratorHelper";
1412 - var WRAP_FOR_VALID_ITERATOR = "WrapForValidIterator";
1413 - var NORMAL = "normal";
1414 - var THROW = "throw";
1415 - var setInternalState = InternalStateModule.set;
1416 - var createIteratorProxyPrototype = function(IS_ITERATOR) {
1417 - var getInternalState = InternalStateModule.getterFor(IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER);
1418 - return defineBuiltIns(create(IteratorPrototype), {
1419 - next: function next() {
1420 - var state = getInternalState(this);
1421 - if (IS_ITERATOR) return state.nextHandler();
1422 - if (state.done) return createIterResultObject(void 0, true);
1423 - try {
1424 - var result = state.nextHandler();
1425 - return state.returnHandlerResult ? result : createIterResultObject(result, state.done);
1426 - } catch (error) {
1427 - state.done = true;
1428 - throw error;
1429 - }
1430 - },
1431 - "return": function() {
1432 - var state = getInternalState(this);
1433 - var iterator = state.iterator;
1434 - state.done = true;
1435 - if (IS_ITERATOR) {
1436 - var returnMethod = getMethod(iterator, "return");
1437 - return returnMethod ? call(returnMethod, iterator) : createIterResultObject(void 0, true);
1438 - }
1439 - if (state.inner) try {
1440 - iteratorClose(state.inner.iterator, NORMAL);
1441 - } catch (error) {
1442 - return iteratorClose(iterator, THROW, error);
1443 - }
1444 - if (state.openIters) try {
1445 - iteratorCloseAll(state.openIters, NORMAL);
1446 - } catch (error) {
1447 - return iteratorClose(iterator, THROW, error);
1448 - }
1449 - if (iterator) iteratorClose(iterator, NORMAL);
1450 - return createIterResultObject(void 0, true);
1451 - }
1452 - });
1453 - };
1454 - var WrapForValidIteratorPrototype = createIteratorProxyPrototype(true);
1455 - var IteratorHelperPrototype = createIteratorProxyPrototype(false);
1456 - createNonEnumerableProperty(IteratorHelperPrototype, TO_STRING_TAG, "Iterator Helper");
1457 - module.exports = function(nextHandler, IS_ITERATOR, RETURN_HANDLER_RESULT) {
1458 - var IteratorProxy = function Iterator(record, state) {
1459 - if (state) {
1460 - state.iterator = record.iterator;
1461 - state.next = record.next;
1462 - } else state = record;
1463 - state.type = IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER;
1464 - state.returnHandlerResult = !!RETURN_HANDLER_RESULT;
1465 - state.nextHandler = nextHandler;
1466 - state.counter = 0;
1467 - state.done = false;
1468 - setInternalState(this, state);
1469 - };
1470 - IteratorProxy.prototype = IS_ITERATOR ? WrapForValidIteratorPrototype : IteratorHelperPrototype;
1471 - return IteratorProxy;
1472 - };
1473 - }));
467 +module.exports = function (object, key, value) {
468 + if (DESCRIPTORS) definePropertyModule.f(object, key, createPropertyDescriptor(0, value));
469 + else object[key] = value;
470 +};
1474 471
1475 -//#endregion
1476 -//#region node_modules/core-js/internals/call-with-safe-iteration-closing.js
1477 - var require_call_with_safe_iteration_closing = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1478 - var anObject = require_an_object();
1479 - var iteratorClose = require_iterator_close();
1480 - module.exports = function(iterator, fn, value, ENTRIES) {
1481 - try {
1482 - return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);
1483 - } catch (error) {
1484 - iteratorClose(iterator, "throw", error);
1485 - }
1486 - };
1487 - }));
1488 472
1489 -//#endregion
1490 -//#region node_modules/core-js/internals/iterator-helper-throws-on-invalid-iterator.js
1491 - var require_iterator_helper_throws_on_invalid_iterator = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1492 - module.exports = function(methodName, argument) {
1493 - var method = typeof Iterator == "function" && Iterator.prototype[methodName];
1494 - if (method) try {
1495 - method.call({ next: null }, argument).next();
1496 - } catch (error) {
1497 - return true;
1498 - }
1499 - };
1500 - }));
473 +/***/ }),
1501 474
1502 -//#endregion
1503 -//#region node_modules/core-js/internals/iterator-helper-without-closing-on-early-error.js
1504 - var require_iterator_helper_without_closing_on_early_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1505 - var globalThis = require_global_this();
1506 - module.exports = function(METHOD_NAME, ExpectedError) {
1507 - var Iterator = globalThis.Iterator;
1508 - var IteratorPrototype = Iterator && Iterator.prototype;
1509 - var method = IteratorPrototype && IteratorPrototype[METHOD_NAME];
1510 - var CLOSED = false;
1511 - if (method) try {
1512 - method.call({
1513 - next: function() {
1514 - return { done: true };
1515 - },
1516 - "return": function() {
1517 - CLOSED = true;
1518 - }
1519 - }, -1);
1520 - } catch (error) {
1521 - if (!(error instanceof ExpectedError)) CLOSED = false;
1522 - }
1523 - if (!CLOSED) return method;
1524 - };
1525 - }));
475 +/***/ "../node_modules/core-js/internals/define-built-in-accessor.js":
476 +/*!*********************************************************************!*\
477 + !*** ../node_modules/core-js/internals/define-built-in-accessor.js ***!
478 + \*********************************************************************/
479 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1526 480
1527 -//#endregion
1528 -//#region node_modules/core-js/modules/es.iterator.filter.js
1529 - var require_es_iterator_filter = /* @__PURE__ */ __commonJSMin((() => {
1530 - var $ = require_export();
1531 - var call = require_function_call();
1532 - var aCallable = require_a_callable();
1533 - var anObject = require_an_object();
1534 - var getIteratorDirect = require_get_iterator_direct();
1535 - var createIteratorProxy = require_iterator_create_proxy();
1536 - var callWithSafeIterationClosing = require_call_with_safe_iteration_closing();
1537 - var IS_PURE = require_is_pure();
1538 - var iteratorClose = require_iterator_close();
1539 - var iteratorHelperThrowsOnInvalidIterator = require_iterator_helper_throws_on_invalid_iterator();
1540 - var iteratorHelperWithoutClosingOnEarlyError = require_iterator_helper_without_closing_on_early_error();
1541 - var FILTER_WITHOUT_THROWING_ON_INVALID_ITERATOR = !IS_PURE && !iteratorHelperThrowsOnInvalidIterator("filter", function() {});
1542 - var filterWithoutClosingOnEarlyError = !IS_PURE && !FILTER_WITHOUT_THROWING_ON_INVALID_ITERATOR && iteratorHelperWithoutClosingOnEarlyError("filter", TypeError);
1543 - var FORCED = IS_PURE || FILTER_WITHOUT_THROWING_ON_INVALID_ITERATOR || filterWithoutClosingOnEarlyError;
1544 - var IteratorProxy = createIteratorProxy(function() {
1545 - var iterator = this.iterator;
1546 - var predicate = this.predicate;
1547 - var next = this.next;
1548 - var result;
1549 - var done;
1550 - var value;
1551 - while (true) {
1552 - result = anObject(call(next, iterator));
1553 - done = this.done = !!result.done;
1554 - if (done) return;
1555 - value = result.value;
1556 - if (callWithSafeIterationClosing(iterator, predicate, [value, this.counter++], true)) return value;
1557 - }
1558 - });
1559 - $({
1560 - target: "Iterator",
1561 - proto: true,
1562 - real: true,
1563 - forced: FORCED
1564 - }, { filter: function filter(predicate) {
1565 - anObject(this);
1566 - try {
1567 - aCallable(predicate);
1568 - } catch (error) {
1569 - iteratorClose(this, "throw", error);
1570 - }
1571 - if (filterWithoutClosingOnEarlyError) return call(filterWithoutClosingOnEarlyError, this, predicate);
1572 - return new IteratorProxy(getIteratorDirect(this), { predicate });
1573 - } });
1574 - }));
1575 481
1576 -//#endregion
1577 -//#region node_modules/core-js/modules/esnext.iterator.filter.js
1578 - var require_esnext_iterator_filter = /* @__PURE__ */ __commonJSMin((() => {
1579 - require_es_iterator_filter();
1580 - }));
482 +var makeBuiltIn = __webpack_require__(/*! ../internals/make-built-in */ "../node_modules/core-js/internals/make-built-in.js");
483 +var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
1581 484
1582 -//#endregion
1583 -//#region modules/atomic-widgets/elements/atomic-tabs/handlers/utils.js
1584 - var require_utils = /* @__PURE__ */ __commonJSMin(((exports) => {
1585 - Object.defineProperty(exports, "__esModule", { value: true });
1586 - exports.getTabId = exports.getTabContentId = exports.getNextTab = exports.getIndex = exports.getDirectTabCount = exports.getChildren = exports.TAB_ELEMENT_TYPE = exports.TAB_CONTENT_ELEMENT_TYPE = exports.TABS_MENU_ELEMENT_TYPE = exports.TABS_CONTENT_AREA_ELEMENT_TYPE = void 0;
1587 - require_es_array_includes();
1588 - require_esnext_iterator_constructor();
1589 - require_esnext_iterator_filter();
1590 - var TAB_ELEMENT_TYPE = exports.TAB_ELEMENT_TYPE = "e-tab";
1591 - exports.TAB_CONTENT_ELEMENT_TYPE = "e-tab-content";
1592 - exports.TABS_CONTENT_AREA_ELEMENT_TYPE = "e-tabs-content-area";
1593 - var TABS_MENU_ELEMENT_TYPE = exports.TABS_MENU_ELEMENT_TYPE = "e-tabs-menu";
1594 - var NAVIGATE_UP_KEYS = ["ArrowUp", "ArrowLeft"];
1595 - var NAVIGATE_DOWN_KEYS = ["ArrowDown", "ArrowRight"];
1596 - var getTabId = (tabsId, tabIndex) => {
1597 - return `${tabsId}-tab-${tabIndex}`;
1598 - };
1599 - exports.getTabId = getTabId;
1600 - var getTabContentId = (tabsId, tabIndex) => {
1601 - return `${tabsId}-tab-content-${tabIndex}`;
1602 - };
1603 - exports.getTabContentId = getTabContentId;
1604 - var getChildren = (el, elementType) => {
1605 - const parent = el.parentElement;
1606 - return Array.from(parent.children).filter((child) => {
1607 - return child.dataset.element_type === elementType;
1608 - });
1609 - };
1610 - exports.getChildren = getChildren;
1611 - var getIndex = (el, elementType) => {
1612 - return getChildren(el, elementType).indexOf(el);
1613 - };
1614 - exports.getIndex = getIndex;
1615 - var getDirectTabCount = (tabsRootElement) => {
1616 - return tabsRootElement.querySelectorAll(`:scope > [data-element_type="${TABS_MENU_ELEMENT_TYPE}"] > [data-element_type="${TAB_ELEMENT_TYPE}"]`).length;
1617 - };
1618 - exports.getDirectTabCount = getDirectTabCount;
1619 - var getNextTab = (key, tab) => {
1620 - const tabs = getChildren(tab, TAB_ELEMENT_TYPE);
1621 - const tabsLength = tabs.length;
1622 - const currentIndex = getIndex(tab, TAB_ELEMENT_TYPE);
1623 - if (NAVIGATE_DOWN_KEYS.includes(key)) return tabs[(currentIndex + 1) % tabsLength];
1624 - if (NAVIGATE_UP_KEYS.includes(key)) return tabs[(currentIndex - 1 + tabsLength) % tabsLength];
1625 - };
1626 - exports.getNextTab = getNextTab;
1627 - }));
485 +module.exports = function (target, name, descriptor) {
486 + if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
487 + if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
488 + return defineProperty.f(target, name, descriptor);
489 +};
1628 490
1629 -//#endregion
1630 -//#region modules/atomic-widgets/elements/atomic-tabs/handlers/editor-tabs-state.js
1631 - var require_editor_tabs_state = /* @__PURE__ */ __commonJSMin(((exports) => {
1632 - Object.defineProperty(exports, "__esModule", { value: true });
1633 - exports.getActiveTabId = getActiveTabId;
1634 - exports.setActiveTabIndex = setActiveTabIndex;
1635 - exports.validateActiveTab = validateActiveTab;
1636 - var _alpinejs$1 = (globalThis.elementorV2.alpinejs);
1637 - var _utils = require_utils();
1638 - /**
1639 - * @typedef {Record<string, number>} TabsState - Maps tabsId to the selected tab index.
1640 - */
1641 - var STORE_NAME = "editor-atomic-tabs-state";
1642 - function ensureStore() {
1643 - if (!_alpinejs$1.Alpine.store(STORE_NAME)) _alpinejs$1.Alpine.store(
1644 - STORE_NAME,
1645 - /** @type {TabsState} */
1646 - {}
1647 - );
1648 - return _alpinejs$1.Alpine.store(STORE_NAME);
1649 - }
1650 - function getActiveTabId(tabsId, fallback) {
1651 - const storedIndex = ensureStore()[tabsId];
1652 - if (storedIndex === void 0) return fallback;
1653 - return (0, _utils.getTabId)(tabsId, storedIndex);
1654 - }
1655 - function setActiveTabIndex(tabsId, index) {
1656 - const store = ensureStore();
1657 - store[tabsId] = index;
1658 - }
1659 - function validateActiveTab(tabsId, tabCount) {
1660 - const store = ensureStore();
1661 - const storedIndex = store[tabsId];
1662 - if (storedIndex === void 0) return;
1663 - if (storedIndex >= tabCount) delete store[tabsId];
1664 - }
1665 - }));
1666 491
1667 -//#endregion
1668 -//#region modules/atomic-widgets/elements/atomic-tabs/handlers/atomic-tabs-handler.js
1669 - var _frontendHandlers = (globalThis.elementorV2.frontendHandlers);
1670 - var _alpinejs = (globalThis.elementorV2.alpinejs);
1671 - var _utils = require_utils();
1672 - var _editorTabsState = require_editor_tabs_state();
1673 - var SELECTED_CLASS = "e--selected";
1674 - (0, _frontendHandlers.register)({
1675 - elementType: "e-tabs",
1676 - id: "e-tabs-handler",
1677 - callback: ({ element, settings }) => {
1678 - const tabsId = element.dataset.id;
1679 - const defaultActiveTab = settings["default-active-tab"];
1680 - _alpinejs.Alpine.data(`eTabs${tabsId}`, () => ({
1681 - init() {
1682 - (0, _editorTabsState.validateActiveTab)(tabsId, (0, _utils.getDirectTabCount)(this.$el));
1683 - },
1684 - get activeTab() {
1685 - return (0, _editorTabsState.getActiveTabId)(tabsId, defaultActiveTab);
1686 - },
1687 - navigateTabs({ key, target: tab }) {
1688 - (0, _utils.getNextTab)(key, tab).focus();
1689 - },
1690 - tab: {
1691 - ":id"() {
1692 - const index = (0, _utils.getIndex)(this.$el, _utils.TAB_ELEMENT_TYPE);
1693 - return (0, _utils.getTabId)(tabsId, index);
1694 - },
1695 - "@click"() {
1696 - (0, _editorTabsState.setActiveTabIndex)(tabsId, (0, _utils.getIndex)(this.$el, _utils.TAB_ELEMENT_TYPE));
1697 - },
1698 - "@keydown.arrow-right.prevent"(event) {
1699 - this.navigateTabs(event);
1700 - },
1701 - "@keydown.arrow-left.prevent"(event) {
1702 - this.navigateTabs(event);
1703 - },
1704 - ":class"() {
1705 - const id = this.$el.id;
1706 - return { [SELECTED_CLASS]: this.activeTab === id };
1707 - },
1708 - ":aria-selected"() {
1709 - const id = this.$el.id;
1710 - return this.activeTab === id ? "true" : "false";
1711 - },
1712 - ":tabindex"() {
1713 - const id = this.$el.id;
1714 - return this.activeTab === id ? "0" : "-1";
1715 - },
1716 - ":aria-controls"() {
1717 - const index = (0, _utils.getIndex)(this.$el, _utils.TAB_ELEMENT_TYPE);
1718 - return (0, _utils.getTabContentId)(tabsId, index);
1719 - }
1720 - },
1721 - tabContent: {
1722 - ":aria-labelledby"() {
1723 - const index = (0, _utils.getIndex)(this.$el, _utils.TAB_CONTENT_ELEMENT_TYPE);
1724 - return (0, _utils.getTabId)(tabsId, index);
1725 - },
1726 - "x-show"() {
1727 - const index = (0, _utils.getIndex)(this.$el, _utils.TAB_CONTENT_ELEMENT_TYPE);
1728 - const tabId = (0, _utils.getTabId)(tabsId, index);
1729 - const isActive = this.activeTab === tabId;
1730 - this.$nextTick(() => {
1731 - this.$el.classList.toggle(SELECTED_CLASS, isActive);
1732 - });
1733 - return isActive;
1734 - },
1735 - ":id"() {
1736 - const index = (0, _utils.getIndex)(this.$el, _utils.TAB_CONTENT_ELEMENT_TYPE);
1737 - return (0, _utils.getTabContentId)(tabsId, index);
1738 - }
1739 - }
1740 - }));
1741 - }
1742 - });
492 +/***/ }),
1743 493
1744 -//#endregion
1745 -})();
494 +/***/ "../node_modules/core-js/internals/define-built-in.js":
495 +/*!************************************************************!*\
496 + !*** ../node_modules/core-js/internals/define-built-in.js ***!
497 + \************************************************************/
498 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
499 +
500 +
501 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
502 +var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
503 +var makeBuiltIn = __webpack_require__(/*! ../internals/make-built-in */ "../node_modules/core-js/internals/make-built-in.js");
504 +var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
505 +
506 +module.exports = function (O, key, value, options) {
507 + if (!options) options = {};
508 + var simple = options.enumerable;
509 + var name = options.name !== undefined ? options.name : key;
510 + if (isCallable(value)) makeBuiltIn(value, name, options);
511 + if (options.global) {
512 + if (simple) O[key] = value;
513 + else defineGlobalProperty(key, value);
514 + } else {
515 + try {
516 + if (!options.unsafe) delete O[key];
517 + else if (O[key]) simple = true;
518 + } catch (error) { /* empty */ }
519 + if (simple) O[key] = value;
520 + else definePropertyModule.f(O, key, {
521 + value: value,
522 + enumerable: false,
523 + configurable: !options.nonConfigurable,
524 + writable: !options.nonWritable
525 + });
526 + } return O;
527 +};
528 +
529 +
530 +/***/ }),
531 +
532 +/***/ "../node_modules/core-js/internals/define-built-ins.js":
533 +/*!*************************************************************!*\
534 + !*** ../node_modules/core-js/internals/define-built-ins.js ***!
535 + \*************************************************************/
536 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
537 +
538 +
539 +var defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ "../node_modules/core-js/internals/define-built-in.js");
540 +
541 +module.exports = function (target, src, options) {
542 + for (var key in src) defineBuiltIn(target, key, src[key], options);
543 + return target;
544 +};
545 +
546 +
547 +/***/ }),
548 +
549 +/***/ "../node_modules/core-js/internals/define-global-property.js":
550 +/*!*******************************************************************!*\
551 + !*** ../node_modules/core-js/internals/define-global-property.js ***!
552 + \*******************************************************************/
553 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
554 +
555 +
556 +var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
557 +
558 +// eslint-disable-next-line es/no-object-defineproperty -- safe
559 +var defineProperty = Object.defineProperty;
560 +
561 +module.exports = function (key, value) {
562 + try {
563 + defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
564 + } catch (error) {
565 + globalThis[key] = value;
566 + } return value;
567 +};
568 +
569 +
570 +/***/ }),
571 +
572 +/***/ "../node_modules/core-js/internals/descriptors.js":
573 +/*!********************************************************!*\
574 + !*** ../node_modules/core-js/internals/descriptors.js ***!
575 + \********************************************************/
576 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
577 +
578 +
579 +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
580 +
581 +// Detect IE8's incomplete defineProperty implementation
582 +module.exports = !fails(function () {
583 + // eslint-disable-next-line es/no-object-defineproperty -- required for testing
584 + return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
585 +});
586 +
587 +
588 +/***/ }),
589 +
590 +/***/ "../node_modules/core-js/internals/document-create-element.js":
591 +/*!********************************************************************!*\
592 + !*** ../node_modules/core-js/internals/document-create-element.js ***!
593 + \********************************************************************/
594 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
595 +
596 +
597 +var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
598 +var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
599 +
600 +var document = globalThis.document;
601 +// typeof document.createElement is 'object' in old IE
602 +var EXISTS = isObject(document) && isObject(document.createElement);
603 +
604 +module.exports = function (it) {
605 + return EXISTS ? document.createElement(it) : {};
606 +};
607 +
608 +
609 +/***/ }),
610 +
611 +/***/ "../node_modules/core-js/internals/enum-bug-keys.js":
612 +/*!**********************************************************!*\
613 + !*** ../node_modules/core-js/internals/enum-bug-keys.js ***!
614 + \**********************************************************/
615 +/***/ ((module) => {
616 +
617 +
618 +// IE8- don't enum bug keys
619 +module.exports = [
620 + 'constructor',
621 + 'hasOwnProperty',
622 + 'isPrototypeOf',
623 + 'propertyIsEnumerable',
624 + 'toLocaleString',
625 + 'toString',
626 + 'valueOf'
627 +];
628 +
629 +
630 +/***/ }),
631 +
632 +/***/ "../node_modules/core-js/internals/environment-user-agent.js":
633 +/*!*******************************************************************!*\
634 + !*** ../node_modules/core-js/internals/environment-user-agent.js ***!
635 + \*******************************************************************/
636 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
637 +
638 +
639 +var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
640 +
641 +var navigator = globalThis.navigator;
642 +var userAgent = navigator && navigator.userAgent;
643 +
644 +module.exports = userAgent ? String(userAgent) : '';
645 +
646 +
647 +/***/ }),
648 +
649 +/***/ "../node_modules/core-js/internals/environment-v8-version.js":
650 +/*!*******************************************************************!*\
651 + !*** ../node_modules/core-js/internals/environment-v8-version.js ***!
652 + \*******************************************************************/
653 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
654 +
655 +
656 +var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
657 +var userAgent = __webpack_require__(/*! ../internals/environment-user-agent */ "../node_modules/core-js/internals/environment-user-agent.js");
658 +
659 +var process = globalThis.process;
660 +var Deno = globalThis.Deno;
661 +var versions = process && process.versions || Deno && Deno.version;
662 +var v8 = versions && versions.v8;
663 +var match, version;
664 +
665 +if (v8) {
666 + match = v8.split('.');
667 + // in old Chrome, versions of V8 isn't V8 = Chrome / 10
668 + // but their correct versions are not interesting for us
669 + version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
670 +}
671 +
672 +// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
673 +// so check `userAgent` even if `.v8` exists, but 0
674 +if (!version && userAgent) {
675 + match = userAgent.match(/Edge\/(\d+)/);
676 + if (!match || match[1] >= 74) {
677 + match = userAgent.match(/Chrome\/(\d+)/);
678 + if (match) version = +match[1];
679 + }
680 +}
681 +
682 +module.exports = version;
683 +
684 +
685 +/***/ }),
686 +
687 +/***/ "../node_modules/core-js/internals/export.js":
688 +/*!***************************************************!*\
689 + !*** ../node_modules/core-js/internals/export.js ***!
690 + \***************************************************/
691 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
692 +
693 +
694 +var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
695 +var getOwnPropertyDescriptor = (__webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../node_modules/core-js/internals/object-get-own-property-descriptor.js").f);
696 +var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
697 +var defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ "../node_modules/core-js/internals/define-built-in.js");
698 +var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
699 +var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "../node_modules/core-js/internals/copy-constructor-properties.js");
700 +var isForced = __webpack_require__(/*! ../internals/is-forced */ "../node_modules/core-js/internals/is-forced.js");
701 +
702 +/*
703 + options.target - name of the target object
704 + options.global - target is the global object
705 + options.stat - export as static methods of target
706 + options.proto - export as prototype methods of target
707 + options.real - real prototype method for the `pure` version
708 + options.forced - export even if the native feature is available
709 + options.bind - bind methods to the target, required for the `pure` version
710 + options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
711 + options.unsafe - use the simple assignment of property instead of delete + defineProperty
712 + options.sham - add a flag to not completely full polyfills
713 + options.enumerable - export as enumerable property
714 + options.dontCallGetSet - prevent calling a getter on target
715 + options.name - the .name of the function if it does not match the key
716 +*/
717 +module.exports = function (options, source) {
718 + var TARGET = options.target;
719 + var GLOBAL = options.global;
720 + var STATIC = options.stat;
721 + var FORCED, target, key, targetProperty, sourceProperty, descriptor;
722 + if (GLOBAL) {
723 + target = globalThis;
724 + } else if (STATIC) {
725 + target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
726 + } else {
727 + target = globalThis[TARGET] && globalThis[TARGET].prototype;
728 + }
729 + if (target) for (key in source) {
730 + sourceProperty = source[key];
731 + if (options.dontCallGetSet) {
732 + descriptor = getOwnPropertyDescriptor(target, key);
733 + targetProperty = descriptor && descriptor.value;
734 + } else targetProperty = target[key];
735 + FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
736 + // contained in target
737 + if (!FORCED && targetProperty !== undefined) {
738 + if (typeof sourceProperty == typeof targetProperty) continue;
739 + copyConstructorProperties(sourceProperty, targetProperty);
740 + }
741 + // add a flag to not completely full polyfills
742 + if (options.sham || (targetProperty && targetProperty.sham)) {
743 + createNonEnumerableProperty(sourceProperty, 'sham', true);
744 + }
745 + defineBuiltIn(target, key, sourceProperty, options);
746 + }
747 +};
748 +
749 +
750 +/***/ }),
751 +
752 +/***/ "../node_modules/core-js/internals/fails.js":
753 +/*!**************************************************!*\
754 + !*** ../node_modules/core-js/internals/fails.js ***!
755 + \**************************************************/
756 +/***/ ((module) => {
757 +
758 +
759 +module.exports = function (exec) {
760 + try {
761 + return !!exec();
762 + } catch (error) {
763 + return true;
764 + }
765 +};
766 +
767 +
768 +/***/ }),
769 +
770 +/***/ "../node_modules/core-js/internals/function-bind-native.js":
771 +/*!*****************************************************************!*\
772 + !*** ../node_modules/core-js/internals/function-bind-native.js ***!
773 + \*****************************************************************/
774 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
775 +
776 +
777 +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
778 +
779 +module.exports = !fails(function () {
780 + // eslint-disable-next-line es/no-function-prototype-bind -- safe
781 + var test = (function () { /* empty */ }).bind();
782 + // eslint-disable-next-line no-prototype-builtins -- safe
783 + return typeof test != 'function' || test.hasOwnProperty('prototype');
784 +});
785 +
786 +
787 +/***/ }),
788 +
789 +/***/ "../node_modules/core-js/internals/function-call.js":
790 +/*!**********************************************************!*\
791 + !*** ../node_modules/core-js/internals/function-call.js ***!
792 + \**********************************************************/
793 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
794 +
795 +
796 +var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
797 +
798 +var call = Function.prototype.call;
799 +// eslint-disable-next-line es/no-function-prototype-bind -- safe
800 +module.exports = NATIVE_BIND ? call.bind(call) : function () {
801 + return call.apply(call, arguments);
802 +};
803 +
804 +
805 +/***/ }),
806 +
807 +/***/ "../node_modules/core-js/internals/function-name.js":
808 +/*!**********************************************************!*\
809 + !*** ../node_modules/core-js/internals/function-name.js ***!
810 + \**********************************************************/
811 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
812 +
813 +
814 +var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
815 +var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
816 +
817 +var FunctionPrototype = Function.prototype;
818 +// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
819 +var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
820 +
821 +var EXISTS = hasOwn(FunctionPrototype, 'name');
822 +// additional protection from minified / mangled / dropped function names
823 +var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
824 +var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
825 +
826 +module.exports = {
827 + EXISTS: EXISTS,
828 + PROPER: PROPER,
829 + CONFIGURABLE: CONFIGURABLE
830 +};
831 +
832 +
833 +/***/ }),
834 +
835 +/***/ "../node_modules/core-js/internals/function-uncurry-this.js":
836 +/*!******************************************************************!*\
837 + !*** ../node_modules/core-js/internals/function-uncurry-this.js ***!
838 + \******************************************************************/
839 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
840 +
841 +
842 +var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
843 +
844 +var FunctionPrototype = Function.prototype;
845 +var call = FunctionPrototype.call;
846 +// eslint-disable-next-line es/no-function-prototype-bind -- safe
847 +var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
848 +
849 +module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
850 + return function () {
851 + return call.apply(fn, arguments);
852 + };
853 +};
854 +
855 +
856 +/***/ }),
857 +
858 +/***/ "../node_modules/core-js/internals/get-built-in.js":
859 +/*!*********************************************************!*\
860 + !*** ../node_modules/core-js/internals/get-built-in.js ***!
861 + \*********************************************************/
862 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
863 +
864 +
865 +var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
866 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
867 +
868 +var aFunction = function (argument) {
869 + return isCallable(argument) ? argument : undefined;
870 +};
871 +
872 +module.exports = function (namespace, method) {
873 + return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
874 +};
875 +
876 +
877 +/***/ }),
878 +
879 +/***/ "../node_modules/core-js/internals/get-iterator-direct.js":
880 +/*!****************************************************************!*\
881 + !*** ../node_modules/core-js/internals/get-iterator-direct.js ***!
882 + \****************************************************************/
883 +/***/ ((module) => {
884 +
885 +
886 +// `GetIteratorDirect(obj)` abstract operation
887 +// https://tc39.es/ecma262/#sec-getiteratordirect
888 +module.exports = function (obj) {
889 + return {
890 + iterator: obj,
891 + next: obj.next,
892 + done: false
893 + };
894 +};
895 +
896 +
897 +/***/ }),
898 +
899 +/***/ "../node_modules/core-js/internals/get-method.js":
900 +/*!*******************************************************!*\
901 + !*** ../node_modules/core-js/internals/get-method.js ***!
902 + \*******************************************************/
903 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
904 +
905 +
906 +var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
907 +var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ "../node_modules/core-js/internals/is-null-or-undefined.js");
908 +
909 +// `GetMethod` abstract operation
910 +// https://tc39.es/ecma262/#sec-getmethod
911 +module.exports = function (V, P) {
912 + var func = V[P];
913 + return isNullOrUndefined(func) ? undefined : aCallable(func);
914 +};
915 +
916 +
917 +/***/ }),
918 +
919 +/***/ "../node_modules/core-js/internals/global-this.js":
920 +/*!********************************************************!*\
921 + !*** ../node_modules/core-js/internals/global-this.js ***!
922 + \********************************************************/
923 +/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
924 +
925 +
926 +var check = function (it) {
927 + return it && it.Math === Math && it;
928 +};
929 +
930 +// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
931 +module.exports =
932 + // eslint-disable-next-line es/no-global-this -- safe
933 + check(typeof globalThis == 'object' && globalThis) ||
934 + check(typeof window == 'object' && window) ||
935 + // eslint-disable-next-line no-restricted-globals -- safe
936 + check(typeof self == 'object' && self) ||
937 + check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
938 + check(typeof this == 'object' && this) ||
939 + // eslint-disable-next-line no-new-func -- fallback
940 + (function () { return this; })() || Function('return this')();
941 +
942 +
943 +/***/ }),
944 +
945 +/***/ "../node_modules/core-js/internals/has-own-property.js":
946 +/*!*************************************************************!*\
947 + !*** ../node_modules/core-js/internals/has-own-property.js ***!
948 + \*************************************************************/
949 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
950 +
951 +
952 +var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
953 +var toObject = __webpack_require__(/*! ../internals/to-object */ "../node_modules/core-js/internals/to-object.js");
954 +
955 +var hasOwnProperty = uncurryThis({}.hasOwnProperty);
956 +
957 +// `HasOwnProperty` abstract operation
958 +// https://tc39.es/ecma262/#sec-hasownproperty
959 +// eslint-disable-next-line es/no-object-hasown -- safe
960 +module.exports = Object.hasOwn || function hasOwn(it, key) {
961 + return hasOwnProperty(toObject(it), key);
962 +};
963 +
964 +
965 +/***/ }),
966 +
967 +/***/ "../node_modules/core-js/internals/hidden-keys.js":
968 +/*!********************************************************!*\
969 + !*** ../node_modules/core-js/internals/hidden-keys.js ***!
970 + \********************************************************/
971 +/***/ ((module) => {
972 +
973 +
974 +module.exports = {};
975 +
976 +
977 +/***/ }),
978 +
979 +/***/ "../node_modules/core-js/internals/html.js":
980 +/*!*************************************************!*\
981 + !*** ../node_modules/core-js/internals/html.js ***!
982 + \*************************************************/
983 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
984 +
985 +
986 +var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js");
987 +
988 +module.exports = getBuiltIn('document', 'documentElement');
989 +
990 +
991 +/***/ }),
992 +
993 +/***/ "../node_modules/core-js/internals/ie8-dom-define.js":
994 +/*!***********************************************************!*\
995 + !*** ../node_modules/core-js/internals/ie8-dom-define.js ***!
996 + \***********************************************************/
997 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
998 +
999 +
1000 +var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
1001 +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
1002 +var createElement = __webpack_require__(/*! ../internals/document-create-element */ "../node_modules/core-js/internals/document-create-element.js");
1003 +
1004 +// Thanks to IE8 for its funny defineProperty
1005 +module.exports = !DESCRIPTORS && !fails(function () {
1006 + // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1007 + return Object.defineProperty(createElement('div'), 'a', {
1008 + get: function () { return 7; }
1009 + }).a !== 7;
1010 +});
1011 +
1012 +
1013 +/***/ }),
1014 +
1015 +/***/ "../node_modules/core-js/internals/indexed-object.js":
1016 +/*!***********************************************************!*\
1017 + !*** ../node_modules/core-js/internals/indexed-object.js ***!
1018 + \***********************************************************/
1019 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1020 +
1021 +
1022 +var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
1023 +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
1024 +var classof = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js");
1025 +
1026 +var $Object = Object;
1027 +var split = uncurryThis(''.split);
1028 +
1029 +// fallback for non-array-like ES3 and non-enumerable old V8 strings
1030 +module.exports = fails(function () {
1031 + // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
1032 + // eslint-disable-next-line no-prototype-builtins -- safe
1033 + return !$Object('z').propertyIsEnumerable(0);
1034 +}) ? function (it) {
1035 + return classof(it) === 'String' ? split(it, '') : $Object(it);
1036 +} : $Object;
1037 +
1038 +
1039 +/***/ }),
1040 +
1041 +/***/ "../node_modules/core-js/internals/inspect-source.js":
1042 +/*!***********************************************************!*\
1043 + !*** ../node_modules/core-js/internals/inspect-source.js ***!
1044 + \***********************************************************/
1045 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1046 +
1047 +
1048 +var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
1049 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
1050 +var store = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
1051 +
1052 +var functionToString = uncurryThis(Function.toString);
1053 +
1054 +// this helper broken in `[email protected]`, so we can't use `shared` helper
1055 +if (!isCallable(store.inspectSource)) {
1056 + store.inspectSource = function (it) {
1057 + return functionToString(it);
1058 + };
1059 +}
1060 +
1061 +module.exports = store.inspectSource;
1062 +
1063 +
1064 +/***/ }),
1065 +
1066 +/***/ "../node_modules/core-js/internals/internal-state.js":
1067 +/*!***********************************************************!*\
1068 + !*** ../node_modules/core-js/internals/internal-state.js ***!
1069 + \***********************************************************/
1070 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1071 +
1072 +
1073 +var NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/weak-map-basic-detection */ "../node_modules/core-js/internals/weak-map-basic-detection.js");
1074 +var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
1075 +var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
1076 +var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
1077 +var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
1078 +var shared = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
1079 +var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../node_modules/core-js/internals/shared-key.js");
1080 +var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js");
1081 +
1082 +var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
1083 +var TypeError = globalThis.TypeError;
1084 +var WeakMap = globalThis.WeakMap;
1085 +var set, get, has;
1086 +
1087 +var enforce = function (it) {
1088 + return has(it) ? get(it) : set(it, {});
1089 +};
1090 +
1091 +var getterFor = function (TYPE) {
1092 + return function (it) {
1093 + var state;
1094 + if (!isObject(it) || (state = get(it)).type !== TYPE) {
1095 + throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
1096 + } return state;
1097 + };
1098 +};
1099 +
1100 +if (NATIVE_WEAK_MAP || shared.state) {
1101 + var store = shared.state || (shared.state = new WeakMap());
1102 + /* eslint-disable no-self-assign -- prototype methods protection */
1103 + store.get = store.get;
1104 + store.has = store.has;
1105 + store.set = store.set;
1106 + /* eslint-enable no-self-assign -- prototype methods protection */
1107 + set = function (it, metadata) {
1108 + if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
1109 + metadata.facade = it;
1110 + store.set(it, metadata);
1111 + return metadata;
1112 + };
1113 + get = function (it) {
1114 + return store.get(it) || {};
1115 + };
1116 + has = function (it) {
1117 + return store.has(it);
1118 + };
1119 +} else {
1120 + var STATE = sharedKey('state');
1121 + hiddenKeys[STATE] = true;
1122 + set = function (it, metadata) {
1123 + if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
1124 + metadata.facade = it;
1125 + createNonEnumerableProperty(it, STATE, metadata);
1126 + return metadata;
1127 + };
1128 + get = function (it) {
1129 + return hasOwn(it, STATE) ? it[STATE] : {};
1130 + };
1131 + has = function (it) {
1132 + return hasOwn(it, STATE);
1133 + };
1134 +}
1135 +
1136 +module.exports = {
1137 + set: set,
1138 + get: get,
1139 + has: has,
1140 + enforce: enforce,
1141 + getterFor: getterFor
1142 +};
1143 +
1144 +
1145 +/***/ }),
1146 +
1147 +/***/ "../node_modules/core-js/internals/is-callable.js":
1148 +/*!********************************************************!*\
1149 + !*** ../node_modules/core-js/internals/is-callable.js ***!
1150 + \********************************************************/
1151 +/***/ ((module) => {
1152 +
1153 +
1154 +// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
1155 +var documentAll = typeof document == 'object' && document.all;
1156 +
1157 +// `IsCallable` abstract operation
1158 +// https://tc39.es/ecma262/#sec-iscallable
1159 +// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
1160 +module.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
1161 + return typeof argument == 'function' || argument === documentAll;
1162 +} : function (argument) {
1163 + return typeof argument == 'function';
1164 +};
1165 +
1166 +
1167 +/***/ }),
1168 +
1169 +/***/ "../node_modules/core-js/internals/is-forced.js":
1170 +/*!******************************************************!*\
1171 + !*** ../node_modules/core-js/internals/is-forced.js ***!
1172 + \******************************************************/
1173 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1174 +
1175 +
1176 +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
1177 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
1178 +
1179 +var replacement = /#|\.prototype\./;
1180 +
1181 +var isForced = function (feature, detection) {
1182 + var value = data[normalize(feature)];
1183 + return value === POLYFILL ? true
1184 + : value === NATIVE ? false
1185 + : isCallable(detection) ? fails(detection)
1186 + : !!detection;
1187 +};
1188 +
1189 +var normalize = isForced.normalize = function (string) {
1190 + return String(string).replace(replacement, '.').toLowerCase();
1191 +};
1192 +
1193 +var data = isForced.data = {};
1194 +var NATIVE = isForced.NATIVE = 'N';
1195 +var POLYFILL = isForced.POLYFILL = 'P';
1196 +
1197 +module.exports = isForced;
1198 +
1199 +
1200 +/***/ }),
1201 +
1202 +/***/ "../node_modules/core-js/internals/is-null-or-undefined.js":
1203 +/*!*****************************************************************!*\
1204 + !*** ../node_modules/core-js/internals/is-null-or-undefined.js ***!
1205 + \*****************************************************************/
1206 +/***/ ((module) => {
1207 +
1208 +
1209 +// we can't use just `it == null` since of `document.all` special case
1210 +// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
1211 +module.exports = function (it) {
1212 + return it === null || it === undefined;
1213 +};
1214 +
1215 +
1216 +/***/ }),
1217 +
1218 +/***/ "../node_modules/core-js/internals/is-object.js":
1219 +/*!******************************************************!*\
1220 + !*** ../node_modules/core-js/internals/is-object.js ***!
1221 + \******************************************************/
1222 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1223 +
1224 +
1225 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
1226 +
1227 +module.exports = function (it) {
1228 + return typeof it == 'object' ? it !== null : isCallable(it);
1229 +};
1230 +
1231 +
1232 +/***/ }),
1233 +
1234 +/***/ "../node_modules/core-js/internals/is-pure.js":
1235 +/*!****************************************************!*\
1236 + !*** ../node_modules/core-js/internals/is-pure.js ***!
1237 + \****************************************************/
1238 +/***/ ((module) => {
1239 +
1240 +
1241 +module.exports = false;
1242 +
1243 +
1244 +/***/ }),
1245 +
1246 +/***/ "../node_modules/core-js/internals/is-symbol.js":
1247 +/*!******************************************************!*\
1248 + !*** ../node_modules/core-js/internals/is-symbol.js ***!
1249 + \******************************************************/
1250 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1251 +
1252 +
1253 +var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js");
1254 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
1255 +var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js");
1256 +var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../node_modules/core-js/internals/use-symbol-as-uid.js");
1257 +
1258 +var $Object = Object;
1259 +
1260 +module.exports = USE_SYMBOL_AS_UID ? function (it) {
1261 + return typeof it == 'symbol';
1262 +} : function (it) {
1263 + var $Symbol = getBuiltIn('Symbol');
1264 + return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
1265 +};
1266 +
1267 +
1268 +/***/ }),
1269 +
1270 +/***/ "../node_modules/core-js/internals/iterator-close-all.js":
1271 +/*!***************************************************************!*\
1272 + !*** ../node_modules/core-js/internals/iterator-close-all.js ***!
1273 + \***************************************************************/
1274 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1275 +
1276 +
1277 +var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js");
1278 +
1279 +module.exports = function (iters, kind, value) {
1280 + for (var i = iters.length - 1; i >= 0; i--) {
1281 + if (iters[i] === undefined) continue;
1282 + try {
1283 + value = iteratorClose(iters[i].iterator, kind, value);
1284 + } catch (error) {
1285 + kind = 'throw';
1286 + value = error;
1287 + }
1288 + }
1289 + if (kind === 'throw') throw value;
1290 + return value;
1291 +};
1292 +
1293 +
1294 +/***/ }),
1295 +
1296 +/***/ "../node_modules/core-js/internals/iterator-close.js":
1297 +/*!***********************************************************!*\
1298 + !*** ../node_modules/core-js/internals/iterator-close.js ***!
1299 + \***********************************************************/
1300 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1301 +
1302 +
1303 +var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
1304 +var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
1305 +var getMethod = __webpack_require__(/*! ../internals/get-method */ "../node_modules/core-js/internals/get-method.js");
1306 +
1307 +module.exports = function (iterator, kind, value) {
1308 + var innerResult, innerError;
1309 + anObject(iterator);
1310 + try {
1311 + innerResult = getMethod(iterator, 'return');
1312 + if (!innerResult) {
1313 + if (kind === 'throw') throw value;
1314 + return value;
1315 + }
1316 + innerResult = call(innerResult, iterator);
1317 + } catch (error) {
1318 + innerError = true;
1319 + innerResult = error;
1320 + }
1321 + if (kind === 'throw') throw value;
1322 + if (innerError) throw innerResult;
1323 + anObject(innerResult);
1324 + return value;
1325 +};
1326 +
1327 +
1328 +/***/ }),
1329 +
1330 +/***/ "../node_modules/core-js/internals/iterator-create-proxy.js":
1331 +/*!******************************************************************!*\
1332 + !*** ../node_modules/core-js/internals/iterator-create-proxy.js ***!
1333 + \******************************************************************/
1334 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1335 +
1336 +
1337 +var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
1338 +var create = __webpack_require__(/*! ../internals/object-create */ "../node_modules/core-js/internals/object-create.js");
1339 +var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
1340 +var defineBuiltIns = __webpack_require__(/*! ../internals/define-built-ins */ "../node_modules/core-js/internals/define-built-ins.js");
1341 +var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
1342 +var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "../node_modules/core-js/internals/internal-state.js");
1343 +var getMethod = __webpack_require__(/*! ../internals/get-method */ "../node_modules/core-js/internals/get-method.js");
1344 +var IteratorPrototype = (__webpack_require__(/*! ../internals/iterators-core */ "../node_modules/core-js/internals/iterators-core.js").IteratorPrototype);
1345 +var createIterResultObject = __webpack_require__(/*! ../internals/create-iter-result-object */ "../node_modules/core-js/internals/create-iter-result-object.js");
1346 +var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js");
1347 +var iteratorCloseAll = __webpack_require__(/*! ../internals/iterator-close-all */ "../node_modules/core-js/internals/iterator-close-all.js");
1348 +
1349 +var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1350 +var ITERATOR_HELPER = 'IteratorHelper';
1351 +var WRAP_FOR_VALID_ITERATOR = 'WrapForValidIterator';
1352 +var NORMAL = 'normal';
1353 +var THROW = 'throw';
1354 +var setInternalState = InternalStateModule.set;
1355 +
1356 +var createIteratorProxyPrototype = function (IS_ITERATOR) {
1357 + var getInternalState = InternalStateModule.getterFor(IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER);
1358 +
1359 + return defineBuiltIns(create(IteratorPrototype), {
1360 + next: function next() {
1361 + var state = getInternalState(this);
1362 + // for simplification:
1363 + // for `%WrapForValidIteratorPrototype%.next` or with `state.returnHandlerResult` our `nextHandler` returns `IterResultObject`
1364 + // for `%IteratorHelperPrototype%.next` - just a value
1365 + if (IS_ITERATOR) return state.nextHandler();
1366 + if (state.done) return createIterResultObject(undefined, true);
1367 + try {
1368 + var result = state.nextHandler();
1369 + return state.returnHandlerResult ? result : createIterResultObject(result, state.done);
1370 + } catch (error) {
1371 + state.done = true;
1372 + throw error;
1373 + }
1374 + },
1375 + 'return': function () {
1376 + var state = getInternalState(this);
1377 + var iterator = state.iterator;
1378 + state.done = true;
1379 + if (IS_ITERATOR) {
1380 + var returnMethod = getMethod(iterator, 'return');
1381 + return returnMethod ? call(returnMethod, iterator) : createIterResultObject(undefined, true);
1382 + }
1383 + if (state.inner) try {
1384 + iteratorClose(state.inner.iterator, NORMAL);
1385 + } catch (error) {
1386 + return iteratorClose(iterator, THROW, error);
1387 + }
1388 + if (state.openIters) try {
1389 + iteratorCloseAll(state.openIters, NORMAL);
1390 + } catch (error) {
1391 + return iteratorClose(iterator, THROW, error);
1392 + }
1393 + if (iterator) iteratorClose(iterator, NORMAL);
1394 + return createIterResultObject(undefined, true);
1395 + }
1396 + });
1397 +};
1398 +
1399 +var WrapForValidIteratorPrototype = createIteratorProxyPrototype(true);
1400 +var IteratorHelperPrototype = createIteratorProxyPrototype(false);
1401 +
1402 +createNonEnumerableProperty(IteratorHelperPrototype, TO_STRING_TAG, 'Iterator Helper');
1403 +
1404 +module.exports = function (nextHandler, IS_ITERATOR, RETURN_HANDLER_RESULT) {
1405 + var IteratorProxy = function Iterator(record, state) {
1406 + if (state) {
1407 + state.iterator = record.iterator;
1408 + state.next = record.next;
1409 + } else state = record;
1410 + state.type = IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER;
1411 + state.returnHandlerResult = !!RETURN_HANDLER_RESULT;
1412 + state.nextHandler = nextHandler;
1413 + state.counter = 0;
1414 + state.done = false;
1415 + setInternalState(this, state);
1416 + };
1417 +
1418 + IteratorProxy.prototype = IS_ITERATOR ? WrapForValidIteratorPrototype : IteratorHelperPrototype;
1419 +
1420 + return IteratorProxy;
1421 +};
1422 +
1423 +
1424 +/***/ }),
1425 +
1426 +/***/ "../node_modules/core-js/internals/iterator-helper-throws-on-invalid-iterator.js":
1427 +/*!***************************************************************************************!*\
1428 + !*** ../node_modules/core-js/internals/iterator-helper-throws-on-invalid-iterator.js ***!
1429 + \***************************************************************************************/
1430 +/***/ ((module) => {
1431 +
1432 +
1433 +// Should throw an error on invalid iterator
1434 +// https://issues.chromium.org/issues/336839115
1435 +module.exports = function (methodName, argument) {
1436 + // eslint-disable-next-line es/no-iterator -- required for testing
1437 + var method = typeof Iterator == 'function' && Iterator.prototype[methodName];
1438 + if (method) try {
1439 + method.call({ next: null }, argument).next();
1440 + } catch (error) {
1441 + return true;
1442 + }
1443 +};
1444 +
1445 +
1446 +/***/ }),
1447 +
1448 +/***/ "../node_modules/core-js/internals/iterator-helper-without-closing-on-early-error.js":
1449 +/*!*******************************************************************************************!*\
1450 + !*** ../node_modules/core-js/internals/iterator-helper-without-closing-on-early-error.js ***!
1451 + \*******************************************************************************************/
1452 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1453 +
1454 +
1455 +var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
1456 +
1457 +// https://github.com/tc39/ecma262/pull/3467
1458 +module.exports = function (METHOD_NAME, ExpectedError) {
1459 + var Iterator = globalThis.Iterator;
1460 + var IteratorPrototype = Iterator && Iterator.prototype;
1461 + var method = IteratorPrototype && IteratorPrototype[METHOD_NAME];
1462 +
1463 + var CLOSED = false;
1464 +
1465 + if (method) try {
1466 + method.call({
1467 + next: function () { return { done: true }; },
1468 + 'return': function () { CLOSED = true; }
1469 + }, -1);
1470 + } catch (error) {
1471 + // https://bugs.webkit.org/show_bug.cgi?id=291195
1472 + if (!(error instanceof ExpectedError)) CLOSED = false;
1473 + }
1474 +
1475 + if (!CLOSED) return method;
1476 +};
1477 +
1478 +
1479 +/***/ }),
1480 +
1481 +/***/ "../node_modules/core-js/internals/iterators-core.js":
1482 +/*!***********************************************************!*\
1483 + !*** ../node_modules/core-js/internals/iterators-core.js ***!
1484 + \***********************************************************/
1485 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1486 +
1487 +
1488 +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
1489 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
1490 +var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
1491 +var create = __webpack_require__(/*! ../internals/object-create */ "../node_modules/core-js/internals/object-create.js");
1492 +var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "../node_modules/core-js/internals/object-get-prototype-of.js");
1493 +var defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ "../node_modules/core-js/internals/define-built-in.js");
1494 +var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
1495 +var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
1496 +
1497 +var ITERATOR = wellKnownSymbol('iterator');
1498 +var BUGGY_SAFARI_ITERATORS = false;
1499 +
1500 +// `%IteratorPrototype%` object
1501 +// https://tc39.es/ecma262/#sec-%iteratorprototype%-object
1502 +var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
1503 +
1504 +/* eslint-disable es/no-array-prototype-keys -- safe */
1505 +if ([].keys) {
1506 + arrayIterator = [].keys();
1507 + // Safari 8 has buggy iterators w/o `next`
1508 + if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
1509 + else {
1510 + PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
1511 + if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
1512 + }
1513 +}
1514 +
1515 +var NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype) || fails(function () {
1516 + var test = {};
1517 + // FF44- legacy iterators case
1518 + return IteratorPrototype[ITERATOR].call(test) !== test;
1519 +});
1520 +
1521 +if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
1522 +else if (IS_PURE) IteratorPrototype = create(IteratorPrototype);
1523 +
1524 +// `%IteratorPrototype%[@@iterator]()` method
1525 +// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1526 +if (!isCallable(IteratorPrototype[ITERATOR])) {
1527 + defineBuiltIn(IteratorPrototype, ITERATOR, function () {
1528 + return this;
1529 + });
1530 +}
1531 +
1532 +module.exports = {
1533 + IteratorPrototype: IteratorPrototype,
1534 + BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
1535 +};
1536 +
1537 +
1538 +/***/ }),
1539 +
1540 +/***/ "../node_modules/core-js/internals/length-of-array-like.js":
1541 +/*!*****************************************************************!*\
1542 + !*** ../node_modules/core-js/internals/length-of-array-like.js ***!
1543 + \*****************************************************************/
1544 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1545 +
1546 +
1547 +var toLength = __webpack_require__(/*! ../internals/to-length */ "../node_modules/core-js/internals/to-length.js");
1548 +
1549 +// `LengthOfArrayLike` abstract operation
1550 +// https://tc39.es/ecma262/#sec-lengthofarraylike
1551 +module.exports = function (obj) {
1552 + return toLength(obj.length);
1553 +};
1554 +
1555 +
1556 +/***/ }),
1557 +
1558 +/***/ "../node_modules/core-js/internals/make-built-in.js":
1559 +/*!**********************************************************!*\
1560 + !*** ../node_modules/core-js/internals/make-built-in.js ***!
1561 + \**********************************************************/
1562 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1563 +
1564 +
1565 +var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
1566 +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
1567 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
1568 +var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
1569 +var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
1570 +var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(/*! ../internals/function-name */ "../node_modules/core-js/internals/function-name.js").CONFIGURABLE);
1571 +var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "../node_modules/core-js/internals/inspect-source.js");
1572 +var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "../node_modules/core-js/internals/internal-state.js");
1573 +
1574 +var enforceInternalState = InternalStateModule.enforce;
1575 +var getInternalState = InternalStateModule.get;
1576 +var $String = String;
1577 +// eslint-disable-next-line es/no-object-defineproperty -- safe
1578 +var defineProperty = Object.defineProperty;
1579 +var stringSlice = uncurryThis(''.slice);
1580 +var replace = uncurryThis(''.replace);
1581 +var join = uncurryThis([].join);
1582 +
1583 +var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
1584 + return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
1585 +});
1586 +
1587 +var TEMPLATE = String(String).split('String');
1588 +
1589 +var makeBuiltIn = module.exports = function (value, name, options) {
1590 + if (stringSlice($String(name), 0, 7) === 'Symbol(') {
1591 + name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
1592 + }
1593 + if (options && options.getter) name = 'get ' + name;
1594 + if (options && options.setter) name = 'set ' + name;
1595 + if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
1596 + if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
1597 + else value.name = name;
1598 + }
1599 + if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
1600 + defineProperty(value, 'length', { value: options.arity });
1601 + }
1602 + try {
1603 + if (options && hasOwn(options, 'constructor') && options.constructor) {
1604 + if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
1605 + // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
1606 + } else if (value.prototype) value.prototype = undefined;
1607 + } catch (error) { /* empty */ }
1608 + var state = enforceInternalState(value);
1609 + if (!hasOwn(state, 'source')) {
1610 + state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
1611 + } return value;
1612 +};
1613 +
1614 +// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
1615 +// eslint-disable-next-line no-extend-native -- required
1616 +Function.prototype.toString = makeBuiltIn(function toString() {
1617 + return isCallable(this) && getInternalState(this).source || inspectSource(this);
1618 +}, 'toString');
1619 +
1620 +
1621 +/***/ }),
1622 +
1623 +/***/ "../node_modules/core-js/internals/math-trunc.js":
1624 +/*!*******************************************************!*\
1625 + !*** ../node_modules/core-js/internals/math-trunc.js ***!
1626 + \*******************************************************/
1627 +/***/ ((module) => {
1628 +
1629 +
1630 +var ceil = Math.ceil;
1631 +var floor = Math.floor;
1632 +
1633 +// `Math.trunc` method
1634 +// https://tc39.es/ecma262/#sec-math.trunc
1635 +// eslint-disable-next-line es/no-math-trunc -- safe
1636 +module.exports = Math.trunc || function trunc(x) {
1637 + var n = +x;
1638 + return (n > 0 ? floor : ceil)(n);
1639 +};
1640 +
1641 +
1642 +/***/ }),
1643 +
1644 +/***/ "../node_modules/core-js/internals/object-create.js":
1645 +/*!**********************************************************!*\
1646 + !*** ../node_modules/core-js/internals/object-create.js ***!
1647 + \**********************************************************/
1648 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1649 +
1650 +
1651 +/* global ActiveXObject -- old IE, WSH */
1652 +var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
1653 +var definePropertiesModule = __webpack_require__(/*! ../internals/object-define-properties */ "../node_modules/core-js/internals/object-define-properties.js");
1654 +var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "../node_modules/core-js/internals/enum-bug-keys.js");
1655 +var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js");
1656 +var html = __webpack_require__(/*! ../internals/html */ "../node_modules/core-js/internals/html.js");
1657 +var documentCreateElement = __webpack_require__(/*! ../internals/document-create-element */ "../node_modules/core-js/internals/document-create-element.js");
1658 +var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../node_modules/core-js/internals/shared-key.js");
1659 +
1660 +var GT = '>';
1661 +var LT = '<';
1662 +var PROTOTYPE = 'prototype';
1663 +var SCRIPT = 'script';
1664 +var IE_PROTO = sharedKey('IE_PROTO');
1665 +
1666 +var EmptyConstructor = function () { /* empty */ };
1667 +
1668 +var scriptTag = function (content) {
1669 + return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
1670 +};
1671 +
1672 +// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
1673 +var NullProtoObjectViaActiveX = function (activeXDocument) {
1674 + activeXDocument.write(scriptTag(''));
1675 + activeXDocument.close();
1676 + var temp = activeXDocument.parentWindow.Object;
1677 + // eslint-disable-next-line no-useless-assignment -- avoid memory leak
1678 + activeXDocument = null;
1679 + return temp;
1680 +};
1681 +
1682 +// Create object with fake `null` prototype: use iframe Object with cleared prototype
1683 +var NullProtoObjectViaIFrame = function () {
1684 + // Thrash, waste and sodomy: IE GC bug
1685 + var iframe = documentCreateElement('iframe');
1686 + var JS = 'java' + SCRIPT + ':';
1687 + var iframeDocument;
1688 + iframe.style.display = 'none';
1689 + html.appendChild(iframe);
1690 + // https://github.com/zloirock/core-js/issues/475
1691 + iframe.src = String(JS);
1692 + iframeDocument = iframe.contentWindow.document;
1693 + iframeDocument.open();
1694 + iframeDocument.write(scriptTag('document.F=Object'));
1695 + iframeDocument.close();
1696 + return iframeDocument.F;
1697 +};
1698 +
1699 +// Check for document.domain and active x support
1700 +// No need to use active x approach when document.domain is not set
1701 +// see https://github.com/es-shims/es5-shim/issues/150
1702 +// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
1703 +// avoid IE GC bug
1704 +var activeXDocument;
1705 +var NullProtoObject = function () {
1706 + try {
1707 + activeXDocument = new ActiveXObject('htmlfile');
1708 + } catch (error) { /* ignore */ }
1709 + NullProtoObject = typeof document != 'undefined'
1710 + ? document.domain && activeXDocument
1711 + ? NullProtoObjectViaActiveX(activeXDocument) // old IE
1712 + : NullProtoObjectViaIFrame()
1713 + : NullProtoObjectViaActiveX(activeXDocument); // WSH
1714 + var length = enumBugKeys.length;
1715 + while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
1716 + return NullProtoObject();
1717 +};
1718 +
1719 +hiddenKeys[IE_PROTO] = true;
1720 +
1721 +// `Object.create` method
1722 +// https://tc39.es/ecma262/#sec-object.create
1723 +// eslint-disable-next-line es/no-object-create -- safe
1724 +module.exports = Object.create || function create(O, Properties) {
1725 + var result;
1726 + if (O !== null) {
1727 + EmptyConstructor[PROTOTYPE] = anObject(O);
1728 + result = new EmptyConstructor();
1729 + EmptyConstructor[PROTOTYPE] = null;
1730 + // add "__proto__" for Object.getPrototypeOf polyfill
1731 + result[IE_PROTO] = O;
1732 + } else result = NullProtoObject();
1733 + return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
1734 +};
1735 +
1736 +
1737 +/***/ }),
1738 +
1739 +/***/ "../node_modules/core-js/internals/object-define-properties.js":
1740 +/*!*********************************************************************!*\
1741 + !*** ../node_modules/core-js/internals/object-define-properties.js ***!
1742 + \*********************************************************************/
1743 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1744 +
1745 +
1746 +var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
1747 +var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(/*! ../internals/v8-prototype-define-bug */ "../node_modules/core-js/internals/v8-prototype-define-bug.js");
1748 +var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
1749 +var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
1750 +var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
1751 +var objectKeys = __webpack_require__(/*! ../internals/object-keys */ "../node_modules/core-js/internals/object-keys.js");
1752 +
1753 +// `Object.defineProperties` method
1754 +// https://tc39.es/ecma262/#sec-object.defineproperties
1755 +// eslint-disable-next-line es/no-object-defineproperties -- safe
1756 +exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1757 + anObject(O);
1758 + var props = toIndexedObject(Properties);
1759 + var keys = objectKeys(Properties);
1760 + var length = keys.length;
1761 + var index = 0;
1762 + var key;
1763 + while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
1764 + return O;
1765 +};
1766 +
1767 +
1768 +/***/ }),
1769 +
1770 +/***/ "../node_modules/core-js/internals/object-define-property.js":
1771 +/*!*******************************************************************!*\
1772 + !*** ../node_modules/core-js/internals/object-define-property.js ***!
1773 + \*******************************************************************/
1774 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1775 +
1776 +
1777 +var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
1778 +var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "../node_modules/core-js/internals/ie8-dom-define.js");
1779 +var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(/*! ../internals/v8-prototype-define-bug */ "../node_modules/core-js/internals/v8-prototype-define-bug.js");
1780 +var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
1781 +var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ "../node_modules/core-js/internals/to-property-key.js");
1782 +
1783 +var $TypeError = TypeError;
1784 +// eslint-disable-next-line es/no-object-defineproperty -- safe
1785 +var $defineProperty = Object.defineProperty;
1786 +// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1787 +var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1788 +var ENUMERABLE = 'enumerable';
1789 +var CONFIGURABLE = 'configurable';
1790 +var WRITABLE = 'writable';
1791 +
1792 +// `Object.defineProperty` method
1793 +// https://tc39.es/ecma262/#sec-object.defineproperty
1794 +exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
1795 + anObject(O);
1796 + P = toPropertyKey(P);
1797 + anObject(Attributes);
1798 + if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
1799 + var current = $getOwnPropertyDescriptor(O, P);
1800 + if (current && current[WRITABLE]) {
1801 + O[P] = Attributes.value;
1802 + Attributes = {
1803 + configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
1804 + enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
1805 + writable: false
1806 + };
1807 + }
1808 + } return $defineProperty(O, P, Attributes);
1809 +} : $defineProperty : function defineProperty(O, P, Attributes) {
1810 + anObject(O);
1811 + P = toPropertyKey(P);
1812 + anObject(Attributes);
1813 + if (IE8_DOM_DEFINE) try {
1814 + return $defineProperty(O, P, Attributes);
1815 + } catch (error) { /* empty */ }
1816 + if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
1817 + if ('value' in Attributes) O[P] = Attributes.value;
1818 + return O;
1819 +};
1820 +
1821 +
1822 +/***/ }),
1823 +
1824 +/***/ "../node_modules/core-js/internals/object-get-own-property-descriptor.js":
1825 +/*!*******************************************************************************!*\
1826 + !*** ../node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
1827 + \*******************************************************************************/
1828 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1829 +
1830 +
1831 +var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
1832 +var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
1833 +var propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "../node_modules/core-js/internals/object-property-is-enumerable.js");
1834 +var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js");
1835 +var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
1836 +var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ "../node_modules/core-js/internals/to-property-key.js");
1837 +var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
1838 +var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "../node_modules/core-js/internals/ie8-dom-define.js");
1839 +
1840 +// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1841 +var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1842 +
1843 +// `Object.getOwnPropertyDescriptor` method
1844 +// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
1845 +exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
1846 + O = toIndexedObject(O);
1847 + P = toPropertyKey(P);
1848 + if (IE8_DOM_DEFINE) try {
1849 + return $getOwnPropertyDescriptor(O, P);
1850 + } catch (error) { /* empty */ }
1851 + if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
1852 +};
1853 +
1854 +
1855 +/***/ }),
1856 +
1857 +/***/ "../node_modules/core-js/internals/object-get-own-property-names.js":
1858 +/*!**************************************************************************!*\
1859 + !*** ../node_modules/core-js/internals/object-get-own-property-names.js ***!
1860 + \**************************************************************************/
1861 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1862 +
1863 +
1864 +var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "../node_modules/core-js/internals/object-keys-internal.js");
1865 +var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "../node_modules/core-js/internals/enum-bug-keys.js");
1866 +
1867 +var hiddenKeys = enumBugKeys.concat('length', 'prototype');
1868 +
1869 +// `Object.getOwnPropertyNames` method
1870 +// https://tc39.es/ecma262/#sec-object.getownpropertynames
1871 +// eslint-disable-next-line es/no-object-getownpropertynames -- safe
1872 +exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
1873 + return internalObjectKeys(O, hiddenKeys);
1874 +};
1875 +
1876 +
1877 +/***/ }),
1878 +
1879 +/***/ "../node_modules/core-js/internals/object-get-own-property-symbols.js":
1880 +/*!****************************************************************************!*\
1881 + !*** ../node_modules/core-js/internals/object-get-own-property-symbols.js ***!
1882 + \****************************************************************************/
1883 +/***/ ((__unused_webpack_module, exports) => {
1884 +
1885 +
1886 +// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
1887 +exports.f = Object.getOwnPropertySymbols;
1888 +
1889 +
1890 +/***/ }),
1891 +
1892 +/***/ "../node_modules/core-js/internals/object-get-prototype-of.js":
1893 +/*!********************************************************************!*\
1894 + !*** ../node_modules/core-js/internals/object-get-prototype-of.js ***!
1895 + \********************************************************************/
1896 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1897 +
1898 +
1899 +var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
1900 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
1901 +var toObject = __webpack_require__(/*! ../internals/to-object */ "../node_modules/core-js/internals/to-object.js");
1902 +var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../node_modules/core-js/internals/shared-key.js");
1903 +var CORRECT_PROTOTYPE_GETTER = __webpack_require__(/*! ../internals/correct-prototype-getter */ "../node_modules/core-js/internals/correct-prototype-getter.js");
1904 +
1905 +var IE_PROTO = sharedKey('IE_PROTO');
1906 +var $Object = Object;
1907 +var ObjectPrototype = $Object.prototype;
1908 +
1909 +// `Object.getPrototypeOf` method
1910 +// https://tc39.es/ecma262/#sec-object.getprototypeof
1911 +// eslint-disable-next-line es/no-object-getprototypeof -- safe
1912 +module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
1913 + var object = toObject(O);
1914 + if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
1915 + var constructor = object.constructor;
1916 + if (isCallable(constructor) && object instanceof constructor) {
1917 + return constructor.prototype;
1918 + } return object instanceof $Object ? ObjectPrototype : null;
1919 +};
1920 +
1921 +
1922 +/***/ }),
1923 +
1924 +/***/ "../node_modules/core-js/internals/object-is-prototype-of.js":
1925 +/*!*******************************************************************!*\
1926 + !*** ../node_modules/core-js/internals/object-is-prototype-of.js ***!
1927 + \*******************************************************************/
1928 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1929 +
1930 +
1931 +var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
1932 +
1933 +module.exports = uncurryThis({}.isPrototypeOf);
1934 +
1935 +
1936 +/***/ }),
1937 +
1938 +/***/ "../node_modules/core-js/internals/object-keys-internal.js":
1939 +/*!*****************************************************************!*\
1940 + !*** ../node_modules/core-js/internals/object-keys-internal.js ***!
1941 + \*****************************************************************/
1942 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1943 +
1944 +
1945 +var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
1946 +var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
1947 +var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
1948 +var indexOf = (__webpack_require__(/*! ../internals/array-includes */ "../node_modules/core-js/internals/array-includes.js").indexOf);
1949 +var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js");
1950 +
1951 +var push = uncurryThis([].push);
1952 +
1953 +module.exports = function (object, names) {
1954 + var O = toIndexedObject(object);
1955 + var i = 0;
1956 + var result = [];
1957 + var key;
1958 + for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
1959 + // Don't enum bug & hidden keys
1960 + while (names.length > i) if (hasOwn(O, key = names[i++])) {
1961 + ~indexOf(result, key) || push(result, key);
1962 + }
1963 + return result;
1964 +};
1965 +
1966 +
1967 +/***/ }),
1968 +
1969 +/***/ "../node_modules/core-js/internals/object-keys.js":
1970 +/*!********************************************************!*\
1971 + !*** ../node_modules/core-js/internals/object-keys.js ***!
1972 + \********************************************************/
1973 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1974 +
1975 +
1976 +var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "../node_modules/core-js/internals/object-keys-internal.js");
1977 +var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "../node_modules/core-js/internals/enum-bug-keys.js");
1978 +
1979 +// `Object.keys` method
1980 +// https://tc39.es/ecma262/#sec-object.keys
1981 +// eslint-disable-next-line es/no-object-keys -- safe
1982 +module.exports = Object.keys || function keys(O) {
1983 + return internalObjectKeys(O, enumBugKeys);
1984 +};
1985 +
1986 +
1987 +/***/ }),
1988 +
1989 +/***/ "../node_modules/core-js/internals/object-property-is-enumerable.js":
1990 +/*!**************************************************************************!*\
1991 + !*** ../node_modules/core-js/internals/object-property-is-enumerable.js ***!
1992 + \**************************************************************************/
1993 +/***/ ((__unused_webpack_module, exports) => {
1994 +
1995 +
1996 +var $propertyIsEnumerable = {}.propertyIsEnumerable;
1997 +// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1998 +var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1999 +
2000 +// Nashorn ~ JDK8 bug
2001 +var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
2002 +
2003 +// `Object.prototype.propertyIsEnumerable` method implementation
2004 +// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
2005 +exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
2006 + var descriptor = getOwnPropertyDescriptor(this, V);
2007 + return !!descriptor && descriptor.enumerable;
2008 +} : $propertyIsEnumerable;
2009 +
2010 +
2011 +/***/ }),
2012 +
2013 +/***/ "../node_modules/core-js/internals/ordinary-to-primitive.js":
2014 +/*!******************************************************************!*\
2015 + !*** ../node_modules/core-js/internals/ordinary-to-primitive.js ***!
2016 + \******************************************************************/
2017 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2018 +
2019 +
2020 +var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
2021 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
2022 +var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
2023 +
2024 +var $TypeError = TypeError;
2025 +
2026 +// `OrdinaryToPrimitive` abstract operation
2027 +// https://tc39.es/ecma262/#sec-ordinarytoprimitive
2028 +module.exports = function (input, pref) {
2029 + var fn, val;
2030 + if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
2031 + if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
2032 + if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
2033 + throw new $TypeError("Can't convert object to primitive value");
2034 +};
2035 +
2036 +
2037 +/***/ }),
2038 +
2039 +/***/ "../node_modules/core-js/internals/own-keys.js":
2040 +/*!*****************************************************!*\
2041 + !*** ../node_modules/core-js/internals/own-keys.js ***!
2042 + \*****************************************************/
2043 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2044 +
2045 +
2046 +var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js");
2047 +var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
2048 +var getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "../node_modules/core-js/internals/object-get-own-property-names.js");
2049 +var getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "../node_modules/core-js/internals/object-get-own-property-symbols.js");
2050 +var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
2051 +
2052 +var concat = uncurryThis([].concat);
2053 +
2054 +// all object keys, includes non-enumerable and symbols
2055 +module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
2056 + var keys = getOwnPropertyNamesModule.f(anObject(it));
2057 + var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
2058 + return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
2059 +};
2060 +
2061 +
2062 +/***/ }),
2063 +
2064 +/***/ "../node_modules/core-js/internals/require-object-coercible.js":
2065 +/*!*********************************************************************!*\
2066 + !*** ../node_modules/core-js/internals/require-object-coercible.js ***!
2067 + \*********************************************************************/
2068 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2069 +
2070 +
2071 +var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ "../node_modules/core-js/internals/is-null-or-undefined.js");
2072 +
2073 +var $TypeError = TypeError;
2074 +
2075 +// `RequireObjectCoercible` abstract operation
2076 +// https://tc39.es/ecma262/#sec-requireobjectcoercible
2077 +module.exports = function (it) {
2078 + if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
2079 + return it;
2080 +};
2081 +
2082 +
2083 +/***/ }),
2084 +
2085 +/***/ "../node_modules/core-js/internals/shared-key.js":
2086 +/*!*******************************************************!*\
2087 + !*** ../node_modules/core-js/internals/shared-key.js ***!
2088 + \*******************************************************/
2089 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2090 +
2091 +
2092 +var shared = __webpack_require__(/*! ../internals/shared */ "../node_modules/core-js/internals/shared.js");
2093 +var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js");
2094 +
2095 +var keys = shared('keys');
2096 +
2097 +module.exports = function (key) {
2098 + return keys[key] || (keys[key] = uid(key));
2099 +};
2100 +
2101 +
2102 +/***/ }),
2103 +
2104 +/***/ "../node_modules/core-js/internals/shared-store.js":
2105 +/*!*********************************************************!*\
2106 + !*** ../node_modules/core-js/internals/shared-store.js ***!
2107 + \*********************************************************/
2108 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2109 +
2110 +
2111 +var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
2112 +var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2113 +var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
2114 +
2115 +var SHARED = '__core-js_shared__';
2116 +var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
2117 +
2118 +(store.versions || (store.versions = [])).push({
2119 + version: '3.46.0',
2120 + mode: IS_PURE ? 'pure' : 'global',
2121 + copyright: '© 2014-2025 Denis Pushkarev (zloirock.ru), 2025 CoreJS Company (core-js.io)',
2122 + license: 'https://github.com/zloirock/core-js/blob/v3.46.0/LICENSE',
2123 + source: 'https://github.com/zloirock/core-js'
2124 +});
2125 +
2126 +
2127 +/***/ }),
2128 +
2129 +/***/ "../node_modules/core-js/internals/shared.js":
2130 +/*!***************************************************!*\
2131 + !*** ../node_modules/core-js/internals/shared.js ***!
2132 + \***************************************************/
2133 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2134 +
2135 +
2136 +var store = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
2137 +
2138 +module.exports = function (key, value) {
2139 + return store[key] || (store[key] = value || {});
2140 +};
2141 +
2142 +
2143 +/***/ }),
2144 +
2145 +/***/ "../node_modules/core-js/internals/symbol-constructor-detection.js":
2146 +/*!*************************************************************************!*\
2147 + !*** ../node_modules/core-js/internals/symbol-constructor-detection.js ***!
2148 + \*************************************************************************/
2149 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2150 +
2151 +
2152 +/* eslint-disable es/no-symbol -- required for testing */
2153 +var V8_VERSION = __webpack_require__(/*! ../internals/environment-v8-version */ "../node_modules/core-js/internals/environment-v8-version.js");
2154 +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
2155 +var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2156 +
2157 +var $String = globalThis.String;
2158 +
2159 +// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
2160 +module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
2161 + var symbol = Symbol('symbol detection');
2162 + // Chrome 38 Symbol has incorrect toString conversion
2163 + // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
2164 + // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
2165 + // of course, fail.
2166 + return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
2167 + // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
2168 + !Symbol.sham && V8_VERSION && V8_VERSION < 41;
2169 +});
2170 +
2171 +
2172 +/***/ }),
2173 +
2174 +/***/ "../node_modules/core-js/internals/to-absolute-index.js":
2175 +/*!**************************************************************!*\
2176 + !*** ../node_modules/core-js/internals/to-absolute-index.js ***!
2177 + \**************************************************************/
2178 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2179 +
2180 +
2181 +var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../node_modules/core-js/internals/to-integer-or-infinity.js");
2182 +
2183 +var max = Math.max;
2184 +var min = Math.min;
2185 +
2186 +// Helper for a popular repeating case of the spec:
2187 +// Let integer be ? ToInteger(index).
2188 +// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
2189 +module.exports = function (index, length) {
2190 + var integer = toIntegerOrInfinity(index);
2191 + return integer < 0 ? max(integer + length, 0) : min(integer, length);
2192 +};
2193 +
2194 +
2195 +/***/ }),
2196 +
2197 +/***/ "../node_modules/core-js/internals/to-indexed-object.js":
2198 +/*!**************************************************************!*\
2199 + !*** ../node_modules/core-js/internals/to-indexed-object.js ***!
2200 + \**************************************************************/
2201 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2202 +
2203 +
2204 +// toObject with fallback for non-array-like ES3 strings
2205 +var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "../node_modules/core-js/internals/indexed-object.js");
2206 +var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "../node_modules/core-js/internals/require-object-coercible.js");
2207 +
2208 +module.exports = function (it) {
2209 + return IndexedObject(requireObjectCoercible(it));
2210 +};
2211 +
2212 +
2213 +/***/ }),
2214 +
2215 +/***/ "../node_modules/core-js/internals/to-integer-or-infinity.js":
2216 +/*!*******************************************************************!*\
2217 + !*** ../node_modules/core-js/internals/to-integer-or-infinity.js ***!
2218 + \*******************************************************************/
2219 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2220 +
2221 +
2222 +var trunc = __webpack_require__(/*! ../internals/math-trunc */ "../node_modules/core-js/internals/math-trunc.js");
2223 +
2224 +// `ToIntegerOrInfinity` abstract operation
2225 +// https://tc39.es/ecma262/#sec-tointegerorinfinity
2226 +module.exports = function (argument) {
2227 + var number = +argument;
2228 + // eslint-disable-next-line no-self-compare -- NaN check
2229 + return number !== number || number === 0 ? 0 : trunc(number);
2230 +};
2231 +
2232 +
2233 +/***/ }),
2234 +
2235 +/***/ "../node_modules/core-js/internals/to-length.js":
2236 +/*!******************************************************!*\
2237 + !*** ../node_modules/core-js/internals/to-length.js ***!
2238 + \******************************************************/
2239 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2240 +
2241 +
2242 +var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../node_modules/core-js/internals/to-integer-or-infinity.js");
2243 +
2244 +var min = Math.min;
2245 +
2246 +// `ToLength` abstract operation
2247 +// https://tc39.es/ecma262/#sec-tolength
2248 +module.exports = function (argument) {
2249 + var len = toIntegerOrInfinity(argument);
2250 + return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
2251 +};
2252 +
2253 +
2254 +/***/ }),
2255 +
2256 +/***/ "../node_modules/core-js/internals/to-object.js":
2257 +/*!******************************************************!*\
2258 + !*** ../node_modules/core-js/internals/to-object.js ***!
2259 + \******************************************************/
2260 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2261 +
2262 +
2263 +var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "../node_modules/core-js/internals/require-object-coercible.js");
2264 +
2265 +var $Object = Object;
2266 +
2267 +// `ToObject` abstract operation
2268 +// https://tc39.es/ecma262/#sec-toobject
2269 +module.exports = function (argument) {
2270 + return $Object(requireObjectCoercible(argument));
2271 +};
2272 +
2273 +
2274 +/***/ }),
2275 +
2276 +/***/ "../node_modules/core-js/internals/to-primitive.js":
2277 +/*!*********************************************************!*\
2278 + !*** ../node_modules/core-js/internals/to-primitive.js ***!
2279 + \*********************************************************/
2280 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2281 +
2282 +
2283 +var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
2284 +var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
2285 +var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../node_modules/core-js/internals/is-symbol.js");
2286 +var getMethod = __webpack_require__(/*! ../internals/get-method */ "../node_modules/core-js/internals/get-method.js");
2287 +var ordinaryToPrimitive = __webpack_require__(/*! ../internals/ordinary-to-primitive */ "../node_modules/core-js/internals/ordinary-to-primitive.js");
2288 +var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
2289 +
2290 +var $TypeError = TypeError;
2291 +var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
2292 +
2293 +// `ToPrimitive` abstract operation
2294 +// https://tc39.es/ecma262/#sec-toprimitive
2295 +module.exports = function (input, pref) {
2296 + if (!isObject(input) || isSymbol(input)) return input;
2297 + var exoticToPrim = getMethod(input, TO_PRIMITIVE);
2298 + var result;
2299 + if (exoticToPrim) {
2300 + if (pref === undefined) pref = 'default';
2301 + result = call(exoticToPrim, input, pref);
2302 + if (!isObject(result) || isSymbol(result)) return result;
2303 + throw new $TypeError("Can't convert object to primitive value");
2304 + }
2305 + if (pref === undefined) pref = 'number';
2306 + return ordinaryToPrimitive(input, pref);
2307 +};
2308 +
2309 +
2310 +/***/ }),
2311 +
2312 +/***/ "../node_modules/core-js/internals/to-property-key.js":
2313 +/*!************************************************************!*\
2314 + !*** ../node_modules/core-js/internals/to-property-key.js ***!
2315 + \************************************************************/
2316 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2317 +
2318 +
2319 +var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "../node_modules/core-js/internals/to-primitive.js");
2320 +var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../node_modules/core-js/internals/is-symbol.js");
2321 +
2322 +// `ToPropertyKey` abstract operation
2323 +// https://tc39.es/ecma262/#sec-topropertykey
2324 +module.exports = function (argument) {
2325 + var key = toPrimitive(argument, 'string');
2326 + return isSymbol(key) ? key : key + '';
2327 +};
2328 +
2329 +
2330 +/***/ }),
2331 +
2332 +/***/ "../node_modules/core-js/internals/try-to-string.js":
2333 +/*!**********************************************************!*\
2334 + !*** ../node_modules/core-js/internals/try-to-string.js ***!
2335 + \**********************************************************/
2336 +/***/ ((module) => {
2337 +
2338 +
2339 +var $String = String;
2340 +
2341 +module.exports = function (argument) {
2342 + try {
2343 + return $String(argument);
2344 + } catch (error) {
2345 + return 'Object';
2346 + }
2347 +};
2348 +
2349 +
2350 +/***/ }),
2351 +
2352 +/***/ "../node_modules/core-js/internals/uid.js":
2353 +/*!************************************************!*\
2354 + !*** ../node_modules/core-js/internals/uid.js ***!
2355 + \************************************************/
2356 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2357 +
2358 +
2359 +var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
2360 +
2361 +var id = 0;
2362 +var postfix = Math.random();
2363 +var toString = uncurryThis(1.1.toString);
2364 +
2365 +module.exports = function (key) {
2366 + return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
2367 +};
2368 +
2369 +
2370 +/***/ }),
2371 +
2372 +/***/ "../node_modules/core-js/internals/use-symbol-as-uid.js":
2373 +/*!**************************************************************!*\
2374 + !*** ../node_modules/core-js/internals/use-symbol-as-uid.js ***!
2375 + \**************************************************************/
2376 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2377 +
2378 +
2379 +/* eslint-disable es/no-symbol -- required for testing */
2380 +var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
2381 +
2382 +module.exports = NATIVE_SYMBOL &&
2383 + !Symbol.sham &&
2384 + typeof Symbol.iterator == 'symbol';
2385 +
2386 +
2387 +/***/ }),
2388 +
2389 +/***/ "../node_modules/core-js/internals/v8-prototype-define-bug.js":
2390 +/*!********************************************************************!*\
2391 + !*** ../node_modules/core-js/internals/v8-prototype-define-bug.js ***!
2392 + \********************************************************************/
2393 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2394 +
2395 +
2396 +var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
2397 +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
2398 +
2399 +// V8 ~ Chrome 36-
2400 +// https://bugs.chromium.org/p/v8/issues/detail?id=3334
2401 +module.exports = DESCRIPTORS && fails(function () {
2402 + // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2403 + return Object.defineProperty(function () { /* empty */ }, 'prototype', {
2404 + value: 42,
2405 + writable: false
2406 + }).prototype !== 42;
2407 +});
2408 +
2409 +
2410 +/***/ }),
2411 +
2412 +/***/ "../node_modules/core-js/internals/weak-map-basic-detection.js":
2413 +/*!*********************************************************************!*\
2414 + !*** ../node_modules/core-js/internals/weak-map-basic-detection.js ***!
2415 + \*********************************************************************/
2416 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2417 +
2418 +
2419 +var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2420 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
2421 +
2422 +var WeakMap = globalThis.WeakMap;
2423 +
2424 +module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
2425 +
2426 +
2427 +/***/ }),
2428 +
2429 +/***/ "../node_modules/core-js/internals/well-known-symbol.js":
2430 +/*!**************************************************************!*\
2431 + !*** ../node_modules/core-js/internals/well-known-symbol.js ***!
2432 + \**************************************************************/
2433 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2434 +
2435 +
2436 +var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2437 +var shared = __webpack_require__(/*! ../internals/shared */ "../node_modules/core-js/internals/shared.js");
2438 +var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
2439 +var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js");
2440 +var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
2441 +var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../node_modules/core-js/internals/use-symbol-as-uid.js");
2442 +
2443 +var Symbol = globalThis.Symbol;
2444 +var WellKnownSymbolsStore = shared('wks');
2445 +var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
2446 +
2447 +module.exports = function (name) {
2448 + if (!hasOwn(WellKnownSymbolsStore, name)) {
2449 + WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)
2450 + ? Symbol[name]
2451 + : createWellKnownSymbol('Symbol.' + name);
2452 + } return WellKnownSymbolsStore[name];
2453 +};
2454 +
2455 +
2456 +/***/ }),
2457 +
2458 +/***/ "../node_modules/core-js/modules/es.iterator.constructor.js":
2459 +/*!******************************************************************!*\
2460 + !*** ../node_modules/core-js/modules/es.iterator.constructor.js ***!
2461 + \******************************************************************/
2462 +/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
2463 +
2464 +
2465 +var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js");
2466 +var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2467 +var anInstance = __webpack_require__(/*! ../internals/an-instance */ "../node_modules/core-js/internals/an-instance.js");
2468 +var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
2469 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
2470 +var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "../node_modules/core-js/internals/object-get-prototype-of.js");
2471 +var defineBuiltInAccessor = __webpack_require__(/*! ../internals/define-built-in-accessor */ "../node_modules/core-js/internals/define-built-in-accessor.js");
2472 +var createProperty = __webpack_require__(/*! ../internals/create-property */ "../node_modules/core-js/internals/create-property.js");
2473 +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
2474 +var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
2475 +var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
2476 +var IteratorPrototype = (__webpack_require__(/*! ../internals/iterators-core */ "../node_modules/core-js/internals/iterators-core.js").IteratorPrototype);
2477 +var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
2478 +var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
2479 +
2480 +var CONSTRUCTOR = 'constructor';
2481 +var ITERATOR = 'Iterator';
2482 +var TO_STRING_TAG = wellKnownSymbol('toStringTag');
2483 +
2484 +var $TypeError = TypeError;
2485 +var NativeIterator = globalThis[ITERATOR];
2486 +
2487 +// FF56- have non-standard global helper `Iterator`
2488 +var FORCED = IS_PURE
2489 + || !isCallable(NativeIterator)
2490 + || NativeIterator.prototype !== IteratorPrototype
2491 + // FF44- non-standard `Iterator` passes previous tests
2492 + || !fails(function () { NativeIterator({}); });
2493 +
2494 +var IteratorConstructor = function Iterator() {
2495 + anInstance(this, IteratorPrototype);
2496 + if (getPrototypeOf(this) === IteratorPrototype) throw new $TypeError('Abstract class Iterator not directly constructable');
2497 +};
2498 +
2499 +var defineIteratorPrototypeAccessor = function (key, value) {
2500 + if (DESCRIPTORS) {
2501 + defineBuiltInAccessor(IteratorPrototype, key, {
2502 + configurable: true,
2503 + get: function () {
2504 + return value;
2505 + },
2506 + set: function (replacement) {
2507 + anObject(this);
2508 + if (this === IteratorPrototype) throw new $TypeError("You can't redefine this property");
2509 + if (hasOwn(this, key)) this[key] = replacement;
2510 + else createProperty(this, key, replacement);
2511 + }
2512 + });
2513 + } else IteratorPrototype[key] = value;
2514 +};
2515 +
2516 +if (!hasOwn(IteratorPrototype, TO_STRING_TAG)) defineIteratorPrototypeAccessor(TO_STRING_TAG, ITERATOR);
2517 +
2518 +if (FORCED || !hasOwn(IteratorPrototype, CONSTRUCTOR) || IteratorPrototype[CONSTRUCTOR] === Object) {
2519 + defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
2520 +}
2521 +
2522 +IteratorConstructor.prototype = IteratorPrototype;
2523 +
2524 +// `Iterator` constructor
2525 +// https://tc39.es/ecma262/#sec-iterator
2526 +$({ global: true, constructor: true, forced: FORCED }, {
2527 + Iterator: IteratorConstructor
2528 +});
2529 +
2530 +
2531 +/***/ }),
2532 +
2533 +/***/ "../node_modules/core-js/modules/es.iterator.filter.js":
2534 +/*!*************************************************************!*\
2535 + !*** ../node_modules/core-js/modules/es.iterator.filter.js ***!
2536 + \*************************************************************/
2537 +/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
2538 +
2539 +
2540 +var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js");
2541 +var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
2542 +var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
2543 +var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
2544 +var getIteratorDirect = __webpack_require__(/*! ../internals/get-iterator-direct */ "../node_modules/core-js/internals/get-iterator-direct.js");
2545 +var createIteratorProxy = __webpack_require__(/*! ../internals/iterator-create-proxy */ "../node_modules/core-js/internals/iterator-create-proxy.js");
2546 +var callWithSafeIterationClosing = __webpack_require__(/*! ../internals/call-with-safe-iteration-closing */ "../node_modules/core-js/internals/call-with-safe-iteration-closing.js");
2547 +var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
2548 +var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js");
2549 +var iteratorHelperThrowsOnInvalidIterator = __webpack_require__(/*! ../internals/iterator-helper-throws-on-invalid-iterator */ "../node_modules/core-js/internals/iterator-helper-throws-on-invalid-iterator.js");
2550 +var iteratorHelperWithoutClosingOnEarlyError = __webpack_require__(/*! ../internals/iterator-helper-without-closing-on-early-error */ "../node_modules/core-js/internals/iterator-helper-without-closing-on-early-error.js");
2551 +
2552 +var FILTER_WITHOUT_THROWING_ON_INVALID_ITERATOR = !IS_PURE && !iteratorHelperThrowsOnInvalidIterator('filter', function () { /* empty */ });
2553 +var filterWithoutClosingOnEarlyError = !IS_PURE && !FILTER_WITHOUT_THROWING_ON_INVALID_ITERATOR
2554 + && iteratorHelperWithoutClosingOnEarlyError('filter', TypeError);
2555 +
2556 +var FORCED = IS_PURE || FILTER_WITHOUT_THROWING_ON_INVALID_ITERATOR || filterWithoutClosingOnEarlyError;
2557 +
2558 +var IteratorProxy = createIteratorProxy(function () {
2559 + var iterator = this.iterator;
2560 + var predicate = this.predicate;
2561 + var next = this.next;
2562 + var result, done, value;
2563 + while (true) {
2564 + result = anObject(call(next, iterator));
2565 + done = this.done = !!result.done;
2566 + if (done) return;
2567 + value = result.value;
2568 + if (callWithSafeIterationClosing(iterator, predicate, [value, this.counter++], true)) return value;
2569 + }
2570 +});
2571 +
2572 +// `Iterator.prototype.filter` method
2573 +// https://tc39.es/ecma262/#sec-iterator.prototype.filter
2574 +$({ target: 'Iterator', proto: true, real: true, forced: FORCED }, {
2575 + filter: function filter(predicate) {
2576 + anObject(this);
2577 + try {
2578 + aCallable(predicate);
2579 + } catch (error) {
2580 + iteratorClose(this, 'throw', error);
2581 + }
2582 +
2583 + if (filterWithoutClosingOnEarlyError) return call(filterWithoutClosingOnEarlyError, this, predicate);
2584 +
2585 + return new IteratorProxy(getIteratorDirect(this), {
2586 + predicate: predicate
2587 + });
2588 + }
2589 +});
2590 +
2591 +
2592 +/***/ }),
2593 +
2594 +/***/ "../node_modules/core-js/modules/esnext.iterator.constructor.js":
2595 +/*!**********************************************************************!*\
2596 + !*** ../node_modules/core-js/modules/esnext.iterator.constructor.js ***!
2597 + \**********************************************************************/
2598 +/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
2599 +
2600 +
2601 +// TODO: Remove from `core-js@4`
2602 +__webpack_require__(/*! ../modules/es.iterator.constructor */ "../node_modules/core-js/modules/es.iterator.constructor.js");
2603 +
2604 +
2605 +/***/ }),
2606 +
2607 +/***/ "../node_modules/core-js/modules/esnext.iterator.filter.js":
2608 +/*!*****************************************************************!*\
2609 + !*** ../node_modules/core-js/modules/esnext.iterator.filter.js ***!
2610 + \*****************************************************************/
2611 +/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
2612 +
2613 +
2614 +// TODO: Remove from `core-js@4`
2615 +__webpack_require__(/*! ../modules/es.iterator.filter */ "../node_modules/core-js/modules/es.iterator.filter.js");
2616 +
2617 +
2618 +/***/ }),
2619 +
2620 +/***/ "@elementor/alpinejs":
2621 +/*!***************************************!*\
2622 + !*** external "elementorV2.alpinejs" ***!
2623 + \***************************************/
2624 +/***/ ((module) => {
2625 +
2626 +module.exports = elementorV2.alpinejs;
2627 +
2628 +/***/ }),
2629 +
2630 +/***/ "@elementor/frontend-handlers":
2631 +/*!***********************************************!*\
2632 + !*** external "elementorV2.frontendHandlers" ***!
2633 + \***********************************************/
2634 +/***/ ((module) => {
2635 +
2636 +module.exports = elementorV2.frontendHandlers;
2637 +
2638 +/***/ })
2639 +
2640 +},
2641 +/******/ __webpack_require__ => { // webpackRuntimeModules
2642 +/******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
2643 +/******/ var __webpack_exports__ = (__webpack_exec__("../modules/atomic-widgets/elements/atomic-tabs/handlers/atomic-tabs-handler.js"));
2644 +/******/ }
2645 +]);
1746 2646 //# sourceMappingURL=tabs-handler.js.map