PluginProbe
Elementor Website Builder – more than just a page builder / 3.19.2
Elementor Website Builder – more than just a page builder v3.19.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 +1392 -1562 4.2.0-beta2 → 3.19.2 View file →
@@ -1,142 +1,7 @@
1 -(self["webpackChunkelementorFrontend"] = self["webpackChunkelementorFrontend"] || []).push([["frontend-modules"],{
1 +/*! elementor - v3.19.0 - 07-02-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 };
@@ -385,8 +445,9 @@
385 445 isNestedCarouselInEditMode = elementorFrontend.isEditMode() && 'NestedCarousel' === this.constructor.name;
386 446 if (isNestedCarouselInEditMode || !offsetSide || 'none' === offsetSide) {
387 447 return;
388 448 }
449 + const offset = this.getOffsetWidth();
389 450 switch (offsetSide) {
390 451 case 'right':
391 452 this.forceSliderToShowNextSlideWhenOnLast(swiperOptions, slidesToShow);
392 453 this.addClassToSwiperContainer('offset-right');
@@ -405,25 +466,22 @@
405 466 }
406 467 addClassToSwiperContainer(className) {
407 468 this.getDefaultElements().$swiperContainer[0].classList.add(className);
408 469 }
409 - async onInit(...args) {
410 - super.onInit(...args);
470 + async onInit() {
471 + super.onInit(...arguments);
411 472 if (!this.elements.$swiperContainer.length || 2 > this.elements.$slides.length) {
412 473 return;
413 474 }
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 475 const Swiper = elementorFrontend.utils.swiper;
422 476 this.swiper = await new Swiper(this.elements.$swiperContainer, this.getSwiperSettings());
423 477
424 478 // Expose the swiper instance in the frontend
425 479 this.elements.$swiperContainer.data('swiper', this.swiper);
480 + const elementSettings = this.getElementSettings();
481 + if ('yes' === elementSettings.pause_on_hover) {
482 + this.togglePauseOnHover(true);
483 + }
426 484 }
427 485 bindEvents() {
428 486 this.elements.$swiperArrows.on('keydown', this.onDirectionArrowKeydown.bind(this));
429 487 this.elements.$paginationWrapper.on('keydown', '.swiper-pagination-bullet', this.onDirectionArrowKeydown.bind(this));
@@ -479,8 +537,9 @@
479 537 speed: 'speed',
480 538 arrows_position: 'arrows_position' // Not a Swiper setting.
481 539 };
482 540 }
541 +
483 542 onElementChange(propertyName) {
484 543 if (0 === propertyName.indexOf('image_spacing_custom')) {
485 544 this.updateSpaceBetween(propertyName);
486 545 return;
@@ -500,11 +559,11 @@
500 559 if ('activeItemIndex' === propertyName) {
501 560 this.swiper.slideToLoop(this.getEditSettings('activeItemIndex') - 1);
502 561 }
503 562 }
504 - getSpaceBetween(device = null) {
505 - const responsiveControlValue = elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'image_spacing_custom', 'size', device);
506 - return Number(responsiveControlValue) || 0;
563 + getSpaceBetween() {
564 + let device = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
565 + return elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'image_spacing_custom', 'size', device) || 0;
507 566 }
508 567 updateSpaceBetween(propertyName) {
509 568 const deviceMatch = propertyName.match('image_spacing_custom_(.*)'),
510 569 device = deviceMatch ? deviceMatch[1] : 'desktop',
@@ -514,15 +573,21 @@
514 573 }
515 574 this.swiper.params.spaceBetween = newSpaceBetween;
516 575 this.swiper.update();
517 576 }
518 - getPaginationBullets(type = 'array') {
577 + getPaginationBullets() {
578 + let type = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'array';
519 579 const paginationBullets = this.$element.find(this.getSettings('selectors').paginationBullet);
520 580 return 'array' === type ? Array.from(paginationBullets) : paginationBullets;
521 581 }
582 + a11ySetWidgetAriaDetails() {
583 + const $widget = this.$element;
584 + $widget.attr('aria-roledescription', 'carousel');
585 + $widget.attr('aria-label', elementorFrontend.config.i18n.a11yCarouselWrapperAriaLabel);
586 + }
522 587 a11ySetPaginationTabindex() {
523 - const bulletClass = this.swiper?.params?.pagination.bulletClass,
524 - activeBulletClass = this.swiper?.params?.pagination.bulletActiveClass;
588 + const bulletClass = this.swiper?.params.pagination.bulletClass,
589 + activeBulletClass = this.swiper?.params.pagination.bulletActiveClass;
525 590 this.getPaginationBullets().forEach(bullet => {
526 591 if (!bullet.classList?.contains(activeBulletClass)) {
527 592 bullet.removeAttribute('tabindex');
528 593 }
@@ -538,9 +603,10 @@
538 603 transformValue = transformValue.split(',');
539 604 transformValue = parseInt(transformValue[0].replace('px', ''));
540 605 return !!transformValue ? transformValue : 0;
541 606 }
542 - a11ySetSlideAriaHidden(status = '') {
607 + a11ySetSlideAriaHidden() {
608 + let status = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
543 609 const currentIndex = 'initialisation' === status ? 0 : this.swiper?.activeIndex;
544 610 if ('number' !== typeof currentIndex) {
545 611 return;
546 612 }
@@ -626,18 +692,13 @@
626 692 /***/ "../assets/dev/js/frontend/handlers/base.js":
627 693 /*!**************************************************!*\
628 694 !*** ../assets/dev/js/frontend/handlers/base.js ***!
629 695 \**************************************************/
630 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
696 +/***/ ((module) => {
631 697
632 698 "use strict";
633 699
634 700
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 701 module.exports = elementorModules.ViewModule.extend({
641 702 $element: null,
642 703 editorListeners: null,
643 704 onElementChange: null,
@@ -782,9 +843,9 @@
782 843 let settingsKeys = elementorFrontend.config.elements.keys[type];
783 844 if (!settingsKeys) {
784 845 settingsKeys = elementorFrontend.config.elements.keys[type] = [];
785 846 jQuery.each(settings.controls, (name, control) => {
786 - if (control.frontend_available || control.editor_available) {
847 + if (control.frontend_available) {
787 848 settingsKeys.push(name);
788 849 }
789 850 });
790 851 }
@@ -842,10 +903,8 @@
842 903 Object.defineProperty(exports, "__esModule", ({
843 904 value: true
844 905 }));
845 906 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 907 var _base = _interopRequireDefault(__webpack_require__(/*! ./base */ "../assets/dev/js/frontend/handlers/base.js"));
849 908 class StretchedElement extends _base.default {
850 909 getStretchedClass() {
851 910 return 'e-stretched';
@@ -874,9 +933,10 @@
874 933 }
875 934 isActive(settings) {
876 935 return elementorFrontend.isEditMode() || settings.$element.hasClass(this.getStretchedClass());
877 936 }
878 - getStretchElementForConfig(childSelector = null) {
937 + getStretchElementForConfig() {
938 + let childSelector = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
879 939 if (childSelector) {
880 940 return this.$element.find(childSelector);
881 941 }
882 942 return this.$element;
@@ -905,14 +965,14 @@
905 965 return;
906 966 }
907 967 this.stretchElement.stretch();
908 968 }
909 - onInit(...args) {
969 + onInit() {
910 970 if (!this.isActive(this.getSettings())) {
911 971 return;
912 972 }
913 973 this.initStretch();
914 - super.onInit(...args);
974 + super.onInit(...arguments);
915 975 this.stretch();
916 976 }
917 977 onElementChange(propertyName) {
918 978 const stretchSettingName = this.getStretchSettingName();
@@ -949,8 +1009,11 @@
949 1009 var _stretchedElement = _interopRequireDefault(__webpack_require__(/*! ./handlers/stretched-element */ "../assets/dev/js/frontend/handlers/stretched-element.js"));
950 1010 var _base = _interopRequireDefault(__webpack_require__(/*! ./handlers/base */ "../assets/dev/js/frontend/handlers/base.js"));
951 1011 var _baseSwiper = _interopRequireDefault(__webpack_require__(/*! ./handlers/base-swiper */ "../assets/dev/js/frontend/handlers/base-swiper.js"));
952 1012 var _baseCarousel = _interopRequireDefault(__webpack_require__(/*! ./handlers/base-carousel */ "../assets/dev/js/frontend/handlers/base-carousel.js"));
1013 +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"));
1014 +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"));
1015 +var _nestedTitleKeyboardHandler = _interopRequireDefault(__webpack_require__(/*! ./handlers/accessibility/nested-title-keyboard-handler */ "../assets/dev/js/frontend/handlers/accessibility/nested-title-keyboard-handler.js"));
953 1016 _modules.default.frontend = {
954 1017 Document: _document.default,
955 1018 tools: {
956 1019 StretchElement: _stretchElement.default
@@ -958,9 +1021,12 @@
958 1021 handlers: {
959 1022 Base: _base.default,
960 1023 StretchedElement: _stretchedElement.default,
961 1024 SwiperBase: _baseSwiper.default,
962 - CarouselBase: _baseCarousel.default
1025 + CarouselBase: _baseCarousel.default,
1026 + NestedTabs: _nestedTabs.default,
1027 + NestedAccordion: _nestedAccordion.default,
1028 + NestedTitleKeyboardHandler: _nestedTitleKeyboardHandler.default
963 1029 }
964 1030 };
965 1031
966 1032 /***/ }),
@@ -1075,8 +1141,102 @@
1075 1141 });
1076 1142
1077 1143 /***/ }),
1078 1144
1145 +/***/ "../assets/dev/js/frontend/utils/flex-horizontal-scroll.js":
1146 +/*!*****************************************************************!*\
1147 + !*** ../assets/dev/js/frontend/utils/flex-horizontal-scroll.js ***!
1148 + \*****************************************************************/
1149 +/***/ ((__unused_webpack_module, exports) => {
1150 +
1151 +"use strict";
1152 +
1153 +
1154 +Object.defineProperty(exports, "__esModule", ({
1155 + value: true
1156 +}));
1157 +exports.changeScrollStatus = changeScrollStatus;
1158 +exports.setHorizontalScrollAlignment = setHorizontalScrollAlignment;
1159 +exports.setHorizontalTitleScrollValues = setHorizontalTitleScrollValues;
1160 +function changeScrollStatus(element, event) {
1161 + if ('mousedown' === event.type) {
1162 + element.classList.add('e-scroll');
1163 + element.dataset.pageX = event.pageX;
1164 + } else {
1165 + element.classList.remove('e-scroll', 'e-scroll-active');
1166 + element.dataset.pageX = '';
1167 + }
1168 +}
1169 +
1170 +// This function was written using this example https://codepen.io/thenutz/pen/VwYeYEE.
1171 +function setHorizontalTitleScrollValues(element, horizontalScrollStatus, event) {
1172 + const isActiveScroll = element.classList.contains('e-scroll'),
1173 + isHorizontalScrollActive = 'enable' === horizontalScrollStatus,
1174 + headingContentIsWiderThanWrapper = element.scrollWidth > element.clientWidth;
1175 + if (!isActiveScroll || !isHorizontalScrollActive || !headingContentIsWiderThanWrapper) {
1176 + return;
1177 + }
1178 + event.preventDefault();
1179 + const previousPositionX = parseFloat(element.dataset.pageX),
1180 + mouseMoveX = event.pageX - previousPositionX,
1181 + maximumScrollValue = 5,
1182 + stepLimit = 20;
1183 + let toScrollDistanceX = 0;
1184 + if (stepLimit < mouseMoveX) {
1185 + toScrollDistanceX = maximumScrollValue;
1186 + } else if (stepLimit * -1 > mouseMoveX) {
1187 + toScrollDistanceX = -1 * maximumScrollValue;
1188 + } else {
1189 + toScrollDistanceX = mouseMoveX;
1190 + }
1191 + element.scrollLeft = element.scrollLeft - toScrollDistanceX;
1192 + element.classList.add('e-scroll-active');
1193 +}
1194 +function setHorizontalScrollAlignment(_ref) {
1195 + let {
1196 + element,
1197 + direction,
1198 + justifyCSSVariable,
1199 + horizontalScrollStatus
1200 + } = _ref;
1201 + if (!element) {
1202 + return;
1203 + }
1204 + if (isHorizontalScroll(element, horizontalScrollStatus)) {
1205 + initialScrollPosition(element, direction, justifyCSSVariable);
1206 + } else {
1207 + element.style.setProperty(justifyCSSVariable, '');
1208 + }
1209 +}
1210 +function isHorizontalScroll(element, horizontalScrollStatus) {
1211 + return element.clientWidth < getChildrenWidth(element.children) && 'enable' === horizontalScrollStatus;
1212 +}
1213 +function getChildrenWidth(children) {
1214 + let totalWidth = 0;
1215 + const parentContainer = children[0].parentNode,
1216 + computedStyles = getComputedStyle(parentContainer),
1217 + gap = parseFloat(computedStyles.gap) || 0; // Get the gap value or default to 0 if it's not specified
1218 +
1219 + for (let i = 0; i < children.length; i++) {
1220 + totalWidth += children[i].offsetWidth + gap;
1221 + }
1222 + return totalWidth;
1223 +}
1224 +function initialScrollPosition(element, direction, justifyCSSVariable) {
1225 + const isRTL = elementorFrontend.config.is_rtl;
1226 + switch (direction) {
1227 + case 'end':
1228 + element.style.setProperty(justifyCSSVariable, 'start');
1229 + element.scrollLeft = isRTL ? -1 * getChildrenWidth(element.children) : getChildrenWidth(element.children);
1230 + break;
1231 + default:
1232 + element.style.setProperty(justifyCSSVariable, 'start');
1233 + element.scrollLeft = 0;
1234 + }
1235 +}
1236 +
1237 +/***/ }),
1238 +
1079 1239 /***/ "../assets/dev/js/modules/imports/args-object.js":
1080 1240 /*!*******************************************************!*\
1081 1241 !*** ../assets/dev/js/modules/imports/args-object.js ***!
1082 1242 \*******************************************************/
@@ -1089,8 +1249,9 @@
1089 1249 Object.defineProperty(exports, "__esModule", ({
1090 1250 value: true
1091 1251 }));
1092 1252 exports["default"] = void 0;
1253 +__webpack_require__(/*! core-js/modules/es.error.cause.js */ "../node_modules/core-js/modules/es.error.cause.js");
1093 1254 var _instanceType = _interopRequireDefault(__webpack_require__(/*! ./instance-type */ "../assets/dev/js/modules/imports/instance-type.js"));
1094 1255 var _isInstanceof = _interopRequireDefault(__webpack_require__(/*! ../../editor/utils/is-instanceof */ "../assets/dev/js/editor/utils/is-instanceof.js"));
1095 1256 class ArgsObject extends _instanceType.default {
1096 1257 static getInstanceType() {
@@ -1117,10 +1278,12 @@
1117 1278 * @param {string} property
1118 1279 * @param {{}} args
1119 1280 *
1120 1281 * @throws {Error}
1282 + *
1121 1283 */
1122 - requireArgument(property, args = this.args) {
1284 + requireArgument(property) {
1285 + let args = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.args;
1123 1286 if (!Object.prototype.hasOwnProperty.call(args, property)) {
1124 1287 throw Error(`${property} is required.`);
1125 1288 }
1126 1289 }
@@ -1134,10 +1297,12 @@
1134 1297 * @param {string} type
1135 1298 * @param {{}} args
1136 1299 *
1137 1300 * @throws {Error}
1301 + *
1138 1302 */
1139 - requireArgumentType(property, type, args = this.args) {
1303 + requireArgumentType(property, type) {
1304 + let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args;
1140 1305 this.requireArgument(property, args);
1141 1306 if (typeof args[property] !== type) {
1142 1307 throw Error(`${property} invalid type: ${type}.`);
1143 1308 }
@@ -1152,10 +1317,12 @@
1152 1317 * @param {*} instance
1153 1318 * @param {{}} args
1154 1319 *
1155 1320 * @throws {Error}
1321 + *
1156 1322 */
1157 - requireArgumentInstance(property, instance, args = this.args) {
1323 + requireArgumentInstance(property, instance) {
1324 + let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args;
1158 1325 this.requireArgument(property, args);
1159 1326 if (!(args[property] instanceof instance) && !(0, _isInstanceof.default)(args[property], instance)) {
1160 1327 throw Error(`${property} invalid instance.`);
1161 1328 }
@@ -1170,10 +1337,12 @@
1170 1337 * @param {*} type
1171 1338 * @param {{}} args
1172 1339 *
1173 1340 * @throws {Error}
1341 + *
1174 1342 */
1175 - requireArgumentConstructor(property, type, args = this.args) {
1343 + requireArgumentConstructor(property, type) {
1344 + let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args;
1176 1345 this.requireArgument(property, args);
1177 1346
1178 1347 // Note: Converting the constructor to string in order to avoid equation issues
1179 1348 // due to different memory addresses between iframes (window.Object !== window.top.Object).
@@ -1189,9 +1358,9 @@
1189 1358 /***/ "../assets/dev/js/modules/imports/force-method-implementation.js":
1190 1359 /*!***********************************************************************!*\
1191 1360 !*** ../assets/dev/js/modules/imports/force-method-implementation.js ***!
1192 1361 \***********************************************************************/
1193 -/***/ ((__unused_webpack_module, exports) => {
1362 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1194 1363
1195 1364 "use strict";
1196 1365
1197 1366
@@ -1198,12 +1367,15 @@
1198 1367 Object.defineProperty(exports, "__esModule", ({
1199 1368 value: true
1200 1369 }));
1201 1370 exports["default"] = exports.ForceMethodImplementation = void 0;
1371 +__webpack_require__(/*! core-js/modules/es.error.cause.js */ "../node_modules/core-js/modules/es.error.cause.js");
1202 1372 // TODO: Wrong location used as `elementorModules.ForceMethodImplementation(); should be` `elementorUtils.forceMethodImplementation()`;
1203 1373
1204 1374 class ForceMethodImplementation extends Error {
1205 - constructor(info = {}, args = {}) {
1375 + constructor() {
1376 + let info = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1377 + let args = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
1206 1378 super(`${info.isStatic ? 'static ' : ''}${info.fullName}() should be implemented, please provide '${info.functionName || info.fullName}' functionality.`, args);
1207 1379
1208 1380 // Allow to pass custom properties to the error.
1209 1381 if (Object.keys(args).length) {
@@ -1237,9 +1409,9 @@
1237 1409 /***/ "../assets/dev/js/modules/imports/instance-type.js":
1238 1410 /*!*********************************************************!*\
1239 1411 !*** ../assets/dev/js/modules/imports/instance-type.js ***!
1240 1412 \*********************************************************/
1241 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1413 +/***/ ((__unused_webpack_module, exports) => {
1242 1414
1243 1415 "use strict";
1244 1416
1245 1417
@@ -1246,11 +1418,8 @@
1246 1418 Object.defineProperty(exports, "__esModule", ({
1247 1419 value: true
1248 1420 }));
1249 1421 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 1422 class InstanceType {
1254 1423 static [Symbol.hasInstance](target) {
1255 1424 /**
1256 1425 * This is function extending being called each time JS uses instanceOf, since babel use it each time it create new class
@@ -1311,12 +1480,9 @@
1311 1480
1312 1481 "use strict";
1313 1482
1314 1483
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");
1484 +__webpack_require__(/*! core-js/modules/es.error.cause.js */ "../node_modules/core-js/modules/es.error.cause.js");
1319 1485 const Module = function () {
1320 1486 const $ = jQuery,
1321 1487 instanceParams = arguments,
1322 1488 self = this,
@@ -1484,11 +1650,10 @@
1484 1650 Object.defineProperty(exports, "__esModule", ({
1485 1651 value: true
1486 1652 }));
1487 1653 exports["default"] = void 0;
1488 -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js");
1489 1654 var _viewModule = _interopRequireDefault(__webpack_require__(/*! ../view-module */ "../assets/dev/js/modules/imports/view-module.js"));
1490 -var _default = exports["default"] = _viewModule.default.extend({
1655 +var _default = _viewModule.default.extend({
1491 1656 getDefaultSettings() {
1492 1657 return {
1493 1658 container: null,
1494 1659 items: null,
@@ -1525,8 +1690,9 @@
1525 1690 }
1526 1691 });
1527 1692 }
1528 1693 });
1694 +exports["default"] = _default;
1529 1695
1530 1696 /***/ }),
1531 1697
1532 1698 /***/ "../assets/dev/js/modules/imports/utils/scroll.js":
@@ -1532,9 +1698,9 @@
1532 1698 /***/ "../assets/dev/js/modules/imports/utils/scroll.js":
1533 1699 /*!********************************************************!*\
1534 1700 !*** ../assets/dev/js/modules/imports/utils/scroll.js ***!
1535 1701 \********************************************************/
1536 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1702 +/***/ ((__unused_webpack_module, exports) => {
1537 1703
1538 1704 "use strict";
1539 1705
1540 1706
@@ -1541,9 +1707,8 @@
1541 1707 Object.defineProperty(exports, "__esModule", ({
1542 1708 value: true
1543 1709 }));
1544 1710 exports["default"] = void 0;
1545 -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js");
1546 1711 // Moved from elementor pro: 'assets/dev/js/frontend/utils'
1547 1712 class Scroll {
1548 1713 /**
1549 1714 * @param {Object} obj
@@ -1554,26 +1719,27 @@
1554 1719 */
1555 1720 static scrollObserver(obj) {
1556 1721 let lastScrollY = 0;
1557 1722
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 = [];
1723 + // Generating threshholds points along the animation height
1724 + // More threshholds points = more trigger points of the callback
1725 + const buildThreshholds = function () {
1726 + let sensitivityPercentage = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
1727 + const threshholds = [];
1562 1728 if (sensitivityPercentage > 0 && sensitivityPercentage <= 100) {
1563 1729 const increment = 100 / sensitivityPercentage;
1564 1730 for (let i = 0; i <= 100; i += increment) {
1565 - thresholds.push(i / 100);
1731 + threshholds.push(i / 100);
1566 1732 }
1567 1733 } else {
1568 - thresholds.push(0);
1734 + threshholds.push(0);
1569 1735 }
1570 - return thresholds;
1736 + return threshholds;
1571 1737 };
1572 1738 const options = {
1573 1739 root: obj.root || null,
1574 1740 rootMargin: obj.offset || '0px',
1575 - threshold: buildThresholds(obj.sensitivity)
1741 + threshold: buildThreshholds(obj.sensitivity)
1576 1742 };
1577 1743 function handleIntersect(entries) {
1578 1744 const currentScrollY = entries[0].boundingClientRect.y,
1579 1745 isInViewport = entries[0].isIntersecting,
@@ -1595,9 +1761,10 @@
1595 1761 * @param {Object} offsetObj
1596 1762 * @param {number} offsetObj.start - Offset start value in percentages
1597 1763 * @param {number} offsetObj.end - Offset end value in percentages
1598 1764 */
1599 - static getElementViewportPercentage($element, offsetObj = {}) {
1765 + static getElementViewportPercentage($element) {
1766 + let offsetObj = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
1600 1767 const elementOffset = $element[0].getBoundingClientRect(),
1601 1768 offsetStart = offsetObj.start || 0,
1602 1769 offsetEnd = offsetObj.end || 0,
1603 1770 windowStartOffset = window.innerHeight * offsetStart / 100,
@@ -1615,9 +1782,11 @@
1615 1782 * @param {number} offsetObj.start - Offset start value in percentages
1616 1783 * @param {number} offsetObj.end - Offset end value in percentages
1617 1784 * @param {number} limitPageHeight - Will limit the page height calculation
1618 1785 */
1619 - static getPageScrollPercentage(offsetObj = {}, limitPageHeight) {
1786 + static getPageScrollPercentage() {
1787 + let offsetObj = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1788 + let limitPageHeight = arguments.length > 1 ? arguments[1] : undefined;
1620 1789 const offsetStart = offsetObj.start || 0,
1621 1790 offsetEnd = offsetObj.end || 0,
1622 1791 initialPageHeight = limitPageHeight || document.documentElement.scrollHeight - document.documentElement.clientHeight,
1623 1792 heightOffset = initialPageHeight * offsetStart / 100,
@@ -1644,9 +1813,9 @@
1644 1813 value: true
1645 1814 }));
1646 1815 exports["default"] = void 0;
1647 1816 var _module = _interopRequireDefault(__webpack_require__(/*! ./module */ "../assets/dev/js/modules/imports/module.js"));
1648 -var _default = exports["default"] = _module.default.extend({
1817 +var _default = _module.default.extend({
1649 1818 elements: null,
1650 1819 getDefaultElements() {
1651 1820 return {};
1652 1821 },
@@ -1658,8 +1827,9 @@
1658 1827 initElements() {
1659 1828 this.elements = this.getDefaultElements();
1660 1829 }
1661 1830 });
1831 +exports["default"] = _default;
1662 1832
1663 1833 /***/ }),
1664 1834
1665 1835 /***/ "../assets/dev/js/modules/modules.js":
@@ -1681,11 +1851,9 @@
1681 1851 var _argsObject = _interopRequireDefault(__webpack_require__(/*! ./imports/args-object */ "../assets/dev/js/modules/imports/args-object.js"));
1682 1852 var _masonry = _interopRequireDefault(__webpack_require__(/*! ./imports/utils/masonry */ "../assets/dev/js/modules/imports/utils/masonry.js"));
1683 1853 var _scroll = _interopRequireDefault(__webpack_require__(/*! ./imports/utils/scroll */ "../assets/dev/js/modules/imports/utils/scroll.js"));
1684 1854 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 = {
1855 +var _default = window.elementorModules = {
1688 1856 Module: _module.default,
1689 1857 ViewModule: _viewModule.default,
1690 1858 ArgsObject: _argsObject.default,
1691 1859 ForceMethodImplementation: _forceMethodImplementation.default,
@@ -1691,38 +1859,559 @@
1691 1859 ForceMethodImplementation: _forceMethodImplementation.default,
1692 1860 utils: {
1693 1861 Masonry: _masonry.default,
1694 1862 Scroll: _scroll.default
1695 - },
1696 - importExport: {
1697 - createGetInitialState: _templateRegistryHelpers.createGetInitialState,
1698 - customizationDialogsRegistry: _customizationDialogs.customizationDialogsRegistry
1699 1863 }
1700 1864 };
1701 -if (!window.elementorModules) {
1702 - window.elementorModules = baseModules;
1703 -} else {
1704 - Object.assign(window.elementorModules, baseModules);
1865 +exports["default"] = _default;
1866 +
1867 +/***/ }),
1868 +
1869 +/***/ "../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion-title-keyboard-handler.js":
1870 +/*!**********************************************************************************************************!*\
1871 + !*** ../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion-title-keyboard-handler.js ***!
1872 + \**********************************************************************************************************/
1873 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1874 +
1875 +"use strict";
1876 +
1877 +
1878 +var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1879 +Object.defineProperty(exports, "__esModule", ({
1880 + value: true
1881 +}));
1882 +exports["default"] = void 0;
1883 +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"));
1884 +class NestedAccordionTitleKeyboardHandler extends _nestedTitleKeyboardHandler.default {
1885 + __construct() {
1886 + super.__construct(...arguments);
1887 + const config = arguments.length <= 0 ? undefined : arguments[0];
1888 + this.toggleTitle = config.toggleTitle;
1889 + }
1890 + getDefaultSettings() {
1891 + const parentSettings = super.getDefaultSettings();
1892 + return {
1893 + ...parentSettings,
1894 + selectors: {
1895 + itemTitle: '.e-n-accordion-item-title',
1896 + itemContainer: '.e-n-accordion-item > .e-con'
1897 + },
1898 + ariaAttributes: {
1899 + titleStateAttribute: 'aria-expanded',
1900 + activeTitleSelector: '[aria-expanded="true"]'
1901 + },
1902 + datasets: {
1903 + titleIndex: 'data-accordion-index'
1904 + }
1905 + };
1906 + }
1907 + handeTitleLinkEnterOrSpaceEvent(event) {
1908 + this.toggleTitle(event);
1909 + }
1910 + handleContentElementEscapeEvents(event) {
1911 + this.getActiveTitleElement().trigger('focus');
1912 + this.toggleTitle(event);
1913 + }
1914 + handleTitleEscapeKeyEvents(event) {
1915 + const detailsNode = event?.currentTarget?.parentElement,
1916 + isOpen = detailsNode?.open;
1917 + if (isOpen) {
1918 + this.toggleTitle(event);
1919 + }
1920 + }
1705 1921 }
1706 -var _default = exports["default"] = window.elementorModules;
1922 +exports["default"] = NestedAccordionTitleKeyboardHandler;
1707 1923
1708 1924 /***/ }),
1709 1925
1710 -/***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js":
1711 -/*!***********************************************************************!*\
1712 - !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
1713 - \***********************************************************************/
1714 -/***/ ((module) => {
1926 +/***/ "../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion.js":
1927 +/*!***********************************************************************************!*\
1928 + !*** ../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion.js ***!
1929 + \***********************************************************************************/
1930 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1715 1931
1716 -function _interopRequireDefault(e) {
1717 - return e && e.__esModule ? e : {
1718 - "default": e
1719 - };
1932 +"use strict";
1933 +
1934 +
1935 +var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1936 +Object.defineProperty(exports, "__esModule", ({
1937 + value: true
1938 +}));
1939 +exports["default"] = void 0;
1940 +var _base = _interopRequireDefault(__webpack_require__(/*! elementor-frontend/handlers/base */ "../assets/dev/js/frontend/handlers/base.js"));
1941 +var _nestedAccordionTitleKeyboardHandler = _interopRequireDefault(__webpack_require__(/*! ./nested-accordion-title-keyboard-handler */ "../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion-title-keyboard-handler.js"));
1942 +class NestedAccordion extends _base.default {
1943 + constructor() {
1944 + super(...arguments);
1945 + this.animations = new Map();
1946 + }
1947 + getDefaultSettings() {
1948 + return {
1949 + selectors: {
1950 + accordion: '.e-n-accordion',
1951 + accordionContentContainers: '.e-n-accordion > .e-con',
1952 + accordionItems: '.e-n-accordion-item',
1953 + accordionItemTitles: '.e-n-accordion-item-title',
1954 + accordionContent: '.e-n-accordion-item > .e-con',
1955 + accordionWrapper: '.e-n-accordion-item'
1956 + },
1957 + default_state: 'expanded'
1958 + };
1959 + }
1960 + getDefaultElements() {
1961 + const selectors = this.getSettings('selectors');
1962 + return {
1963 + $accordion: this.findElement(selectors.accordion),
1964 + $contentContainers: this.findElement(selectors.accordionContentContainers),
1965 + $accordionItems: this.findElement(selectors.accordionItems),
1966 + $accordionTitles: this.findElement(selectors.accordionItemTitles),
1967 + $accordionContent: this.findElement(selectors.accordionContent)
1968 + };
1969 + }
1970 + onInit() {
1971 + super.onInit(...arguments);
1972 + if (elementorFrontend.isEditMode()) {
1973 + this.interlaceContainers();
1974 + }
1975 + this.injectKeyboardHandler();
1976 + }
1977 + injectKeyboardHandler() {
1978 + if ('nested-accordion.default' === this.getSettings('elementName')) {
1979 + new _nestedAccordionTitleKeyboardHandler.default({
1980 + $element: this.$element,
1981 + toggleTitle: this.clickListener.bind(this)
1982 + });
1983 + }
1984 + }
1985 + interlaceContainers() {
1986 + const {
1987 + $contentContainers,
1988 + $accordionItems
1989 + } = this.getDefaultElements();
1990 + $contentContainers.each((index, element) => {
1991 + $accordionItems[index].appendChild(element);
1992 + });
1993 + }
1994 + bindEvents() {
1995 + this.elements.$accordionTitles.on('click', this.clickListener.bind(this));
1996 + }
1997 + unbindEvents() {
1998 + this.elements.$accordionTitles.off();
1999 + }
2000 + clickListener(event) {
2001 + event.preventDefault();
2002 + const settings = this.getSettings(),
2003 + accordionItem = event?.currentTarget?.closest(settings.selectors.accordionWrapper),
2004 + itemSummary = accordionItem.querySelector(settings.selectors.accordionItemTitles),
2005 + accordionContent = accordionItem.querySelector(settings.selectors.accordionContent),
2006 + {
2007 + max_items_expended: maxItemsExpended
2008 + } = this.getElementSettings(),
2009 + {
2010 + $accordionTitles,
2011 + $accordionItems
2012 + } = this.elements;
2013 + if ('one' === maxItemsExpended) {
2014 + this.closeAllItems($accordionItems, $accordionTitles);
2015 + }
2016 + if (!accordionItem.open) {
2017 + this.prepareOpenAnimation(accordionItem, itemSummary, accordionContent);
2018 + } else {
2019 + this.closeAccordionItem(accordionItem, itemSummary);
2020 + }
2021 + }
2022 + animateItem(accordionItem, startHeight, endHeight, isOpen) {
2023 + accordionItem.style.overflow = 'hidden';
2024 + let animation = this.animations.get(accordionItem);
2025 + if (animation) {
2026 + animation.cancel();
2027 + }
2028 + animation = accordionItem.animate({
2029 + height: [startHeight, endHeight]
2030 + }, {
2031 + duration: this.getAnimationDuration()
2032 + });
2033 + animation.onfinish = () => this.onAnimationFinish(accordionItem, isOpen);
2034 + this.animations.set(accordionItem, animation);
2035 + accordionItem.querySelector('summary')?.setAttribute('aria-expanded', isOpen);
2036 + }
2037 + closeAccordionItem(accordionItem, accordionItemTitle) {
2038 + const startHeight = `${accordionItem.offsetHeight}px`,
2039 + endHeight = `${accordionItemTitle.offsetHeight}px`;
2040 + this.animateItem(accordionItem, startHeight, endHeight, false);
2041 + }
2042 + prepareOpenAnimation(accordionItem, accordionItemTitle, accordionItemContent) {
2043 + accordionItem.style.overflow = 'hidden';
2044 + accordionItem.style.height = `${accordionItem.offsetHeight}px`;
2045 + accordionItem.open = true;
2046 + window.requestAnimationFrame(() => this.openAccordionItem(accordionItem, accordionItemTitle, accordionItemContent));
2047 + }
2048 + openAccordionItem(accordionItem, accordionItemTitle, accordionItemContent) {
2049 + const startHeight = `${accordionItem.offsetHeight}px`,
2050 + endHeight = `${accordionItemTitle.offsetHeight + accordionItemContent.offsetHeight}px`;
2051 + this.animateItem(accordionItem, startHeight, endHeight, true);
2052 + }
2053 + onAnimationFinish(accordionItem, isOpen) {
2054 + accordionItem.open = isOpen;
2055 + this.animations.set(accordionItem, null);
2056 + accordionItem.style.height = accordionItem.style.overflow = '';
2057 + }
2058 + closeAllItems($items, $titles) {
2059 + $titles.each((index, title) => {
2060 + this.closeAccordionItem($items[index], title);
2061 + });
2062 + }
2063 + getAnimationDuration() {
2064 + const {
2065 + size,
2066 + unit
2067 + } = this.getElementSettings('n_accordion_animation_duration');
2068 + return size * ('ms' === unit ? 1 : 1000);
2069 + }
1720 2070 }
1721 -module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
2071 +exports["default"] = NestedAccordion;
1722 2072
1723 2073 /***/ }),
1724 2074
2075 +/***/ "../modules/nested-tabs/assets/js/frontend/handlers/nested-tabs.js":
2076 +/*!*************************************************************************!*\
2077 + !*** ../modules/nested-tabs/assets/js/frontend/handlers/nested-tabs.js ***!
2078 + \*************************************************************************/
2079 +/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2080 +
2081 +"use strict";
2082 +
2083 +
2084 +var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
2085 +Object.defineProperty(exports, "__esModule", ({
2086 + value: true
2087 +}));
2088 +exports["default"] = void 0;
2089 +var _base = _interopRequireDefault(__webpack_require__(/*! elementor-frontend/handlers/base */ "../assets/dev/js/frontend/handlers/base.js"));
2090 +var _flexHorizontalScroll = __webpack_require__(/*! elementor-frontend-utils/flex-horizontal-scroll */ "../assets/dev/js/frontend/utils/flex-horizontal-scroll.js");
2091 +class NestedTabs extends _base.default {
2092 + constructor() {
2093 + super(...arguments);
2094 + this.resizeListenerNestedTabs = null;
2095 + }
2096 +
2097 + /**
2098 + * @param {string|number} tabIndex
2099 + *
2100 + * @return {string}
2101 + */
2102 + getTabTitleFilterSelector(tabIndex) {
2103 + return `[data-tab-index="${tabIndex}"]`;
2104 + }
2105 +
2106 + /**
2107 + * @param {string|number} tabIndex
2108 + *
2109 + * @return {string}
2110 + */
2111 + getTabContentFilterSelector(tabIndex) {
2112 + return `*:nth-child(${tabIndex})`;
2113 + }
2114 +
2115 + /**
2116 + * @param {HTMLElement} tabTitleElement
2117 + *
2118 + * @return {string}
2119 + */
2120 + getTabIndex(tabTitleElement) {
2121 + return tabTitleElement.getAttribute('data-tab-index');
2122 + }
2123 + getDefaultSettings() {
2124 + return {
2125 + selectors: {
2126 + widgetContainer: '.e-n-tabs',
2127 + tabTitle: '.e-n-tab-title',
2128 + tabContent: '.e-n-tabs-content > .e-con',
2129 + headingContainer: '.e-n-tabs-heading',
2130 + activeTabContentContainers: '.e-con.e-active'
2131 + },
2132 + classes: {
2133 + active: 'e-active'
2134 + },
2135 + ariaAttributes: {
2136 + titleStateAttribute: 'aria-selected',
2137 + activeTitleSelector: '[aria-selected="true"]'
2138 + },
2139 + showTabFn: 'show',
2140 + hideTabFn: 'hide',
2141 + toggleSelf: false,
2142 + hidePrevious: true,
2143 + autoExpand: true
2144 + };
2145 + }
2146 + getDefaultElements() {
2147 + const selectors = this.getSettings('selectors');
2148 + return {
2149 + $tabTitles: this.findElement(selectors.tabTitle),
2150 + $tabContents: this.findElement(selectors.tabContent),
2151 + $headingContainer: this.findElement(selectors.headingContainer)
2152 + };
2153 + }
2154 + getKeyboardNavigationSettings() {
2155 + return this.getSettings();
2156 + }
2157 + activateDefaultTab() {
2158 + const settings = this.getSettings();
2159 + const defaultActiveTab = this.getEditSettings('activeItemIndex') || 1,
2160 + originalToggleMethods = {
2161 + showTabFn: settings.showTabFn,
2162 + hideTabFn: settings.hideTabFn
2163 + };
2164 +
2165 + // Toggle tabs without animation to avoid jumping
2166 + this.setSettings({
2167 + showTabFn: 'show',
2168 + hideTabFn: 'hide'
2169 + });
2170 + this.changeActiveTab(defaultActiveTab);
2171 +
2172 + // Return back original toggle effects
2173 + this.setSettings(originalToggleMethods);
2174 + }
2175 + deactivateActiveTab(newTabIndex) {
2176 + const settings = this.getSettings(),
2177 + activeClass = settings.classes.active,
2178 + activeTitleFilter = settings.ariaAttributes.activeTitleSelector,
2179 + activeContentFilter = '.' + activeClass,
2180 + $activeTitle = this.elements.$tabTitles.filter(activeTitleFilter),
2181 + $activeContent = this.elements.$tabContents.filter(activeContentFilter);
2182 + this.setTabDeactivationAttributes($activeTitle, newTabIndex);
2183 + $activeContent.removeClass(activeClass);
2184 + $activeContent[settings.hideTabFn](0, () => this.onHideTabContent($activeContent));
2185 + return $activeContent;
2186 + }
2187 + getTitleActivationAttributes() {
2188 + const titleStateAttribute = this.getSettings('ariaAttributes').titleStateAttribute;
2189 + return {
2190 + tabindex: '0',
2191 + [titleStateAttribute]: 'true'
2192 + };
2193 + }
2194 + setTabDeactivationAttributes($activeTitle) {
2195 + const titleStateAttribute = this.getSettings('ariaAttributes').titleStateAttribute;
2196 + $activeTitle.attr({
2197 + tabindex: '-1',
2198 + [titleStateAttribute]: 'false'
2199 + });
2200 + }
2201 + onHideTabContent() {}
2202 + activateTab(tabIndex) {
2203 + const settings = this.getSettings(),
2204 + activeClass = settings.classes.active,
2205 + animationDuration = 'show' === settings.showTabFn ? 0 : 400;
2206 + let $requestedTitle = this.elements.$tabTitles.filter(this.getTabTitleFilterSelector(tabIndex)),
2207 + $requestedContent = this.elements.$tabContents.filter(this.getTabContentFilterSelector(tabIndex));
2208 +
2209 + // Check if the tabIndex exists.
2210 + if (!$requestedTitle.length) {
2211 + // Activate the previous tab and ensure that the tab index is not less than 1.
2212 + const previousTabIndex = Math.max(tabIndex - 1, 1);
2213 + $requestedTitle = this.elements.$tabTitles.filter(this.getTabTitleFilterSelector(previousTabIndex));
2214 + $requestedContent = this.elements.$tabContents.filter(this.getTabContentFilterSelector(previousTabIndex));
2215 + }
2216 + $requestedTitle.attr(this.getTitleActivationAttributes());
2217 + $requestedContent.addClass(activeClass);
2218 + $requestedContent[settings.showTabFn](animationDuration, () => this.onShowTabContent($requestedContent));
2219 + }
2220 + onShowTabContent($requestedContent) {
2221 + elementorFrontend.elements.$window.trigger('elementor-pro/motion-fx/recalc');
2222 + elementorFrontend.elements.$window.trigger('elementor/nested-tabs/activate', $requestedContent);
2223 + elementorFrontend.elements.$window.trigger('elementor/bg-video/recalc');
2224 + }
2225 + isActiveTab(tabIndex) {
2226 + return 'true' === this.elements.$tabTitles.filter('[data-tab-index="' + tabIndex + '"]').attr(this.getSettings('ariaAttributes').titleStateAttribute);
2227 + }
2228 + onTabClick(event) {
2229 + event.preventDefault();
2230 + this.changeActiveTab(event.currentTarget?.getAttribute('data-tab-index'), true);
2231 + }
2232 + getTabEvents() {
2233 + return {
2234 + click: this.onTabClick.bind(this)
2235 + };
2236 + }
2237 + getHeadingEvents() {
2238 + const navigationWrapper = this.elements.$headingContainer[0];
2239 + return {
2240 + mousedown: _flexHorizontalScroll.changeScrollStatus.bind(this, navigationWrapper),
2241 + mouseup: _flexHorizontalScroll.changeScrollStatus.bind(this, navigationWrapper),
2242 + mouseleave: _flexHorizontalScroll.changeScrollStatus.bind(this, navigationWrapper),
2243 + mousemove: _flexHorizontalScroll.setHorizontalTitleScrollValues.bind(this, navigationWrapper, this.getHorizontalScrollSetting())
2244 + };
2245 + }
2246 + bindEvents() {
2247 + this.elements.$tabTitles.on(this.getTabEvents());
2248 + this.elements.$headingContainer.on(this.getHeadingEvents());
2249 + const settingsObject = {
2250 + element: this.elements.$headingContainer[0],
2251 + direction: this.getTabsDirection(),
2252 + justifyCSSVariable: '--n-tabs-heading-justify-content',
2253 + horizontalScrollStatus: this.getHorizontalScrollSetting()
2254 + };
2255 + this.resizeListenerNestedTabs = _flexHorizontalScroll.setHorizontalScrollAlignment.bind(this, settingsObject);
2256 + elementorFrontend.elements.$window.on('resize', this.resizeListenerNestedTabs);
2257 + elementorFrontend.elements.$window.on('resize', this.setTouchMode.bind(this));
2258 + elementorFrontend.elements.$window.on('elementor/nested-tabs/activate', this.reInitSwipers);
2259 + elementorFrontend.elements.$window.on('elementor/nested-elements/activate-by-keyboard', this.changeActiveTabByKeyboard.bind(this));
2260 + }
2261 + unbindEvents() {
2262 + this.elements.$tabTitles.off();
2263 + this.elements.$headingContainer.off();
2264 + this.elements.$tabContents.children().off();
2265 + elementorFrontend.elements.$window.off('resize');
2266 + elementorFrontend.elements.$window.off('elementor/nested-tabs/activate');
2267 + }
2268 +
2269 + /**
2270 + * Fixes issues where Swipers that have been initialized while a tab is not visible are not properly rendered
2271 + * and when switching to the tab the swiper will not respect any of the chosen `autoplay` related settings.
2272 + *
2273 + * This is triggered when switching to a nested tab, looks for Swipers in the tab content and reinitializes them.
2274 + *
2275 + * @param {Object} event - Incoming event.
2276 + * @param {Object} content - Active nested tab dom element.
2277 + */
2278 + reInitSwipers(event, content) {
2279 + const swiperElements = content.querySelectorAll(`.${elementorFrontend.config.swiperClass}`);
2280 + for (const element of swiperElements) {
2281 + if (!element.swiper) {
2282 + return;
2283 + }
2284 + element.swiper.initialized = false;
2285 + element.swiper.init();
2286 + }
2287 + }
2288 + onInit() {
2289 + super.onInit(...arguments);
2290 + if (this.getSettings('autoExpand')) {
2291 + this.activateDefaultTab();
2292 + }
2293 + const settingsObject = {
2294 + element: this.elements.$headingContainer[0],
2295 + direction: this.getTabsDirection(),
2296 + justifyCSSVariable: '--n-tabs-heading-justify-content',
2297 + horizontalScrollStatus: this.getHorizontalScrollSetting()
2298 + };
2299 + (0, _flexHorizontalScroll.setHorizontalScrollAlignment)(settingsObject);
2300 + this.setTouchMode();
2301 + if ('nested-tabs.default' === this.getSettings('elementName')) {
2302 + new elementorModules.frontend.handlers.NestedTitleKeyboardHandler(this.getKeyboardNavigationSettings());
2303 + }
2304 + }
2305 + onEditSettingsChange(propertyName, value) {
2306 + if ('activeItemIndex' === propertyName) {
2307 + this.changeActiveTab(value, false);
2308 + }
2309 + }
2310 + onElementChange(propertyName) {
2311 + if (this.checkSliderPropsToWatch(propertyName)) {
2312 + const settingsObject = {
2313 + element: this.elements.$headingContainer[0],
2314 + direction: this.getTabsDirection(),
2315 + justifyCSSVariable: '--n-tabs-heading-justify-content',
2316 + horizontalScrollStatus: this.getHorizontalScrollSetting()
2317 + };
2318 + (0, _flexHorizontalScroll.setHorizontalScrollAlignment)(settingsObject);
2319 + }
2320 + }
2321 + checkSliderPropsToWatch(propertyName) {
2322 + return 0 === propertyName.indexOf('horizontal_scroll') || 'breakpoint_selector' === propertyName || 0 === propertyName.indexOf('tabs_justify_horizontal') || 0 === propertyName.indexOf('tabs_title_space_between');
2323 + }
2324 +
2325 + /**
2326 + * @param {string} tabIndex
2327 + * @param {boolean} fromUser - Whether the call is caused by the user or internal.
2328 + */
2329 + changeActiveTab(tabIndex) {
2330 + let fromUser = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
2331 + // `document/repeater/select` is used only in the editor, only when the element
2332 + // is in the currently-edited document, and only when its not internal call,
2333 + if (fromUser && this.isEdit && this.isElementInTheCurrentDocument()) {
2334 + return window.top.$e.run('document/repeater/select', {
2335 + container: elementor.getContainer(this.$element.attr('data-id')),
2336 + index: parseInt(tabIndex)
2337 + });
2338 + }
2339 + const isActiveTab = this.isActiveTab(tabIndex),
2340 + settings = this.getSettings();
2341 + if ((settings.toggleSelf || !isActiveTab) && settings.hidePrevious) {
2342 + this.deactivateActiveTab(tabIndex);
2343 + }
2344 + if (!settings.hidePrevious && isActiveTab) {
2345 + this.deactivateActiveTab(tabIndex);
2346 + }
2347 + if (!isActiveTab) {
2348 + if (this.isAccordionVersion()) {
2349 + this.activateMobileTab(tabIndex);
2350 + return;
2351 + }
2352 + this.activateTab(tabIndex);
2353 + }
2354 + }
2355 + changeActiveTabByKeyboard(event, settings) {
2356 + if (settings.widgetId.toString() !== this.getID().toString()) {
2357 + return;
2358 + }
2359 + this.changeActiveTab(settings.titleIndex, true);
2360 + }
2361 + activateMobileTab(tabIndex) {
2362 + // Timeout time added to ensure that opening of the active tab starts after closing the other tab on Apple devices.
2363 + setTimeout(() => {
2364 + this.activateTab(tabIndex);
2365 + this.forceActiveTabToBeInViewport(tabIndex);
2366 + }, 10);
2367 + }
2368 + forceActiveTabToBeInViewport(tabIndex) {
2369 + if (!elementorFrontend.isEditMode()) {
2370 + return;
2371 + }
2372 + const $activeTabTitle = this.elements.$tabTitles.filter(this.getTabTitleFilterSelector(tabIndex));
2373 + if (!elementor.helpers.isInViewport($activeTabTitle[0])) {
2374 + $activeTabTitle[0].scrollIntoView({
2375 + block: 'center'
2376 + });
2377 + }
2378 + }
2379 + getActiveClass() {
2380 + const settings = this.getSettings();
2381 + return settings.classes.active;
2382 + }
2383 + getTabsDirection() {
2384 + const currentDevice = elementorFrontend.getCurrentDeviceMode();
2385 + return elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'tabs_justify_horizontal', '', currentDevice);
2386 + }
2387 + getHorizontalScrollSetting() {
2388 + const currentDevice = elementorFrontend.getCurrentDeviceMode();
2389 + return elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'horizontal_scroll', '', currentDevice);
2390 + }
2391 + isAccordionVersion() {
2392 + return 'contents' === this.elements.$headingContainer.css('display');
2393 + }
2394 + setTouchMode() {
2395 + const widgetSelector = this.getSettings('selectors').widgetContainer;
2396 + if (elementorFrontend.isEditMode() || 'resize' === event?.type) {
2397 + const responsiveDevices = ['mobile', 'mobile_extra', 'tablet', 'tablet_extra'],
2398 + currentDevice = elementorFrontend.getCurrentDeviceMode();
2399 + if (-1 !== responsiveDevices.indexOf(currentDevice)) {
2400 + this.$element.find(widgetSelector).attr('data-touch-mode', 'true');
2401 + return;
2402 + }
2403 + } else if ('ontouchstart' in window) {
2404 + this.$element.find(widgetSelector).attr('data-touch-mode', 'true');
2405 + return;
2406 + }
2407 + this.$element.find(widgetSelector).attr('data-touch-mode', 'false');
2408 + }
2409 +}
2410 +exports["default"] = NestedTabs;
2411 +
2412 +/***/ }),
2413 +
1725 2414 /***/ "../node_modules/core-js/internals/a-callable.js":
1726 2415 /*!*******************************************************!*\
1727 2416 !*** ../node_modules/core-js/internals/a-callable.js ***!
1728 2417 \*******************************************************/
@@ -1737,29 +2426,30 @@
1737 2426
1738 2427 // `Assert: IsCallable(argument) is true`
1739 2428 module.exports = function (argument) {
1740 2429 if (isCallable(argument)) return argument;
1741 - throw new $TypeError(tryToString(argument) + ' is not a function');
2430 + throw $TypeError(tryToString(argument) + ' is not a function');
1742 2431 };
1743 2432
1744 2433
1745 2434 /***/ }),
1746 2435
1747 -/***/ "../node_modules/core-js/internals/an-instance.js":
1748 -/*!********************************************************!*\
1749 - !*** ../node_modules/core-js/internals/an-instance.js ***!
1750 - \********************************************************/
2436 +/***/ "../node_modules/core-js/internals/a-possible-prototype.js":
2437 +/*!*****************************************************************!*\
2438 + !*** ../node_modules/core-js/internals/a-possible-prototype.js ***!
2439 + \*****************************************************************/
1751 2440 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1752 2441
1753 2442 "use strict";
1754 2443
1755 -var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js");
2444 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
1756 2445
2446 +var $String = String;
1757 2447 var $TypeError = TypeError;
1758 2448
1759 -module.exports = function (it, Prototype) {
1760 - if (isPrototypeOf(Prototype, it)) return it;
1761 - throw new $TypeError('Incorrect invocation');
2449 +module.exports = function (argument) {
2450 + if (typeof argument == 'object' || isCallable(argument)) return argument;
2451 + throw $TypeError("Can't set " + $String(argument) + ' as a prototype');
1762 2452 };
1763 2453
1764 2454
1765 2455 /***/ }),
@@ -1779,9 +2469,9 @@
1779 2469
1780 2470 // `Assert: Type(argument) is Object`
1781 2471 module.exports = function (argument) {
1782 2472 if (isObject(argument)) return argument;
1783 - throw new $TypeError($String(argument) + ' is not an object');
2473 + throw $TypeError($String(argument) + ' is not an object');
1784 2474 };
1785 2475
1786 2476
1787 2477 /***/ }),
@@ -1802,17 +2492,16 @@
1802 2492 var createMethod = function (IS_INCLUDES) {
1803 2493 return function ($this, el, fromIndex) {
1804 2494 var O = toIndexedObject($this);
1805 2495 var length = lengthOfArrayLike(O);
1806 - if (length === 0) return !IS_INCLUDES && -1;
1807 2496 var index = toAbsoluteIndex(fromIndex, length);
1808 2497 var value;
1809 2498 // Array#includes uses SameValueZero equality algorithm
1810 2499 // eslint-disable-next-line no-self-compare -- NaN check
1811 - if (IS_INCLUDES && el !== el) while (length > index) {
2500 + if (IS_INCLUDES && el != el) while (length > index) {
1812 2501 value = O[index++];
1813 2502 // eslint-disable-next-line no-self-compare -- NaN check
1814 - if (value !== value) return true;
2503 + if (value != value) return true;
1815 2504 // Array#indexOf ignores holes, Array#includes - not
1816 2505 } else for (;length > index; index++) {
1817 2506 if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
1818 2507 } return !IS_INCLUDES && -1;
@@ -1830,69 +2519,8 @@
1830 2519
1831 2520
1832 2521 /***/ }),
1833 2522
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 2523 /***/ "../node_modules/core-js/internals/classof-raw.js":
1896 2524 /*!********************************************************!*\
1897 2525 !*** ../node_modules/core-js/internals/classof-raw.js ***!
1898 2526 \********************************************************/
@@ -1928,9 +2556,9 @@
1928 2556 var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1929 2557 var $Object = Object;
1930 2558
1931 2559 // ES3 wrong here
1932 -var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
2560 +var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
1933 2561
1934 2562 // fallback for IE11 Script Access Denied error
1935 2563 var tryGet = function (it, key) {
1936 2564 try {
@@ -1946,9 +2574,9 @@
1946 2574 : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
1947 2575 // builtinTag case
1948 2576 : CORRECT_ARGUMENTS ? classofRaw(O)
1949 2577 // ES3 arguments fallback
1950 - : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
2578 + : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
1951 2579 };
1952 2580
1953 2581
1954 2582 /***/ }),
@@ -1980,45 +2608,8 @@
1980 2608
1981 2609
1982 2610 /***/ }),
1983 2611
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 2612 /***/ "../node_modules/core-js/internals/create-non-enumerable-property.js":
2022 2613 /*!***************************************************************************!*\
2023 2614 !*** ../node_modules/core-js/internals/create-non-enumerable-property.js ***!
2024 2615 \***************************************************************************/
@@ -2059,48 +2650,8 @@
2059 2650
2060 2651
2061 2652 /***/ }),
2062 2653
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 2654 /***/ "../node_modules/core-js/internals/define-built-in.js":
2104 2655 /*!************************************************************!*\
2105 2656 !*** ../node_modules/core-js/internals/define-built-in.js ***!
2106 2657 \************************************************************/
@@ -2138,26 +2689,8 @@
2138 2689
2139 2690
2140 2691 /***/ }),
2141 2692
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 2693 /***/ "../node_modules/core-js/internals/define-global-property.js":
2161 2694 /*!*******************************************************************!*\
2162 2695 !*** ../node_modules/core-js/internals/define-global-property.js ***!
2163 2696 \*******************************************************************/
@@ -2164,9 +2697,9 @@
2164 2697 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2165 2698
2166 2699 "use strict";
2167 2700
2168 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2701 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2169 2702
2170 2703 // eslint-disable-next-line es/no-object-defineproperty -- safe
2171 2704 var defineProperty = Object.defineProperty;
2172 2705
@@ -2171,11 +2704,11 @@
2171 2704 var defineProperty = Object.defineProperty;
2172 2705
2173 2706 module.exports = function (key, value) {
2174 2707 try {
2175 - defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
2708 + defineProperty(global, key, { value: value, configurable: true, writable: true });
2176 2709 } catch (error) {
2177 - globalThis[key] = value;
2710 + global[key] = value;
2178 2711 } return value;
2179 2712 };
2180 2713
2181 2714
@@ -2193,14 +2726,36 @@
2193 2726
2194 2727 // Detect IE8's incomplete defineProperty implementation
2195 2728 module.exports = !fails(function () {
2196 2729 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2197 - return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
2730 + return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
2198 2731 });
2199 2732
2200 2733
2201 2734 /***/ }),
2202 2735
2736 +/***/ "../node_modules/core-js/internals/document-all.js":
2737 +/*!*********************************************************!*\
2738 + !*** ../node_modules/core-js/internals/document-all.js ***!
2739 + \*********************************************************/
2740 +/***/ ((module) => {
2741 +
2742 +"use strict";
2743 +
2744 +var documentAll = typeof document == 'object' && document.all;
2745 +
2746 +// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
2747 +// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
2748 +var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
2749 +
2750 +module.exports = {
2751 + all: documentAll,
2752 + IS_HTMLDDA: IS_HTMLDDA
2753 +};
2754 +
2755 +
2756 +/***/ }),
2757 +
2203 2758 /***/ "../node_modules/core-js/internals/document-create-element.js":
2204 2759 /*!********************************************************************!*\
2205 2760 !*** ../node_modules/core-js/internals/document-create-element.js ***!
2206 2761 \********************************************************************/
@@ -2207,12 +2762,12 @@
2207 2762 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2208 2763
2209 2764 "use strict";
2210 2765
2211 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2766 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2212 2767 var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
2213 2768
2214 -var document = globalThis.document;
2769 +var document = global.document;
2215 2770 // typeof document.createElement is 'object' in old IE
2216 2771 var EXISTS = isObject(document) && isObject(document.createElement);
2217 2772
2218 2773 module.exports = function (it) {
@@ -2221,25 +2776,58 @@
2221 2776
2222 2777
2223 2778 /***/ }),
2224 2779
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 - \*************************************************************************/
2780 +/***/ "../node_modules/core-js/internals/engine-user-agent.js":
2781 +/*!**************************************************************!*\
2782 + !*** ../node_modules/core-js/internals/engine-user-agent.js ***!
2783 + \**************************************************************/
2229 2784 /***/ ((module) => {
2230 2785
2231 2786 "use strict";
2232 2787
2233 -var $TypeError = TypeError;
2234 -var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
2788 +module.exports = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
2235 2789
2236 -module.exports = function (it) {
2237 - if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
2238 - return it;
2239 -};
2240 2790
2791 +/***/ }),
2241 2792
2793 +/***/ "../node_modules/core-js/internals/engine-v8-version.js":
2794 +/*!**************************************************************!*\
2795 + !*** ../node_modules/core-js/internals/engine-v8-version.js ***!
2796 + \**************************************************************/
2797 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2798 +
2799 +"use strict";
2800 +
2801 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2802 +var userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ "../node_modules/core-js/internals/engine-user-agent.js");
2803 +
2804 +var process = global.process;
2805 +var Deno = global.Deno;
2806 +var versions = process && process.versions || Deno && Deno.version;
2807 +var v8 = versions && versions.v8;
2808 +var match, version;
2809 +
2810 +if (v8) {
2811 + match = v8.split('.');
2812 + // in old Chrome, versions of V8 isn't V8 = Chrome / 10
2813 + // but their correct versions are not interesting for us
2814 + version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
2815 +}
2816 +
2817 +// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
2818 +// so check `userAgent` even if `.v8` exists, but 0
2819 +if (!version && userAgent) {
2820 + match = userAgent.match(/Edge\/(\d+)/);
2821 + if (!match || match[1] >= 74) {
2822 + match = userAgent.match(/Chrome\/(\d+)/);
2823 + if (match) version = +match[1];
2824 + }
2825 +}
2826 +
2827 +module.exports = version;
2828 +
2829 +
2242 2830 /***/ }),
2243 2831
2244 2832 /***/ "../node_modules/core-js/internals/enum-bug-keys.js":
2245 2833 /*!**********************************************************!*\
@@ -2262,63 +2850,80 @@
2262 2850
2263 2851
2264 2852 /***/ }),
2265 2853
2266 -/***/ "../node_modules/core-js/internals/environment-user-agent.js":
2267 -/*!*******************************************************************!*\
2268 - !*** ../node_modules/core-js/internals/environment-user-agent.js ***!
2269 - \*******************************************************************/
2854 +/***/ "../node_modules/core-js/internals/error-stack-clear.js":
2855 +/*!**************************************************************!*\
2856 + !*** ../node_modules/core-js/internals/error-stack-clear.js ***!
2857 + \**************************************************************/
2270 2858 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2271 2859
2272 2860 "use strict";
2273 2861
2274 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2862 +var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
2275 2863
2276 -var navigator = globalThis.navigator;
2277 -var userAgent = navigator && navigator.userAgent;
2864 +var $Error = Error;
2865 +var replace = uncurryThis(''.replace);
2278 2866
2279 -module.exports = userAgent ? String(userAgent) : '';
2867 +var TEST = (function (arg) { return String($Error(arg).stack); })('zxcasd');
2868 +// eslint-disable-next-line redos/no-vulnerable -- safe
2869 +var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
2870 +var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);
2280 2871
2872 +module.exports = function (stack, dropEntries) {
2873 + if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string' && !$Error.prepareStackTrace) {
2874 + while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, '');
2875 + } return stack;
2876 +};
2281 2877
2878 +
2282 2879 /***/ }),
2283 2880
2284 -/***/ "../node_modules/core-js/internals/environment-v8-version.js":
2285 -/*!*******************************************************************!*\
2286 - !*** ../node_modules/core-js/internals/environment-v8-version.js ***!
2287 - \*******************************************************************/
2881 +/***/ "../node_modules/core-js/internals/error-stack-install.js":
2882 +/*!****************************************************************!*\
2883 + !*** ../node_modules/core-js/internals/error-stack-install.js ***!
2884 + \****************************************************************/
2288 2885 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2289 2886
2290 2887 "use strict";
2291 2888
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");
2889 +var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
2890 +var clearErrorStack = __webpack_require__(/*! ../internals/error-stack-clear */ "../node_modules/core-js/internals/error-stack-clear.js");
2891 +var ERROR_STACK_INSTALLABLE = __webpack_require__(/*! ../internals/error-stack-installable */ "../node_modules/core-js/internals/error-stack-installable.js");
2294 2892
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;
2893 +// non-standard V8
2894 +var captureStackTrace = Error.captureStackTrace;
2300 2895
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 -}
2896 +module.exports = function (error, C, stack, dropEntries) {
2897 + if (ERROR_STACK_INSTALLABLE) {
2898 + if (captureStackTrace) captureStackTrace(error, C);
2899 + else createNonEnumerableProperty(error, 'stack', clearErrorStack(stack, dropEntries));
2900 + }
2901 +};
2307 2902
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 2903
2318 -module.exports = version;
2904 +/***/ }),
2319 2905
2906 +/***/ "../node_modules/core-js/internals/error-stack-installable.js":
2907 +/*!********************************************************************!*\
2908 + !*** ../node_modules/core-js/internals/error-stack-installable.js ***!
2909 + \********************************************************************/
2910 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2320 2911
2912 +"use strict";
2913 +
2914 +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
2915 +var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js");
2916 +
2917 +module.exports = !fails(function () {
2918 + var error = Error('a');
2919 + if (!('stack' in error)) return true;
2920 + // eslint-disable-next-line es/no-object-defineproperty -- safe
2921 + Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
2922 + return error.stack !== 7;
2923 +});
2924 +
2925 +
2321 2926 /***/ }),
2322 2927
2323 2928 /***/ "../node_modules/core-js/internals/export.js":
2324 2929 /*!***************************************************!*\
@@ -2327,9 +2932,9 @@
2327 2932 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2328 2933
2329 2934 "use strict";
2330 2935
2331 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2936 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2332 2937 var getOwnPropertyDescriptor = (__webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../node_modules/core-js/internals/object-get-own-property-descriptor.js").f);
2333 2938 var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
2334 2939 var defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ "../node_modules/core-js/internals/define-built-in.js");
2335 2940 var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
@@ -2356,13 +2961,13 @@
2356 2961 var GLOBAL = options.global;
2357 2962 var STATIC = options.stat;
2358 2963 var FORCED, target, key, targetProperty, sourceProperty, descriptor;
2359 2964 if (GLOBAL) {
2360 - target = globalThis;
2965 + target = global;
2361 2966 } else if (STATIC) {
2362 - target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
2967 + target = global[TARGET] || defineGlobalProperty(TARGET, {});
2363 2968 } else {
2364 - target = globalThis[TARGET] && globalThis[TARGET].prototype;
2969 + target = (global[TARGET] || {}).prototype;
2365 2970 }
2366 2971 if (target) for (key in source) {
2367 2972 sourceProperty = source[key];
2368 2973 if (options.dontCallGetSet) {
@@ -2404,29 +3009,26 @@
2404 3009
2405 3010
2406 3011 /***/ }),
2407 3012
2408 -/***/ "../node_modules/core-js/internals/function-bind-context.js":
2409 -/*!******************************************************************!*\
2410 - !*** ../node_modules/core-js/internals/function-bind-context.js ***!
2411 - \******************************************************************/
3013 +/***/ "../node_modules/core-js/internals/function-apply.js":
3014 +/*!***********************************************************!*\
3015 + !*** ../node_modules/core-js/internals/function-apply.js ***!
3016 + \***********************************************************/
2412 3017 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2413 3018
2414 3019 "use strict";
2415 3020
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 3021 var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
2419 3022
2420 -var bind = uncurryThis(uncurryThis.bind);
3023 +var FunctionPrototype = Function.prototype;
3024 +var apply = FunctionPrototype.apply;
3025 +var call = FunctionPrototype.call;
2421 3026
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 -};
3027 +// eslint-disable-next-line es/no-reflect -- safe
3028 +module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
3029 + return call.apply(apply, arguments);
3030 +});
2429 3031
2430 3032
2431 3033 /***/ }),
2432 3034
@@ -2460,9 +3062,9 @@
2460 3062
2461 3063 var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
2462 3064
2463 3065 var call = Function.prototype.call;
2464 -// eslint-disable-next-line es/no-function-prototype-bind -- safe
3066 +
2465 3067 module.exports = NATIVE_BIND ? call.bind(call) : function () {
2466 3068 return call.apply(call, arguments);
2467 3069 };
2468 3070
@@ -2497,24 +3099,24 @@
2497 3099
2498 3100
2499 3101 /***/ }),
2500 3102
2501 -/***/ "../node_modules/core-js/internals/function-uncurry-this-clause.js":
2502 -/*!*************************************************************************!*\
2503 - !*** ../node_modules/core-js/internals/function-uncurry-this-clause.js ***!
2504 - \*************************************************************************/
3103 +/***/ "../node_modules/core-js/internals/function-uncurry-this-accessor.js":
3104 +/*!***************************************************************************!*\
3105 + !*** ../node_modules/core-js/internals/function-uncurry-this-accessor.js ***!
3106 + \***************************************************************************/
2505 3107 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2506 3108
2507 3109 "use strict";
2508 3110
2509 -var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js");
2510 3111 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3112 +var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
2511 3113
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);
3114 +module.exports = function (object, key, method) {
3115 + try {
3116 + // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3117 + return uncurryThis(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));
3118 + } catch (error) { /* empty */ }
2517 3119 };
2518 3120
2519 3121
2520 3122 /***/ }),
@@ -2530,9 +3132,8 @@
2530 3132 var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
2531 3133
2532 3134 var FunctionPrototype = Function.prototype;
2533 3135 var call = FunctionPrototype.call;
2534 -// eslint-disable-next-line es/no-function-prototype-bind -- safe
2535 3136 var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
2536 3137
2537 3138 module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
2538 3139 return function () {
@@ -2550,9 +3151,9 @@
2550 3151 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2551 3152
2552 3153 "use strict";
2553 3154
2554 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
3155 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2555 3156 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
2556 3157
2557 3158 var aFunction = function (argument) {
2558 3159 return isCallable(argument) ? argument : undefined;
@@ -2558,85 +3159,14 @@
2558 3159 return isCallable(argument) ? argument : undefined;
2559 3160 };
2560 3161
2561 3162 module.exports = function (namespace, method) {
2562 - return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
3163 + return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method];
2563 3164 };
2564 3165
2565 3166
2566 3167 /***/ }),
2567 3168
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 3169 /***/ "../node_modules/core-js/internals/get-method.js":
2640 3170 /*!*******************************************************!*\
2641 3171 !*** ../node_modules/core-js/internals/get-method.js ***!
2642 3172 \*******************************************************/
@@ -2656,18 +3186,18 @@
2656 3186
2657 3187
2658 3188 /***/ }),
2659 3189
2660 -/***/ "../node_modules/core-js/internals/global-this.js":
2661 -/*!********************************************************!*\
2662 - !*** ../node_modules/core-js/internals/global-this.js ***!
2663 - \********************************************************/
3190 +/***/ "../node_modules/core-js/internals/global.js":
3191 +/*!***************************************************!*\
3192 + !*** ../node_modules/core-js/internals/global.js ***!
3193 + \***************************************************/
2664 3194 /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2665 3195
2666 3196 "use strict";
2667 3197
2668 3198 var check = function (it) {
2669 - return it && it.Math === Math && it;
3199 + return it && it.Math == Math && it;
2670 3200 };
2671 3201
2672 3202 // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
2673 3203 module.exports =
@@ -2676,11 +3206,10 @@
2676 3206 check(typeof window == 'object' && window) ||
2677 3207 // eslint-disable-next-line no-restricted-globals -- safe
2678 3208 check(typeof self == 'object' && self) ||
2679 3209 check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
2680 - check(typeof this == 'object' && this) ||
2681 3210 // eslint-disable-next-line no-new-func -- fallback
2682 - (function () { return this; })() || Function('return this')();
3211 + (function () { return this; })() || this || Function('return this')();
2683 3212
2684 3213
2685 3214 /***/ }),
2686 3215
@@ -2719,23 +3248,8 @@
2719 3248
2720 3249
2721 3250 /***/ }),
2722 3251
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 3252 /***/ "../node_modules/core-js/internals/ie8-dom-define.js":
2739 3253 /*!***********************************************************!*\
2740 3254 !*** ../node_modules/core-js/internals/ie8-dom-define.js ***!
2741 3255 \***********************************************************/
@@ -2751,9 +3265,9 @@
2751 3265 module.exports = !DESCRIPTORS && !fails(function () {
2752 3266 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2753 3267 return Object.defineProperty(createElement('div'), 'a', {
2754 3268 get: function () { return 7; }
2755 - }).a !== 7;
3269 + }).a != 7;
2756 3270 });
2757 3271
2758 3272
2759 3273 /***/ }),
@@ -2778,14 +3292,44 @@
2778 3292 // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
2779 3293 // eslint-disable-next-line no-prototype-builtins -- safe
2780 3294 return !$Object('z').propertyIsEnumerable(0);
2781 3295 }) ? function (it) {
2782 - return classof(it) === 'String' ? split(it, '') : $Object(it);
3296 + return classof(it) == 'String' ? split(it, '') : $Object(it);
2783 3297 } : $Object;
2784 3298
2785 3299
2786 3300 /***/ }),
2787 3301
3302 +/***/ "../node_modules/core-js/internals/inherit-if-required.js":
3303 +/*!****************************************************************!*\
3304 + !*** ../node_modules/core-js/internals/inherit-if-required.js ***!
3305 + \****************************************************************/
3306 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3307 +
3308 +"use strict";
3309 +
3310 +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3311 +var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
3312 +var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "../node_modules/core-js/internals/object-set-prototype-of.js");
3313 +
3314 +// makes subclassing work correct for wrapped built-ins
3315 +module.exports = function ($this, dummy, Wrapper) {
3316 + var NewTarget, NewTargetPrototype;
3317 + if (
3318 + // it can work only with native `setPrototypeOf`
3319 + setPrototypeOf &&
3320 + // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
3321 + isCallable(NewTarget = dummy.constructor) &&
3322 + NewTarget !== Wrapper &&
3323 + isObject(NewTargetPrototype = NewTarget.prototype) &&
3324 + NewTargetPrototype !== Wrapper.prototype
3325 + ) setPrototypeOf($this, NewTargetPrototype);
3326 + return $this;
3327 +};
3328 +
3329 +
3330 +/***/ }),
3331 +
2788 3332 /***/ "../node_modules/core-js/internals/inspect-source.js":
2789 3333 /*!***********************************************************!*\
2790 3334 !*** ../node_modules/core-js/internals/inspect-source.js ***!
2791 3335 \***********************************************************/
@@ -2810,8 +3354,30 @@
2810 3354
2811 3355
2812 3356 /***/ }),
2813 3357
3358 +/***/ "../node_modules/core-js/internals/install-error-cause.js":
3359 +/*!****************************************************************!*\
3360 + !*** ../node_modules/core-js/internals/install-error-cause.js ***!
3361 + \****************************************************************/
3362 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3363 +
3364 +"use strict";
3365 +
3366 +var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
3367 +var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
3368 +
3369 +// `InstallErrorCause` abstract operation
3370 +// https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
3371 +module.exports = function (O, options) {
3372 + if (isObject(options) && 'cause' in options) {
3373 + createNonEnumerableProperty(O, 'cause', options.cause);
3374 + }
3375 +};
3376 +
3377 +
3378 +/***/ }),
3379 +
2814 3380 /***/ "../node_modules/core-js/internals/internal-state.js":
2815 3381 /*!***********************************************************!*\
2816 3382 !*** ../node_modules/core-js/internals/internal-state.js ***!
2817 3383 \***********************************************************/
@@ -2819,9 +3385,9 @@
2819 3385
2820 3386 "use strict";
2821 3387
2822 3388 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");
3389 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2824 3390 var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
2825 3391 var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
2826 3392 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
2827 3393 var shared = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
@@ -2828,10 +3394,10 @@
2828 3394 var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../node_modules/core-js/internals/shared-key.js");
2829 3395 var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js");
2830 3396
2831 3397 var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
2832 -var TypeError = globalThis.TypeError;
2833 -var WeakMap = globalThis.WeakMap;
3398 +var TypeError = global.TypeError;
3399 +var WeakMap = global.WeakMap;
2834 3400 var set, get, has;
2835 3401
2836 3402 var enforce = function (it) {
2837 3403 return has(it) ? get(it) : set(it, {});
@@ -2840,9 +3406,9 @@
2840 3406 var getterFor = function (TYPE) {
2841 3407 return function (it) {
2842 3408 var state;
2843 3409 if (!isObject(it) || (state = get(it)).type !== TYPE) {
2844 - throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
3410 + throw TypeError('Incompatible receiver, ' + TYPE + ' required');
2845 3411 } return state;
2846 3412 };
2847 3413 };
2848 3414
@@ -2853,9 +3419,9 @@
2853 3419 store.has = store.has;
2854 3420 store.set = store.set;
2855 3421 /* eslint-enable no-self-assign -- prototype methods protection */
2856 3422 set = function (it, metadata) {
2857 - if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
3423 + if (store.has(it)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
2858 3424 metadata.facade = it;
2859 3425 store.set(it, metadata);
2860 3426 return metadata;
2861 3427 };
@@ -2868,9 +3434,9 @@
2868 3434 } else {
2869 3435 var STATE = sharedKey('state');
2870 3436 hiddenKeys[STATE] = true;
2871 3437 set = function (it, metadata) {
2872 - if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
3438 + if (hasOwn(it, STATE)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
2873 3439 metadata.facade = it;
2874 3440 createNonEnumerableProperty(it, STATE, metadata);
2875 3441 return metadata;
2876 3442 };
@@ -2892,65 +3458,23 @@
2892 3458
2893 3459
2894 3460 /***/ }),
2895 3461
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 3462 /***/ "../node_modules/core-js/internals/is-callable.js":
2939 3463 /*!********************************************************!*\
2940 3464 !*** ../node_modules/core-js/internals/is-callable.js ***!
2941 3465 \********************************************************/
2942 -/***/ ((module) => {
3466 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2943 3467
2944 3468 "use strict";
2945 3469
2946 -// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
2947 -var documentAll = typeof document == 'object' && document.all;
3470 +var $documentAll = __webpack_require__(/*! ../internals/document-all */ "../node_modules/core-js/internals/document-all.js");
2948 3471
3472 +var documentAll = $documentAll.all;
3473 +
2949 3474 // `IsCallable` abstract operation
2950 3475 // 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) {
3476 +module.exports = $documentAll.IS_HTMLDDA ? function (argument) {
2953 3477 return typeof argument == 'function' || argument === documentAll;
2954 3478 } : function (argument) {
2955 3479 return typeof argument == 'function';
2956 3480 };
@@ -2972,10 +3496,10 @@
2972 3496 var replacement = /#|\.prototype\./;
2973 3497
2974 3498 var isForced = function (feature, detection) {
2975 3499 var value = data[normalize(feature)];
2976 - return value === POLYFILL ? true
2977 - : value === NATIVE ? false
3500 + return value == POLYFILL ? true
3501 + : value == NATIVE ? false
2978 3502 : isCallable(detection) ? fails(detection)
2979 3503 : !!detection;
2980 3504 };
2981 3505
@@ -3017,10 +3541,15 @@
3017 3541
3018 3542 "use strict";
3019 3543
3020 3544 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3545 +var $documentAll = __webpack_require__(/*! ../internals/document-all */ "../node_modules/core-js/internals/document-all.js");
3021 3546
3022 -module.exports = function (it) {
3547 +var documentAll = $documentAll.all;
3548 +
3549 +module.exports = $documentAll.IS_HTMLDDA ? function (it) {
3550 + return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll;
3551 +} : function (it) {
3023 3552 return typeof it == 'object' ? it !== null : isCallable(it);
3024 3553 };
3025 3554
3026 3555
@@ -3063,377 +3592,8 @@
3063 3592
3064 3593
3065 3594 /***/ }),
3066 3595
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 3596 /***/ "../node_modules/core-js/internals/length-of-array-like.js":
3437 3597 /*!*****************************************************************!*\
3438 3598 !*** ../node_modules/core-js/internals/length-of-array-like.js ***!
3439 3599 \*****************************************************************/
@@ -3485,9 +3645,9 @@
3485 3645 var TEMPLATE = String(String).split('String');
3486 3646
3487 3647 var makeBuiltIn = module.exports = function (value, name, options) {
3488 3648 if (stringSlice($String(name), 0, 7) === 'Symbol(') {
3489 - name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
3649 + name = '[' + replace($String(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
3490 3650 }
3491 3651 if (options && options.getter) name = 'get ' + name;
3492 3652 if (options && options.setter) name = 'set ' + name;
3493 3653 if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
@@ -3539,136 +3699,25 @@
3539 3699
3540 3700
3541 3701 /***/ }),
3542 3702
3543 -/***/ "../node_modules/core-js/internals/object-create.js":
3544 -/*!**********************************************************!*\
3545 - !*** ../node_modules/core-js/internals/object-create.js ***!
3546 - \**********************************************************/
3703 +/***/ "../node_modules/core-js/internals/normalize-string-argument.js":
3704 +/*!**********************************************************************!*\
3705 + !*** ../node_modules/core-js/internals/normalize-string-argument.js ***!
3706 + \**********************************************************************/
3547 3707 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3548 3708
3549 3709 "use strict";
3550 3710
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");
3711 +var toString = __webpack_require__(/*! ../internals/to-string */ "../node_modules/core-js/internals/to-string.js");
3559 3712
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;
3713 +module.exports = function (argument, $default) {
3714 + return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
3570 3715 };
3571 3716
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 3717
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 3718 /***/ }),
3638 3719
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 3720 /***/ "../node_modules/core-js/internals/object-define-property.js":
3672 3721 /*!*******************************************************************!*\
3673 3722 !*** ../node_modules/core-js/internals/object-define-property.js ***!
3674 3723 \*******************************************************************/
@@ -3714,9 +3763,9 @@
3714 3763 anObject(Attributes);
3715 3764 if (IE8_DOM_DEFINE) try {
3716 3765 return $defineProperty(O, P, Attributes);
3717 3766 } catch (error) { /* empty */ }
3718 - if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
3767 + if ('get' in Attributes || 'set' in Attributes) throw $TypeError('Accessors not supported');
3719 3768 if ('value' in Attributes) O[P] = Attributes.value;
3720 3769 return O;
3721 3770 };
3722 3771
@@ -3793,41 +3842,8 @@
3793 3842
3794 3843
3795 3844 /***/ }),
3796 3845
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 3846 /***/ "../node_modules/core-js/internals/object-is-prototype-of.js":
3831 3847 /*!*******************************************************************!*\
3832 3848 !*** ../node_modules/core-js/internals/object-is-prototype-of.js ***!
3833 3849 \*******************************************************************/
@@ -3873,29 +3889,8 @@
3873 3889
3874 3890
3875 3891 /***/ }),
3876 3892
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 3893 /***/ "../node_modules/core-js/internals/object-property-is-enumerable.js":
3899 3894 /*!**************************************************************************!*\
3900 3895 !*** ../node_modules/core-js/internals/object-property-is-enumerable.js ***!
3901 3896 \**************************************************************************/
@@ -3919,8 +3914,46 @@
3919 3914
3920 3915
3921 3916 /***/ }),
3922 3917
3918 +/***/ "../node_modules/core-js/internals/object-set-prototype-of.js":
3919 +/*!********************************************************************!*\
3920 + !*** ../node_modules/core-js/internals/object-set-prototype-of.js ***!
3921 + \********************************************************************/
3922 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3923 +
3924 +"use strict";
3925 +
3926 +/* eslint-disable no-proto -- safe */
3927 +var uncurryThisAccessor = __webpack_require__(/*! ../internals/function-uncurry-this-accessor */ "../node_modules/core-js/internals/function-uncurry-this-accessor.js");
3928 +var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
3929 +var aPossiblePrototype = __webpack_require__(/*! ../internals/a-possible-prototype */ "../node_modules/core-js/internals/a-possible-prototype.js");
3930 +
3931 +// `Object.setPrototypeOf` method
3932 +// https://tc39.es/ecma262/#sec-object.setprototypeof
3933 +// Works with __proto__ only. Old v8 can't work with null proto objects.
3934 +// eslint-disable-next-line es/no-object-setprototypeof -- safe
3935 +module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
3936 + var CORRECT_SETTER = false;
3937 + var test = {};
3938 + var setter;
3939 + try {
3940 + setter = uncurryThisAccessor(Object.prototype, '__proto__', 'set');
3941 + setter(test, []);
3942 + CORRECT_SETTER = test instanceof Array;
3943 + } catch (error) { /* empty */ }
3944 + return function setPrototypeOf(O, proto) {
3945 + anObject(O);
3946 + aPossiblePrototype(proto);
3947 + if (CORRECT_SETTER) setter(O, proto);
3948 + else O.__proto__ = proto;
3949 + return O;
3950 + };
3951 +}() : undefined);
3952 +
3953 +
3954 +/***/ }),
3955 +
3923 3956 /***/ "../node_modules/core-js/internals/ordinary-to-primitive.js":
3924 3957 /*!******************************************************************!*\
3925 3958 !*** ../node_modules/core-js/internals/ordinary-to-primitive.js ***!
3926 3959 \******************************************************************/
@@ -3940,9 +3973,9 @@
3940 3973 var fn, val;
3941 3974 if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
3942 3975 if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
3943 3976 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");
3977 + throw $TypeError("Can't convert object to primitive value");
3945 3978 };
3946 3979
3947 3980
3948 3981 /***/ }),
@@ -3972,8 +4005,29 @@
3972 4005
3973 4006
3974 4007 /***/ }),
3975 4008
4009 +/***/ "../node_modules/core-js/internals/proxy-accessor.js":
4010 +/*!***********************************************************!*\
4011 + !*** ../node_modules/core-js/internals/proxy-accessor.js ***!
4012 + \***********************************************************/
4013 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4014 +
4015 +"use strict";
4016 +
4017 +var defineProperty = (__webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js").f);
4018 +
4019 +module.exports = function (Target, Source, key) {
4020 + key in Target || defineProperty(Target, key, {
4021 + configurable: true,
4022 + get: function () { return Source[key]; },
4023 + set: function (it) { Source[key] = it; }
4024 + });
4025 +};
4026 +
4027 +
4028 +/***/ }),
4029 +
3976 4030 /***/ "../node_modules/core-js/internals/require-object-coercible.js":
3977 4031 /*!*********************************************************************!*\
3978 4032 !*** ../node_modules/core-js/internals/require-object-coercible.js ***!
3979 4033 \*********************************************************************/
@@ -3987,9 +4041,9 @@
3987 4041
3988 4042 // `RequireObjectCoercible` abstract operation
3989 4043 // https://tc39.es/ecma262/#sec-requireobjectcoercible
3990 4044 module.exports = function (it) {
3991 - if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
4045 + if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it);
3992 4046 return it;
3993 4047 };
3994 4048
3995 4049
@@ -4022,22 +4076,15 @@
4022 4076 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4023 4077
4024 4078 "use strict";
4025 4079
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");
4080 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4028 4081 var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
4029 4082
4030 4083 var SHARED = '__core-js_shared__';
4031 -var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
4084 +var store = global[SHARED] || defineGlobalProperty(SHARED, {});
4032 4085
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 -});
4086 +module.exports = store;
4040 4087
4041 4088
4042 4089 /***/ }),
4043 4090
@@ -4048,13 +4095,20 @@
4048 4095 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4049 4096
4050 4097 "use strict";
4051 4098
4099 +var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
4052 4100 var store = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
4053 4101
4054 -module.exports = function (key, value) {
4055 - return store[key] || (store[key] = value || {});
4056 -};
4102 +(module.exports = function (key, value) {
4103 + return store[key] || (store[key] = value !== undefined ? value : {});
4104 +})('versions', []).push({
4105 + version: '3.32.0',
4106 + mode: IS_PURE ? 'pure' : 'global',
4107 + copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
4108 + license: 'https://github.com/zloirock/core-js/blob/v3.32.0/LICENSE',
4109 + source: 'https://github.com/zloirock/core-js'
4110 +});
4057 4111
4058 4112
4059 4113 /***/ }),
4060 4114
@@ -4066,17 +4120,17 @@
4066 4120
4067 4121 "use strict";
4068 4122
4069 4123 /* 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");
4124 +var V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ "../node_modules/core-js/internals/engine-v8-version.js");
4071 4125 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");
4126 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4073 4127
4074 -var $String = globalThis.String;
4128 +var $String = global.String;
4075 4129
4076 4130 // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
4077 4131 module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
4078 - var symbol = Symbol('symbol detection');
4132 + var symbol = Symbol();
4079 4133 // Chrome 38 Symbol has incorrect toString conversion
4080 4134 // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
4081 4135 // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
4082 4136 // of course, fail.
@@ -4166,10 +4220,9 @@
4166 4220
4167 4221 // `ToLength` abstract operation
4168 4222 // https://tc39.es/ecma262/#sec-tolength
4169 4223 module.exports = function (argument) {
4170 - var len = toIntegerOrInfinity(argument);
4171 - return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
4224 + return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
4172 4225 };
4173 4226
4174 4227
4175 4228 /***/ }),
@@ -4222,9 +4275,9 @@
4222 4275 if (exoticToPrim) {
4223 4276 if (pref === undefined) pref = 'default';
4224 4277 result = call(exoticToPrim, input, pref);
4225 4278 if (!isObject(result) || isSymbol(result)) return result;
4226 - throw new $TypeError("Can't convert object to primitive value");
4279 + throw $TypeError("Can't convert object to primitive value");
4227 4280 }
4228 4281 if (pref === undefined) pref = 'number';
4229 4282 return ordinaryToPrimitive(input, pref);
4230 4283 };
@@ -4272,8 +4325,28 @@
4272 4325
4273 4326
4274 4327 /***/ }),
4275 4328
4329 +/***/ "../node_modules/core-js/internals/to-string.js":
4330 +/*!******************************************************!*\
4331 + !*** ../node_modules/core-js/internals/to-string.js ***!
4332 + \******************************************************/
4333 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4334 +
4335 +"use strict";
4336 +
4337 +var classof = __webpack_require__(/*! ../internals/classof */ "../node_modules/core-js/internals/classof.js");
4338 +
4339 +var $String = String;
4340 +
4341 +module.exports = function (argument) {
4342 + if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
4343 + return $String(argument);
4344 +};
4345 +
4346 +
4347 +/***/ }),
4348 +
4276 4349 /***/ "../node_modules/core-js/internals/try-to-string.js":
4277 4350 /*!**********************************************************!*\
4278 4351 !*** ../node_modules/core-js/internals/try-to-string.js ***!
4279 4352 \**********************************************************/
@@ -4305,9 +4378,9 @@
4305 4378 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
4306 4379
4307 4380 var id = 0;
4308 4381 var postfix = Math.random();
4309 -var toString = uncurryThis(1.1.toString);
4382 +var toString = uncurryThis(1.0.toString);
4310 4383
4311 4384 module.exports = function (key) {
4312 4385 return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
4313 4386 };
@@ -4325,11 +4398,11 @@
4325 4398
4326 4399 /* eslint-disable es/no-symbol -- required for testing */
4327 4400 var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
4328 4401
4329 -module.exports = NATIVE_SYMBOL &&
4330 - !Symbol.sham &&
4331 - typeof Symbol.iterator == 'symbol';
4402 +module.exports = NATIVE_SYMBOL
4403 + && !Symbol.sham
4404 + && typeof Symbol.iterator == 'symbol';
4332 4405
4333 4406
4334 4407 /***/ }),
4335 4408
@@ -4350,9 +4423,9 @@
4350 4423 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
4351 4424 return Object.defineProperty(function () { /* empty */ }, 'prototype', {
4352 4425 value: 42,
4353 4426 writable: false
4354 - }).prototype !== 42;
4427 + }).prototype != 42;
4355 4428 });
4356 4429
4357 4430
4358 4431 /***/ }),
@@ -4364,12 +4437,12 @@
4364 4437 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4365 4438
4366 4439 "use strict";
4367 4440
4368 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
4441 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4369 4442 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
4370 4443
4371 -var WeakMap = globalThis.WeakMap;
4444 +var WeakMap = global.WeakMap;
4372 4445
4373 4446 module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
4374 4447
4375 4448
@@ -4382,9 +4455,9 @@
4382 4455 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4383 4456
4384 4457 "use strict";
4385 4458
4386 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
4459 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4387 4460 var shared = __webpack_require__(/*! ../internals/shared */ "../node_modules/core-js/internals/shared.js");
4388 4461 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
4389 4462 var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js");
4390 4463 var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
@@ -4389,9 +4462,9 @@
4389 4462 var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js");
4390 4463 var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
4391 4464 var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../node_modules/core-js/internals/use-symbol-as-uid.js");
4392 4465
4393 -var Symbol = globalThis.Symbol;
4466 +var Symbol = global.Symbol;
4394 4467 var WellKnownSymbolsStore = shared('wks');
4395 4468 var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
4396 4469
4397 4470 module.exports = function (name) {
@@ -4404,407 +4477,164 @@
4404 4477
4405 4478
4406 4479 /***/ }),
4407 4480
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__) => {
4481 +/***/ "../node_modules/core-js/internals/wrap-error-constructor-with-cause.js":
4482 +/*!******************************************************************************!*\
4483 + !*** ../node_modules/core-js/internals/wrap-error-constructor-with-cause.js ***!
4484 + \******************************************************************************/
4485 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4413 4486
4414 4487 "use strict";
4415 4488
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");
4489 +var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js");
4478 4490 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);
4491 +var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
4492 +var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js");
4493 +var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "../node_modules/core-js/internals/object-set-prototype-of.js");
4494 +var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "../node_modules/core-js/internals/copy-constructor-properties.js");
4495 +var proxyAccessor = __webpack_require__(/*! ../internals/proxy-accessor */ "../node_modules/core-js/internals/proxy-accessor.js");
4496 +var inheritIfRequired = __webpack_require__(/*! ../internals/inherit-if-required */ "../node_modules/core-js/internals/inherit-if-required.js");
4497 +var normalizeStringArgument = __webpack_require__(/*! ../internals/normalize-string-argument */ "../node_modules/core-js/internals/normalize-string-argument.js");
4498 +var installErrorCause = __webpack_require__(/*! ../internals/install-error-cause */ "../node_modules/core-js/internals/install-error-cause.js");
4499 +var installErrorStack = __webpack_require__(/*! ../internals/error-stack-install */ "../node_modules/core-js/internals/error-stack-install.js");
4481 4500 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
4482 4501 var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
4483 4502
4484 -var CONSTRUCTOR = 'constructor';
4485 -var ITERATOR = 'Iterator';
4486 -var TO_STRING_TAG = wellKnownSymbol('toStringTag');
4503 +module.exports = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
4504 + var STACK_TRACE_LIMIT = 'stackTraceLimit';
4505 + var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
4506 + var path = FULL_NAME.split('.');
4507 + var ERROR_NAME = path[path.length - 1];
4508 + var OriginalError = getBuiltIn.apply(null, path);
4487 4509
4488 -var $TypeError = TypeError;
4489 -var NativeIterator = globalThis[ITERATOR];
4510 + if (!OriginalError) return;
4490 4511
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({}); });
4512 + var OriginalErrorPrototype = OriginalError.prototype;
4497 4513
4498 -var IteratorConstructor = function Iterator() {
4499 - anInstance(this, IteratorPrototype);
4500 - if (getPrototypeOf(this) === IteratorPrototype) throw new $TypeError('Abstract class Iterator not directly constructable');
4501 -};
4514 + // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
4515 + if (!IS_PURE && hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
4502 4516
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 -};
4517 + if (!FORCED) return OriginalError;
4519 4518
4520 -if (!hasOwn(IteratorPrototype, TO_STRING_TAG)) defineIteratorPrototypeAccessor(TO_STRING_TAG, ITERATOR);
4519 + var BaseError = getBuiltIn('Error');
4521 4520
4522 -if (FORCED || !hasOwn(IteratorPrototype, CONSTRUCTOR) || IteratorPrototype[CONSTRUCTOR] === Object) {
4523 - defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
4524 -}
4521 + var WrappedError = wrapper(function (a, b) {
4522 + var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
4523 + var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
4524 + if (message !== undefined) createNonEnumerableProperty(result, 'message', message);
4525 + installErrorStack(result, WrappedError, result.stack, 2);
4526 + if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
4527 + if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
4528 + return result;
4529 + });
4525 4530
4526 -IteratorConstructor.prototype = IteratorPrototype;
4531 + WrappedError.prototype = OriginalErrorPrototype;
4527 4532
4528 -// `Iterator` constructor
4529 -// https://tc39.es/ecma262/#sec-iterator
4530 -$({ global: true, constructor: true, forced: FORCED }, {
4531 - Iterator: IteratorConstructor
4532 -});
4533 + if (ERROR_NAME !== 'Error') {
4534 + if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError);
4535 + else copyConstructorProperties(WrappedError, BaseError, { name: true });
4536 + } else if (DESCRIPTORS && STACK_TRACE_LIMIT in OriginalError) {
4537 + proxyAccessor(WrappedError, OriginalError, STACK_TRACE_LIMIT);
4538 + proxyAccessor(WrappedError, OriginalError, 'prepareStackTrace');
4539 + }
4533 4540
4541 + copyConstructorProperties(WrappedError, OriginalError);
4534 4542
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);
4543 + if (!IS_PURE) try {
4544 + // Safari 13- bug: WebAssembly errors does not have a proper `.name`
4545 + if (OriginalErrorPrototype.name !== ERROR_NAME) {
4546 + createNonEnumerableProperty(OriginalErrorPrototype, 'name', ERROR_NAME);
4586 4547 }
4548 + OriginalErrorPrototype.constructor = WrappedError;
4549 + } catch (error) { /* empty */ }
4587 4550
4588 - if (filterWithoutClosingOnEarlyError) return call(filterWithoutClosingOnEarlyError, this, predicate);
4551 + return WrappedError;
4552 +};
4589 4553
4590 - return new IteratorProxy(getIteratorDirect(this), {
4591 - predicate: predicate
4592 - });
4593 - }
4594 -});
4595 4554
4596 -
4597 4555 /***/ }),
4598 4556
4599 -/***/ "../node_modules/core-js/modules/es.iterator.find.js":
4600 -/*!***********************************************************!*\
4601 - !*** ../node_modules/core-js/modules/es.iterator.find.js ***!
4602 - \***********************************************************/
4557 +/***/ "../node_modules/core-js/modules/es.error.cause.js":
4558 +/*!*********************************************************!*\
4559 + !*** ../node_modules/core-js/modules/es.error.cause.js ***!
4560 + \*********************************************************/
4603 4561 /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4604 4562
4605 4563 "use strict";
4606 4564
4565 +/* eslint-disable no-unused-vars -- required for functions `.length` */
4607 4566 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");
4567 +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4568 +var apply = __webpack_require__(/*! ../internals/function-apply */ "../node_modules/core-js/internals/function-apply.js");
4569 +var wrapErrorConstructorWithCause = __webpack_require__(/*! ../internals/wrap-error-constructor-with-cause */ "../node_modules/core-js/internals/wrap-error-constructor-with-cause.js");
4615 4570
4616 -var findWithoutClosingOnEarlyError = iteratorHelperWithoutClosingOnEarlyError('find', TypeError);
4571 +var WEB_ASSEMBLY = 'WebAssembly';
4572 +var WebAssembly = global[WEB_ASSEMBLY];
4617 4573
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 - }
4574 +var FORCED = Error('e', { cause: 7 }).cause !== 7;
4628 4575
4629 - if (findWithoutClosingOnEarlyError) return call(findWithoutClosingOnEarlyError, this, predicate);
4576 +var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
4577 + var O = {};
4578 + O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
4579 + $({ global: true, constructor: true, arity: 1, forced: FORCED }, O);
4580 +};
4630 4581
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;
4582 +var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
4583 + if (WebAssembly && WebAssembly[ERROR_NAME]) {
4584 + var O = {};
4585 + O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
4586 + $({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);
4636 4587 }
4588 +};
4589 +
4590 +// https://tc39.es/ecma262/#sec-nativeerror
4591 +exportGlobalErrorCauseWrapper('Error', function (init) {
4592 + return function Error(message) { return apply(init, this, arguments); };
4637 4593 });
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 - }
4594 +exportGlobalErrorCauseWrapper('EvalError', function (init) {
4595 + return function EvalError(message) { return apply(init, this, arguments); };
4680 4596 });
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);
4597 +exportGlobalErrorCauseWrapper('RangeError', function (init) {
4598 + return function RangeError(message) { return apply(init, this, arguments); };
4716 4599 });
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 - }
4600 +exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
4601 + return function ReferenceError(message) { return apply(init, this, arguments); };
4735 4602 });
4603 +exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
4604 + return function SyntaxError(message) { return apply(init, this, arguments); };
4605 +});
4606 +exportGlobalErrorCauseWrapper('TypeError', function (init) {
4607 + return function TypeError(message) { return apply(init, this, arguments); };
4608 +});
4609 +exportGlobalErrorCauseWrapper('URIError', function (init) {
4610 + return function URIError(message) { return apply(init, this, arguments); };
4611 +});
4612 +exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
4613 + return function CompileError(message) { return apply(init, this, arguments); };
4614 +});
4615 +exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
4616 + return function LinkError(message) { return apply(init, this, arguments); };
4617 +});
4618 +exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
4619 + return function RuntimeError(message) { return apply(init, this, arguments); };
4620 +});
4736 4621
4737 4622
4738 4623 /***/ }),
4739 4624
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__) => {
4625 +/***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js":
4626 +/*!***********************************************************************!*\
4627 + !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
4628 + \***********************************************************************/
4629 +/***/ ((module) => {
4745 4630
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 -
4631 +function _interopRequireDefault(obj) {
4632 + return obj && obj.__esModule ? obj : {
4633 + "default": obj
4634 + };
4635 +}
4636 +module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
4807 4637
4808 4638 /***/ })
4809 4639
4810 4640 },