PluginProbe
Elementor Website Builder – more than just a page builder / 3.20.2
Elementor Website Builder – more than just a page builder v3.20.2
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/frontend-modules.js +1386 -1561 4.2.0-beta2 → 3.20.2 View file →
@@ -1,142 +1,7 @@
1 -(self["webpackChunkelementorFrontend"] = self["webpackChunkelementorFrontend"] || []).push([["frontend-modules"],{
1 +/*! elementor - v3.20.0 - 20-03-2024 */
2 +(self["webpackChunkelementor"] = self["webpackChunkelementor"] || []).push([["frontend-modules"],{
2 3
3 -/***/ "../app/modules/import-export-customization/assets/js/shared/registry/base.js":
4 -/*!************************************************************************************!*\
5 - !*** ../app/modules/import-export-customization/assets/js/shared/registry/base.js ***!
6 - \************************************************************************************/
7 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
8 -
9 -"use strict";
10 -
11 -
12 -Object.defineProperty(exports, "__esModule", ({
13 - value: true
14 -}));
15 -exports.BaseRegistry = void 0;
16 -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js");
17 -__webpack_require__(/*! core-js/modules/esnext.iterator.filter.js */ "../node_modules/core-js/modules/esnext.iterator.filter.js");
18 -__webpack_require__(/*! core-js/modules/esnext.iterator.for-each.js */ "../node_modules/core-js/modules/esnext.iterator.for-each.js");
19 -__webpack_require__(/*! core-js/modules/esnext.iterator.map.js */ "../node_modules/core-js/modules/esnext.iterator.map.js");
20 -class BaseRegistry {
21 - constructor() {
22 - this.sections = new Map();
23 - }
24 - register(section) {
25 - if (!section.key || !section.title) {
26 - throw new Error('Template type must have key and title');
27 - }
28 - const existingSection = this.get(section.key);
29 - const formattedSection = existingSection || this.formatSection(section);
30 - if (section.children) {
31 - // If existing section has children, merge them with new children
32 - if (formattedSection.children) {
33 - const existingChildrenMap = new Map(formattedSection.children.map(child => [child.key, child]));
34 -
35 - // Override existing children with new ones and add new children
36 - section.children.forEach(childSection => {
37 - const formattedChild = this.formatSection(childSection);
38 - existingChildrenMap.set(childSection.key, formattedChild);
39 - });
40 - formattedSection.children = Array.from(existingChildrenMap.values());
41 - } else {
42 - formattedSection.children = section.children.map(childSection => this.formatSection(childSection));
43 - }
44 - }
45 - this.sections.set(section.key, formattedSection);
46 - }
47 - formatSection({
48 - children,
49 - ...section
50 - }) {
51 - return {
52 - key: section.key,
53 - title: section.title,
54 - description: section.description || '',
55 - useParentDefault: section.useParentDefault !== false,
56 - getInitialState: section.getInitialState || null,
57 - component: section.component || null,
58 - order: section.order || 10,
59 - isAvailable: section.isAvailable || (() => true),
60 - ...section
61 - };
62 - }
63 - getAll() {
64 - return Array.from(this.sections.values()).filter(type => type.isAvailable()).map(type => {
65 - if (type.children) {
66 - return {
67 - ...type,
68 - children: [...type.children].sort((a, b) => a.order - b.order)
69 - };
70 - }
71 - return type;
72 - }).sort((a, b) => a.order - b.order);
73 - }
74 - get(key) {
75 - return this.sections.get(key);
76 - }
77 -}
78 -exports.BaseRegistry = BaseRegistry;
79 -
80 -/***/ }),
81 -
82 -/***/ "../app/modules/import-export-customization/assets/js/shared/registry/customization-dialogs.js":
83 -/*!*****************************************************************************************************!*\
84 - !*** ../app/modules/import-export-customization/assets/js/shared/registry/customization-dialogs.js ***!
85 - \*****************************************************************************************************/
86 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
87 -
88 -"use strict";
89 -
90 -
91 -Object.defineProperty(exports, "__esModule", ({
92 - value: true
93 -}));
94 -exports.customizationDialogsRegistry = void 0;
95 -var _base = __webpack_require__(/*! ./base */ "../app/modules/import-export-customization/assets/js/shared/registry/base.js");
96 -const customizationDialogsRegistry = exports.customizationDialogsRegistry = new _base.BaseRegistry();
97 -
98 -/***/ }),
99 -
100 -/***/ "../app/modules/import-export-customization/assets/js/shared/utils/template-registry-helpers.js":
101 -/*!******************************************************************************************************!*\
102 - !*** ../app/modules/import-export-customization/assets/js/shared/utils/template-registry-helpers.js ***!
103 - \******************************************************************************************************/
104 -/***/ ((__unused_webpack_module, exports) => {
105 -
106 -"use strict";
107 -
108 -
109 -Object.defineProperty(exports, "__esModule", ({
110 - value: true
111 -}));
112 -exports.createGetInitialState = createGetInitialState;
113 -function createGetInitialState(exportGroup, additionalProps = {}) {
114 - return (data, parentInitialState) => {
115 - let isEnabled = parentInitialState;
116 - const isImport = data.hasOwnProperty('uploadedData');
117 - if (isImport) {
118 - isEnabled = false;
119 - const templates = data.uploadedData.manifest.templates;
120 - const exportGroups = elementorAppConfig?.['import-export-customization']?.exportGroups || {};
121 - for (const templateId in templates) {
122 - const template = templates[templateId];
123 - const templateExportGroup = exportGroups[template.doc_type];
124 - if (templateExportGroup === exportGroup) {
125 - isEnabled = true;
126 - break;
127 - }
128 - }
129 - }
130 - return {
131 - enabled: isEnabled,
132 - ...additionalProps
133 - };
134 - };
135 -}
136 -
137 -/***/ }),
138 -
139 4 /***/ "../assets/dev/js/editor/utils/is-instanceof.js":
140 5 /*!******************************************************!*\
141 6 !*** ../assets/dev/js/editor/utils/is-instanceof.js ***!
142 7 \******************************************************/
@@ -174,9 +39,9 @@
174 39 /***/ "../assets/dev/js/frontend/document.js":
175 40 /*!*********************************************!*\
176 41 !*** ../assets/dev/js/frontend/document.js ***!
177 42 \*********************************************/
178 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
43 +/***/ ((__unused_webpack_module, exports) => {
179 44
180 45 "use strict";
181 46
182 47
@@ -183,10 +48,8 @@
183 48 Object.defineProperty(exports, "__esModule", ({
184 49 value: true
185 50 }));
186 51 exports["default"] = void 0;
187 -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js");
188 -__webpack_require__(/*! core-js/modules/esnext.iterator.find.js */ "../node_modules/core-js/modules/esnext.iterator.find.js");
189 52 class _default extends elementorModules.ViewModule {
190 53 getDefaultSettings() {
191 54 return {
192 55 selectors: {
@@ -237,8 +100,205 @@
237 100 exports["default"] = _default;
238 101
239 102 /***/ }),
240 103
104 +/***/ "../assets/dev/js/frontend/handlers/accessibility/nested-title-keyboard-handler.js":
105 +/*!*****************************************************************************************!*\
106 + !*** ../assets/dev/js/frontend/handlers/accessibility/nested-title-keyboard-handler.js ***!
107 + \*****************************************************************************************/
108 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
109 +
110 +"use strict";
111 +
112 +
113 +var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
114 +Object.defineProperty(exports, "__esModule", ({
115 + value: true
116 +}));
117 +exports["default"] = void 0;
118 +var _base = _interopRequireDefault(__webpack_require__(/*! ../base */ "../assets/dev/js/frontend/handlers/base.js"));
119 +class NestedTitleKeyboardHandler extends _base.default {
120 + __construct(settings) {
121 + super.__construct(settings);
122 + this.directionNext = 'next';
123 + this.directionPrevious = 'previous';
124 + this.focusableElementSelector = 'audio, button, canvas, details, iframe, input, select, summary, textarea, video, [accesskey], [contenteditable], [href], [tabindex]:not([tabindex="-1"])';
125 + }
126 + getDefaultSettings() {
127 + return {
128 + selectors: {
129 + itemTitle: '.e-n-tab-title',
130 + itemContainer: '.e-n-tabs-content > .e-con'
131 + },
132 + ariaAttributes: {
133 + titleStateAttribute: 'aria-selected',
134 + activeTitleSelector: '[aria-selected="true"]'
135 + },
136 + datasets: {
137 + titleIndex: 'data-tab-index'
138 + },
139 + keyDirection: {
140 + ArrowLeft: elementorFrontendConfig.is_rtl ? this.directionNext : this.directionPrevious,
141 + ArrowUp: this.directionPrevious,
142 + ArrowRight: elementorFrontendConfig.is_rtl ? this.directionPrevious : this.directionNext,
143 + ArrowDown: this.directionNext
144 + }
145 + };
146 + }
147 + getDefaultElements() {
148 + const selectors = this.getSettings('selectors');
149 + return {
150 + $itemTitles: this.findElement(selectors.itemTitle),
151 + $itemContainers: this.findElement(selectors.itemContainer),
152 + $focusableContainerElements: this.getFocusableElements(this.findElement(selectors.itemContainer))
153 + };
154 + }
155 + getFocusableElements($elements) {
156 + return $elements.find(this.focusableElementSelector).not('[disabled], [inert]');
157 + }
158 + getKeyDirectionValue(event) {
159 + const direction = this.getSettings('keyDirection')[event.key];
160 + return this.directionNext === direction ? 1 : -1;
161 + }
162 +
163 + /**
164 + * @param {HTMLElement} itemTitleElement
165 + *
166 + * @return {string}
167 + */
168 + getTitleIndex(itemTitleElement) {
169 + const {
170 + titleIndex: indexAttribute
171 + } = this.getSettings('datasets');
172 + return itemTitleElement.getAttribute(indexAttribute);
173 + }
174 +
175 + /**
176 + * @param {string|number} titleIndex
177 + *
178 + * @return {string}
179 + */
180 + getTitleFilterSelector(titleIndex) {
181 + const {
182 + titleIndex: indexAttribute
183 + } = this.getSettings('datasets');
184 + return `[${indexAttribute}="${titleIndex}"]`;
185 + }
186 + getActiveTitleElement() {
187 + const activeTitleFilter = this.getSettings('ariaAttributes').activeTitleSelector;
188 + return this.elements.$itemTitles.filter(activeTitleFilter);
189 + }
190 + onInit() {
191 + super.onInit(...arguments);
192 + }
193 + bindEvents() {
194 + this.elements.$itemTitles.on(this.getTitleEvents());
195 + this.elements.$focusableContainerElements.on(this.getContentElementEvents());
196 + }
197 + unbindEvents() {
198 + this.elements.$itemTitles.off();
199 + this.elements.$itemContainers.children().off();
200 + }
201 + getTitleEvents() {
202 + return {
203 + keydown: this.handleTitleKeyboardNavigation.bind(this)
204 + };
205 + }
206 + getContentElementEvents() {
207 + return {
208 + keydown: this.handleContentElementKeyboardNavigation.bind(this)
209 + };
210 + }
211 + isDirectionKey(event) {
212 + const directionKeys = ['ArrowLeft', 'ArrowRight', 'ArrowUp', 'ArrowDown', 'Home', 'End'];
213 + return directionKeys.includes(event.key);
214 + }
215 + isActivationKey(event) {
216 + const activationKeys = ['Enter', ' '];
217 + return activationKeys.includes(event.key);
218 + }
219 + handleTitleKeyboardNavigation(event) {
220 + if (this.isDirectionKey(event)) {
221 + event.preventDefault();
222 + const currentTitleIndex = parseInt(this.getTitleIndex(event.currentTarget)) || 1,
223 + numberOfTitles = this.elements.$itemTitles.length,
224 + titleIndexUpdated = this.getTitleIndexFocusUpdated(event, currentTitleIndex, numberOfTitles);
225 + this.changeTitleFocus(titleIndexUpdated);
226 + event.stopPropagation();
227 + } else if (this.isActivationKey(event)) {
228 + event.preventDefault();
229 + if (this.handeTitleLinkEnterOrSpaceEvent(event)) {
230 + return;
231 + }
232 + const titleIndex = this.getTitleIndex(event.currentTarget);
233 + elementorFrontend.elements.$window.trigger('elementor/nested-elements/activate-by-keyboard', {
234 + widgetId: this.getID(),
235 + titleIndex
236 + });
237 + } else if ('Escape' === event.key) {
238 + this.handleTitleEscapeKeyEvents(event);
239 + }
240 + }
241 + handeTitleLinkEnterOrSpaceEvent(event) {
242 + const isLinkElement = 'a' === event?.currentTarget?.tagName?.toLowerCase();
243 + if (!elementorFrontend.isEditMode() && isLinkElement) {
244 + event?.currentTarget?.click();
245 + event.stopPropagation();
246 + }
247 + return isLinkElement;
248 + }
249 + getTitleIndexFocusUpdated(event, currentTitleIndex, numberOfTitles) {
250 + let titleIndexUpdated = 0;
251 + switch (event.key) {
252 + case 'Home':
253 + titleIndexUpdated = 1;
254 + break;
255 + case 'End':
256 + titleIndexUpdated = numberOfTitles;
257 + break;
258 + default:
259 + const directionValue = this.getKeyDirectionValue(event),
260 + isEndReached = numberOfTitles < currentTitleIndex + directionValue,
261 + isStartReached = 0 === currentTitleIndex + directionValue;
262 + if (isEndReached) {
263 + titleIndexUpdated = 1;
264 + } else if (isStartReached) {
265 + titleIndexUpdated = numberOfTitles;
266 + } else {
267 + titleIndexUpdated = currentTitleIndex + directionValue;
268 + }
269 + }
270 + return titleIndexUpdated;
271 + }
272 + changeTitleFocus(titleIndexUpdated) {
273 + const $newTitle = this.elements.$itemTitles.filter(this.getTitleFilterSelector(titleIndexUpdated));
274 + this.setTitleTabindex(titleIndexUpdated);
275 + $newTitle.trigger('focus');
276 + }
277 + setTitleTabindex(titleIndex) {
278 + this.elements.$itemTitles.attr('tabindex', '-1');
279 + const $newTitle = this.elements.$itemTitles.filter(this.getTitleFilterSelector(titleIndex));
280 + $newTitle.attr('tabindex', '0');
281 + }
282 + handleTitleEscapeKeyEvents() {}
283 + handleContentElementKeyboardNavigation(event) {
284 + if ('Tab' === event.key && !event.shiftKey) {
285 + this.handleContentElementTabEvents(event);
286 + } else if ('Escape' === event.key) {
287 + event.preventDefault();
288 + event.stopPropagation();
289 + this.handleContentElementEscapeEvents(event);
290 + }
291 + }
292 + handleContentElementEscapeEvents() {
293 + this.getActiveTitleElement().trigger('focus');
294 + }
295 + handleContentElementTabEvents() {}
296 +}
297 +exports["default"] = NestedTitleKeyboardHandler;
298 +
299 +/***/ }),
300 +
241 301 /***/ "../assets/dev/js/frontend/handlers/base-carousel.js":
242 302 /*!***********************************************************!*\
243 303 !*** ../assets/dev/js/frontend/handlers/base-carousel.js ***!
244 304 \***********************************************************/
@@ -251,17 +311,14 @@
251 311 Object.defineProperty(exports, "__esModule", ({
252 312 value: true
253 313 }));
254 314 exports["default"] = void 0;
255 -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js");
256 -__webpack_require__(/*! core-js/modules/esnext.iterator.find.js */ "../node_modules/core-js/modules/esnext.iterator.find.js");
257 -__webpack_require__(/*! core-js/modules/esnext.iterator.for-each.js */ "../node_modules/core-js/modules/esnext.iterator.for-each.js");
258 315 var _baseSwiper = _interopRequireDefault(__webpack_require__(/*! ./base-swiper */ "../assets/dev/js/frontend/handlers/base-swiper.js"));
259 316 class CarouselHandlerBase extends _baseSwiper.default {
260 317 getDefaultSettings() {
261 318 return {
262 319 selectors: {
263 - carousel: '.swiper',
320 + carousel: `.${elementorFrontend.config.swiperClass}`,
264 321 swiperWrapper: '.swiper-wrapper',
265 322 slideContent: '.swiper-slide',
266 323 swiperArrow: '.elementor-swiper-button',
267 324 paginationWrapper: '.swiper-pagination',
@@ -344,9 +401,9 @@
344 401 el: `.elementor-element-${this.getID()} .swiper-pagination`,
345 402 type: !!elementSettings.pagination ? elementSettings.pagination : 'bullets',
346 403 clickable: true,
347 404 renderBullet: (index, classname) => {
348 - return `<span class="${classname}" role="button" tabindex="0" data-bullet-index="${index}" aria-label="${elementorFrontend.config.i18n.a11yCarouselPaginationBulletMessage} ${index + 1}"></span>`;
405 + return `<span class="${classname}" data-bullet-index="${index}" aria-label="${elementorFrontend.config.i18n.a11yCarouselPaginationBulletMessage} ${index + 1}"></span>`;
349 406 }
350 407 };
351 408 }
352 409 if ('yes' === elementSettings.lazyload) {
@@ -362,14 +419,17 @@
362 419 firstSlideMessage: elementorFrontend.config.i18n.a11yCarouselFirstSlideMessage,
363 420 lastSlideMessage: elementorFrontend.config.i18n.a11yCarouselLastSlideMessage
364 421 };
365 422 swiperOptions.on = {
423 + slideChangeTransitionEnd: () => {
424 + this.a11ySetSlideAriaHidden();
425 + },
366 426 slideChange: () => {
367 427 this.a11ySetPaginationTabindex();
368 428 this.handleElementHandlers();
369 - this.a11ySetSlideAriaHidden();
370 429 },
371 430 init: () => {
431 + this.a11ySetWidgetAriaDetails();
372 432 this.a11ySetPaginationTabindex();
373 433 this.a11ySetSlideAriaHidden('initialisation');
374 434 }
375 435 };
@@ -405,25 +465,22 @@
405 465 }
406 466 addClassToSwiperContainer(className) {
407 467 this.getDefaultElements().$swiperContainer[0].classList.add(className);
408 468 }
409 - async onInit(...args) {
410 - super.onInit(...args);
469 + async onInit() {
470 + super.onInit(...arguments);
411 471 if (!this.elements.$swiperContainer.length || 2 > this.elements.$slides.length) {
412 472 return;
413 473 }
414 - await this.initSwiper();
415 - const elementSettings = this.getElementSettings();
416 - if ('yes' === elementSettings.pause_on_hover) {
417 - this.togglePauseOnHover(true);
418 - }
419 - }
420 - async initSwiper() {
421 474 const Swiper = elementorFrontend.utils.swiper;
422 475 this.swiper = await new Swiper(this.elements.$swiperContainer, this.getSwiperSettings());
423 476
424 477 // Expose the swiper instance in the frontend
425 478 this.elements.$swiperContainer.data('swiper', this.swiper);
479 + const elementSettings = this.getElementSettings();
480 + if ('yes' === elementSettings.pause_on_hover) {
481 + this.togglePauseOnHover(true);
482 + }
426 483 }
427 484 bindEvents() {
428 485 this.elements.$swiperArrows.on('keydown', this.onDirectionArrowKeydown.bind(this));
429 486 this.elements.$paginationWrapper.on('keydown', '.swiper-pagination-bullet', this.onDirectionArrowKeydown.bind(this));
@@ -479,8 +536,9 @@
479 536 speed: 'speed',
480 537 arrows_position: 'arrows_position' // Not a Swiper setting.
481 538 };
482 539 }
540 +
483 541 onElementChange(propertyName) {
484 542 if (0 === propertyName.indexOf('image_spacing_custom')) {
485 543 this.updateSpaceBetween(propertyName);
486 544 return;
@@ -500,11 +558,11 @@
500 558 if ('activeItemIndex' === propertyName) {
501 559 this.swiper.slideToLoop(this.getEditSettings('activeItemIndex') - 1);
502 560 }
503 561 }
504 - getSpaceBetween(device = null) {
505 - const responsiveControlValue = elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'image_spacing_custom', 'size', device);
506 - return Number(responsiveControlValue) || 0;
562 + getSpaceBetween() {
563 + let device = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
564 + return elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'image_spacing_custom', 'size', device) || 0;
507 565 }
508 566 updateSpaceBetween(propertyName) {
509 567 const deviceMatch = propertyName.match('image_spacing_custom_(.*)'),
510 568 device = deviceMatch ? deviceMatch[1] : 'desktop',
@@ -514,15 +572,21 @@
514 572 }
515 573 this.swiper.params.spaceBetween = newSpaceBetween;
516 574 this.swiper.update();
517 575 }
518 - getPaginationBullets(type = 'array') {
576 + getPaginationBullets() {
577 + let type = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'array';
519 578 const paginationBullets = this.$element.find(this.getSettings('selectors').paginationBullet);
520 579 return 'array' === type ? Array.from(paginationBullets) : paginationBullets;
521 580 }
581 + a11ySetWidgetAriaDetails() {
582 + const $widget = this.$element;
583 + $widget.attr('aria-roledescription', 'carousel');
584 + $widget.attr('aria-label', elementorFrontend.config.i18n.a11yCarouselWrapperAriaLabel);
585 + }
522 586 a11ySetPaginationTabindex() {
523 - const bulletClass = this.swiper?.params?.pagination.bulletClass,
524 - activeBulletClass = this.swiper?.params?.pagination.bulletActiveClass;
587 + const bulletClass = this.swiper?.params.pagination.bulletClass,
588 + activeBulletClass = this.swiper?.params.pagination.bulletActiveClass;
525 589 this.getPaginationBullets().forEach(bullet => {
526 590 if (!bullet.classList?.contains(activeBulletClass)) {
527 591 bullet.removeAttribute('tabindex');
528 592 }
@@ -538,9 +602,10 @@
538 602 transformValue = transformValue.split(',');
539 603 transformValue = parseInt(transformValue[0].replace('px', ''));
540 604 return !!transformValue ? transformValue : 0;
541 605 }
542 - a11ySetSlideAriaHidden(status = '') {
606 + a11ySetSlideAriaHidden() {
607 + let status = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
543 608 const currentIndex = 'initialisation' === status ? 0 : this.swiper?.activeIndex;
544 609 if ('number' !== typeof currentIndex) {
545 610 return;
546 611 }
@@ -626,18 +691,13 @@
626 691 /***/ "../assets/dev/js/frontend/handlers/base.js":
627 692 /*!**************************************************!*\
628 693 !*** ../assets/dev/js/frontend/handlers/base.js ***!
629 694 \**************************************************/
630 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
695 +/***/ ((module) => {
631 696
632 697 "use strict";
633 698
634 699
635 -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js");
636 -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js");
637 -__webpack_require__(/*! core-js/modules/esnext.iterator.filter.js */ "../node_modules/core-js/modules/esnext.iterator.filter.js");
638 -__webpack_require__(/*! core-js/modules/esnext.iterator.find.js */ "../node_modules/core-js/modules/esnext.iterator.find.js");
639 -__webpack_require__(/*! core-js/modules/esnext.iterator.for-each.js */ "../node_modules/core-js/modules/esnext.iterator.for-each.js");
640 700 module.exports = elementorModules.ViewModule.extend({
641 701 $element: null,
642 702 editorListeners: null,
643 703 onElementChange: null,
@@ -842,10 +902,8 @@
842 902 Object.defineProperty(exports, "__esModule", ({
843 903 value: true
844 904 }));
845 905 exports["default"] = void 0;
846 -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js");
847 -__webpack_require__(/*! core-js/modules/esnext.iterator.find.js */ "../node_modules/core-js/modules/esnext.iterator.find.js");
848 906 var _base = _interopRequireDefault(__webpack_require__(/*! ./base */ "../assets/dev/js/frontend/handlers/base.js"));
849 907 class StretchedElement extends _base.default {
850 908 getStretchedClass() {
851 909 return 'e-stretched';
@@ -874,9 +932,10 @@
874 932 }
875 933 isActive(settings) {
876 934 return elementorFrontend.isEditMode() || settings.$element.hasClass(this.getStretchedClass());
877 935 }
878 - getStretchElementForConfig(childSelector = null) {
936 + getStretchElementForConfig() {
937 + let childSelector = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
879 938 if (childSelector) {
880 939 return this.$element.find(childSelector);
881 940 }
882 941 return this.$element;
@@ -905,14 +964,14 @@
905 964 return;
906 965 }
907 966 this.stretchElement.stretch();
908 967 }
909 - onInit(...args) {
968 + onInit() {
910 969 if (!this.isActive(this.getSettings())) {
911 970 return;
912 971 }
913 972 this.initStretch();
914 - super.onInit(...args);
973 + super.onInit(...arguments);
915 974 this.stretch();
916 975 }
917 976 onElementChange(propertyName) {
918 977 const stretchSettingName = this.getStretchSettingName();
@@ -949,8 +1008,11 @@
949 1008 var _stretchedElement = _interopRequireDefault(__webpack_require__(/*! ./handlers/stretched-element */ "../assets/dev/js/frontend/handlers/stretched-element.js"));
950 1009 var _base = _interopRequireDefault(__webpack_require__(/*! ./handlers/base */ "../assets/dev/js/frontend/handlers/base.js"));
951 1010 var _baseSwiper = _interopRequireDefault(__webpack_require__(/*! ./handlers/base-swiper */ "../assets/dev/js/frontend/handlers/base-swiper.js"));
952 1011 var _baseCarousel = _interopRequireDefault(__webpack_require__(/*! ./handlers/base-carousel */ "../assets/dev/js/frontend/handlers/base-carousel.js"));
1012 +var _nestedTabs = _interopRequireDefault(__webpack_require__(/*! elementor/modules/nested-tabs/assets/js/frontend/handlers/nested-tabs */ "../modules/nested-tabs/assets/js/frontend/handlers/nested-tabs.js"));
1013 +var _nestedAccordion = _interopRequireDefault(__webpack_require__(/*! elementor/modules/nested-accordion/assets/js/frontend/handlers/nested-accordion */ "../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion.js"));
1014 +var _nestedTitleKeyboardHandler = _interopRequireDefault(__webpack_require__(/*! ./handlers/accessibility/nested-title-keyboard-handler */ "../assets/dev/js/frontend/handlers/accessibility/nested-title-keyboard-handler.js"));
953 1015 _modules.default.frontend = {
954 1016 Document: _document.default,
955 1017 tools: {
956 1018 StretchElement: _stretchElement.default
@@ -958,9 +1020,12 @@
958 1020 handlers: {
959 1021 Base: _base.default,
960 1022 StretchedElement: _stretchedElement.default,
961 1023 SwiperBase: _baseSwiper.default,
962 - CarouselBase: _baseCarousel.default
1024 + CarouselBase: _baseCarousel.default,
1025 + NestedTabs: _nestedTabs.default,
1026 + NestedAccordion: _nestedAccordion.default,
1027 + NestedTitleKeyboardHandler: _nestedTitleKeyboardHandler.default
963 1028 }
964 1029 };
965 1030
966 1031 /***/ }),
@@ -1075,8 +1140,102 @@
1075 1140 });
1076 1141
1077 1142 /***/ }),
1078 1143
1144 +/***/ "../assets/dev/js/frontend/utils/flex-horizontal-scroll.js":
1145 +/*!*****************************************************************!*\
1146 + !*** ../assets/dev/js/frontend/utils/flex-horizontal-scroll.js ***!
1147 + \*****************************************************************/
1148 +/***/ ((__unused_webpack_module, exports) => {
1149 +
1150 +"use strict";
1151 +
1152 +
1153 +Object.defineProperty(exports, "__esModule", ({
1154 + value: true
1155 +}));
1156 +exports.changeScrollStatus = changeScrollStatus;
1157 +exports.setHorizontalScrollAlignment = setHorizontalScrollAlignment;
1158 +exports.setHorizontalTitleScrollValues = setHorizontalTitleScrollValues;
1159 +function changeScrollStatus(element, event) {
1160 + if ('mousedown' === event.type) {
1161 + element.classList.add('e-scroll');
1162 + element.dataset.pageX = event.pageX;
1163 + } else {
1164 + element.classList.remove('e-scroll', 'e-scroll-active');
1165 + element.dataset.pageX = '';
1166 + }
1167 +}
1168 +
1169 +// This function was written using this example https://codepen.io/thenutz/pen/VwYeYEE.
1170 +function setHorizontalTitleScrollValues(element, horizontalScrollStatus, event) {
1171 + const isActiveScroll = element.classList.contains('e-scroll'),
1172 + isHorizontalScrollActive = 'enable' === horizontalScrollStatus,
1173 + headingContentIsWiderThanWrapper = element.scrollWidth > element.clientWidth;
1174 + if (!isActiveScroll || !isHorizontalScrollActive || !headingContentIsWiderThanWrapper) {
1175 + return;
1176 + }
1177 + event.preventDefault();
1178 + const previousPositionX = parseFloat(element.dataset.pageX),
1179 + mouseMoveX = event.pageX - previousPositionX,
1180 + maximumScrollValue = 5,
1181 + stepLimit = 20;
1182 + let toScrollDistanceX = 0;
1183 + if (stepLimit < mouseMoveX) {
1184 + toScrollDistanceX = maximumScrollValue;
1185 + } else if (stepLimit * -1 > mouseMoveX) {
1186 + toScrollDistanceX = -1 * maximumScrollValue;
1187 + } else {
1188 + toScrollDistanceX = mouseMoveX;
1189 + }
1190 + element.scrollLeft = element.scrollLeft - toScrollDistanceX;
1191 + element.classList.add('e-scroll-active');
1192 +}
1193 +function setHorizontalScrollAlignment(_ref) {
1194 + let {
1195 + element,
1196 + direction,
1197 + justifyCSSVariable,
1198 + horizontalScrollStatus
1199 + } = _ref;
1200 + if (!element) {
1201 + return;
1202 + }
1203 + if (isHorizontalScroll(element, horizontalScrollStatus)) {
1204 + initialScrollPosition(element, direction, justifyCSSVariable);
1205 + } else {
1206 + element.style.setProperty(justifyCSSVariable, '');
1207 + }
1208 +}
1209 +function isHorizontalScroll(element, horizontalScrollStatus) {
1210 + return element.clientWidth < getChildrenWidth(element.children) && 'enable' === horizontalScrollStatus;
1211 +}
1212 +function getChildrenWidth(children) {
1213 + let totalWidth = 0;
1214 + const parentContainer = children[0].parentNode,
1215 + computedStyles = getComputedStyle(parentContainer),
1216 + gap = parseFloat(computedStyles.gap) || 0; // Get the gap value or default to 0 if it's not specified
1217 +
1218 + for (let i = 0; i < children.length; i++) {
1219 + totalWidth += children[i].offsetWidth + gap;
1220 + }
1221 + return totalWidth;
1222 +}
1223 +function initialScrollPosition(element, direction, justifyCSSVariable) {
1224 + const isRTL = elementorFrontend.config.is_rtl;
1225 + switch (direction) {
1226 + case 'end':
1227 + element.style.setProperty(justifyCSSVariable, 'start');
1228 + element.scrollLeft = isRTL ? -1 * getChildrenWidth(element.children) : getChildrenWidth(element.children);
1229 + break;
1230 + default:
1231 + element.style.setProperty(justifyCSSVariable, 'start');
1232 + element.scrollLeft = 0;
1233 + }
1234 +}
1235 +
1236 +/***/ }),
1237 +
1079 1238 /***/ "../assets/dev/js/modules/imports/args-object.js":
1080 1239 /*!*******************************************************!*\
1081 1240 !*** ../assets/dev/js/modules/imports/args-object.js ***!
1082 1241 \*******************************************************/
@@ -1089,8 +1248,9 @@
1089 1248 Object.defineProperty(exports, "__esModule", ({
1090 1249 value: true
1091 1250 }));
1092 1251 exports["default"] = void 0;
1252 +__webpack_require__(/*! core-js/modules/es.error.cause.js */ "../node_modules/core-js/modules/es.error.cause.js");
1093 1253 var _instanceType = _interopRequireDefault(__webpack_require__(/*! ./instance-type */ "../assets/dev/js/modules/imports/instance-type.js"));
1094 1254 var _isInstanceof = _interopRequireDefault(__webpack_require__(/*! ../../editor/utils/is-instanceof */ "../assets/dev/js/editor/utils/is-instanceof.js"));
1095 1255 class ArgsObject extends _instanceType.default {
1096 1256 static getInstanceType() {
@@ -1118,9 +1278,10 @@
1118 1278 * @param {{}} args
1119 1279 *
1120 1280 * @throws {Error}
1121 1281 */
1122 - requireArgument(property, args = this.args) {
1282 + requireArgument(property) {
1283 + let args = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.args;
1123 1284 if (!Object.prototype.hasOwnProperty.call(args, property)) {
1124 1285 throw Error(`${property} is required.`);
1125 1286 }
1126 1287 }
@@ -1135,9 +1296,10 @@
1135 1296 * @param {{}} args
1136 1297 *
1137 1298 * @throws {Error}
1138 1299 */
1139 - requireArgumentType(property, type, args = this.args) {
1300 + requireArgumentType(property, type) {
1301 + let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args;
1140 1302 this.requireArgument(property, args);
1141 1303 if (typeof args[property] !== type) {
1142 1304 throw Error(`${property} invalid type: ${type}.`);
1143 1305 }
@@ -1153,9 +1315,10 @@
1153 1315 * @param {{}} args
1154 1316 *
1155 1317 * @throws {Error}
1156 1318 */
1157 - requireArgumentInstance(property, instance, args = this.args) {
1319 + requireArgumentInstance(property, instance) {
1320 + let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args;
1158 1321 this.requireArgument(property, args);
1159 1322 if (!(args[property] instanceof instance) && !(0, _isInstanceof.default)(args[property], instance)) {
1160 1323 throw Error(`${property} invalid instance.`);
1161 1324 }
@@ -1171,9 +1334,10 @@
1171 1334 * @param {{}} args
1172 1335 *
1173 1336 * @throws {Error}
1174 1337 */
1175 - requireArgumentConstructor(property, type, args = this.args) {
1338 + requireArgumentConstructor(property, type) {
1339 + let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args;
1176 1340 this.requireArgument(property, args);
1177 1341
1178 1342 // Note: Converting the constructor to string in order to avoid equation issues
1179 1343 // due to different memory addresses between iframes (window.Object !== window.top.Object).
@@ -1189,9 +1353,9 @@
1189 1353 /***/ "../assets/dev/js/modules/imports/force-method-implementation.js":
1190 1354 /*!***********************************************************************!*\
1191 1355 !*** ../assets/dev/js/modules/imports/force-method-implementation.js ***!
1192 1356 \***********************************************************************/
1193 -/***/ ((__unused_webpack_module, exports) => {
1357 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1194 1358
1195 1359 "use strict";
1196 1360
1197 1361
@@ -1198,12 +1362,15 @@
1198 1362 Object.defineProperty(exports, "__esModule", ({
1199 1363 value: true
1200 1364 }));
1201 1365 exports["default"] = exports.ForceMethodImplementation = void 0;
1366 +__webpack_require__(/*! core-js/modules/es.error.cause.js */ "../node_modules/core-js/modules/es.error.cause.js");
1202 1367 // TODO: Wrong location used as `elementorModules.ForceMethodImplementation(); should be` `elementorUtils.forceMethodImplementation()`;
1203 1368
1204 1369 class ForceMethodImplementation extends Error {
1205 - constructor(info = {}, args = {}) {
1370 + constructor() {
1371 + let info = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1372 + let args = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
1206 1373 super(`${info.isStatic ? 'static ' : ''}${info.fullName}() should be implemented, please provide '${info.functionName || info.fullName}' functionality.`, args);
1207 1374
1208 1375 // Allow to pass custom properties to the error.
1209 1376 if (Object.keys(args).length) {
@@ -1237,9 +1404,9 @@
1237 1404 /***/ "../assets/dev/js/modules/imports/instance-type.js":
1238 1405 /*!*********************************************************!*\
1239 1406 !*** ../assets/dev/js/modules/imports/instance-type.js ***!
1240 1407 \*********************************************************/
1241 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1408 +/***/ ((__unused_webpack_module, exports) => {
1242 1409
1243 1410 "use strict";
1244 1411
1245 1412
@@ -1246,11 +1413,8 @@
1246 1413 Object.defineProperty(exports, "__esModule", ({
1247 1414 value: true
1248 1415 }));
1249 1416 exports["default"] = void 0;
1250 -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js");
1251 -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js");
1252 -__webpack_require__(/*! core-js/modules/esnext.iterator.for-each.js */ "../node_modules/core-js/modules/esnext.iterator.for-each.js");
1253 1417 class InstanceType {
1254 1418 static [Symbol.hasInstance](target) {
1255 1419 /**
1256 1420 * This is function extending being called each time JS uses instanceOf, since babel use it each time it create new class
@@ -1311,12 +1475,9 @@
1311 1475
1312 1476 "use strict";
1313 1477
1314 1478
1315 -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js");
1316 -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js");
1317 -__webpack_require__(/*! core-js/modules/esnext.iterator.filter.js */ "../node_modules/core-js/modules/esnext.iterator.filter.js");
1318 -__webpack_require__(/*! core-js/modules/esnext.iterator.for-each.js */ "../node_modules/core-js/modules/esnext.iterator.for-each.js");
1479 +__webpack_require__(/*! core-js/modules/es.error.cause.js */ "../node_modules/core-js/modules/es.error.cause.js");
1319 1480 const Module = function () {
1320 1481 const $ = jQuery,
1321 1482 instanceParams = arguments,
1322 1483 self = this,
@@ -1484,11 +1645,10 @@
1484 1645 Object.defineProperty(exports, "__esModule", ({
1485 1646 value: true
1486 1647 }));
1487 1648 exports["default"] = void 0;
1488 -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js");
1489 1649 var _viewModule = _interopRequireDefault(__webpack_require__(/*! ../view-module */ "../assets/dev/js/modules/imports/view-module.js"));
1490 -var _default = exports["default"] = _viewModule.default.extend({
1650 +var _default = _viewModule.default.extend({
1491 1651 getDefaultSettings() {
1492 1652 return {
1493 1653 container: null,
1494 1654 items: null,
@@ -1525,8 +1685,9 @@
1525 1685 }
1526 1686 });
1527 1687 }
1528 1688 });
1689 +exports["default"] = _default;
1529 1690
1530 1691 /***/ }),
1531 1692
1532 1693 /***/ "../assets/dev/js/modules/imports/utils/scroll.js":
@@ -1532,9 +1693,9 @@
1532 1693 /***/ "../assets/dev/js/modules/imports/utils/scroll.js":
1533 1694 /*!********************************************************!*\
1534 1695 !*** ../assets/dev/js/modules/imports/utils/scroll.js ***!
1535 1696 \********************************************************/
1536 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1697 +/***/ ((__unused_webpack_module, exports) => {
1537 1698
1538 1699 "use strict";
1539 1700
1540 1701
@@ -1541,9 +1702,8 @@
1541 1702 Object.defineProperty(exports, "__esModule", ({
1542 1703 value: true
1543 1704 }));
1544 1705 exports["default"] = void 0;
1545 -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js");
1546 1706 // Moved from elementor pro: 'assets/dev/js/frontend/utils'
1547 1707 class Scroll {
1548 1708 /**
1549 1709 * @param {Object} obj
@@ -1554,26 +1714,27 @@
1554 1714 */
1555 1715 static scrollObserver(obj) {
1556 1716 let lastScrollY = 0;
1557 1717
1558 - // Generating thresholds points along the animation height
1559 - // More thresholds points = more trigger points of the callback
1560 - const buildThresholds = (sensitivityPercentage = 0) => {
1561 - const thresholds = [];
1718 + // Generating threshholds points along the animation height
1719 + // More threshholds points = more trigger points of the callback
1720 + const buildThreshholds = function () {
1721 + let sensitivityPercentage = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
1722 + const threshholds = [];
1562 1723 if (sensitivityPercentage > 0 && sensitivityPercentage <= 100) {
1563 1724 const increment = 100 / sensitivityPercentage;
1564 1725 for (let i = 0; i <= 100; i += increment) {
1565 - thresholds.push(i / 100);
1726 + threshholds.push(i / 100);
1566 1727 }
1567 1728 } else {
1568 - thresholds.push(0);
1729 + threshholds.push(0);
1569 1730 }
1570 - return thresholds;
1731 + return threshholds;
1571 1732 };
1572 1733 const options = {
1573 1734 root: obj.root || null,
1574 1735 rootMargin: obj.offset || '0px',
1575 - threshold: buildThresholds(obj.sensitivity)
1736 + threshold: buildThreshholds(obj.sensitivity)
1576 1737 };
1577 1738 function handleIntersect(entries) {
1578 1739 const currentScrollY = entries[0].boundingClientRect.y,
1579 1740 isInViewport = entries[0].isIntersecting,
@@ -1595,9 +1756,10 @@
1595 1756 * @param {Object} offsetObj
1596 1757 * @param {number} offsetObj.start - Offset start value in percentages
1597 1758 * @param {number} offsetObj.end - Offset end value in percentages
1598 1759 */
1599 - static getElementViewportPercentage($element, offsetObj = {}) {
1760 + static getElementViewportPercentage($element) {
1761 + let offsetObj = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
1600 1762 const elementOffset = $element[0].getBoundingClientRect(),
1601 1763 offsetStart = offsetObj.start || 0,
1602 1764 offsetEnd = offsetObj.end || 0,
1603 1765 windowStartOffset = window.innerHeight * offsetStart / 100,
@@ -1615,9 +1777,11 @@
1615 1777 * @param {number} offsetObj.start - Offset start value in percentages
1616 1778 * @param {number} offsetObj.end - Offset end value in percentages
1617 1779 * @param {number} limitPageHeight - Will limit the page height calculation
1618 1780 */
1619 - static getPageScrollPercentage(offsetObj = {}, limitPageHeight) {
1781 + static getPageScrollPercentage() {
1782 + let offsetObj = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1783 + let limitPageHeight = arguments.length > 1 ? arguments[1] : undefined;
1620 1784 const offsetStart = offsetObj.start || 0,
1621 1785 offsetEnd = offsetObj.end || 0,
1622 1786 initialPageHeight = limitPageHeight || document.documentElement.scrollHeight - document.documentElement.clientHeight,
1623 1787 heightOffset = initialPageHeight * offsetStart / 100,
@@ -1644,9 +1808,9 @@
1644 1808 value: true
1645 1809 }));
1646 1810 exports["default"] = void 0;
1647 1811 var _module = _interopRequireDefault(__webpack_require__(/*! ./module */ "../assets/dev/js/modules/imports/module.js"));
1648 -var _default = exports["default"] = _module.default.extend({
1812 +var _default = _module.default.extend({
1649 1813 elements: null,
1650 1814 getDefaultElements() {
1651 1815 return {};
1652 1816 },
@@ -1658,8 +1822,9 @@
1658 1822 initElements() {
1659 1823 this.elements = this.getDefaultElements();
1660 1824 }
1661 1825 });
1826 +exports["default"] = _default;
1662 1827
1663 1828 /***/ }),
1664 1829
1665 1830 /***/ "../assets/dev/js/modules/modules.js":
@@ -1681,11 +1846,9 @@
1681 1846 var _argsObject = _interopRequireDefault(__webpack_require__(/*! ./imports/args-object */ "../assets/dev/js/modules/imports/args-object.js"));
1682 1847 var _masonry = _interopRequireDefault(__webpack_require__(/*! ./imports/utils/masonry */ "../assets/dev/js/modules/imports/utils/masonry.js"));
1683 1848 var _scroll = _interopRequireDefault(__webpack_require__(/*! ./imports/utils/scroll */ "../assets/dev/js/modules/imports/utils/scroll.js"));
1684 1849 var _forceMethodImplementation = _interopRequireDefault(__webpack_require__(/*! ./imports/force-method-implementation */ "../assets/dev/js/modules/imports/force-method-implementation.js"));
1685 -var _templateRegistryHelpers = __webpack_require__(/*! ../../../../app/modules/import-export-customization/assets/js/shared/utils/template-registry-helpers */ "../app/modules/import-export-customization/assets/js/shared/utils/template-registry-helpers.js");
1686 -var _customizationDialogs = __webpack_require__(/*! ../../../../app/modules/import-export-customization/assets/js/shared/registry/customization-dialogs */ "../app/modules/import-export-customization/assets/js/shared/registry/customization-dialogs.js");
1687 -const baseModules = {
1850 +var _default = window.elementorModules = {
1688 1851 Module: _module.default,
1689 1852 ViewModule: _viewModule.default,
1690 1853 ArgsObject: _argsObject.default,
1691 1854 ForceMethodImplementation: _forceMethodImplementation.default,
@@ -1691,38 +1854,559 @@
1691 1854 ForceMethodImplementation: _forceMethodImplementation.default,
1692 1855 utils: {
1693 1856 Masonry: _masonry.default,
1694 1857 Scroll: _scroll.default
1695 - },
1696 - importExport: {
1697 - createGetInitialState: _templateRegistryHelpers.createGetInitialState,
1698 - customizationDialogsRegistry: _customizationDialogs.customizationDialogsRegistry
1699 1858 }
1700 1859 };
1701 -if (!window.elementorModules) {
1702 - window.elementorModules = baseModules;
1703 -} else {
1704 - Object.assign(window.elementorModules, baseModules);
1860 +exports["default"] = _default;
1861 +
1862 +/***/ }),
1863 +
1864 +/***/ "../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion-title-keyboard-handler.js":
1865 +/*!**********************************************************************************************************!*\
1866 + !*** ../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion-title-keyboard-handler.js ***!
1867 + \**********************************************************************************************************/
1868 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1869 +
1870 +"use strict";
1871 +
1872 +
1873 +var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1874 +Object.defineProperty(exports, "__esModule", ({
1875 + value: true
1876 +}));
1877 +exports["default"] = void 0;
1878 +var _nestedTitleKeyboardHandler = _interopRequireDefault(__webpack_require__(/*! elementor-assets-js/frontend/handlers/accessibility/nested-title-keyboard-handler */ "../assets/dev/js/frontend/handlers/accessibility/nested-title-keyboard-handler.js"));
1879 +class NestedAccordionTitleKeyboardHandler extends _nestedTitleKeyboardHandler.default {
1880 + __construct() {
1881 + super.__construct(...arguments);
1882 + const config = arguments.length <= 0 ? undefined : arguments[0];
1883 + this.toggleTitle = config.toggleTitle;
1884 + }
1885 + getDefaultSettings() {
1886 + const parentSettings = super.getDefaultSettings();
1887 + return {
1888 + ...parentSettings,
1889 + selectors: {
1890 + itemTitle: '.e-n-accordion-item-title',
1891 + itemContainer: '.e-n-accordion-item > .e-con'
1892 + },
1893 + ariaAttributes: {
1894 + titleStateAttribute: 'aria-expanded',
1895 + activeTitleSelector: '[aria-expanded="true"]'
1896 + },
1897 + datasets: {
1898 + titleIndex: 'data-accordion-index'
1899 + }
1900 + };
1901 + }
1902 + handeTitleLinkEnterOrSpaceEvent(event) {
1903 + this.toggleTitle(event);
1904 + }
1905 + handleContentElementEscapeEvents(event) {
1906 + this.getActiveTitleElement().trigger('focus');
1907 + this.toggleTitle(event);
1908 + }
1909 + handleTitleEscapeKeyEvents(event) {
1910 + const detailsNode = event?.currentTarget?.parentElement,
1911 + isOpen = detailsNode?.open;
1912 + if (isOpen) {
1913 + this.toggleTitle(event);
1914 + }
1915 + }
1705 1916 }
1706 -var _default = exports["default"] = window.elementorModules;
1917 +exports["default"] = NestedAccordionTitleKeyboardHandler;
1707 1918
1708 1919 /***/ }),
1709 1920
1710 -/***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js":
1711 -/*!***********************************************************************!*\
1712 - !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
1713 - \***********************************************************************/
1714 -/***/ ((module) => {
1921 +/***/ "../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion.js":
1922 +/*!***********************************************************************************!*\
1923 + !*** ../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion.js ***!
1924 + \***********************************************************************************/
1925 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1715 1926
1716 -function _interopRequireDefault(e) {
1717 - return e && e.__esModule ? e : {
1718 - "default": e
1719 - };
1927 +"use strict";
1928 +
1929 +
1930 +var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1931 +Object.defineProperty(exports, "__esModule", ({
1932 + value: true
1933 +}));
1934 +exports["default"] = void 0;
1935 +var _base = _interopRequireDefault(__webpack_require__(/*! elementor-frontend/handlers/base */ "../assets/dev/js/frontend/handlers/base.js"));
1936 +var _nestedAccordionTitleKeyboardHandler = _interopRequireDefault(__webpack_require__(/*! ./nested-accordion-title-keyboard-handler */ "../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion-title-keyboard-handler.js"));
1937 +class NestedAccordion extends _base.default {
1938 + constructor() {
1939 + super(...arguments);
1940 + this.animations = new Map();
1941 + }
1942 + getDefaultSettings() {
1943 + return {
1944 + selectors: {
1945 + accordion: '.e-n-accordion',
1946 + accordionContentContainers: '.e-n-accordion > .e-con',
1947 + accordionItems: '.e-n-accordion-item',
1948 + accordionItemTitles: '.e-n-accordion-item-title',
1949 + accordionContent: '.e-n-accordion-item > .e-con',
1950 + accordionWrapper: '.e-n-accordion-item'
1951 + },
1952 + default_state: 'expanded'
1953 + };
1954 + }
1955 + getDefaultElements() {
1956 + const selectors = this.getSettings('selectors');
1957 + return {
1958 + $accordion: this.findElement(selectors.accordion),
1959 + $contentContainers: this.findElement(selectors.accordionContentContainers),
1960 + $accordionItems: this.findElement(selectors.accordionItems),
1961 + $accordionTitles: this.findElement(selectors.accordionItemTitles),
1962 + $accordionContent: this.findElement(selectors.accordionContent)
1963 + };
1964 + }
1965 + onInit() {
1966 + super.onInit(...arguments);
1967 + if (elementorFrontend.isEditMode()) {
1968 + this.interlaceContainers();
1969 + }
1970 + this.injectKeyboardHandler();
1971 + }
1972 + injectKeyboardHandler() {
1973 + if ('nested-accordion.default' === this.getSettings('elementName')) {
1974 + new _nestedAccordionTitleKeyboardHandler.default({
1975 + $element: this.$element,
1976 + toggleTitle: this.clickListener.bind(this)
1977 + });
1978 + }
1979 + }
1980 + interlaceContainers() {
1981 + const {
1982 + $contentContainers,
1983 + $accordionItems
1984 + } = this.getDefaultElements();
1985 + $contentContainers.each((index, element) => {
1986 + $accordionItems[index].appendChild(element);
1987 + });
1988 + }
1989 + bindEvents() {
1990 + this.elements.$accordionTitles.on('click', this.clickListener.bind(this));
1991 + }
1992 + unbindEvents() {
1993 + this.elements.$accordionTitles.off();
1994 + }
1995 + clickListener(event) {
1996 + event.preventDefault();
1997 + const settings = this.getSettings(),
1998 + accordionItem = event?.currentTarget?.closest(settings.selectors.accordionWrapper),
1999 + itemSummary = accordionItem.querySelector(settings.selectors.accordionItemTitles),
2000 + accordionContent = accordionItem.querySelector(settings.selectors.accordionContent),
2001 + {
2002 + max_items_expended: maxItemsExpended
2003 + } = this.getElementSettings(),
2004 + {
2005 + $accordionTitles,
2006 + $accordionItems
2007 + } = this.elements;
2008 + if ('one' === maxItemsExpended) {
2009 + this.closeAllItems($accordionItems, $accordionTitles);
2010 + }
2011 + if (!accordionItem.open) {
2012 + this.prepareOpenAnimation(accordionItem, itemSummary, accordionContent);
2013 + } else {
2014 + this.closeAccordionItem(accordionItem, itemSummary);
2015 + }
2016 + }
2017 + animateItem(accordionItem, startHeight, endHeight, isOpen) {
2018 + accordionItem.style.overflow = 'hidden';
2019 + let animation = this.animations.get(accordionItem);
2020 + if (animation) {
2021 + animation.cancel();
2022 + }
2023 + animation = accordionItem.animate({
2024 + height: [startHeight, endHeight]
2025 + }, {
2026 + duration: this.getAnimationDuration()
2027 + });
2028 + animation.onfinish = () => this.onAnimationFinish(accordionItem, isOpen);
2029 + this.animations.set(accordionItem, animation);
2030 + accordionItem.querySelector('summary')?.setAttribute('aria-expanded', isOpen);
2031 + }
2032 + closeAccordionItem(accordionItem, accordionItemTitle) {
2033 + const startHeight = `${accordionItem.offsetHeight}px`,
2034 + endHeight = `${accordionItemTitle.offsetHeight}px`;
2035 + this.animateItem(accordionItem, startHeight, endHeight, false);
2036 + }
2037 + prepareOpenAnimation(accordionItem, accordionItemTitle, accordionItemContent) {
2038 + accordionItem.style.overflow = 'hidden';
2039 + accordionItem.style.height = `${accordionItem.offsetHeight}px`;
2040 + accordionItem.open = true;
2041 + window.requestAnimationFrame(() => this.openAccordionItem(accordionItem, accordionItemTitle, accordionItemContent));
2042 + }
2043 + openAccordionItem(accordionItem, accordionItemTitle, accordionItemContent) {
2044 + const startHeight = `${accordionItem.offsetHeight}px`,
2045 + endHeight = `${accordionItemTitle.offsetHeight + accordionItemContent.offsetHeight}px`;
2046 + this.animateItem(accordionItem, startHeight, endHeight, true);
2047 + }
2048 + onAnimationFinish(accordionItem, isOpen) {
2049 + accordionItem.open = isOpen;
2050 + this.animations.set(accordionItem, null);
2051 + accordionItem.style.height = accordionItem.style.overflow = '';
2052 + }
2053 + closeAllItems($items, $titles) {
2054 + $titles.each((index, title) => {
2055 + this.closeAccordionItem($items[index], title);
2056 + });
2057 + }
2058 + getAnimationDuration() {
2059 + const {
2060 + size,
2061 + unit
2062 + } = this.getElementSettings('n_accordion_animation_duration');
2063 + return size * ('ms' === unit ? 1 : 1000);
2064 + }
1720 2065 }
1721 -module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
2066 +exports["default"] = NestedAccordion;
1722 2067
1723 2068 /***/ }),
1724 2069
2070 +/***/ "../modules/nested-tabs/assets/js/frontend/handlers/nested-tabs.js":
2071 +/*!*************************************************************************!*\
2072 + !*** ../modules/nested-tabs/assets/js/frontend/handlers/nested-tabs.js ***!
2073 + \*************************************************************************/
2074 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2075 +
2076 +"use strict";
2077 +
2078 +
2079 +var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
2080 +Object.defineProperty(exports, "__esModule", ({
2081 + value: true
2082 +}));
2083 +exports["default"] = void 0;
2084 +var _base = _interopRequireDefault(__webpack_require__(/*! elementor-frontend/handlers/base */ "../assets/dev/js/frontend/handlers/base.js"));
2085 +var _flexHorizontalScroll = __webpack_require__(/*! elementor-frontend-utils/flex-horizontal-scroll */ "../assets/dev/js/frontend/utils/flex-horizontal-scroll.js");
2086 +class NestedTabs extends _base.default {
2087 + constructor() {
2088 + super(...arguments);
2089 + this.resizeListenerNestedTabs = null;
2090 + }
2091 +
2092 + /**
2093 + * @param {string|number} tabIndex
2094 + *
2095 + * @return {string}
2096 + */
2097 + getTabTitleFilterSelector(tabIndex) {
2098 + return `[data-tab-index="${tabIndex}"]`;
2099 + }
2100 +
2101 + /**
2102 + * @param {string|number} tabIndex
2103 + *
2104 + * @return {string}
2105 + */
2106 + getTabContentFilterSelector(tabIndex) {
2107 + return `*:nth-child(${tabIndex})`;
2108 + }
2109 +
2110 + /**
2111 + * @param {HTMLElement} tabTitleElement
2112 + *
2113 + * @return {string}
2114 + */
2115 + getTabIndex(tabTitleElement) {
2116 + return tabTitleElement.getAttribute('data-tab-index');
2117 + }
2118 + getDefaultSettings() {
2119 + return {
2120 + selectors: {
2121 + widgetContainer: '.e-n-tabs',
2122 + tabTitle: '.e-n-tab-title',
2123 + tabContent: '.e-n-tabs-content > .e-con',
2124 + headingContainer: '.e-n-tabs-heading',
2125 + activeTabContentContainers: '.e-con.e-active'
2126 + },
2127 + classes: {
2128 + active: 'e-active'
2129 + },
2130 + ariaAttributes: {
2131 + titleStateAttribute: 'aria-selected',
2132 + activeTitleSelector: '[aria-selected="true"]'
2133 + },
2134 + showTabFn: 'show',
2135 + hideTabFn: 'hide',
2136 + toggleSelf: false,
2137 + hidePrevious: true,
2138 + autoExpand: true
2139 + };
2140 + }
2141 + getDefaultElements() {
2142 + const selectors = this.getSettings('selectors');
2143 + return {
2144 + $tabTitles: this.findElement(selectors.tabTitle),
2145 + $tabContents: this.findElement(selectors.tabContent),
2146 + $headingContainer: this.findElement(selectors.headingContainer)
2147 + };
2148 + }
2149 + getKeyboardNavigationSettings() {
2150 + return this.getSettings();
2151 + }
2152 + activateDefaultTab() {
2153 + const settings = this.getSettings();
2154 + const defaultActiveTab = this.getEditSettings('activeItemIndex') || 1,
2155 + originalToggleMethods = {
2156 + showTabFn: settings.showTabFn,
2157 + hideTabFn: settings.hideTabFn
2158 + };
2159 +
2160 + // Toggle tabs without animation to avoid jumping
2161 + this.setSettings({
2162 + showTabFn: 'show',
2163 + hideTabFn: 'hide'
2164 + });
2165 + this.changeActiveTab(defaultActiveTab);
2166 +
2167 + // Return back original toggle effects
2168 + this.setSettings(originalToggleMethods);
2169 + }
2170 + deactivateActiveTab(newTabIndex) {
2171 + const settings = this.getSettings(),
2172 + activeClass = settings.classes.active,
2173 + activeTitleFilter = settings.ariaAttributes.activeTitleSelector,
2174 + activeContentFilter = '.' + activeClass,
2175 + $activeTitle = this.elements.$tabTitles.filter(activeTitleFilter),
2176 + $activeContent = this.elements.$tabContents.filter(activeContentFilter);
2177 + this.setTabDeactivationAttributes($activeTitle, newTabIndex);
2178 + $activeContent.removeClass(activeClass);
2179 + $activeContent[settings.hideTabFn](0, () => this.onHideTabContent($activeContent));
2180 + return $activeContent;
2181 + }
2182 + getTitleActivationAttributes() {
2183 + const titleStateAttribute = this.getSettings('ariaAttributes').titleStateAttribute;
2184 + return {
2185 + tabindex: '0',
2186 + [titleStateAttribute]: 'true'
2187 + };
2188 + }
2189 + setTabDeactivationAttributes($activeTitle) {
2190 + const titleStateAttribute = this.getSettings('ariaAttributes').titleStateAttribute;
2191 + $activeTitle.attr({
2192 + tabindex: '-1',
2193 + [titleStateAttribute]: 'false'
2194 + });
2195 + }
2196 + onHideTabContent() {}
2197 + activateTab(tabIndex) {
2198 + const settings = this.getSettings(),
2199 + activeClass = settings.classes.active,
2200 + animationDuration = 'show' === settings.showTabFn ? 0 : 400;
2201 + let $requestedTitle = this.elements.$tabTitles.filter(this.getTabTitleFilterSelector(tabIndex)),
2202 + $requestedContent = this.elements.$tabContents.filter(this.getTabContentFilterSelector(tabIndex));
2203 +
2204 + // Check if the tabIndex exists.
2205 + if (!$requestedTitle.length) {
2206 + // Activate the previous tab and ensure that the tab index is not less than 1.
2207 + const previousTabIndex = Math.max(tabIndex - 1, 1);
2208 + $requestedTitle = this.elements.$tabTitles.filter(this.getTabTitleFilterSelector(previousTabIndex));
2209 + $requestedContent = this.elements.$tabContents.filter(this.getTabContentFilterSelector(previousTabIndex));
2210 + }
2211 + $requestedTitle.attr(this.getTitleActivationAttributes());
2212 + $requestedContent.addClass(activeClass);
2213 + $requestedContent[settings.showTabFn](animationDuration, () => this.onShowTabContent($requestedContent));
2214 + }
2215 + onShowTabContent($requestedContent) {
2216 + elementorFrontend.elements.$window.trigger('elementor-pro/motion-fx/recalc');
2217 + elementorFrontend.elements.$window.trigger('elementor/nested-tabs/activate', $requestedContent);
2218 + elementorFrontend.elements.$window.trigger('elementor/bg-video/recalc');
2219 + }
2220 + isActiveTab(tabIndex) {
2221 + return 'true' === this.elements.$tabTitles.filter('[data-tab-index="' + tabIndex + '"]').attr(this.getSettings('ariaAttributes').titleStateAttribute);
2222 + }
2223 + onTabClick(event) {
2224 + event.preventDefault();
2225 + this.changeActiveTab(event.currentTarget?.getAttribute('data-tab-index'), true);
2226 + }
2227 + getTabEvents() {
2228 + return {
2229 + click: this.onTabClick.bind(this)
2230 + };
2231 + }
2232 + getHeadingEvents() {
2233 + const navigationWrapper = this.elements.$headingContainer[0];
2234 + return {
2235 + mousedown: _flexHorizontalScroll.changeScrollStatus.bind(this, navigationWrapper),
2236 + mouseup: _flexHorizontalScroll.changeScrollStatus.bind(this, navigationWrapper),
2237 + mouseleave: _flexHorizontalScroll.changeScrollStatus.bind(this, navigationWrapper),
2238 + mousemove: _flexHorizontalScroll.setHorizontalTitleScrollValues.bind(this, navigationWrapper, this.getHorizontalScrollSetting())
2239 + };
2240 + }
2241 + bindEvents() {
2242 + this.elements.$tabTitles.on(this.getTabEvents());
2243 + this.elements.$headingContainer.on(this.getHeadingEvents());
2244 + const settingsObject = {
2245 + element: this.elements.$headingContainer[0],
2246 + direction: this.getTabsDirection(),
2247 + justifyCSSVariable: '--n-tabs-heading-justify-content',
2248 + horizontalScrollStatus: this.getHorizontalScrollSetting()
2249 + };
2250 + this.resizeListenerNestedTabs = _flexHorizontalScroll.setHorizontalScrollAlignment.bind(this, settingsObject);
2251 + elementorFrontend.elements.$window.on('resize', this.resizeListenerNestedTabs);
2252 + elementorFrontend.elements.$window.on('resize', this.setTouchMode.bind(this));
2253 + elementorFrontend.elements.$window.on('elementor/nested-tabs/activate', this.reInitSwipers);
2254 + elementorFrontend.elements.$window.on('elementor/nested-elements/activate-by-keyboard', this.changeActiveTabByKeyboard.bind(this));
2255 + }
2256 + unbindEvents() {
2257 + this.elements.$tabTitles.off();
2258 + this.elements.$headingContainer.off();
2259 + this.elements.$tabContents.children().off();
2260 + elementorFrontend.elements.$window.off('resize');
2261 + elementorFrontend.elements.$window.off('elementor/nested-tabs/activate');
2262 + }
2263 +
2264 + /**
2265 + * Fixes issues where Swipers that have been initialized while a tab is not visible are not properly rendered
2266 + * and when switching to the tab the swiper will not respect any of the chosen `autoplay` related settings.
2267 + *
2268 + * This is triggered when switching to a nested tab, looks for Swipers in the tab content and reinitializes them.
2269 + *
2270 + * @param {Object} event - Incoming event.
2271 + * @param {Object} content - Active nested tab dom element.
2272 + */
2273 + reInitSwipers(event, content) {
2274 + const swiperElements = content.querySelectorAll(`.${elementorFrontend.config.swiperClass}`);
2275 + for (const element of swiperElements) {
2276 + if (!element.swiper) {
2277 + return;
2278 + }
2279 + element.swiper.initialized = false;
2280 + element.swiper.init();
2281 + }
2282 + }
2283 + onInit() {
2284 + super.onInit(...arguments);
2285 + if (this.getSettings('autoExpand')) {
2286 + this.activateDefaultTab();
2287 + }
2288 + const settingsObject = {
2289 + element: this.elements.$headingContainer[0],
2290 + direction: this.getTabsDirection(),
2291 + justifyCSSVariable: '--n-tabs-heading-justify-content',
2292 + horizontalScrollStatus: this.getHorizontalScrollSetting()
2293 + };
2294 + (0, _flexHorizontalScroll.setHorizontalScrollAlignment)(settingsObject);
2295 + this.setTouchMode();
2296 + if ('nested-tabs.default' === this.getSettings('elementName')) {
2297 + new elementorModules.frontend.handlers.NestedTitleKeyboardHandler(this.getKeyboardNavigationSettings());
2298 + }
2299 + }
2300 + onEditSettingsChange(propertyName, value) {
2301 + if ('activeItemIndex' === propertyName) {
2302 + this.changeActiveTab(value, false);
2303 + }
2304 + }
2305 + onElementChange(propertyName) {
2306 + if (this.checkSliderPropsToWatch(propertyName)) {
2307 + const settingsObject = {
2308 + element: this.elements.$headingContainer[0],
2309 + direction: this.getTabsDirection(),
2310 + justifyCSSVariable: '--n-tabs-heading-justify-content',
2311 + horizontalScrollStatus: this.getHorizontalScrollSetting()
2312 + };
2313 + (0, _flexHorizontalScroll.setHorizontalScrollAlignment)(settingsObject);
2314 + }
2315 + }
2316 + checkSliderPropsToWatch(propertyName) {
2317 + return 0 === propertyName.indexOf('horizontal_scroll') || 'breakpoint_selector' === propertyName || 0 === propertyName.indexOf('tabs_justify_horizontal') || 0 === propertyName.indexOf('tabs_title_space_between');
2318 + }
2319 +
2320 + /**
2321 + * @param {string} tabIndex
2322 + * @param {boolean} fromUser - Whether the call is caused by the user or internal.
2323 + */
2324 + changeActiveTab(tabIndex) {
2325 + let fromUser = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
2326 + // `document/repeater/select` is used only in the editor, only when the element
2327 + // is in the currently-edited document, and only when its not internal call,
2328 + if (fromUser && this.isEdit && this.isElementInTheCurrentDocument()) {
2329 + return window.top.$e.run('document/repeater/select', {
2330 + container: elementor.getContainer(this.$element.attr('data-id')),
2331 + index: parseInt(tabIndex)
2332 + });
2333 + }
2334 + const isActiveTab = this.isActiveTab(tabIndex),
2335 + settings = this.getSettings();
2336 + if ((settings.toggleSelf || !isActiveTab) && settings.hidePrevious) {
2337 + this.deactivateActiveTab(tabIndex);
2338 + }
2339 + if (!settings.hidePrevious && isActiveTab) {
2340 + this.deactivateActiveTab(tabIndex);
2341 + }
2342 + if (!isActiveTab) {
2343 + if (this.isAccordionVersion()) {
2344 + this.activateMobileTab(tabIndex);
2345 + return;
2346 + }
2347 + this.activateTab(tabIndex);
2348 + }
2349 + }
2350 + changeActiveTabByKeyboard(event, settings) {
2351 + if (settings.widgetId.toString() !== this.getID().toString()) {
2352 + return;
2353 + }
2354 + this.changeActiveTab(settings.titleIndex, true);
2355 + }
2356 + activateMobileTab(tabIndex) {
2357 + // Timeout time added to ensure that opening of the active tab starts after closing the other tab on Apple devices.
2358 + setTimeout(() => {
2359 + this.activateTab(tabIndex);
2360 + this.forceActiveTabToBeInViewport(tabIndex);
2361 + }, 10);
2362 + }
2363 + forceActiveTabToBeInViewport(tabIndex) {
2364 + if (!elementorFrontend.isEditMode()) {
2365 + return;
2366 + }
2367 + const $activeTabTitle = this.elements.$tabTitles.filter(this.getTabTitleFilterSelector(tabIndex));
2368 + if (!elementor.helpers.isInViewport($activeTabTitle[0])) {
2369 + $activeTabTitle[0].scrollIntoView({
2370 + block: 'center'
2371 + });
2372 + }
2373 + }
2374 + getActiveClass() {
2375 + const settings = this.getSettings();
2376 + return settings.classes.active;
2377 + }
2378 + getTabsDirection() {
2379 + const currentDevice = elementorFrontend.getCurrentDeviceMode();
2380 + return elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'tabs_justify_horizontal', '', currentDevice);
2381 + }
2382 + getHorizontalScrollSetting() {
2383 + const currentDevice = elementorFrontend.getCurrentDeviceMode();
2384 + return elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'horizontal_scroll', '', currentDevice);
2385 + }
2386 + isAccordionVersion() {
2387 + return 'contents' === this.elements.$headingContainer.css('display');
2388 + }
2389 + setTouchMode() {
2390 + const widgetSelector = this.getSettings('selectors').widgetContainer;
2391 + if (elementorFrontend.isEditMode() || 'resize' === event?.type) {
2392 + const responsiveDevices = ['mobile', 'mobile_extra', 'tablet', 'tablet_extra'],
2393 + currentDevice = elementorFrontend.getCurrentDeviceMode();
2394 + if (-1 !== responsiveDevices.indexOf(currentDevice)) {
2395 + this.$element.find(widgetSelector).attr('data-touch-mode', 'true');
2396 + return;
2397 + }
2398 + } else if ('ontouchstart' in window) {
2399 + this.$element.find(widgetSelector).attr('data-touch-mode', 'true');
2400 + return;
2401 + }
2402 + this.$element.find(widgetSelector).attr('data-touch-mode', 'false');
2403 + }
2404 +}
2405 +exports["default"] = NestedTabs;
2406 +
2407 +/***/ }),
2408 +
1725 2409 /***/ "../node_modules/core-js/internals/a-callable.js":
1726 2410 /*!*******************************************************!*\
1727 2411 !*** ../node_modules/core-js/internals/a-callable.js ***!
1728 2412 \*******************************************************/
@@ -1737,29 +2421,30 @@
1737 2421
1738 2422 // `Assert: IsCallable(argument) is true`
1739 2423 module.exports = function (argument) {
1740 2424 if (isCallable(argument)) return argument;
1741 - throw new $TypeError(tryToString(argument) + ' is not a function');
2425 + throw $TypeError(tryToString(argument) + ' is not a function');
1742 2426 };
1743 2427
1744 2428
1745 2429 /***/ }),
1746 2430
1747 -/***/ "../node_modules/core-js/internals/an-instance.js":
1748 -/*!********************************************************!*\
1749 - !*** ../node_modules/core-js/internals/an-instance.js ***!
1750 - \********************************************************/
2431 +/***/ "../node_modules/core-js/internals/a-possible-prototype.js":
2432 +/*!*****************************************************************!*\
2433 + !*** ../node_modules/core-js/internals/a-possible-prototype.js ***!
2434 + \*****************************************************************/
1751 2435 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1752 2436
1753 2437 "use strict";
1754 2438
1755 -var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js");
2439 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
1756 2440
2441 +var $String = String;
1757 2442 var $TypeError = TypeError;
1758 2443
1759 -module.exports = function (it, Prototype) {
1760 - if (isPrototypeOf(Prototype, it)) return it;
1761 - throw new $TypeError('Incorrect invocation');
2444 +module.exports = function (argument) {
2445 + if (typeof argument == 'object' || isCallable(argument)) return argument;
2446 + throw $TypeError("Can't set " + $String(argument) + ' as a prototype');
1762 2447 };
1763 2448
1764 2449
1765 2450 /***/ }),
@@ -1779,9 +2464,9 @@
1779 2464
1780 2465 // `Assert: Type(argument) is Object`
1781 2466 module.exports = function (argument) {
1782 2467 if (isObject(argument)) return argument;
1783 - throw new $TypeError($String(argument) + ' is not an object');
2468 + throw $TypeError($String(argument) + ' is not an object');
1784 2469 };
1785 2470
1786 2471
1787 2472 /***/ }),
@@ -1802,17 +2487,16 @@
1802 2487 var createMethod = function (IS_INCLUDES) {
1803 2488 return function ($this, el, fromIndex) {
1804 2489 var O = toIndexedObject($this);
1805 2490 var length = lengthOfArrayLike(O);
1806 - if (length === 0) return !IS_INCLUDES && -1;
1807 2491 var index = toAbsoluteIndex(fromIndex, length);
1808 2492 var value;
1809 2493 // Array#includes uses SameValueZero equality algorithm
1810 2494 // eslint-disable-next-line no-self-compare -- NaN check
1811 - if (IS_INCLUDES && el !== el) while (length > index) {
2495 + if (IS_INCLUDES && el != el) while (length > index) {
1812 2496 value = O[index++];
1813 2497 // eslint-disable-next-line no-self-compare -- NaN check
1814 - if (value !== value) return true;
2498 + if (value != value) return true;
1815 2499 // Array#indexOf ignores holes, Array#includes - not
1816 2500 } else for (;length > index; index++) {
1817 2501 if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
1818 2502 } return !IS_INCLUDES && -1;
@@ -1830,69 +2514,8 @@
1830 2514
1831 2515
1832 2516 /***/ }),
1833 2517
1834 -/***/ "../node_modules/core-js/internals/array-set-length.js":
1835 -/*!*************************************************************!*\
1836 - !*** ../node_modules/core-js/internals/array-set-length.js ***!
1837 - \*************************************************************/
1838 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1839 -
1840 -"use strict";
1841 -
1842 -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
1843 -var isArray = __webpack_require__(/*! ../internals/is-array */ "../node_modules/core-js/internals/is-array.js");
1844 -
1845 -var $TypeError = TypeError;
1846 -// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1847 -var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1848 -
1849 -// Safari < 13 does not throw an error in this case
1850 -var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
1851 - // makes no sense without proper strict mode support
1852 - if (this !== undefined) return true;
1853 - try {
1854 - // eslint-disable-next-line es/no-object-defineproperty -- safe
1855 - Object.defineProperty([], 'length', { writable: false }).length = 1;
1856 - } catch (error) {
1857 - return error instanceof TypeError;
1858 - }
1859 -}();
1860 -
1861 -module.exports = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
1862 - if (isArray(O) && !getOwnPropertyDescriptor(O, 'length').writable) {
1863 - throw new $TypeError('Cannot set read only .length');
1864 - } return O.length = length;
1865 -} : function (O, length) {
1866 - return O.length = length;
1867 -};
1868 -
1869 -
1870 -/***/ }),
1871 -
1872 -/***/ "../node_modules/core-js/internals/call-with-safe-iteration-closing.js":
1873 -/*!*****************************************************************************!*\
1874 - !*** ../node_modules/core-js/internals/call-with-safe-iteration-closing.js ***!
1875 - \*****************************************************************************/
1876 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1877 -
1878 -"use strict";
1879 -
1880 -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
1881 -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js");
1882 -
1883 -// call something on iterator step with safe closing on error
1884 -module.exports = function (iterator, fn, value, ENTRIES) {
1885 - try {
1886 - return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);
1887 - } catch (error) {
1888 - iteratorClose(iterator, 'throw', error);
1889 - }
1890 -};
1891 -
1892 -
1893 -/***/ }),
1894 -
1895 2518 /***/ "../node_modules/core-js/internals/classof-raw.js":
1896 2519 /*!********************************************************!*\
1897 2520 !*** ../node_modules/core-js/internals/classof-raw.js ***!
1898 2521 \********************************************************/
@@ -1928,9 +2551,9 @@
1928 2551 var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1929 2552 var $Object = Object;
1930 2553
1931 2554 // ES3 wrong here
1932 -var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
2555 +var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
1933 2556
1934 2557 // fallback for IE11 Script Access Denied error
1935 2558 var tryGet = function (it, key) {
1936 2559 try {
@@ -1946,9 +2569,9 @@
1946 2569 : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
1947 2570 // builtinTag case
1948 2571 : CORRECT_ARGUMENTS ? classofRaw(O)
1949 2572 // ES3 arguments fallback
1950 - : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
2573 + : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
1951 2574 };
1952 2575
1953 2576
1954 2577 /***/ }),
@@ -1980,45 +2603,8 @@
1980 2603
1981 2604
1982 2605 /***/ }),
1983 2606
1984 -/***/ "../node_modules/core-js/internals/correct-prototype-getter.js":
1985 -/*!*********************************************************************!*\
1986 - !*** ../node_modules/core-js/internals/correct-prototype-getter.js ***!
1987 - \*********************************************************************/
1988 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1989 -
1990 -"use strict";
1991 -
1992 -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
1993 -
1994 -module.exports = !fails(function () {
1995 - function F() { /* empty */ }
1996 - F.prototype.constructor = null;
1997 - // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
1998 - return Object.getPrototypeOf(new F()) !== F.prototype;
1999 -});
2000 -
2001 -
2002 -/***/ }),
2003 -
2004 -/***/ "../node_modules/core-js/internals/create-iter-result-object.js":
2005 -/*!**********************************************************************!*\
2006 - !*** ../node_modules/core-js/internals/create-iter-result-object.js ***!
2007 - \**********************************************************************/
2008 -/***/ ((module) => {
2009 -
2010 -"use strict";
2011 -
2012 -// `CreateIterResultObject` abstract operation
2013 -// https://tc39.es/ecma262/#sec-createiterresultobject
2014 -module.exports = function (value, done) {
2015 - return { value: value, done: done };
2016 -};
2017 -
2018 -
2019 -/***/ }),
2020 -
2021 2607 /***/ "../node_modules/core-js/internals/create-non-enumerable-property.js":
2022 2608 /*!***************************************************************************!*\
2023 2609 !*** ../node_modules/core-js/internals/create-non-enumerable-property.js ***!
2024 2610 \***************************************************************************/
@@ -2059,48 +2645,8 @@
2059 2645
2060 2646
2061 2647 /***/ }),
2062 2648
2063 -/***/ "../node_modules/core-js/internals/create-property.js":
2064 -/*!************************************************************!*\
2065 - !*** ../node_modules/core-js/internals/create-property.js ***!
2066 - \************************************************************/
2067 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2068 -
2069 -"use strict";
2070 -
2071 -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
2072 -var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
2073 -var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js");
2074 -
2075 -module.exports = function (object, key, value) {
2076 - if (DESCRIPTORS) definePropertyModule.f(object, key, createPropertyDescriptor(0, value));
2077 - else object[key] = value;
2078 -};
2079 -
2080 -
2081 -/***/ }),
2082 -
2083 -/***/ "../node_modules/core-js/internals/define-built-in-accessor.js":
2084 -/*!*********************************************************************!*\
2085 - !*** ../node_modules/core-js/internals/define-built-in-accessor.js ***!
2086 - \*********************************************************************/
2087 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2088 -
2089 -"use strict";
2090 -
2091 -var makeBuiltIn = __webpack_require__(/*! ../internals/make-built-in */ "../node_modules/core-js/internals/make-built-in.js");
2092 -var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
2093 -
2094 -module.exports = function (target, name, descriptor) {
2095 - if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
2096 - if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
2097 - return defineProperty.f(target, name, descriptor);
2098 -};
2099 -
2100 -
2101 -/***/ }),
2102 -
2103 2649 /***/ "../node_modules/core-js/internals/define-built-in.js":
2104 2650 /*!************************************************************!*\
2105 2651 !*** ../node_modules/core-js/internals/define-built-in.js ***!
2106 2652 \************************************************************/
@@ -2138,26 +2684,8 @@
2138 2684
2139 2685
2140 2686 /***/ }),
2141 2687
2142 -/***/ "../node_modules/core-js/internals/define-built-ins.js":
2143 -/*!*************************************************************!*\
2144 - !*** ../node_modules/core-js/internals/define-built-ins.js ***!
2145 - \*************************************************************/
2146 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2147 -
2148 -"use strict";
2149 -
2150 -var defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ "../node_modules/core-js/internals/define-built-in.js");
2151 -
2152 -module.exports = function (target, src, options) {
2153 - for (var key in src) defineBuiltIn(target, key, src[key], options);
2154 - return target;
2155 -};
2156 -
2157 -
2158 -/***/ }),
2159 -
2160 2688 /***/ "../node_modules/core-js/internals/define-global-property.js":
2161 2689 /*!*******************************************************************!*\
2162 2690 !*** ../node_modules/core-js/internals/define-global-property.js ***!
2163 2691 \*******************************************************************/
@@ -2164,9 +2692,9 @@
2164 2692 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2165 2693
2166 2694 "use strict";
2167 2695
2168 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2696 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2169 2697
2170 2698 // eslint-disable-next-line es/no-object-defineproperty -- safe
2171 2699 var defineProperty = Object.defineProperty;
2172 2700
@@ -2171,11 +2699,11 @@
2171 2699 var defineProperty = Object.defineProperty;
2172 2700
2173 2701 module.exports = function (key, value) {
2174 2702 try {
2175 - defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
2703 + defineProperty(global, key, { value: value, configurable: true, writable: true });
2176 2704 } catch (error) {
2177 - globalThis[key] = value;
2705 + global[key] = value;
2178 2706 } return value;
2179 2707 };
2180 2708
2181 2709
@@ -2193,14 +2721,36 @@
2193 2721
2194 2722 // Detect IE8's incomplete defineProperty implementation
2195 2723 module.exports = !fails(function () {
2196 2724 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2197 - return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
2725 + return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
2198 2726 });
2199 2727
2200 2728
2201 2729 /***/ }),
2202 2730
2731 +/***/ "../node_modules/core-js/internals/document-all.js":
2732 +/*!*********************************************************!*\
2733 + !*** ../node_modules/core-js/internals/document-all.js ***!
2734 + \*********************************************************/
2735 +/***/ ((module) => {
2736 +
2737 +"use strict";
2738 +
2739 +var documentAll = typeof document == 'object' && document.all;
2740 +
2741 +// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
2742 +// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
2743 +var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
2744 +
2745 +module.exports = {
2746 + all: documentAll,
2747 + IS_HTMLDDA: IS_HTMLDDA
2748 +};
2749 +
2750 +
2751 +/***/ }),
2752 +
2203 2753 /***/ "../node_modules/core-js/internals/document-create-element.js":
2204 2754 /*!********************************************************************!*\
2205 2755 !*** ../node_modules/core-js/internals/document-create-element.js ***!
2206 2756 \********************************************************************/
@@ -2207,12 +2757,12 @@
2207 2757 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2208 2758
2209 2759 "use strict";
2210 2760
2211 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2761 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2212 2762 var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
2213 2763
2214 -var document = globalThis.document;
2764 +var document = global.document;
2215 2765 // typeof document.createElement is 'object' in old IE
2216 2766 var EXISTS = isObject(document) && isObject(document.createElement);
2217 2767
2218 2768 module.exports = function (it) {
@@ -2221,25 +2771,58 @@
2221 2771
2222 2772
2223 2773 /***/ }),
2224 2774
2225 -/***/ "../node_modules/core-js/internals/does-not-exceed-safe-integer.js":
2226 -/*!*************************************************************************!*\
2227 - !*** ../node_modules/core-js/internals/does-not-exceed-safe-integer.js ***!
2228 - \*************************************************************************/
2775 +/***/ "../node_modules/core-js/internals/engine-user-agent.js":
2776 +/*!**************************************************************!*\
2777 + !*** ../node_modules/core-js/internals/engine-user-agent.js ***!
2778 + \**************************************************************/
2229 2779 /***/ ((module) => {
2230 2780
2231 2781 "use strict";
2232 2782
2233 -var $TypeError = TypeError;
2234 -var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
2783 +module.exports = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
2235 2784
2236 -module.exports = function (it) {
2237 - if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
2238 - return it;
2239 -};
2240 2785
2786 +/***/ }),
2241 2787
2788 +/***/ "../node_modules/core-js/internals/engine-v8-version.js":
2789 +/*!**************************************************************!*\
2790 + !*** ../node_modules/core-js/internals/engine-v8-version.js ***!
2791 + \**************************************************************/
2792 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2793 +
2794 +"use strict";
2795 +
2796 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2797 +var userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ "../node_modules/core-js/internals/engine-user-agent.js");
2798 +
2799 +var process = global.process;
2800 +var Deno = global.Deno;
2801 +var versions = process && process.versions || Deno && Deno.version;
2802 +var v8 = versions && versions.v8;
2803 +var match, version;
2804 +
2805 +if (v8) {
2806 + match = v8.split('.');
2807 + // in old Chrome, versions of V8 isn't V8 = Chrome / 10
2808 + // but their correct versions are not interesting for us
2809 + version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
2810 +}
2811 +
2812 +// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
2813 +// so check `userAgent` even if `.v8` exists, but 0
2814 +if (!version && userAgent) {
2815 + match = userAgent.match(/Edge\/(\d+)/);
2816 + if (!match || match[1] >= 74) {
2817 + match = userAgent.match(/Chrome\/(\d+)/);
2818 + if (match) version = +match[1];
2819 + }
2820 +}
2821 +
2822 +module.exports = version;
2823 +
2824 +
2242 2825 /***/ }),
2243 2826
2244 2827 /***/ "../node_modules/core-js/internals/enum-bug-keys.js":
2245 2828 /*!**********************************************************!*\
@@ -2262,63 +2845,80 @@
2262 2845
2263 2846
2264 2847 /***/ }),
2265 2848
2266 -/***/ "../node_modules/core-js/internals/environment-user-agent.js":
2267 -/*!*******************************************************************!*\
2268 - !*** ../node_modules/core-js/internals/environment-user-agent.js ***!
2269 - \*******************************************************************/
2849 +/***/ "../node_modules/core-js/internals/error-stack-clear.js":
2850 +/*!**************************************************************!*\
2851 + !*** ../node_modules/core-js/internals/error-stack-clear.js ***!
2852 + \**************************************************************/
2270 2853 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2271 2854
2272 2855 "use strict";
2273 2856
2274 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2857 +var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
2275 2858
2276 -var navigator = globalThis.navigator;
2277 -var userAgent = navigator && navigator.userAgent;
2859 +var $Error = Error;
2860 +var replace = uncurryThis(''.replace);
2278 2861
2279 -module.exports = userAgent ? String(userAgent) : '';
2862 +var TEST = (function (arg) { return String($Error(arg).stack); })('zxcasd');
2863 +// eslint-disable-next-line redos/no-vulnerable -- safe
2864 +var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
2865 +var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);
2280 2866
2867 +module.exports = function (stack, dropEntries) {
2868 + if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string' && !$Error.prepareStackTrace) {
2869 + while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, '');
2870 + } return stack;
2871 +};
2281 2872
2873 +
2282 2874 /***/ }),
2283 2875
2284 -/***/ "../node_modules/core-js/internals/environment-v8-version.js":
2285 -/*!*******************************************************************!*\
2286 - !*** ../node_modules/core-js/internals/environment-v8-version.js ***!
2287 - \*******************************************************************/
2876 +/***/ "../node_modules/core-js/internals/error-stack-install.js":
2877 +/*!****************************************************************!*\
2878 + !*** ../node_modules/core-js/internals/error-stack-install.js ***!
2879 + \****************************************************************/
2288 2880 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2289 2881
2290 2882 "use strict";
2291 2883
2292 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2293 -var userAgent = __webpack_require__(/*! ../internals/environment-user-agent */ "../node_modules/core-js/internals/environment-user-agent.js");
2884 +var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
2885 +var clearErrorStack = __webpack_require__(/*! ../internals/error-stack-clear */ "../node_modules/core-js/internals/error-stack-clear.js");
2886 +var ERROR_STACK_INSTALLABLE = __webpack_require__(/*! ../internals/error-stack-installable */ "../node_modules/core-js/internals/error-stack-installable.js");
2294 2887
2295 -var process = globalThis.process;
2296 -var Deno = globalThis.Deno;
2297 -var versions = process && process.versions || Deno && Deno.version;
2298 -var v8 = versions && versions.v8;
2299 -var match, version;
2888 +// non-standard V8
2889 +var captureStackTrace = Error.captureStackTrace;
2300 2890
2301 -if (v8) {
2302 - match = v8.split('.');
2303 - // in old Chrome, versions of V8 isn't V8 = Chrome / 10
2304 - // but their correct versions are not interesting for us
2305 - version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
2306 -}
2891 +module.exports = function (error, C, stack, dropEntries) {
2892 + if (ERROR_STACK_INSTALLABLE) {
2893 + if (captureStackTrace) captureStackTrace(error, C);
2894 + else createNonEnumerableProperty(error, 'stack', clearErrorStack(stack, dropEntries));
2895 + }
2896 +};
2307 2897
2308 -// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
2309 -// so check `userAgent` even if `.v8` exists, but 0
2310 -if (!version && userAgent) {
2311 - match = userAgent.match(/Edge\/(\d+)/);
2312 - if (!match || match[1] >= 74) {
2313 - match = userAgent.match(/Chrome\/(\d+)/);
2314 - if (match) version = +match[1];
2315 - }
2316 -}
2317 2898
2318 -module.exports = version;
2899 +/***/ }),
2319 2900
2901 +/***/ "../node_modules/core-js/internals/error-stack-installable.js":
2902 +/*!********************************************************************!*\
2903 + !*** ../node_modules/core-js/internals/error-stack-installable.js ***!
2904 + \********************************************************************/
2905 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2320 2906
2907 +"use strict";
2908 +
2909 +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
2910 +var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js");
2911 +
2912 +module.exports = !fails(function () {
2913 + var error = Error('a');
2914 + if (!('stack' in error)) return true;
2915 + // eslint-disable-next-line es/no-object-defineproperty -- safe
2916 + Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
2917 + return error.stack !== 7;
2918 +});
2919 +
2920 +
2321 2921 /***/ }),
2322 2922
2323 2923 /***/ "../node_modules/core-js/internals/export.js":
2324 2924 /*!***************************************************!*\
@@ -2327,9 +2927,9 @@
2327 2927 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2328 2928
2329 2929 "use strict";
2330 2930
2331 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2931 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2332 2932 var getOwnPropertyDescriptor = (__webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../node_modules/core-js/internals/object-get-own-property-descriptor.js").f);
2333 2933 var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
2334 2934 var defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ "../node_modules/core-js/internals/define-built-in.js");
2335 2935 var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
@@ -2356,13 +2956,13 @@
2356 2956 var GLOBAL = options.global;
2357 2957 var STATIC = options.stat;
2358 2958 var FORCED, target, key, targetProperty, sourceProperty, descriptor;
2359 2959 if (GLOBAL) {
2360 - target = globalThis;
2960 + target = global;
2361 2961 } else if (STATIC) {
2362 - target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
2962 + target = global[TARGET] || defineGlobalProperty(TARGET, {});
2363 2963 } else {
2364 - target = globalThis[TARGET] && globalThis[TARGET].prototype;
2964 + target = (global[TARGET] || {}).prototype;
2365 2965 }
2366 2966 if (target) for (key in source) {
2367 2967 sourceProperty = source[key];
2368 2968 if (options.dontCallGetSet) {
@@ -2404,29 +3004,26 @@
2404 3004
2405 3005
2406 3006 /***/ }),
2407 3007
2408 -/***/ "../node_modules/core-js/internals/function-bind-context.js":
2409 -/*!******************************************************************!*\
2410 - !*** ../node_modules/core-js/internals/function-bind-context.js ***!
2411 - \******************************************************************/
3008 +/***/ "../node_modules/core-js/internals/function-apply.js":
3009 +/*!***********************************************************!*\
3010 + !*** ../node_modules/core-js/internals/function-apply.js ***!
3011 + \***********************************************************/
2412 3012 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2413 3013
2414 3014 "use strict";
2415 3015
2416 -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this-clause */ "../node_modules/core-js/internals/function-uncurry-this-clause.js");
2417 -var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
2418 3016 var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
2419 3017
2420 -var bind = uncurryThis(uncurryThis.bind);
3018 +var FunctionPrototype = Function.prototype;
3019 +var apply = FunctionPrototype.apply;
3020 +var call = FunctionPrototype.call;
2421 3021
2422 -// optional / simple context binding
2423 -module.exports = function (fn, that) {
2424 - aCallable(fn);
2425 - return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) {
2426 - return fn.apply(that, arguments);
2427 - };
2428 -};
3022 +// eslint-disable-next-line es/no-reflect -- safe
3023 +module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
3024 + return call.apply(apply, arguments);
3025 +});
2429 3026
2430 3027
2431 3028 /***/ }),
2432 3029
@@ -2460,9 +3057,9 @@
2460 3057
2461 3058 var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
2462 3059
2463 3060 var call = Function.prototype.call;
2464 -// eslint-disable-next-line es/no-function-prototype-bind -- safe
3061 +
2465 3062 module.exports = NATIVE_BIND ? call.bind(call) : function () {
2466 3063 return call.apply(call, arguments);
2467 3064 };
2468 3065
@@ -2497,24 +3094,24 @@
2497 3094
2498 3095
2499 3096 /***/ }),
2500 3097
2501 -/***/ "../node_modules/core-js/internals/function-uncurry-this-clause.js":
2502 -/*!*************************************************************************!*\
2503 - !*** ../node_modules/core-js/internals/function-uncurry-this-clause.js ***!
2504 - \*************************************************************************/
3098 +/***/ "../node_modules/core-js/internals/function-uncurry-this-accessor.js":
3099 +/*!***************************************************************************!*\
3100 + !*** ../node_modules/core-js/internals/function-uncurry-this-accessor.js ***!
3101 + \***************************************************************************/
2505 3102 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2506 3103
2507 3104 "use strict";
2508 3105
2509 -var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js");
2510 3106 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3107 +var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
2511 3108
2512 -module.exports = function (fn) {
2513 - // Nashorn bug:
2514 - // https://github.com/zloirock/core-js/issues/1128
2515 - // https://github.com/zloirock/core-js/issues/1130
2516 - if (classofRaw(fn) === 'Function') return uncurryThis(fn);
3109 +module.exports = function (object, key, method) {
3110 + try {
3111 + // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3112 + return uncurryThis(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));
3113 + } catch (error) { /* empty */ }
2517 3114 };
2518 3115
2519 3116
2520 3117 /***/ }),
@@ -2530,9 +3127,8 @@
2530 3127 var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
2531 3128
2532 3129 var FunctionPrototype = Function.prototype;
2533 3130 var call = FunctionPrototype.call;
2534 -// eslint-disable-next-line es/no-function-prototype-bind -- safe
2535 3131 var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
2536 3132
2537 3133 module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
2538 3134 return function () {
@@ -2550,9 +3146,9 @@
2550 3146 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2551 3147
2552 3148 "use strict";
2553 3149
2554 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
3150 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2555 3151 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
2556 3152
2557 3153 var aFunction = function (argument) {
2558 3154 return isCallable(argument) ? argument : undefined;
@@ -2558,85 +3154,14 @@
2558 3154 return isCallable(argument) ? argument : undefined;
2559 3155 };
2560 3156
2561 3157 module.exports = function (namespace, method) {
2562 - return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
3158 + return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method];
2563 3159 };
2564 3160
2565 3161
2566 3162 /***/ }),
2567 3163
2568 -/***/ "../node_modules/core-js/internals/get-iterator-direct.js":
2569 -/*!****************************************************************!*\
2570 - !*** ../node_modules/core-js/internals/get-iterator-direct.js ***!
2571 - \****************************************************************/
2572 -/***/ ((module) => {
2573 -
2574 -"use strict";
2575 -
2576 -// `GetIteratorDirect(obj)` abstract operation
2577 -// https://tc39.es/ecma262/#sec-getiteratordirect
2578 -module.exports = function (obj) {
2579 - return {
2580 - iterator: obj,
2581 - next: obj.next,
2582 - done: false
2583 - };
2584 -};
2585 -
2586 -
2587 -/***/ }),
2588 -
2589 -/***/ "../node_modules/core-js/internals/get-iterator-method.js":
2590 -/*!****************************************************************!*\
2591 - !*** ../node_modules/core-js/internals/get-iterator-method.js ***!
2592 - \****************************************************************/
2593 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2594 -
2595 -"use strict";
2596 -
2597 -var classof = __webpack_require__(/*! ../internals/classof */ "../node_modules/core-js/internals/classof.js");
2598 -var getMethod = __webpack_require__(/*! ../internals/get-method */ "../node_modules/core-js/internals/get-method.js");
2599 -var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ "../node_modules/core-js/internals/is-null-or-undefined.js");
2600 -var Iterators = __webpack_require__(/*! ../internals/iterators */ "../node_modules/core-js/internals/iterators.js");
2601 -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
2602 -
2603 -var ITERATOR = wellKnownSymbol('iterator');
2604 -
2605 -module.exports = function (it) {
2606 - if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR)
2607 - || getMethod(it, '@@iterator')
2608 - || Iterators[classof(it)];
2609 -};
2610 -
2611 -
2612 -/***/ }),
2613 -
2614 -/***/ "../node_modules/core-js/internals/get-iterator.js":
2615 -/*!*********************************************************!*\
2616 - !*** ../node_modules/core-js/internals/get-iterator.js ***!
2617 - \*********************************************************/
2618 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2619 -
2620 -"use strict";
2621 -
2622 -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
2623 -var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
2624 -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
2625 -var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../node_modules/core-js/internals/try-to-string.js");
2626 -var getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ "../node_modules/core-js/internals/get-iterator-method.js");
2627 -
2628 -var $TypeError = TypeError;
2629 -
2630 -module.exports = function (argument, usingIterator) {
2631 - var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
2632 - if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument));
2633 - throw new $TypeError(tryToString(argument) + ' is not iterable');
2634 -};
2635 -
2636 -
2637 -/***/ }),
2638 -
2639 3164 /***/ "../node_modules/core-js/internals/get-method.js":
2640 3165 /*!*******************************************************!*\
2641 3166 !*** ../node_modules/core-js/internals/get-method.js ***!
2642 3167 \*******************************************************/
@@ -2656,18 +3181,18 @@
2656 3181
2657 3182
2658 3183 /***/ }),
2659 3184
2660 -/***/ "../node_modules/core-js/internals/global-this.js":
2661 -/*!********************************************************!*\
2662 - !*** ../node_modules/core-js/internals/global-this.js ***!
2663 - \********************************************************/
3185 +/***/ "../node_modules/core-js/internals/global.js":
3186 +/*!***************************************************!*\
3187 + !*** ../node_modules/core-js/internals/global.js ***!
3188 + \***************************************************/
2664 3189 /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2665 3190
2666 3191 "use strict";
2667 3192
2668 3193 var check = function (it) {
2669 - return it && it.Math === Math && it;
3194 + return it && it.Math == Math && it;
2670 3195 };
2671 3196
2672 3197 // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
2673 3198 module.exports =
@@ -2676,11 +3201,10 @@
2676 3201 check(typeof window == 'object' && window) ||
2677 3202 // eslint-disable-next-line no-restricted-globals -- safe
2678 3203 check(typeof self == 'object' && self) ||
2679 3204 check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
2680 - check(typeof this == 'object' && this) ||
2681 3205 // eslint-disable-next-line no-new-func -- fallback
2682 - (function () { return this; })() || Function('return this')();
3206 + (function () { return this; })() || this || Function('return this')();
2683 3207
2684 3208
2685 3209 /***/ }),
2686 3210
@@ -2719,23 +3243,8 @@
2719 3243
2720 3244
2721 3245 /***/ }),
2722 3246
2723 -/***/ "../node_modules/core-js/internals/html.js":
2724 -/*!*************************************************!*\
2725 - !*** ../node_modules/core-js/internals/html.js ***!
2726 - \*************************************************/
2727 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2728 -
2729 -"use strict";
2730 -
2731 -var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js");
2732 -
2733 -module.exports = getBuiltIn('document', 'documentElement');
2734 -
2735 -
2736 -/***/ }),
2737 -
2738 3247 /***/ "../node_modules/core-js/internals/ie8-dom-define.js":
2739 3248 /*!***********************************************************!*\
2740 3249 !*** ../node_modules/core-js/internals/ie8-dom-define.js ***!
2741 3250 \***********************************************************/
@@ -2751,9 +3260,9 @@
2751 3260 module.exports = !DESCRIPTORS && !fails(function () {
2752 3261 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2753 3262 return Object.defineProperty(createElement('div'), 'a', {
2754 3263 get: function () { return 7; }
2755 - }).a !== 7;
3264 + }).a != 7;
2756 3265 });
2757 3266
2758 3267
2759 3268 /***/ }),
@@ -2778,14 +3287,44 @@
2778 3287 // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
2779 3288 // eslint-disable-next-line no-prototype-builtins -- safe
2780 3289 return !$Object('z').propertyIsEnumerable(0);
2781 3290 }) ? function (it) {
2782 - return classof(it) === 'String' ? split(it, '') : $Object(it);
3291 + return classof(it) == 'String' ? split(it, '') : $Object(it);
2783 3292 } : $Object;
2784 3293
2785 3294
2786 3295 /***/ }),
2787 3296
3297 +/***/ "../node_modules/core-js/internals/inherit-if-required.js":
3298 +/*!****************************************************************!*\
3299 + !*** ../node_modules/core-js/internals/inherit-if-required.js ***!
3300 + \****************************************************************/
3301 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3302 +
3303 +"use strict";
3304 +
3305 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3306 +var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
3307 +var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "../node_modules/core-js/internals/object-set-prototype-of.js");
3308 +
3309 +// makes subclassing work correct for wrapped built-ins
3310 +module.exports = function ($this, dummy, Wrapper) {
3311 + var NewTarget, NewTargetPrototype;
3312 + if (
3313 + // it can work only with native `setPrototypeOf`
3314 + setPrototypeOf &&
3315 + // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
3316 + isCallable(NewTarget = dummy.constructor) &&
3317 + NewTarget !== Wrapper &&
3318 + isObject(NewTargetPrototype = NewTarget.prototype) &&
3319 + NewTargetPrototype !== Wrapper.prototype
3320 + ) setPrototypeOf($this, NewTargetPrototype);
3321 + return $this;
3322 +};
3323 +
3324 +
3325 +/***/ }),
3326 +
2788 3327 /***/ "../node_modules/core-js/internals/inspect-source.js":
2789 3328 /*!***********************************************************!*\
2790 3329 !*** ../node_modules/core-js/internals/inspect-source.js ***!
2791 3330 \***********************************************************/
@@ -2810,8 +3349,30 @@
2810 3349
2811 3350
2812 3351 /***/ }),
2813 3352
3353 +/***/ "../node_modules/core-js/internals/install-error-cause.js":
3354 +/*!****************************************************************!*\
3355 + !*** ../node_modules/core-js/internals/install-error-cause.js ***!
3356 + \****************************************************************/
3357 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3358 +
3359 +"use strict";
3360 +
3361 +var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
3362 +var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
3363 +
3364 +// `InstallErrorCause` abstract operation
3365 +// https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
3366 +module.exports = function (O, options) {
3367 + if (isObject(options) && 'cause' in options) {
3368 + createNonEnumerableProperty(O, 'cause', options.cause);
3369 + }
3370 +};
3371 +
3372 +
3373 +/***/ }),
3374 +
2814 3375 /***/ "../node_modules/core-js/internals/internal-state.js":
2815 3376 /*!***********************************************************!*\
2816 3377 !*** ../node_modules/core-js/internals/internal-state.js ***!
2817 3378 \***********************************************************/
@@ -2819,9 +3380,9 @@
2819 3380
2820 3381 "use strict";
2821 3382
2822 3383 var NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/weak-map-basic-detection */ "../node_modules/core-js/internals/weak-map-basic-detection.js");
2823 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
3384 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2824 3385 var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
2825 3386 var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
2826 3387 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
2827 3388 var shared = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
@@ -2828,10 +3389,10 @@
2828 3389 var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../node_modules/core-js/internals/shared-key.js");
2829 3390 var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js");
2830 3391
2831 3392 var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
2832 -var TypeError = globalThis.TypeError;
2833 -var WeakMap = globalThis.WeakMap;
3393 +var TypeError = global.TypeError;
3394 +var WeakMap = global.WeakMap;
2834 3395 var set, get, has;
2835 3396
2836 3397 var enforce = function (it) {
2837 3398 return has(it) ? get(it) : set(it, {});
@@ -2840,9 +3401,9 @@
2840 3401 var getterFor = function (TYPE) {
2841 3402 return function (it) {
2842 3403 var state;
2843 3404 if (!isObject(it) || (state = get(it)).type !== TYPE) {
2844 - throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
3405 + throw TypeError('Incompatible receiver, ' + TYPE + ' required');
2845 3406 } return state;
2846 3407 };
2847 3408 };
2848 3409
@@ -2853,9 +3414,9 @@
2853 3414 store.has = store.has;
2854 3415 store.set = store.set;
2855 3416 /* eslint-enable no-self-assign -- prototype methods protection */
2856 3417 set = function (it, metadata) {
2857 - if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
3418 + if (store.has(it)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
2858 3419 metadata.facade = it;
2859 3420 store.set(it, metadata);
2860 3421 return metadata;
2861 3422 };
@@ -2868,9 +3429,9 @@
2868 3429 } else {
2869 3430 var STATE = sharedKey('state');
2870 3431 hiddenKeys[STATE] = true;
2871 3432 set = function (it, metadata) {
2872 - if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
3433 + if (hasOwn(it, STATE)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
2873 3434 metadata.facade = it;
2874 3435 createNonEnumerableProperty(it, STATE, metadata);
2875 3436 return metadata;
2876 3437 };
@@ -2892,65 +3453,23 @@
2892 3453
2893 3454
2894 3455 /***/ }),
2895 3456
2896 -/***/ "../node_modules/core-js/internals/is-array-iterator-method.js":
2897 -/*!*********************************************************************!*\
2898 - !*** ../node_modules/core-js/internals/is-array-iterator-method.js ***!
2899 - \*********************************************************************/
2900 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2901 -
2902 -"use strict";
2903 -
2904 -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
2905 -var Iterators = __webpack_require__(/*! ../internals/iterators */ "../node_modules/core-js/internals/iterators.js");
2906 -
2907 -var ITERATOR = wellKnownSymbol('iterator');
2908 -var ArrayPrototype = Array.prototype;
2909 -
2910 -// check on default Array iterator
2911 -module.exports = function (it) {
2912 - return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);
2913 -};
2914 -
2915 -
2916 -/***/ }),
2917 -
2918 -/***/ "../node_modules/core-js/internals/is-array.js":
2919 -/*!*****************************************************!*\
2920 - !*** ../node_modules/core-js/internals/is-array.js ***!
2921 - \*****************************************************/
2922 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2923 -
2924 -"use strict";
2925 -
2926 -var classof = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js");
2927 -
2928 -// `IsArray` abstract operation
2929 -// https://tc39.es/ecma262/#sec-isarray
2930 -// eslint-disable-next-line es/no-array-isarray -- safe
2931 -module.exports = Array.isArray || function isArray(argument) {
2932 - return classof(argument) === 'Array';
2933 -};
2934 -
2935 -
2936 -/***/ }),
2937 -
2938 3457 /***/ "../node_modules/core-js/internals/is-callable.js":
2939 3458 /*!********************************************************!*\
2940 3459 !*** ../node_modules/core-js/internals/is-callable.js ***!
2941 3460 \********************************************************/
2942 -/***/ ((module) => {
3461 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2943 3462
2944 3463 "use strict";
2945 3464
2946 -// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
2947 -var documentAll = typeof document == 'object' && document.all;
3465 +var $documentAll = __webpack_require__(/*! ../internals/document-all */ "../node_modules/core-js/internals/document-all.js");
2948 3466
3467 +var documentAll = $documentAll.all;
3468 +
2949 3469 // `IsCallable` abstract operation
2950 3470 // https://tc39.es/ecma262/#sec-iscallable
2951 -// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
2952 -module.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
3471 +module.exports = $documentAll.IS_HTMLDDA ? function (argument) {
2953 3472 return typeof argument == 'function' || argument === documentAll;
2954 3473 } : function (argument) {
2955 3474 return typeof argument == 'function';
2956 3475 };
@@ -2972,10 +3491,10 @@
2972 3491 var replacement = /#|\.prototype\./;
2973 3492
2974 3493 var isForced = function (feature, detection) {
2975 3494 var value = data[normalize(feature)];
2976 - return value === POLYFILL ? true
2977 - : value === NATIVE ? false
3495 + return value == POLYFILL ? true
3496 + : value == NATIVE ? false
2978 3497 : isCallable(detection) ? fails(detection)
2979 3498 : !!detection;
2980 3499 };
2981 3500
@@ -3017,10 +3536,15 @@
3017 3536
3018 3537 "use strict";
3019 3538
3020 3539 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3540 +var $documentAll = __webpack_require__(/*! ../internals/document-all */ "../node_modules/core-js/internals/document-all.js");
3021 3541
3022 -module.exports = function (it) {
3542 +var documentAll = $documentAll.all;
3543 +
3544 +module.exports = $documentAll.IS_HTMLDDA ? function (it) {
3545 + return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll;
3546 +} : function (it) {
3023 3547 return typeof it == 'object' ? it !== null : isCallable(it);
3024 3548 };
3025 3549
3026 3550
@@ -3063,377 +3587,8 @@
3063 3587
3064 3588
3065 3589 /***/ }),
3066 3590
3067 -/***/ "../node_modules/core-js/internals/iterate.js":
3068 -/*!****************************************************!*\
3069 - !*** ../node_modules/core-js/internals/iterate.js ***!
3070 - \****************************************************/
3071 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3072 -
3073 -"use strict";
3074 -
3075 -var bind = __webpack_require__(/*! ../internals/function-bind-context */ "../node_modules/core-js/internals/function-bind-context.js");
3076 -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
3077 -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
3078 -var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../node_modules/core-js/internals/try-to-string.js");
3079 -var isArrayIteratorMethod = __webpack_require__(/*! ../internals/is-array-iterator-method */ "../node_modules/core-js/internals/is-array-iterator-method.js");
3080 -var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../node_modules/core-js/internals/length-of-array-like.js");
3081 -var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js");
3082 -var getIterator = __webpack_require__(/*! ../internals/get-iterator */ "../node_modules/core-js/internals/get-iterator.js");
3083 -var getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ "../node_modules/core-js/internals/get-iterator-method.js");
3084 -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js");
3085 -
3086 -var $TypeError = TypeError;
3087 -
3088 -var Result = function (stopped, result) {
3089 - this.stopped = stopped;
3090 - this.result = result;
3091 -};
3092 -
3093 -var ResultPrototype = Result.prototype;
3094 -
3095 -module.exports = function (iterable, unboundFunction, options) {
3096 - var that = options && options.that;
3097 - var AS_ENTRIES = !!(options && options.AS_ENTRIES);
3098 - var IS_RECORD = !!(options && options.IS_RECORD);
3099 - var IS_ITERATOR = !!(options && options.IS_ITERATOR);
3100 - var INTERRUPTED = !!(options && options.INTERRUPTED);
3101 - var fn = bind(unboundFunction, that);
3102 - var iterator, iterFn, index, length, result, next, step;
3103 -
3104 - var stop = function (condition) {
3105 - if (iterator) iteratorClose(iterator, 'normal');
3106 - return new Result(true, condition);
3107 - };
3108 -
3109 - var callFn = function (value) {
3110 - if (AS_ENTRIES) {
3111 - anObject(value);
3112 - return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
3113 - } return INTERRUPTED ? fn(value, stop) : fn(value);
3114 - };
3115 -
3116 - if (IS_RECORD) {
3117 - iterator = iterable.iterator;
3118 - } else if (IS_ITERATOR) {
3119 - iterator = iterable;
3120 - } else {
3121 - iterFn = getIteratorMethod(iterable);
3122 - if (!iterFn) throw new $TypeError(tryToString(iterable) + ' is not iterable');
3123 - // optimisation for array iterators
3124 - if (isArrayIteratorMethod(iterFn)) {
3125 - for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
3126 - result = callFn(iterable[index]);
3127 - if (result && isPrototypeOf(ResultPrototype, result)) return result;
3128 - } return new Result(false);
3129 - }
3130 - iterator = getIterator(iterable, iterFn);
3131 - }
3132 -
3133 - next = IS_RECORD ? iterable.next : iterator.next;
3134 - while (!(step = call(next, iterator)).done) {
3135 - try {
3136 - result = callFn(step.value);
3137 - } catch (error) {
3138 - iteratorClose(iterator, 'throw', error);
3139 - }
3140 - if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
3141 - } return new Result(false);
3142 -};
3143 -
3144 -
3145 -/***/ }),
3146 -
3147 -/***/ "../node_modules/core-js/internals/iterator-close-all.js":
3148 -/*!***************************************************************!*\
3149 - !*** ../node_modules/core-js/internals/iterator-close-all.js ***!
3150 - \***************************************************************/
3151 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3152 -
3153 -"use strict";
3154 -
3155 -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js");
3156 -
3157 -module.exports = function (iters, kind, value) {
3158 - for (var i = iters.length - 1; i >= 0; i--) {
3159 - if (iters[i] === undefined) continue;
3160 - try {
3161 - value = iteratorClose(iters[i].iterator, kind, value);
3162 - } catch (error) {
3163 - kind = 'throw';
3164 - value = error;
3165 - }
3166 - }
3167 - if (kind === 'throw') throw value;
3168 - return value;
3169 -};
3170 -
3171 -
3172 -/***/ }),
3173 -
3174 -/***/ "../node_modules/core-js/internals/iterator-close.js":
3175 -/*!***********************************************************!*\
3176 - !*** ../node_modules/core-js/internals/iterator-close.js ***!
3177 - \***********************************************************/
3178 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3179 -
3180 -"use strict";
3181 -
3182 -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
3183 -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
3184 -var getMethod = __webpack_require__(/*! ../internals/get-method */ "../node_modules/core-js/internals/get-method.js");
3185 -
3186 -module.exports = function (iterator, kind, value) {
3187 - var innerResult, innerError;
3188 - anObject(iterator);
3189 - try {
3190 - innerResult = getMethod(iterator, 'return');
3191 - if (!innerResult) {
3192 - if (kind === 'throw') throw value;
3193 - return value;
3194 - }
3195 - innerResult = call(innerResult, iterator);
3196 - } catch (error) {
3197 - innerError = true;
3198 - innerResult = error;
3199 - }
3200 - if (kind === 'throw') throw value;
3201 - if (innerError) throw innerResult;
3202 - anObject(innerResult);
3203 - return value;
3204 -};
3205 -
3206 -
3207 -/***/ }),
3208 -
3209 -/***/ "../node_modules/core-js/internals/iterator-create-proxy.js":
3210 -/*!******************************************************************!*\
3211 - !*** ../node_modules/core-js/internals/iterator-create-proxy.js ***!
3212 - \******************************************************************/
3213 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3214 -
3215 -"use strict";
3216 -
3217 -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
3218 -var create = __webpack_require__(/*! ../internals/object-create */ "../node_modules/core-js/internals/object-create.js");
3219 -var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
3220 -var defineBuiltIns = __webpack_require__(/*! ../internals/define-built-ins */ "../node_modules/core-js/internals/define-built-ins.js");
3221 -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
3222 -var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "../node_modules/core-js/internals/internal-state.js");
3223 -var getMethod = __webpack_require__(/*! ../internals/get-method */ "../node_modules/core-js/internals/get-method.js");
3224 -var IteratorPrototype = (__webpack_require__(/*! ../internals/iterators-core */ "../node_modules/core-js/internals/iterators-core.js").IteratorPrototype);
3225 -var createIterResultObject = __webpack_require__(/*! ../internals/create-iter-result-object */ "../node_modules/core-js/internals/create-iter-result-object.js");
3226 -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js");
3227 -var iteratorCloseAll = __webpack_require__(/*! ../internals/iterator-close-all */ "../node_modules/core-js/internals/iterator-close-all.js");
3228 -
3229 -var TO_STRING_TAG = wellKnownSymbol('toStringTag');
3230 -var ITERATOR_HELPER = 'IteratorHelper';
3231 -var WRAP_FOR_VALID_ITERATOR = 'WrapForValidIterator';
3232 -var NORMAL = 'normal';
3233 -var THROW = 'throw';
3234 -var setInternalState = InternalStateModule.set;
3235 -
3236 -var createIteratorProxyPrototype = function (IS_ITERATOR) {
3237 - var getInternalState = InternalStateModule.getterFor(IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER);
3238 -
3239 - return defineBuiltIns(create(IteratorPrototype), {
3240 - next: function next() {
3241 - var state = getInternalState(this);
3242 - // for simplification:
3243 - // for `%WrapForValidIteratorPrototype%.next` or with `state.returnHandlerResult` our `nextHandler` returns `IterResultObject`
3244 - // for `%IteratorHelperPrototype%.next` - just a value
3245 - if (IS_ITERATOR) return state.nextHandler();
3246 - if (state.done) return createIterResultObject(undefined, true);
3247 - try {
3248 - var result = state.nextHandler();
3249 - return state.returnHandlerResult ? result : createIterResultObject(result, state.done);
3250 - } catch (error) {
3251 - state.done = true;
3252 - throw error;
3253 - }
3254 - },
3255 - 'return': function () {
3256 - var state = getInternalState(this);
3257 - var iterator = state.iterator;
3258 - state.done = true;
3259 - if (IS_ITERATOR) {
3260 - var returnMethod = getMethod(iterator, 'return');
3261 - return returnMethod ? call(returnMethod, iterator) : createIterResultObject(undefined, true);
3262 - }
3263 - if (state.inner) try {
3264 - iteratorClose(state.inner.iterator, NORMAL);
3265 - } catch (error) {
3266 - return iteratorClose(iterator, THROW, error);
3267 - }
3268 - if (state.openIters) try {
3269 - iteratorCloseAll(state.openIters, NORMAL);
3270 - } catch (error) {
3271 - return iteratorClose(iterator, THROW, error);
3272 - }
3273 - if (iterator) iteratorClose(iterator, NORMAL);
3274 - return createIterResultObject(undefined, true);
3275 - }
3276 - });
3277 -};
3278 -
3279 -var WrapForValidIteratorPrototype = createIteratorProxyPrototype(true);
3280 -var IteratorHelperPrototype = createIteratorProxyPrototype(false);
3281 -
3282 -createNonEnumerableProperty(IteratorHelperPrototype, TO_STRING_TAG, 'Iterator Helper');
3283 -
3284 -module.exports = function (nextHandler, IS_ITERATOR, RETURN_HANDLER_RESULT) {
3285 - var IteratorProxy = function Iterator(record, state) {
3286 - if (state) {
3287 - state.iterator = record.iterator;
3288 - state.next = record.next;
3289 - } else state = record;
3290 - state.type = IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER;
3291 - state.returnHandlerResult = !!RETURN_HANDLER_RESULT;
3292 - state.nextHandler = nextHandler;
3293 - state.counter = 0;
3294 - state.done = false;
3295 - setInternalState(this, state);
3296 - };
3297 -
3298 - IteratorProxy.prototype = IS_ITERATOR ? WrapForValidIteratorPrototype : IteratorHelperPrototype;
3299 -
3300 - return IteratorProxy;
3301 -};
3302 -
3303 -
3304 -/***/ }),
3305 -
3306 -/***/ "../node_modules/core-js/internals/iterator-helper-throws-on-invalid-iterator.js":
3307 -/*!***************************************************************************************!*\
3308 - !*** ../node_modules/core-js/internals/iterator-helper-throws-on-invalid-iterator.js ***!
3309 - \***************************************************************************************/
3310 -/***/ ((module) => {
3311 -
3312 -"use strict";
3313 -
3314 -// Should throw an error on invalid iterator
3315 -// https://issues.chromium.org/issues/336839115
3316 -module.exports = function (methodName, argument) {
3317 - // eslint-disable-next-line es/no-iterator -- required for testing
3318 - var method = typeof Iterator == 'function' && Iterator.prototype[methodName];
3319 - if (method) try {
3320 - method.call({ next: null }, argument).next();
3321 - } catch (error) {
3322 - return true;
3323 - }
3324 -};
3325 -
3326 -
3327 -/***/ }),
3328 -
3329 -/***/ "../node_modules/core-js/internals/iterator-helper-without-closing-on-early-error.js":
3330 -/*!*******************************************************************************************!*\
3331 - !*** ../node_modules/core-js/internals/iterator-helper-without-closing-on-early-error.js ***!
3332 - \*******************************************************************************************/
3333 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3334 -
3335 -"use strict";
3336 -
3337 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
3338 -
3339 -// https://github.com/tc39/ecma262/pull/3467
3340 -module.exports = function (METHOD_NAME, ExpectedError) {
3341 - var Iterator = globalThis.Iterator;
3342 - var IteratorPrototype = Iterator && Iterator.prototype;
3343 - var method = IteratorPrototype && IteratorPrototype[METHOD_NAME];
3344 -
3345 - var CLOSED = false;
3346 -
3347 - if (method) try {
3348 - method.call({
3349 - next: function () { return { done: true }; },
3350 - 'return': function () { CLOSED = true; }
3351 - }, -1);
3352 - } catch (error) {
3353 - // https://bugs.webkit.org/show_bug.cgi?id=291195
3354 - if (!(error instanceof ExpectedError)) CLOSED = false;
3355 - }
3356 -
3357 - if (!CLOSED) return method;
3358 -};
3359 -
3360 -
3361 -/***/ }),
3362 -
3363 -/***/ "../node_modules/core-js/internals/iterators-core.js":
3364 -/*!***********************************************************!*\
3365 - !*** ../node_modules/core-js/internals/iterators-core.js ***!
3366 - \***********************************************************/
3367 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3368 -
3369 -"use strict";
3370 -
3371 -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
3372 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3373 -var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
3374 -var create = __webpack_require__(/*! ../internals/object-create */ "../node_modules/core-js/internals/object-create.js");
3375 -var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "../node_modules/core-js/internals/object-get-prototype-of.js");
3376 -var defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ "../node_modules/core-js/internals/define-built-in.js");
3377 -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
3378 -var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
3379 -
3380 -var ITERATOR = wellKnownSymbol('iterator');
3381 -var BUGGY_SAFARI_ITERATORS = false;
3382 -
3383 -// `%IteratorPrototype%` object
3384 -// https://tc39.es/ecma262/#sec-%iteratorprototype%-object
3385 -var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
3386 -
3387 -/* eslint-disable es/no-array-prototype-keys -- safe */
3388 -if ([].keys) {
3389 - arrayIterator = [].keys();
3390 - // Safari 8 has buggy iterators w/o `next`
3391 - if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
3392 - else {
3393 - PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
3394 - if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
3395 - }
3396 -}
3397 -
3398 -var NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype) || fails(function () {
3399 - var test = {};
3400 - // FF44- legacy iterators case
3401 - return IteratorPrototype[ITERATOR].call(test) !== test;
3402 -});
3403 -
3404 -if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
3405 -else if (IS_PURE) IteratorPrototype = create(IteratorPrototype);
3406 -
3407 -// `%IteratorPrototype%[@@iterator]()` method
3408 -// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
3409 -if (!isCallable(IteratorPrototype[ITERATOR])) {
3410 - defineBuiltIn(IteratorPrototype, ITERATOR, function () {
3411 - return this;
3412 - });
3413 -}
3414 -
3415 -module.exports = {
3416 - IteratorPrototype: IteratorPrototype,
3417 - BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
3418 -};
3419 -
3420 -
3421 -/***/ }),
3422 -
3423 -/***/ "../node_modules/core-js/internals/iterators.js":
3424 -/*!******************************************************!*\
3425 - !*** ../node_modules/core-js/internals/iterators.js ***!
3426 - \******************************************************/
3427 -/***/ ((module) => {
3428 -
3429 -"use strict";
3430 -
3431 -module.exports = {};
3432 -
3433 -
3434 -/***/ }),
3435 -
3436 3591 /***/ "../node_modules/core-js/internals/length-of-array-like.js":
3437 3592 /*!*****************************************************************!*\
3438 3593 !*** ../node_modules/core-js/internals/length-of-array-like.js ***!
3439 3594 \*****************************************************************/
@@ -3485,9 +3640,9 @@
3485 3640 var TEMPLATE = String(String).split('String');
3486 3641
3487 3642 var makeBuiltIn = module.exports = function (value, name, options) {
3488 3643 if (stringSlice($String(name), 0, 7) === 'Symbol(') {
3489 - name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
3644 + name = '[' + replace($String(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
3490 3645 }
3491 3646 if (options && options.getter) name = 'get ' + name;
3492 3647 if (options && options.setter) name = 'set ' + name;
3493 3648 if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
@@ -3539,136 +3694,25 @@
3539 3694
3540 3695
3541 3696 /***/ }),
3542 3697
3543 -/***/ "../node_modules/core-js/internals/object-create.js":
3544 -/*!**********************************************************!*\
3545 - !*** ../node_modules/core-js/internals/object-create.js ***!
3546 - \**********************************************************/
3698 +/***/ "../node_modules/core-js/internals/normalize-string-argument.js":
3699 +/*!**********************************************************************!*\
3700 + !*** ../node_modules/core-js/internals/normalize-string-argument.js ***!
3701 + \**********************************************************************/
3547 3702 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3548 3703
3549 3704 "use strict";
3550 3705
3551 -/* global ActiveXObject -- old IE, WSH */
3552 -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
3553 -var definePropertiesModule = __webpack_require__(/*! ../internals/object-define-properties */ "../node_modules/core-js/internals/object-define-properties.js");
3554 -var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "../node_modules/core-js/internals/enum-bug-keys.js");
3555 -var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js");
3556 -var html = __webpack_require__(/*! ../internals/html */ "../node_modules/core-js/internals/html.js");
3557 -var documentCreateElement = __webpack_require__(/*! ../internals/document-create-element */ "../node_modules/core-js/internals/document-create-element.js");
3558 -var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../node_modules/core-js/internals/shared-key.js");
3706 +var toString = __webpack_require__(/*! ../internals/to-string */ "../node_modules/core-js/internals/to-string.js");
3559 3707
3560 -var GT = '>';
3561 -var LT = '<';
3562 -var PROTOTYPE = 'prototype';
3563 -var SCRIPT = 'script';
3564 -var IE_PROTO = sharedKey('IE_PROTO');
3565 -
3566 -var EmptyConstructor = function () { /* empty */ };
3567 -
3568 -var scriptTag = function (content) {
3569 - return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
3708 +module.exports = function (argument, $default) {
3709 + return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
3570 3710 };
3571 3711
3572 -// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
3573 -var NullProtoObjectViaActiveX = function (activeXDocument) {
3574 - activeXDocument.write(scriptTag(''));
3575 - activeXDocument.close();
3576 - var temp = activeXDocument.parentWindow.Object;
3577 - // eslint-disable-next-line no-useless-assignment -- avoid memory leak
3578 - activeXDocument = null;
3579 - return temp;
3580 -};
3581 3712
3582 -// Create object with fake `null` prototype: use iframe Object with cleared prototype
3583 -var NullProtoObjectViaIFrame = function () {
3584 - // Thrash, waste and sodomy: IE GC bug
3585 - var iframe = documentCreateElement('iframe');
3586 - var JS = 'java' + SCRIPT + ':';
3587 - var iframeDocument;
3588 - iframe.style.display = 'none';
3589 - html.appendChild(iframe);
3590 - // https://github.com/zloirock/core-js/issues/475
3591 - iframe.src = String(JS);
3592 - iframeDocument = iframe.contentWindow.document;
3593 - iframeDocument.open();
3594 - iframeDocument.write(scriptTag('document.F=Object'));
3595 - iframeDocument.close();
3596 - return iframeDocument.F;
3597 -};
3598 -
3599 -// Check for document.domain and active x support
3600 -// No need to use active x approach when document.domain is not set
3601 -// see https://github.com/es-shims/es5-shim/issues/150
3602 -// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
3603 -// avoid IE GC bug
3604 -var activeXDocument;
3605 -var NullProtoObject = function () {
3606 - try {
3607 - activeXDocument = new ActiveXObject('htmlfile');
3608 - } catch (error) { /* ignore */ }
3609 - NullProtoObject = typeof document != 'undefined'
3610 - ? document.domain && activeXDocument
3611 - ? NullProtoObjectViaActiveX(activeXDocument) // old IE
3612 - : NullProtoObjectViaIFrame()
3613 - : NullProtoObjectViaActiveX(activeXDocument); // WSH
3614 - var length = enumBugKeys.length;
3615 - while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
3616 - return NullProtoObject();
3617 -};
3618 -
3619 -hiddenKeys[IE_PROTO] = true;
3620 -
3621 -// `Object.create` method
3622 -// https://tc39.es/ecma262/#sec-object.create
3623 -// eslint-disable-next-line es/no-object-create -- safe
3624 -module.exports = Object.create || function create(O, Properties) {
3625 - var result;
3626 - if (O !== null) {
3627 - EmptyConstructor[PROTOTYPE] = anObject(O);
3628 - result = new EmptyConstructor();
3629 - EmptyConstructor[PROTOTYPE] = null;
3630 - // add "__proto__" for Object.getPrototypeOf polyfill
3631 - result[IE_PROTO] = O;
3632 - } else result = NullProtoObject();
3633 - return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
3634 -};
3635 -
3636 -
3637 3713 /***/ }),
3638 3714
3639 -/***/ "../node_modules/core-js/internals/object-define-properties.js":
3640 -/*!*********************************************************************!*\
3641 - !*** ../node_modules/core-js/internals/object-define-properties.js ***!
3642 - \*********************************************************************/
3643 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3644 -
3645 -"use strict";
3646 -
3647 -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
3648 -var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(/*! ../internals/v8-prototype-define-bug */ "../node_modules/core-js/internals/v8-prototype-define-bug.js");
3649 -var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
3650 -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
3651 -var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
3652 -var objectKeys = __webpack_require__(/*! ../internals/object-keys */ "../node_modules/core-js/internals/object-keys.js");
3653 -
3654 -// `Object.defineProperties` method
3655 -// https://tc39.es/ecma262/#sec-object.defineproperties
3656 -// eslint-disable-next-line es/no-object-defineproperties -- safe
3657 -exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
3658 - anObject(O);
3659 - var props = toIndexedObject(Properties);
3660 - var keys = objectKeys(Properties);
3661 - var length = keys.length;
3662 - var index = 0;
3663 - var key;
3664 - while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
3665 - return O;
3666 -};
3667 -
3668 -
3669 -/***/ }),
3670 -
3671 3715 /***/ "../node_modules/core-js/internals/object-define-property.js":
3672 3716 /*!*******************************************************************!*\
3673 3717 !*** ../node_modules/core-js/internals/object-define-property.js ***!
3674 3718 \*******************************************************************/
@@ -3714,9 +3758,9 @@
3714 3758 anObject(Attributes);
3715 3759 if (IE8_DOM_DEFINE) try {
3716 3760 return $defineProperty(O, P, Attributes);
3717 3761 } catch (error) { /* empty */ }
3718 - if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
3762 + if ('get' in Attributes || 'set' in Attributes) throw $TypeError('Accessors not supported');
3719 3763 if ('value' in Attributes) O[P] = Attributes.value;
3720 3764 return O;
3721 3765 };
3722 3766
@@ -3793,41 +3837,8 @@
3793 3837
3794 3838
3795 3839 /***/ }),
3796 3840
3797 -/***/ "../node_modules/core-js/internals/object-get-prototype-of.js":
3798 -/*!********************************************************************!*\
3799 - !*** ../node_modules/core-js/internals/object-get-prototype-of.js ***!
3800 - \********************************************************************/
3801 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3802 -
3803 -"use strict";
3804 -
3805 -var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
3806 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3807 -var toObject = __webpack_require__(/*! ../internals/to-object */ "../node_modules/core-js/internals/to-object.js");
3808 -var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../node_modules/core-js/internals/shared-key.js");
3809 -var CORRECT_PROTOTYPE_GETTER = __webpack_require__(/*! ../internals/correct-prototype-getter */ "../node_modules/core-js/internals/correct-prototype-getter.js");
3810 -
3811 -var IE_PROTO = sharedKey('IE_PROTO');
3812 -var $Object = Object;
3813 -var ObjectPrototype = $Object.prototype;
3814 -
3815 -// `Object.getPrototypeOf` method
3816 -// https://tc39.es/ecma262/#sec-object.getprototypeof
3817 -// eslint-disable-next-line es/no-object-getprototypeof -- safe
3818 -module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
3819 - var object = toObject(O);
3820 - if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
3821 - var constructor = object.constructor;
3822 - if (isCallable(constructor) && object instanceof constructor) {
3823 - return constructor.prototype;
3824 - } return object instanceof $Object ? ObjectPrototype : null;
3825 -};
3826 -
3827 -
3828 -/***/ }),
3829 -
3830 3841 /***/ "../node_modules/core-js/internals/object-is-prototype-of.js":
3831 3842 /*!*******************************************************************!*\
3832 3843 !*** ../node_modules/core-js/internals/object-is-prototype-of.js ***!
3833 3844 \*******************************************************************/
@@ -3873,29 +3884,8 @@
3873 3884
3874 3885
3875 3886 /***/ }),
3876 3887
3877 -/***/ "../node_modules/core-js/internals/object-keys.js":
3878 -/*!********************************************************!*\
3879 - !*** ../node_modules/core-js/internals/object-keys.js ***!
3880 - \********************************************************/
3881 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3882 -
3883 -"use strict";
3884 -
3885 -var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "../node_modules/core-js/internals/object-keys-internal.js");
3886 -var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "../node_modules/core-js/internals/enum-bug-keys.js");
3887 -
3888 -// `Object.keys` method
3889 -// https://tc39.es/ecma262/#sec-object.keys
3890 -// eslint-disable-next-line es/no-object-keys -- safe
3891 -module.exports = Object.keys || function keys(O) {
3892 - return internalObjectKeys(O, enumBugKeys);
3893 -};
3894 -
3895 -
3896 -/***/ }),
3897 -
3898 3888 /***/ "../node_modules/core-js/internals/object-property-is-enumerable.js":
3899 3889 /*!**************************************************************************!*\
3900 3890 !*** ../node_modules/core-js/internals/object-property-is-enumerable.js ***!
3901 3891 \**************************************************************************/
@@ -3919,8 +3909,46 @@
3919 3909
3920 3910
3921 3911 /***/ }),
3922 3912
3913 +/***/ "../node_modules/core-js/internals/object-set-prototype-of.js":
3914 +/*!********************************************************************!*\
3915 + !*** ../node_modules/core-js/internals/object-set-prototype-of.js ***!
3916 + \********************************************************************/
3917 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3918 +
3919 +"use strict";
3920 +
3921 +/* eslint-disable no-proto -- safe */
3922 +var uncurryThisAccessor = __webpack_require__(/*! ../internals/function-uncurry-this-accessor */ "../node_modules/core-js/internals/function-uncurry-this-accessor.js");
3923 +var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
3924 +var aPossiblePrototype = __webpack_require__(/*! ../internals/a-possible-prototype */ "../node_modules/core-js/internals/a-possible-prototype.js");
3925 +
3926 +// `Object.setPrototypeOf` method
3927 +// https://tc39.es/ecma262/#sec-object.setprototypeof
3928 +// Works with __proto__ only. Old v8 can't work with null proto objects.
3929 +// eslint-disable-next-line es/no-object-setprototypeof -- safe
3930 +module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
3931 + var CORRECT_SETTER = false;
3932 + var test = {};
3933 + var setter;
3934 + try {
3935 + setter = uncurryThisAccessor(Object.prototype, '__proto__', 'set');
3936 + setter(test, []);
3937 + CORRECT_SETTER = test instanceof Array;
3938 + } catch (error) { /* empty */ }
3939 + return function setPrototypeOf(O, proto) {
3940 + anObject(O);
3941 + aPossiblePrototype(proto);
3942 + if (CORRECT_SETTER) setter(O, proto);
3943 + else O.__proto__ = proto;
3944 + return O;
3945 + };
3946 +}() : undefined);
3947 +
3948 +
3949 +/***/ }),
3950 +
3923 3951 /***/ "../node_modules/core-js/internals/ordinary-to-primitive.js":
3924 3952 /*!******************************************************************!*\
3925 3953 !*** ../node_modules/core-js/internals/ordinary-to-primitive.js ***!
3926 3954 \******************************************************************/
@@ -3940,9 +3968,9 @@
3940 3968 var fn, val;
3941 3969 if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
3942 3970 if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
3943 3971 if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
3944 - throw new $TypeError("Can't convert object to primitive value");
3972 + throw $TypeError("Can't convert object to primitive value");
3945 3973 };
3946 3974
3947 3975
3948 3976 /***/ }),
@@ -3972,8 +4000,29 @@
3972 4000
3973 4001
3974 4002 /***/ }),
3975 4003
4004 +/***/ "../node_modules/core-js/internals/proxy-accessor.js":
4005 +/*!***********************************************************!*\
4006 + !*** ../node_modules/core-js/internals/proxy-accessor.js ***!
4007 + \***********************************************************/
4008 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4009 +
4010 +"use strict";
4011 +
4012 +var defineProperty = (__webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js").f);
4013 +
4014 +module.exports = function (Target, Source, key) {
4015 + key in Target || defineProperty(Target, key, {
4016 + configurable: true,
4017 + get: function () { return Source[key]; },
4018 + set: function (it) { Source[key] = it; }
4019 + });
4020 +};
4021 +
4022 +
4023 +/***/ }),
4024 +
3976 4025 /***/ "../node_modules/core-js/internals/require-object-coercible.js":
3977 4026 /*!*********************************************************************!*\
3978 4027 !*** ../node_modules/core-js/internals/require-object-coercible.js ***!
3979 4028 \*********************************************************************/
@@ -3987,9 +4036,9 @@
3987 4036
3988 4037 // `RequireObjectCoercible` abstract operation
3989 4038 // https://tc39.es/ecma262/#sec-requireobjectcoercible
3990 4039 module.exports = function (it) {
3991 - if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
4040 + if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it);
3992 4041 return it;
3993 4042 };
3994 4043
3995 4044
@@ -4022,22 +4071,15 @@
4022 4071 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4023 4072
4024 4073 "use strict";
4025 4074
4026 -var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
4027 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
4075 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4028 4076 var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
4029 4077
4030 4078 var SHARED = '__core-js_shared__';
4031 -var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
4079 +var store = global[SHARED] || defineGlobalProperty(SHARED, {});
4032 4080
4033 -(store.versions || (store.versions = [])).push({
4034 - version: '3.46.0',
4035 - mode: IS_PURE ? 'pure' : 'global',
4036 - copyright: '© 2014-2025 Denis Pushkarev (zloirock.ru), 2025 CoreJS Company (core-js.io)',
4037 - license: 'https://github.com/zloirock/core-js/blob/v3.46.0/LICENSE',
4038 - source: 'https://github.com/zloirock/core-js'
4039 -});
4081 +module.exports = store;
4040 4082
4041 4083
4042 4084 /***/ }),
4043 4085
@@ -4048,13 +4090,20 @@
4048 4090 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4049 4091
4050 4092 "use strict";
4051 4093
4094 +var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
4052 4095 var store = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
4053 4096
4054 -module.exports = function (key, value) {
4055 - return store[key] || (store[key] = value || {});
4056 -};
4097 +(module.exports = function (key, value) {
4098 + return store[key] || (store[key] = value !== undefined ? value : {});
4099 +})('versions', []).push({
4100 + version: '3.32.0',
4101 + mode: IS_PURE ? 'pure' : 'global',
4102 + copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
4103 + license: 'https://github.com/zloirock/core-js/blob/v3.32.0/LICENSE',
4104 + source: 'https://github.com/zloirock/core-js'
4105 +});
4057 4106
4058 4107
4059 4108 /***/ }),
4060 4109
@@ -4066,17 +4115,17 @@
4066 4115
4067 4116 "use strict";
4068 4117
4069 4118 /* eslint-disable es/no-symbol -- required for testing */
4070 -var V8_VERSION = __webpack_require__(/*! ../internals/environment-v8-version */ "../node_modules/core-js/internals/environment-v8-version.js");
4119 +var V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ "../node_modules/core-js/internals/engine-v8-version.js");
4071 4120 var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
4072 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
4121 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4073 4122
4074 -var $String = globalThis.String;
4123 +var $String = global.String;
4075 4124
4076 4125 // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
4077 4126 module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
4078 - var symbol = Symbol('symbol detection');
4127 + var symbol = Symbol();
4079 4128 // Chrome 38 Symbol has incorrect toString conversion
4080 4129 // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
4081 4130 // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
4082 4131 // of course, fail.
@@ -4166,10 +4215,9 @@
4166 4215
4167 4216 // `ToLength` abstract operation
4168 4217 // https://tc39.es/ecma262/#sec-tolength
4169 4218 module.exports = function (argument) {
4170 - var len = toIntegerOrInfinity(argument);
4171 - return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
4219 + return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
4172 4220 };
4173 4221
4174 4222
4175 4223 /***/ }),
@@ -4222,9 +4270,9 @@
4222 4270 if (exoticToPrim) {
4223 4271 if (pref === undefined) pref = 'default';
4224 4272 result = call(exoticToPrim, input, pref);
4225 4273 if (!isObject(result) || isSymbol(result)) return result;
4226 - throw new $TypeError("Can't convert object to primitive value");
4274 + throw $TypeError("Can't convert object to primitive value");
4227 4275 }
4228 4276 if (pref === undefined) pref = 'number';
4229 4277 return ordinaryToPrimitive(input, pref);
4230 4278 };
@@ -4272,8 +4320,28 @@
4272 4320
4273 4321
4274 4322 /***/ }),
4275 4323
4324 +/***/ "../node_modules/core-js/internals/to-string.js":
4325 +/*!******************************************************!*\
4326 + !*** ../node_modules/core-js/internals/to-string.js ***!
4327 + \******************************************************/
4328 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4329 +
4330 +"use strict";
4331 +
4332 +var classof = __webpack_require__(/*! ../internals/classof */ "../node_modules/core-js/internals/classof.js");
4333 +
4334 +var $String = String;
4335 +
4336 +module.exports = function (argument) {
4337 + if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
4338 + return $String(argument);
4339 +};
4340 +
4341 +
4342 +/***/ }),
4343 +
4276 4344 /***/ "../node_modules/core-js/internals/try-to-string.js":
4277 4345 /*!**********************************************************!*\
4278 4346 !*** ../node_modules/core-js/internals/try-to-string.js ***!
4279 4347 \**********************************************************/
@@ -4305,9 +4373,9 @@
4305 4373 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
4306 4374
4307 4375 var id = 0;
4308 4376 var postfix = Math.random();
4309 -var toString = uncurryThis(1.1.toString);
4377 +var toString = uncurryThis(1.0.toString);
4310 4378
4311 4379 module.exports = function (key) {
4312 4380 return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
4313 4381 };
@@ -4325,11 +4393,11 @@
4325 4393
4326 4394 /* eslint-disable es/no-symbol -- required for testing */
4327 4395 var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
4328 4396
4329 -module.exports = NATIVE_SYMBOL &&
4330 - !Symbol.sham &&
4331 - typeof Symbol.iterator == 'symbol';
4397 +module.exports = NATIVE_SYMBOL
4398 + && !Symbol.sham
4399 + && typeof Symbol.iterator == 'symbol';
4332 4400
4333 4401
4334 4402 /***/ }),
4335 4403
@@ -4350,9 +4418,9 @@
4350 4418 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
4351 4419 return Object.defineProperty(function () { /* empty */ }, 'prototype', {
4352 4420 value: 42,
4353 4421 writable: false
4354 - }).prototype !== 42;
4422 + }).prototype != 42;
4355 4423 });
4356 4424
4357 4425
4358 4426 /***/ }),
@@ -4364,12 +4432,12 @@
4364 4432 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4365 4433
4366 4434 "use strict";
4367 4435
4368 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
4436 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4369 4437 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
4370 4438
4371 -var WeakMap = globalThis.WeakMap;
4439 +var WeakMap = global.WeakMap;
4372 4440
4373 4441 module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
4374 4442
4375 4443
@@ -4382,9 +4450,9 @@
4382 4450 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4383 4451
4384 4452 "use strict";
4385 4453
4386 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
4454 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4387 4455 var shared = __webpack_require__(/*! ../internals/shared */ "../node_modules/core-js/internals/shared.js");
4388 4456 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
4389 4457 var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js");
4390 4458 var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
@@ -4389,9 +4457,9 @@
4389 4457 var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js");
4390 4458 var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
4391 4459 var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../node_modules/core-js/internals/use-symbol-as-uid.js");
4392 4460
4393 -var Symbol = globalThis.Symbol;
4461 +var Symbol = global.Symbol;
4394 4462 var WellKnownSymbolsStore = shared('wks');
4395 4463 var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
4396 4464
4397 4465 module.exports = function (name) {
@@ -4404,407 +4472,164 @@
4404 4472
4405 4473
4406 4474 /***/ }),
4407 4475
4408 -/***/ "../node_modules/core-js/modules/es.array.push.js":
4409 -/*!********************************************************!*\
4410 - !*** ../node_modules/core-js/modules/es.array.push.js ***!
4411 - \********************************************************/
4412 -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4476 +/***/ "../node_modules/core-js/internals/wrap-error-constructor-with-cause.js":
4477 +/*!******************************************************************************!*\
4478 + !*** ../node_modules/core-js/internals/wrap-error-constructor-with-cause.js ***!
4479 + \******************************************************************************/
4480 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4413 4481
4414 4482 "use strict";
4415 4483
4416 -var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js");
4417 -var toObject = __webpack_require__(/*! ../internals/to-object */ "../node_modules/core-js/internals/to-object.js");
4418 -var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../node_modules/core-js/internals/length-of-array-like.js");
4419 -var setArrayLength = __webpack_require__(/*! ../internals/array-set-length */ "../node_modules/core-js/internals/array-set-length.js");
4420 -var doesNotExceedSafeInteger = __webpack_require__(/*! ../internals/does-not-exceed-safe-integer */ "../node_modules/core-js/internals/does-not-exceed-safe-integer.js");
4421 -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
4422 -
4423 -var INCORRECT_TO_LENGTH = fails(function () {
4424 - return [].push.call({ length: 0x100000000 }, 1) !== 4294967297;
4425 -});
4426 -
4427 -// V8 <= 121 and Safari <= 15.4; FF < 23 throws InternalError
4428 -// https://bugs.chromium.org/p/v8/issues/detail?id=12681
4429 -var properErrorOnNonWritableLength = function () {
4430 - try {
4431 - // eslint-disable-next-line es/no-object-defineproperty -- safe
4432 - Object.defineProperty([], 'length', { writable: false }).push();
4433 - } catch (error) {
4434 - return error instanceof TypeError;
4435 - }
4436 -};
4437 -
4438 -var FORCED = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();
4439 -
4440 -// `Array.prototype.push` method
4441 -// https://tc39.es/ecma262/#sec-array.prototype.push
4442 -$({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
4443 - // eslint-disable-next-line no-unused-vars -- required for `.length`
4444 - push: function push(item) {
4445 - var O = toObject(this);
4446 - var len = lengthOfArrayLike(O);
4447 - var argCount = arguments.length;
4448 - doesNotExceedSafeInteger(len + argCount);
4449 - for (var i = 0; i < argCount; i++) {
4450 - O[len] = arguments[i];
4451 - len++;
4452 - }
4453 - setArrayLength(O, len);
4454 - return len;
4455 - }
4456 -});
4457 -
4458 -
4459 -/***/ }),
4460 -
4461 -/***/ "../node_modules/core-js/modules/es.iterator.constructor.js":
4462 -/*!******************************************************************!*\
4463 - !*** ../node_modules/core-js/modules/es.iterator.constructor.js ***!
4464 - \******************************************************************/
4465 -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4466 -
4467 -"use strict";
4468 -
4469 -var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js");
4470 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
4471 -var anInstance = __webpack_require__(/*! ../internals/an-instance */ "../node_modules/core-js/internals/an-instance.js");
4472 -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
4473 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
4474 -var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "../node_modules/core-js/internals/object-get-prototype-of.js");
4475 -var defineBuiltInAccessor = __webpack_require__(/*! ../internals/define-built-in-accessor */ "../node_modules/core-js/internals/define-built-in-accessor.js");
4476 -var createProperty = __webpack_require__(/*! ../internals/create-property */ "../node_modules/core-js/internals/create-property.js");
4477 -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
4484 +var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js");
4478 4485 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
4479 -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
4480 -var IteratorPrototype = (__webpack_require__(/*! ../internals/iterators-core */ "../node_modules/core-js/internals/iterators-core.js").IteratorPrototype);
4486 +var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
4487 +var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js");
4488 +var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "../node_modules/core-js/internals/object-set-prototype-of.js");
4489 +var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "../node_modules/core-js/internals/copy-constructor-properties.js");
4490 +var proxyAccessor = __webpack_require__(/*! ../internals/proxy-accessor */ "../node_modules/core-js/internals/proxy-accessor.js");
4491 +var inheritIfRequired = __webpack_require__(/*! ../internals/inherit-if-required */ "../node_modules/core-js/internals/inherit-if-required.js");
4492 +var normalizeStringArgument = __webpack_require__(/*! ../internals/normalize-string-argument */ "../node_modules/core-js/internals/normalize-string-argument.js");
4493 +var installErrorCause = __webpack_require__(/*! ../internals/install-error-cause */ "../node_modules/core-js/internals/install-error-cause.js");
4494 +var installErrorStack = __webpack_require__(/*! ../internals/error-stack-install */ "../node_modules/core-js/internals/error-stack-install.js");
4481 4495 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
4482 4496 var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
4483 4497
4484 -var CONSTRUCTOR = 'constructor';
4485 -var ITERATOR = 'Iterator';
4486 -var TO_STRING_TAG = wellKnownSymbol('toStringTag');
4498 +module.exports = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
4499 + var STACK_TRACE_LIMIT = 'stackTraceLimit';
4500 + var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
4501 + var path = FULL_NAME.split('.');
4502 + var ERROR_NAME = path[path.length - 1];
4503 + var OriginalError = getBuiltIn.apply(null, path);
4487 4504
4488 -var $TypeError = TypeError;
4489 -var NativeIterator = globalThis[ITERATOR];
4505 + if (!OriginalError) return;
4490 4506
4491 -// FF56- have non-standard global helper `Iterator`
4492 -var FORCED = IS_PURE
4493 - || !isCallable(NativeIterator)
4494 - || NativeIterator.prototype !== IteratorPrototype
4495 - // FF44- non-standard `Iterator` passes previous tests
4496 - || !fails(function () { NativeIterator({}); });
4507 + var OriginalErrorPrototype = OriginalError.prototype;
4497 4508
4498 -var IteratorConstructor = function Iterator() {
4499 - anInstance(this, IteratorPrototype);
4500 - if (getPrototypeOf(this) === IteratorPrototype) throw new $TypeError('Abstract class Iterator not directly constructable');
4501 -};
4509 + // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
4510 + if (!IS_PURE && hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
4502 4511
4503 -var defineIteratorPrototypeAccessor = function (key, value) {
4504 - if (DESCRIPTORS) {
4505 - defineBuiltInAccessor(IteratorPrototype, key, {
4506 - configurable: true,
4507 - get: function () {
4508 - return value;
4509 - },
4510 - set: function (replacement) {
4511 - anObject(this);
4512 - if (this === IteratorPrototype) throw new $TypeError("You can't redefine this property");
4513 - if (hasOwn(this, key)) this[key] = replacement;
4514 - else createProperty(this, key, replacement);
4515 - }
4516 - });
4517 - } else IteratorPrototype[key] = value;
4518 -};
4512 + if (!FORCED) return OriginalError;
4519 4513
4520 -if (!hasOwn(IteratorPrototype, TO_STRING_TAG)) defineIteratorPrototypeAccessor(TO_STRING_TAG, ITERATOR);
4514 + var BaseError = getBuiltIn('Error');
4521 4515
4522 -if (FORCED || !hasOwn(IteratorPrototype, CONSTRUCTOR) || IteratorPrototype[CONSTRUCTOR] === Object) {
4523 - defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
4524 -}
4516 + var WrappedError = wrapper(function (a, b) {
4517 + var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
4518 + var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
4519 + if (message !== undefined) createNonEnumerableProperty(result, 'message', message);
4520 + installErrorStack(result, WrappedError, result.stack, 2);
4521 + if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
4522 + if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
4523 + return result;
4524 + });
4525 4525
4526 -IteratorConstructor.prototype = IteratorPrototype;
4526 + WrappedError.prototype = OriginalErrorPrototype;
4527 4527
4528 -// `Iterator` constructor
4529 -// https://tc39.es/ecma262/#sec-iterator
4530 -$({ global: true, constructor: true, forced: FORCED }, {
4531 - Iterator: IteratorConstructor
4532 -});
4528 + if (ERROR_NAME !== 'Error') {
4529 + if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError);
4530 + else copyConstructorProperties(WrappedError, BaseError, { name: true });
4531 + } else if (DESCRIPTORS && STACK_TRACE_LIMIT in OriginalError) {
4532 + proxyAccessor(WrappedError, OriginalError, STACK_TRACE_LIMIT);
4533 + proxyAccessor(WrappedError, OriginalError, 'prepareStackTrace');
4534 + }
4533 4535
4536 + copyConstructorProperties(WrappedError, OriginalError);
4534 4537
4535 -/***/ }),
4536 -
4537 -/***/ "../node_modules/core-js/modules/es.iterator.filter.js":
4538 -/*!*************************************************************!*\
4539 - !*** ../node_modules/core-js/modules/es.iterator.filter.js ***!
4540 - \*************************************************************/
4541 -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4542 -
4543 -"use strict";
4544 -
4545 -var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js");
4546 -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
4547 -var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
4548 -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
4549 -var getIteratorDirect = __webpack_require__(/*! ../internals/get-iterator-direct */ "../node_modules/core-js/internals/get-iterator-direct.js");
4550 -var createIteratorProxy = __webpack_require__(/*! ../internals/iterator-create-proxy */ "../node_modules/core-js/internals/iterator-create-proxy.js");
4551 -var callWithSafeIterationClosing = __webpack_require__(/*! ../internals/call-with-safe-iteration-closing */ "../node_modules/core-js/internals/call-with-safe-iteration-closing.js");
4552 -var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
4553 -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js");
4554 -var iteratorHelperThrowsOnInvalidIterator = __webpack_require__(/*! ../internals/iterator-helper-throws-on-invalid-iterator */ "../node_modules/core-js/internals/iterator-helper-throws-on-invalid-iterator.js");
4555 -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");
4556 -
4557 -var FILTER_WITHOUT_THROWING_ON_INVALID_ITERATOR = !IS_PURE && !iteratorHelperThrowsOnInvalidIterator('filter', function () { /* empty */ });
4558 -var filterWithoutClosingOnEarlyError = !IS_PURE && !FILTER_WITHOUT_THROWING_ON_INVALID_ITERATOR
4559 - && iteratorHelperWithoutClosingOnEarlyError('filter', TypeError);
4560 -
4561 -var FORCED = IS_PURE || FILTER_WITHOUT_THROWING_ON_INVALID_ITERATOR || filterWithoutClosingOnEarlyError;
4562 -
4563 -var IteratorProxy = createIteratorProxy(function () {
4564 - var iterator = this.iterator;
4565 - var predicate = this.predicate;
4566 - var next = this.next;
4567 - var result, done, value;
4568 - while (true) {
4569 - result = anObject(call(next, iterator));
4570 - done = this.done = !!result.done;
4571 - if (done) return;
4572 - value = result.value;
4573 - if (callWithSafeIterationClosing(iterator, predicate, [value, this.counter++], true)) return value;
4574 - }
4575 -});
4576 -
4577 -// `Iterator.prototype.filter` method
4578 -// https://tc39.es/ecma262/#sec-iterator.prototype.filter
4579 -$({ target: 'Iterator', proto: true, real: true, forced: FORCED }, {
4580 - filter: function filter(predicate) {
4581 - anObject(this);
4582 - try {
4583 - aCallable(predicate);
4584 - } catch (error) {
4585 - iteratorClose(this, 'throw', error);
4538 + if (!IS_PURE) try {
4539 + // Safari 13- bug: WebAssembly errors does not have a proper `.name`
4540 + if (OriginalErrorPrototype.name !== ERROR_NAME) {
4541 + createNonEnumerableProperty(OriginalErrorPrototype, 'name', ERROR_NAME);
4586 4542 }
4543 + OriginalErrorPrototype.constructor = WrappedError;
4544 + } catch (error) { /* empty */ }
4587 4545
4588 - if (filterWithoutClosingOnEarlyError) return call(filterWithoutClosingOnEarlyError, this, predicate);
4546 + return WrappedError;
4547 +};
4589 4548
4590 - return new IteratorProxy(getIteratorDirect(this), {
4591 - predicate: predicate
4592 - });
4593 - }
4594 -});
4595 4549
4596 -
4597 4550 /***/ }),
4598 4551
4599 -/***/ "../node_modules/core-js/modules/es.iterator.find.js":
4600 -/*!***********************************************************!*\
4601 - !*** ../node_modules/core-js/modules/es.iterator.find.js ***!
4602 - \***********************************************************/
4552 +/***/ "../node_modules/core-js/modules/es.error.cause.js":
4553 +/*!*********************************************************!*\
4554 + !*** ../node_modules/core-js/modules/es.error.cause.js ***!
4555 + \*********************************************************/
4603 4556 /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4604 4557
4605 4558 "use strict";
4606 4559
4560 +/* eslint-disable no-unused-vars -- required for functions `.length` */
4607 4561 var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js");
4608 -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
4609 -var iterate = __webpack_require__(/*! ../internals/iterate */ "../node_modules/core-js/internals/iterate.js");
4610 -var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
4611 -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
4612 -var getIteratorDirect = __webpack_require__(/*! ../internals/get-iterator-direct */ "../node_modules/core-js/internals/get-iterator-direct.js");
4613 -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js");
4614 -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");
4562 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4563 +var apply = __webpack_require__(/*! ../internals/function-apply */ "../node_modules/core-js/internals/function-apply.js");
4564 +var wrapErrorConstructorWithCause = __webpack_require__(/*! ../internals/wrap-error-constructor-with-cause */ "../node_modules/core-js/internals/wrap-error-constructor-with-cause.js");
4615 4565
4616 -var findWithoutClosingOnEarlyError = iteratorHelperWithoutClosingOnEarlyError('find', TypeError);
4566 +var WEB_ASSEMBLY = 'WebAssembly';
4567 +var WebAssembly = global[WEB_ASSEMBLY];
4617 4568
4618 -// `Iterator.prototype.find` method
4619 -// https://tc39.es/ecma262/#sec-iterator.prototype.find
4620 -$({ target: 'Iterator', proto: true, real: true, forced: findWithoutClosingOnEarlyError }, {
4621 - find: function find(predicate) {
4622 - anObject(this);
4623 - try {
4624 - aCallable(predicate);
4625 - } catch (error) {
4626 - iteratorClose(this, 'throw', error);
4627 - }
4569 +var FORCED = Error('e', { cause: 7 }).cause !== 7;
4628 4570
4629 - if (findWithoutClosingOnEarlyError) return call(findWithoutClosingOnEarlyError, this, predicate);
4571 +var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
4572 + var O = {};
4573 + O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
4574 + $({ global: true, constructor: true, arity: 1, forced: FORCED }, O);
4575 +};
4630 4576
4631 - var record = getIteratorDirect(this);
4632 - var counter = 0;
4633 - return iterate(record, function (value, stop) {
4634 - if (predicate(value, counter++)) return stop(value);
4635 - }, { IS_RECORD: true, INTERRUPTED: true }).result;
4577 +var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
4578 + if (WebAssembly && WebAssembly[ERROR_NAME]) {
4579 + var O = {};
4580 + O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
4581 + $({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);
4636 4582 }
4583 +};
4584 +
4585 +// https://tc39.es/ecma262/#sec-nativeerror
4586 +exportGlobalErrorCauseWrapper('Error', function (init) {
4587 + return function Error(message) { return apply(init, this, arguments); };
4637 4588 });
4638 -
4639 -
4640 -/***/ }),
4641 -
4642 -/***/ "../node_modules/core-js/modules/es.iterator.for-each.js":
4643 -/*!***************************************************************!*\
4644 - !*** ../node_modules/core-js/modules/es.iterator.for-each.js ***!
4645 - \***************************************************************/
4646 -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4647 -
4648 -"use strict";
4649 -
4650 -var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js");
4651 -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
4652 -var iterate = __webpack_require__(/*! ../internals/iterate */ "../node_modules/core-js/internals/iterate.js");
4653 -var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
4654 -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
4655 -var getIteratorDirect = __webpack_require__(/*! ../internals/get-iterator-direct */ "../node_modules/core-js/internals/get-iterator-direct.js");
4656 -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js");
4657 -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");
4658 -
4659 -var forEachWithoutClosingOnEarlyError = iteratorHelperWithoutClosingOnEarlyError('forEach', TypeError);
4660 -
4661 -// `Iterator.prototype.forEach` method
4662 -// https://tc39.es/ecma262/#sec-iterator.prototype.foreach
4663 -$({ target: 'Iterator', proto: true, real: true, forced: forEachWithoutClosingOnEarlyError }, {
4664 - forEach: function forEach(fn) {
4665 - anObject(this);
4666 - try {
4667 - aCallable(fn);
4668 - } catch (error) {
4669 - iteratorClose(this, 'throw', error);
4670 - }
4671 -
4672 - if (forEachWithoutClosingOnEarlyError) return call(forEachWithoutClosingOnEarlyError, this, fn);
4673 -
4674 - var record = getIteratorDirect(this);
4675 - var counter = 0;
4676 - iterate(record, function (value) {
4677 - fn(value, counter++);
4678 - }, { IS_RECORD: true });
4679 - }
4589 +exportGlobalErrorCauseWrapper('EvalError', function (init) {
4590 + return function EvalError(message) { return apply(init, this, arguments); };
4680 4591 });
4681 -
4682 -
4683 -/***/ }),
4684 -
4685 -/***/ "../node_modules/core-js/modules/es.iterator.map.js":
4686 -/*!**********************************************************!*\
4687 - !*** ../node_modules/core-js/modules/es.iterator.map.js ***!
4688 - \**********************************************************/
4689 -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4690 -
4691 -"use strict";
4692 -
4693 -var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js");
4694 -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
4695 -var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
4696 -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
4697 -var getIteratorDirect = __webpack_require__(/*! ../internals/get-iterator-direct */ "../node_modules/core-js/internals/get-iterator-direct.js");
4698 -var createIteratorProxy = __webpack_require__(/*! ../internals/iterator-create-proxy */ "../node_modules/core-js/internals/iterator-create-proxy.js");
4699 -var callWithSafeIterationClosing = __webpack_require__(/*! ../internals/call-with-safe-iteration-closing */ "../node_modules/core-js/internals/call-with-safe-iteration-closing.js");
4700 -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js");
4701 -var iteratorHelperThrowsOnInvalidIterator = __webpack_require__(/*! ../internals/iterator-helper-throws-on-invalid-iterator */ "../node_modules/core-js/internals/iterator-helper-throws-on-invalid-iterator.js");
4702 -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");
4703 -var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
4704 -
4705 -var MAP_WITHOUT_THROWING_ON_INVALID_ITERATOR = !IS_PURE && !iteratorHelperThrowsOnInvalidIterator('map', function () { /* empty */ });
4706 -var mapWithoutClosingOnEarlyError = !IS_PURE && !MAP_WITHOUT_THROWING_ON_INVALID_ITERATOR
4707 - && iteratorHelperWithoutClosingOnEarlyError('map', TypeError);
4708 -
4709 -var FORCED = IS_PURE || MAP_WITHOUT_THROWING_ON_INVALID_ITERATOR || mapWithoutClosingOnEarlyError;
4710 -
4711 -var IteratorProxy = createIteratorProxy(function () {
4712 - var iterator = this.iterator;
4713 - var result = anObject(call(this.next, iterator));
4714 - var done = this.done = !!result.done;
4715 - if (!done) return callWithSafeIterationClosing(iterator, this.mapper, [result.value, this.counter++], true);
4592 +exportGlobalErrorCauseWrapper('RangeError', function (init) {
4593 + return function RangeError(message) { return apply(init, this, arguments); };
4716 4594 });
4717 -
4718 -// `Iterator.prototype.map` method
4719 -// https://tc39.es/ecma262/#sec-iterator.prototype.map
4720 -$({ target: 'Iterator', proto: true, real: true, forced: FORCED }, {
4721 - map: function map(mapper) {
4722 - anObject(this);
4723 - try {
4724 - aCallable(mapper);
4725 - } catch (error) {
4726 - iteratorClose(this, 'throw', error);
4727 - }
4728 -
4729 - if (mapWithoutClosingOnEarlyError) return call(mapWithoutClosingOnEarlyError, this, mapper);
4730 -
4731 - return new IteratorProxy(getIteratorDirect(this), {
4732 - mapper: mapper
4733 - });
4734 - }
4595 +exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
4596 + return function ReferenceError(message) { return apply(init, this, arguments); };
4735 4597 });
4598 +exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
4599 + return function SyntaxError(message) { return apply(init, this, arguments); };
4600 +});
4601 +exportGlobalErrorCauseWrapper('TypeError', function (init) {
4602 + return function TypeError(message) { return apply(init, this, arguments); };
4603 +});
4604 +exportGlobalErrorCauseWrapper('URIError', function (init) {
4605 + return function URIError(message) { return apply(init, this, arguments); };
4606 +});
4607 +exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
4608 + return function CompileError(message) { return apply(init, this, arguments); };
4609 +});
4610 +exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
4611 + return function LinkError(message) { return apply(init, this, arguments); };
4612 +});
4613 +exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
4614 + return function RuntimeError(message) { return apply(init, this, arguments); };
4615 +});
4736 4616
4737 4617
4738 4618 /***/ }),
4739 4619
4740 -/***/ "../node_modules/core-js/modules/esnext.iterator.constructor.js":
4741 -/*!**********************************************************************!*\
4742 - !*** ../node_modules/core-js/modules/esnext.iterator.constructor.js ***!
4743 - \**********************************************************************/
4744 -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4620 +/***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js":
4621 +/*!***********************************************************************!*\
4622 + !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
4623 + \***********************************************************************/
4624 +/***/ ((module) => {
4745 4625
4746 -"use strict";
4747 -
4748 -// TODO: Remove from `core-js@4`
4749 -__webpack_require__(/*! ../modules/es.iterator.constructor */ "../node_modules/core-js/modules/es.iterator.constructor.js");
4750 -
4751 -
4752 -/***/ }),
4753 -
4754 -/***/ "../node_modules/core-js/modules/esnext.iterator.filter.js":
4755 -/*!*****************************************************************!*\
4756 - !*** ../node_modules/core-js/modules/esnext.iterator.filter.js ***!
4757 - \*****************************************************************/
4758 -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4759 -
4760 -"use strict";
4761 -
4762 -// TODO: Remove from `core-js@4`
4763 -__webpack_require__(/*! ../modules/es.iterator.filter */ "../node_modules/core-js/modules/es.iterator.filter.js");
4764 -
4765 -
4766 -/***/ }),
4767 -
4768 -/***/ "../node_modules/core-js/modules/esnext.iterator.find.js":
4769 -/*!***************************************************************!*\
4770 - !*** ../node_modules/core-js/modules/esnext.iterator.find.js ***!
4771 - \***************************************************************/
4772 -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4773 -
4774 -"use strict";
4775 -
4776 -// TODO: Remove from `core-js@4`
4777 -__webpack_require__(/*! ../modules/es.iterator.find */ "../node_modules/core-js/modules/es.iterator.find.js");
4778 -
4779 -
4780 -/***/ }),
4781 -
4782 -/***/ "../node_modules/core-js/modules/esnext.iterator.for-each.js":
4783 -/*!*******************************************************************!*\
4784 - !*** ../node_modules/core-js/modules/esnext.iterator.for-each.js ***!
4785 - \*******************************************************************/
4786 -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4787 -
4788 -"use strict";
4789 -
4790 -// TODO: Remove from `core-js@4`
4791 -__webpack_require__(/*! ../modules/es.iterator.for-each */ "../node_modules/core-js/modules/es.iterator.for-each.js");
4792 -
4793 -
4794 -/***/ }),
4795 -
4796 -/***/ "../node_modules/core-js/modules/esnext.iterator.map.js":
4797 -/*!**************************************************************!*\
4798 - !*** ../node_modules/core-js/modules/esnext.iterator.map.js ***!
4799 - \**************************************************************/
4800 -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4801 -
4802 -"use strict";
4803 -
4804 -// TODO: Remove from `core-js@4`
4805 -__webpack_require__(/*! ../modules/es.iterator.map */ "../node_modules/core-js/modules/es.iterator.map.js");
4806 -
4626 +function _interopRequireDefault(obj) {
4627 + return obj && obj.__esModule ? obj : {
4628 + "default": obj
4629 + };
4630 +}
4631 +module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
4807 4632
4808 4633 /***/ })
4809 4634
4810 4635 },