PluginProbe
Elementor Website Builder – more than just a page builder / 3.6.6
Elementor Website Builder – more than just a page builder v3.6.6
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 4.0.8 All 454 releases
← All changes | assets/js/frontend-modules.js +334 -3909 4.0.7 → 3.6.6 View file →
@@ -1,142 +1,24 @@
1 -(self["webpackChunkelementorFrontend"] = self["webpackChunkelementorFrontend"] || []).push([["frontend-modules"],{
1 +/*! elementor - v3.6.6 - 08-06-2022 */
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__) => {
4 +/***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js":
5 +/*!***********************************************************************!*\
6 + !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
7 + \***********************************************************************/
8 +/***/ ((module) => {
8 9
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 - }
10 +function _interopRequireDefault(obj) {
11 + return obj && obj.__esModule ? obj : {
12 + "default": obj
13 + };
77 14 }
78 -exports.BaseRegistry = BaseRegistry;
79 15
80 -/***/ }),
16 +module.exports = _interopRequireDefault;
17 +module.exports["default"] = module.exports, module.exports.__esModule = true;
81 18
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 19 /***/ }),
99 20
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 21 /***/ "../assets/dev/js/editor/utils/is-instanceof.js":
140 22 /*!******************************************************!*\
141 23 !*** ../assets/dev/js/editor/utils/is-instanceof.js ***!
142 24 \******************************************************/
@@ -148,26 +30,30 @@
148 30 Object.defineProperty(exports, "__esModule", ({
149 31 value: true
150 32 }));
151 33 exports["default"] = void 0;
34 +
152 35 /**
153 36 * Some FileAPI objects such as FileList, DataTransferItem and DataTransferItemList has inconsistency with the retrieved
154 37 * object (from events, etc.) and the actual JavaScript object so a regular instanceof doesn't work. This function can
155 38 * check whether it's instanceof by using the objects constructor and prototype names.
156 39 *
157 - * @param object
158 - * @param constructors
159 - * @return {boolean}
40 + * @param object
41 + * @param constructors
42 + * @returns {boolean}
160 43 */
161 44 var _default = (object, constructors) => {
162 45 constructors = Array.isArray(constructors) ? constructors : [constructors];
46 +
163 47 for (const constructor of constructors) {
164 48 if (object.constructor.name === constructor.prototype[Symbol.toStringTag]) {
165 49 return true;
166 50 }
167 51 }
52 +
168 53 return false;
169 54 };
55 +
170 56 exports["default"] = _default;
171 57
172 58 /***/ }),
173 59
@@ -174,9 +60,9 @@
174 60 /***/ "../assets/dev/js/frontend/document.js":
175 61 /*!*********************************************!*\
176 62 !*** ../assets/dev/js/frontend/document.js ***!
177 63 \*********************************************/
178 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
64 +/***/ ((__unused_webpack_module, exports) => {
179 65
180 66 "use strict";
181 67
182 68
@@ -183,10 +69,9 @@
183 69 Object.defineProperty(exports, "__esModule", ({
184 70 value: true
185 71 }));
186 72 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");
73 +
189 74 class _default extends elementorModules.ViewModule {
190 75 getDefaultSettings() {
191 76 return {
192 77 selectors: {
@@ -197,8 +82,9 @@
197 82 editMode: 'elementor-edit-mode'
198 83 }
199 84 };
200 85 }
86 +
201 87 getDefaultElements() {
202 88 const selectors = this.getSettings('selectors');
203 89 return {
204 90 $elements: this.$element.find(selectors.elements).not(this.$element.find(selectors.nestedDocumentElements))
@@ -203,10 +89,12 @@
203 89 return {
204 90 $elements: this.$element.find(selectors.elements).not(this.$element.find(selectors.nestedDocumentElements))
205 91 };
206 92 }
93 +
207 94 getDocumentSettings(setting) {
208 95 let elementSettings;
96 +
209 97 if (this.isEdit) {
210 98 elementSettings = {};
211 99 const settings = elementor.settings.page.model;
212 100 jQuery.each(settings.getActiveControls(), controlKey => {
@@ -214,17 +102,21 @@
214 102 });
215 103 } else {
216 104 elementSettings = this.$element.data('elementor-settings') || {};
217 105 }
106 +
218 107 return this.getItems(elementSettings, setting);
219 108 }
109 +
220 110 runElementsHandlers() {
221 - this.elements.$elements.each((index, element) => setTimeout(() => elementorFrontend.elementsHandler.runReadyTrigger(element)));
111 + this.elements.$elements.each((index, element) => elementorFrontend.elementsHandler.runReadyTrigger(element));
222 112 }
113 +
223 114 onInit() {
224 115 this.$element = this.getSettings('$element');
225 116 super.onInit();
226 117 this.isEdit = this.$element.hasClass(this.getSettings('classes.editMode'));
118 +
227 119 if (this.isEdit) {
228 120 elementor.on('document:loaded', () => {
229 121 elementor.settings.page.model.on('change', this.onSettingsChange.bind(this));
230 122 });
@@ -231,342 +123,17 @@
231 123 } else {
232 124 this.runElementsHandlers();
233 125 }
234 126 }
127 +
235 128 onSettingsChange() {}
129 +
236 130 }
131 +
237 132 exports["default"] = _default;
238 133
239 134 /***/ }),
240 135
241 -/***/ "../assets/dev/js/frontend/handlers/base-carousel.js":
242 -/*!***********************************************************!*\
243 - !*** ../assets/dev/js/frontend/handlers/base-carousel.js ***!
244 - \***********************************************************/
245 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
246 -
247 -"use strict";
248 -
249 -
250 -var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
251 -Object.defineProperty(exports, "__esModule", ({
252 - value: true
253 -}));
254 -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 -var _baseSwiper = _interopRequireDefault(__webpack_require__(/*! ./base-swiper */ "../assets/dev/js/frontend/handlers/base-swiper.js"));
259 -class CarouselHandlerBase extends _baseSwiper.default {
260 - getDefaultSettings() {
261 - return {
262 - selectors: {
263 - carousel: '.swiper',
264 - swiperWrapper: '.swiper-wrapper',
265 - slideContent: '.swiper-slide',
266 - swiperArrow: '.elementor-swiper-button',
267 - paginationWrapper: '.swiper-pagination',
268 - paginationBullet: '.swiper-pagination-bullet',
269 - paginationBulletWrapper: '.swiper-pagination-bullets'
270 - }
271 - };
272 - }
273 - getDefaultElements() {
274 - const selectors = this.getSettings('selectors'),
275 - elements = {
276 - $swiperContainer: this.$element.find(selectors.carousel),
277 - $swiperWrapper: this.$element.find(selectors.swiperWrapper),
278 - $swiperArrows: this.$element.find(selectors.swiperArrow),
279 - $paginationWrapper: this.$element.find(selectors.paginationWrapper),
280 - $paginationBullets: this.$element.find(selectors.paginationBullet),
281 - $paginationBulletWrapper: this.$element.find(selectors.paginationBulletWrapper)
282 - };
283 - elements.$slides = elements.$swiperContainer.find(selectors.slideContent);
284 - return elements;
285 - }
286 - getSwiperSettings() {
287 - const elementSettings = this.getElementSettings(),
288 - slidesToShow = +elementSettings.slides_to_show || 3,
289 - isSingleSlide = 1 === slidesToShow,
290 - elementorBreakpoints = elementorFrontend.config.responsive.activeBreakpoints,
291 - defaultSlidesToShowMap = {
292 - mobile: 1,
293 - tablet: isSingleSlide ? 1 : 2
294 - };
295 - const swiperOptions = {
296 - slidesPerView: slidesToShow,
297 - loop: 'yes' === elementSettings.infinite,
298 - speed: elementSettings.speed,
299 - handleElementorBreakpoints: true
300 - };
301 - swiperOptions.breakpoints = {};
302 - let lastBreakpointSlidesToShowValue = slidesToShow;
303 - Object.keys(elementorBreakpoints).reverse().forEach(breakpointName => {
304 - // Tablet has a specific default `slides_to_show`.
305 - const defaultSlidesToShow = defaultSlidesToShowMap[breakpointName] ? defaultSlidesToShowMap[breakpointName] : lastBreakpointSlidesToShowValue;
306 - swiperOptions.breakpoints[elementorBreakpoints[breakpointName].value] = {
307 - slidesPerView: +elementSettings['slides_to_show_' + breakpointName] || defaultSlidesToShow,
308 - slidesPerGroup: +elementSettings['slides_to_scroll_' + breakpointName] || 1
309 - };
310 - if (elementSettings.image_spacing_custom) {
311 - swiperOptions.breakpoints[elementorBreakpoints[breakpointName].value].spaceBetween = this.getSpaceBetween(breakpointName);
312 - }
313 - lastBreakpointSlidesToShowValue = +elementSettings['slides_to_show_' + breakpointName] || defaultSlidesToShow;
314 - });
315 - if ('yes' === elementSettings.autoplay) {
316 - swiperOptions.autoplay = {
317 - delay: elementSettings.autoplay_speed,
318 - disableOnInteraction: 'yes' === elementSettings.pause_on_interaction
319 - };
320 - }
321 - if (isSingleSlide) {
322 - swiperOptions.effect = elementSettings.effect;
323 - if ('fade' === elementSettings.effect) {
324 - swiperOptions.fadeEffect = {
325 - crossFade: true
326 - };
327 - }
328 - } else {
329 - swiperOptions.slidesPerGroup = +elementSettings.slides_to_scroll || 1;
330 - }
331 - if (elementSettings.image_spacing_custom) {
332 - swiperOptions.spaceBetween = this.getSpaceBetween();
333 - }
334 - const showArrows = 'arrows' === elementSettings.navigation || 'both' === elementSettings.navigation,
335 - showPagination = 'dots' === elementSettings.navigation || 'both' === elementSettings.navigation || elementSettings.pagination;
336 - if (showArrows) {
337 - swiperOptions.navigation = {
338 - prevEl: '.elementor-swiper-button-prev',
339 - nextEl: '.elementor-swiper-button-next'
340 - };
341 - }
342 - if (showPagination) {
343 - swiperOptions.pagination = {
344 - el: `.elementor-element-${this.getID()} .swiper-pagination`,
345 - type: !!elementSettings.pagination ? elementSettings.pagination : 'bullets',
346 - clickable: true,
347 - 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>`;
349 - }
350 - };
351 - }
352 - if ('yes' === elementSettings.lazyload) {
353 - swiperOptions.lazy = {
354 - loadPrevNext: true,
355 - loadPrevNextAmount: 1
356 - };
357 - }
358 - swiperOptions.a11y = {
359 - enabled: true,
360 - prevSlideMessage: elementorFrontend.config.i18n.a11yCarouselPrevSlideMessage,
361 - nextSlideMessage: elementorFrontend.config.i18n.a11yCarouselNextSlideMessage,
362 - firstSlideMessage: elementorFrontend.config.i18n.a11yCarouselFirstSlideMessage,
363 - lastSlideMessage: elementorFrontend.config.i18n.a11yCarouselLastSlideMessage
364 - };
365 - swiperOptions.on = {
366 - slideChange: () => {
367 - this.a11ySetPaginationTabindex();
368 - this.handleElementHandlers();
369 - this.a11ySetSlideAriaHidden();
370 - },
371 - init: () => {
372 - this.a11ySetPaginationTabindex();
373 - this.a11ySetSlideAriaHidden('initialisation');
374 - }
375 - };
376 - this.applyOffsetSettings(elementSettings, swiperOptions, slidesToShow);
377 - return swiperOptions;
378 - }
379 - getOffsetWidth() {
380 - const currentDevice = elementorFrontend.getCurrentDeviceMode();
381 - return elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'offset_width', 'size', currentDevice) || 0;
382 - }
383 - applyOffsetSettings(elementSettings, swiperOptions, slidesToShow) {
384 - const offsetSide = elementSettings.offset_sides,
385 - isNestedCarouselInEditMode = elementorFrontend.isEditMode() && 'NestedCarousel' === this.constructor.name;
386 - if (isNestedCarouselInEditMode || !offsetSide || 'none' === offsetSide) {
387 - return;
388 - }
389 - switch (offsetSide) {
390 - case 'right':
391 - this.forceSliderToShowNextSlideWhenOnLast(swiperOptions, slidesToShow);
392 - this.addClassToSwiperContainer('offset-right');
393 - break;
394 - case 'left':
395 - this.addClassToSwiperContainer('offset-left');
396 - break;
397 - case 'both':
398 - this.forceSliderToShowNextSlideWhenOnLast(swiperOptions, slidesToShow);
399 - this.addClassToSwiperContainer('offset-both');
400 - break;
401 - }
402 - }
403 - forceSliderToShowNextSlideWhenOnLast(swiperOptions, slidesToShow) {
404 - swiperOptions.slidesPerView = slidesToShow + 0.001;
405 - }
406 - addClassToSwiperContainer(className) {
407 - this.getDefaultElements().$swiperContainer[0].classList.add(className);
408 - }
409 - async onInit(...args) {
410 - super.onInit(...args);
411 - if (!this.elements.$swiperContainer.length || 2 > this.elements.$slides.length) {
412 - return;
413 - }
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 - const Swiper = elementorFrontend.utils.swiper;
422 - this.swiper = await new Swiper(this.elements.$swiperContainer, this.getSwiperSettings());
423 -
424 - // Expose the swiper instance in the frontend
425 - this.elements.$swiperContainer.data('swiper', this.swiper);
426 - }
427 - bindEvents() {
428 - this.elements.$swiperArrows.on('keydown', this.onDirectionArrowKeydown.bind(this));
429 - this.elements.$paginationWrapper.on('keydown', '.swiper-pagination-bullet', this.onDirectionArrowKeydown.bind(this));
430 - this.elements.$swiperContainer.on('keydown', '.swiper-slide', this.onDirectionArrowKeydown.bind(this));
431 - this.$element.find(':focusable').on('focus', this.onFocusDisableAutoplay.bind(this));
432 - elementorFrontend.elements.$window.on('resize', this.getSwiperSettings.bind(this));
433 - }
434 - unbindEvents() {
435 - this.elements.$swiperArrows.off();
436 - this.elements.$paginationWrapper.off();
437 - this.elements.$swiperContainer.off();
438 - this.$element.find(':focusable').off();
439 - elementorFrontend.elements.$window.off('resize');
440 - }
441 - onDirectionArrowKeydown(event) {
442 - const isRTL = elementorFrontend.config.is_rtl,
443 - inlineDirectionArrows = ['ArrowLeft', 'ArrowRight'],
444 - currentKeydown = event.originalEvent.code,
445 - isDirectionInlineKeydown = -1 !== inlineDirectionArrows.indexOf(currentKeydown),
446 - directionStart = isRTL ? 'ArrowRight' : 'ArrowLeft',
447 - directionEnd = isRTL ? 'ArrowLeft' : 'ArrowRight';
448 - if (!isDirectionInlineKeydown) {
449 - return true;
450 - } else if (directionStart === currentKeydown) {
451 - this.swiper.slidePrev();
452 - } else if (directionEnd === currentKeydown) {
453 - this.swiper.slideNext();
454 - }
455 - }
456 - onFocusDisableAutoplay() {
457 - this.swiper.autoplay.stop();
458 - }
459 - updateSwiperOption(propertyName) {
460 - const elementSettings = this.getElementSettings(),
461 - newSettingValue = elementSettings[propertyName],
462 - params = this.swiper.params;
463 -
464 - // Handle special cases where the value to update is not the value that the Swiper library accepts.
465 - switch (propertyName) {
466 - case 'autoplay_speed':
467 - params.autoplay.delay = newSettingValue;
468 - break;
469 - case 'speed':
470 - params.speed = newSettingValue;
471 - break;
472 - }
473 - this.swiper.update();
474 - }
475 - getChangeableProperties() {
476 - return {
477 - pause_on_hover: 'pauseOnHover',
478 - autoplay_speed: 'delay',
479 - speed: 'speed',
480 - arrows_position: 'arrows_position' // Not a Swiper setting.
481 - };
482 - }
483 - onElementChange(propertyName) {
484 - if (0 === propertyName.indexOf('image_spacing_custom')) {
485 - this.updateSpaceBetween(propertyName);
486 - return;
487 - }
488 - const changeableProperties = this.getChangeableProperties();
489 - if (changeableProperties[propertyName]) {
490 - // 'pause_on_hover' is implemented by the handler with event listeners, not the Swiper library.
491 - if ('pause_on_hover' === propertyName) {
492 - const newSettingValue = this.getElementSettings('pause_on_hover');
493 - this.togglePauseOnHover('yes' === newSettingValue);
494 - } else {
495 - this.updateSwiperOption(propertyName);
496 - }
497 - }
498 - }
499 - onEditSettingsChange(propertyName) {
500 - if ('activeItemIndex' === propertyName) {
501 - this.swiper.slideToLoop(this.getEditSettings('activeItemIndex') - 1);
502 - }
503 - }
504 - getSpaceBetween(device = null) {
505 - const responsiveControlValue = elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'image_spacing_custom', 'size', device);
506 - return Number(responsiveControlValue) || 0;
507 - }
508 - updateSpaceBetween(propertyName) {
509 - const deviceMatch = propertyName.match('image_spacing_custom_(.*)'),
510 - device = deviceMatch ? deviceMatch[1] : 'desktop',
511 - newSpaceBetween = this.getSpaceBetween(device);
512 - if ('desktop' !== device) {
513 - this.swiper.params.breakpoints[elementorFrontend.config.responsive.activeBreakpoints[device].value].spaceBetween = newSpaceBetween;
514 - }
515 - this.swiper.params.spaceBetween = newSpaceBetween;
516 - this.swiper.update();
517 - }
518 - getPaginationBullets(type = 'array') {
519 - const paginationBullets = this.$element.find(this.getSettings('selectors').paginationBullet);
520 - return 'array' === type ? Array.from(paginationBullets) : paginationBullets;
521 - }
522 - a11ySetPaginationTabindex() {
523 - const bulletClass = this.swiper?.params?.pagination.bulletClass,
524 - activeBulletClass = this.swiper?.params?.pagination.bulletActiveClass;
525 - this.getPaginationBullets().forEach(bullet => {
526 - if (!bullet.classList?.contains(activeBulletClass)) {
527 - bullet.removeAttribute('tabindex');
528 - }
529 - });
530 - const isDirectionInlineArrowKey = 'ArrowLeft' === event?.code || 'ArrowRight' === event?.code;
531 - if (event?.target?.classList?.contains(bulletClass) && isDirectionInlineArrowKey) {
532 - this.$element.find(`.${activeBulletClass}`).trigger('focus');
533 - }
534 - }
535 - getSwiperWrapperTranformXValue() {
536 - let transformValue = this.elements.$swiperWrapper[0]?.style.transform;
537 - transformValue = transformValue.replace('translate3d(', '');
538 - transformValue = transformValue.split(',');
539 - transformValue = parseInt(transformValue[0].replace('px', ''));
540 - return !!transformValue ? transformValue : 0;
541 - }
542 - a11ySetSlideAriaHidden(status = '') {
543 - const currentIndex = 'initialisation' === status ? 0 : this.swiper?.activeIndex;
544 - if ('number' !== typeof currentIndex) {
545 - return;
546 - }
547 - const swiperWrapperTransformXValue = this.getSwiperWrapperTranformXValue(),
548 - swiperWrapperWidth = this.elements.$swiperWrapper[0].clientWidth,
549 - $slides = this.elements.$swiperContainer.find(this.getSettings('selectors').slideContent);
550 - $slides.each((index, slide) => {
551 - const isSlideInsideWrapper = 0 <= slide.offsetLeft + swiperWrapperTransformXValue && swiperWrapperWidth > slide.offsetLeft + swiperWrapperTransformXValue;
552 - if (!isSlideInsideWrapper) {
553 - slide.setAttribute('aria-hidden', true);
554 - slide.setAttribute('inert', '');
555 - } else {
556 - slide.removeAttribute('aria-hidden');
557 - slide.removeAttribute('inert');
558 - }
559 - });
560 - }
561 -
562 - // Empty method which can be overwritten by child methods.
563 - handleElementHandlers() {}
564 -}
565 -exports["default"] = CarouselHandlerBase;
566 -
567 -/***/ }),
568 -
569 136 /***/ "../assets/dev/js/frontend/handlers/base-swiper.js":
570 137 /*!*********************************************************!*\
571 138 !*** ../assets/dev/js/frontend/handlers/base-swiper.js ***!
572 139 \*********************************************************/
@@ -575,23 +142,27 @@
575 142 "use strict";
576 143
577 144
578 145 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
146 +
579 147 Object.defineProperty(exports, "__esModule", ({
580 148 value: true
581 149 }));
582 150 exports["default"] = void 0;
151 +
583 152 var _base = _interopRequireDefault(__webpack_require__(/*! ./base */ "../assets/dev/js/frontend/handlers/base.js"));
153 +
584 154 class SwiperHandlerBase extends _base.default {
585 155 getInitialSlide() {
586 156 const editSettings = this.getEditSettings();
587 157 return editSettings.activeItemIndex ? editSettings.activeItemIndex - 1 : 0;
588 158 }
159 +
589 160 getSlidesCount() {
590 161 return this.elements.$slides.length;
591 - }
162 + } // This method live-handles the 'Pause On Hover' control's value being changed in the Editor Panel
592 163
593 - // This method live-handles the 'Pause On Hover' control's value being changed in the Editor Panel
164 +
594 165 togglePauseOnHover(toggleOn) {
595 166 if (toggleOn) {
596 167 this.elements.$swiperContainer.on({
597 168 mouseenter: () => {
@@ -604,22 +175,29 @@
604 175 } else {
605 176 this.elements.$swiperContainer.off('mouseenter mouseleave');
606 177 }
607 178 }
179 +
608 180 handleKenBurns() {
609 181 const settings = this.getSettings();
182 +
610 183 if (this.$activeImageBg) {
611 184 this.$activeImageBg.removeClass(settings.classes.kenBurnsActive);
612 185 }
186 +
613 187 this.activeItemIndex = this.swiper ? this.swiper.activeIndex : this.getInitialSlide();
188 +
614 189 if (this.swiper) {
615 190 this.$activeImageBg = jQuery(this.swiper.slides[this.activeItemIndex]).children('.' + settings.classes.slideBackground);
616 191 } else {
617 192 this.$activeImageBg = jQuery(this.elements.$slides[0]).children('.' + settings.classes.slideBackground);
618 193 }
194 +
619 195 this.$activeImageBg.addClass(settings.classes.kenBurnsActive);
620 196 }
197 +
621 198 }
199 +
622 200 exports["default"] = SwiperHandlerBase;
623 201
624 202 /***/ }),
625 203
@@ -626,18 +204,13 @@
626 204 /***/ "../assets/dev/js/frontend/handlers/base.js":
627 205 /*!**************************************************!*\
628 206 !*** ../assets/dev/js/frontend/handlers/base.js ***!
629 207 \**************************************************/
630 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
208 +/***/ ((module) => {
631 209
632 210 "use strict";
633 211
634 212
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 213 module.exports = elementorModules.ViewModule.extend({
641 214 $element: null,
642 215 editorListeners: null,
643 216 onElementChange: null,
@@ -643,93 +216,99 @@
643 216 onElementChange: null,
644 217 onEditSettingsChange: null,
645 218 onPageSettingsChange: null,
646 219 isEdit: null,
647 - __construct(settings) {
220 + __construct: function (settings) {
648 221 if (!this.isActive(settings)) {
649 222 return;
650 223 }
224 +
651 225 this.$element = settings.$element;
652 226 this.isEdit = this.$element.hasClass('elementor-element-edit-mode');
227 +
653 228 if (this.isEdit) {
654 229 this.addEditorListeners();
655 230 }
656 231 },
657 - isActive() {
232 + isActive: function () {
658 233 return true;
659 234 },
660 - isElementInTheCurrentDocument() {
661 - if (!elementorFrontend.isEditMode()) {
662 - return false;
663 - }
664 - return elementor.documents.currentDocument.id.toString() === this.$element[0].closest('.elementor').dataset.elementorId;
665 - },
666 - findElement(selector) {
235 + findElement: function (selector) {
667 236 var $mainElement = this.$element;
668 237 return $mainElement.find(selector).filter(function () {
669 - // Start `closest` from parent since self can be `.elementor-element`.
670 - return jQuery(this).parent().closest('.elementor-element').is($mainElement);
238 + return jQuery(this).closest('.elementor-element').is($mainElement);
671 239 });
672 240 },
673 - getUniqueHandlerID(cid, $element) {
241 + getUniqueHandlerID: function (cid, $element) {
674 242 if (!cid) {
675 243 cid = this.getModelCID();
676 244 }
245 +
677 246 if (!$element) {
678 247 $element = this.$element;
679 248 }
249 +
680 250 return cid + $element.attr('data-element_type') + this.getConstructorID();
681 251 },
682 - initEditorListeners() {
252 + initEditorListeners: function () {
683 253 var self = this;
684 254 self.editorListeners = [{
685 255 event: 'element:destroy',
686 256 to: elementor.channels.data,
687 - callback(removedModel) {
257 + callback: function (removedModel) {
688 258 if (removedModel.cid !== self.getModelCID()) {
689 259 return;
690 260 }
261 +
691 262 self.onDestroy();
692 263 }
693 264 }];
265 +
694 266 if (self.onElementChange) {
695 267 const elementType = self.getWidgetType() || self.getElementType();
696 268 let eventName = 'change';
269 +
697 270 if ('global' !== elementType) {
698 271 eventName += ':' + elementType;
699 272 }
273 +
700 274 self.editorListeners.push({
701 275 event: eventName,
702 276 to: elementor.channels.editor,
703 - callback(controlView, elementView) {
277 + callback: function (controlView, elementView) {
704 278 var elementViewHandlerID = self.getUniqueHandlerID(elementView.model.cid, elementView.$el);
279 +
705 280 if (elementViewHandlerID !== self.getUniqueHandlerID()) {
706 281 return;
707 282 }
283 +
708 284 self.onElementChange(controlView.model.get('name'), controlView, elementView);
709 285 }
710 286 });
711 287 }
288 +
712 289 if (self.onEditSettingsChange) {
713 290 self.editorListeners.push({
714 291 event: 'change:editSettings',
715 292 to: elementor.channels.editor,
716 - callback(changedModel, view) {
293 + callback: function (changedModel, view) {
717 294 if (view.model.cid !== self.getModelCID()) {
718 295 return;
719 296 }
720 - const propName = Object.keys(changedModel.changed)[0];
721 - self.onEditSettingsChange(propName, changedModel.changed[propName]);
297 +
298 + self.onEditSettingsChange(Object.keys(changedModel.changed)[0]);
722 299 }
723 300 });
724 301 }
302 +
725 303 ['page'].forEach(function (settingsType) {
726 304 var listenerMethodName = 'on' + settingsType[0].toUpperCase() + settingsType.slice(1) + 'SettingsChange';
305 +
727 306 if (self[listenerMethodName]) {
728 307 self.editorListeners.push({
729 308 event: 'change',
730 309 to: elementor.settings[settingsType].model,
731 - callback(model) {
310 + callback: function (model) {
732 311 self[listenerMethodName](model.changed);
733 312 }
734 313 });
735 314 }
@@ -734,67 +313,77 @@
734 313 });
735 314 }
736 315 });
737 316 },
738 - getEditorListeners() {
317 + getEditorListeners: function () {
739 318 if (!this.editorListeners) {
740 319 this.initEditorListeners();
741 320 }
321 +
742 322 return this.editorListeners;
743 323 },
744 - addEditorListeners() {
324 + addEditorListeners: function () {
745 325 var uniqueHandlerID = this.getUniqueHandlerID();
746 326 this.getEditorListeners().forEach(function (listener) {
747 327 elementorFrontend.addListenerOnce(uniqueHandlerID, listener.event, listener.callback, listener.to);
748 328 });
749 329 },
750 - removeEditorListeners() {
330 + removeEditorListeners: function () {
751 331 var uniqueHandlerID = this.getUniqueHandlerID();
752 332 this.getEditorListeners().forEach(function (listener) {
753 333 elementorFrontend.removeListeners(uniqueHandlerID, listener.event, null, listener.to);
754 334 });
755 335 },
756 - getElementType() {
336 + getElementType: function () {
757 337 return this.$element.data('element_type');
758 338 },
759 - getWidgetType() {
339 + getWidgetType: function () {
760 340 const widgetType = this.$element.data('widget_type');
341 +
761 342 if (!widgetType) {
762 343 return;
763 344 }
345 +
764 346 return widgetType.split('.')[0];
765 347 },
766 - getID() {
348 + getID: function () {
767 349 return this.$element.data('id');
768 350 },
769 - getModelCID() {
351 + getModelCID: function () {
770 352 return this.$element.data('model-cid');
771 353 },
772 - getElementSettings(setting) {
354 + getElementSettings: function (setting) {
773 355 let elementSettings = {};
774 356 const modelCID = this.getModelCID();
357 +
775 358 if (this.isEdit && modelCID) {
776 359 const settings = elementorFrontend.config.elements.data[modelCID],
777 - attributes = settings.attributes;
360 + attributes = settings.attributes;
778 361 let type = attributes.widgetType || attributes.elType;
362 +
779 363 if (attributes.isInner) {
780 364 type = 'inner-' + type;
781 365 }
366 +
782 367 let settingsKeys = elementorFrontend.config.elements.keys[type];
368 +
783 369 if (!settingsKeys) {
784 370 settingsKeys = elementorFrontend.config.elements.keys[type] = [];
785 371 jQuery.each(settings.controls, (name, control) => {
786 - if (control.frontend_available || control.editor_available) {
372 + if (control.frontend_available) {
787 373 settingsKeys.push(name);
788 374 }
789 375 });
790 376 }
377 +
791 378 jQuery.each(settings.getActiveControls(), function (controlKey) {
792 379 if (-1 !== settingsKeys.indexOf(controlKey)) {
793 380 let value = attributes[controlKey];
381 +
794 382 if (value.toJSON) {
795 383 value = value.toJSON();
796 384 }
385 +
797 386 elementSettings[controlKey] = value;
798 387 }
799 388 });
800 389 } else {
@@ -799,29 +388,33 @@
799 388 });
800 389 } else {
801 390 elementSettings = this.$element.data('settings') || {};
802 391 }
392 +
803 393 return this.getItems(elementSettings, setting);
804 394 },
805 - getEditSettings(setting) {
395 + getEditSettings: function (setting) {
806 396 var attributes = {};
397 +
807 398 if (this.isEdit) {
808 399 attributes = elementorFrontend.config.elements.editSettings[this.getModelCID()].attributes;
809 400 }
401 +
810 402 return this.getItems(attributes, setting);
811 403 },
812 - getCurrentDeviceSetting(settingKey) {
404 + getCurrentDeviceSetting: function (settingKey) {
813 405 return elementorFrontend.getCurrentDeviceSetting(this.getElementSettings(), settingKey);
814 406 },
815 - onInit() {
407 + onInit: function () {
816 408 if (this.isActive(this.getSettings())) {
817 409 elementorModules.ViewModule.prototype.onInit.apply(this, arguments);
818 410 }
819 411 },
820 - onDestroy() {
412 + onDestroy: function () {
821 413 if (this.isEdit) {
822 414 this.removeEditorListeners();
823 415 }
416 +
824 417 if (this.unbindEvents) {
825 418 this.unbindEvents();
826 419 }
827 420 }
@@ -828,112 +421,8 @@
828 421 });
829 422
830 423 /***/ }),
831 424
832 -/***/ "../assets/dev/js/frontend/handlers/stretched-element.js":
833 -/*!***************************************************************!*\
834 - !*** ../assets/dev/js/frontend/handlers/stretched-element.js ***!
835 - \***************************************************************/
836 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
837 -
838 -"use strict";
839 -
840 -
841 -var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
842 -Object.defineProperty(exports, "__esModule", ({
843 - value: true
844 -}));
845 -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 -var _base = _interopRequireDefault(__webpack_require__(/*! ./base */ "../assets/dev/js/frontend/handlers/base.js"));
849 -class StretchedElement extends _base.default {
850 - getStretchedClass() {
851 - return 'e-stretched';
852 - }
853 - getStretchSettingName() {
854 - return 'stretch_element';
855 - }
856 - getStretchActiveValue() {
857 - return 'yes';
858 - }
859 - bindEvents() {
860 - const handlerID = this.getUniqueHandlerID();
861 - elementorFrontend.addListenerOnce(handlerID, 'resize', this.stretch);
862 - elementorFrontend.addListenerOnce(handlerID, 'sticky:stick', this.stretch, this.$element);
863 - elementorFrontend.addListenerOnce(handlerID, 'sticky:unstick', this.stretch, this.$element);
864 - if (elementorFrontend.isEditMode()) {
865 - this.onKitChangeStretchContainerChange = this.onKitChangeStretchContainerChange.bind(this);
866 - elementor.channels.editor.on('kit:change:stretchContainer', this.onKitChangeStretchContainerChange);
867 - }
868 - }
869 - unbindEvents() {
870 - elementorFrontend.removeListeners(this.getUniqueHandlerID(), 'resize', this.stretch);
871 - if (elementorFrontend.isEditMode()) {
872 - elementor.channels.editor.off('kit:change:stretchContainer', this.onKitChangeStretchContainerChange);
873 - }
874 - }
875 - isActive(settings) {
876 - return elementorFrontend.isEditMode() || settings.$element.hasClass(this.getStretchedClass());
877 - }
878 - getStretchElementForConfig(childSelector = null) {
879 - if (childSelector) {
880 - return this.$element.find(childSelector);
881 - }
882 - return this.$element;
883 - }
884 - getStretchElementConfig() {
885 - return {
886 - element: this.getStretchElementForConfig(),
887 - selectors: {
888 - container: this.getStretchContainer()
889 - },
890 - considerScrollbar: elementorFrontend.isEditMode() && elementorFrontend.config.is_rtl
891 - };
892 - }
893 - initStretch() {
894 - this.stretch = this.stretch.bind(this);
895 - this.stretchElement = new elementorModules.frontend.tools.StretchElement(this.getStretchElementConfig());
896 - }
897 - getStretchContainer() {
898 - return elementorFrontend.getKitSettings('stretched_section_container') || window;
899 - }
900 - isStretchSettingEnabled() {
901 - return this.getElementSettings(this.getStretchSettingName()) === this.getStretchActiveValue();
902 - }
903 - stretch() {
904 - if (!this.isStretchSettingEnabled()) {
905 - return;
906 - }
907 - this.stretchElement.stretch();
908 - }
909 - onInit(...args) {
910 - if (!this.isActive(this.getSettings())) {
911 - return;
912 - }
913 - this.initStretch();
914 - super.onInit(...args);
915 - this.stretch();
916 - }
917 - onElementChange(propertyName) {
918 - const stretchSettingName = this.getStretchSettingName();
919 - if (stretchSettingName === propertyName) {
920 - if (this.isStretchSettingEnabled()) {
921 - this.stretch();
922 - } else {
923 - this.stretchElement.reset();
924 - }
925 - }
926 - }
927 - onKitChangeStretchContainerChange() {
928 - this.stretchElement.setSettings('selectors.container', this.getStretchContainer());
929 - this.stretch();
930 - }
931 -}
932 -exports["default"] = StretchedElement;
933 -
934 -/***/ }),
935 -
936 425 /***/ "../assets/dev/js/frontend/modules.js":
937 426 /*!********************************************!*\
938 427 !*** ../assets/dev/js/frontend/modules.js ***!
939 428 \********************************************/
@@ -942,15 +431,19 @@
942 431 "use strict";
943 432
944 433
945 434 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
435 +
946 436 var _modules = _interopRequireDefault(__webpack_require__(/*! ../modules/modules */ "../assets/dev/js/modules/modules.js"));
437 +
947 438 var _document = _interopRequireDefault(__webpack_require__(/*! ./document */ "../assets/dev/js/frontend/document.js"));
439 +
948 440 var _stretchElement = _interopRequireDefault(__webpack_require__(/*! ./tools/stretch-element */ "../assets/dev/js/frontend/tools/stretch-element.js"));
949 -var _stretchedElement = _interopRequireDefault(__webpack_require__(/*! ./handlers/stretched-element */ "../assets/dev/js/frontend/handlers/stretched-element.js"));
441 +
950 442 var _base = _interopRequireDefault(__webpack_require__(/*! ./handlers/base */ "../assets/dev/js/frontend/handlers/base.js"));
443 +
951 444 var _baseSwiper = _interopRequireDefault(__webpack_require__(/*! ./handlers/base-swiper */ "../assets/dev/js/frontend/handlers/base-swiper.js"));
952 -var _baseCarousel = _interopRequireDefault(__webpack_require__(/*! ./handlers/base-carousel */ "../assets/dev/js/frontend/handlers/base-carousel.js"));
445 +
953 446 _modules.default.frontend = {
954 447 Document: _document.default,
955 448 tools: {
956 449 StretchElement: _stretchElement.default
@@ -956,11 +449,9 @@
956 449 StretchElement: _stretchElement.default
957 450 },
958 451 handlers: {
959 452 Base: _base.default,
960 - StretchedElement: _stretchedElement.default,
961 - SwiperBase: _baseSwiper.default,
962 - CarouselBase: _baseCarousel.default
453 + SwiperBase: _baseSwiper.default
963 454 }
964 455 };
965 456
966 457 /***/ }),
@@ -974,104 +465,71 @@
974 465 "use strict";
975 466
976 467
977 468 module.exports = elementorModules.ViewModule.extend({
978 - getDefaultSettings() {
469 + getDefaultSettings: function () {
979 470 return {
980 471 element: null,
981 472 direction: elementorFrontend.config.is_rtl ? 'right' : 'left',
982 473 selectors: {
983 474 container: window
984 - },
985 - considerScrollbar: false,
986 - cssOutput: 'inline'
475 + }
987 476 };
988 477 },
989 - getDefaultElements() {
478 + getDefaultElements: function () {
990 479 return {
991 480 $element: jQuery(this.getSettings('element'))
992 481 };
993 482 },
994 - stretch() {
995 - const settings = this.getSettings();
996 - let $container;
483 + stretch: function () {
484 + var containerSelector = this.getSettings('selectors.container'),
485 + $container;
486 +
997 487 try {
998 - $container = jQuery(settings.selectors.container);
999 - // eslint-disable-next-line no-empty
488 + $container = jQuery(containerSelector);
1000 489 } catch (e) {}
490 +
1001 491 if (!$container || !$container.length) {
1002 492 $container = jQuery(this.getDefaultSettings().selectors.container);
1003 493 }
494 +
1004 495 this.reset();
1005 496 var $element = this.elements.$element,
1006 - containerWidth = $container.innerWidth(),
1007 - elementOffset = $element.offset().left,
1008 - isFixed = 'fixed' === $element.css('position'),
1009 - correctOffset = isFixed ? 0 : elementOffset,
1010 - isContainerFullScreen = window === $container[0];
1011 - if (!isContainerFullScreen) {
497 + containerWidth = $container.innerWidth(),
498 + elementOffset = $element.offset().left,
499 + isFixed = 'fixed' === $element.css('position'),
500 + correctOffset = isFixed ? 0 : elementOffset;
501 +
502 + if (window !== $container[0]) {
1012 503 var containerOffset = $container.offset().left;
504 +
1013 505 if (isFixed) {
1014 506 correctOffset = containerOffset;
1015 507 }
508 +
1016 509 if (elementOffset > containerOffset) {
1017 510 correctOffset = elementOffset - containerOffset;
1018 511 }
1019 512 }
1020 - if (settings.considerScrollbar && isContainerFullScreen) {
1021 - const scrollbarWidth = window.innerWidth - containerWidth;
1022 - correctOffset -= scrollbarWidth;
1023 - }
513 +
1024 514 if (!isFixed) {
1025 515 if (elementorFrontend.config.is_rtl) {
1026 516 correctOffset = containerWidth - ($element.outerWidth() + correctOffset);
1027 517 }
518 +
1028 519 correctOffset = -correctOffset;
1029 520 }
1030 521
1031 - // Consider margin
1032 - if (settings.margin) {
1033 - correctOffset += settings.margin;
1034 - }
1035 522 var css = {};
1036 - let width = containerWidth;
1037 - if (settings.margin) {
1038 - width -= settings.margin * 2;
1039 - }
1040 - css.width = width + 'px';
1041 - css[settings.direction] = correctOffset + 'px';
1042 - if ('variables' === settings.cssOutput) {
1043 - this.applyCssVariables($element, css);
1044 - return;
1045 - }
523 + css.width = containerWidth + 'px';
524 + css[this.getSettings('direction')] = correctOffset + 'px';
1046 525 $element.css(css);
1047 526 },
1048 - reset() {
1049 - const css = {},
1050 - settings = this.getSettings(),
1051 - $element = this.elements.$element;
1052 - if ('variables' === settings.cssOutput) {
1053 - this.resetCssVariables($element);
1054 - return;
1055 - }
527 + reset: function () {
528 + var css = {};
1056 529 css.width = '';
1057 - css[settings.direction] = '';
1058 - $element.css(css);
1059 - },
1060 - applyCssVariables($element, css) {
1061 - $element.css('--stretch-width', css.width);
1062 - if (!!css.left) {
1063 - $element.css('--stretch-left', css.left);
1064 - } else {
1065 - $element.css('--stretch-right', css.right);
1066 - }
1067 - },
1068 - resetCssVariables($element) {
1069 - $element.css({
1070 - '--stretch-width': '',
1071 - '--stretch-left': '',
1072 - '--stretch-right': ''
1073 - });
530 + css[this.getSettings('direction')] = '';
531 + this.elements.$element.css(css);
1074 532 }
1075 533 });
1076 534
1077 535 /***/ }),
@@ -1085,19 +543,22 @@
1085 543 "use strict";
1086 544
1087 545
1088 546 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
547 +
1089 548 Object.defineProperty(exports, "__esModule", ({
1090 549 value: true
1091 550 }));
1092 551 exports["default"] = void 0;
552 +
1093 553 var _instanceType = _interopRequireDefault(__webpack_require__(/*! ./instance-type */ "../assets/dev/js/modules/imports/instance-type.js"));
554 +
1094 555 var _isInstanceof = _interopRequireDefault(__webpack_require__(/*! ../../editor/utils/is-instanceof */ "../assets/dev/js/editor/utils/is-instanceof.js"));
556 +
1095 557 class ArgsObject extends _instanceType.default {
1096 558 static getInstanceType() {
1097 559 return 'ArgsObject';
1098 560 }
1099 -
1100 561 /**
1101 562 * Function constructor().
1102 563 *
1103 564 * Create ArgsObject.
@@ -1103,13 +564,14 @@
1103 564 * Create ArgsObject.
1104 565 *
1105 566 * @param {{}} args
1106 567 */
568 +
569 +
1107 570 constructor(args) {
1108 571 super();
1109 572 this.args = args;
1110 573 }
1111 -
1112 574 /**
1113 575 * Function requireArgument().
1114 576 *
1115 577 * Validate property in args.
@@ -1114,18 +576,20 @@
1114 576 *
1115 577 * Validate property in args.
1116 578 *
1117 579 * @param {string} property
1118 - * @param {{}} args
580 + * @param {{}} args
1119 581 *
1120 582 * @throws {Error}
583 + *
1121 584 */
585 +
586 +
1122 587 requireArgument(property, args = this.args) {
1123 - if (!Object.prototype.hasOwnProperty.call(args, property)) {
588 + if (!args.hasOwnProperty(property)) {
1124 589 throw Error(`${property} is required.`);
1125 590 }
1126 591 }
1127 -
1128 592 /**
1129 593 * Function requireArgumentType().
1130 594 *
1131 595 * Validate property in args using `type === typeof(args.whatever)`.
@@ -1131,19 +595,22 @@
1131 595 * Validate property in args using `type === typeof(args.whatever)`.
1132 596 *
1133 597 * @param {string} property
1134 598 * @param {string} type
1135 - * @param {{}} args
599 + * @param {{}} args
1136 600 *
1137 601 * @throws {Error}
602 + *
1138 603 */
604 +
605 +
1139 606 requireArgumentType(property, type, args = this.args) {
1140 607 this.requireArgument(property, args);
608 +
1141 609 if (typeof args[property] !== type) {
1142 610 throw Error(`${property} invalid type: ${type}.`);
1143 611 }
1144 612 }
1145 -
1146 613 /**
1147 614 * Function requireArgumentInstance().
1148 615 *
1149 616 * Validate property in args using `args.whatever instanceof instance`.
@@ -1148,20 +615,23 @@
1148 615 *
1149 616 * Validate property in args using `args.whatever instanceof instance`.
1150 617 *
1151 618 * @param {string} property
1152 - * @param {*} instance
1153 - * @param {{}} args
619 + * @param {instanceof} instance
620 + * @param {{}} args
1154 621 *
1155 622 * @throws {Error}
623 + *
1156 624 */
625 +
626 +
1157 627 requireArgumentInstance(property, instance, args = this.args) {
1158 628 this.requireArgument(property, args);
629 +
1159 630 if (!(args[property] instanceof instance) && !(0, _isInstanceof.default)(args[property], instance)) {
1160 631 throw Error(`${property} invalid instance.`);
1161 632 }
1162 633 }
1163 -
1164 634 /**
1165 635 * Function requireArgumentConstructor().
1166 636 *
1167 637 * Validate property in args using `type === args.whatever.constructor`.
@@ -1166,23 +636,27 @@
1166 636 *
1167 637 * Validate property in args using `type === args.whatever.constructor`.
1168 638 *
1169 639 * @param {string} property
1170 - * @param {*} type
1171 - * @param {{}} args
640 + * @param {*} type
641 + * @param {{}} args
1172 642 *
1173 643 * @throws {Error}
644 + *
1174 645 */
646 +
647 +
1175 648 requireArgumentConstructor(property, type, args = this.args) {
1176 - this.requireArgument(property, args);
649 + this.requireArgument(property, args); // Note: Converting the constructor to string in order to avoid equation issues
650 + // due to different memory addresses between iframes (window.Object !== window.top.Object).
1177 651
1178 - // Note: Converting the constructor to string in order to avoid equation issues
1179 - // due to different memory addresses between iframes (window.Object !== window.top.Object).
1180 652 if (args[property].constructor.toString() !== type.prototype.constructor.toString()) {
1181 653 throw Error(`${property} invalid constructor type.`);
1182 654 }
1183 655 }
656 +
1184 657 }
658 +
1185 659 exports["default"] = ArgsObject;
1186 660
1187 661 /***/ }),
1188 662
@@ -1198,30 +672,28 @@
1198 672 Object.defineProperty(exports, "__esModule", ({
1199 673 value: true
1200 674 }));
1201 675 exports["default"] = exports.ForceMethodImplementation = void 0;
676 +
1202 677 // TODO: Wrong location used as `elementorModules.ForceMethodImplementation(); should be` `elementorUtils.forceMethodImplementation()`;
1203 -
1204 678 class ForceMethodImplementation extends Error {
1205 - constructor(info = {}, args = {}) {
1206 - super(`${info.isStatic ? 'static ' : ''}${info.fullName}() should be implemented, please provide '${info.functionName || info.fullName}' functionality.`, args);
1207 -
1208 - // Allow to pass custom properties to the error.
1209 - if (Object.keys(args).length) {
1210 - // eslint-disable-next-line no-console
1211 - console.error(args);
1212 - }
679 + constructor(info = {}) {
680 + super(`${info.isStatic ? 'static ' : ''}${info.fullName}() should be implemented, please provide '${info.functionName || info.fullName}' functionality.`);
1213 681 Error.captureStackTrace(this, ForceMethodImplementation);
1214 682 }
683 +
1215 684 }
685 +
1216 686 exports.ForceMethodImplementation = ForceMethodImplementation;
1217 -var _default = args => {
687 +
688 +var _default = () => {
1218 689 const stack = Error().stack,
1219 - caller = stack.split('\n')[2].trim(),
1220 - callerName = caller.startsWith('at new') ? 'constructor' : caller.split(' ')[1],
1221 - info = {};
690 + caller = stack.split('\n')[2].trim(),
691 + callerName = caller.startsWith('at new') ? 'constructor' : caller.split(' ')[1],
692 + info = {};
1222 693 info.functionName = callerName;
1223 694 info.fullName = callerName;
695 +
1224 696 if (info.functionName.includes('.')) {
1225 697 const parts = info.functionName.split('.');
1226 698 info.className = parts[0];
1227 699 info.functionName = parts[1];
@@ -1227,10 +699,12 @@
1227 699 info.functionName = parts[1];
1228 700 } else {
1229 701 info.isStatic = true;
1230 702 }
1231 - throw new ForceMethodImplementation(info, args);
703 +
704 + throw new ForceMethodImplementation(info);
1232 705 };
706 +
1233 707 exports["default"] = _default;
1234 708
1235 709 /***/ }),
1236 710
@@ -1237,9 +711,9 @@
1237 711 /***/ "../assets/dev/js/modules/imports/instance-type.js":
1238 712 /*!*********************************************************!*\
1239 713 !*** ../assets/dev/js/modules/imports/instance-type.js ***!
1240 714 \*********************************************************/
1241 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
715 +/***/ ((__unused_webpack_module, exports) => {
1242 716
1243 717 "use strict";
1244 718
1245 719
@@ -1246,11 +720,9 @@
1246 720 Object.defineProperty(exports, "__esModule", ({
1247 721 value: true
1248 722 }));
1249 723 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");
724 +
1253 725 class InstanceType {
1254 726 static [Symbol.hasInstance](target) {
1255 727 /**
1256 728 * This is function extending being called each time JS uses instanceOf, since babel use it each time it create new class
@@ -1256,50 +728,61 @@
1256 728 * This is function extending being called each time JS uses instanceOf, since babel use it each time it create new class
1257 729 * its give's opportunity to mange capabilities of instanceOf operator.
1258 730 * saving current class each time will give option later to handle instanceOf manually.
1259 731 */
1260 - let result = super[Symbol.hasInstance](target);
732 + let result = super[Symbol.hasInstance](target); // Act normal when validate a class, which does not have instance type.
1261 733
1262 - // Act normal when validate a class, which does not have instance type.
1263 734 if (target && !target.constructor.getInstanceType) {
1264 735 return result;
1265 736 }
737 +
1266 738 if (target) {
1267 739 if (!target.instanceTypes) {
1268 740 target.instanceTypes = [];
1269 741 }
742 +
1270 743 if (!result) {
1271 744 if (this.getInstanceType() === target.constructor.getInstanceType()) {
1272 745 result = true;
1273 746 }
1274 747 }
748 +
1275 749 if (result) {
1276 750 const name = this.getInstanceType === InstanceType.getInstanceType ? 'BaseInstanceType' : this.getInstanceType();
751 +
1277 752 if (-1 === target.instanceTypes.indexOf(name)) {
1278 753 target.instanceTypes.push(name);
1279 754 }
1280 755 }
1281 756 }
757 +
1282 758 if (!result && target) {
1283 759 // Check if the given 'target', is instance of known types.
1284 760 result = target.instanceTypes && Array.isArray(target.instanceTypes) && -1 !== target.instanceTypes.indexOf(this.getInstanceType());
1285 761 }
762 +
1286 763 return result;
1287 764 }
1288 - static getInstanceType() {
1289 - elementorModules.ForceMethodImplementation();
1290 - }
765 +
1291 766 constructor() {
1292 767 // Since anonymous classes sometimes do not get validated by babel, do it manually.
1293 768 let target = new.target;
1294 769 const prototypes = [];
770 +
1295 771 while (target.__proto__ && target.__proto__.name) {
1296 772 prototypes.push(target.__proto__);
1297 773 target = target.__proto__;
1298 774 }
775 +
1299 776 prototypes.reverse().forEach(proto => this instanceof proto);
1300 777 }
778 +
779 + static getInstanceType() {
780 + elementorModules.ForceMethodImplementation();
781 + }
782 +
1301 783 }
784 +
1302 785 exports["default"] = InstanceType;
1303 786
1304 787 /***/ }),
1305 788
@@ -1306,99 +789,119 @@
1306 789 /***/ "../assets/dev/js/modules/imports/module.js":
1307 790 /*!**************************************************!*\
1308 791 !*** ../assets/dev/js/modules/imports/module.js ***!
1309 792 \**************************************************/
1310 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
793 +/***/ ((module) => {
1311 794
1312 795 "use strict";
1313 796
1314 797
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");
1319 798 const Module = function () {
1320 799 const $ = jQuery,
1321 - instanceParams = arguments,
1322 - self = this,
1323 - events = {};
800 + instanceParams = arguments,
801 + self = this,
802 + events = {};
1324 803 let settings;
804 +
1325 805 const ensureClosureMethods = function () {
1326 806 $.each(self, function (methodName) {
1327 807 const oldMethod = self[methodName];
808 +
1328 809 if ('function' !== typeof oldMethod) {
1329 810 return;
1330 811 }
812 +
1331 813 self[methodName] = function () {
1332 814 return oldMethod.apply(self, arguments);
1333 815 };
1334 816 });
1335 817 };
818 +
1336 819 const initSettings = function () {
1337 820 settings = self.getDefaultSettings();
1338 821 const instanceSettings = instanceParams[0];
822 +
1339 823 if (instanceSettings) {
1340 824 $.extend(true, settings, instanceSettings);
1341 825 }
1342 826 };
827 +
1343 828 const init = function () {
1344 829 self.__construct.apply(self, instanceParams);
830 +
1345 831 ensureClosureMethods();
1346 832 initSettings();
1347 833 self.trigger('init');
1348 834 };
835 +
1349 836 this.getItems = function (items, itemKey) {
1350 837 if (itemKey) {
1351 838 const keyStack = itemKey.split('.'),
1352 - currentKey = keyStack.splice(0, 1);
839 + currentKey = keyStack.splice(0, 1);
840 +
1353 841 if (!keyStack.length) {
1354 842 return items[currentKey];
1355 843 }
844 +
1356 845 if (!items[currentKey]) {
1357 846 return;
1358 847 }
848 +
1359 849 return this.getItems(items[currentKey], keyStack.join('.'));
1360 850 }
851 +
1361 852 return items;
1362 853 };
854 +
1363 855 this.getSettings = function (setting) {
1364 856 return this.getItems(settings, setting);
1365 857 };
858 +
1366 859 this.setSettings = function (settingKey, value, settingsContainer) {
1367 860 if (!settingsContainer) {
1368 861 settingsContainer = settings;
1369 862 }
863 +
1370 864 if ('object' === typeof settingKey) {
1371 865 $.extend(settingsContainer, settingKey);
1372 866 return self;
1373 867 }
868 +
1374 869 const keyStack = settingKey.split('.'),
1375 - currentKey = keyStack.splice(0, 1);
870 + currentKey = keyStack.splice(0, 1);
871 +
1376 872 if (!keyStack.length) {
1377 873 settingsContainer[currentKey] = value;
1378 874 return self;
1379 875 }
876 +
1380 877 if (!settingsContainer[currentKey]) {
1381 878 settingsContainer[currentKey] = {};
1382 879 }
880 +
1383 881 return self.setSettings(keyStack.join('.'), value, settingsContainer[currentKey]);
1384 882 };
883 +
1385 884 this.getErrorMessage = function (type, functionName) {
1386 885 let message;
886 +
1387 887 switch (type) {
1388 888 case 'forceMethodImplementation':
1389 889 message = `The method '${functionName}' must to be implemented in the inheritor child.`;
1390 890 break;
891 +
1391 892 default:
1392 893 message = 'An error occurs';
1393 894 }
895 +
1394 896 return message;
1395 - };
897 + }; // TODO: This function should be deleted ?.
1396 898
1397 - // TODO: This function should be deleted ?.
899 +
1398 900 this.forceMethodImplementation = function (functionName) {
1399 901 throw new Error(this.getErrorMessage('forceMethodImplementation', functionName));
1400 902 };
903 +
1401 904 this.on = function (eventName, callback) {
1402 905 if ('object' === typeof eventName) {
1403 906 $.each(eventName, function (singleEventName) {
1404 907 self.on(singleEventName, this);
@@ -1404,64 +907,82 @@
1404 907 self.on(singleEventName, this);
1405 908 });
1406 909 return self;
1407 910 }
911 +
1408 912 const eventNames = eventName.split(' ');
1409 913 eventNames.forEach(function (singleEventName) {
1410 914 if (!events[singleEventName]) {
1411 915 events[singleEventName] = [];
1412 916 }
917 +
1413 918 events[singleEventName].push(callback);
1414 919 });
1415 920 return self;
1416 921 };
922 +
1417 923 this.off = function (eventName, callback) {
1418 924 if (!events[eventName]) {
1419 925 return self;
1420 926 }
927 +
1421 928 if (!callback) {
1422 929 delete events[eventName];
1423 930 return self;
1424 931 }
932 +
1425 933 const callbackIndex = events[eventName].indexOf(callback);
934 +
1426 935 if (-1 !== callbackIndex) {
1427 - delete events[eventName][callbackIndex];
936 + delete events[eventName][callbackIndex]; // Reset array index (for next off on same event).
1428 937
1429 - // Reset array index (for next off on same event).
1430 938 events[eventName] = events[eventName].filter(val => val);
1431 939 }
940 +
1432 941 return self;
1433 942 };
943 +
1434 944 this.trigger = function (eventName) {
1435 945 const methodName = 'on' + eventName[0].toUpperCase() + eventName.slice(1),
1436 - params = Array.prototype.slice.call(arguments, 1);
946 + params = Array.prototype.slice.call(arguments, 1);
947 +
1437 948 if (self[methodName]) {
1438 949 self[methodName].apply(self, params);
1439 950 }
951 +
1440 952 const callbacks = events[eventName];
953 +
1441 954 if (!callbacks) {
1442 955 return self;
1443 956 }
957 +
1444 958 $.each(callbacks, function (index, callback) {
1445 959 callback.apply(self, params);
1446 960 });
1447 961 return self;
1448 962 };
963 +
1449 964 init();
1450 965 };
966 +
1451 967 Module.prototype.__construct = function () {};
968 +
1452 969 Module.prototype.getDefaultSettings = function () {
1453 970 return {};
1454 971 };
972 +
1455 973 Module.prototype.getConstructorID = function () {
1456 974 return this.constructor.name;
1457 975 };
976 +
1458 977 Module.extend = function (properties) {
1459 978 const $ = jQuery,
1460 - parent = this;
979 + parent = this;
980 +
1461 981 const child = function () {
1462 982 return parent.apply(this, arguments);
1463 983 };
984 +
1464 985 $.extend(child, parent);
1465 986 child.prototype = Object.create($.extend({}, parent.prototype, properties));
1466 987 child.prototype.constructor = child;
1467 988 child.__super__ = parent.prototype;
@@ -1466,8 +987,9 @@
1466 987 child.prototype.constructor = child;
1467 988 child.__super__ = parent.prototype;
1468 989 return child;
1469 990 };
991 +
1470 992 module.exports = Module;
1471 993
1472 994 /***/ }),
1473 995
@@ -1474,22 +996,19 @@
1474 996 /***/ "../assets/dev/js/modules/imports/utils/masonry.js":
1475 997 /*!*********************************************************!*\
1476 998 !*** ../assets/dev/js/modules/imports/utils/masonry.js ***!
1477 999 \*********************************************************/
1478 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1000 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1479 1001
1480 1002 "use strict";
1481 1003
1482 1004
1483 1005 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1484 -Object.defineProperty(exports, "__esModule", ({
1485 - value: true
1486 -}));
1487 -exports["default"] = void 0;
1488 -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js");
1006 +
1489 1007 var _viewModule = _interopRequireDefault(__webpack_require__(/*! ../view-module */ "../assets/dev/js/modules/imports/view-module.js"));
1490 -var _default = exports["default"] = _viewModule.default.extend({
1491 - getDefaultSettings() {
1008 +
1009 +module.exports = _viewModule.default.extend({
1010 + getDefaultSettings: function () {
1492 1011 return {
1493 1012 container: null,
1494 1013 items: null,
1495 1014 columnsCount: 3,
@@ -1495,28 +1014,29 @@
1495 1014 columnsCount: 3,
1496 1015 verticalSpaceBetween: 30
1497 1016 };
1498 1017 },
1499 - getDefaultElements() {
1018 + getDefaultElements: function () {
1500 1019 return {
1501 1020 $container: jQuery(this.getSettings('container')),
1502 1021 $items: jQuery(this.getSettings('items'))
1503 1022 };
1504 1023 },
1505 - run() {
1024 + run: function () {
1506 1025 var heights = [],
1507 - distanceFromTop = this.elements.$container.position().top,
1508 - settings = this.getSettings(),
1509 - columnsCount = settings.columnsCount;
1026 + distanceFromTop = this.elements.$container.position().top,
1027 + settings = this.getSettings(),
1028 + columnsCount = settings.columnsCount;
1510 1029 distanceFromTop += parseInt(this.elements.$container.css('margin-top'), 10);
1511 1030 this.elements.$items.each(function (index) {
1512 1031 var row = Math.floor(index / columnsCount),
1513 - $item = jQuery(this),
1514 - itemHeight = $item[0].getBoundingClientRect().height + settings.verticalSpaceBetween;
1032 + $item = jQuery(this),
1033 + itemHeight = $item[0].getBoundingClientRect().height + settings.verticalSpaceBetween;
1034 +
1515 1035 if (row) {
1516 1036 var itemPosition = $item.position(),
1517 - indexAtRow = index % columnsCount,
1518 - pullHeight = itemPosition.top - distanceFromTop - heights[indexAtRow];
1037 + indexAtRow = index % columnsCount,
1038 + pullHeight = itemPosition.top - distanceFromTop - heights[indexAtRow];
1519 1039 pullHeight -= parseInt($item.css('margin-top'), 10);
1520 1040 pullHeight *= -1;
1521 1041 $item.css('margin-top', pullHeight + 'px');
1522 1042 heights[indexAtRow] += itemHeight;
@@ -1532,9 +1052,9 @@
1532 1052 /***/ "../assets/dev/js/modules/imports/utils/scroll.js":
1533 1053 /*!********************************************************!*\
1534 1054 !*** ../assets/dev/js/modules/imports/utils/scroll.js ***!
1535 1055 \********************************************************/
1536 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1056 +/***/ ((__unused_webpack_module, exports) => {
1537 1057
1538 1058 "use strict";
1539 1059
1540 1060
@@ -1541,45 +1061,49 @@
1541 1061 Object.defineProperty(exports, "__esModule", ({
1542 1062 value: true
1543 1063 }));
1544 1064 exports["default"] = void 0;
1545 -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js");
1065 +
1546 1066 // Moved from elementor pro: 'assets/dev/js/frontend/utils'
1547 1067 class Scroll {
1548 1068 /**
1549 - * @param {Object} obj
1550 - * @param {number} obj.sensitivity - Value between 0-100 - Will determine the intersection trigger points on the element
1551 - * @param {Function} obj.callback - Will be triggered on each intersection point between the element and the viewport top/bottom
1552 - * @param {string} obj.offset - Offset between the element intersection points and the viewport, written like in CSS: '-50% 0 -25%'
1553 - * @param {HTMLElement} obj.root - The element that the events will be relative to, if 'null' will be relative to the viewport
1069 + * @param {object} obj
1070 + * @param {number} obj.sensitivity - Value between 0-100 - Will determine the intersection trigger points on the element
1071 + * @param {function} obj.callback - Will be triggered on each intersection point between the element and the viewport top/bottom
1072 + * @param {string} obj.offset - Offset between the element intersection points and the viewport, written like in CSS: '-50% 0 -25%'
1073 + * @param {HTMLElement} obj.root - The element that the events will be relative to, if 'null' will be relative to the viewport
1554 1074 */
1555 1075 static scrollObserver(obj) {
1556 - let lastScrollY = 0;
1076 + let lastScrollY = 0; // Generating threshholds points along the animation height
1077 + // More threshholds points = more trigger points of the callback
1557 1078
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 = [];
1079 + const buildThreshholds = (sensitivityPercentage = 0) => {
1080 + const threshholds = [];
1081 +
1562 1082 if (sensitivityPercentage > 0 && sensitivityPercentage <= 100) {
1563 1083 const increment = 100 / sensitivityPercentage;
1084 +
1564 1085 for (let i = 0; i <= 100; i += increment) {
1565 - thresholds.push(i / 100);
1086 + threshholds.push(i / 100);
1566 1087 }
1567 1088 } else {
1568 - thresholds.push(0);
1089 + threshholds.push(0);
1569 1090 }
1570 - return thresholds;
1091 +
1092 + return threshholds;
1571 1093 };
1094 +
1572 1095 const options = {
1573 1096 root: obj.root || null,
1574 1097 rootMargin: obj.offset || '0px',
1575 - threshold: buildThresholds(obj.sensitivity)
1098 + threshold: buildThreshholds(obj.sensitivity)
1576 1099 };
1100 +
1577 1101 function handleIntersect(entries) {
1578 1102 const currentScrollY = entries[0].boundingClientRect.y,
1579 - isInViewport = entries[0].isIntersecting,
1580 - intersectionScrollDirection = currentScrollY < lastScrollY ? 'down' : 'up',
1581 - scrollPercentage = Math.abs(parseFloat((entries[0].intersectionRatio * 100).toFixed(2)));
1103 + isInViewport = entries[0].isIntersecting,
1104 + intersectionScrollDirection = currentScrollY < lastScrollY ? 'down' : 'up',
1105 + scrollPercentage = Math.abs(parseFloat((entries[0].intersectionRatio * 100).toFixed(2)));
1582 1106 obj.callback({
1583 1107 sensitivity: obj.sensitivity,
1584 1108 isInViewport,
1585 1109 scrollPercentage,
@@ -1586,47 +1110,52 @@
1586 1110 intersectionScrollDirection
1587 1111 });
1588 1112 lastScrollY = currentScrollY;
1589 1113 }
1114 +
1590 1115 return new IntersectionObserver(handleIntersect, options);
1591 1116 }
1592 -
1593 1117 /**
1594 - * @param {jQuery.Element} $element
1595 - * @param {Object} offsetObj
1596 - * @param {number} offsetObj.start - Offset start value in percentages
1597 - * @param {number} offsetObj.end - Offset end value in percentages
1118 + * @param {jQuery Element} $element
1119 + * @param {object} offsetObj
1120 + * @param {number} offsetObj.start - Offset start value in percentages
1121 + * @param {number} offsetObj.end - Offset end value in percentages
1598 1122 */
1123 +
1124 +
1599 1125 static getElementViewportPercentage($element, offsetObj = {}) {
1600 1126 const elementOffset = $element[0].getBoundingClientRect(),
1601 - offsetStart = offsetObj.start || 0,
1602 - offsetEnd = offsetObj.end || 0,
1603 - windowStartOffset = window.innerHeight * offsetStart / 100,
1604 - windowEndOffset = window.innerHeight * offsetEnd / 100,
1605 - y1 = elementOffset.top - window.innerHeight,
1606 - y2 = elementOffset.top + windowStartOffset + $element.height(),
1607 - startPosition = 0 - y1 + windowStartOffset,
1608 - endPosition = y2 - y1 + windowEndOffset,
1609 - percent = Math.max(0, Math.min(startPosition / endPosition, 1));
1127 + offsetStart = offsetObj.start || 0,
1128 + offsetEnd = offsetObj.end || 0,
1129 + windowStartOffset = window.innerHeight * offsetStart / 100,
1130 + windowEndOffset = window.innerHeight * offsetEnd / 100,
1131 + y1 = elementOffset.top - window.innerHeight,
1132 + y2 = elementOffset.top + windowStartOffset + $element.height(),
1133 + startPosition = 0 - y1 + windowStartOffset,
1134 + endPosition = y2 - y1 + windowEndOffset,
1135 + percent = Math.max(0, Math.min(startPosition / endPosition, 1));
1610 1136 return parseFloat((percent * 100).toFixed(2));
1611 1137 }
1612 -
1613 1138 /**
1614 - * @param {Object} offsetObj
1139 + * @param {object} offsetObj
1615 1140 * @param {number} offsetObj.start - Offset start value in percentages
1616 - * @param {number} offsetObj.end - Offset end value in percentages
1141 + * @param {number} offsetObj.end - Offset end value in percentages
1617 1142 * @param {number} limitPageHeight - Will limit the page height calculation
1618 1143 */
1144 +
1145 +
1619 1146 static getPageScrollPercentage(offsetObj = {}, limitPageHeight) {
1620 1147 const offsetStart = offsetObj.start || 0,
1621 - offsetEnd = offsetObj.end || 0,
1622 - initialPageHeight = limitPageHeight || document.documentElement.scrollHeight - document.documentElement.clientHeight,
1623 - heightOffset = initialPageHeight * offsetStart / 100,
1624 - pageRange = initialPageHeight + heightOffset + initialPageHeight * offsetEnd / 100,
1625 - scrollPos = document.documentElement.scrollTop + document.body.scrollTop + heightOffset;
1148 + offsetEnd = offsetObj.end || 0,
1149 + initialPageHeight = limitPageHeight || document.documentElement.scrollHeight - document.documentElement.clientHeight,
1150 + heightOffset = initialPageHeight * offsetStart / 100,
1151 + pageRange = initialPageHeight + heightOffset + initialPageHeight * offsetEnd / 100,
1152 + scrollPos = document.documentElement.scrollTop + document.body.scrollTop + heightOffset;
1626 1153 return scrollPos / pageRange * 100;
1627 1154 }
1155 +
1628 1156 }
1157 +
1629 1158 exports["default"] = Scroll;
1630 1159
1631 1160 /***/ }),
1632 1161
@@ -1633,30 +1162,28 @@
1633 1162 /***/ "../assets/dev/js/modules/imports/view-module.js":
1634 1163 /*!*******************************************************!*\
1635 1164 !*** ../assets/dev/js/modules/imports/view-module.js ***!
1636 1165 \*******************************************************/
1637 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1166 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1638 1167
1639 1168 "use strict";
1640 1169
1641 1170
1642 1171 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1643 -Object.defineProperty(exports, "__esModule", ({
1644 - value: true
1645 -}));
1646 -exports["default"] = void 0;
1172 +
1647 1173 var _module = _interopRequireDefault(__webpack_require__(/*! ./module */ "../assets/dev/js/modules/imports/module.js"));
1648 -var _default = exports["default"] = _module.default.extend({
1174 +
1175 +module.exports = _module.default.extend({
1649 1176 elements: null,
1650 - getDefaultElements() {
1177 + getDefaultElements: function () {
1651 1178 return {};
1652 1179 },
1653 - bindEvents() {},
1654 - onInit() {
1180 + bindEvents: function () {},
1181 + onInit: function () {
1655 1182 this.initElements();
1656 1183 this.bindEvents();
1657 1184 },
1658 - initElements() {
1185 + initElements: function () {
1659 1186 this.elements = this.getDefaultElements();
1660 1187 }
1661 1188 });
1662 1189
@@ -1671,21 +1198,27 @@
1671 1198 "use strict";
1672 1199
1673 1200
1674 1201 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1202 +
1675 1203 Object.defineProperty(exports, "__esModule", ({
1676 1204 value: true
1677 1205 }));
1678 1206 exports["default"] = void 0;
1207 +
1679 1208 var _module = _interopRequireDefault(__webpack_require__(/*! ./imports/module */ "../assets/dev/js/modules/imports/module.js"));
1209 +
1680 1210 var _viewModule = _interopRequireDefault(__webpack_require__(/*! ./imports/view-module */ "../assets/dev/js/modules/imports/view-module.js"));
1211 +
1681 1212 var _argsObject = _interopRequireDefault(__webpack_require__(/*! ./imports/args-object */ "../assets/dev/js/modules/imports/args-object.js"));
1213 +
1682 1214 var _masonry = _interopRequireDefault(__webpack_require__(/*! ./imports/utils/masonry */ "../assets/dev/js/modules/imports/utils/masonry.js"));
1215 +
1683 1216 var _scroll = _interopRequireDefault(__webpack_require__(/*! ./imports/utils/scroll */ "../assets/dev/js/modules/imports/utils/scroll.js"));
1217 +
1684 1218 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 = {
1219 +
1220 +var _default = window.elementorModules = {
1688 1221 Module: _module.default,
1689 1222 ViewModule: _viewModule.default,
1690 1223 ArgsObject: _argsObject.default,
1691 1224 ForceMethodImplementation: _forceMethodImplementation.default,
@@ -1691,3120 +1224,12 @@
1691 1224 ForceMethodImplementation: _forceMethodImplementation.default,
1692 1225 utils: {
1693 1226 Masonry: _masonry.default,
1694 1227 Scroll: _scroll.default
1695 - },
1696 - importExport: {
1697 - createGetInitialState: _templateRegistryHelpers.createGetInitialState,
1698 - customizationDialogsRegistry: _customizationDialogs.customizationDialogsRegistry
1699 1228 }
1700 1229 };
1701 -if (!window.elementorModules) {
1702 - window.elementorModules = baseModules;
1703 -} else {
1704 - Object.assign(window.elementorModules, baseModules);
1705 -}
1706 -var _default = exports["default"] = window.elementorModules;
1707 1230
1708 -/***/ }),
1709 -
1710 -/***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js":
1711 -/*!***********************************************************************!*\
1712 - !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
1713 - \***********************************************************************/
1714 -/***/ ((module) => {
1715 -
1716 -function _interopRequireDefault(e) {
1717 - return e && e.__esModule ? e : {
1718 - "default": e
1719 - };
1720 -}
1721 -module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
1722 -
1723 -/***/ }),
1724 -
1725 -/***/ "../node_modules/core-js/internals/a-callable.js":
1726 -/*!*******************************************************!*\
1727 - !*** ../node_modules/core-js/internals/a-callable.js ***!
1728 - \*******************************************************/
1729 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1730 -
1731 -"use strict";
1732 -
1733 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
1734 -var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../node_modules/core-js/internals/try-to-string.js");
1735 -
1736 -var $TypeError = TypeError;
1737 -
1738 -// `Assert: IsCallable(argument) is true`
1739 -module.exports = function (argument) {
1740 - if (isCallable(argument)) return argument;
1741 - throw new $TypeError(tryToString(argument) + ' is not a function');
1742 -};
1743 -
1744 -
1745 -/***/ }),
1746 -
1747 -/***/ "../node_modules/core-js/internals/an-instance.js":
1748 -/*!********************************************************!*\
1749 - !*** ../node_modules/core-js/internals/an-instance.js ***!
1750 - \********************************************************/
1751 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1752 -
1753 -"use strict";
1754 -
1755 -var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js");
1756 -
1757 -var $TypeError = TypeError;
1758 -
1759 -module.exports = function (it, Prototype) {
1760 - if (isPrototypeOf(Prototype, it)) return it;
1761 - throw new $TypeError('Incorrect invocation');
1762 -};
1763 -
1764 -
1765 -/***/ }),
1766 -
1767 -/***/ "../node_modules/core-js/internals/an-object.js":
1768 -/*!******************************************************!*\
1769 - !*** ../node_modules/core-js/internals/an-object.js ***!
1770 - \******************************************************/
1771 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1772 -
1773 -"use strict";
1774 -
1775 -var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
1776 -
1777 -var $String = String;
1778 -var $TypeError = TypeError;
1779 -
1780 -// `Assert: Type(argument) is Object`
1781 -module.exports = function (argument) {
1782 - if (isObject(argument)) return argument;
1783 - throw new $TypeError($String(argument) + ' is not an object');
1784 -};
1785 -
1786 -
1787 -/***/ }),
1788 -
1789 -/***/ "../node_modules/core-js/internals/array-includes.js":
1790 -/*!***********************************************************!*\
1791 - !*** ../node_modules/core-js/internals/array-includes.js ***!
1792 - \***********************************************************/
1793 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1794 -
1795 -"use strict";
1796 -
1797 -var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
1798 -var toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "../node_modules/core-js/internals/to-absolute-index.js");
1799 -var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../node_modules/core-js/internals/length-of-array-like.js");
1800 -
1801 -// `Array.prototype.{ indexOf, includes }` methods implementation
1802 -var createMethod = function (IS_INCLUDES) {
1803 - return function ($this, el, fromIndex) {
1804 - var O = toIndexedObject($this);
1805 - var length = lengthOfArrayLike(O);
1806 - if (length === 0) return !IS_INCLUDES && -1;
1807 - var index = toAbsoluteIndex(fromIndex, length);
1808 - var value;
1809 - // Array#includes uses SameValueZero equality algorithm
1810 - // eslint-disable-next-line no-self-compare -- NaN check
1811 - if (IS_INCLUDES && el !== el) while (length > index) {
1812 - value = O[index++];
1813 - // eslint-disable-next-line no-self-compare -- NaN check
1814 - if (value !== value) return true;
1815 - // Array#indexOf ignores holes, Array#includes - not
1816 - } else for (;length > index; index++) {
1817 - if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
1818 - } return !IS_INCLUDES && -1;
1819 - };
1820 -};
1821 -
1822 -module.exports = {
1823 - // `Array.prototype.includes` method
1824 - // https://tc39.es/ecma262/#sec-array.prototype.includes
1825 - includes: createMethod(true),
1826 - // `Array.prototype.indexOf` method
1827 - // https://tc39.es/ecma262/#sec-array.prototype.indexof
1828 - indexOf: createMethod(false)
1829 -};
1830 -
1831 -
1832 -/***/ }),
1833 -
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 -/***/ "../node_modules/core-js/internals/classof-raw.js":
1896 -/*!********************************************************!*\
1897 - !*** ../node_modules/core-js/internals/classof-raw.js ***!
1898 - \********************************************************/
1899 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1900 -
1901 -"use strict";
1902 -
1903 -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
1904 -
1905 -var toString = uncurryThis({}.toString);
1906 -var stringSlice = uncurryThis(''.slice);
1907 -
1908 -module.exports = function (it) {
1909 - return stringSlice(toString(it), 8, -1);
1910 -};
1911 -
1912 -
1913 -/***/ }),
1914 -
1915 -/***/ "../node_modules/core-js/internals/classof.js":
1916 -/*!****************************************************!*\
1917 - !*** ../node_modules/core-js/internals/classof.js ***!
1918 - \****************************************************/
1919 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1920 -
1921 -"use strict";
1922 -
1923 -var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "../node_modules/core-js/internals/to-string-tag-support.js");
1924 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
1925 -var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js");
1926 -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
1927 -
1928 -var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1929 -var $Object = Object;
1930 -
1931 -// ES3 wrong here
1932 -var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
1933 -
1934 -// fallback for IE11 Script Access Denied error
1935 -var tryGet = function (it, key) {
1936 - try {
1937 - return it[key];
1938 - } catch (error) { /* empty */ }
1939 -};
1940 -
1941 -// getting tag from ES6+ `Object.prototype.toString`
1942 -module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1943 - var O, tag, result;
1944 - return it === undefined ? 'Undefined' : it === null ? 'Null'
1945 - // @@toStringTag case
1946 - : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
1947 - // builtinTag case
1948 - : CORRECT_ARGUMENTS ? classofRaw(O)
1949 - // ES3 arguments fallback
1950 - : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
1951 -};
1952 -
1953 -
1954 -/***/ }),
1955 -
1956 -/***/ "../node_modules/core-js/internals/copy-constructor-properties.js":
1957 -/*!************************************************************************!*\
1958 - !*** ../node_modules/core-js/internals/copy-constructor-properties.js ***!
1959 - \************************************************************************/
1960 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1961 -
1962 -"use strict";
1963 -
1964 -var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
1965 -var ownKeys = __webpack_require__(/*! ../internals/own-keys */ "../node_modules/core-js/internals/own-keys.js");
1966 -var getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../node_modules/core-js/internals/object-get-own-property-descriptor.js");
1967 -var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
1968 -
1969 -module.exports = function (target, source, exceptions) {
1970 - var keys = ownKeys(source);
1971 - var defineProperty = definePropertyModule.f;
1972 - var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1973 - for (var i = 0; i < keys.length; i++) {
1974 - var key = keys[i];
1975 - if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
1976 - defineProperty(target, key, getOwnPropertyDescriptor(source, key));
1977 - }
1978 - }
1979 -};
1980 -
1981 -
1982 -/***/ }),
1983 -
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 -/***/ "../node_modules/core-js/internals/create-non-enumerable-property.js":
2022 -/*!***************************************************************************!*\
2023 - !*** ../node_modules/core-js/internals/create-non-enumerable-property.js ***!
2024 - \***************************************************************************/
2025 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2026 -
2027 -"use strict";
2028 -
2029 -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
2030 -var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
2031 -var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js");
2032 -
2033 -module.exports = DESCRIPTORS ? function (object, key, value) {
2034 - return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
2035 -} : function (object, key, value) {
2036 - object[key] = value;
2037 - return object;
2038 -};
2039 -
2040 -
2041 -/***/ }),
2042 -
2043 -/***/ "../node_modules/core-js/internals/create-property-descriptor.js":
2044 -/*!***********************************************************************!*\
2045 - !*** ../node_modules/core-js/internals/create-property-descriptor.js ***!
2046 - \***********************************************************************/
2047 -/***/ ((module) => {
2048 -
2049 -"use strict";
2050 -
2051 -module.exports = function (bitmap, value) {
2052 - return {
2053 - enumerable: !(bitmap & 1),
2054 - configurable: !(bitmap & 2),
2055 - writable: !(bitmap & 4),
2056 - value: value
2057 - };
2058 -};
2059 -
2060 -
2061 -/***/ }),
2062 -
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 -/***/ "../node_modules/core-js/internals/define-built-in.js":
2104 -/*!************************************************************!*\
2105 - !*** ../node_modules/core-js/internals/define-built-in.js ***!
2106 - \************************************************************/
2107 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2108 -
2109 -"use strict";
2110 -
2111 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
2112 -var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
2113 -var makeBuiltIn = __webpack_require__(/*! ../internals/make-built-in */ "../node_modules/core-js/internals/make-built-in.js");
2114 -var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
2115 -
2116 -module.exports = function (O, key, value, options) {
2117 - if (!options) options = {};
2118 - var simple = options.enumerable;
2119 - var name = options.name !== undefined ? options.name : key;
2120 - if (isCallable(value)) makeBuiltIn(value, name, options);
2121 - if (options.global) {
2122 - if (simple) O[key] = value;
2123 - else defineGlobalProperty(key, value);
2124 - } else {
2125 - try {
2126 - if (!options.unsafe) delete O[key];
2127 - else if (O[key]) simple = true;
2128 - } catch (error) { /* empty */ }
2129 - if (simple) O[key] = value;
2130 - else definePropertyModule.f(O, key, {
2131 - value: value,
2132 - enumerable: false,
2133 - configurable: !options.nonConfigurable,
2134 - writable: !options.nonWritable
2135 - });
2136 - } return O;
2137 -};
2138 -
2139 -
2140 -/***/ }),
2141 -
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 -/***/ "../node_modules/core-js/internals/define-global-property.js":
2161 -/*!*******************************************************************!*\
2162 - !*** ../node_modules/core-js/internals/define-global-property.js ***!
2163 - \*******************************************************************/
2164 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2165 -
2166 -"use strict";
2167 -
2168 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2169 -
2170 -// eslint-disable-next-line es/no-object-defineproperty -- safe
2171 -var defineProperty = Object.defineProperty;
2172 -
2173 -module.exports = function (key, value) {
2174 - try {
2175 - defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
2176 - } catch (error) {
2177 - globalThis[key] = value;
2178 - } return value;
2179 -};
2180 -
2181 -
2182 -/***/ }),
2183 -
2184 -/***/ "../node_modules/core-js/internals/descriptors.js":
2185 -/*!********************************************************!*\
2186 - !*** ../node_modules/core-js/internals/descriptors.js ***!
2187 - \********************************************************/
2188 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2189 -
2190 -"use strict";
2191 -
2192 -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
2193 -
2194 -// Detect IE8's incomplete defineProperty implementation
2195 -module.exports = !fails(function () {
2196 - // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2197 - return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
2198 -});
2199 -
2200 -
2201 -/***/ }),
2202 -
2203 -/***/ "../node_modules/core-js/internals/document-create-element.js":
2204 -/*!********************************************************************!*\
2205 - !*** ../node_modules/core-js/internals/document-create-element.js ***!
2206 - \********************************************************************/
2207 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2208 -
2209 -"use strict";
2210 -
2211 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2212 -var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
2213 -
2214 -var document = globalThis.document;
2215 -// typeof document.createElement is 'object' in old IE
2216 -var EXISTS = isObject(document) && isObject(document.createElement);
2217 -
2218 -module.exports = function (it) {
2219 - return EXISTS ? document.createElement(it) : {};
2220 -};
2221 -
2222 -
2223 -/***/ }),
2224 -
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 - \*************************************************************************/
2229 -/***/ ((module) => {
2230 -
2231 -"use strict";
2232 -
2233 -var $TypeError = TypeError;
2234 -var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
2235 -
2236 -module.exports = function (it) {
2237 - if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
2238 - return it;
2239 -};
2240 -
2241 -
2242 -/***/ }),
2243 -
2244 -/***/ "../node_modules/core-js/internals/enum-bug-keys.js":
2245 -/*!**********************************************************!*\
2246 - !*** ../node_modules/core-js/internals/enum-bug-keys.js ***!
2247 - \**********************************************************/
2248 -/***/ ((module) => {
2249 -
2250 -"use strict";
2251 -
2252 -// IE8- don't enum bug keys
2253 -module.exports = [
2254 - 'constructor',
2255 - 'hasOwnProperty',
2256 - 'isPrototypeOf',
2257 - 'propertyIsEnumerable',
2258 - 'toLocaleString',
2259 - 'toString',
2260 - 'valueOf'
2261 -];
2262 -
2263 -
2264 -/***/ }),
2265 -
2266 -/***/ "../node_modules/core-js/internals/environment-user-agent.js":
2267 -/*!*******************************************************************!*\
2268 - !*** ../node_modules/core-js/internals/environment-user-agent.js ***!
2269 - \*******************************************************************/
2270 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2271 -
2272 -"use strict";
2273 -
2274 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2275 -
2276 -var navigator = globalThis.navigator;
2277 -var userAgent = navigator && navigator.userAgent;
2278 -
2279 -module.exports = userAgent ? String(userAgent) : '';
2280 -
2281 -
2282 -/***/ }),
2283 -
2284 -/***/ "../node_modules/core-js/internals/environment-v8-version.js":
2285 -/*!*******************************************************************!*\
2286 - !*** ../node_modules/core-js/internals/environment-v8-version.js ***!
2287 - \*******************************************************************/
2288 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2289 -
2290 -"use strict";
2291 -
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");
2294 -
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;
2300 -
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 -}
2307 -
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 -
2318 -module.exports = version;
2319 -
2320 -
2321 -/***/ }),
2322 -
2323 -/***/ "../node_modules/core-js/internals/export.js":
2324 -/*!***************************************************!*\
2325 - !*** ../node_modules/core-js/internals/export.js ***!
2326 - \***************************************************/
2327 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2328 -
2329 -"use strict";
2330 -
2331 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2332 -var getOwnPropertyDescriptor = (__webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../node_modules/core-js/internals/object-get-own-property-descriptor.js").f);
2333 -var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
2334 -var defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ "../node_modules/core-js/internals/define-built-in.js");
2335 -var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
2336 -var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "../node_modules/core-js/internals/copy-constructor-properties.js");
2337 -var isForced = __webpack_require__(/*! ../internals/is-forced */ "../node_modules/core-js/internals/is-forced.js");
2338 -
2339 -/*
2340 - options.target - name of the target object
2341 - options.global - target is the global object
2342 - options.stat - export as static methods of target
2343 - options.proto - export as prototype methods of target
2344 - options.real - real prototype method for the `pure` version
2345 - options.forced - export even if the native feature is available
2346 - options.bind - bind methods to the target, required for the `pure` version
2347 - options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
2348 - options.unsafe - use the simple assignment of property instead of delete + defineProperty
2349 - options.sham - add a flag to not completely full polyfills
2350 - options.enumerable - export as enumerable property
2351 - options.dontCallGetSet - prevent calling a getter on target
2352 - options.name - the .name of the function if it does not match the key
2353 -*/
2354 -module.exports = function (options, source) {
2355 - var TARGET = options.target;
2356 - var GLOBAL = options.global;
2357 - var STATIC = options.stat;
2358 - var FORCED, target, key, targetProperty, sourceProperty, descriptor;
2359 - if (GLOBAL) {
2360 - target = globalThis;
2361 - } else if (STATIC) {
2362 - target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
2363 - } else {
2364 - target = globalThis[TARGET] && globalThis[TARGET].prototype;
2365 - }
2366 - if (target) for (key in source) {
2367 - sourceProperty = source[key];
2368 - if (options.dontCallGetSet) {
2369 - descriptor = getOwnPropertyDescriptor(target, key);
2370 - targetProperty = descriptor && descriptor.value;
2371 - } else targetProperty = target[key];
2372 - FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
2373 - // contained in target
2374 - if (!FORCED && targetProperty !== undefined) {
2375 - if (typeof sourceProperty == typeof targetProperty) continue;
2376 - copyConstructorProperties(sourceProperty, targetProperty);
2377 - }
2378 - // add a flag to not completely full polyfills
2379 - if (options.sham || (targetProperty && targetProperty.sham)) {
2380 - createNonEnumerableProperty(sourceProperty, 'sham', true);
2381 - }
2382 - defineBuiltIn(target, key, sourceProperty, options);
2383 - }
2384 -};
2385 -
2386 -
2387 -/***/ }),
2388 -
2389 -/***/ "../node_modules/core-js/internals/fails.js":
2390 -/*!**************************************************!*\
2391 - !*** ../node_modules/core-js/internals/fails.js ***!
2392 - \**************************************************/
2393 -/***/ ((module) => {
2394 -
2395 -"use strict";
2396 -
2397 -module.exports = function (exec) {
2398 - try {
2399 - return !!exec();
2400 - } catch (error) {
2401 - return true;
2402 - }
2403 -};
2404 -
2405 -
2406 -/***/ }),
2407 -
2408 -/***/ "../node_modules/core-js/internals/function-bind-context.js":
2409 -/*!******************************************************************!*\
2410 - !*** ../node_modules/core-js/internals/function-bind-context.js ***!
2411 - \******************************************************************/
2412 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2413 -
2414 -"use strict";
2415 -
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 -var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
2419 -
2420 -var bind = uncurryThis(uncurryThis.bind);
2421 -
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 -};
2429 -
2430 -
2431 -/***/ }),
2432 -
2433 -/***/ "../node_modules/core-js/internals/function-bind-native.js":
2434 -/*!*****************************************************************!*\
2435 - !*** ../node_modules/core-js/internals/function-bind-native.js ***!
2436 - \*****************************************************************/
2437 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2438 -
2439 -"use strict";
2440 -
2441 -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
2442 -
2443 -module.exports = !fails(function () {
2444 - // eslint-disable-next-line es/no-function-prototype-bind -- safe
2445 - var test = (function () { /* empty */ }).bind();
2446 - // eslint-disable-next-line no-prototype-builtins -- safe
2447 - return typeof test != 'function' || test.hasOwnProperty('prototype');
2448 -});
2449 -
2450 -
2451 -/***/ }),
2452 -
2453 -/***/ "../node_modules/core-js/internals/function-call.js":
2454 -/*!**********************************************************!*\
2455 - !*** ../node_modules/core-js/internals/function-call.js ***!
2456 - \**********************************************************/
2457 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2458 -
2459 -"use strict";
2460 -
2461 -var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
2462 -
2463 -var call = Function.prototype.call;
2464 -// eslint-disable-next-line es/no-function-prototype-bind -- safe
2465 -module.exports = NATIVE_BIND ? call.bind(call) : function () {
2466 - return call.apply(call, arguments);
2467 -};
2468 -
2469 -
2470 -/***/ }),
2471 -
2472 -/***/ "../node_modules/core-js/internals/function-name.js":
2473 -/*!**********************************************************!*\
2474 - !*** ../node_modules/core-js/internals/function-name.js ***!
2475 - \**********************************************************/
2476 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2477 -
2478 -"use strict";
2479 -
2480 -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
2481 -var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
2482 -
2483 -var FunctionPrototype = Function.prototype;
2484 -// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2485 -var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
2486 -
2487 -var EXISTS = hasOwn(FunctionPrototype, 'name');
2488 -// additional protection from minified / mangled / dropped function names
2489 -var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
2490 -var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
2491 -
2492 -module.exports = {
2493 - EXISTS: EXISTS,
2494 - PROPER: PROPER,
2495 - CONFIGURABLE: CONFIGURABLE
2496 -};
2497 -
2498 -
2499 -/***/ }),
2500 -
2501 -/***/ "../node_modules/core-js/internals/function-uncurry-this-clause.js":
2502 -/*!*************************************************************************!*\
2503 - !*** ../node_modules/core-js/internals/function-uncurry-this-clause.js ***!
2504 - \*************************************************************************/
2505 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2506 -
2507 -"use strict";
2508 -
2509 -var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js");
2510 -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
2511 -
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);
2517 -};
2518 -
2519 -
2520 -/***/ }),
2521 -
2522 -/***/ "../node_modules/core-js/internals/function-uncurry-this.js":
2523 -/*!******************************************************************!*\
2524 - !*** ../node_modules/core-js/internals/function-uncurry-this.js ***!
2525 - \******************************************************************/
2526 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2527 -
2528 -"use strict";
2529 -
2530 -var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
2531 -
2532 -var FunctionPrototype = Function.prototype;
2533 -var call = FunctionPrototype.call;
2534 -// eslint-disable-next-line es/no-function-prototype-bind -- safe
2535 -var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
2536 -
2537 -module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
2538 - return function () {
2539 - return call.apply(fn, arguments);
2540 - };
2541 -};
2542 -
2543 -
2544 -/***/ }),
2545 -
2546 -/***/ "../node_modules/core-js/internals/get-built-in.js":
2547 -/*!*********************************************************!*\
2548 - !*** ../node_modules/core-js/internals/get-built-in.js ***!
2549 - \*********************************************************/
2550 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2551 -
2552 -"use strict";
2553 -
2554 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
2555 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
2556 -
2557 -var aFunction = function (argument) {
2558 - return isCallable(argument) ? argument : undefined;
2559 -};
2560 -
2561 -module.exports = function (namespace, method) {
2562 - return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
2563 -};
2564 -
2565 -
2566 -/***/ }),
2567 -
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 -/***/ "../node_modules/core-js/internals/get-method.js":
2640 -/*!*******************************************************!*\
2641 - !*** ../node_modules/core-js/internals/get-method.js ***!
2642 - \*******************************************************/
2643 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2644 -
2645 -"use strict";
2646 -
2647 -var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
2648 -var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ "../node_modules/core-js/internals/is-null-or-undefined.js");
2649 -
2650 -// `GetMethod` abstract operation
2651 -// https://tc39.es/ecma262/#sec-getmethod
2652 -module.exports = function (V, P) {
2653 - var func = V[P];
2654 - return isNullOrUndefined(func) ? undefined : aCallable(func);
2655 -};
2656 -
2657 -
2658 -/***/ }),
2659 -
2660 -/***/ "../node_modules/core-js/internals/global-this.js":
2661 -/*!********************************************************!*\
2662 - !*** ../node_modules/core-js/internals/global-this.js ***!
2663 - \********************************************************/
2664 -/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2665 -
2666 -"use strict";
2667 -
2668 -var check = function (it) {
2669 - return it && it.Math === Math && it;
2670 -};
2671 -
2672 -// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
2673 -module.exports =
2674 - // eslint-disable-next-line es/no-global-this -- safe
2675 - check(typeof globalThis == 'object' && globalThis) ||
2676 - check(typeof window == 'object' && window) ||
2677 - // eslint-disable-next-line no-restricted-globals -- safe
2678 - check(typeof self == 'object' && self) ||
2679 - check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
2680 - check(typeof this == 'object' && this) ||
2681 - // eslint-disable-next-line no-new-func -- fallback
2682 - (function () { return this; })() || Function('return this')();
2683 -
2684 -
2685 -/***/ }),
2686 -
2687 -/***/ "../node_modules/core-js/internals/has-own-property.js":
2688 -/*!*************************************************************!*\
2689 - !*** ../node_modules/core-js/internals/has-own-property.js ***!
2690 - \*************************************************************/
2691 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2692 -
2693 -"use strict";
2694 -
2695 -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
2696 -var toObject = __webpack_require__(/*! ../internals/to-object */ "../node_modules/core-js/internals/to-object.js");
2697 -
2698 -var hasOwnProperty = uncurryThis({}.hasOwnProperty);
2699 -
2700 -// `HasOwnProperty` abstract operation
2701 -// https://tc39.es/ecma262/#sec-hasownproperty
2702 -// eslint-disable-next-line es/no-object-hasown -- safe
2703 -module.exports = Object.hasOwn || function hasOwn(it, key) {
2704 - return hasOwnProperty(toObject(it), key);
2705 -};
2706 -
2707 -
2708 -/***/ }),
2709 -
2710 -/***/ "../node_modules/core-js/internals/hidden-keys.js":
2711 -/*!********************************************************!*\
2712 - !*** ../node_modules/core-js/internals/hidden-keys.js ***!
2713 - \********************************************************/
2714 -/***/ ((module) => {
2715 -
2716 -"use strict";
2717 -
2718 -module.exports = {};
2719 -
2720 -
2721 -/***/ }),
2722 -
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 -/***/ "../node_modules/core-js/internals/ie8-dom-define.js":
2739 -/*!***********************************************************!*\
2740 - !*** ../node_modules/core-js/internals/ie8-dom-define.js ***!
2741 - \***********************************************************/
2742 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2743 -
2744 -"use strict";
2745 -
2746 -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
2747 -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
2748 -var createElement = __webpack_require__(/*! ../internals/document-create-element */ "../node_modules/core-js/internals/document-create-element.js");
2749 -
2750 -// Thanks to IE8 for its funny defineProperty
2751 -module.exports = !DESCRIPTORS && !fails(function () {
2752 - // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2753 - return Object.defineProperty(createElement('div'), 'a', {
2754 - get: function () { return 7; }
2755 - }).a !== 7;
2756 -});
2757 -
2758 -
2759 -/***/ }),
2760 -
2761 -/***/ "../node_modules/core-js/internals/indexed-object.js":
2762 -/*!***********************************************************!*\
2763 - !*** ../node_modules/core-js/internals/indexed-object.js ***!
2764 - \***********************************************************/
2765 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2766 -
2767 -"use strict";
2768 -
2769 -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
2770 -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
2771 -var classof = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js");
2772 -
2773 -var $Object = Object;
2774 -var split = uncurryThis(''.split);
2775 -
2776 -// fallback for non-array-like ES3 and non-enumerable old V8 strings
2777 -module.exports = fails(function () {
2778 - // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
2779 - // eslint-disable-next-line no-prototype-builtins -- safe
2780 - return !$Object('z').propertyIsEnumerable(0);
2781 -}) ? function (it) {
2782 - return classof(it) === 'String' ? split(it, '') : $Object(it);
2783 -} : $Object;
2784 -
2785 -
2786 -/***/ }),
2787 -
2788 -/***/ "../node_modules/core-js/internals/inspect-source.js":
2789 -/*!***********************************************************!*\
2790 - !*** ../node_modules/core-js/internals/inspect-source.js ***!
2791 - \***********************************************************/
2792 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2793 -
2794 -"use strict";
2795 -
2796 -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
2797 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
2798 -var store = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
2799 -
2800 -var functionToString = uncurryThis(Function.toString);
2801 -
2802 -// this helper broken in `[email protected]`, so we can't use `shared` helper
2803 -if (!isCallable(store.inspectSource)) {
2804 - store.inspectSource = function (it) {
2805 - return functionToString(it);
2806 - };
2807 -}
2808 -
2809 -module.exports = store.inspectSource;
2810 -
2811 -
2812 -/***/ }),
2813 -
2814 -/***/ "../node_modules/core-js/internals/internal-state.js":
2815 -/*!***********************************************************!*\
2816 - !*** ../node_modules/core-js/internals/internal-state.js ***!
2817 - \***********************************************************/
2818 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2819 -
2820 -"use strict";
2821 -
2822 -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");
2824 -var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
2825 -var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
2826 -var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
2827 -var shared = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
2828 -var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../node_modules/core-js/internals/shared-key.js");
2829 -var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js");
2830 -
2831 -var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
2832 -var TypeError = globalThis.TypeError;
2833 -var WeakMap = globalThis.WeakMap;
2834 -var set, get, has;
2835 -
2836 -var enforce = function (it) {
2837 - return has(it) ? get(it) : set(it, {});
2838 -};
2839 -
2840 -var getterFor = function (TYPE) {
2841 - return function (it) {
2842 - var state;
2843 - if (!isObject(it) || (state = get(it)).type !== TYPE) {
2844 - throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
2845 - } return state;
2846 - };
2847 -};
2848 -
2849 -if (NATIVE_WEAK_MAP || shared.state) {
2850 - var store = shared.state || (shared.state = new WeakMap());
2851 - /* eslint-disable no-self-assign -- prototype methods protection */
2852 - store.get = store.get;
2853 - store.has = store.has;
2854 - store.set = store.set;
2855 - /* eslint-enable no-self-assign -- prototype methods protection */
2856 - set = function (it, metadata) {
2857 - if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
2858 - metadata.facade = it;
2859 - store.set(it, metadata);
2860 - return metadata;
2861 - };
2862 - get = function (it) {
2863 - return store.get(it) || {};
2864 - };
2865 - has = function (it) {
2866 - return store.has(it);
2867 - };
2868 -} else {
2869 - var STATE = sharedKey('state');
2870 - hiddenKeys[STATE] = true;
2871 - set = function (it, metadata) {
2872 - if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
2873 - metadata.facade = it;
2874 - createNonEnumerableProperty(it, STATE, metadata);
2875 - return metadata;
2876 - };
2877 - get = function (it) {
2878 - return hasOwn(it, STATE) ? it[STATE] : {};
2879 - };
2880 - has = function (it) {
2881 - return hasOwn(it, STATE);
2882 - };
2883 -}
2884 -
2885 -module.exports = {
2886 - set: set,
2887 - get: get,
2888 - has: has,
2889 - enforce: enforce,
2890 - getterFor: getterFor
2891 -};
2892 -
2893 -
2894 -/***/ }),
2895 -
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 -/***/ "../node_modules/core-js/internals/is-callable.js":
2939 -/*!********************************************************!*\
2940 - !*** ../node_modules/core-js/internals/is-callable.js ***!
2941 - \********************************************************/
2942 -/***/ ((module) => {
2943 -
2944 -"use strict";
2945 -
2946 -// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
2947 -var documentAll = typeof document == 'object' && document.all;
2948 -
2949 -// `IsCallable` abstract operation
2950 -// 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) {
2953 - return typeof argument == 'function' || argument === documentAll;
2954 -} : function (argument) {
2955 - return typeof argument == 'function';
2956 -};
2957 -
2958 -
2959 -/***/ }),
2960 -
2961 -/***/ "../node_modules/core-js/internals/is-forced.js":
2962 -/*!******************************************************!*\
2963 - !*** ../node_modules/core-js/internals/is-forced.js ***!
2964 - \******************************************************/
2965 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2966 -
2967 -"use strict";
2968 -
2969 -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
2970 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
2971 -
2972 -var replacement = /#|\.prototype\./;
2973 -
2974 -var isForced = function (feature, detection) {
2975 - var value = data[normalize(feature)];
2976 - return value === POLYFILL ? true
2977 - : value === NATIVE ? false
2978 - : isCallable(detection) ? fails(detection)
2979 - : !!detection;
2980 -};
2981 -
2982 -var normalize = isForced.normalize = function (string) {
2983 - return String(string).replace(replacement, '.').toLowerCase();
2984 -};
2985 -
2986 -var data = isForced.data = {};
2987 -var NATIVE = isForced.NATIVE = 'N';
2988 -var POLYFILL = isForced.POLYFILL = 'P';
2989 -
2990 -module.exports = isForced;
2991 -
2992 -
2993 -/***/ }),
2994 -
2995 -/***/ "../node_modules/core-js/internals/is-null-or-undefined.js":
2996 -/*!*****************************************************************!*\
2997 - !*** ../node_modules/core-js/internals/is-null-or-undefined.js ***!
2998 - \*****************************************************************/
2999 -/***/ ((module) => {
3000 -
3001 -"use strict";
3002 -
3003 -// we can't use just `it == null` since of `document.all` special case
3004 -// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
3005 -module.exports = function (it) {
3006 - return it === null || it === undefined;
3007 -};
3008 -
3009 -
3010 -/***/ }),
3011 -
3012 -/***/ "../node_modules/core-js/internals/is-object.js":
3013 -/*!******************************************************!*\
3014 - !*** ../node_modules/core-js/internals/is-object.js ***!
3015 - \******************************************************/
3016 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3017 -
3018 -"use strict";
3019 -
3020 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3021 -
3022 -module.exports = function (it) {
3023 - return typeof it == 'object' ? it !== null : isCallable(it);
3024 -};
3025 -
3026 -
3027 -/***/ }),
3028 -
3029 -/***/ "../node_modules/core-js/internals/is-pure.js":
3030 -/*!****************************************************!*\
3031 - !*** ../node_modules/core-js/internals/is-pure.js ***!
3032 - \****************************************************/
3033 -/***/ ((module) => {
3034 -
3035 -"use strict";
3036 -
3037 -module.exports = false;
3038 -
3039 -
3040 -/***/ }),
3041 -
3042 -/***/ "../node_modules/core-js/internals/is-symbol.js":
3043 -/*!******************************************************!*\
3044 - !*** ../node_modules/core-js/internals/is-symbol.js ***!
3045 - \******************************************************/
3046 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3047 -
3048 -"use strict";
3049 -
3050 -var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js");
3051 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3052 -var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js");
3053 -var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../node_modules/core-js/internals/use-symbol-as-uid.js");
3054 -
3055 -var $Object = Object;
3056 -
3057 -module.exports = USE_SYMBOL_AS_UID ? function (it) {
3058 - return typeof it == 'symbol';
3059 -} : function (it) {
3060 - var $Symbol = getBuiltIn('Symbol');
3061 - return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
3062 -};
3063 -
3064 -
3065 -/***/ }),
3066 -
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 -/***/ "../node_modules/core-js/internals/length-of-array-like.js":
3437 -/*!*****************************************************************!*\
3438 - !*** ../node_modules/core-js/internals/length-of-array-like.js ***!
3439 - \*****************************************************************/
3440 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3441 -
3442 -"use strict";
3443 -
3444 -var toLength = __webpack_require__(/*! ../internals/to-length */ "../node_modules/core-js/internals/to-length.js");
3445 -
3446 -// `LengthOfArrayLike` abstract operation
3447 -// https://tc39.es/ecma262/#sec-lengthofarraylike
3448 -module.exports = function (obj) {
3449 - return toLength(obj.length);
3450 -};
3451 -
3452 -
3453 -/***/ }),
3454 -
3455 -/***/ "../node_modules/core-js/internals/make-built-in.js":
3456 -/*!**********************************************************!*\
3457 - !*** ../node_modules/core-js/internals/make-built-in.js ***!
3458 - \**********************************************************/
3459 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3460 -
3461 -"use strict";
3462 -
3463 -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3464 -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
3465 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3466 -var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
3467 -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
3468 -var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(/*! ../internals/function-name */ "../node_modules/core-js/internals/function-name.js").CONFIGURABLE);
3469 -var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "../node_modules/core-js/internals/inspect-source.js");
3470 -var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "../node_modules/core-js/internals/internal-state.js");
3471 -
3472 -var enforceInternalState = InternalStateModule.enforce;
3473 -var getInternalState = InternalStateModule.get;
3474 -var $String = String;
3475 -// eslint-disable-next-line es/no-object-defineproperty -- safe
3476 -var defineProperty = Object.defineProperty;
3477 -var stringSlice = uncurryThis(''.slice);
3478 -var replace = uncurryThis(''.replace);
3479 -var join = uncurryThis([].join);
3480 -
3481 -var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
3482 - return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
3483 -});
3484 -
3485 -var TEMPLATE = String(String).split('String');
3486 -
3487 -var makeBuiltIn = module.exports = function (value, name, options) {
3488 - if (stringSlice($String(name), 0, 7) === 'Symbol(') {
3489 - name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
3490 - }
3491 - if (options && options.getter) name = 'get ' + name;
3492 - if (options && options.setter) name = 'set ' + name;
3493 - if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
3494 - if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
3495 - else value.name = name;
3496 - }
3497 - if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
3498 - defineProperty(value, 'length', { value: options.arity });
3499 - }
3500 - try {
3501 - if (options && hasOwn(options, 'constructor') && options.constructor) {
3502 - if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
3503 - // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
3504 - } else if (value.prototype) value.prototype = undefined;
3505 - } catch (error) { /* empty */ }
3506 - var state = enforceInternalState(value);
3507 - if (!hasOwn(state, 'source')) {
3508 - state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
3509 - } return value;
3510 -};
3511 -
3512 -// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
3513 -// eslint-disable-next-line no-extend-native -- required
3514 -Function.prototype.toString = makeBuiltIn(function toString() {
3515 - return isCallable(this) && getInternalState(this).source || inspectSource(this);
3516 -}, 'toString');
3517 -
3518 -
3519 -/***/ }),
3520 -
3521 -/***/ "../node_modules/core-js/internals/math-trunc.js":
3522 -/*!*******************************************************!*\
3523 - !*** ../node_modules/core-js/internals/math-trunc.js ***!
3524 - \*******************************************************/
3525 -/***/ ((module) => {
3526 -
3527 -"use strict";
3528 -
3529 -var ceil = Math.ceil;
3530 -var floor = Math.floor;
3531 -
3532 -// `Math.trunc` method
3533 -// https://tc39.es/ecma262/#sec-math.trunc
3534 -// eslint-disable-next-line es/no-math-trunc -- safe
3535 -module.exports = Math.trunc || function trunc(x) {
3536 - var n = +x;
3537 - return (n > 0 ? floor : ceil)(n);
3538 -};
3539 -
3540 -
3541 -/***/ }),
3542 -
3543 -/***/ "../node_modules/core-js/internals/object-create.js":
3544 -/*!**********************************************************!*\
3545 - !*** ../node_modules/core-js/internals/object-create.js ***!
3546 - \**********************************************************/
3547 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3548 -
3549 -"use strict";
3550 -
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");
3559 -
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;
3570 -};
3571 -
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 -
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 -/***/ }),
3638 -
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 -/***/ "../node_modules/core-js/internals/object-define-property.js":
3672 -/*!*******************************************************************!*\
3673 - !*** ../node_modules/core-js/internals/object-define-property.js ***!
3674 - \*******************************************************************/
3675 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3676 -
3677 -"use strict";
3678 -
3679 -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
3680 -var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "../node_modules/core-js/internals/ie8-dom-define.js");
3681 -var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(/*! ../internals/v8-prototype-define-bug */ "../node_modules/core-js/internals/v8-prototype-define-bug.js");
3682 -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
3683 -var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ "../node_modules/core-js/internals/to-property-key.js");
3684 -
3685 -var $TypeError = TypeError;
3686 -// eslint-disable-next-line es/no-object-defineproperty -- safe
3687 -var $defineProperty = Object.defineProperty;
3688 -// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3689 -var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
3690 -var ENUMERABLE = 'enumerable';
3691 -var CONFIGURABLE = 'configurable';
3692 -var WRITABLE = 'writable';
3693 -
3694 -// `Object.defineProperty` method
3695 -// https://tc39.es/ecma262/#sec-object.defineproperty
3696 -exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
3697 - anObject(O);
3698 - P = toPropertyKey(P);
3699 - anObject(Attributes);
3700 - if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
3701 - var current = $getOwnPropertyDescriptor(O, P);
3702 - if (current && current[WRITABLE]) {
3703 - O[P] = Attributes.value;
3704 - Attributes = {
3705 - configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
3706 - enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
3707 - writable: false
3708 - };
3709 - }
3710 - } return $defineProperty(O, P, Attributes);
3711 -} : $defineProperty : function defineProperty(O, P, Attributes) {
3712 - anObject(O);
3713 - P = toPropertyKey(P);
3714 - anObject(Attributes);
3715 - if (IE8_DOM_DEFINE) try {
3716 - return $defineProperty(O, P, Attributes);
3717 - } catch (error) { /* empty */ }
3718 - if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
3719 - if ('value' in Attributes) O[P] = Attributes.value;
3720 - return O;
3721 -};
3722 -
3723 -
3724 -/***/ }),
3725 -
3726 -/***/ "../node_modules/core-js/internals/object-get-own-property-descriptor.js":
3727 -/*!*******************************************************************************!*\
3728 - !*** ../node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
3729 - \*******************************************************************************/
3730 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3731 -
3732 -"use strict";
3733 -
3734 -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
3735 -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
3736 -var propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "../node_modules/core-js/internals/object-property-is-enumerable.js");
3737 -var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js");
3738 -var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
3739 -var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ "../node_modules/core-js/internals/to-property-key.js");
3740 -var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
3741 -var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "../node_modules/core-js/internals/ie8-dom-define.js");
3742 -
3743 -// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3744 -var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
3745 -
3746 -// `Object.getOwnPropertyDescriptor` method
3747 -// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
3748 -exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
3749 - O = toIndexedObject(O);
3750 - P = toPropertyKey(P);
3751 - if (IE8_DOM_DEFINE) try {
3752 - return $getOwnPropertyDescriptor(O, P);
3753 - } catch (error) { /* empty */ }
3754 - if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
3755 -};
3756 -
3757 -
3758 -/***/ }),
3759 -
3760 -/***/ "../node_modules/core-js/internals/object-get-own-property-names.js":
3761 -/*!**************************************************************************!*\
3762 - !*** ../node_modules/core-js/internals/object-get-own-property-names.js ***!
3763 - \**************************************************************************/
3764 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3765 -
3766 -"use strict";
3767 -
3768 -var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "../node_modules/core-js/internals/object-keys-internal.js");
3769 -var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "../node_modules/core-js/internals/enum-bug-keys.js");
3770 -
3771 -var hiddenKeys = enumBugKeys.concat('length', 'prototype');
3772 -
3773 -// `Object.getOwnPropertyNames` method
3774 -// https://tc39.es/ecma262/#sec-object.getownpropertynames
3775 -// eslint-disable-next-line es/no-object-getownpropertynames -- safe
3776 -exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
3777 - return internalObjectKeys(O, hiddenKeys);
3778 -};
3779 -
3780 -
3781 -/***/ }),
3782 -
3783 -/***/ "../node_modules/core-js/internals/object-get-own-property-symbols.js":
3784 -/*!****************************************************************************!*\
3785 - !*** ../node_modules/core-js/internals/object-get-own-property-symbols.js ***!
3786 - \****************************************************************************/
3787 -/***/ ((__unused_webpack_module, exports) => {
3788 -
3789 -"use strict";
3790 -
3791 -// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
3792 -exports.f = Object.getOwnPropertySymbols;
3793 -
3794 -
3795 -/***/ }),
3796 -
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 -/***/ "../node_modules/core-js/internals/object-is-prototype-of.js":
3831 -/*!*******************************************************************!*\
3832 - !*** ../node_modules/core-js/internals/object-is-prototype-of.js ***!
3833 - \*******************************************************************/
3834 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3835 -
3836 -"use strict";
3837 -
3838 -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3839 -
3840 -module.exports = uncurryThis({}.isPrototypeOf);
3841 -
3842 -
3843 -/***/ }),
3844 -
3845 -/***/ "../node_modules/core-js/internals/object-keys-internal.js":
3846 -/*!*****************************************************************!*\
3847 - !*** ../node_modules/core-js/internals/object-keys-internal.js ***!
3848 - \*****************************************************************/
3849 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3850 -
3851 -"use strict";
3852 -
3853 -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3854 -var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
3855 -var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
3856 -var indexOf = (__webpack_require__(/*! ../internals/array-includes */ "../node_modules/core-js/internals/array-includes.js").indexOf);
3857 -var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js");
3858 -
3859 -var push = uncurryThis([].push);
3860 -
3861 -module.exports = function (object, names) {
3862 - var O = toIndexedObject(object);
3863 - var i = 0;
3864 - var result = [];
3865 - var key;
3866 - for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
3867 - // Don't enum bug & hidden keys
3868 - while (names.length > i) if (hasOwn(O, key = names[i++])) {
3869 - ~indexOf(result, key) || push(result, key);
3870 - }
3871 - return result;
3872 -};
3873 -
3874 -
3875 -/***/ }),
3876 -
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 -/***/ "../node_modules/core-js/internals/object-property-is-enumerable.js":
3899 -/*!**************************************************************************!*\
3900 - !*** ../node_modules/core-js/internals/object-property-is-enumerable.js ***!
3901 - \**************************************************************************/
3902 -/***/ ((__unused_webpack_module, exports) => {
3903 -
3904 -"use strict";
3905 -
3906 -var $propertyIsEnumerable = {}.propertyIsEnumerable;
3907 -// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3908 -var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
3909 -
3910 -// Nashorn ~ JDK8 bug
3911 -var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
3912 -
3913 -// `Object.prototype.propertyIsEnumerable` method implementation
3914 -// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
3915 -exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
3916 - var descriptor = getOwnPropertyDescriptor(this, V);
3917 - return !!descriptor && descriptor.enumerable;
3918 -} : $propertyIsEnumerable;
3919 -
3920 -
3921 -/***/ }),
3922 -
3923 -/***/ "../node_modules/core-js/internals/ordinary-to-primitive.js":
3924 -/*!******************************************************************!*\
3925 - !*** ../node_modules/core-js/internals/ordinary-to-primitive.js ***!
3926 - \******************************************************************/
3927 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3928 -
3929 -"use strict";
3930 -
3931 -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
3932 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3933 -var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
3934 -
3935 -var $TypeError = TypeError;
3936 -
3937 -// `OrdinaryToPrimitive` abstract operation
3938 -// https://tc39.es/ecma262/#sec-ordinarytoprimitive
3939 -module.exports = function (input, pref) {
3940 - var fn, val;
3941 - if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
3942 - if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
3943 - 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");
3945 -};
3946 -
3947 -
3948 -/***/ }),
3949 -
3950 -/***/ "../node_modules/core-js/internals/own-keys.js":
3951 -/*!*****************************************************!*\
3952 - !*** ../node_modules/core-js/internals/own-keys.js ***!
3953 - \*****************************************************/
3954 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3955 -
3956 -"use strict";
3957 -
3958 -var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js");
3959 -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3960 -var getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "../node_modules/core-js/internals/object-get-own-property-names.js");
3961 -var getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "../node_modules/core-js/internals/object-get-own-property-symbols.js");
3962 -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
3963 -
3964 -var concat = uncurryThis([].concat);
3965 -
3966 -// all object keys, includes non-enumerable and symbols
3967 -module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
3968 - var keys = getOwnPropertyNamesModule.f(anObject(it));
3969 - var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
3970 - return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
3971 -};
3972 -
3973 -
3974 -/***/ }),
3975 -
3976 -/***/ "../node_modules/core-js/internals/require-object-coercible.js":
3977 -/*!*********************************************************************!*\
3978 - !*** ../node_modules/core-js/internals/require-object-coercible.js ***!
3979 - \*********************************************************************/
3980 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3981 -
3982 -"use strict";
3983 -
3984 -var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ "../node_modules/core-js/internals/is-null-or-undefined.js");
3985 -
3986 -var $TypeError = TypeError;
3987 -
3988 -// `RequireObjectCoercible` abstract operation
3989 -// https://tc39.es/ecma262/#sec-requireobjectcoercible
3990 -module.exports = function (it) {
3991 - if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
3992 - return it;
3993 -};
3994 -
3995 -
3996 -/***/ }),
3997 -
3998 -/***/ "../node_modules/core-js/internals/shared-key.js":
3999 -/*!*******************************************************!*\
4000 - !*** ../node_modules/core-js/internals/shared-key.js ***!
4001 - \*******************************************************/
4002 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4003 -
4004 -"use strict";
4005 -
4006 -var shared = __webpack_require__(/*! ../internals/shared */ "../node_modules/core-js/internals/shared.js");
4007 -var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js");
4008 -
4009 -var keys = shared('keys');
4010 -
4011 -module.exports = function (key) {
4012 - return keys[key] || (keys[key] = uid(key));
4013 -};
4014 -
4015 -
4016 -/***/ }),
4017 -
4018 -/***/ "../node_modules/core-js/internals/shared-store.js":
4019 -/*!*********************************************************!*\
4020 - !*** ../node_modules/core-js/internals/shared-store.js ***!
4021 - \*********************************************************/
4022 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4023 -
4024 -"use strict";
4025 -
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");
4028 -var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
4029 -
4030 -var SHARED = '__core-js_shared__';
4031 -var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
4032 -
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 -});
4040 -
4041 -
4042 -/***/ }),
4043 -
4044 -/***/ "../node_modules/core-js/internals/shared.js":
4045 -/*!***************************************************!*\
4046 - !*** ../node_modules/core-js/internals/shared.js ***!
4047 - \***************************************************/
4048 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4049 -
4050 -"use strict";
4051 -
4052 -var store = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
4053 -
4054 -module.exports = function (key, value) {
4055 - return store[key] || (store[key] = value || {});
4056 -};
4057 -
4058 -
4059 -/***/ }),
4060 -
4061 -/***/ "../node_modules/core-js/internals/symbol-constructor-detection.js":
4062 -/*!*************************************************************************!*\
4063 - !*** ../node_modules/core-js/internals/symbol-constructor-detection.js ***!
4064 - \*************************************************************************/
4065 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4066 -
4067 -"use strict";
4068 -
4069 -/* 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");
4071 -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");
4073 -
4074 -var $String = globalThis.String;
4075 -
4076 -// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
4077 -module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
4078 - var symbol = Symbol('symbol detection');
4079 - // Chrome 38 Symbol has incorrect toString conversion
4080 - // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
4081 - // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
4082 - // of course, fail.
4083 - return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
4084 - // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
4085 - !Symbol.sham && V8_VERSION && V8_VERSION < 41;
4086 -});
4087 -
4088 -
4089 -/***/ }),
4090 -
4091 -/***/ "../node_modules/core-js/internals/to-absolute-index.js":
4092 -/*!**************************************************************!*\
4093 - !*** ../node_modules/core-js/internals/to-absolute-index.js ***!
4094 - \**************************************************************/
4095 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4096 -
4097 -"use strict";
4098 -
4099 -var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../node_modules/core-js/internals/to-integer-or-infinity.js");
4100 -
4101 -var max = Math.max;
4102 -var min = Math.min;
4103 -
4104 -// Helper for a popular repeating case of the spec:
4105 -// Let integer be ? ToInteger(index).
4106 -// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
4107 -module.exports = function (index, length) {
4108 - var integer = toIntegerOrInfinity(index);
4109 - return integer < 0 ? max(integer + length, 0) : min(integer, length);
4110 -};
4111 -
4112 -
4113 -/***/ }),
4114 -
4115 -/***/ "../node_modules/core-js/internals/to-indexed-object.js":
4116 -/*!**************************************************************!*\
4117 - !*** ../node_modules/core-js/internals/to-indexed-object.js ***!
4118 - \**************************************************************/
4119 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4120 -
4121 -"use strict";
4122 -
4123 -// toObject with fallback for non-array-like ES3 strings
4124 -var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "../node_modules/core-js/internals/indexed-object.js");
4125 -var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "../node_modules/core-js/internals/require-object-coercible.js");
4126 -
4127 -module.exports = function (it) {
4128 - return IndexedObject(requireObjectCoercible(it));
4129 -};
4130 -
4131 -
4132 -/***/ }),
4133 -
4134 -/***/ "../node_modules/core-js/internals/to-integer-or-infinity.js":
4135 -/*!*******************************************************************!*\
4136 - !*** ../node_modules/core-js/internals/to-integer-or-infinity.js ***!
4137 - \*******************************************************************/
4138 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4139 -
4140 -"use strict";
4141 -
4142 -var trunc = __webpack_require__(/*! ../internals/math-trunc */ "../node_modules/core-js/internals/math-trunc.js");
4143 -
4144 -// `ToIntegerOrInfinity` abstract operation
4145 -// https://tc39.es/ecma262/#sec-tointegerorinfinity
4146 -module.exports = function (argument) {
4147 - var number = +argument;
4148 - // eslint-disable-next-line no-self-compare -- NaN check
4149 - return number !== number || number === 0 ? 0 : trunc(number);
4150 -};
4151 -
4152 -
4153 -/***/ }),
4154 -
4155 -/***/ "../node_modules/core-js/internals/to-length.js":
4156 -/*!******************************************************!*\
4157 - !*** ../node_modules/core-js/internals/to-length.js ***!
4158 - \******************************************************/
4159 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4160 -
4161 -"use strict";
4162 -
4163 -var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../node_modules/core-js/internals/to-integer-or-infinity.js");
4164 -
4165 -var min = Math.min;
4166 -
4167 -// `ToLength` abstract operation
4168 -// https://tc39.es/ecma262/#sec-tolength
4169 -module.exports = function (argument) {
4170 - var len = toIntegerOrInfinity(argument);
4171 - return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
4172 -};
4173 -
4174 -
4175 -/***/ }),
4176 -
4177 -/***/ "../node_modules/core-js/internals/to-object.js":
4178 -/*!******************************************************!*\
4179 - !*** ../node_modules/core-js/internals/to-object.js ***!
4180 - \******************************************************/
4181 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4182 -
4183 -"use strict";
4184 -
4185 -var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "../node_modules/core-js/internals/require-object-coercible.js");
4186 -
4187 -var $Object = Object;
4188 -
4189 -// `ToObject` abstract operation
4190 -// https://tc39.es/ecma262/#sec-toobject
4191 -module.exports = function (argument) {
4192 - return $Object(requireObjectCoercible(argument));
4193 -};
4194 -
4195 -
4196 -/***/ }),
4197 -
4198 -/***/ "../node_modules/core-js/internals/to-primitive.js":
4199 -/*!*********************************************************!*\
4200 - !*** ../node_modules/core-js/internals/to-primitive.js ***!
4201 - \*********************************************************/
4202 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4203 -
4204 -"use strict";
4205 -
4206 -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
4207 -var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
4208 -var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../node_modules/core-js/internals/is-symbol.js");
4209 -var getMethod = __webpack_require__(/*! ../internals/get-method */ "../node_modules/core-js/internals/get-method.js");
4210 -var ordinaryToPrimitive = __webpack_require__(/*! ../internals/ordinary-to-primitive */ "../node_modules/core-js/internals/ordinary-to-primitive.js");
4211 -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
4212 -
4213 -var $TypeError = TypeError;
4214 -var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
4215 -
4216 -// `ToPrimitive` abstract operation
4217 -// https://tc39.es/ecma262/#sec-toprimitive
4218 -module.exports = function (input, pref) {
4219 - if (!isObject(input) || isSymbol(input)) return input;
4220 - var exoticToPrim = getMethod(input, TO_PRIMITIVE);
4221 - var result;
4222 - if (exoticToPrim) {
4223 - if (pref === undefined) pref = 'default';
4224 - result = call(exoticToPrim, input, pref);
4225 - if (!isObject(result) || isSymbol(result)) return result;
4226 - throw new $TypeError("Can't convert object to primitive value");
4227 - }
4228 - if (pref === undefined) pref = 'number';
4229 - return ordinaryToPrimitive(input, pref);
4230 -};
4231 -
4232 -
4233 -/***/ }),
4234 -
4235 -/***/ "../node_modules/core-js/internals/to-property-key.js":
4236 -/*!************************************************************!*\
4237 - !*** ../node_modules/core-js/internals/to-property-key.js ***!
4238 - \************************************************************/
4239 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4240 -
4241 -"use strict";
4242 -
4243 -var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "../node_modules/core-js/internals/to-primitive.js");
4244 -var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../node_modules/core-js/internals/is-symbol.js");
4245 -
4246 -// `ToPropertyKey` abstract operation
4247 -// https://tc39.es/ecma262/#sec-topropertykey
4248 -module.exports = function (argument) {
4249 - var key = toPrimitive(argument, 'string');
4250 - return isSymbol(key) ? key : key + '';
4251 -};
4252 -
4253 -
4254 -/***/ }),
4255 -
4256 -/***/ "../node_modules/core-js/internals/to-string-tag-support.js":
4257 -/*!******************************************************************!*\
4258 - !*** ../node_modules/core-js/internals/to-string-tag-support.js ***!
4259 - \******************************************************************/
4260 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4261 -
4262 -"use strict";
4263 -
4264 -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
4265 -
4266 -var TO_STRING_TAG = wellKnownSymbol('toStringTag');
4267 -var test = {};
4268 -
4269 -test[TO_STRING_TAG] = 'z';
4270 -
4271 -module.exports = String(test) === '[object z]';
4272 -
4273 -
4274 -/***/ }),
4275 -
4276 -/***/ "../node_modules/core-js/internals/try-to-string.js":
4277 -/*!**********************************************************!*\
4278 - !*** ../node_modules/core-js/internals/try-to-string.js ***!
4279 - \**********************************************************/
4280 -/***/ ((module) => {
4281 -
4282 -"use strict";
4283 -
4284 -var $String = String;
4285 -
4286 -module.exports = function (argument) {
4287 - try {
4288 - return $String(argument);
4289 - } catch (error) {
4290 - return 'Object';
4291 - }
4292 -};
4293 -
4294 -
4295 -/***/ }),
4296 -
4297 -/***/ "../node_modules/core-js/internals/uid.js":
4298 -/*!************************************************!*\
4299 - !*** ../node_modules/core-js/internals/uid.js ***!
4300 - \************************************************/
4301 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4302 -
4303 -"use strict";
4304 -
4305 -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
4306 -
4307 -var id = 0;
4308 -var postfix = Math.random();
4309 -var toString = uncurryThis(1.1.toString);
4310 -
4311 -module.exports = function (key) {
4312 - return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
4313 -};
4314 -
4315 -
4316 -/***/ }),
4317 -
4318 -/***/ "../node_modules/core-js/internals/use-symbol-as-uid.js":
4319 -/*!**************************************************************!*\
4320 - !*** ../node_modules/core-js/internals/use-symbol-as-uid.js ***!
4321 - \**************************************************************/
4322 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4323 -
4324 -"use strict";
4325 -
4326 -/* eslint-disable es/no-symbol -- required for testing */
4327 -var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
4328 -
4329 -module.exports = NATIVE_SYMBOL &&
4330 - !Symbol.sham &&
4331 - typeof Symbol.iterator == 'symbol';
4332 -
4333 -
4334 -/***/ }),
4335 -
4336 -/***/ "../node_modules/core-js/internals/v8-prototype-define-bug.js":
4337 -/*!********************************************************************!*\
4338 - !*** ../node_modules/core-js/internals/v8-prototype-define-bug.js ***!
4339 - \********************************************************************/
4340 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4341 -
4342 -"use strict";
4343 -
4344 -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
4345 -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
4346 -
4347 -// V8 ~ Chrome 36-
4348 -// https://bugs.chromium.org/p/v8/issues/detail?id=3334
4349 -module.exports = DESCRIPTORS && fails(function () {
4350 - // eslint-disable-next-line es/no-object-defineproperty -- required for testing
4351 - return Object.defineProperty(function () { /* empty */ }, 'prototype', {
4352 - value: 42,
4353 - writable: false
4354 - }).prototype !== 42;
4355 -});
4356 -
4357 -
4358 -/***/ }),
4359 -
4360 -/***/ "../node_modules/core-js/internals/weak-map-basic-detection.js":
4361 -/*!*********************************************************************!*\
4362 - !*** ../node_modules/core-js/internals/weak-map-basic-detection.js ***!
4363 - \*********************************************************************/
4364 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4365 -
4366 -"use strict";
4367 -
4368 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
4369 -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
4370 -
4371 -var WeakMap = globalThis.WeakMap;
4372 -
4373 -module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
4374 -
4375 -
4376 -/***/ }),
4377 -
4378 -/***/ "../node_modules/core-js/internals/well-known-symbol.js":
4379 -/*!**************************************************************!*\
4380 - !*** ../node_modules/core-js/internals/well-known-symbol.js ***!
4381 - \**************************************************************/
4382 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4383 -
4384 -"use strict";
4385 -
4386 -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js");
4387 -var shared = __webpack_require__(/*! ../internals/shared */ "../node_modules/core-js/internals/shared.js");
4388 -var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
4389 -var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js");
4390 -var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
4391 -var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../node_modules/core-js/internals/use-symbol-as-uid.js");
4392 -
4393 -var Symbol = globalThis.Symbol;
4394 -var WellKnownSymbolsStore = shared('wks');
4395 -var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
4396 -
4397 -module.exports = function (name) {
4398 - if (!hasOwn(WellKnownSymbolsStore, name)) {
4399 - WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)
4400 - ? Symbol[name]
4401 - : createWellKnownSymbol('Symbol.' + name);
4402 - } return WellKnownSymbolsStore[name];
4403 -};
4404 -
4405 -
4406 -/***/ }),
4407 -
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__) => {
4413 -
4414 -"use strict";
4415 -
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");
4478 -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);
4481 -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
4482 -var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
4483 -
4484 -var CONSTRUCTOR = 'constructor';
4485 -var ITERATOR = 'Iterator';
4486 -var TO_STRING_TAG = wellKnownSymbol('toStringTag');
4487 -
4488 -var $TypeError = TypeError;
4489 -var NativeIterator = globalThis[ITERATOR];
4490 -
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({}); });
4497 -
4498 -var IteratorConstructor = function Iterator() {
4499 - anInstance(this, IteratorPrototype);
4500 - if (getPrototypeOf(this) === IteratorPrototype) throw new $TypeError('Abstract class Iterator not directly constructable');
4501 -};
4502 -
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 -};
4519 -
4520 -if (!hasOwn(IteratorPrototype, TO_STRING_TAG)) defineIteratorPrototypeAccessor(TO_STRING_TAG, ITERATOR);
4521 -
4522 -if (FORCED || !hasOwn(IteratorPrototype, CONSTRUCTOR) || IteratorPrototype[CONSTRUCTOR] === Object) {
4523 - defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
4524 -}
4525 -
4526 -IteratorConstructor.prototype = IteratorPrototype;
4527 -
4528 -// `Iterator` constructor
4529 -// https://tc39.es/ecma262/#sec-iterator
4530 -$({ global: true, constructor: true, forced: FORCED }, {
4531 - Iterator: IteratorConstructor
4532 -});
4533 -
4534 -
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);
4586 - }
4587 -
4588 - if (filterWithoutClosingOnEarlyError) return call(filterWithoutClosingOnEarlyError, this, predicate);
4589 -
4590 - return new IteratorProxy(getIteratorDirect(this), {
4591 - predicate: predicate
4592 - });
4593 - }
4594 -});
4595 -
4596 -
4597 -/***/ }),
4598 -
4599 -/***/ "../node_modules/core-js/modules/es.iterator.find.js":
4600 -/*!***********************************************************!*\
4601 - !*** ../node_modules/core-js/modules/es.iterator.find.js ***!
4602 - \***********************************************************/
4603 -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4604 -
4605 -"use strict";
4606 -
4607 -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");
4615 -
4616 -var findWithoutClosingOnEarlyError = iteratorHelperWithoutClosingOnEarlyError('find', TypeError);
4617 -
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 - }
4628 -
4629 - if (findWithoutClosingOnEarlyError) return call(findWithoutClosingOnEarlyError, this, predicate);
4630 -
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;
4636 - }
4637 -});
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 - }
4680 -});
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);
4716 -});
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 - }
4735 -});
4736 -
4737 -
4738 -/***/ }),
4739 -
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__) => {
4745 -
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 -
1231 +exports["default"] = _default;
4807 1232
4808 1233 /***/ })
4809 1234
4810 1235 },