PluginProbe
Elementor Website Builder – more than just a page builder / 3.19.2
Elementor Website Builder – more than just a page builder v3.19.2
4.3.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 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / assets / js / frontend-modules.js

frontend-modules.js in Elementor Website Builder – more than just a page builder 3.19.2, at assets/js/frontend-modules.js

4,646 lines 176.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*! elementor - v3.19.0 - 07-02-2024 */
2 (self["webpackChunkelementor"] = self["webpackChunkelementor"] || []).push([["frontend-modules"],{
3
4 /***/ "../assets/dev/js/editor/utils/is-instanceof.js":
5 /*!******************************************************!*\
6 !*** ../assets/dev/js/editor/utils/is-instanceof.js ***!
7 \******************************************************/
8 /***/ ((__unused_webpack_module, exports) => {
9
10 "use strict";
11
12
13 Object.defineProperty(exports, "__esModule", ({
14 value: true
15 }));
16 exports["default"] = void 0;
17 /**
18 * Some FileAPI objects such as FileList, DataTransferItem and DataTransferItemList has inconsistency with the retrieved
19 * object (from events, etc.) and the actual JavaScript object so a regular instanceof doesn't work. This function can
20 * check whether it's instanceof by using the objects constructor and prototype names.
21 *
22 * @param object
23 * @param constructors
24 * @return {boolean}
25 */
26 var _default = (object, constructors) => {
27 constructors = Array.isArray(constructors) ? constructors : [constructors];
28 for (const constructor of constructors) {
29 if (object.constructor.name === constructor.prototype[Symbol.toStringTag]) {
30 return true;
31 }
32 }
33 return false;
34 };
35 exports["default"] = _default;
36
37 /***/ }),
38
39 /***/ "../assets/dev/js/frontend/document.js":
40 /*!*********************************************!*\
41 !*** ../assets/dev/js/frontend/document.js ***!
42 \*********************************************/
43 /***/ ((__unused_webpack_module, exports) => {
44
45 "use strict";
46
47
48 Object.defineProperty(exports, "__esModule", ({
49 value: true
50 }));
51 exports["default"] = void 0;
52 class _default extends elementorModules.ViewModule {
53 getDefaultSettings() {
54 return {
55 selectors: {
56 elements: '.elementor-element',
57 nestedDocumentElements: '.elementor .elementor-element'
58 },
59 classes: {
60 editMode: 'elementor-edit-mode'
61 }
62 };
63 }
64 getDefaultElements() {
65 const selectors = this.getSettings('selectors');
66 return {
67 $elements: this.$element.find(selectors.elements).not(this.$element.find(selectors.nestedDocumentElements))
68 };
69 }
70 getDocumentSettings(setting) {
71 let elementSettings;
72 if (this.isEdit) {
73 elementSettings = {};
74 const settings = elementor.settings.page.model;
75 jQuery.each(settings.getActiveControls(), controlKey => {
76 elementSettings[controlKey] = settings.attributes[controlKey];
77 });
78 } else {
79 elementSettings = this.$element.data('elementor-settings') || {};
80 }
81 return this.getItems(elementSettings, setting);
82 }
83 runElementsHandlers() {
84 this.elements.$elements.each((index, element) => setTimeout(() => elementorFrontend.elementsHandler.runReadyTrigger(element)));
85 }
86 onInit() {
87 this.$element = this.getSettings('$element');
88 super.onInit();
89 this.isEdit = this.$element.hasClass(this.getSettings('classes.editMode'));
90 if (this.isEdit) {
91 elementor.on('document:loaded', () => {
92 elementor.settings.page.model.on('change', this.onSettingsChange.bind(this));
93 });
94 } else {
95 this.runElementsHandlers();
96 }
97 }
98 onSettingsChange() {}
99 }
100 exports["default"] = _default;
101
102 /***/ }),
103
104 /***/ "../assets/dev/js/frontend/handlers/accessibility/nested-title-keyboard-handler.js":
105 /*!*****************************************************************************************!*\
106 !*** ../assets/dev/js/frontend/handlers/accessibility/nested-title-keyboard-handler.js ***!
107 \*****************************************************************************************/
108 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
109
110 "use strict";
111
112
113 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
114 Object.defineProperty(exports, "__esModule", ({
115 value: true
116 }));
117 exports["default"] = void 0;
118 var _base = _interopRequireDefault(__webpack_require__(/*! ../base */ "../assets/dev/js/frontend/handlers/base.js"));
119 class NestedTitleKeyboardHandler extends _base.default {
120 __construct(settings) {
121 super.__construct(settings);
122 this.directionNext = 'next';
123 this.directionPrevious = 'previous';
124 this.focusableElementSelector = 'audio, button, canvas, details, iframe, input, select, summary, textarea, video, [accesskey], [contenteditable], [href], [tabindex]:not([tabindex="-1"])';
125 }
126 getDefaultSettings() {
127 return {
128 selectors: {
129 itemTitle: '.e-n-tab-title',
130 itemContainer: '.e-n-tabs-content > .e-con'
131 },
132 ariaAttributes: {
133 titleStateAttribute: 'aria-selected',
134 activeTitleSelector: '[aria-selected="true"]'
135 },
136 datasets: {
137 titleIndex: 'data-tab-index'
138 },
139 keyDirection: {
140 ArrowLeft: elementorFrontendConfig.is_rtl ? this.directionNext : this.directionPrevious,
141 ArrowUp: this.directionPrevious,
142 ArrowRight: elementorFrontendConfig.is_rtl ? this.directionPrevious : this.directionNext,
143 ArrowDown: this.directionNext
144 }
145 };
146 }
147 getDefaultElements() {
148 const selectors = this.getSettings('selectors');
149 return {
150 $itemTitles: this.findElement(selectors.itemTitle),
151 $itemContainers: this.findElement(selectors.itemContainer),
152 $focusableContainerElements: this.getFocusableElements(this.findElement(selectors.itemContainer))
153 };
154 }
155 getFocusableElements($elements) {
156 return $elements.find(this.focusableElementSelector).not('[disabled], [inert]');
157 }
158 getKeyDirectionValue(event) {
159 const direction = this.getSettings('keyDirection')[event.key];
160 return this.directionNext === direction ? 1 : -1;
161 }
162
163 /**
164 * @param {HTMLElement} itemTitleElement
165 *
166 * @return {string}
167 */
168 getTitleIndex(itemTitleElement) {
169 const {
170 titleIndex: indexAttribute
171 } = this.getSettings('datasets');
172 return itemTitleElement.getAttribute(indexAttribute);
173 }
174
175 /**
176 * @param {string|number} titleIndex
177 *
178 * @return {string}
179 */
180 getTitleFilterSelector(titleIndex) {
181 const {
182 titleIndex: indexAttribute
183 } = this.getSettings('datasets');
184 return `[${indexAttribute}="${titleIndex}"]`;
185 }
186 getActiveTitleElement() {
187 const activeTitleFilter = this.getSettings('ariaAttributes').activeTitleSelector;
188 return this.elements.$itemTitles.filter(activeTitleFilter);
189 }
190 onInit() {
191 super.onInit(...arguments);
192 }
193 bindEvents() {
194 this.elements.$itemTitles.on(this.getTitleEvents());
195 this.elements.$focusableContainerElements.on(this.getContentElementEvents());
196 }
197 unbindEvents() {
198 this.elements.$itemTitles.off();
199 this.elements.$itemContainers.children().off();
200 }
201 getTitleEvents() {
202 return {
203 keydown: this.handleTitleKeyboardNavigation.bind(this)
204 };
205 }
206 getContentElementEvents() {
207 return {
208 keydown: this.handleContentElementKeyboardNavigation.bind(this)
209 };
210 }
211 isDirectionKey(event) {
212 const directionKeys = ['ArrowLeft', 'ArrowRight', 'ArrowUp', 'ArrowDown', 'Home', 'End'];
213 return directionKeys.includes(event.key);
214 }
215 isActivationKey(event) {
216 const activationKeys = ['Enter', ' '];
217 return activationKeys.includes(event.key);
218 }
219 handleTitleKeyboardNavigation(event) {
220 if (this.isDirectionKey(event)) {
221 event.preventDefault();
222 const currentTitleIndex = parseInt(this.getTitleIndex(event.currentTarget)) || 1,
223 numberOfTitles = this.elements.$itemTitles.length,
224 titleIndexUpdated = this.getTitleIndexFocusUpdated(event, currentTitleIndex, numberOfTitles);
225 this.changeTitleFocus(titleIndexUpdated);
226 event.stopPropagation();
227 } else if (this.isActivationKey(event)) {
228 event.preventDefault();
229 if (this.handeTitleLinkEnterOrSpaceEvent(event)) {
230 return;
231 }
232 const titleIndex = this.getTitleIndex(event.currentTarget);
233 elementorFrontend.elements.$window.trigger('elementor/nested-elements/activate-by-keyboard', {
234 widgetId: this.getID(),
235 titleIndex
236 });
237 } else if ('Escape' === event.key) {
238 this.handleTitleEscapeKeyEvents(event);
239 }
240 }
241 handeTitleLinkEnterOrSpaceEvent(event) {
242 const isLinkElement = 'a' === event?.currentTarget?.tagName?.toLowerCase();
243 if (!elementorFrontend.isEditMode() && isLinkElement) {
244 event?.currentTarget?.click();
245 event.stopPropagation();
246 }
247 return isLinkElement;
248 }
249 getTitleIndexFocusUpdated(event, currentTitleIndex, numberOfTitles) {
250 let titleIndexUpdated = 0;
251 switch (event.key) {
252 case 'Home':
253 titleIndexUpdated = 1;
254 break;
255 case 'End':
256 titleIndexUpdated = numberOfTitles;
257 break;
258 default:
259 const directionValue = this.getKeyDirectionValue(event),
260 isEndReached = numberOfTitles < currentTitleIndex + directionValue,
261 isStartReached = 0 === currentTitleIndex + directionValue;
262 if (isEndReached) {
263 titleIndexUpdated = 1;
264 } else if (isStartReached) {
265 titleIndexUpdated = numberOfTitles;
266 } else {
267 titleIndexUpdated = currentTitleIndex + directionValue;
268 }
269 }
270 return titleIndexUpdated;
271 }
272 changeTitleFocus(titleIndexUpdated) {
273 const $newTitle = this.elements.$itemTitles.filter(this.getTitleFilterSelector(titleIndexUpdated));
274 this.setTitleTabindex(titleIndexUpdated);
275 $newTitle.trigger('focus');
276 }
277 setTitleTabindex(titleIndex) {
278 this.elements.$itemTitles.attr('tabindex', '-1');
279 const $newTitle = this.elements.$itemTitles.filter(this.getTitleFilterSelector(titleIndex));
280 $newTitle.attr('tabindex', '0');
281 }
282 handleTitleEscapeKeyEvents() {}
283 handleContentElementKeyboardNavigation(event) {
284 if ('Tab' === event.key && !event.shiftKey) {
285 this.handleContentElementTabEvents(event);
286 } else if ('Escape' === event.key) {
287 event.preventDefault();
288 event.stopPropagation();
289 this.handleContentElementEscapeEvents(event);
290 }
291 }
292 handleContentElementEscapeEvents() {
293 this.getActiveTitleElement().trigger('focus');
294 }
295 handleContentElementTabEvents() {}
296 }
297 exports["default"] = NestedTitleKeyboardHandler;
298
299 /***/ }),
300
301 /***/ "../assets/dev/js/frontend/handlers/base-carousel.js":
302 /*!***********************************************************!*\
303 !*** ../assets/dev/js/frontend/handlers/base-carousel.js ***!
304 \***********************************************************/
305 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
306
307 "use strict";
308
309
310 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
311 Object.defineProperty(exports, "__esModule", ({
312 value: true
313 }));
314 exports["default"] = void 0;
315 var _baseSwiper = _interopRequireDefault(__webpack_require__(/*! ./base-swiper */ "../assets/dev/js/frontend/handlers/base-swiper.js"));
316 class CarouselHandlerBase extends _baseSwiper.default {
317 getDefaultSettings() {
318 return {
319 selectors: {
320 carousel: `.${elementorFrontend.config.swiperClass}`,
321 swiperWrapper: '.swiper-wrapper',
322 slideContent: '.swiper-slide',
323 swiperArrow: '.elementor-swiper-button',
324 paginationWrapper: '.swiper-pagination',
325 paginationBullet: '.swiper-pagination-bullet',
326 paginationBulletWrapper: '.swiper-pagination-bullets'
327 }
328 };
329 }
330 getDefaultElements() {
331 const selectors = this.getSettings('selectors'),
332 elements = {
333 $swiperContainer: this.$element.find(selectors.carousel),
334 $swiperWrapper: this.$element.find(selectors.swiperWrapper),
335 $swiperArrows: this.$element.find(selectors.swiperArrow),
336 $paginationWrapper: this.$element.find(selectors.paginationWrapper),
337 $paginationBullets: this.$element.find(selectors.paginationBullet),
338 $paginationBulletWrapper: this.$element.find(selectors.paginationBulletWrapper)
339 };
340 elements.$slides = elements.$swiperContainer.find(selectors.slideContent);
341 return elements;
342 }
343 getSwiperSettings() {
344 const elementSettings = this.getElementSettings(),
345 slidesToShow = +elementSettings.slides_to_show || 3,
346 isSingleSlide = 1 === slidesToShow,
347 elementorBreakpoints = elementorFrontend.config.responsive.activeBreakpoints,
348 defaultSlidesToShowMap = {
349 mobile: 1,
350 tablet: isSingleSlide ? 1 : 2
351 };
352 const swiperOptions = {
353 slidesPerView: slidesToShow,
354 loop: 'yes' === elementSettings.infinite,
355 speed: elementSettings.speed,
356 handleElementorBreakpoints: true
357 };
358 swiperOptions.breakpoints = {};
359 let lastBreakpointSlidesToShowValue = slidesToShow;
360 Object.keys(elementorBreakpoints).reverse().forEach(breakpointName => {
361 // Tablet has a specific default `slides_to_show`.
362 const defaultSlidesToShow = defaultSlidesToShowMap[breakpointName] ? defaultSlidesToShowMap[breakpointName] : lastBreakpointSlidesToShowValue;
363 swiperOptions.breakpoints[elementorBreakpoints[breakpointName].value] = {
364 slidesPerView: +elementSettings['slides_to_show_' + breakpointName] || defaultSlidesToShow,
365 slidesPerGroup: +elementSettings['slides_to_scroll_' + breakpointName] || 1
366 };
367 if (elementSettings.image_spacing_custom) {
368 swiperOptions.breakpoints[elementorBreakpoints[breakpointName].value].spaceBetween = this.getSpaceBetween(breakpointName);
369 }
370 lastBreakpointSlidesToShowValue = +elementSettings['slides_to_show_' + breakpointName] || defaultSlidesToShow;
371 });
372 if ('yes' === elementSettings.autoplay) {
373 swiperOptions.autoplay = {
374 delay: elementSettings.autoplay_speed,
375 disableOnInteraction: 'yes' === elementSettings.pause_on_interaction
376 };
377 }
378 if (isSingleSlide) {
379 swiperOptions.effect = elementSettings.effect;
380 if ('fade' === elementSettings.effect) {
381 swiperOptions.fadeEffect = {
382 crossFade: true
383 };
384 }
385 } else {
386 swiperOptions.slidesPerGroup = +elementSettings.slides_to_scroll || 1;
387 }
388 if (elementSettings.image_spacing_custom) {
389 swiperOptions.spaceBetween = this.getSpaceBetween();
390 }
391 const showArrows = 'arrows' === elementSettings.navigation || 'both' === elementSettings.navigation,
392 showPagination = 'dots' === elementSettings.navigation || 'both' === elementSettings.navigation || elementSettings.pagination;
393 if (showArrows) {
394 swiperOptions.navigation = {
395 prevEl: '.elementor-swiper-button-prev',
396 nextEl: '.elementor-swiper-button-next'
397 };
398 }
399 if (showPagination) {
400 swiperOptions.pagination = {
401 el: `.elementor-element-${this.getID()} .swiper-pagination`,
402 type: !!elementSettings.pagination ? elementSettings.pagination : 'bullets',
403 clickable: true,
404 renderBullet: (index, classname) => {
405 return `<span class="${classname}" data-bullet-index="${index}" aria-label="${elementorFrontend.config.i18n.a11yCarouselPaginationBulletMessage} ${index + 1}"></span>`;
406 }
407 };
408 }
409 if ('yes' === elementSettings.lazyload) {
410 swiperOptions.lazy = {
411 loadPrevNext: true,
412 loadPrevNextAmount: 1
413 };
414 }
415 swiperOptions.a11y = {
416 enabled: true,
417 prevSlideMessage: elementorFrontend.config.i18n.a11yCarouselPrevSlideMessage,
418 nextSlideMessage: elementorFrontend.config.i18n.a11yCarouselNextSlideMessage,
419 firstSlideMessage: elementorFrontend.config.i18n.a11yCarouselFirstSlideMessage,
420 lastSlideMessage: elementorFrontend.config.i18n.a11yCarouselLastSlideMessage
421 };
422 swiperOptions.on = {
423 slideChangeTransitionEnd: () => {
424 this.a11ySetSlideAriaHidden();
425 },
426 slideChange: () => {
427 this.a11ySetPaginationTabindex();
428 this.handleElementHandlers();
429 },
430 init: () => {
431 this.a11ySetWidgetAriaDetails();
432 this.a11ySetPaginationTabindex();
433 this.a11ySetSlideAriaHidden('initialisation');
434 }
435 };
436 this.applyOffsetSettings(elementSettings, swiperOptions, slidesToShow);
437 return swiperOptions;
438 }
439 getOffsetWidth() {
440 const currentDevice = elementorFrontend.getCurrentDeviceMode();
441 return elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'offset_width', 'size', currentDevice) || 0;
442 }
443 applyOffsetSettings(elementSettings, swiperOptions, slidesToShow) {
444 const offsetSide = elementSettings.offset_sides,
445 isNestedCarouselInEditMode = elementorFrontend.isEditMode() && 'NestedCarousel' === this.constructor.name;
446 if (isNestedCarouselInEditMode || !offsetSide || 'none' === offsetSide) {
447 return;
448 }
449 const offset = this.getOffsetWidth();
450 switch (offsetSide) {
451 case 'right':
452 this.forceSliderToShowNextSlideWhenOnLast(swiperOptions, slidesToShow);
453 this.addClassToSwiperContainer('offset-right');
454 break;
455 case 'left':
456 this.addClassToSwiperContainer('offset-left');
457 break;
458 case 'both':
459 this.forceSliderToShowNextSlideWhenOnLast(swiperOptions, slidesToShow);
460 this.addClassToSwiperContainer('offset-both');
461 break;
462 }
463 }
464 forceSliderToShowNextSlideWhenOnLast(swiperOptions, slidesToShow) {
465 swiperOptions.slidesPerView = slidesToShow + 0.001;
466 }
467 addClassToSwiperContainer(className) {
468 this.getDefaultElements().$swiperContainer[0].classList.add(className);
469 }
470 async onInit() {
471 super.onInit(...arguments);
472 if (!this.elements.$swiperContainer.length || 2 > this.elements.$slides.length) {
473 return;
474 }
475 const Swiper = elementorFrontend.utils.swiper;
476 this.swiper = await new Swiper(this.elements.$swiperContainer, this.getSwiperSettings());
477
478 // Expose the swiper instance in the frontend
479 this.elements.$swiperContainer.data('swiper', this.swiper);
480 const elementSettings = this.getElementSettings();
481 if ('yes' === elementSettings.pause_on_hover) {
482 this.togglePauseOnHover(true);
483 }
484 }
485 bindEvents() {
486 this.elements.$swiperArrows.on('keydown', this.onDirectionArrowKeydown.bind(this));
487 this.elements.$paginationWrapper.on('keydown', '.swiper-pagination-bullet', this.onDirectionArrowKeydown.bind(this));
488 this.elements.$swiperContainer.on('keydown', '.swiper-slide', this.onDirectionArrowKeydown.bind(this));
489 this.$element.find(':focusable').on('focus', this.onFocusDisableAutoplay.bind(this));
490 elementorFrontend.elements.$window.on('resize', this.getSwiperSettings.bind(this));
491 }
492 unbindEvents() {
493 this.elements.$swiperArrows.off();
494 this.elements.$paginationWrapper.off();
495 this.elements.$swiperContainer.off();
496 this.$element.find(':focusable').off();
497 elementorFrontend.elements.$window.off('resize');
498 }
499 onDirectionArrowKeydown(event) {
500 const isRTL = elementorFrontend.config.is_rtl,
501 inlineDirectionArrows = ['ArrowLeft', 'ArrowRight'],
502 currentKeydown = event.originalEvent.code,
503 isDirectionInlineKeydown = -1 !== inlineDirectionArrows.indexOf(currentKeydown),
504 directionStart = isRTL ? 'ArrowRight' : 'ArrowLeft',
505 directionEnd = isRTL ? 'ArrowLeft' : 'ArrowRight';
506 if (!isDirectionInlineKeydown) {
507 return true;
508 } else if (directionStart === currentKeydown) {
509 this.swiper.slidePrev();
510 } else if (directionEnd === currentKeydown) {
511 this.swiper.slideNext();
512 }
513 }
514 onFocusDisableAutoplay() {
515 this.swiper.autoplay.stop();
516 }
517 updateSwiperOption(propertyName) {
518 const elementSettings = this.getElementSettings(),
519 newSettingValue = elementSettings[propertyName],
520 params = this.swiper.params;
521
522 // Handle special cases where the value to update is not the value that the Swiper library accepts.
523 switch (propertyName) {
524 case 'autoplay_speed':
525 params.autoplay.delay = newSettingValue;
526 break;
527 case 'speed':
528 params.speed = newSettingValue;
529 break;
530 }
531 this.swiper.update();
532 }
533 getChangeableProperties() {
534 return {
535 pause_on_hover: 'pauseOnHover',
536 autoplay_speed: 'delay',
537 speed: 'speed',
538 arrows_position: 'arrows_position' // Not a Swiper setting.
539 };
540 }
541
542 onElementChange(propertyName) {
543 if (0 === propertyName.indexOf('image_spacing_custom')) {
544 this.updateSpaceBetween(propertyName);
545 return;
546 }
547 const changeableProperties = this.getChangeableProperties();
548 if (changeableProperties[propertyName]) {
549 // 'pause_on_hover' is implemented by the handler with event listeners, not the Swiper library.
550 if ('pause_on_hover' === propertyName) {
551 const newSettingValue = this.getElementSettings('pause_on_hover');
552 this.togglePauseOnHover('yes' === newSettingValue);
553 } else {
554 this.updateSwiperOption(propertyName);
555 }
556 }
557 }
558 onEditSettingsChange(propertyName) {
559 if ('activeItemIndex' === propertyName) {
560 this.swiper.slideToLoop(this.getEditSettings('activeItemIndex') - 1);
561 }
562 }
563 getSpaceBetween() {
564 let device = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
565 return elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'image_spacing_custom', 'size', device) || 0;
566 }
567 updateSpaceBetween(propertyName) {
568 const deviceMatch = propertyName.match('image_spacing_custom_(.*)'),
569 device = deviceMatch ? deviceMatch[1] : 'desktop',
570 newSpaceBetween = this.getSpaceBetween(device);
571 if ('desktop' !== device) {
572 this.swiper.params.breakpoints[elementorFrontend.config.responsive.activeBreakpoints[device].value].spaceBetween = newSpaceBetween;
573 }
574 this.swiper.params.spaceBetween = newSpaceBetween;
575 this.swiper.update();
576 }
577 getPaginationBullets() {
578 let type = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'array';
579 const paginationBullets = this.$element.find(this.getSettings('selectors').paginationBullet);
580 return 'array' === type ? Array.from(paginationBullets) : paginationBullets;
581 }
582 a11ySetWidgetAriaDetails() {
583 const $widget = this.$element;
584 $widget.attr('aria-roledescription', 'carousel');
585 $widget.attr('aria-label', elementorFrontend.config.i18n.a11yCarouselWrapperAriaLabel);
586 }
587 a11ySetPaginationTabindex() {
588 const bulletClass = this.swiper?.params.pagination.bulletClass,
589 activeBulletClass = this.swiper?.params.pagination.bulletActiveClass;
590 this.getPaginationBullets().forEach(bullet => {
591 if (!bullet.classList?.contains(activeBulletClass)) {
592 bullet.removeAttribute('tabindex');
593 }
594 });
595 const isDirectionInlineArrowKey = 'ArrowLeft' === event?.code || 'ArrowRight' === event?.code;
596 if (event?.target?.classList?.contains(bulletClass) && isDirectionInlineArrowKey) {
597 this.$element.find(`.${activeBulletClass}`).trigger('focus');
598 }
599 }
600 getSwiperWrapperTranformXValue() {
601 let transformValue = this.elements.$swiperWrapper[0]?.style.transform;
602 transformValue = transformValue.replace('translate3d(', '');
603 transformValue = transformValue.split(',');
604 transformValue = parseInt(transformValue[0].replace('px', ''));
605 return !!transformValue ? transformValue : 0;
606 }
607 a11ySetSlideAriaHidden() {
608 let status = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
609 const currentIndex = 'initialisation' === status ? 0 : this.swiper?.activeIndex;
610 if ('number' !== typeof currentIndex) {
611 return;
612 }
613 const swiperWrapperTransformXValue = this.getSwiperWrapperTranformXValue(),
614 swiperWrapperWidth = this.elements.$swiperWrapper[0].clientWidth,
615 $slides = this.elements.$swiperContainer.find(this.getSettings('selectors').slideContent);
616 $slides.each((index, slide) => {
617 const isSlideInsideWrapper = 0 <= slide.offsetLeft + swiperWrapperTransformXValue && swiperWrapperWidth > slide.offsetLeft + swiperWrapperTransformXValue;
618 if (!isSlideInsideWrapper) {
619 slide.setAttribute('aria-hidden', true);
620 slide.setAttribute('inert', '');
621 } else {
622 slide.removeAttribute('aria-hidden');
623 slide.removeAttribute('inert');
624 }
625 });
626 }
627
628 // Empty method which can be overwritten by child methods.
629 handleElementHandlers() {}
630 }
631 exports["default"] = CarouselHandlerBase;
632
633 /***/ }),
634
635 /***/ "../assets/dev/js/frontend/handlers/base-swiper.js":
636 /*!*********************************************************!*\
637 !*** ../assets/dev/js/frontend/handlers/base-swiper.js ***!
638 \*********************************************************/
639 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
640
641 "use strict";
642
643
644 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
645 Object.defineProperty(exports, "__esModule", ({
646 value: true
647 }));
648 exports["default"] = void 0;
649 var _base = _interopRequireDefault(__webpack_require__(/*! ./base */ "../assets/dev/js/frontend/handlers/base.js"));
650 class SwiperHandlerBase extends _base.default {
651 getInitialSlide() {
652 const editSettings = this.getEditSettings();
653 return editSettings.activeItemIndex ? editSettings.activeItemIndex - 1 : 0;
654 }
655 getSlidesCount() {
656 return this.elements.$slides.length;
657 }
658
659 // This method live-handles the 'Pause On Hover' control's value being changed in the Editor Panel
660 togglePauseOnHover(toggleOn) {
661 if (toggleOn) {
662 this.elements.$swiperContainer.on({
663 mouseenter: () => {
664 this.swiper.autoplay.stop();
665 },
666 mouseleave: () => {
667 this.swiper.autoplay.start();
668 }
669 });
670 } else {
671 this.elements.$swiperContainer.off('mouseenter mouseleave');
672 }
673 }
674 handleKenBurns() {
675 const settings = this.getSettings();
676 if (this.$activeImageBg) {
677 this.$activeImageBg.removeClass(settings.classes.kenBurnsActive);
678 }
679 this.activeItemIndex = this.swiper ? this.swiper.activeIndex : this.getInitialSlide();
680 if (this.swiper) {
681 this.$activeImageBg = jQuery(this.swiper.slides[this.activeItemIndex]).children('.' + settings.classes.slideBackground);
682 } else {
683 this.$activeImageBg = jQuery(this.elements.$slides[0]).children('.' + settings.classes.slideBackground);
684 }
685 this.$activeImageBg.addClass(settings.classes.kenBurnsActive);
686 }
687 }
688 exports["default"] = SwiperHandlerBase;
689
690 /***/ }),
691
692 /***/ "../assets/dev/js/frontend/handlers/base.js":
693 /*!**************************************************!*\
694 !*** ../assets/dev/js/frontend/handlers/base.js ***!
695 \**************************************************/
696 /***/ ((module) => {
697
698 "use strict";
699
700
701 module.exports = elementorModules.ViewModule.extend({
702 $element: null,
703 editorListeners: null,
704 onElementChange: null,
705 onEditSettingsChange: null,
706 onPageSettingsChange: null,
707 isEdit: null,
708 __construct(settings) {
709 if (!this.isActive(settings)) {
710 return;
711 }
712 this.$element = settings.$element;
713 this.isEdit = this.$element.hasClass('elementor-element-edit-mode');
714 if (this.isEdit) {
715 this.addEditorListeners();
716 }
717 },
718 isActive() {
719 return true;
720 },
721 isElementInTheCurrentDocument() {
722 if (!elementorFrontend.isEditMode()) {
723 return false;
724 }
725 return elementor.documents.currentDocument.id.toString() === this.$element[0].closest('.elementor').dataset.elementorId;
726 },
727 findElement(selector) {
728 var $mainElement = this.$element;
729 return $mainElement.find(selector).filter(function () {
730 // Start `closest` from parent since self can be `.elementor-element`.
731 return jQuery(this).parent().closest('.elementor-element').is($mainElement);
732 });
733 },
734 getUniqueHandlerID(cid, $element) {
735 if (!cid) {
736 cid = this.getModelCID();
737 }
738 if (!$element) {
739 $element = this.$element;
740 }
741 return cid + $element.attr('data-element_type') + this.getConstructorID();
742 },
743 initEditorListeners() {
744 var self = this;
745 self.editorListeners = [{
746 event: 'element:destroy',
747 to: elementor.channels.data,
748 callback(removedModel) {
749 if (removedModel.cid !== self.getModelCID()) {
750 return;
751 }
752 self.onDestroy();
753 }
754 }];
755 if (self.onElementChange) {
756 const elementType = self.getWidgetType() || self.getElementType();
757 let eventName = 'change';
758 if ('global' !== elementType) {
759 eventName += ':' + elementType;
760 }
761 self.editorListeners.push({
762 event: eventName,
763 to: elementor.channels.editor,
764 callback(controlView, elementView) {
765 var elementViewHandlerID = self.getUniqueHandlerID(elementView.model.cid, elementView.$el);
766 if (elementViewHandlerID !== self.getUniqueHandlerID()) {
767 return;
768 }
769 self.onElementChange(controlView.model.get('name'), controlView, elementView);
770 }
771 });
772 }
773 if (self.onEditSettingsChange) {
774 self.editorListeners.push({
775 event: 'change:editSettings',
776 to: elementor.channels.editor,
777 callback(changedModel, view) {
778 if (view.model.cid !== self.getModelCID()) {
779 return;
780 }
781 const propName = Object.keys(changedModel.changed)[0];
782 self.onEditSettingsChange(propName, changedModel.changed[propName]);
783 }
784 });
785 }
786 ['page'].forEach(function (settingsType) {
787 var listenerMethodName = 'on' + settingsType[0].toUpperCase() + settingsType.slice(1) + 'SettingsChange';
788 if (self[listenerMethodName]) {
789 self.editorListeners.push({
790 event: 'change',
791 to: elementor.settings[settingsType].model,
792 callback(model) {
793 self[listenerMethodName](model.changed);
794 }
795 });
796 }
797 });
798 },
799 getEditorListeners() {
800 if (!this.editorListeners) {
801 this.initEditorListeners();
802 }
803 return this.editorListeners;
804 },
805 addEditorListeners() {
806 var uniqueHandlerID = this.getUniqueHandlerID();
807 this.getEditorListeners().forEach(function (listener) {
808 elementorFrontend.addListenerOnce(uniqueHandlerID, listener.event, listener.callback, listener.to);
809 });
810 },
811 removeEditorListeners() {
812 var uniqueHandlerID = this.getUniqueHandlerID();
813 this.getEditorListeners().forEach(function (listener) {
814 elementorFrontend.removeListeners(uniqueHandlerID, listener.event, null, listener.to);
815 });
816 },
817 getElementType() {
818 return this.$element.data('element_type');
819 },
820 getWidgetType() {
821 const widgetType = this.$element.data('widget_type');
822 if (!widgetType) {
823 return;
824 }
825 return widgetType.split('.')[0];
826 },
827 getID() {
828 return this.$element.data('id');
829 },
830 getModelCID() {
831 return this.$element.data('model-cid');
832 },
833 getElementSettings(setting) {
834 let elementSettings = {};
835 const modelCID = this.getModelCID();
836 if (this.isEdit && modelCID) {
837 const settings = elementorFrontend.config.elements.data[modelCID],
838 attributes = settings.attributes;
839 let type = attributes.widgetType || attributes.elType;
840 if (attributes.isInner) {
841 type = 'inner-' + type;
842 }
843 let settingsKeys = elementorFrontend.config.elements.keys[type];
844 if (!settingsKeys) {
845 settingsKeys = elementorFrontend.config.elements.keys[type] = [];
846 jQuery.each(settings.controls, (name, control) => {
847 if (control.frontend_available) {
848 settingsKeys.push(name);
849 }
850 });
851 }
852 jQuery.each(settings.getActiveControls(), function (controlKey) {
853 if (-1 !== settingsKeys.indexOf(controlKey)) {
854 let value = attributes[controlKey];
855 if (value.toJSON) {
856 value = value.toJSON();
857 }
858 elementSettings[controlKey] = value;
859 }
860 });
861 } else {
862 elementSettings = this.$element.data('settings') || {};
863 }
864 return this.getItems(elementSettings, setting);
865 },
866 getEditSettings(setting) {
867 var attributes = {};
868 if (this.isEdit) {
869 attributes = elementorFrontend.config.elements.editSettings[this.getModelCID()].attributes;
870 }
871 return this.getItems(attributes, setting);
872 },
873 getCurrentDeviceSetting(settingKey) {
874 return elementorFrontend.getCurrentDeviceSetting(this.getElementSettings(), settingKey);
875 },
876 onInit() {
877 if (this.isActive(this.getSettings())) {
878 elementorModules.ViewModule.prototype.onInit.apply(this, arguments);
879 }
880 },
881 onDestroy() {
882 if (this.isEdit) {
883 this.removeEditorListeners();
884 }
885 if (this.unbindEvents) {
886 this.unbindEvents();
887 }
888 }
889 });
890
891 /***/ }),
892
893 /***/ "../assets/dev/js/frontend/handlers/stretched-element.js":
894 /*!***************************************************************!*\
895 !*** ../assets/dev/js/frontend/handlers/stretched-element.js ***!
896 \***************************************************************/
897 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
898
899 "use strict";
900
901
902 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
903 Object.defineProperty(exports, "__esModule", ({
904 value: true
905 }));
906 exports["default"] = void 0;
907 var _base = _interopRequireDefault(__webpack_require__(/*! ./base */ "../assets/dev/js/frontend/handlers/base.js"));
908 class StretchedElement extends _base.default {
909 getStretchedClass() {
910 return 'e-stretched';
911 }
912 getStretchSettingName() {
913 return 'stretch_element';
914 }
915 getStretchActiveValue() {
916 return 'yes';
917 }
918 bindEvents() {
919 const handlerID = this.getUniqueHandlerID();
920 elementorFrontend.addListenerOnce(handlerID, 'resize', this.stretch);
921 elementorFrontend.addListenerOnce(handlerID, 'sticky:stick', this.stretch, this.$element);
922 elementorFrontend.addListenerOnce(handlerID, 'sticky:unstick', this.stretch, this.$element);
923 if (elementorFrontend.isEditMode()) {
924 this.onKitChangeStretchContainerChange = this.onKitChangeStretchContainerChange.bind(this);
925 elementor.channels.editor.on('kit:change:stretchContainer', this.onKitChangeStretchContainerChange);
926 }
927 }
928 unbindEvents() {
929 elementorFrontend.removeListeners(this.getUniqueHandlerID(), 'resize', this.stretch);
930 if (elementorFrontend.isEditMode()) {
931 elementor.channels.editor.off('kit:change:stretchContainer', this.onKitChangeStretchContainerChange);
932 }
933 }
934 isActive(settings) {
935 return elementorFrontend.isEditMode() || settings.$element.hasClass(this.getStretchedClass());
936 }
937 getStretchElementForConfig() {
938 let childSelector = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
939 if (childSelector) {
940 return this.$element.find(childSelector);
941 }
942 return this.$element;
943 }
944 getStretchElementConfig() {
945 return {
946 element: this.getStretchElementForConfig(),
947 selectors: {
948 container: this.getStretchContainer()
949 },
950 considerScrollbar: elementorFrontend.isEditMode() && elementorFrontend.config.is_rtl
951 };
952 }
953 initStretch() {
954 this.stretch = this.stretch.bind(this);
955 this.stretchElement = new elementorModules.frontend.tools.StretchElement(this.getStretchElementConfig());
956 }
957 getStretchContainer() {
958 return elementorFrontend.getKitSettings('stretched_section_container') || window;
959 }
960 isStretchSettingEnabled() {
961 return this.getElementSettings(this.getStretchSettingName()) === this.getStretchActiveValue();
962 }
963 stretch() {
964 if (!this.isStretchSettingEnabled()) {
965 return;
966 }
967 this.stretchElement.stretch();
968 }
969 onInit() {
970 if (!this.isActive(this.getSettings())) {
971 return;
972 }
973 this.initStretch();
974 super.onInit(...arguments);
975 this.stretch();
976 }
977 onElementChange(propertyName) {
978 const stretchSettingName = this.getStretchSettingName();
979 if (stretchSettingName === propertyName) {
980 if (this.isStretchSettingEnabled()) {
981 this.stretch();
982 } else {
983 this.stretchElement.reset();
984 }
985 }
986 }
987 onKitChangeStretchContainerChange() {
988 this.stretchElement.setSettings('selectors.container', this.getStretchContainer());
989 this.stretch();
990 }
991 }
992 exports["default"] = StretchedElement;
993
994 /***/ }),
995
996 /***/ "../assets/dev/js/frontend/modules.js":
997 /*!********************************************!*\
998 !*** ../assets/dev/js/frontend/modules.js ***!
999 \********************************************/
1000 /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
1001
1002 "use strict";
1003
1004
1005 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1006 var _modules = _interopRequireDefault(__webpack_require__(/*! ../modules/modules */ "../assets/dev/js/modules/modules.js"));
1007 var _document = _interopRequireDefault(__webpack_require__(/*! ./document */ "../assets/dev/js/frontend/document.js"));
1008 var _stretchElement = _interopRequireDefault(__webpack_require__(/*! ./tools/stretch-element */ "../assets/dev/js/frontend/tools/stretch-element.js"));
1009 var _stretchedElement = _interopRequireDefault(__webpack_require__(/*! ./handlers/stretched-element */ "../assets/dev/js/frontend/handlers/stretched-element.js"));
1010 var _base = _interopRequireDefault(__webpack_require__(/*! ./handlers/base */ "../assets/dev/js/frontend/handlers/base.js"));
1011 var _baseSwiper = _interopRequireDefault(__webpack_require__(/*! ./handlers/base-swiper */ "../assets/dev/js/frontend/handlers/base-swiper.js"));
1012 var _baseCarousel = _interopRequireDefault(__webpack_require__(/*! ./handlers/base-carousel */ "../assets/dev/js/frontend/handlers/base-carousel.js"));
1013 var _nestedTabs = _interopRequireDefault(__webpack_require__(/*! elementor/modules/nested-tabs/assets/js/frontend/handlers/nested-tabs */ "../modules/nested-tabs/assets/js/frontend/handlers/nested-tabs.js"));
1014 var _nestedAccordion = _interopRequireDefault(__webpack_require__(/*! elementor/modules/nested-accordion/assets/js/frontend/handlers/nested-accordion */ "../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion.js"));
1015 var _nestedTitleKeyboardHandler = _interopRequireDefault(__webpack_require__(/*! ./handlers/accessibility/nested-title-keyboard-handler */ "../assets/dev/js/frontend/handlers/accessibility/nested-title-keyboard-handler.js"));
1016 _modules.default.frontend = {
1017 Document: _document.default,
1018 tools: {
1019 StretchElement: _stretchElement.default
1020 },
1021 handlers: {
1022 Base: _base.default,
1023 StretchedElement: _stretchedElement.default,
1024 SwiperBase: _baseSwiper.default,
1025 CarouselBase: _baseCarousel.default,
1026 NestedTabs: _nestedTabs.default,
1027 NestedAccordion: _nestedAccordion.default,
1028 NestedTitleKeyboardHandler: _nestedTitleKeyboardHandler.default
1029 }
1030 };
1031
1032 /***/ }),
1033
1034 /***/ "../assets/dev/js/frontend/tools/stretch-element.js":
1035 /*!**********************************************************!*\
1036 !*** ../assets/dev/js/frontend/tools/stretch-element.js ***!
1037 \**********************************************************/
1038 /***/ ((module) => {
1039
1040 "use strict";
1041
1042
1043 module.exports = elementorModules.ViewModule.extend({
1044 getDefaultSettings() {
1045 return {
1046 element: null,
1047 direction: elementorFrontend.config.is_rtl ? 'right' : 'left',
1048 selectors: {
1049 container: window
1050 },
1051 considerScrollbar: false,
1052 cssOutput: 'inline'
1053 };
1054 },
1055 getDefaultElements() {
1056 return {
1057 $element: jQuery(this.getSettings('element'))
1058 };
1059 },
1060 stretch() {
1061 const settings = this.getSettings();
1062 let $container;
1063 try {
1064 $container = jQuery(settings.selectors.container);
1065 // eslint-disable-next-line no-empty
1066 } catch (e) {}
1067 if (!$container || !$container.length) {
1068 $container = jQuery(this.getDefaultSettings().selectors.container);
1069 }
1070 this.reset();
1071 var $element = this.elements.$element,
1072 containerWidth = $container.innerWidth(),
1073 elementOffset = $element.offset().left,
1074 isFixed = 'fixed' === $element.css('position'),
1075 correctOffset = isFixed ? 0 : elementOffset,
1076 isContainerFullScreen = window === $container[0];
1077 if (!isContainerFullScreen) {
1078 var containerOffset = $container.offset().left;
1079 if (isFixed) {
1080 correctOffset = containerOffset;
1081 }
1082 if (elementOffset > containerOffset) {
1083 correctOffset = elementOffset - containerOffset;
1084 }
1085 }
1086 if (settings.considerScrollbar && isContainerFullScreen) {
1087 const scrollbarWidth = window.innerWidth - containerWidth;
1088 correctOffset -= scrollbarWidth;
1089 }
1090 if (!isFixed) {
1091 if (elementorFrontend.config.is_rtl) {
1092 correctOffset = containerWidth - ($element.outerWidth() + correctOffset);
1093 }
1094 correctOffset = -correctOffset;
1095 }
1096
1097 // Consider margin
1098 if (settings.margin) {
1099 correctOffset += settings.margin;
1100 }
1101 var css = {};
1102 let width = containerWidth;
1103 if (settings.margin) {
1104 width -= settings.margin * 2;
1105 }
1106 css.width = width + 'px';
1107 css[settings.direction] = correctOffset + 'px';
1108 if ('variables' === settings.cssOutput) {
1109 this.applyCssVariables($element, css);
1110 return;
1111 }
1112 $element.css(css);
1113 },
1114 reset() {
1115 const css = {},
1116 settings = this.getSettings(),
1117 $element = this.elements.$element;
1118 if ('variables' === settings.cssOutput) {
1119 this.resetCssVariables($element);
1120 return;
1121 }
1122 css.width = '';
1123 css[settings.direction] = '';
1124 $element.css(css);
1125 },
1126 applyCssVariables($element, css) {
1127 $element.css('--stretch-width', css.width);
1128 if (!!css.left) {
1129 $element.css('--stretch-left', css.left);
1130 } else {
1131 $element.css('--stretch-right', css.right);
1132 }
1133 },
1134 resetCssVariables($element) {
1135 $element.css({
1136 '--stretch-width': '',
1137 '--stretch-left': '',
1138 '--stretch-right': ''
1139 });
1140 }
1141 });
1142
1143 /***/ }),
1144
1145 /***/ "../assets/dev/js/frontend/utils/flex-horizontal-scroll.js":
1146 /*!*****************************************************************!*\
1147 !*** ../assets/dev/js/frontend/utils/flex-horizontal-scroll.js ***!
1148 \*****************************************************************/
1149 /***/ ((__unused_webpack_module, exports) => {
1150
1151 "use strict";
1152
1153
1154 Object.defineProperty(exports, "__esModule", ({
1155 value: true
1156 }));
1157 exports.changeScrollStatus = changeScrollStatus;
1158 exports.setHorizontalScrollAlignment = setHorizontalScrollAlignment;
1159 exports.setHorizontalTitleScrollValues = setHorizontalTitleScrollValues;
1160 function changeScrollStatus(element, event) {
1161 if ('mousedown' === event.type) {
1162 element.classList.add('e-scroll');
1163 element.dataset.pageX = event.pageX;
1164 } else {
1165 element.classList.remove('e-scroll', 'e-scroll-active');
1166 element.dataset.pageX = '';
1167 }
1168 }
1169
1170 // This function was written using this example https://codepen.io/thenutz/pen/VwYeYEE.
1171 function setHorizontalTitleScrollValues(element, horizontalScrollStatus, event) {
1172 const isActiveScroll = element.classList.contains('e-scroll'),
1173 isHorizontalScrollActive = 'enable' === horizontalScrollStatus,
1174 headingContentIsWiderThanWrapper = element.scrollWidth > element.clientWidth;
1175 if (!isActiveScroll || !isHorizontalScrollActive || !headingContentIsWiderThanWrapper) {
1176 return;
1177 }
1178 event.preventDefault();
1179 const previousPositionX = parseFloat(element.dataset.pageX),
1180 mouseMoveX = event.pageX - previousPositionX,
1181 maximumScrollValue = 5,
1182 stepLimit = 20;
1183 let toScrollDistanceX = 0;
1184 if (stepLimit < mouseMoveX) {
1185 toScrollDistanceX = maximumScrollValue;
1186 } else if (stepLimit * -1 > mouseMoveX) {
1187 toScrollDistanceX = -1 * maximumScrollValue;
1188 } else {
1189 toScrollDistanceX = mouseMoveX;
1190 }
1191 element.scrollLeft = element.scrollLeft - toScrollDistanceX;
1192 element.classList.add('e-scroll-active');
1193 }
1194 function setHorizontalScrollAlignment(_ref) {
1195 let {
1196 element,
1197 direction,
1198 justifyCSSVariable,
1199 horizontalScrollStatus
1200 } = _ref;
1201 if (!element) {
1202 return;
1203 }
1204 if (isHorizontalScroll(element, horizontalScrollStatus)) {
1205 initialScrollPosition(element, direction, justifyCSSVariable);
1206 } else {
1207 element.style.setProperty(justifyCSSVariable, '');
1208 }
1209 }
1210 function isHorizontalScroll(element, horizontalScrollStatus) {
1211 return element.clientWidth < getChildrenWidth(element.children) && 'enable' === horizontalScrollStatus;
1212 }
1213 function getChildrenWidth(children) {
1214 let totalWidth = 0;
1215 const parentContainer = children[0].parentNode,
1216 computedStyles = getComputedStyle(parentContainer),
1217 gap = parseFloat(computedStyles.gap) || 0; // Get the gap value or default to 0 if it's not specified
1218
1219 for (let i = 0; i < children.length; i++) {
1220 totalWidth += children[i].offsetWidth + gap;
1221 }
1222 return totalWidth;
1223 }
1224 function initialScrollPosition(element, direction, justifyCSSVariable) {
1225 const isRTL = elementorFrontend.config.is_rtl;
1226 switch (direction) {
1227 case 'end':
1228 element.style.setProperty(justifyCSSVariable, 'start');
1229 element.scrollLeft = isRTL ? -1 * getChildrenWidth(element.children) : getChildrenWidth(element.children);
1230 break;
1231 default:
1232 element.style.setProperty(justifyCSSVariable, 'start');
1233 element.scrollLeft = 0;
1234 }
1235 }
1236
1237 /***/ }),
1238
1239 /***/ "../assets/dev/js/modules/imports/args-object.js":
1240 /*!*******************************************************!*\
1241 !*** ../assets/dev/js/modules/imports/args-object.js ***!
1242 \*******************************************************/
1243 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1244
1245 "use strict";
1246
1247
1248 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1249 Object.defineProperty(exports, "__esModule", ({
1250 value: true
1251 }));
1252 exports["default"] = void 0;
1253 __webpack_require__(/*! core-js/modules/es.error.cause.js */ "../node_modules/core-js/modules/es.error.cause.js");
1254 var _instanceType = _interopRequireDefault(__webpack_require__(/*! ./instance-type */ "../assets/dev/js/modules/imports/instance-type.js"));
1255 var _isInstanceof = _interopRequireDefault(__webpack_require__(/*! ../../editor/utils/is-instanceof */ "../assets/dev/js/editor/utils/is-instanceof.js"));
1256 class ArgsObject extends _instanceType.default {
1257 static getInstanceType() {
1258 return 'ArgsObject';
1259 }
1260
1261 /**
1262 * Function constructor().
1263 *
1264 * Create ArgsObject.
1265 *
1266 * @param {{}} args
1267 */
1268 constructor(args) {
1269 super();
1270 this.args = args;
1271 }
1272
1273 /**
1274 * Function requireArgument().
1275 *
1276 * Validate property in args.
1277 *
1278 * @param {string} property
1279 * @param {{}} args
1280 *
1281 * @throws {Error}
1282 *
1283 */
1284 requireArgument(property) {
1285 let args = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.args;
1286 if (!Object.prototype.hasOwnProperty.call(args, property)) {
1287 throw Error(`${property} is required.`);
1288 }
1289 }
1290
1291 /**
1292 * Function requireArgumentType().
1293 *
1294 * Validate property in args using `type === typeof(args.whatever)`.
1295 *
1296 * @param {string} property
1297 * @param {string} type
1298 * @param {{}} args
1299 *
1300 * @throws {Error}
1301 *
1302 */
1303 requireArgumentType(property, type) {
1304 let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args;
1305 this.requireArgument(property, args);
1306 if (typeof args[property] !== type) {
1307 throw Error(`${property} invalid type: ${type}.`);
1308 }
1309 }
1310
1311 /**
1312 * Function requireArgumentInstance().
1313 *
1314 * Validate property in args using `args.whatever instanceof instance`.
1315 *
1316 * @param {string} property
1317 * @param {*} instance
1318 * @param {{}} args
1319 *
1320 * @throws {Error}
1321 *
1322 */
1323 requireArgumentInstance(property, instance) {
1324 let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args;
1325 this.requireArgument(property, args);
1326 if (!(args[property] instanceof instance) && !(0, _isInstanceof.default)(args[property], instance)) {
1327 throw Error(`${property} invalid instance.`);
1328 }
1329 }
1330
1331 /**
1332 * Function requireArgumentConstructor().
1333 *
1334 * Validate property in args using `type === args.whatever.constructor`.
1335 *
1336 * @param {string} property
1337 * @param {*} type
1338 * @param {{}} args
1339 *
1340 * @throws {Error}
1341 *
1342 */
1343 requireArgumentConstructor(property, type) {
1344 let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args;
1345 this.requireArgument(property, args);
1346
1347 // Note: Converting the constructor to string in order to avoid equation issues
1348 // due to different memory addresses between iframes (window.Object !== window.top.Object).
1349 if (args[property].constructor.toString() !== type.prototype.constructor.toString()) {
1350 throw Error(`${property} invalid constructor type.`);
1351 }
1352 }
1353 }
1354 exports["default"] = ArgsObject;
1355
1356 /***/ }),
1357
1358 /***/ "../assets/dev/js/modules/imports/force-method-implementation.js":
1359 /*!***********************************************************************!*\
1360 !*** ../assets/dev/js/modules/imports/force-method-implementation.js ***!
1361 \***********************************************************************/
1362 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1363
1364 "use strict";
1365
1366
1367 Object.defineProperty(exports, "__esModule", ({
1368 value: true
1369 }));
1370 exports["default"] = exports.ForceMethodImplementation = void 0;
1371 __webpack_require__(/*! core-js/modules/es.error.cause.js */ "../node_modules/core-js/modules/es.error.cause.js");
1372 // TODO: Wrong location used as `elementorModules.ForceMethodImplementation(); should be` `elementorUtils.forceMethodImplementation()`;
1373
1374 class ForceMethodImplementation extends Error {
1375 constructor() {
1376 let info = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1377 let args = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
1378 super(`${info.isStatic ? 'static ' : ''}${info.fullName}() should be implemented, please provide '${info.functionName || info.fullName}' functionality.`, args);
1379
1380 // Allow to pass custom properties to the error.
1381 if (Object.keys(args).length) {
1382 // eslint-disable-next-line no-console
1383 console.error(args);
1384 }
1385 Error.captureStackTrace(this, ForceMethodImplementation);
1386 }
1387 }
1388 exports.ForceMethodImplementation = ForceMethodImplementation;
1389 var _default = args => {
1390 const stack = Error().stack,
1391 caller = stack.split('\n')[2].trim(),
1392 callerName = caller.startsWith('at new') ? 'constructor' : caller.split(' ')[1],
1393 info = {};
1394 info.functionName = callerName;
1395 info.fullName = callerName;
1396 if (info.functionName.includes('.')) {
1397 const parts = info.functionName.split('.');
1398 info.className = parts[0];
1399 info.functionName = parts[1];
1400 } else {
1401 info.isStatic = true;
1402 }
1403 throw new ForceMethodImplementation(info, args);
1404 };
1405 exports["default"] = _default;
1406
1407 /***/ }),
1408
1409 /***/ "../assets/dev/js/modules/imports/instance-type.js":
1410 /*!*********************************************************!*\
1411 !*** ../assets/dev/js/modules/imports/instance-type.js ***!
1412 \*********************************************************/
1413 /***/ ((__unused_webpack_module, exports) => {
1414
1415 "use strict";
1416
1417
1418 Object.defineProperty(exports, "__esModule", ({
1419 value: true
1420 }));
1421 exports["default"] = void 0;
1422 class InstanceType {
1423 static [Symbol.hasInstance](target) {
1424 /**
1425 * This is function extending being called each time JS uses instanceOf, since babel use it each time it create new class
1426 * its give's opportunity to mange capabilities of instanceOf operator.
1427 * saving current class each time will give option later to handle instanceOf manually.
1428 */
1429 let result = super[Symbol.hasInstance](target);
1430
1431 // Act normal when validate a class, which does not have instance type.
1432 if (target && !target.constructor.getInstanceType) {
1433 return result;
1434 }
1435 if (target) {
1436 if (!target.instanceTypes) {
1437 target.instanceTypes = [];
1438 }
1439 if (!result) {
1440 if (this.getInstanceType() === target.constructor.getInstanceType()) {
1441 result = true;
1442 }
1443 }
1444 if (result) {
1445 const name = this.getInstanceType === InstanceType.getInstanceType ? 'BaseInstanceType' : this.getInstanceType();
1446 if (-1 === target.instanceTypes.indexOf(name)) {
1447 target.instanceTypes.push(name);
1448 }
1449 }
1450 }
1451 if (!result && target) {
1452 // Check if the given 'target', is instance of known types.
1453 result = target.instanceTypes && Array.isArray(target.instanceTypes) && -1 !== target.instanceTypes.indexOf(this.getInstanceType());
1454 }
1455 return result;
1456 }
1457 static getInstanceType() {
1458 elementorModules.ForceMethodImplementation();
1459 }
1460 constructor() {
1461 // Since anonymous classes sometimes do not get validated by babel, do it manually.
1462 let target = new.target;
1463 const prototypes = [];
1464 while (target.__proto__ && target.__proto__.name) {
1465 prototypes.push(target.__proto__);
1466 target = target.__proto__;
1467 }
1468 prototypes.reverse().forEach(proto => this instanceof proto);
1469 }
1470 }
1471 exports["default"] = InstanceType;
1472
1473 /***/ }),
1474
1475 /***/ "../assets/dev/js/modules/imports/module.js":
1476 /*!**************************************************!*\
1477 !*** ../assets/dev/js/modules/imports/module.js ***!
1478 \**************************************************/
1479 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1480
1481 "use strict";
1482
1483
1484 __webpack_require__(/*! core-js/modules/es.error.cause.js */ "../node_modules/core-js/modules/es.error.cause.js");
1485 const Module = function () {
1486 const $ = jQuery,
1487 instanceParams = arguments,
1488 self = this,
1489 events = {};
1490 let settings;
1491 const ensureClosureMethods = function () {
1492 $.each(self, function (methodName) {
1493 const oldMethod = self[methodName];
1494 if ('function' !== typeof oldMethod) {
1495 return;
1496 }
1497 self[methodName] = function () {
1498 return oldMethod.apply(self, arguments);
1499 };
1500 });
1501 };
1502 const initSettings = function () {
1503 settings = self.getDefaultSettings();
1504 const instanceSettings = instanceParams[0];
1505 if (instanceSettings) {
1506 $.extend(true, settings, instanceSettings);
1507 }
1508 };
1509 const init = function () {
1510 self.__construct.apply(self, instanceParams);
1511 ensureClosureMethods();
1512 initSettings();
1513 self.trigger('init');
1514 };
1515 this.getItems = function (items, itemKey) {
1516 if (itemKey) {
1517 const keyStack = itemKey.split('.'),
1518 currentKey = keyStack.splice(0, 1);
1519 if (!keyStack.length) {
1520 return items[currentKey];
1521 }
1522 if (!items[currentKey]) {
1523 return;
1524 }
1525 return this.getItems(items[currentKey], keyStack.join('.'));
1526 }
1527 return items;
1528 };
1529 this.getSettings = function (setting) {
1530 return this.getItems(settings, setting);
1531 };
1532 this.setSettings = function (settingKey, value, settingsContainer) {
1533 if (!settingsContainer) {
1534 settingsContainer = settings;
1535 }
1536 if ('object' === typeof settingKey) {
1537 $.extend(settingsContainer, settingKey);
1538 return self;
1539 }
1540 const keyStack = settingKey.split('.'),
1541 currentKey = keyStack.splice(0, 1);
1542 if (!keyStack.length) {
1543 settingsContainer[currentKey] = value;
1544 return self;
1545 }
1546 if (!settingsContainer[currentKey]) {
1547 settingsContainer[currentKey] = {};
1548 }
1549 return self.setSettings(keyStack.join('.'), value, settingsContainer[currentKey]);
1550 };
1551 this.getErrorMessage = function (type, functionName) {
1552 let message;
1553 switch (type) {
1554 case 'forceMethodImplementation':
1555 message = `The method '${functionName}' must to be implemented in the inheritor child.`;
1556 break;
1557 default:
1558 message = 'An error occurs';
1559 }
1560 return message;
1561 };
1562
1563 // TODO: This function should be deleted ?.
1564 this.forceMethodImplementation = function (functionName) {
1565 throw new Error(this.getErrorMessage('forceMethodImplementation', functionName));
1566 };
1567 this.on = function (eventName, callback) {
1568 if ('object' === typeof eventName) {
1569 $.each(eventName, function (singleEventName) {
1570 self.on(singleEventName, this);
1571 });
1572 return self;
1573 }
1574 const eventNames = eventName.split(' ');
1575 eventNames.forEach(function (singleEventName) {
1576 if (!events[singleEventName]) {
1577 events[singleEventName] = [];
1578 }
1579 events[singleEventName].push(callback);
1580 });
1581 return self;
1582 };
1583 this.off = function (eventName, callback) {
1584 if (!events[eventName]) {
1585 return self;
1586 }
1587 if (!callback) {
1588 delete events[eventName];
1589 return self;
1590 }
1591 const callbackIndex = events[eventName].indexOf(callback);
1592 if (-1 !== callbackIndex) {
1593 delete events[eventName][callbackIndex];
1594
1595 // Reset array index (for next off on same event).
1596 events[eventName] = events[eventName].filter(val => val);
1597 }
1598 return self;
1599 };
1600 this.trigger = function (eventName) {
1601 const methodName = 'on' + eventName[0].toUpperCase() + eventName.slice(1),
1602 params = Array.prototype.slice.call(arguments, 1);
1603 if (self[methodName]) {
1604 self[methodName].apply(self, params);
1605 }
1606 const callbacks = events[eventName];
1607 if (!callbacks) {
1608 return self;
1609 }
1610 $.each(callbacks, function (index, callback) {
1611 callback.apply(self, params);
1612 });
1613 return self;
1614 };
1615 init();
1616 };
1617 Module.prototype.__construct = function () {};
1618 Module.prototype.getDefaultSettings = function () {
1619 return {};
1620 };
1621 Module.prototype.getConstructorID = function () {
1622 return this.constructor.name;
1623 };
1624 Module.extend = function (properties) {
1625 const $ = jQuery,
1626 parent = this;
1627 const child = function () {
1628 return parent.apply(this, arguments);
1629 };
1630 $.extend(child, parent);
1631 child.prototype = Object.create($.extend({}, parent.prototype, properties));
1632 child.prototype.constructor = child;
1633 child.__super__ = parent.prototype;
1634 return child;
1635 };
1636 module.exports = Module;
1637
1638 /***/ }),
1639
1640 /***/ "../assets/dev/js/modules/imports/utils/masonry.js":
1641 /*!*********************************************************!*\
1642 !*** ../assets/dev/js/modules/imports/utils/masonry.js ***!
1643 \*********************************************************/
1644 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1645
1646 "use strict";
1647
1648
1649 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1650 Object.defineProperty(exports, "__esModule", ({
1651 value: true
1652 }));
1653 exports["default"] = void 0;
1654 var _viewModule = _interopRequireDefault(__webpack_require__(/*! ../view-module */ "../assets/dev/js/modules/imports/view-module.js"));
1655 var _default = _viewModule.default.extend({
1656 getDefaultSettings() {
1657 return {
1658 container: null,
1659 items: null,
1660 columnsCount: 3,
1661 verticalSpaceBetween: 30
1662 };
1663 },
1664 getDefaultElements() {
1665 return {
1666 $container: jQuery(this.getSettings('container')),
1667 $items: jQuery(this.getSettings('items'))
1668 };
1669 },
1670 run() {
1671 var heights = [],
1672 distanceFromTop = this.elements.$container.position().top,
1673 settings = this.getSettings(),
1674 columnsCount = settings.columnsCount;
1675 distanceFromTop += parseInt(this.elements.$container.css('margin-top'), 10);
1676 this.elements.$items.each(function (index) {
1677 var row = Math.floor(index / columnsCount),
1678 $item = jQuery(this),
1679 itemHeight = $item[0].getBoundingClientRect().height + settings.verticalSpaceBetween;
1680 if (row) {
1681 var itemPosition = $item.position(),
1682 indexAtRow = index % columnsCount,
1683 pullHeight = itemPosition.top - distanceFromTop - heights[indexAtRow];
1684 pullHeight -= parseInt($item.css('margin-top'), 10);
1685 pullHeight *= -1;
1686 $item.css('margin-top', pullHeight + 'px');
1687 heights[indexAtRow] += itemHeight;
1688 } else {
1689 heights.push(itemHeight);
1690 }
1691 });
1692 }
1693 });
1694 exports["default"] = _default;
1695
1696 /***/ }),
1697
1698 /***/ "../assets/dev/js/modules/imports/utils/scroll.js":
1699 /*!********************************************************!*\
1700 !*** ../assets/dev/js/modules/imports/utils/scroll.js ***!
1701 \********************************************************/
1702 /***/ ((__unused_webpack_module, exports) => {
1703
1704 "use strict";
1705
1706
1707 Object.defineProperty(exports, "__esModule", ({
1708 value: true
1709 }));
1710 exports["default"] = void 0;
1711 // Moved from elementor pro: 'assets/dev/js/frontend/utils'
1712 class Scroll {
1713 /**
1714 * @param {Object} obj
1715 * @param {number} obj.sensitivity - Value between 0-100 - Will determine the intersection trigger points on the element
1716 * @param {Function} obj.callback - Will be triggered on each intersection point between the element and the viewport top/bottom
1717 * @param {string} obj.offset - Offset between the element intersection points and the viewport, written like in CSS: '-50% 0 -25%'
1718 * @param {HTMLElement} obj.root - The element that the events will be relative to, if 'null' will be relative to the viewport
1719 */
1720 static scrollObserver(obj) {
1721 let lastScrollY = 0;
1722
1723 // Generating threshholds points along the animation height
1724 // More threshholds points = more trigger points of the callback
1725 const buildThreshholds = function () {
1726 let sensitivityPercentage = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
1727 const threshholds = [];
1728 if (sensitivityPercentage > 0 && sensitivityPercentage <= 100) {
1729 const increment = 100 / sensitivityPercentage;
1730 for (let i = 0; i <= 100; i += increment) {
1731 threshholds.push(i / 100);
1732 }
1733 } else {
1734 threshholds.push(0);
1735 }
1736 return threshholds;
1737 };
1738 const options = {
1739 root: obj.root || null,
1740 rootMargin: obj.offset || '0px',
1741 threshold: buildThreshholds(obj.sensitivity)
1742 };
1743 function handleIntersect(entries) {
1744 const currentScrollY = entries[0].boundingClientRect.y,
1745 isInViewport = entries[0].isIntersecting,
1746 intersectionScrollDirection = currentScrollY < lastScrollY ? 'down' : 'up',
1747 scrollPercentage = Math.abs(parseFloat((entries[0].intersectionRatio * 100).toFixed(2)));
1748 obj.callback({
1749 sensitivity: obj.sensitivity,
1750 isInViewport,
1751 scrollPercentage,
1752 intersectionScrollDirection
1753 });
1754 lastScrollY = currentScrollY;
1755 }
1756 return new IntersectionObserver(handleIntersect, options);
1757 }
1758
1759 /**
1760 * @param {jQuery.Element} $element
1761 * @param {Object} offsetObj
1762 * @param {number} offsetObj.start - Offset start value in percentages
1763 * @param {number} offsetObj.end - Offset end value in percentages
1764 */
1765 static getElementViewportPercentage($element) {
1766 let offsetObj = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
1767 const elementOffset = $element[0].getBoundingClientRect(),
1768 offsetStart = offsetObj.start || 0,
1769 offsetEnd = offsetObj.end || 0,
1770 windowStartOffset = window.innerHeight * offsetStart / 100,
1771 windowEndOffset = window.innerHeight * offsetEnd / 100,
1772 y1 = elementOffset.top - window.innerHeight,
1773 y2 = elementOffset.top + windowStartOffset + $element.height(),
1774 startPosition = 0 - y1 + windowStartOffset,
1775 endPosition = y2 - y1 + windowEndOffset,
1776 percent = Math.max(0, Math.min(startPosition / endPosition, 1));
1777 return parseFloat((percent * 100).toFixed(2));
1778 }
1779
1780 /**
1781 * @param {Object} offsetObj
1782 * @param {number} offsetObj.start - Offset start value in percentages
1783 * @param {number} offsetObj.end - Offset end value in percentages
1784 * @param {number} limitPageHeight - Will limit the page height calculation
1785 */
1786 static getPageScrollPercentage() {
1787 let offsetObj = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1788 let limitPageHeight = arguments.length > 1 ? arguments[1] : undefined;
1789 const offsetStart = offsetObj.start || 0,
1790 offsetEnd = offsetObj.end || 0,
1791 initialPageHeight = limitPageHeight || document.documentElement.scrollHeight - document.documentElement.clientHeight,
1792 heightOffset = initialPageHeight * offsetStart / 100,
1793 pageRange = initialPageHeight + heightOffset + initialPageHeight * offsetEnd / 100,
1794 scrollPos = document.documentElement.scrollTop + document.body.scrollTop + heightOffset;
1795 return scrollPos / pageRange * 100;
1796 }
1797 }
1798 exports["default"] = Scroll;
1799
1800 /***/ }),
1801
1802 /***/ "../assets/dev/js/modules/imports/view-module.js":
1803 /*!*******************************************************!*\
1804 !*** ../assets/dev/js/modules/imports/view-module.js ***!
1805 \*******************************************************/
1806 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1807
1808 "use strict";
1809
1810
1811 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1812 Object.defineProperty(exports, "__esModule", ({
1813 value: true
1814 }));
1815 exports["default"] = void 0;
1816 var _module = _interopRequireDefault(__webpack_require__(/*! ./module */ "../assets/dev/js/modules/imports/module.js"));
1817 var _default = _module.default.extend({
1818 elements: null,
1819 getDefaultElements() {
1820 return {};
1821 },
1822 bindEvents() {},
1823 onInit() {
1824 this.initElements();
1825 this.bindEvents();
1826 },
1827 initElements() {
1828 this.elements = this.getDefaultElements();
1829 }
1830 });
1831 exports["default"] = _default;
1832
1833 /***/ }),
1834
1835 /***/ "../assets/dev/js/modules/modules.js":
1836 /*!*******************************************!*\
1837 !*** ../assets/dev/js/modules/modules.js ***!
1838 \*******************************************/
1839 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1840
1841 "use strict";
1842
1843
1844 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1845 Object.defineProperty(exports, "__esModule", ({
1846 value: true
1847 }));
1848 exports["default"] = void 0;
1849 var _module = _interopRequireDefault(__webpack_require__(/*! ./imports/module */ "../assets/dev/js/modules/imports/module.js"));
1850 var _viewModule = _interopRequireDefault(__webpack_require__(/*! ./imports/view-module */ "../assets/dev/js/modules/imports/view-module.js"));
1851 var _argsObject = _interopRequireDefault(__webpack_require__(/*! ./imports/args-object */ "../assets/dev/js/modules/imports/args-object.js"));
1852 var _masonry = _interopRequireDefault(__webpack_require__(/*! ./imports/utils/masonry */ "../assets/dev/js/modules/imports/utils/masonry.js"));
1853 var _scroll = _interopRequireDefault(__webpack_require__(/*! ./imports/utils/scroll */ "../assets/dev/js/modules/imports/utils/scroll.js"));
1854 var _forceMethodImplementation = _interopRequireDefault(__webpack_require__(/*! ./imports/force-method-implementation */ "../assets/dev/js/modules/imports/force-method-implementation.js"));
1855 var _default = window.elementorModules = {
1856 Module: _module.default,
1857 ViewModule: _viewModule.default,
1858 ArgsObject: _argsObject.default,
1859 ForceMethodImplementation: _forceMethodImplementation.default,
1860 utils: {
1861 Masonry: _masonry.default,
1862 Scroll: _scroll.default
1863 }
1864 };
1865 exports["default"] = _default;
1866
1867 /***/ }),
1868
1869 /***/ "../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion-title-keyboard-handler.js":
1870 /*!**********************************************************************************************************!*\
1871 !*** ../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion-title-keyboard-handler.js ***!
1872 \**********************************************************************************************************/
1873 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1874
1875 "use strict";
1876
1877
1878 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1879 Object.defineProperty(exports, "__esModule", ({
1880 value: true
1881 }));
1882 exports["default"] = void 0;
1883 var _nestedTitleKeyboardHandler = _interopRequireDefault(__webpack_require__(/*! elementor-assets-js/frontend/handlers/accessibility/nested-title-keyboard-handler */ "../assets/dev/js/frontend/handlers/accessibility/nested-title-keyboard-handler.js"));
1884 class NestedAccordionTitleKeyboardHandler extends _nestedTitleKeyboardHandler.default {
1885 __construct() {
1886 super.__construct(...arguments);
1887 const config = arguments.length <= 0 ? undefined : arguments[0];
1888 this.toggleTitle = config.toggleTitle;
1889 }
1890 getDefaultSettings() {
1891 const parentSettings = super.getDefaultSettings();
1892 return {
1893 ...parentSettings,
1894 selectors: {
1895 itemTitle: '.e-n-accordion-item-title',
1896 itemContainer: '.e-n-accordion-item > .e-con'
1897 },
1898 ariaAttributes: {
1899 titleStateAttribute: 'aria-expanded',
1900 activeTitleSelector: '[aria-expanded="true"]'
1901 },
1902 datasets: {
1903 titleIndex: 'data-accordion-index'
1904 }
1905 };
1906 }
1907 handeTitleLinkEnterOrSpaceEvent(event) {
1908 this.toggleTitle(event);
1909 }
1910 handleContentElementEscapeEvents(event) {
1911 this.getActiveTitleElement().trigger('focus');
1912 this.toggleTitle(event);
1913 }
1914 handleTitleEscapeKeyEvents(event) {
1915 const detailsNode = event?.currentTarget?.parentElement,
1916 isOpen = detailsNode?.open;
1917 if (isOpen) {
1918 this.toggleTitle(event);
1919 }
1920 }
1921 }
1922 exports["default"] = NestedAccordionTitleKeyboardHandler;
1923
1924 /***/ }),
1925
1926 /***/ "../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion.js":
1927 /*!***********************************************************************************!*\
1928 !*** ../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion.js ***!
1929 \***********************************************************************************/
1930 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1931
1932 "use strict";
1933
1934
1935 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
1936 Object.defineProperty(exports, "__esModule", ({
1937 value: true
1938 }));
1939 exports["default"] = void 0;
1940 var _base = _interopRequireDefault(__webpack_require__(/*! elementor-frontend/handlers/base */ "../assets/dev/js/frontend/handlers/base.js"));
1941 var _nestedAccordionTitleKeyboardHandler = _interopRequireDefault(__webpack_require__(/*! ./nested-accordion-title-keyboard-handler */ "../modules/nested-accordion/assets/js/frontend/handlers/nested-accordion-title-keyboard-handler.js"));
1942 class NestedAccordion extends _base.default {
1943 constructor() {
1944 super(...arguments);
1945 this.animations = new Map();
1946 }
1947 getDefaultSettings() {
1948 return {
1949 selectors: {
1950 accordion: '.e-n-accordion',
1951 accordionContentContainers: '.e-n-accordion > .e-con',
1952 accordionItems: '.e-n-accordion-item',
1953 accordionItemTitles: '.e-n-accordion-item-title',
1954 accordionContent: '.e-n-accordion-item > .e-con',
1955 accordionWrapper: '.e-n-accordion-item'
1956 },
1957 default_state: 'expanded'
1958 };
1959 }
1960 getDefaultElements() {
1961 const selectors = this.getSettings('selectors');
1962 return {
1963 $accordion: this.findElement(selectors.accordion),
1964 $contentContainers: this.findElement(selectors.accordionContentContainers),
1965 $accordionItems: this.findElement(selectors.accordionItems),
1966 $accordionTitles: this.findElement(selectors.accordionItemTitles),
1967 $accordionContent: this.findElement(selectors.accordionContent)
1968 };
1969 }
1970 onInit() {
1971 super.onInit(...arguments);
1972 if (elementorFrontend.isEditMode()) {
1973 this.interlaceContainers();
1974 }
1975 this.injectKeyboardHandler();
1976 }
1977 injectKeyboardHandler() {
1978 if ('nested-accordion.default' === this.getSettings('elementName')) {
1979 new _nestedAccordionTitleKeyboardHandler.default({
1980 $element: this.$element,
1981 toggleTitle: this.clickListener.bind(this)
1982 });
1983 }
1984 }
1985 interlaceContainers() {
1986 const {
1987 $contentContainers,
1988 $accordionItems
1989 } = this.getDefaultElements();
1990 $contentContainers.each((index, element) => {
1991 $accordionItems[index].appendChild(element);
1992 });
1993 }
1994 bindEvents() {
1995 this.elements.$accordionTitles.on('click', this.clickListener.bind(this));
1996 }
1997 unbindEvents() {
1998 this.elements.$accordionTitles.off();
1999 }
2000 clickListener(event) {
2001 event.preventDefault();
2002 const settings = this.getSettings(),
2003 accordionItem = event?.currentTarget?.closest(settings.selectors.accordionWrapper),
2004 itemSummary = accordionItem.querySelector(settings.selectors.accordionItemTitles),
2005 accordionContent = accordionItem.querySelector(settings.selectors.accordionContent),
2006 {
2007 max_items_expended: maxItemsExpended
2008 } = this.getElementSettings(),
2009 {
2010 $accordionTitles,
2011 $accordionItems
2012 } = this.elements;
2013 if ('one' === maxItemsExpended) {
2014 this.closeAllItems($accordionItems, $accordionTitles);
2015 }
2016 if (!accordionItem.open) {
2017 this.prepareOpenAnimation(accordionItem, itemSummary, accordionContent);
2018 } else {
2019 this.closeAccordionItem(accordionItem, itemSummary);
2020 }
2021 }
2022 animateItem(accordionItem, startHeight, endHeight, isOpen) {
2023 accordionItem.style.overflow = 'hidden';
2024 let animation = this.animations.get(accordionItem);
2025 if (animation) {
2026 animation.cancel();
2027 }
2028 animation = accordionItem.animate({
2029 height: [startHeight, endHeight]
2030 }, {
2031 duration: this.getAnimationDuration()
2032 });
2033 animation.onfinish = () => this.onAnimationFinish(accordionItem, isOpen);
2034 this.animations.set(accordionItem, animation);
2035 accordionItem.querySelector('summary')?.setAttribute('aria-expanded', isOpen);
2036 }
2037 closeAccordionItem(accordionItem, accordionItemTitle) {
2038 const startHeight = `${accordionItem.offsetHeight}px`,
2039 endHeight = `${accordionItemTitle.offsetHeight}px`;
2040 this.animateItem(accordionItem, startHeight, endHeight, false);
2041 }
2042 prepareOpenAnimation(accordionItem, accordionItemTitle, accordionItemContent) {
2043 accordionItem.style.overflow = 'hidden';
2044 accordionItem.style.height = `${accordionItem.offsetHeight}px`;
2045 accordionItem.open = true;
2046 window.requestAnimationFrame(() => this.openAccordionItem(accordionItem, accordionItemTitle, accordionItemContent));
2047 }
2048 openAccordionItem(accordionItem, accordionItemTitle, accordionItemContent) {
2049 const startHeight = `${accordionItem.offsetHeight}px`,
2050 endHeight = `${accordionItemTitle.offsetHeight + accordionItemContent.offsetHeight}px`;
2051 this.animateItem(accordionItem, startHeight, endHeight, true);
2052 }
2053 onAnimationFinish(accordionItem, isOpen) {
2054 accordionItem.open = isOpen;
2055 this.animations.set(accordionItem, null);
2056 accordionItem.style.height = accordionItem.style.overflow = '';
2057 }
2058 closeAllItems($items, $titles) {
2059 $titles.each((index, title) => {
2060 this.closeAccordionItem($items[index], title);
2061 });
2062 }
2063 getAnimationDuration() {
2064 const {
2065 size,
2066 unit
2067 } = this.getElementSettings('n_accordion_animation_duration');
2068 return size * ('ms' === unit ? 1 : 1000);
2069 }
2070 }
2071 exports["default"] = NestedAccordion;
2072
2073 /***/ }),
2074
2075 /***/ "../modules/nested-tabs/assets/js/frontend/handlers/nested-tabs.js":
2076 /*!*************************************************************************!*\
2077 !*** ../modules/nested-tabs/assets/js/frontend/handlers/nested-tabs.js ***!
2078 \*************************************************************************/
2079 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2080
2081 "use strict";
2082
2083
2084 var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
2085 Object.defineProperty(exports, "__esModule", ({
2086 value: true
2087 }));
2088 exports["default"] = void 0;
2089 var _base = _interopRequireDefault(__webpack_require__(/*! elementor-frontend/handlers/base */ "../assets/dev/js/frontend/handlers/base.js"));
2090 var _flexHorizontalScroll = __webpack_require__(/*! elementor-frontend-utils/flex-horizontal-scroll */ "../assets/dev/js/frontend/utils/flex-horizontal-scroll.js");
2091 class NestedTabs extends _base.default {
2092 constructor() {
2093 super(...arguments);
2094 this.resizeListenerNestedTabs = null;
2095 }
2096
2097 /**
2098 * @param {string|number} tabIndex
2099 *
2100 * @return {string}
2101 */
2102 getTabTitleFilterSelector(tabIndex) {
2103 return `[data-tab-index="${tabIndex}"]`;
2104 }
2105
2106 /**
2107 * @param {string|number} tabIndex
2108 *
2109 * @return {string}
2110 */
2111 getTabContentFilterSelector(tabIndex) {
2112 return `*:nth-child(${tabIndex})`;
2113 }
2114
2115 /**
2116 * @param {HTMLElement} tabTitleElement
2117 *
2118 * @return {string}
2119 */
2120 getTabIndex(tabTitleElement) {
2121 return tabTitleElement.getAttribute('data-tab-index');
2122 }
2123 getDefaultSettings() {
2124 return {
2125 selectors: {
2126 widgetContainer: '.e-n-tabs',
2127 tabTitle: '.e-n-tab-title',
2128 tabContent: '.e-n-tabs-content > .e-con',
2129 headingContainer: '.e-n-tabs-heading',
2130 activeTabContentContainers: '.e-con.e-active'
2131 },
2132 classes: {
2133 active: 'e-active'
2134 },
2135 ariaAttributes: {
2136 titleStateAttribute: 'aria-selected',
2137 activeTitleSelector: '[aria-selected="true"]'
2138 },
2139 showTabFn: 'show',
2140 hideTabFn: 'hide',
2141 toggleSelf: false,
2142 hidePrevious: true,
2143 autoExpand: true
2144 };
2145 }
2146 getDefaultElements() {
2147 const selectors = this.getSettings('selectors');
2148 return {
2149 $tabTitles: this.findElement(selectors.tabTitle),
2150 $tabContents: this.findElement(selectors.tabContent),
2151 $headingContainer: this.findElement(selectors.headingContainer)
2152 };
2153 }
2154 getKeyboardNavigationSettings() {
2155 return this.getSettings();
2156 }
2157 activateDefaultTab() {
2158 const settings = this.getSettings();
2159 const defaultActiveTab = this.getEditSettings('activeItemIndex') || 1,
2160 originalToggleMethods = {
2161 showTabFn: settings.showTabFn,
2162 hideTabFn: settings.hideTabFn
2163 };
2164
2165 // Toggle tabs without animation to avoid jumping
2166 this.setSettings({
2167 showTabFn: 'show',
2168 hideTabFn: 'hide'
2169 });
2170 this.changeActiveTab(defaultActiveTab);
2171
2172 // Return back original toggle effects
2173 this.setSettings(originalToggleMethods);
2174 }
2175 deactivateActiveTab(newTabIndex) {
2176 const settings = this.getSettings(),
2177 activeClass = settings.classes.active,
2178 activeTitleFilter = settings.ariaAttributes.activeTitleSelector,
2179 activeContentFilter = '.' + activeClass,
2180 $activeTitle = this.elements.$tabTitles.filter(activeTitleFilter),
2181 $activeContent = this.elements.$tabContents.filter(activeContentFilter);
2182 this.setTabDeactivationAttributes($activeTitle, newTabIndex);
2183 $activeContent.removeClass(activeClass);
2184 $activeContent[settings.hideTabFn](0, () => this.onHideTabContent($activeContent));
2185 return $activeContent;
2186 }
2187 getTitleActivationAttributes() {
2188 const titleStateAttribute = this.getSettings('ariaAttributes').titleStateAttribute;
2189 return {
2190 tabindex: '0',
2191 [titleStateAttribute]: 'true'
2192 };
2193 }
2194 setTabDeactivationAttributes($activeTitle) {
2195 const titleStateAttribute = this.getSettings('ariaAttributes').titleStateAttribute;
2196 $activeTitle.attr({
2197 tabindex: '-1',
2198 [titleStateAttribute]: 'false'
2199 });
2200 }
2201 onHideTabContent() {}
2202 activateTab(tabIndex) {
2203 const settings = this.getSettings(),
2204 activeClass = settings.classes.active,
2205 animationDuration = 'show' === settings.showTabFn ? 0 : 400;
2206 let $requestedTitle = this.elements.$tabTitles.filter(this.getTabTitleFilterSelector(tabIndex)),
2207 $requestedContent = this.elements.$tabContents.filter(this.getTabContentFilterSelector(tabIndex));
2208
2209 // Check if the tabIndex exists.
2210 if (!$requestedTitle.length) {
2211 // Activate the previous tab and ensure that the tab index is not less than 1.
2212 const previousTabIndex = Math.max(tabIndex - 1, 1);
2213 $requestedTitle = this.elements.$tabTitles.filter(this.getTabTitleFilterSelector(previousTabIndex));
2214 $requestedContent = this.elements.$tabContents.filter(this.getTabContentFilterSelector(previousTabIndex));
2215 }
2216 $requestedTitle.attr(this.getTitleActivationAttributes());
2217 $requestedContent.addClass(activeClass);
2218 $requestedContent[settings.showTabFn](animationDuration, () => this.onShowTabContent($requestedContent));
2219 }
2220 onShowTabContent($requestedContent) {
2221 elementorFrontend.elements.$window.trigger('elementor-pro/motion-fx/recalc');
2222 elementorFrontend.elements.$window.trigger('elementor/nested-tabs/activate', $requestedContent);
2223 elementorFrontend.elements.$window.trigger('elementor/bg-video/recalc');
2224 }
2225 isActiveTab(tabIndex) {
2226 return 'true' === this.elements.$tabTitles.filter('[data-tab-index="' + tabIndex + '"]').attr(this.getSettings('ariaAttributes').titleStateAttribute);
2227 }
2228 onTabClick(event) {
2229 event.preventDefault();
2230 this.changeActiveTab(event.currentTarget?.getAttribute('data-tab-index'), true);
2231 }
2232 getTabEvents() {
2233 return {
2234 click: this.onTabClick.bind(this)
2235 };
2236 }
2237 getHeadingEvents() {
2238 const navigationWrapper = this.elements.$headingContainer[0];
2239 return {
2240 mousedown: _flexHorizontalScroll.changeScrollStatus.bind(this, navigationWrapper),
2241 mouseup: _flexHorizontalScroll.changeScrollStatus.bind(this, navigationWrapper),
2242 mouseleave: _flexHorizontalScroll.changeScrollStatus.bind(this, navigationWrapper),
2243 mousemove: _flexHorizontalScroll.setHorizontalTitleScrollValues.bind(this, navigationWrapper, this.getHorizontalScrollSetting())
2244 };
2245 }
2246 bindEvents() {
2247 this.elements.$tabTitles.on(this.getTabEvents());
2248 this.elements.$headingContainer.on(this.getHeadingEvents());
2249 const settingsObject = {
2250 element: this.elements.$headingContainer[0],
2251 direction: this.getTabsDirection(),
2252 justifyCSSVariable: '--n-tabs-heading-justify-content',
2253 horizontalScrollStatus: this.getHorizontalScrollSetting()
2254 };
2255 this.resizeListenerNestedTabs = _flexHorizontalScroll.setHorizontalScrollAlignment.bind(this, settingsObject);
2256 elementorFrontend.elements.$window.on('resize', this.resizeListenerNestedTabs);
2257 elementorFrontend.elements.$window.on('resize', this.setTouchMode.bind(this));
2258 elementorFrontend.elements.$window.on('elementor/nested-tabs/activate', this.reInitSwipers);
2259 elementorFrontend.elements.$window.on('elementor/nested-elements/activate-by-keyboard', this.changeActiveTabByKeyboard.bind(this));
2260 }
2261 unbindEvents() {
2262 this.elements.$tabTitles.off();
2263 this.elements.$headingContainer.off();
2264 this.elements.$tabContents.children().off();
2265 elementorFrontend.elements.$window.off('resize');
2266 elementorFrontend.elements.$window.off('elementor/nested-tabs/activate');
2267 }
2268
2269 /**
2270 * Fixes issues where Swipers that have been initialized while a tab is not visible are not properly rendered
2271 * and when switching to the tab the swiper will not respect any of the chosen `autoplay` related settings.
2272 *
2273 * This is triggered when switching to a nested tab, looks for Swipers in the tab content and reinitializes them.
2274 *
2275 * @param {Object} event - Incoming event.
2276 * @param {Object} content - Active nested tab dom element.
2277 */
2278 reInitSwipers(event, content) {
2279 const swiperElements = content.querySelectorAll(`.${elementorFrontend.config.swiperClass}`);
2280 for (const element of swiperElements) {
2281 if (!element.swiper) {
2282 return;
2283 }
2284 element.swiper.initialized = false;
2285 element.swiper.init();
2286 }
2287 }
2288 onInit() {
2289 super.onInit(...arguments);
2290 if (this.getSettings('autoExpand')) {
2291 this.activateDefaultTab();
2292 }
2293 const settingsObject = {
2294 element: this.elements.$headingContainer[0],
2295 direction: this.getTabsDirection(),
2296 justifyCSSVariable: '--n-tabs-heading-justify-content',
2297 horizontalScrollStatus: this.getHorizontalScrollSetting()
2298 };
2299 (0, _flexHorizontalScroll.setHorizontalScrollAlignment)(settingsObject);
2300 this.setTouchMode();
2301 if ('nested-tabs.default' === this.getSettings('elementName')) {
2302 new elementorModules.frontend.handlers.NestedTitleKeyboardHandler(this.getKeyboardNavigationSettings());
2303 }
2304 }
2305 onEditSettingsChange(propertyName, value) {
2306 if ('activeItemIndex' === propertyName) {
2307 this.changeActiveTab(value, false);
2308 }
2309 }
2310 onElementChange(propertyName) {
2311 if (this.checkSliderPropsToWatch(propertyName)) {
2312 const settingsObject = {
2313 element: this.elements.$headingContainer[0],
2314 direction: this.getTabsDirection(),
2315 justifyCSSVariable: '--n-tabs-heading-justify-content',
2316 horizontalScrollStatus: this.getHorizontalScrollSetting()
2317 };
2318 (0, _flexHorizontalScroll.setHorizontalScrollAlignment)(settingsObject);
2319 }
2320 }
2321 checkSliderPropsToWatch(propertyName) {
2322 return 0 === propertyName.indexOf('horizontal_scroll') || 'breakpoint_selector' === propertyName || 0 === propertyName.indexOf('tabs_justify_horizontal') || 0 === propertyName.indexOf('tabs_title_space_between');
2323 }
2324
2325 /**
2326 * @param {string} tabIndex
2327 * @param {boolean} fromUser - Whether the call is caused by the user or internal.
2328 */
2329 changeActiveTab(tabIndex) {
2330 let fromUser = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
2331 // `document/repeater/select` is used only in the editor, only when the element
2332 // is in the currently-edited document, and only when its not internal call,
2333 if (fromUser && this.isEdit && this.isElementInTheCurrentDocument()) {
2334 return window.top.$e.run('document/repeater/select', {
2335 container: elementor.getContainer(this.$element.attr('data-id')),
2336 index: parseInt(tabIndex)
2337 });
2338 }
2339 const isActiveTab = this.isActiveTab(tabIndex),
2340 settings = this.getSettings();
2341 if ((settings.toggleSelf || !isActiveTab) && settings.hidePrevious) {
2342 this.deactivateActiveTab(tabIndex);
2343 }
2344 if (!settings.hidePrevious && isActiveTab) {
2345 this.deactivateActiveTab(tabIndex);
2346 }
2347 if (!isActiveTab) {
2348 if (this.isAccordionVersion()) {
2349 this.activateMobileTab(tabIndex);
2350 return;
2351 }
2352 this.activateTab(tabIndex);
2353 }
2354 }
2355 changeActiveTabByKeyboard(event, settings) {
2356 if (settings.widgetId.toString() !== this.getID().toString()) {
2357 return;
2358 }
2359 this.changeActiveTab(settings.titleIndex, true);
2360 }
2361 activateMobileTab(tabIndex) {
2362 // Timeout time added to ensure that opening of the active tab starts after closing the other tab on Apple devices.
2363 setTimeout(() => {
2364 this.activateTab(tabIndex);
2365 this.forceActiveTabToBeInViewport(tabIndex);
2366 }, 10);
2367 }
2368 forceActiveTabToBeInViewport(tabIndex) {
2369 if (!elementorFrontend.isEditMode()) {
2370 return;
2371 }
2372 const $activeTabTitle = this.elements.$tabTitles.filter(this.getTabTitleFilterSelector(tabIndex));
2373 if (!elementor.helpers.isInViewport($activeTabTitle[0])) {
2374 $activeTabTitle[0].scrollIntoView({
2375 block: 'center'
2376 });
2377 }
2378 }
2379 getActiveClass() {
2380 const settings = this.getSettings();
2381 return settings.classes.active;
2382 }
2383 getTabsDirection() {
2384 const currentDevice = elementorFrontend.getCurrentDeviceMode();
2385 return elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'tabs_justify_horizontal', '', currentDevice);
2386 }
2387 getHorizontalScrollSetting() {
2388 const currentDevice = elementorFrontend.getCurrentDeviceMode();
2389 return elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'horizontal_scroll', '', currentDevice);
2390 }
2391 isAccordionVersion() {
2392 return 'contents' === this.elements.$headingContainer.css('display');
2393 }
2394 setTouchMode() {
2395 const widgetSelector = this.getSettings('selectors').widgetContainer;
2396 if (elementorFrontend.isEditMode() || 'resize' === event?.type) {
2397 const responsiveDevices = ['mobile', 'mobile_extra', 'tablet', 'tablet_extra'],
2398 currentDevice = elementorFrontend.getCurrentDeviceMode();
2399 if (-1 !== responsiveDevices.indexOf(currentDevice)) {
2400 this.$element.find(widgetSelector).attr('data-touch-mode', 'true');
2401 return;
2402 }
2403 } else if ('ontouchstart' in window) {
2404 this.$element.find(widgetSelector).attr('data-touch-mode', 'true');
2405 return;
2406 }
2407 this.$element.find(widgetSelector).attr('data-touch-mode', 'false');
2408 }
2409 }
2410 exports["default"] = NestedTabs;
2411
2412 /***/ }),
2413
2414 /***/ "../node_modules/core-js/internals/a-callable.js":
2415 /*!*******************************************************!*\
2416 !*** ../node_modules/core-js/internals/a-callable.js ***!
2417 \*******************************************************/
2418 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2419
2420 "use strict";
2421
2422 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
2423 var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../node_modules/core-js/internals/try-to-string.js");
2424
2425 var $TypeError = TypeError;
2426
2427 // `Assert: IsCallable(argument) is true`
2428 module.exports = function (argument) {
2429 if (isCallable(argument)) return argument;
2430 throw $TypeError(tryToString(argument) + ' is not a function');
2431 };
2432
2433
2434 /***/ }),
2435
2436 /***/ "../node_modules/core-js/internals/a-possible-prototype.js":
2437 /*!*****************************************************************!*\
2438 !*** ../node_modules/core-js/internals/a-possible-prototype.js ***!
2439 \*****************************************************************/
2440 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2441
2442 "use strict";
2443
2444 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
2445
2446 var $String = String;
2447 var $TypeError = TypeError;
2448
2449 module.exports = function (argument) {
2450 if (typeof argument == 'object' || isCallable(argument)) return argument;
2451 throw $TypeError("Can't set " + $String(argument) + ' as a prototype');
2452 };
2453
2454
2455 /***/ }),
2456
2457 /***/ "../node_modules/core-js/internals/an-object.js":
2458 /*!******************************************************!*\
2459 !*** ../node_modules/core-js/internals/an-object.js ***!
2460 \******************************************************/
2461 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2462
2463 "use strict";
2464
2465 var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
2466
2467 var $String = String;
2468 var $TypeError = TypeError;
2469
2470 // `Assert: Type(argument) is Object`
2471 module.exports = function (argument) {
2472 if (isObject(argument)) return argument;
2473 throw $TypeError($String(argument) + ' is not an object');
2474 };
2475
2476
2477 /***/ }),
2478
2479 /***/ "../node_modules/core-js/internals/array-includes.js":
2480 /*!***********************************************************!*\
2481 !*** ../node_modules/core-js/internals/array-includes.js ***!
2482 \***********************************************************/
2483 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2484
2485 "use strict";
2486
2487 var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
2488 var toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "../node_modules/core-js/internals/to-absolute-index.js");
2489 var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../node_modules/core-js/internals/length-of-array-like.js");
2490
2491 // `Array.prototype.{ indexOf, includes }` methods implementation
2492 var createMethod = function (IS_INCLUDES) {
2493 return function ($this, el, fromIndex) {
2494 var O = toIndexedObject($this);
2495 var length = lengthOfArrayLike(O);
2496 var index = toAbsoluteIndex(fromIndex, length);
2497 var value;
2498 // Array#includes uses SameValueZero equality algorithm
2499 // eslint-disable-next-line no-self-compare -- NaN check
2500 if (IS_INCLUDES && el != el) while (length > index) {
2501 value = O[index++];
2502 // eslint-disable-next-line no-self-compare -- NaN check
2503 if (value != value) return true;
2504 // Array#indexOf ignores holes, Array#includes - not
2505 } else for (;length > index; index++) {
2506 if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
2507 } return !IS_INCLUDES && -1;
2508 };
2509 };
2510
2511 module.exports = {
2512 // `Array.prototype.includes` method
2513 // https://tc39.es/ecma262/#sec-array.prototype.includes
2514 includes: createMethod(true),
2515 // `Array.prototype.indexOf` method
2516 // https://tc39.es/ecma262/#sec-array.prototype.indexof
2517 indexOf: createMethod(false)
2518 };
2519
2520
2521 /***/ }),
2522
2523 /***/ "../node_modules/core-js/internals/classof-raw.js":
2524 /*!********************************************************!*\
2525 !*** ../node_modules/core-js/internals/classof-raw.js ***!
2526 \********************************************************/
2527 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2528
2529 "use strict";
2530
2531 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
2532
2533 var toString = uncurryThis({}.toString);
2534 var stringSlice = uncurryThis(''.slice);
2535
2536 module.exports = function (it) {
2537 return stringSlice(toString(it), 8, -1);
2538 };
2539
2540
2541 /***/ }),
2542
2543 /***/ "../node_modules/core-js/internals/classof.js":
2544 /*!****************************************************!*\
2545 !*** ../node_modules/core-js/internals/classof.js ***!
2546 \****************************************************/
2547 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2548
2549 "use strict";
2550
2551 var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "../node_modules/core-js/internals/to-string-tag-support.js");
2552 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
2553 var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js");
2554 var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
2555
2556 var TO_STRING_TAG = wellKnownSymbol('toStringTag');
2557 var $Object = Object;
2558
2559 // ES3 wrong here
2560 var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
2561
2562 // fallback for IE11 Script Access Denied error
2563 var tryGet = function (it, key) {
2564 try {
2565 return it[key];
2566 } catch (error) { /* empty */ }
2567 };
2568
2569 // getting tag from ES6+ `Object.prototype.toString`
2570 module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
2571 var O, tag, result;
2572 return it === undefined ? 'Undefined' : it === null ? 'Null'
2573 // @@toStringTag case
2574 : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
2575 // builtinTag case
2576 : CORRECT_ARGUMENTS ? classofRaw(O)
2577 // ES3 arguments fallback
2578 : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
2579 };
2580
2581
2582 /***/ }),
2583
2584 /***/ "../node_modules/core-js/internals/copy-constructor-properties.js":
2585 /*!************************************************************************!*\
2586 !*** ../node_modules/core-js/internals/copy-constructor-properties.js ***!
2587 \************************************************************************/
2588 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2589
2590 "use strict";
2591
2592 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
2593 var ownKeys = __webpack_require__(/*! ../internals/own-keys */ "../node_modules/core-js/internals/own-keys.js");
2594 var getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../node_modules/core-js/internals/object-get-own-property-descriptor.js");
2595 var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
2596
2597 module.exports = function (target, source, exceptions) {
2598 var keys = ownKeys(source);
2599 var defineProperty = definePropertyModule.f;
2600 var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
2601 for (var i = 0; i < keys.length; i++) {
2602 var key = keys[i];
2603 if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
2604 defineProperty(target, key, getOwnPropertyDescriptor(source, key));
2605 }
2606 }
2607 };
2608
2609
2610 /***/ }),
2611
2612 /***/ "../node_modules/core-js/internals/create-non-enumerable-property.js":
2613 /*!***************************************************************************!*\
2614 !*** ../node_modules/core-js/internals/create-non-enumerable-property.js ***!
2615 \***************************************************************************/
2616 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2617
2618 "use strict";
2619
2620 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
2621 var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
2622 var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js");
2623
2624 module.exports = DESCRIPTORS ? function (object, key, value) {
2625 return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
2626 } : function (object, key, value) {
2627 object[key] = value;
2628 return object;
2629 };
2630
2631
2632 /***/ }),
2633
2634 /***/ "../node_modules/core-js/internals/create-property-descriptor.js":
2635 /*!***********************************************************************!*\
2636 !*** ../node_modules/core-js/internals/create-property-descriptor.js ***!
2637 \***********************************************************************/
2638 /***/ ((module) => {
2639
2640 "use strict";
2641
2642 module.exports = function (bitmap, value) {
2643 return {
2644 enumerable: !(bitmap & 1),
2645 configurable: !(bitmap & 2),
2646 writable: !(bitmap & 4),
2647 value: value
2648 };
2649 };
2650
2651
2652 /***/ }),
2653
2654 /***/ "../node_modules/core-js/internals/define-built-in.js":
2655 /*!************************************************************!*\
2656 !*** ../node_modules/core-js/internals/define-built-in.js ***!
2657 \************************************************************/
2658 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2659
2660 "use strict";
2661
2662 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
2663 var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js");
2664 var makeBuiltIn = __webpack_require__(/*! ../internals/make-built-in */ "../node_modules/core-js/internals/make-built-in.js");
2665 var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
2666
2667 module.exports = function (O, key, value, options) {
2668 if (!options) options = {};
2669 var simple = options.enumerable;
2670 var name = options.name !== undefined ? options.name : key;
2671 if (isCallable(value)) makeBuiltIn(value, name, options);
2672 if (options.global) {
2673 if (simple) O[key] = value;
2674 else defineGlobalProperty(key, value);
2675 } else {
2676 try {
2677 if (!options.unsafe) delete O[key];
2678 else if (O[key]) simple = true;
2679 } catch (error) { /* empty */ }
2680 if (simple) O[key] = value;
2681 else definePropertyModule.f(O, key, {
2682 value: value,
2683 enumerable: false,
2684 configurable: !options.nonConfigurable,
2685 writable: !options.nonWritable
2686 });
2687 } return O;
2688 };
2689
2690
2691 /***/ }),
2692
2693 /***/ "../node_modules/core-js/internals/define-global-property.js":
2694 /*!*******************************************************************!*\
2695 !*** ../node_modules/core-js/internals/define-global-property.js ***!
2696 \*******************************************************************/
2697 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2698
2699 "use strict";
2700
2701 var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2702
2703 // eslint-disable-next-line es/no-object-defineproperty -- safe
2704 var defineProperty = Object.defineProperty;
2705
2706 module.exports = function (key, value) {
2707 try {
2708 defineProperty(global, key, { value: value, configurable: true, writable: true });
2709 } catch (error) {
2710 global[key] = value;
2711 } return value;
2712 };
2713
2714
2715 /***/ }),
2716
2717 /***/ "../node_modules/core-js/internals/descriptors.js":
2718 /*!********************************************************!*\
2719 !*** ../node_modules/core-js/internals/descriptors.js ***!
2720 \********************************************************/
2721 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2722
2723 "use strict";
2724
2725 var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
2726
2727 // Detect IE8's incomplete defineProperty implementation
2728 module.exports = !fails(function () {
2729 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2730 return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
2731 });
2732
2733
2734 /***/ }),
2735
2736 /***/ "../node_modules/core-js/internals/document-all.js":
2737 /*!*********************************************************!*\
2738 !*** ../node_modules/core-js/internals/document-all.js ***!
2739 \*********************************************************/
2740 /***/ ((module) => {
2741
2742 "use strict";
2743
2744 var documentAll = typeof document == 'object' && document.all;
2745
2746 // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
2747 // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
2748 var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
2749
2750 module.exports = {
2751 all: documentAll,
2752 IS_HTMLDDA: IS_HTMLDDA
2753 };
2754
2755
2756 /***/ }),
2757
2758 /***/ "../node_modules/core-js/internals/document-create-element.js":
2759 /*!********************************************************************!*\
2760 !*** ../node_modules/core-js/internals/document-create-element.js ***!
2761 \********************************************************************/
2762 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2763
2764 "use strict";
2765
2766 var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2767 var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
2768
2769 var document = global.document;
2770 // typeof document.createElement is 'object' in old IE
2771 var EXISTS = isObject(document) && isObject(document.createElement);
2772
2773 module.exports = function (it) {
2774 return EXISTS ? document.createElement(it) : {};
2775 };
2776
2777
2778 /***/ }),
2779
2780 /***/ "../node_modules/core-js/internals/engine-user-agent.js":
2781 /*!**************************************************************!*\
2782 !*** ../node_modules/core-js/internals/engine-user-agent.js ***!
2783 \**************************************************************/
2784 /***/ ((module) => {
2785
2786 "use strict";
2787
2788 module.exports = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
2789
2790
2791 /***/ }),
2792
2793 /***/ "../node_modules/core-js/internals/engine-v8-version.js":
2794 /*!**************************************************************!*\
2795 !*** ../node_modules/core-js/internals/engine-v8-version.js ***!
2796 \**************************************************************/
2797 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2798
2799 "use strict";
2800
2801 var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2802 var userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ "../node_modules/core-js/internals/engine-user-agent.js");
2803
2804 var process = global.process;
2805 var Deno = global.Deno;
2806 var versions = process && process.versions || Deno && Deno.version;
2807 var v8 = versions && versions.v8;
2808 var match, version;
2809
2810 if (v8) {
2811 match = v8.split('.');
2812 // in old Chrome, versions of V8 isn't V8 = Chrome / 10
2813 // but their correct versions are not interesting for us
2814 version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
2815 }
2816
2817 // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
2818 // so check `userAgent` even if `.v8` exists, but 0
2819 if (!version && userAgent) {
2820 match = userAgent.match(/Edge\/(\d+)/);
2821 if (!match || match[1] >= 74) {
2822 match = userAgent.match(/Chrome\/(\d+)/);
2823 if (match) version = +match[1];
2824 }
2825 }
2826
2827 module.exports = version;
2828
2829
2830 /***/ }),
2831
2832 /***/ "../node_modules/core-js/internals/enum-bug-keys.js":
2833 /*!**********************************************************!*\
2834 !*** ../node_modules/core-js/internals/enum-bug-keys.js ***!
2835 \**********************************************************/
2836 /***/ ((module) => {
2837
2838 "use strict";
2839
2840 // IE8- don't enum bug keys
2841 module.exports = [
2842 'constructor',
2843 'hasOwnProperty',
2844 'isPrototypeOf',
2845 'propertyIsEnumerable',
2846 'toLocaleString',
2847 'toString',
2848 'valueOf'
2849 ];
2850
2851
2852 /***/ }),
2853
2854 /***/ "../node_modules/core-js/internals/error-stack-clear.js":
2855 /*!**************************************************************!*\
2856 !*** ../node_modules/core-js/internals/error-stack-clear.js ***!
2857 \**************************************************************/
2858 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2859
2860 "use strict";
2861
2862 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
2863
2864 var $Error = Error;
2865 var replace = uncurryThis(''.replace);
2866
2867 var TEST = (function (arg) { return String($Error(arg).stack); })('zxcasd');
2868 // eslint-disable-next-line redos/no-vulnerable -- safe
2869 var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
2870 var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);
2871
2872 module.exports = function (stack, dropEntries) {
2873 if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string' && !$Error.prepareStackTrace) {
2874 while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, '');
2875 } return stack;
2876 };
2877
2878
2879 /***/ }),
2880
2881 /***/ "../node_modules/core-js/internals/error-stack-install.js":
2882 /*!****************************************************************!*\
2883 !*** ../node_modules/core-js/internals/error-stack-install.js ***!
2884 \****************************************************************/
2885 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2886
2887 "use strict";
2888
2889 var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
2890 var clearErrorStack = __webpack_require__(/*! ../internals/error-stack-clear */ "../node_modules/core-js/internals/error-stack-clear.js");
2891 var ERROR_STACK_INSTALLABLE = __webpack_require__(/*! ../internals/error-stack-installable */ "../node_modules/core-js/internals/error-stack-installable.js");
2892
2893 // non-standard V8
2894 var captureStackTrace = Error.captureStackTrace;
2895
2896 module.exports = function (error, C, stack, dropEntries) {
2897 if (ERROR_STACK_INSTALLABLE) {
2898 if (captureStackTrace) captureStackTrace(error, C);
2899 else createNonEnumerableProperty(error, 'stack', clearErrorStack(stack, dropEntries));
2900 }
2901 };
2902
2903
2904 /***/ }),
2905
2906 /***/ "../node_modules/core-js/internals/error-stack-installable.js":
2907 /*!********************************************************************!*\
2908 !*** ../node_modules/core-js/internals/error-stack-installable.js ***!
2909 \********************************************************************/
2910 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2911
2912 "use strict";
2913
2914 var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
2915 var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js");
2916
2917 module.exports = !fails(function () {
2918 var error = Error('a');
2919 if (!('stack' in error)) return true;
2920 // eslint-disable-next-line es/no-object-defineproperty -- safe
2921 Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
2922 return error.stack !== 7;
2923 });
2924
2925
2926 /***/ }),
2927
2928 /***/ "../node_modules/core-js/internals/export.js":
2929 /*!***************************************************!*\
2930 !*** ../node_modules/core-js/internals/export.js ***!
2931 \***************************************************/
2932 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2933
2934 "use strict";
2935
2936 var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
2937 var getOwnPropertyDescriptor = (__webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../node_modules/core-js/internals/object-get-own-property-descriptor.js").f);
2938 var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
2939 var defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ "../node_modules/core-js/internals/define-built-in.js");
2940 var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
2941 var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "../node_modules/core-js/internals/copy-constructor-properties.js");
2942 var isForced = __webpack_require__(/*! ../internals/is-forced */ "../node_modules/core-js/internals/is-forced.js");
2943
2944 /*
2945 options.target - name of the target object
2946 options.global - target is the global object
2947 options.stat - export as static methods of target
2948 options.proto - export as prototype methods of target
2949 options.real - real prototype method for the `pure` version
2950 options.forced - export even if the native feature is available
2951 options.bind - bind methods to the target, required for the `pure` version
2952 options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
2953 options.unsafe - use the simple assignment of property instead of delete + defineProperty
2954 options.sham - add a flag to not completely full polyfills
2955 options.enumerable - export as enumerable property
2956 options.dontCallGetSet - prevent calling a getter on target
2957 options.name - the .name of the function if it does not match the key
2958 */
2959 module.exports = function (options, source) {
2960 var TARGET = options.target;
2961 var GLOBAL = options.global;
2962 var STATIC = options.stat;
2963 var FORCED, target, key, targetProperty, sourceProperty, descriptor;
2964 if (GLOBAL) {
2965 target = global;
2966 } else if (STATIC) {
2967 target = global[TARGET] || defineGlobalProperty(TARGET, {});
2968 } else {
2969 target = (global[TARGET] || {}).prototype;
2970 }
2971 if (target) for (key in source) {
2972 sourceProperty = source[key];
2973 if (options.dontCallGetSet) {
2974 descriptor = getOwnPropertyDescriptor(target, key);
2975 targetProperty = descriptor && descriptor.value;
2976 } else targetProperty = target[key];
2977 FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
2978 // contained in target
2979 if (!FORCED && targetProperty !== undefined) {
2980 if (typeof sourceProperty == typeof targetProperty) continue;
2981 copyConstructorProperties(sourceProperty, targetProperty);
2982 }
2983 // add a flag to not completely full polyfills
2984 if (options.sham || (targetProperty && targetProperty.sham)) {
2985 createNonEnumerableProperty(sourceProperty, 'sham', true);
2986 }
2987 defineBuiltIn(target, key, sourceProperty, options);
2988 }
2989 };
2990
2991
2992 /***/ }),
2993
2994 /***/ "../node_modules/core-js/internals/fails.js":
2995 /*!**************************************************!*\
2996 !*** ../node_modules/core-js/internals/fails.js ***!
2997 \**************************************************/
2998 /***/ ((module) => {
2999
3000 "use strict";
3001
3002 module.exports = function (exec) {
3003 try {
3004 return !!exec();
3005 } catch (error) {
3006 return true;
3007 }
3008 };
3009
3010
3011 /***/ }),
3012
3013 /***/ "../node_modules/core-js/internals/function-apply.js":
3014 /*!***********************************************************!*\
3015 !*** ../node_modules/core-js/internals/function-apply.js ***!
3016 \***********************************************************/
3017 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3018
3019 "use strict";
3020
3021 var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
3022
3023 var FunctionPrototype = Function.prototype;
3024 var apply = FunctionPrototype.apply;
3025 var call = FunctionPrototype.call;
3026
3027 // eslint-disable-next-line es/no-reflect -- safe
3028 module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
3029 return call.apply(apply, arguments);
3030 });
3031
3032
3033 /***/ }),
3034
3035 /***/ "../node_modules/core-js/internals/function-bind-native.js":
3036 /*!*****************************************************************!*\
3037 !*** ../node_modules/core-js/internals/function-bind-native.js ***!
3038 \*****************************************************************/
3039 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3040
3041 "use strict";
3042
3043 var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
3044
3045 module.exports = !fails(function () {
3046 // eslint-disable-next-line es/no-function-prototype-bind -- safe
3047 var test = (function () { /* empty */ }).bind();
3048 // eslint-disable-next-line no-prototype-builtins -- safe
3049 return typeof test != 'function' || test.hasOwnProperty('prototype');
3050 });
3051
3052
3053 /***/ }),
3054
3055 /***/ "../node_modules/core-js/internals/function-call.js":
3056 /*!**********************************************************!*\
3057 !*** ../node_modules/core-js/internals/function-call.js ***!
3058 \**********************************************************/
3059 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3060
3061 "use strict";
3062
3063 var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
3064
3065 var call = Function.prototype.call;
3066
3067 module.exports = NATIVE_BIND ? call.bind(call) : function () {
3068 return call.apply(call, arguments);
3069 };
3070
3071
3072 /***/ }),
3073
3074 /***/ "../node_modules/core-js/internals/function-name.js":
3075 /*!**********************************************************!*\
3076 !*** ../node_modules/core-js/internals/function-name.js ***!
3077 \**********************************************************/
3078 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3079
3080 "use strict";
3081
3082 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
3083 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
3084
3085 var FunctionPrototype = Function.prototype;
3086 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3087 var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
3088
3089 var EXISTS = hasOwn(FunctionPrototype, 'name');
3090 // additional protection from minified / mangled / dropped function names
3091 var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
3092 var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
3093
3094 module.exports = {
3095 EXISTS: EXISTS,
3096 PROPER: PROPER,
3097 CONFIGURABLE: CONFIGURABLE
3098 };
3099
3100
3101 /***/ }),
3102
3103 /***/ "../node_modules/core-js/internals/function-uncurry-this-accessor.js":
3104 /*!***************************************************************************!*\
3105 !*** ../node_modules/core-js/internals/function-uncurry-this-accessor.js ***!
3106 \***************************************************************************/
3107 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3108
3109 "use strict";
3110
3111 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3112 var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
3113
3114 module.exports = function (object, key, method) {
3115 try {
3116 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3117 return uncurryThis(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));
3118 } catch (error) { /* empty */ }
3119 };
3120
3121
3122 /***/ }),
3123
3124 /***/ "../node_modules/core-js/internals/function-uncurry-this.js":
3125 /*!******************************************************************!*\
3126 !*** ../node_modules/core-js/internals/function-uncurry-this.js ***!
3127 \******************************************************************/
3128 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3129
3130 "use strict";
3131
3132 var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js");
3133
3134 var FunctionPrototype = Function.prototype;
3135 var call = FunctionPrototype.call;
3136 var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
3137
3138 module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
3139 return function () {
3140 return call.apply(fn, arguments);
3141 };
3142 };
3143
3144
3145 /***/ }),
3146
3147 /***/ "../node_modules/core-js/internals/get-built-in.js":
3148 /*!*********************************************************!*\
3149 !*** ../node_modules/core-js/internals/get-built-in.js ***!
3150 \*********************************************************/
3151 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3152
3153 "use strict";
3154
3155 var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
3156 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3157
3158 var aFunction = function (argument) {
3159 return isCallable(argument) ? argument : undefined;
3160 };
3161
3162 module.exports = function (namespace, method) {
3163 return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method];
3164 };
3165
3166
3167 /***/ }),
3168
3169 /***/ "../node_modules/core-js/internals/get-method.js":
3170 /*!*******************************************************!*\
3171 !*** ../node_modules/core-js/internals/get-method.js ***!
3172 \*******************************************************/
3173 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3174
3175 "use strict";
3176
3177 var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js");
3178 var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ "../node_modules/core-js/internals/is-null-or-undefined.js");
3179
3180 // `GetMethod` abstract operation
3181 // https://tc39.es/ecma262/#sec-getmethod
3182 module.exports = function (V, P) {
3183 var func = V[P];
3184 return isNullOrUndefined(func) ? undefined : aCallable(func);
3185 };
3186
3187
3188 /***/ }),
3189
3190 /***/ "../node_modules/core-js/internals/global.js":
3191 /*!***************************************************!*\
3192 !*** ../node_modules/core-js/internals/global.js ***!
3193 \***************************************************/
3194 /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3195
3196 "use strict";
3197
3198 var check = function (it) {
3199 return it && it.Math == Math && it;
3200 };
3201
3202 // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
3203 module.exports =
3204 // eslint-disable-next-line es/no-global-this -- safe
3205 check(typeof globalThis == 'object' && globalThis) ||
3206 check(typeof window == 'object' && window) ||
3207 // eslint-disable-next-line no-restricted-globals -- safe
3208 check(typeof self == 'object' && self) ||
3209 check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
3210 // eslint-disable-next-line no-new-func -- fallback
3211 (function () { return this; })() || this || Function('return this')();
3212
3213
3214 /***/ }),
3215
3216 /***/ "../node_modules/core-js/internals/has-own-property.js":
3217 /*!*************************************************************!*\
3218 !*** ../node_modules/core-js/internals/has-own-property.js ***!
3219 \*************************************************************/
3220 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3221
3222 "use strict";
3223
3224 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3225 var toObject = __webpack_require__(/*! ../internals/to-object */ "../node_modules/core-js/internals/to-object.js");
3226
3227 var hasOwnProperty = uncurryThis({}.hasOwnProperty);
3228
3229 // `HasOwnProperty` abstract operation
3230 // https://tc39.es/ecma262/#sec-hasownproperty
3231 // eslint-disable-next-line es/no-object-hasown -- safe
3232 module.exports = Object.hasOwn || function hasOwn(it, key) {
3233 return hasOwnProperty(toObject(it), key);
3234 };
3235
3236
3237 /***/ }),
3238
3239 /***/ "../node_modules/core-js/internals/hidden-keys.js":
3240 /*!********************************************************!*\
3241 !*** ../node_modules/core-js/internals/hidden-keys.js ***!
3242 \********************************************************/
3243 /***/ ((module) => {
3244
3245 "use strict";
3246
3247 module.exports = {};
3248
3249
3250 /***/ }),
3251
3252 /***/ "../node_modules/core-js/internals/ie8-dom-define.js":
3253 /*!***********************************************************!*\
3254 !*** ../node_modules/core-js/internals/ie8-dom-define.js ***!
3255 \***********************************************************/
3256 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3257
3258 "use strict";
3259
3260 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
3261 var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
3262 var createElement = __webpack_require__(/*! ../internals/document-create-element */ "../node_modules/core-js/internals/document-create-element.js");
3263
3264 // Thanks to IE8 for its funny defineProperty
3265 module.exports = !DESCRIPTORS && !fails(function () {
3266 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
3267 return Object.defineProperty(createElement('div'), 'a', {
3268 get: function () { return 7; }
3269 }).a != 7;
3270 });
3271
3272
3273 /***/ }),
3274
3275 /***/ "../node_modules/core-js/internals/indexed-object.js":
3276 /*!***********************************************************!*\
3277 !*** ../node_modules/core-js/internals/indexed-object.js ***!
3278 \***********************************************************/
3279 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3280
3281 "use strict";
3282
3283 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3284 var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
3285 var classof = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js");
3286
3287 var $Object = Object;
3288 var split = uncurryThis(''.split);
3289
3290 // fallback for non-array-like ES3 and non-enumerable old V8 strings
3291 module.exports = fails(function () {
3292 // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
3293 // eslint-disable-next-line no-prototype-builtins -- safe
3294 return !$Object('z').propertyIsEnumerable(0);
3295 }) ? function (it) {
3296 return classof(it) == 'String' ? split(it, '') : $Object(it);
3297 } : $Object;
3298
3299
3300 /***/ }),
3301
3302 /***/ "../node_modules/core-js/internals/inherit-if-required.js":
3303 /*!****************************************************************!*\
3304 !*** ../node_modules/core-js/internals/inherit-if-required.js ***!
3305 \****************************************************************/
3306 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3307
3308 "use strict";
3309
3310 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3311 var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
3312 var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "../node_modules/core-js/internals/object-set-prototype-of.js");
3313
3314 // makes subclassing work correct for wrapped built-ins
3315 module.exports = function ($this, dummy, Wrapper) {
3316 var NewTarget, NewTargetPrototype;
3317 if (
3318 // it can work only with native `setPrototypeOf`
3319 setPrototypeOf &&
3320 // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
3321 isCallable(NewTarget = dummy.constructor) &&
3322 NewTarget !== Wrapper &&
3323 isObject(NewTargetPrototype = NewTarget.prototype) &&
3324 NewTargetPrototype !== Wrapper.prototype
3325 ) setPrototypeOf($this, NewTargetPrototype);
3326 return $this;
3327 };
3328
3329
3330 /***/ }),
3331
3332 /***/ "../node_modules/core-js/internals/inspect-source.js":
3333 /*!***********************************************************!*\
3334 !*** ../node_modules/core-js/internals/inspect-source.js ***!
3335 \***********************************************************/
3336 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3337
3338 "use strict";
3339
3340 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3341 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3342 var store = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
3343
3344 var functionToString = uncurryThis(Function.toString);
3345
3346 // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
3347 if (!isCallable(store.inspectSource)) {
3348 store.inspectSource = function (it) {
3349 return functionToString(it);
3350 };
3351 }
3352
3353 module.exports = store.inspectSource;
3354
3355
3356 /***/ }),
3357
3358 /***/ "../node_modules/core-js/internals/install-error-cause.js":
3359 /*!****************************************************************!*\
3360 !*** ../node_modules/core-js/internals/install-error-cause.js ***!
3361 \****************************************************************/
3362 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3363
3364 "use strict";
3365
3366 var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
3367 var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
3368
3369 // `InstallErrorCause` abstract operation
3370 // https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
3371 module.exports = function (O, options) {
3372 if (isObject(options) && 'cause' in options) {
3373 createNonEnumerableProperty(O, 'cause', options.cause);
3374 }
3375 };
3376
3377
3378 /***/ }),
3379
3380 /***/ "../node_modules/core-js/internals/internal-state.js":
3381 /*!***********************************************************!*\
3382 !*** ../node_modules/core-js/internals/internal-state.js ***!
3383 \***********************************************************/
3384 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3385
3386 "use strict";
3387
3388 var NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/weak-map-basic-detection */ "../node_modules/core-js/internals/weak-map-basic-detection.js");
3389 var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
3390 var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
3391 var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
3392 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
3393 var shared = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
3394 var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../node_modules/core-js/internals/shared-key.js");
3395 var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js");
3396
3397 var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
3398 var TypeError = global.TypeError;
3399 var WeakMap = global.WeakMap;
3400 var set, get, has;
3401
3402 var enforce = function (it) {
3403 return has(it) ? get(it) : set(it, {});
3404 };
3405
3406 var getterFor = function (TYPE) {
3407 return function (it) {
3408 var state;
3409 if (!isObject(it) || (state = get(it)).type !== TYPE) {
3410 throw TypeError('Incompatible receiver, ' + TYPE + ' required');
3411 } return state;
3412 };
3413 };
3414
3415 if (NATIVE_WEAK_MAP || shared.state) {
3416 var store = shared.state || (shared.state = new WeakMap());
3417 /* eslint-disable no-self-assign -- prototype methods protection */
3418 store.get = store.get;
3419 store.has = store.has;
3420 store.set = store.set;
3421 /* eslint-enable no-self-assign -- prototype methods protection */
3422 set = function (it, metadata) {
3423 if (store.has(it)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
3424 metadata.facade = it;
3425 store.set(it, metadata);
3426 return metadata;
3427 };
3428 get = function (it) {
3429 return store.get(it) || {};
3430 };
3431 has = function (it) {
3432 return store.has(it);
3433 };
3434 } else {
3435 var STATE = sharedKey('state');
3436 hiddenKeys[STATE] = true;
3437 set = function (it, metadata) {
3438 if (hasOwn(it, STATE)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
3439 metadata.facade = it;
3440 createNonEnumerableProperty(it, STATE, metadata);
3441 return metadata;
3442 };
3443 get = function (it) {
3444 return hasOwn(it, STATE) ? it[STATE] : {};
3445 };
3446 has = function (it) {
3447 return hasOwn(it, STATE);
3448 };
3449 }
3450
3451 module.exports = {
3452 set: set,
3453 get: get,
3454 has: has,
3455 enforce: enforce,
3456 getterFor: getterFor
3457 };
3458
3459
3460 /***/ }),
3461
3462 /***/ "../node_modules/core-js/internals/is-callable.js":
3463 /*!********************************************************!*\
3464 !*** ../node_modules/core-js/internals/is-callable.js ***!
3465 \********************************************************/
3466 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3467
3468 "use strict";
3469
3470 var $documentAll = __webpack_require__(/*! ../internals/document-all */ "../node_modules/core-js/internals/document-all.js");
3471
3472 var documentAll = $documentAll.all;
3473
3474 // `IsCallable` abstract operation
3475 // https://tc39.es/ecma262/#sec-iscallable
3476 module.exports = $documentAll.IS_HTMLDDA ? function (argument) {
3477 return typeof argument == 'function' || argument === documentAll;
3478 } : function (argument) {
3479 return typeof argument == 'function';
3480 };
3481
3482
3483 /***/ }),
3484
3485 /***/ "../node_modules/core-js/internals/is-forced.js":
3486 /*!******************************************************!*\
3487 !*** ../node_modules/core-js/internals/is-forced.js ***!
3488 \******************************************************/
3489 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3490
3491 "use strict";
3492
3493 var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
3494 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3495
3496 var replacement = /#|\.prototype\./;
3497
3498 var isForced = function (feature, detection) {
3499 var value = data[normalize(feature)];
3500 return value == POLYFILL ? true
3501 : value == NATIVE ? false
3502 : isCallable(detection) ? fails(detection)
3503 : !!detection;
3504 };
3505
3506 var normalize = isForced.normalize = function (string) {
3507 return String(string).replace(replacement, '.').toLowerCase();
3508 };
3509
3510 var data = isForced.data = {};
3511 var NATIVE = isForced.NATIVE = 'N';
3512 var POLYFILL = isForced.POLYFILL = 'P';
3513
3514 module.exports = isForced;
3515
3516
3517 /***/ }),
3518
3519 /***/ "../node_modules/core-js/internals/is-null-or-undefined.js":
3520 /*!*****************************************************************!*\
3521 !*** ../node_modules/core-js/internals/is-null-or-undefined.js ***!
3522 \*****************************************************************/
3523 /***/ ((module) => {
3524
3525 "use strict";
3526
3527 // we can't use just `it == null` since of `document.all` special case
3528 // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
3529 module.exports = function (it) {
3530 return it === null || it === undefined;
3531 };
3532
3533
3534 /***/ }),
3535
3536 /***/ "../node_modules/core-js/internals/is-object.js":
3537 /*!******************************************************!*\
3538 !*** ../node_modules/core-js/internals/is-object.js ***!
3539 \******************************************************/
3540 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3541
3542 "use strict";
3543
3544 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3545 var $documentAll = __webpack_require__(/*! ../internals/document-all */ "../node_modules/core-js/internals/document-all.js");
3546
3547 var documentAll = $documentAll.all;
3548
3549 module.exports = $documentAll.IS_HTMLDDA ? function (it) {
3550 return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll;
3551 } : function (it) {
3552 return typeof it == 'object' ? it !== null : isCallable(it);
3553 };
3554
3555
3556 /***/ }),
3557
3558 /***/ "../node_modules/core-js/internals/is-pure.js":
3559 /*!****************************************************!*\
3560 !*** ../node_modules/core-js/internals/is-pure.js ***!
3561 \****************************************************/
3562 /***/ ((module) => {
3563
3564 "use strict";
3565
3566 module.exports = false;
3567
3568
3569 /***/ }),
3570
3571 /***/ "../node_modules/core-js/internals/is-symbol.js":
3572 /*!******************************************************!*\
3573 !*** ../node_modules/core-js/internals/is-symbol.js ***!
3574 \******************************************************/
3575 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3576
3577 "use strict";
3578
3579 var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js");
3580 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3581 var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js");
3582 var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../node_modules/core-js/internals/use-symbol-as-uid.js");
3583
3584 var $Object = Object;
3585
3586 module.exports = USE_SYMBOL_AS_UID ? function (it) {
3587 return typeof it == 'symbol';
3588 } : function (it) {
3589 var $Symbol = getBuiltIn('Symbol');
3590 return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
3591 };
3592
3593
3594 /***/ }),
3595
3596 /***/ "../node_modules/core-js/internals/length-of-array-like.js":
3597 /*!*****************************************************************!*\
3598 !*** ../node_modules/core-js/internals/length-of-array-like.js ***!
3599 \*****************************************************************/
3600 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3601
3602 "use strict";
3603
3604 var toLength = __webpack_require__(/*! ../internals/to-length */ "../node_modules/core-js/internals/to-length.js");
3605
3606 // `LengthOfArrayLike` abstract operation
3607 // https://tc39.es/ecma262/#sec-lengthofarraylike
3608 module.exports = function (obj) {
3609 return toLength(obj.length);
3610 };
3611
3612
3613 /***/ }),
3614
3615 /***/ "../node_modules/core-js/internals/make-built-in.js":
3616 /*!**********************************************************!*\
3617 !*** ../node_modules/core-js/internals/make-built-in.js ***!
3618 \**********************************************************/
3619 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3620
3621 "use strict";
3622
3623 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3624 var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
3625 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3626 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
3627 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
3628 var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(/*! ../internals/function-name */ "../node_modules/core-js/internals/function-name.js").CONFIGURABLE);
3629 var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "../node_modules/core-js/internals/inspect-source.js");
3630 var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "../node_modules/core-js/internals/internal-state.js");
3631
3632 var enforceInternalState = InternalStateModule.enforce;
3633 var getInternalState = InternalStateModule.get;
3634 var $String = String;
3635 // eslint-disable-next-line es/no-object-defineproperty -- safe
3636 var defineProperty = Object.defineProperty;
3637 var stringSlice = uncurryThis(''.slice);
3638 var replace = uncurryThis(''.replace);
3639 var join = uncurryThis([].join);
3640
3641 var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
3642 return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
3643 });
3644
3645 var TEMPLATE = String(String).split('String');
3646
3647 var makeBuiltIn = module.exports = function (value, name, options) {
3648 if (stringSlice($String(name), 0, 7) === 'Symbol(') {
3649 name = '[' + replace($String(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
3650 }
3651 if (options && options.getter) name = 'get ' + name;
3652 if (options && options.setter) name = 'set ' + name;
3653 if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
3654 if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
3655 else value.name = name;
3656 }
3657 if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
3658 defineProperty(value, 'length', { value: options.arity });
3659 }
3660 try {
3661 if (options && hasOwn(options, 'constructor') && options.constructor) {
3662 if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
3663 // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
3664 } else if (value.prototype) value.prototype = undefined;
3665 } catch (error) { /* empty */ }
3666 var state = enforceInternalState(value);
3667 if (!hasOwn(state, 'source')) {
3668 state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
3669 } return value;
3670 };
3671
3672 // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
3673 // eslint-disable-next-line no-extend-native -- required
3674 Function.prototype.toString = makeBuiltIn(function toString() {
3675 return isCallable(this) && getInternalState(this).source || inspectSource(this);
3676 }, 'toString');
3677
3678
3679 /***/ }),
3680
3681 /***/ "../node_modules/core-js/internals/math-trunc.js":
3682 /*!*******************************************************!*\
3683 !*** ../node_modules/core-js/internals/math-trunc.js ***!
3684 \*******************************************************/
3685 /***/ ((module) => {
3686
3687 "use strict";
3688
3689 var ceil = Math.ceil;
3690 var floor = Math.floor;
3691
3692 // `Math.trunc` method
3693 // https://tc39.es/ecma262/#sec-math.trunc
3694 // eslint-disable-next-line es/no-math-trunc -- safe
3695 module.exports = Math.trunc || function trunc(x) {
3696 var n = +x;
3697 return (n > 0 ? floor : ceil)(n);
3698 };
3699
3700
3701 /***/ }),
3702
3703 /***/ "../node_modules/core-js/internals/normalize-string-argument.js":
3704 /*!**********************************************************************!*\
3705 !*** ../node_modules/core-js/internals/normalize-string-argument.js ***!
3706 \**********************************************************************/
3707 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3708
3709 "use strict";
3710
3711 var toString = __webpack_require__(/*! ../internals/to-string */ "../node_modules/core-js/internals/to-string.js");
3712
3713 module.exports = function (argument, $default) {
3714 return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
3715 };
3716
3717
3718 /***/ }),
3719
3720 /***/ "../node_modules/core-js/internals/object-define-property.js":
3721 /*!*******************************************************************!*\
3722 !*** ../node_modules/core-js/internals/object-define-property.js ***!
3723 \*******************************************************************/
3724 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3725
3726 "use strict";
3727
3728 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
3729 var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "../node_modules/core-js/internals/ie8-dom-define.js");
3730 var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(/*! ../internals/v8-prototype-define-bug */ "../node_modules/core-js/internals/v8-prototype-define-bug.js");
3731 var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
3732 var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ "../node_modules/core-js/internals/to-property-key.js");
3733
3734 var $TypeError = TypeError;
3735 // eslint-disable-next-line es/no-object-defineproperty -- safe
3736 var $defineProperty = Object.defineProperty;
3737 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3738 var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
3739 var ENUMERABLE = 'enumerable';
3740 var CONFIGURABLE = 'configurable';
3741 var WRITABLE = 'writable';
3742
3743 // `Object.defineProperty` method
3744 // https://tc39.es/ecma262/#sec-object.defineproperty
3745 exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
3746 anObject(O);
3747 P = toPropertyKey(P);
3748 anObject(Attributes);
3749 if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
3750 var current = $getOwnPropertyDescriptor(O, P);
3751 if (current && current[WRITABLE]) {
3752 O[P] = Attributes.value;
3753 Attributes = {
3754 configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
3755 enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
3756 writable: false
3757 };
3758 }
3759 } return $defineProperty(O, P, Attributes);
3760 } : $defineProperty : function defineProperty(O, P, Attributes) {
3761 anObject(O);
3762 P = toPropertyKey(P);
3763 anObject(Attributes);
3764 if (IE8_DOM_DEFINE) try {
3765 return $defineProperty(O, P, Attributes);
3766 } catch (error) { /* empty */ }
3767 if ('get' in Attributes || 'set' in Attributes) throw $TypeError('Accessors not supported');
3768 if ('value' in Attributes) O[P] = Attributes.value;
3769 return O;
3770 };
3771
3772
3773 /***/ }),
3774
3775 /***/ "../node_modules/core-js/internals/object-get-own-property-descriptor.js":
3776 /*!*******************************************************************************!*\
3777 !*** ../node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
3778 \*******************************************************************************/
3779 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3780
3781 "use strict";
3782
3783 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
3784 var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
3785 var propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "../node_modules/core-js/internals/object-property-is-enumerable.js");
3786 var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js");
3787 var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
3788 var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ "../node_modules/core-js/internals/to-property-key.js");
3789 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
3790 var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "../node_modules/core-js/internals/ie8-dom-define.js");
3791
3792 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3793 var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
3794
3795 // `Object.getOwnPropertyDescriptor` method
3796 // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
3797 exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
3798 O = toIndexedObject(O);
3799 P = toPropertyKey(P);
3800 if (IE8_DOM_DEFINE) try {
3801 return $getOwnPropertyDescriptor(O, P);
3802 } catch (error) { /* empty */ }
3803 if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
3804 };
3805
3806
3807 /***/ }),
3808
3809 /***/ "../node_modules/core-js/internals/object-get-own-property-names.js":
3810 /*!**************************************************************************!*\
3811 !*** ../node_modules/core-js/internals/object-get-own-property-names.js ***!
3812 \**************************************************************************/
3813 /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3814
3815 "use strict";
3816
3817 var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "../node_modules/core-js/internals/object-keys-internal.js");
3818 var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "../node_modules/core-js/internals/enum-bug-keys.js");
3819
3820 var hiddenKeys = enumBugKeys.concat('length', 'prototype');
3821
3822 // `Object.getOwnPropertyNames` method
3823 // https://tc39.es/ecma262/#sec-object.getownpropertynames
3824 // eslint-disable-next-line es/no-object-getownpropertynames -- safe
3825 exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
3826 return internalObjectKeys(O, hiddenKeys);
3827 };
3828
3829
3830 /***/ }),
3831
3832 /***/ "../node_modules/core-js/internals/object-get-own-property-symbols.js":
3833 /*!****************************************************************************!*\
3834 !*** ../node_modules/core-js/internals/object-get-own-property-symbols.js ***!
3835 \****************************************************************************/
3836 /***/ ((__unused_webpack_module, exports) => {
3837
3838 "use strict";
3839
3840 // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
3841 exports.f = Object.getOwnPropertySymbols;
3842
3843
3844 /***/ }),
3845
3846 /***/ "../node_modules/core-js/internals/object-is-prototype-of.js":
3847 /*!*******************************************************************!*\
3848 !*** ../node_modules/core-js/internals/object-is-prototype-of.js ***!
3849 \*******************************************************************/
3850 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3851
3852 "use strict";
3853
3854 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3855
3856 module.exports = uncurryThis({}.isPrototypeOf);
3857
3858
3859 /***/ }),
3860
3861 /***/ "../node_modules/core-js/internals/object-keys-internal.js":
3862 /*!*****************************************************************!*\
3863 !*** ../node_modules/core-js/internals/object-keys-internal.js ***!
3864 \*****************************************************************/
3865 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3866
3867 "use strict";
3868
3869 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3870 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
3871 var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js");
3872 var indexOf = (__webpack_require__(/*! ../internals/array-includes */ "../node_modules/core-js/internals/array-includes.js").indexOf);
3873 var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js");
3874
3875 var push = uncurryThis([].push);
3876
3877 module.exports = function (object, names) {
3878 var O = toIndexedObject(object);
3879 var i = 0;
3880 var result = [];
3881 var key;
3882 for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
3883 // Don't enum bug & hidden keys
3884 while (names.length > i) if (hasOwn(O, key = names[i++])) {
3885 ~indexOf(result, key) || push(result, key);
3886 }
3887 return result;
3888 };
3889
3890
3891 /***/ }),
3892
3893 /***/ "../node_modules/core-js/internals/object-property-is-enumerable.js":
3894 /*!**************************************************************************!*\
3895 !*** ../node_modules/core-js/internals/object-property-is-enumerable.js ***!
3896 \**************************************************************************/
3897 /***/ ((__unused_webpack_module, exports) => {
3898
3899 "use strict";
3900
3901 var $propertyIsEnumerable = {}.propertyIsEnumerable;
3902 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3903 var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
3904
3905 // Nashorn ~ JDK8 bug
3906 var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
3907
3908 // `Object.prototype.propertyIsEnumerable` method implementation
3909 // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
3910 exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
3911 var descriptor = getOwnPropertyDescriptor(this, V);
3912 return !!descriptor && descriptor.enumerable;
3913 } : $propertyIsEnumerable;
3914
3915
3916 /***/ }),
3917
3918 /***/ "../node_modules/core-js/internals/object-set-prototype-of.js":
3919 /*!********************************************************************!*\
3920 !*** ../node_modules/core-js/internals/object-set-prototype-of.js ***!
3921 \********************************************************************/
3922 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3923
3924 "use strict";
3925
3926 /* eslint-disable no-proto -- safe */
3927 var uncurryThisAccessor = __webpack_require__(/*! ../internals/function-uncurry-this-accessor */ "../node_modules/core-js/internals/function-uncurry-this-accessor.js");
3928 var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
3929 var aPossiblePrototype = __webpack_require__(/*! ../internals/a-possible-prototype */ "../node_modules/core-js/internals/a-possible-prototype.js");
3930
3931 // `Object.setPrototypeOf` method
3932 // https://tc39.es/ecma262/#sec-object.setprototypeof
3933 // Works with __proto__ only. Old v8 can't work with null proto objects.
3934 // eslint-disable-next-line es/no-object-setprototypeof -- safe
3935 module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
3936 var CORRECT_SETTER = false;
3937 var test = {};
3938 var setter;
3939 try {
3940 setter = uncurryThisAccessor(Object.prototype, '__proto__', 'set');
3941 setter(test, []);
3942 CORRECT_SETTER = test instanceof Array;
3943 } catch (error) { /* empty */ }
3944 return function setPrototypeOf(O, proto) {
3945 anObject(O);
3946 aPossiblePrototype(proto);
3947 if (CORRECT_SETTER) setter(O, proto);
3948 else O.__proto__ = proto;
3949 return O;
3950 };
3951 }() : undefined);
3952
3953
3954 /***/ }),
3955
3956 /***/ "../node_modules/core-js/internals/ordinary-to-primitive.js":
3957 /*!******************************************************************!*\
3958 !*** ../node_modules/core-js/internals/ordinary-to-primitive.js ***!
3959 \******************************************************************/
3960 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3961
3962 "use strict";
3963
3964 var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
3965 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
3966 var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
3967
3968 var $TypeError = TypeError;
3969
3970 // `OrdinaryToPrimitive` abstract operation
3971 // https://tc39.es/ecma262/#sec-ordinarytoprimitive
3972 module.exports = function (input, pref) {
3973 var fn, val;
3974 if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
3975 if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
3976 if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
3977 throw $TypeError("Can't convert object to primitive value");
3978 };
3979
3980
3981 /***/ }),
3982
3983 /***/ "../node_modules/core-js/internals/own-keys.js":
3984 /*!*****************************************************!*\
3985 !*** ../node_modules/core-js/internals/own-keys.js ***!
3986 \*****************************************************/
3987 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3988
3989 "use strict";
3990
3991 var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js");
3992 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
3993 var getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "../node_modules/core-js/internals/object-get-own-property-names.js");
3994 var getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "../node_modules/core-js/internals/object-get-own-property-symbols.js");
3995 var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js");
3996
3997 var concat = uncurryThis([].concat);
3998
3999 // all object keys, includes non-enumerable and symbols
4000 module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
4001 var keys = getOwnPropertyNamesModule.f(anObject(it));
4002 var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
4003 return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
4004 };
4005
4006
4007 /***/ }),
4008
4009 /***/ "../node_modules/core-js/internals/proxy-accessor.js":
4010 /*!***********************************************************!*\
4011 !*** ../node_modules/core-js/internals/proxy-accessor.js ***!
4012 \***********************************************************/
4013 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4014
4015 "use strict";
4016
4017 var defineProperty = (__webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js").f);
4018
4019 module.exports = function (Target, Source, key) {
4020 key in Target || defineProperty(Target, key, {
4021 configurable: true,
4022 get: function () { return Source[key]; },
4023 set: function (it) { Source[key] = it; }
4024 });
4025 };
4026
4027
4028 /***/ }),
4029
4030 /***/ "../node_modules/core-js/internals/require-object-coercible.js":
4031 /*!*********************************************************************!*\
4032 !*** ../node_modules/core-js/internals/require-object-coercible.js ***!
4033 \*********************************************************************/
4034 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4035
4036 "use strict";
4037
4038 var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ "../node_modules/core-js/internals/is-null-or-undefined.js");
4039
4040 var $TypeError = TypeError;
4041
4042 // `RequireObjectCoercible` abstract operation
4043 // https://tc39.es/ecma262/#sec-requireobjectcoercible
4044 module.exports = function (it) {
4045 if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it);
4046 return it;
4047 };
4048
4049
4050 /***/ }),
4051
4052 /***/ "../node_modules/core-js/internals/shared-key.js":
4053 /*!*******************************************************!*\
4054 !*** ../node_modules/core-js/internals/shared-key.js ***!
4055 \*******************************************************/
4056 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4057
4058 "use strict";
4059
4060 var shared = __webpack_require__(/*! ../internals/shared */ "../node_modules/core-js/internals/shared.js");
4061 var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js");
4062
4063 var keys = shared('keys');
4064
4065 module.exports = function (key) {
4066 return keys[key] || (keys[key] = uid(key));
4067 };
4068
4069
4070 /***/ }),
4071
4072 /***/ "../node_modules/core-js/internals/shared-store.js":
4073 /*!*********************************************************!*\
4074 !*** ../node_modules/core-js/internals/shared-store.js ***!
4075 \*********************************************************/
4076 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4077
4078 "use strict";
4079
4080 var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4081 var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js");
4082
4083 var SHARED = '__core-js_shared__';
4084 var store = global[SHARED] || defineGlobalProperty(SHARED, {});
4085
4086 module.exports = store;
4087
4088
4089 /***/ }),
4090
4091 /***/ "../node_modules/core-js/internals/shared.js":
4092 /*!***************************************************!*\
4093 !*** ../node_modules/core-js/internals/shared.js ***!
4094 \***************************************************/
4095 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4096
4097 "use strict";
4098
4099 var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
4100 var store = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js");
4101
4102 (module.exports = function (key, value) {
4103 return store[key] || (store[key] = value !== undefined ? value : {});
4104 })('versions', []).push({
4105 version: '3.32.0',
4106 mode: IS_PURE ? 'pure' : 'global',
4107 copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
4108 license: 'https://github.com/zloirock/core-js/blob/v3.32.0/LICENSE',
4109 source: 'https://github.com/zloirock/core-js'
4110 });
4111
4112
4113 /***/ }),
4114
4115 /***/ "../node_modules/core-js/internals/symbol-constructor-detection.js":
4116 /*!*************************************************************************!*\
4117 !*** ../node_modules/core-js/internals/symbol-constructor-detection.js ***!
4118 \*************************************************************************/
4119 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4120
4121 "use strict";
4122
4123 /* eslint-disable es/no-symbol -- required for testing */
4124 var V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ "../node_modules/core-js/internals/engine-v8-version.js");
4125 var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
4126 var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4127
4128 var $String = global.String;
4129
4130 // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
4131 module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
4132 var symbol = Symbol();
4133 // Chrome 38 Symbol has incorrect toString conversion
4134 // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
4135 // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
4136 // of course, fail.
4137 return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
4138 // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
4139 !Symbol.sham && V8_VERSION && V8_VERSION < 41;
4140 });
4141
4142
4143 /***/ }),
4144
4145 /***/ "../node_modules/core-js/internals/to-absolute-index.js":
4146 /*!**************************************************************!*\
4147 !*** ../node_modules/core-js/internals/to-absolute-index.js ***!
4148 \**************************************************************/
4149 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4150
4151 "use strict";
4152
4153 var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../node_modules/core-js/internals/to-integer-or-infinity.js");
4154
4155 var max = Math.max;
4156 var min = Math.min;
4157
4158 // Helper for a popular repeating case of the spec:
4159 // Let integer be ? ToInteger(index).
4160 // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
4161 module.exports = function (index, length) {
4162 var integer = toIntegerOrInfinity(index);
4163 return integer < 0 ? max(integer + length, 0) : min(integer, length);
4164 };
4165
4166
4167 /***/ }),
4168
4169 /***/ "../node_modules/core-js/internals/to-indexed-object.js":
4170 /*!**************************************************************!*\
4171 !*** ../node_modules/core-js/internals/to-indexed-object.js ***!
4172 \**************************************************************/
4173 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4174
4175 "use strict";
4176
4177 // toObject with fallback for non-array-like ES3 strings
4178 var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "../node_modules/core-js/internals/indexed-object.js");
4179 var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "../node_modules/core-js/internals/require-object-coercible.js");
4180
4181 module.exports = function (it) {
4182 return IndexedObject(requireObjectCoercible(it));
4183 };
4184
4185
4186 /***/ }),
4187
4188 /***/ "../node_modules/core-js/internals/to-integer-or-infinity.js":
4189 /*!*******************************************************************!*\
4190 !*** ../node_modules/core-js/internals/to-integer-or-infinity.js ***!
4191 \*******************************************************************/
4192 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4193
4194 "use strict";
4195
4196 var trunc = __webpack_require__(/*! ../internals/math-trunc */ "../node_modules/core-js/internals/math-trunc.js");
4197
4198 // `ToIntegerOrInfinity` abstract operation
4199 // https://tc39.es/ecma262/#sec-tointegerorinfinity
4200 module.exports = function (argument) {
4201 var number = +argument;
4202 // eslint-disable-next-line no-self-compare -- NaN check
4203 return number !== number || number === 0 ? 0 : trunc(number);
4204 };
4205
4206
4207 /***/ }),
4208
4209 /***/ "../node_modules/core-js/internals/to-length.js":
4210 /*!******************************************************!*\
4211 !*** ../node_modules/core-js/internals/to-length.js ***!
4212 \******************************************************/
4213 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4214
4215 "use strict";
4216
4217 var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../node_modules/core-js/internals/to-integer-or-infinity.js");
4218
4219 var min = Math.min;
4220
4221 // `ToLength` abstract operation
4222 // https://tc39.es/ecma262/#sec-tolength
4223 module.exports = function (argument) {
4224 return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
4225 };
4226
4227
4228 /***/ }),
4229
4230 /***/ "../node_modules/core-js/internals/to-object.js":
4231 /*!******************************************************!*\
4232 !*** ../node_modules/core-js/internals/to-object.js ***!
4233 \******************************************************/
4234 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4235
4236 "use strict";
4237
4238 var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "../node_modules/core-js/internals/require-object-coercible.js");
4239
4240 var $Object = Object;
4241
4242 // `ToObject` abstract operation
4243 // https://tc39.es/ecma262/#sec-toobject
4244 module.exports = function (argument) {
4245 return $Object(requireObjectCoercible(argument));
4246 };
4247
4248
4249 /***/ }),
4250
4251 /***/ "../node_modules/core-js/internals/to-primitive.js":
4252 /*!*********************************************************!*\
4253 !*** ../node_modules/core-js/internals/to-primitive.js ***!
4254 \*********************************************************/
4255 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4256
4257 "use strict";
4258
4259 var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js");
4260 var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js");
4261 var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../node_modules/core-js/internals/is-symbol.js");
4262 var getMethod = __webpack_require__(/*! ../internals/get-method */ "../node_modules/core-js/internals/get-method.js");
4263 var ordinaryToPrimitive = __webpack_require__(/*! ../internals/ordinary-to-primitive */ "../node_modules/core-js/internals/ordinary-to-primitive.js");
4264 var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
4265
4266 var $TypeError = TypeError;
4267 var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
4268
4269 // `ToPrimitive` abstract operation
4270 // https://tc39.es/ecma262/#sec-toprimitive
4271 module.exports = function (input, pref) {
4272 if (!isObject(input) || isSymbol(input)) return input;
4273 var exoticToPrim = getMethod(input, TO_PRIMITIVE);
4274 var result;
4275 if (exoticToPrim) {
4276 if (pref === undefined) pref = 'default';
4277 result = call(exoticToPrim, input, pref);
4278 if (!isObject(result) || isSymbol(result)) return result;
4279 throw $TypeError("Can't convert object to primitive value");
4280 }
4281 if (pref === undefined) pref = 'number';
4282 return ordinaryToPrimitive(input, pref);
4283 };
4284
4285
4286 /***/ }),
4287
4288 /***/ "../node_modules/core-js/internals/to-property-key.js":
4289 /*!************************************************************!*\
4290 !*** ../node_modules/core-js/internals/to-property-key.js ***!
4291 \************************************************************/
4292 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4293
4294 "use strict";
4295
4296 var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "../node_modules/core-js/internals/to-primitive.js");
4297 var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../node_modules/core-js/internals/is-symbol.js");
4298
4299 // `ToPropertyKey` abstract operation
4300 // https://tc39.es/ecma262/#sec-topropertykey
4301 module.exports = function (argument) {
4302 var key = toPrimitive(argument, 'string');
4303 return isSymbol(key) ? key : key + '';
4304 };
4305
4306
4307 /***/ }),
4308
4309 /***/ "../node_modules/core-js/internals/to-string-tag-support.js":
4310 /*!******************************************************************!*\
4311 !*** ../node_modules/core-js/internals/to-string-tag-support.js ***!
4312 \******************************************************************/
4313 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4314
4315 "use strict";
4316
4317 var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js");
4318
4319 var TO_STRING_TAG = wellKnownSymbol('toStringTag');
4320 var test = {};
4321
4322 test[TO_STRING_TAG] = 'z';
4323
4324 module.exports = String(test) === '[object z]';
4325
4326
4327 /***/ }),
4328
4329 /***/ "../node_modules/core-js/internals/to-string.js":
4330 /*!******************************************************!*\
4331 !*** ../node_modules/core-js/internals/to-string.js ***!
4332 \******************************************************/
4333 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4334
4335 "use strict";
4336
4337 var classof = __webpack_require__(/*! ../internals/classof */ "../node_modules/core-js/internals/classof.js");
4338
4339 var $String = String;
4340
4341 module.exports = function (argument) {
4342 if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
4343 return $String(argument);
4344 };
4345
4346
4347 /***/ }),
4348
4349 /***/ "../node_modules/core-js/internals/try-to-string.js":
4350 /*!**********************************************************!*\
4351 !*** ../node_modules/core-js/internals/try-to-string.js ***!
4352 \**********************************************************/
4353 /***/ ((module) => {
4354
4355 "use strict";
4356
4357 var $String = String;
4358
4359 module.exports = function (argument) {
4360 try {
4361 return $String(argument);
4362 } catch (error) {
4363 return 'Object';
4364 }
4365 };
4366
4367
4368 /***/ }),
4369
4370 /***/ "../node_modules/core-js/internals/uid.js":
4371 /*!************************************************!*\
4372 !*** ../node_modules/core-js/internals/uid.js ***!
4373 \************************************************/
4374 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4375
4376 "use strict";
4377
4378 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js");
4379
4380 var id = 0;
4381 var postfix = Math.random();
4382 var toString = uncurryThis(1.0.toString);
4383
4384 module.exports = function (key) {
4385 return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
4386 };
4387
4388
4389 /***/ }),
4390
4391 /***/ "../node_modules/core-js/internals/use-symbol-as-uid.js":
4392 /*!**************************************************************!*\
4393 !*** ../node_modules/core-js/internals/use-symbol-as-uid.js ***!
4394 \**************************************************************/
4395 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4396
4397 "use strict";
4398
4399 /* eslint-disable es/no-symbol -- required for testing */
4400 var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
4401
4402 module.exports = NATIVE_SYMBOL
4403 && !Symbol.sham
4404 && typeof Symbol.iterator == 'symbol';
4405
4406
4407 /***/ }),
4408
4409 /***/ "../node_modules/core-js/internals/v8-prototype-define-bug.js":
4410 /*!********************************************************************!*\
4411 !*** ../node_modules/core-js/internals/v8-prototype-define-bug.js ***!
4412 \********************************************************************/
4413 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4414
4415 "use strict";
4416
4417 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
4418 var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js");
4419
4420 // V8 ~ Chrome 36-
4421 // https://bugs.chromium.org/p/v8/issues/detail?id=3334
4422 module.exports = DESCRIPTORS && fails(function () {
4423 // eslint-disable-next-line es/no-object-defineproperty -- required for testing
4424 return Object.defineProperty(function () { /* empty */ }, 'prototype', {
4425 value: 42,
4426 writable: false
4427 }).prototype != 42;
4428 });
4429
4430
4431 /***/ }),
4432
4433 /***/ "../node_modules/core-js/internals/weak-map-basic-detection.js":
4434 /*!*********************************************************************!*\
4435 !*** ../node_modules/core-js/internals/weak-map-basic-detection.js ***!
4436 \*********************************************************************/
4437 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4438
4439 "use strict";
4440
4441 var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4442 var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js");
4443
4444 var WeakMap = global.WeakMap;
4445
4446 module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
4447
4448
4449 /***/ }),
4450
4451 /***/ "../node_modules/core-js/internals/well-known-symbol.js":
4452 /*!**************************************************************!*\
4453 !*** ../node_modules/core-js/internals/well-known-symbol.js ***!
4454 \**************************************************************/
4455 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4456
4457 "use strict";
4458
4459 var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4460 var shared = __webpack_require__(/*! ../internals/shared */ "../node_modules/core-js/internals/shared.js");
4461 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
4462 var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js");
4463 var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js");
4464 var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../node_modules/core-js/internals/use-symbol-as-uid.js");
4465
4466 var Symbol = global.Symbol;
4467 var WellKnownSymbolsStore = shared('wks');
4468 var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
4469
4470 module.exports = function (name) {
4471 if (!hasOwn(WellKnownSymbolsStore, name)) {
4472 WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)
4473 ? Symbol[name]
4474 : createWellKnownSymbol('Symbol.' + name);
4475 } return WellKnownSymbolsStore[name];
4476 };
4477
4478
4479 /***/ }),
4480
4481 /***/ "../node_modules/core-js/internals/wrap-error-constructor-with-cause.js":
4482 /*!******************************************************************************!*\
4483 !*** ../node_modules/core-js/internals/wrap-error-constructor-with-cause.js ***!
4484 \******************************************************************************/
4485 /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4486
4487 "use strict";
4488
4489 var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js");
4490 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js");
4491 var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js");
4492 var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js");
4493 var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "../node_modules/core-js/internals/object-set-prototype-of.js");
4494 var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "../node_modules/core-js/internals/copy-constructor-properties.js");
4495 var proxyAccessor = __webpack_require__(/*! ../internals/proxy-accessor */ "../node_modules/core-js/internals/proxy-accessor.js");
4496 var inheritIfRequired = __webpack_require__(/*! ../internals/inherit-if-required */ "../node_modules/core-js/internals/inherit-if-required.js");
4497 var normalizeStringArgument = __webpack_require__(/*! ../internals/normalize-string-argument */ "../node_modules/core-js/internals/normalize-string-argument.js");
4498 var installErrorCause = __webpack_require__(/*! ../internals/install-error-cause */ "../node_modules/core-js/internals/install-error-cause.js");
4499 var installErrorStack = __webpack_require__(/*! ../internals/error-stack-install */ "../node_modules/core-js/internals/error-stack-install.js");
4500 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js");
4501 var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js");
4502
4503 module.exports = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
4504 var STACK_TRACE_LIMIT = 'stackTraceLimit';
4505 var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
4506 var path = FULL_NAME.split('.');
4507 var ERROR_NAME = path[path.length - 1];
4508 var OriginalError = getBuiltIn.apply(null, path);
4509
4510 if (!OriginalError) return;
4511
4512 var OriginalErrorPrototype = OriginalError.prototype;
4513
4514 // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
4515 if (!IS_PURE && hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
4516
4517 if (!FORCED) return OriginalError;
4518
4519 var BaseError = getBuiltIn('Error');
4520
4521 var WrappedError = wrapper(function (a, b) {
4522 var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
4523 var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
4524 if (message !== undefined) createNonEnumerableProperty(result, 'message', message);
4525 installErrorStack(result, WrappedError, result.stack, 2);
4526 if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
4527 if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
4528 return result;
4529 });
4530
4531 WrappedError.prototype = OriginalErrorPrototype;
4532
4533 if (ERROR_NAME !== 'Error') {
4534 if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError);
4535 else copyConstructorProperties(WrappedError, BaseError, { name: true });
4536 } else if (DESCRIPTORS && STACK_TRACE_LIMIT in OriginalError) {
4537 proxyAccessor(WrappedError, OriginalError, STACK_TRACE_LIMIT);
4538 proxyAccessor(WrappedError, OriginalError, 'prepareStackTrace');
4539 }
4540
4541 copyConstructorProperties(WrappedError, OriginalError);
4542
4543 if (!IS_PURE) try {
4544 // Safari 13- bug: WebAssembly errors does not have a proper `.name`
4545 if (OriginalErrorPrototype.name !== ERROR_NAME) {
4546 createNonEnumerableProperty(OriginalErrorPrototype, 'name', ERROR_NAME);
4547 }
4548 OriginalErrorPrototype.constructor = WrappedError;
4549 } catch (error) { /* empty */ }
4550
4551 return WrappedError;
4552 };
4553
4554
4555 /***/ }),
4556
4557 /***/ "../node_modules/core-js/modules/es.error.cause.js":
4558 /*!*********************************************************!*\
4559 !*** ../node_modules/core-js/modules/es.error.cause.js ***!
4560 \*********************************************************/
4561 /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4562
4563 "use strict";
4564
4565 /* eslint-disable no-unused-vars -- required for functions `.length` */
4566 var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js");
4567 var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js");
4568 var apply = __webpack_require__(/*! ../internals/function-apply */ "../node_modules/core-js/internals/function-apply.js");
4569 var wrapErrorConstructorWithCause = __webpack_require__(/*! ../internals/wrap-error-constructor-with-cause */ "../node_modules/core-js/internals/wrap-error-constructor-with-cause.js");
4570
4571 var WEB_ASSEMBLY = 'WebAssembly';
4572 var WebAssembly = global[WEB_ASSEMBLY];
4573
4574 var FORCED = Error('e', { cause: 7 }).cause !== 7;
4575
4576 var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
4577 var O = {};
4578 O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
4579 $({ global: true, constructor: true, arity: 1, forced: FORCED }, O);
4580 };
4581
4582 var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
4583 if (WebAssembly && WebAssembly[ERROR_NAME]) {
4584 var O = {};
4585 O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
4586 $({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);
4587 }
4588 };
4589
4590 // https://tc39.es/ecma262/#sec-nativeerror
4591 exportGlobalErrorCauseWrapper('Error', function (init) {
4592 return function Error(message) { return apply(init, this, arguments); };
4593 });
4594 exportGlobalErrorCauseWrapper('EvalError', function (init) {
4595 return function EvalError(message) { return apply(init, this, arguments); };
4596 });
4597 exportGlobalErrorCauseWrapper('RangeError', function (init) {
4598 return function RangeError(message) { return apply(init, this, arguments); };
4599 });
4600 exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
4601 return function ReferenceError(message) { return apply(init, this, arguments); };
4602 });
4603 exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
4604 return function SyntaxError(message) { return apply(init, this, arguments); };
4605 });
4606 exportGlobalErrorCauseWrapper('TypeError', function (init) {
4607 return function TypeError(message) { return apply(init, this, arguments); };
4608 });
4609 exportGlobalErrorCauseWrapper('URIError', function (init) {
4610 return function URIError(message) { return apply(init, this, arguments); };
4611 });
4612 exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
4613 return function CompileError(message) { return apply(init, this, arguments); };
4614 });
4615 exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
4616 return function LinkError(message) { return apply(init, this, arguments); };
4617 });
4618 exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
4619 return function RuntimeError(message) { return apply(init, this, arguments); };
4620 });
4621
4622
4623 /***/ }),
4624
4625 /***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js":
4626 /*!***********************************************************************!*\
4627 !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
4628 \***********************************************************************/
4629 /***/ ((module) => {
4630
4631 function _interopRequireDefault(obj) {
4632 return obj && obj.__esModule ? obj : {
4633 "default": obj
4634 };
4635 }
4636 module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
4637
4638 /***/ })
4639
4640 },
4641 /******/ __webpack_require__ => { // webpackRuntimeModules
4642 /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
4643 /******/ var __webpack_exports__ = (__webpack_exec__("../assets/dev/js/frontend/modules.js"));
4644 /******/ }
4645 ]);
4646 //# sourceMappingURL=frontend-modules.js.map