PluginProbe
Elementor Website Builder – more than just a page builder / 3.6.7
Elementor Website Builder – more than just a page builder v3.6.7
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 -3862 4.0.7 → 3.6.7 View file →
@@ -1,142 +1,23 @@
1 -(self["webpackChunkelementorFrontend"] = self["webpackChunkelementorFrontend"] || []).push([["frontend-modules"],{
1 +/*! elementor - v3.6.7 - 03-07-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, module.exports.__esModule = true, module.exports["default"] = module.exports;
81 17
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 18 /***/ }),
99 19
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 20 /***/ "../assets/dev/js/editor/utils/is-instanceof.js":
140 21 /*!******************************************************!*\
141 22 !*** ../assets/dev/js/editor/utils/is-instanceof.js ***!
142 23 \******************************************************/
@@ -148,8 +29,9 @@
148 29 Object.defineProperty(exports, "__esModule", ({
149 30 value: true
150 31 }));
151 32 exports["default"] = void 0;
33 +
152 34 /**
153 35 * Some FileAPI objects such as FileList, DataTransferItem and DataTransferItemList has inconsistency with the retrieved
154 36 * object (from events, etc.) and the actual JavaScript object so a regular instanceof doesn't work. This function can
155 37 * check whether it's instanceof by using the objects constructor and prototype names.
@@ -159,15 +41,18 @@
159 41 * @return {boolean}
160 42 */
161 43 var _default = (object, constructors) => {
162 44 constructors = Array.isArray(constructors) ? constructors : [constructors];
45 +
163 46 for (const constructor of constructors) {
164 47 if (object.constructor.name === constructor.prototype[Symbol.toStringTag]) {
165 48 return true;
166 49 }
167 50 }
51 +
168 52 return false;
169 53 };
54 +
170 55 exports["default"] = _default;
171 56
172 57 /***/ }),
173 58
@@ -174,9 +59,9 @@
174 59 /***/ "../assets/dev/js/frontend/document.js":
175 60 /*!*********************************************!*\
176 61 !*** ../assets/dev/js/frontend/document.js ***!
177 62 \*********************************************/
178 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
63 +/***/ ((__unused_webpack_module, exports) => {
179 64
180 65 "use strict";
181 66
182 67
@@ -183,10 +68,9 @@
183 68 Object.defineProperty(exports, "__esModule", ({
184 69 value: true
185 70 }));
186 71 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");
72 +
189 73 class _default extends elementorModules.ViewModule {
190 74 getDefaultSettings() {
191 75 return {
192 76 selectors: {
@@ -197,8 +81,9 @@
197 81 editMode: 'elementor-edit-mode'
198 82 }
199 83 };
200 84 }
85 +
201 86 getDefaultElements() {
202 87 const selectors = this.getSettings('selectors');
203 88 return {
204 89 $elements: this.$element.find(selectors.elements).not(this.$element.find(selectors.nestedDocumentElements))
@@ -203,10 +88,12 @@
203 88 return {
204 89 $elements: this.$element.find(selectors.elements).not(this.$element.find(selectors.nestedDocumentElements))
205 90 };
206 91 }
92 +
207 93 getDocumentSettings(setting) {
208 94 let elementSettings;
95 +
209 96 if (this.isEdit) {
210 97 elementSettings = {};
211 98 const settings = elementor.settings.page.model;
212 99 jQuery.each(settings.getActiveControls(), controlKey => {
@@ -214,17 +101,21 @@
214 101 });
215 102 } else {
216 103 elementSettings = this.$element.data('elementor-settings') || {};
217 104 }
105 +
218 106 return this.getItems(elementSettings, setting);
219 107 }
108 +
220 109 runElementsHandlers() {
221 - this.elements.$elements.each((index, element) => setTimeout(() => elementorFrontend.elementsHandler.runReadyTrigger(element)));
110 + this.elements.$elements.each((index, element) => elementorFrontend.elementsHandler.runReadyTrigger(element));
222 111 }
112 +
223 113 onInit() {
224 114 this.$element = this.getSettings('$element');
225 115 super.onInit();
226 116 this.isEdit = this.$element.hasClass(this.getSettings('classes.editMode'));
117 +
227 118 if (this.isEdit) {
228 119 elementor.on('document:loaded', () => {
229 120 elementor.settings.page.model.on('change', this.onSettingsChange.bind(this));
230 121 });
@@ -231,342 +122,17 @@
231 122 } else {
232 123 this.runElementsHandlers();
233 124 }
234 125 }
126 +
235 127 onSettingsChange() {}
128 +
236 129 }
130 +
237 131 exports["default"] = _default;
238 132
239 133 /***/ }),
240 134
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 135 /***/ "../assets/dev/js/frontend/handlers/base-swiper.js":
570 136 /*!*********************************************************!*\
571 137 !*** ../assets/dev/js/frontend/handlers/base-swiper.js ***!
572 138 \*********************************************************/
@@ -575,23 +141,27 @@
575 141 "use strict";
576 142
577 143
578 144 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
145 +
579 146 Object.defineProperty(exports, "__esModule", ({
580 147 value: true
581 148 }));
582 149 exports["default"] = void 0;
150 +
583 151 var _base = _interopRequireDefault(__webpack_require__(/*! ./base */ "../assets/dev/js/frontend/handlers/base.js"));
152 +
584 153 class SwiperHandlerBase extends _base.default {
585 154 getInitialSlide() {
586 155 const editSettings = this.getEditSettings();
587 156 return editSettings.activeItemIndex ? editSettings.activeItemIndex - 1 : 0;
588 157 }
158 +
589 159 getSlidesCount() {
590 160 return this.elements.$slides.length;
591 - }
161 + } // This method live-handles the 'Pause On Hover' control's value being changed in the Editor Panel
592 162
593 - // This method live-handles the 'Pause On Hover' control's value being changed in the Editor Panel
163 +
594 164 togglePauseOnHover(toggleOn) {
595 165 if (toggleOn) {
596 166 this.elements.$swiperContainer.on({
597 167 mouseenter: () => {
@@ -604,22 +174,29 @@
604 174 } else {
605 175 this.elements.$swiperContainer.off('mouseenter mouseleave');
606 176 }
607 177 }
178 +
608 179 handleKenBurns() {
609 180 const settings = this.getSettings();
181 +
610 182 if (this.$activeImageBg) {
611 183 this.$activeImageBg.removeClass(settings.classes.kenBurnsActive);
612 184 }
185 +
613 186 this.activeItemIndex = this.swiper ? this.swiper.activeIndex : this.getInitialSlide();
187 +
614 188 if (this.swiper) {
615 189 this.$activeImageBg = jQuery(this.swiper.slides[this.activeItemIndex]).children('.' + settings.classes.slideBackground);
616 190 } else {
617 191 this.$activeImageBg = jQuery(this.elements.$slides[0]).children('.' + settings.classes.slideBackground);
618 192 }
193 +
619 194 this.$activeImageBg.addClass(settings.classes.kenBurnsActive);
620 195 }
196 +
621 197 }
198 +
622 199 exports["default"] = SwiperHandlerBase;
623 200
624 201 /***/ }),
625 202
@@ -626,18 +203,13 @@
626 203 /***/ "../assets/dev/js/frontend/handlers/base.js":
627 204 /*!**************************************************!*\
628 205 !*** ../assets/dev/js/frontend/handlers/base.js ***!
629 206 \**************************************************/
630 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
207 +/***/ ((module) => {
631 208
632 209 "use strict";
633 210
634 211
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 212 module.exports = elementorModules.ViewModule.extend({
641 213 $element: null,
642 214 editorListeners: null,
643 215 onElementChange: null,
@@ -643,105 +215,127 @@
643 215 onElementChange: null,
644 216 onEditSettingsChange: null,
645 217 onPageSettingsChange: null,
646 218 isEdit: null,
219 +
647 220 __construct(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 },
232 +
657 233 isActive() {
658 234 return true;
659 235 },
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 - },
236 +
666 237 findElement(selector) {
667 238 var $mainElement = this.$element;
668 239 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);
240 + return jQuery(this).closest('.elementor-element').is($mainElement);
671 241 });
672 242 },
243 +
673 244 getUniqueHandlerID(cid, $element) {
674 245 if (!cid) {
675 246 cid = this.getModelCID();
676 247 }
248 +
677 249 if (!$element) {
678 250 $element = this.$element;
679 251 }
252 +
680 253 return cid + $element.attr('data-element_type') + this.getConstructorID();
681 254 },
255 +
682 256 initEditorListeners() {
683 257 var self = this;
684 258 self.editorListeners = [{
685 259 event: 'element:destroy',
686 260 to: elementor.channels.data,
261 +
687 262 callback(removedModel) {
688 263 if (removedModel.cid !== self.getModelCID()) {
689 264 return;
690 265 }
266 +
691 267 self.onDestroy();
692 268 }
269 +
693 270 }];
271 +
694 272 if (self.onElementChange) {
695 273 const elementType = self.getWidgetType() || self.getElementType();
696 274 let eventName = 'change';
275 +
697 276 if ('global' !== elementType) {
698 277 eventName += ':' + elementType;
699 278 }
279 +
700 280 self.editorListeners.push({
701 281 event: eventName,
702 282 to: elementor.channels.editor,
283 +
703 284 callback(controlView, elementView) {
704 285 var elementViewHandlerID = self.getUniqueHandlerID(elementView.model.cid, elementView.$el);
286 +
705 287 if (elementViewHandlerID !== self.getUniqueHandlerID()) {
706 288 return;
707 289 }
290 +
708 291 self.onElementChange(controlView.model.get('name'), controlView, elementView);
709 292 }
293 +
710 294 });
711 295 }
296 +
712 297 if (self.onEditSettingsChange) {
713 298 self.editorListeners.push({
714 299 event: 'change:editSettings',
715 300 to: elementor.channels.editor,
301 +
716 302 callback(changedModel, view) {
717 303 if (view.model.cid !== self.getModelCID()) {
718 304 return;
719 305 }
720 - const propName = Object.keys(changedModel.changed)[0];
721 - self.onEditSettingsChange(propName, changedModel.changed[propName]);
306 +
307 + self.onEditSettingsChange(Object.keys(changedModel.changed)[0]);
722 308 }
309 +
723 310 });
724 311 }
312 +
725 313 ['page'].forEach(function (settingsType) {
726 314 var listenerMethodName = 'on' + settingsType[0].toUpperCase() + settingsType.slice(1) + 'SettingsChange';
315 +
727 316 if (self[listenerMethodName]) {
728 317 self.editorListeners.push({
729 318 event: 'change',
730 319 to: elementor.settings[settingsType].model,
320 +
731 321 callback(model) {
732 322 self[listenerMethodName](model.changed);
733 323 }
324 +
734 325 });
735 326 }
736 327 });
737 328 },
329 +
738 330 getEditorListeners() {
739 331 if (!this.editorListeners) {
740 332 this.initEditorListeners();
741 333 }
334 +
742 335 return this.editorListeners;
743 336 },
337 +
744 338 addEditorListeners() {
745 339 var uniqueHandlerID = this.getUniqueHandlerID();
746 340 this.getEditorListeners().forEach(function (listener) {
747 341 elementorFrontend.addListenerOnce(uniqueHandlerID, listener.event, listener.callback, listener.to);
@@ -746,8 +340,9 @@
746 340 this.getEditorListeners().forEach(function (listener) {
747 341 elementorFrontend.addListenerOnce(uniqueHandlerID, listener.event, listener.callback, listener.to);
748 342 });
749 343 },
344 +
750 345 removeEditorListeners() {
751 346 var uniqueHandlerID = this.getUniqueHandlerID();
752 347 this.getEditorListeners().forEach(function (listener) {
753 348 elementorFrontend.removeListeners(uniqueHandlerID, listener.event, null, listener.to);
@@ -752,49 +347,63 @@
752 347 this.getEditorListeners().forEach(function (listener) {
753 348 elementorFrontend.removeListeners(uniqueHandlerID, listener.event, null, listener.to);
754 349 });
755 350 },
351 +
756 352 getElementType() {
757 353 return this.$element.data('element_type');
758 354 },
355 +
759 356 getWidgetType() {
760 357 const widgetType = this.$element.data('widget_type');
358 +
761 359 if (!widgetType) {
762 360 return;
763 361 }
362 +
764 363 return widgetType.split('.')[0];
765 364 },
365 +
766 366 getID() {
767 367 return this.$element.data('id');
768 368 },
369 +
769 370 getModelCID() {
770 371 return this.$element.data('model-cid');
771 372 },
373 +
772 374 getElementSettings(setting) {
773 375 let elementSettings = {};
774 376 const modelCID = this.getModelCID();
377 +
775 378 if (this.isEdit && modelCID) {
776 379 const settings = elementorFrontend.config.elements.data[modelCID],
777 - attributes = settings.attributes;
380 + attributes = settings.attributes;
778 381 let type = attributes.widgetType || attributes.elType;
382 +
779 383 if (attributes.isInner) {
780 384 type = 'inner-' + type;
781 385 }
386 +
782 387 let settingsKeys = elementorFrontend.config.elements.keys[type];
388 +
783 389 if (!settingsKeys) {
784 390 settingsKeys = elementorFrontend.config.elements.keys[type] = [];
785 391 jQuery.each(settings.controls, (name, control) => {
786 - if (control.frontend_available || control.editor_available) {
392 + if (control.frontend_available) {
787 393 settingsKeys.push(name);
788 394 }
789 395 });
790 396 }
397 +
791 398 jQuery.each(settings.getActiveControls(), function (controlKey) {
792 399 if (-1 !== settingsKeys.indexOf(controlKey)) {
793 400 let value = attributes[controlKey];
401 +
794 402 if (value.toJSON) {
795 403 value = value.toJSON();
796 404 }
405 +
797 406 elementSettings[controlKey] = value;
798 407 }
799 408 });
800 409 } else {
@@ -799,141 +408,46 @@
799 408 });
800 409 } else {
801 410 elementSettings = this.$element.data('settings') || {};
802 411 }
412 +
803 413 return this.getItems(elementSettings, setting);
804 414 },
415 +
805 416 getEditSettings(setting) {
806 417 var attributes = {};
418 +
807 419 if (this.isEdit) {
808 420 attributes = elementorFrontend.config.elements.editSettings[this.getModelCID()].attributes;
809 421 }
422 +
810 423 return this.getItems(attributes, setting);
811 424 },
425 +
812 426 getCurrentDeviceSetting(settingKey) {
813 427 return elementorFrontend.getCurrentDeviceSetting(this.getElementSettings(), settingKey);
814 428 },
429 +
815 430 onInit() {
816 431 if (this.isActive(this.getSettings())) {
817 432 elementorModules.ViewModule.prototype.onInit.apply(this, arguments);
818 433 }
819 434 },
435 +
820 436 onDestroy() {
821 437 if (this.isEdit) {
822 438 this.removeEditorListeners();
823 439 }
440 +
824 441 if (this.unbindEvents) {
825 442 this.unbindEvents();
826 443 }
827 444 }
445 +
828 446 });
829 447
830 448 /***/ }),
831 449
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 450 /***/ "../assets/dev/js/frontend/modules.js":
937 451 /*!********************************************!*\
938 452 !*** ../assets/dev/js/frontend/modules.js ***!
939 453 \********************************************/
@@ -942,15 +456,19 @@
942 456 "use strict";
943 457
944 458
945 459 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
460 +
946 461 var _modules = _interopRequireDefault(__webpack_require__(/*! ../modules/modules */ "../assets/dev/js/modules/modules.js"));
462 +
947 463 var _document = _interopRequireDefault(__webpack_require__(/*! ./document */ "../assets/dev/js/frontend/document.js"));
464 +
948 465 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"));
466 +
950 467 var _base = _interopRequireDefault(__webpack_require__(/*! ./handlers/base */ "../assets/dev/js/frontend/handlers/base.js"));
468 +
951 469 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"));
470 +
953 471 _modules.default.frontend = {
954 472 Document: _document.default,
955 473 tools: {
956 474 StretchElement: _stretchElement.default
@@ -956,11 +474,9 @@
956 474 StretchElement: _stretchElement.default
957 475 },
958 476 handlers: {
959 477 Base: _base.default,
960 - StretchedElement: _stretchedElement.default,
961 - SwiperBase: _baseSwiper.default,
962 - CarouselBase: _baseCarousel.default
478 + SwiperBase: _baseSwiper.default
963 479 }
964 480 };
965 481
966 482 /***/ }),
@@ -980,99 +496,70 @@
980 496 element: null,
981 497 direction: elementorFrontend.config.is_rtl ? 'right' : 'left',
982 498 selectors: {
983 499 container: window
984 - },
985 - considerScrollbar: false,
986 - cssOutput: 'inline'
500 + }
987 501 };
988 502 },
503 +
989 504 getDefaultElements() {
990 505 return {
991 506 $element: jQuery(this.getSettings('element'))
992 507 };
993 508 },
509 +
994 510 stretch() {
995 - const settings = this.getSettings();
996 - let $container;
511 + var containerSelector = this.getSettings('selectors.container'),
512 + $container;
513 +
997 514 try {
998 - $container = jQuery(settings.selectors.container);
999 - // eslint-disable-next-line no-empty
515 + $container = jQuery(containerSelector);
1000 516 } catch (e) {}
517 +
1001 518 if (!$container || !$container.length) {
1002 519 $container = jQuery(this.getDefaultSettings().selectors.container);
1003 520 }
521 +
1004 522 this.reset();
1005 523 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) {
524 + containerWidth = $container.innerWidth(),
525 + elementOffset = $element.offset().left,
526 + isFixed = 'fixed' === $element.css('position'),
527 + correctOffset = isFixed ? 0 : elementOffset;
528 +
529 + if (window !== $container[0]) {
1012 530 var containerOffset = $container.offset().left;
531 +
1013 532 if (isFixed) {
1014 533 correctOffset = containerOffset;
1015 534 }
535 +
1016 536 if (elementOffset > containerOffset) {
1017 537 correctOffset = elementOffset - containerOffset;
1018 538 }
1019 539 }
1020 - if (settings.considerScrollbar && isContainerFullScreen) {
1021 - const scrollbarWidth = window.innerWidth - containerWidth;
1022 - correctOffset -= scrollbarWidth;
1023 - }
540 +
1024 541 if (!isFixed) {
1025 542 if (elementorFrontend.config.is_rtl) {
1026 543 correctOffset = containerWidth - ($element.outerWidth() + correctOffset);
1027 544 }
545 +
1028 546 correctOffset = -correctOffset;
1029 547 }
1030 548
1031 - // Consider margin
1032 - if (settings.margin) {
1033 - correctOffset += settings.margin;
1034 - }
1035 549 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 - }
550 + css.width = containerWidth + 'px';
551 + css[this.getSettings('direction')] = correctOffset + 'px';
1046 552 $element.css(css);
1047 553 },
554 +
1048 555 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 - }
556 + var css = {};
1056 557 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 - });
558 + css[this.getSettings('direction')] = '';
559 + this.elements.$element.css(css);
1074 560 }
561 +
1075 562 });
1076 563
1077 564 /***/ }),
1078 565
@@ -1085,19 +572,22 @@
1085 572 "use strict";
1086 573
1087 574
1088 575 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
576 +
1089 577 Object.defineProperty(exports, "__esModule", ({
1090 578 value: true
1091 579 }));
1092 580 exports["default"] = void 0;
581 +
1093 582 var _instanceType = _interopRequireDefault(__webpack_require__(/*! ./instance-type */ "../assets/dev/js/modules/imports/instance-type.js"));
583 +
1094 584 var _isInstanceof = _interopRequireDefault(__webpack_require__(/*! ../../editor/utils/is-instanceof */ "../assets/dev/js/editor/utils/is-instanceof.js"));
585 +
1095 586 class ArgsObject extends _instanceType.default {
1096 587 static getInstanceType() {
1097 588 return 'ArgsObject';
1098 589 }
1099 -
1100 590 /**
1101 591 * Function constructor().
1102 592 *
1103 593 * Create ArgsObject.
@@ -1103,13 +593,14 @@
1103 593 * Create ArgsObject.
1104 594 *
1105 595 * @param {{}} args
1106 596 */
597 +
598 +
1107 599 constructor(args) {
1108 600 super();
1109 601 this.args = args;
1110 602 }
1111 -
1112 603 /**
1113 604 * Function requireArgument().
1114 605 *
1115 606 * Validate property in args.
@@ -1117,15 +608,19 @@
1117 608 * @param {string} property
1118 609 * @param {{}} args
1119 610 *
1120 611 * @throws {Error}
612 + *
1121 613 */
1122 - requireArgument(property, args = this.args) {
1123 - if (!Object.prototype.hasOwnProperty.call(args, property)) {
614 +
615 +
616 + requireArgument(property) {
617 + let args = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.args;
618 +
619 + if (!args.hasOwnProperty(property)) {
1124 620 throw Error(`${property} is required.`);
1125 621 }
1126 622 }
1127 -
1128 623 /**
1129 624 * Function requireArgumentType().
1130 625 *
1131 626 * Validate property in args using `type === typeof(args.whatever)`.
@@ -1134,16 +629,20 @@
1134 629 * @param {string} type
1135 630 * @param {{}} args
1136 631 *
1137 632 * @throws {Error}
633 + *
1138 634 */
1139 - requireArgumentType(property, type, args = this.args) {
635 +
636 +
637 + requireArgumentType(property, type) {
638 + let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args;
1140 639 this.requireArgument(property, args);
640 +
1141 641 if (typeof args[property] !== type) {
1142 642 throw Error(`${property} invalid type: ${type}.`);
1143 643 }
1144 644 }
1145 -
1146 645 /**
1147 646 * Function requireArgumentInstance().
1148 647 *
1149 648 * Validate property in args using `args.whatever instanceof instance`.
@@ -1152,16 +651,20 @@
1152 651 * @param {*} instance
1153 652 * @param {{}} args
1154 653 *
1155 654 * @throws {Error}
655 + *
1156 656 */
1157 - requireArgumentInstance(property, instance, args = this.args) {
657 +
658 +
659 + requireArgumentInstance(property, instance) {
660 + let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args;
1158 661 this.requireArgument(property, args);
662 +
1159 663 if (!(args[property] instanceof instance) && !(0, _isInstanceof.default)(args[property], instance)) {
1160 664 throw Error(`${property} invalid instance.`);
1161 665 }
1162 666 }
1163 -
1164 667 /**
1165 668 * Function requireArgumentConstructor().
1166 669 *
1167 670 * Validate property in args using `type === args.whatever.constructor`.
@@ -1170,19 +673,24 @@
1170 673 * @param {*} type
1171 674 * @param {{}} args
1172 675 *
1173 676 * @throws {Error}
677 + *
1174 678 */
1175 - requireArgumentConstructor(property, type, args = this.args) {
1176 - this.requireArgument(property, args);
1177 679
1178 - // Note: Converting the constructor to string in order to avoid equation issues
680 +
681 + requireArgumentConstructor(property, type) {
682 + let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args;
683 + this.requireArgument(property, args); // Note: Converting the constructor to string in order to avoid equation issues
1179 684 // due to different memory addresses between iframes (window.Object !== window.top.Object).
685 +
1180 686 if (args[property].constructor.toString() !== type.prototype.constructor.toString()) {
1181 687 throw Error(`${property} invalid constructor type.`);
1182 688 }
1183 689 }
690 +
1184 691 }
692 +
1185 693 exports["default"] = ArgsObject;
1186 694
1187 695 /***/ }),
1188 696
@@ -1198,30 +706,29 @@
1198 706 Object.defineProperty(exports, "__esModule", ({
1199 707 value: true
1200 708 }));
1201 709 exports["default"] = exports.ForceMethodImplementation = void 0;
710 +
1202 711 // TODO: Wrong location used as `elementorModules.ForceMethodImplementation(); should be` `elementorUtils.forceMethodImplementation()`;
1203 -
1204 712 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 - }
713 + constructor() {
714 + let info = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
715 + super(`${info.isStatic ? 'static ' : ''}${info.fullName}() should be implemented, please provide '${info.functionName || info.fullName}' functionality.`);
1213 716 Error.captureStackTrace(this, ForceMethodImplementation);
1214 717 }
718 +
1215 719 }
720 +
1216 721 exports.ForceMethodImplementation = ForceMethodImplementation;
1217 -var _default = args => {
722 +
723 +var _default = () => {
1218 724 const stack = Error().stack,
1219 - caller = stack.split('\n')[2].trim(),
1220 - callerName = caller.startsWith('at new') ? 'constructor' : caller.split(' ')[1],
1221 - info = {};
725 + caller = stack.split('\n')[2].trim(),
726 + callerName = caller.startsWith('at new') ? 'constructor' : caller.split(' ')[1],
727 + info = {};
1222 728 info.functionName = callerName;
1223 729 info.fullName = callerName;
730 +
1224 731 if (info.functionName.includes('.')) {
1225 732 const parts = info.functionName.split('.');
1226 733 info.className = parts[0];
1227 734 info.functionName = parts[1];
@@ -1227,10 +734,12 @@
1227 734 info.functionName = parts[1];
1228 735 } else {
1229 736 info.isStatic = true;
1230 737 }
1231 - throw new ForceMethodImplementation(info, args);
738 +
739 + throw new ForceMethodImplementation(info);
1232 740 };
741 +
1233 742 exports["default"] = _default;
1234 743
1235 744 /***/ }),
1236 745
@@ -1237,9 +746,9 @@
1237 746 /***/ "../assets/dev/js/modules/imports/instance-type.js":
1238 747 /*!*********************************************************!*\
1239 748 !*** ../assets/dev/js/modules/imports/instance-type.js ***!
1240 749 \*********************************************************/
1241 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
750 +/***/ ((__unused_webpack_module, exports) => {
1242 751
1243 752 "use strict";
1244 753
1245 754
@@ -1246,11 +755,9 @@
1246 755 Object.defineProperty(exports, "__esModule", ({
1247 756 value: true
1248 757 }));
1249 758 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");
759 +
1253 760 class InstanceType {
1254 761 static [Symbol.hasInstance](target) {
1255 762 /**
1256 763 * This is function extending being called each time JS uses instanceOf, since babel use it each time it create new class
@@ -1256,50 +763,61 @@
1256 763 * This is function extending being called each time JS uses instanceOf, since babel use it each time it create new class
1257 764 * its give's opportunity to mange capabilities of instanceOf operator.
1258 765 * saving current class each time will give option later to handle instanceOf manually.
1259 766 */
1260 - let result = super[Symbol.hasInstance](target);
767 + let result = super[Symbol.hasInstance](target); // Act normal when validate a class, which does not have instance type.
1261 768
1262 - // Act normal when validate a class, which does not have instance type.
1263 769 if (target && !target.constructor.getInstanceType) {
1264 770 return result;
1265 771 }
772 +
1266 773 if (target) {
1267 774 if (!target.instanceTypes) {
1268 775 target.instanceTypes = [];
1269 776 }
777 +
1270 778 if (!result) {
1271 779 if (this.getInstanceType() === target.constructor.getInstanceType()) {
1272 780 result = true;
1273 781 }
1274 782 }
783 +
1275 784 if (result) {
1276 785 const name = this.getInstanceType === InstanceType.getInstanceType ? 'BaseInstanceType' : this.getInstanceType();
786 +
1277 787 if (-1 === target.instanceTypes.indexOf(name)) {
1278 788 target.instanceTypes.push(name);
1279 789 }
1280 790 }
1281 791 }
792 +
1282 793 if (!result && target) {
1283 794 // Check if the given 'target', is instance of known types.
1284 795 result = target.instanceTypes && Array.isArray(target.instanceTypes) && -1 !== target.instanceTypes.indexOf(this.getInstanceType());
1285 796 }
797 +
1286 798 return result;
1287 799 }
1288 - static getInstanceType() {
1289 - elementorModules.ForceMethodImplementation();
1290 - }
800 +
1291 801 constructor() {
1292 802 // Since anonymous classes sometimes do not get validated by babel, do it manually.
1293 803 let target = new.target;
1294 804 const prototypes = [];
805 +
1295 806 while (target.__proto__ && target.__proto__.name) {
1296 807 prototypes.push(target.__proto__);
1297 808 target = target.__proto__;
1298 809 }
810 +
1299 811 prototypes.reverse().forEach(proto => this instanceof proto);
1300 812 }
813 +
814 + static getInstanceType() {
815 + elementorModules.ForceMethodImplementation();
816 + }
817 +
1301 818 }
819 +
1302 820 exports["default"] = InstanceType;
1303 821
1304 822 /***/ }),
1305 823
@@ -1306,99 +824,119 @@
1306 824 /***/ "../assets/dev/js/modules/imports/module.js":
1307 825 /*!**************************************************!*\
1308 826 !*** ../assets/dev/js/modules/imports/module.js ***!
1309 827 \**************************************************/
1310 -/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
828 +/***/ ((module) => {
1311 829
1312 830 "use strict";
1313 831
1314 832
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 833 const Module = function () {
1320 834 const $ = jQuery,
1321 - instanceParams = arguments,
1322 - self = this,
1323 - events = {};
835 + instanceParams = arguments,
836 + self = this,
837 + events = {};
1324 838 let settings;
839 +
1325 840 const ensureClosureMethods = function () {
1326 841 $.each(self, function (methodName) {
1327 842 const oldMethod = self[methodName];
843 +
1328 844 if ('function' !== typeof oldMethod) {
1329 845 return;
1330 846 }
847 +
1331 848 self[methodName] = function () {
1332 849 return oldMethod.apply(self, arguments);
1333 850 };
1334 851 });
1335 852 };
853 +
1336 854 const initSettings = function () {
1337 855 settings = self.getDefaultSettings();
1338 856 const instanceSettings = instanceParams[0];
857 +
1339 858 if (instanceSettings) {
1340 859 $.extend(true, settings, instanceSettings);
1341 860 }
1342 861 };
862 +
1343 863 const init = function () {
1344 864 self.__construct.apply(self, instanceParams);
865 +
1345 866 ensureClosureMethods();
1346 867 initSettings();
1347 868 self.trigger('init');
1348 869 };
870 +
1349 871 this.getItems = function (items, itemKey) {
1350 872 if (itemKey) {
1351 873 const keyStack = itemKey.split('.'),
1352 - currentKey = keyStack.splice(0, 1);
874 + currentKey = keyStack.splice(0, 1);
875 +
1353 876 if (!keyStack.length) {
1354 877 return items[currentKey];
1355 878 }
879 +
1356 880 if (!items[currentKey]) {
1357 881 return;
1358 882 }
883 +
1359 884 return this.getItems(items[currentKey], keyStack.join('.'));
1360 885 }
886 +
1361 887 return items;
1362 888 };
889 +
1363 890 this.getSettings = function (setting) {
1364 891 return this.getItems(settings, setting);
1365 892 };
893 +
1366 894 this.setSettings = function (settingKey, value, settingsContainer) {
1367 895 if (!settingsContainer) {
1368 896 settingsContainer = settings;
1369 897 }
898 +
1370 899 if ('object' === typeof settingKey) {
1371 900 $.extend(settingsContainer, settingKey);
1372 901 return self;
1373 902 }
903 +
1374 904 const keyStack = settingKey.split('.'),
1375 - currentKey = keyStack.splice(0, 1);
905 + currentKey = keyStack.splice(0, 1);
906 +
1376 907 if (!keyStack.length) {
1377 908 settingsContainer[currentKey] = value;
1378 909 return self;
1379 910 }
911 +
1380 912 if (!settingsContainer[currentKey]) {
1381 913 settingsContainer[currentKey] = {};
1382 914 }
915 +
1383 916 return self.setSettings(keyStack.join('.'), value, settingsContainer[currentKey]);
1384 917 };
918 +
1385 919 this.getErrorMessage = function (type, functionName) {
1386 920 let message;
921 +
1387 922 switch (type) {
1388 923 case 'forceMethodImplementation':
1389 924 message = `The method '${functionName}' must to be implemented in the inheritor child.`;
1390 925 break;
926 +
1391 927 default:
1392 928 message = 'An error occurs';
1393 929 }
930 +
1394 931 return message;
1395 - };
932 + }; // TODO: This function should be deleted ?.
1396 933
1397 - // TODO: This function should be deleted ?.
934 +
1398 935 this.forceMethodImplementation = function (functionName) {
1399 936 throw new Error(this.getErrorMessage('forceMethodImplementation', functionName));
1400 937 };
938 +
1401 939 this.on = function (eventName, callback) {
1402 940 if ('object' === typeof eventName) {
1403 941 $.each(eventName, function (singleEventName) {
1404 942 self.on(singleEventName, this);
@@ -1404,64 +942,82 @@
1404 942 self.on(singleEventName, this);
1405 943 });
1406 944 return self;
1407 945 }
946 +
1408 947 const eventNames = eventName.split(' ');
1409 948 eventNames.forEach(function (singleEventName) {
1410 949 if (!events[singleEventName]) {
1411 950 events[singleEventName] = [];
1412 951 }
952 +
1413 953 events[singleEventName].push(callback);
1414 954 });
1415 955 return self;
1416 956 };
957 +
1417 958 this.off = function (eventName, callback) {
1418 959 if (!events[eventName]) {
1419 960 return self;
1420 961 }
962 +
1421 963 if (!callback) {
1422 964 delete events[eventName];
1423 965 return self;
1424 966 }
967 +
1425 968 const callbackIndex = events[eventName].indexOf(callback);
969 +
1426 970 if (-1 !== callbackIndex) {
1427 - delete events[eventName][callbackIndex];
971 + delete events[eventName][callbackIndex]; // Reset array index (for next off on same event).
1428 972
1429 - // Reset array index (for next off on same event).
1430 973 events[eventName] = events[eventName].filter(val => val);
1431 974 }
975 +
1432 976 return self;
1433 977 };
978 +
1434 979 this.trigger = function (eventName) {
1435 980 const methodName = 'on' + eventName[0].toUpperCase() + eventName.slice(1),
1436 - params = Array.prototype.slice.call(arguments, 1);
981 + params = Array.prototype.slice.call(arguments, 1);
982 +
1437 983 if (self[methodName]) {
1438 984 self[methodName].apply(self, params);
1439 985 }
986 +
1440 987 const callbacks = events[eventName];
988 +
1441 989 if (!callbacks) {
1442 990 return self;
1443 991 }
992 +
1444 993 $.each(callbacks, function (index, callback) {
1445 994 callback.apply(self, params);
1446 995 });
1447 996 return self;
1448 997 };
998 +
1449 999 init();
1450 1000 };
1001 +
1451 1002 Module.prototype.__construct = function () {};
1003 +
1452 1004 Module.prototype.getDefaultSettings = function () {
1453 1005 return {};
1454 1006 };
1007 +
1455 1008 Module.prototype.getConstructorID = function () {
1456 1009 return this.constructor.name;
1457 1010 };
1011 +
1458 1012 Module.extend = function (properties) {
1459 1013 const $ = jQuery,
1460 - parent = this;
1014 + parent = this;
1015 +
1461 1016 const child = function () {
1462 1017 return parent.apply(this, arguments);
1463 1018 };
1019 +
1464 1020 $.extend(child, parent);
1465 1021 child.prototype = Object.create($.extend({}, parent.prototype, properties));
1466 1022 child.prototype.constructor = child;
1467 1023 child.__super__ = parent.prototype;
@@ -1466,8 +1022,9 @@
1466 1022 child.prototype.constructor = child;
1467 1023 child.__super__ = parent.prototype;
1468 1024 return child;
1469 1025 };
1026 +
1470 1027 module.exports = Module;
1471 1028
1472 1029 /***/ }),
1473 1030
@@ -1474,21 +1031,18 @@
1474 1031 /***/ "../assets/dev/js/modules/imports/utils/masonry.js":
1475 1032 /*!*********************************************************!*\
1476 1033 !*** ../assets/dev/js/modules/imports/utils/masonry.js ***!
1477 1034 \*********************************************************/
1478 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1035 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1479 1036
1480 1037 "use strict";
1481 1038
1482 1039
1483 1040 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");
1041 +
1489 1042 var _viewModule = _interopRequireDefault(__webpack_require__(/*! ../view-module */ "../assets/dev/js/modules/imports/view-module.js"));
1490 -var _default = exports["default"] = _viewModule.default.extend({
1043 +
1044 +module.exports = _viewModule.default.extend({
1491 1045 getDefaultSettings() {
1492 1046 return {
1493 1047 container: null,
1494 1048 items: null,
@@ -1495,8 +1049,9 @@
1495 1049 columnsCount: 3,
1496 1050 verticalSpaceBetween: 30
1497 1051 };
1498 1052 },
1053 +
1499 1054 getDefaultElements() {
1500 1055 return {
1501 1056 $container: jQuery(this.getSettings('container')),
1502 1057 $items: jQuery(this.getSettings('items'))
@@ -1501,22 +1056,24 @@
1501 1056 $container: jQuery(this.getSettings('container')),
1502 1057 $items: jQuery(this.getSettings('items'))
1503 1058 };
1504 1059 },
1060 +
1505 1061 run() {
1506 1062 var heights = [],
1507 - distanceFromTop = this.elements.$container.position().top,
1508 - settings = this.getSettings(),
1509 - columnsCount = settings.columnsCount;
1063 + distanceFromTop = this.elements.$container.position().top,
1064 + settings = this.getSettings(),
1065 + columnsCount = settings.columnsCount;
1510 1066 distanceFromTop += parseInt(this.elements.$container.css('margin-top'), 10);
1511 1067 this.elements.$items.each(function (index) {
1512 1068 var row = Math.floor(index / columnsCount),
1513 - $item = jQuery(this),
1514 - itemHeight = $item[0].getBoundingClientRect().height + settings.verticalSpaceBetween;
1069 + $item = jQuery(this),
1070 + itemHeight = $item[0].getBoundingClientRect().height + settings.verticalSpaceBetween;
1071 +
1515 1072 if (row) {
1516 1073 var itemPosition = $item.position(),
1517 - indexAtRow = index % columnsCount,
1518 - pullHeight = itemPosition.top - distanceFromTop - heights[indexAtRow];
1074 + indexAtRow = index % columnsCount,
1075 + pullHeight = itemPosition.top - distanceFromTop - heights[indexAtRow];
1519 1076 pullHeight -= parseInt($item.css('margin-top'), 10);
1520 1077 pullHeight *= -1;
1521 1078 $item.css('margin-top', pullHeight + 'px');
1522 1079 heights[indexAtRow] += itemHeight;
@@ -1524,8 +1081,9 @@
1524 1081 heights.push(itemHeight);
1525 1082 }
1526 1083 });
1527 1084 }
1085 +
1528 1086 });
1529 1087
1530 1088 /***/ }),
1531 1089
@@ -1532,9 +1090,9 @@
1532 1090 /***/ "../assets/dev/js/modules/imports/utils/scroll.js":
1533 1091 /*!********************************************************!*\
1534 1092 !*** ../assets/dev/js/modules/imports/utils/scroll.js ***!
1535 1093 \********************************************************/
1536 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1094 +/***/ ((__unused_webpack_module, exports) => {
1537 1095
1538 1096 "use strict";
1539 1097
1540 1098
@@ -1541,9 +1099,9 @@
1541 1099 Object.defineProperty(exports, "__esModule", ({
1542 1100 value: true
1543 1101 }));
1544 1102 exports["default"] = void 0;
1545 -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js");
1103 +
1546 1104 // Moved from elementor pro: 'assets/dev/js/frontend/utils'
1547 1105 class Scroll {
1548 1106 /**
1549 1107 * @param {Object} obj
@@ -1552,34 +1110,39 @@
1552 1110 * @param {string} obj.offset - Offset between the element intersection points and the viewport, written like in CSS: '-50% 0 -25%'
1553 1111 * @param {HTMLElement} obj.root - The element that the events will be relative to, if 'null' will be relative to the viewport
1554 1112 */
1555 1113 static scrollObserver(obj) {
1556 - let lastScrollY = 0;
1114 + let lastScrollY = 0; // Generating threshholds points along the animation height
1115 + // More threshholds points = more trigger points of the callback
1557 1116
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 = [];
1117 + const buildThreshholds = function () {
1118 + let sensitivityPercentage = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
1119 + const threshholds = [];
1120 +
1562 1121 if (sensitivityPercentage > 0 && sensitivityPercentage <= 100) {
1563 1122 const increment = 100 / sensitivityPercentage;
1123 +
1564 1124 for (let i = 0; i <= 100; i += increment) {
1565 - thresholds.push(i / 100);
1125 + threshholds.push(i / 100);
1566 1126 }
1567 1127 } else {
1568 - thresholds.push(0);
1128 + threshholds.push(0);
1569 1129 }
1570 - return thresholds;
1130 +
1131 + return threshholds;
1571 1132 };
1133 +
1572 1134 const options = {
1573 1135 root: obj.root || null,
1574 1136 rootMargin: obj.offset || '0px',
1575 - threshold: buildThresholds(obj.sensitivity)
1137 + threshold: buildThreshholds(obj.sensitivity)
1576 1138 };
1139 +
1577 1140 function handleIntersect(entries) {
1578 1141 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)));
1142 + isInViewport = entries[0].isIntersecting,
1143 + intersectionScrollDirection = currentScrollY < lastScrollY ? 'down' : 'up',
1144 + scrollPercentage = Math.abs(parseFloat((entries[0].intersectionRatio * 100).toFixed(2)));
1582 1145 obj.callback({
1583 1146 sensitivity: obj.sensitivity,
1584 1147 isInViewport,
1585 1148 scrollPercentage,
@@ -1586,11 +1149,11 @@
1586 1149 intersectionScrollDirection
1587 1150 });
1588 1151 lastScrollY = currentScrollY;
1589 1152 }
1153 +
1590 1154 return new IntersectionObserver(handleIntersect, options);
1591 1155 }
1592 -
1593 1156 /**
1594 1157 * @param {jQuery.Element} $element
1595 1158 * @param {Object} offsetObj
1596 1159 * @param {number} offsetObj.start - Offset start value in percentages
@@ -1595,22 +1158,24 @@
1595 1158 * @param {Object} offsetObj
1596 1159 * @param {number} offsetObj.start - Offset start value in percentages
1597 1160 * @param {number} offsetObj.end - Offset end value in percentages
1598 1161 */
1599 - static getElementViewportPercentage($element, offsetObj = {}) {
1162 +
1163 +
1164 + static getElementViewportPercentage($element) {
1165 + let offsetObj = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
1600 1166 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));
1167 + offsetStart = offsetObj.start || 0,
1168 + offsetEnd = offsetObj.end || 0,
1169 + windowStartOffset = window.innerHeight * offsetStart / 100,
1170 + windowEndOffset = window.innerHeight * offsetEnd / 100,
1171 + y1 = elementOffset.top - window.innerHeight,
1172 + y2 = elementOffset.top + windowStartOffset + $element.height(),
1173 + startPosition = 0 - y1 + windowStartOffset,
1174 + endPosition = y2 - y1 + windowEndOffset,
1175 + percent = Math.max(0, Math.min(startPosition / endPosition, 1));
1610 1176 return parseFloat((percent * 100).toFixed(2));
1611 1177 }
1612 -
1613 1178 /**
1614 1179 * @param {Object} offsetObj
1615 1180 * @param {number} offsetObj.start - Offset start value in percentages
1616 1181 * @param {number} offsetObj.end - Offset end value in percentages
@@ -1615,18 +1180,24 @@
1615 1180 * @param {number} offsetObj.start - Offset start value in percentages
1616 1181 * @param {number} offsetObj.end - Offset end value in percentages
1617 1182 * @param {number} limitPageHeight - Will limit the page height calculation
1618 1183 */
1619 - static getPageScrollPercentage(offsetObj = {}, limitPageHeight) {
1184 +
1185 +
1186 + static getPageScrollPercentage() {
1187 + let offsetObj = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1188 + let limitPageHeight = arguments.length > 1 ? arguments[1] : undefined;
1620 1189 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;
1190 + offsetEnd = offsetObj.end || 0,
1191 + initialPageHeight = limitPageHeight || document.documentElement.scrollHeight - document.documentElement.clientHeight,
1192 + heightOffset = initialPageHeight * offsetStart / 100,
1193 + pageRange = initialPageHeight + heightOffset + initialPageHeight * offsetEnd / 100,
1194 + scrollPos = document.documentElement.scrollTop + document.body.scrollTop + heightOffset;
1626 1195 return scrollPos / pageRange * 100;
1627 1196 }
1197 +
1628 1198 }
1199 +
1629 1200 exports["default"] = Scroll;
1630 1201
1631 1202 /***/ }),
1632 1203
@@ -1633,32 +1204,35 @@
1633 1204 /***/ "../assets/dev/js/modules/imports/view-module.js":
1634 1205 /*!*******************************************************!*\
1635 1206 !*** ../assets/dev/js/modules/imports/view-module.js ***!
1636 1207 \*******************************************************/
1637 -/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1208 +/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1638 1209
1639 1210 "use strict";
1640 1211
1641 1212
1642 1213 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;
1214 +
1647 1215 var _module = _interopRequireDefault(__webpack_require__(/*! ./module */ "../assets/dev/js/modules/imports/module.js"));
1648 -var _default = exports["default"] = _module.default.extend({
1216 +
1217 +module.exports = _module.default.extend({
1649 1218 elements: null,
1219 +
1650 1220 getDefaultElements() {
1651 1221 return {};
1652 1222 },
1223 +
1653 1224 bindEvents() {},
1225 +
1654 1226 onInit() {
1655 1227 this.initElements();
1656 1228 this.bindEvents();
1657 1229 },
1230 +
1658 1231 initElements() {
1659 1232 this.elements = this.getDefaultElements();
1660 1233 }
1234 +
1661 1235 });
1662 1236
1663 1237 /***/ }),
1664 1238
@@ -1671,21 +1245,27 @@
1671 1245 "use strict";
1672 1246
1673 1247
1674 1248 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1249 +
1675 1250 Object.defineProperty(exports, "__esModule", ({
1676 1251 value: true
1677 1252 }));
1678 1253 exports["default"] = void 0;
1254 +
1679 1255 var _module = _interopRequireDefault(__webpack_require__(/*! ./imports/module */ "../assets/dev/js/modules/imports/module.js"));
1256 +
1680 1257 var _viewModule = _interopRequireDefault(__webpack_require__(/*! ./imports/view-module */ "../assets/dev/js/modules/imports/view-module.js"));
1258 +
1681 1259 var _argsObject = _interopRequireDefault(__webpack_require__(/*! ./imports/args-object */ "../assets/dev/js/modules/imports/args-object.js"));
1260 +
1682 1261 var _masonry = _interopRequireDefault(__webpack_require__(/*! ./imports/utils/masonry */ "../assets/dev/js/modules/imports/utils/masonry.js"));
1262 +
1683 1263 var _scroll = _interopRequireDefault(__webpack_require__(/*! ./imports/utils/scroll */ "../assets/dev/js/modules/imports/utils/scroll.js"));
1264 +
1684 1265 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 = {
1266 +
1267 +var _default = window.elementorModules = {
1688 1268 Module: _module.default,
1689 1269 ViewModule: _viewModule.default,
1690 1270 ArgsObject: _argsObject.default,
1691 1271 ForceMethodImplementation: _forceMethodImplementation.default,
@@ -1691,3120 +1271,12 @@
1691 1271 ForceMethodImplementation: _forceMethodImplementation.default,
1692 1272 utils: {
1693 1273 Masonry: _masonry.default,
1694 1274 Scroll: _scroll.default
1695 - },
1696 - importExport: {
1697 - createGetInitialState: _templateRegistryHelpers.createGetInitialState,
1698 - customizationDialogsRegistry: _customizationDialogs.customizationDialogsRegistry
1699 1275 }
1700 1276 };
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 1277
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 -
1278 +exports["default"] = _default;
4807 1279
4808 1280 /***/ })
4809 1281
4810 1282 },