| @@ -1,142 +1,7 @@ | ||
| 1 | -(self["webpackChunkelementorFrontend"] = self["webpackChunkelementorFrontend"] || []).push([["frontend-modules"],{ | |
| 1 | +/*! elementor - v3.9.2 - 21-12-2022 */ | |
| 2 | +(self["webpackChunkelementor"] = self["webpackChunkelementor"] || []).push([["frontend-modules"],{ | |
| 2 | 3 | |
| 3 | -/***/ "../app/modules/import-export-customization/assets/js/shared/registry/base.js": | |
| 4 | -/*!************************************************************************************!*\ | |
| 5 | - !*** ../app/modules/import-export-customization/assets/js/shared/registry/base.js ***! | |
| 6 | - \************************************************************************************/ | |
| 7 | -/***/ ((__unused_webpack_module, exports, __webpack_require__) => { | |
| 8 | - | |
| 9 | -"use strict"; | |
| 10 | - | |
| 11 | - | |
| 12 | -Object.defineProperty(exports, "__esModule", ({ | |
| 13 | - value: true | |
| 14 | -})); | |
| 15 | -exports.BaseRegistry = void 0; | |
| 16 | -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js"); | |
| 17 | -__webpack_require__(/*! core-js/modules/esnext.iterator.filter.js */ "../node_modules/core-js/modules/esnext.iterator.filter.js"); | |
| 18 | -__webpack_require__(/*! core-js/modules/esnext.iterator.for-each.js */ "../node_modules/core-js/modules/esnext.iterator.for-each.js"); | |
| 19 | -__webpack_require__(/*! core-js/modules/esnext.iterator.map.js */ "../node_modules/core-js/modules/esnext.iterator.map.js"); | |
| 20 | -class BaseRegistry { | |
| 21 | - constructor() { | |
| 22 | - this.sections = new Map(); | |
| 23 | - } | |
| 24 | - register(section) { | |
| 25 | - if (!section.key || !section.title) { | |
| 26 | - throw new Error('Template type must have key and title'); | |
| 27 | - } | |
| 28 | - const existingSection = this.get(section.key); | |
| 29 | - const formattedSection = existingSection || this.formatSection(section); | |
| 30 | - if (section.children) { | |
| 31 | - // If existing section has children, merge them with new children | |
| 32 | - if (formattedSection.children) { | |
| 33 | - const existingChildrenMap = new Map(formattedSection.children.map(child => [child.key, child])); | |
| 34 | - | |
| 35 | - // Override existing children with new ones and add new children | |
| 36 | - section.children.forEach(childSection => { | |
| 37 | - const formattedChild = this.formatSection(childSection); | |
| 38 | - existingChildrenMap.set(childSection.key, formattedChild); | |
| 39 | - }); | |
| 40 | - formattedSection.children = Array.from(existingChildrenMap.values()); | |
| 41 | - } else { | |
| 42 | - formattedSection.children = section.children.map(childSection => this.formatSection(childSection)); | |
| 43 | - } | |
| 44 | - } | |
| 45 | - this.sections.set(section.key, formattedSection); | |
| 46 | - } | |
| 47 | - formatSection({ | |
| 48 | - children, | |
| 49 | - ...section | |
| 50 | - }) { | |
| 51 | - return { | |
| 52 | - key: section.key, | |
| 53 | - title: section.title, | |
| 54 | - description: section.description || '', | |
| 55 | - useParentDefault: section.useParentDefault !== false, | |
| 56 | - getInitialState: section.getInitialState || null, | |
| 57 | - component: section.component || null, | |
| 58 | - order: section.order || 10, | |
| 59 | - isAvailable: section.isAvailable || (() => true), | |
| 60 | - ...section | |
| 61 | - }; | |
| 62 | - } | |
| 63 | - getAll() { | |
| 64 | - return Array.from(this.sections.values()).filter(type => type.isAvailable()).map(type => { | |
| 65 | - if (type.children) { | |
| 66 | - return { | |
| 67 | - ...type, | |
| 68 | - children: [...type.children].sort((a, b) => a.order - b.order) | |
| 69 | - }; | |
| 70 | - } | |
| 71 | - return type; | |
| 72 | - }).sort((a, b) => a.order - b.order); | |
| 73 | - } | |
| 74 | - get(key) { | |
| 75 | - return this.sections.get(key); | |
| 76 | - } | |
| 77 | -} | |
| 78 | -exports.BaseRegistry = BaseRegistry; | |
| 79 | - | |
| 80 | -/***/ }), | |
| 81 | - | |
| 82 | -/***/ "../app/modules/import-export-customization/assets/js/shared/registry/customization-dialogs.js": | |
| 83 | -/*!*****************************************************************************************************!*\ | |
| 84 | - !*** ../app/modules/import-export-customization/assets/js/shared/registry/customization-dialogs.js ***! | |
| 85 | - \*****************************************************************************************************/ | |
| 86 | -/***/ ((__unused_webpack_module, exports, __webpack_require__) => { | |
| 87 | - | |
| 88 | -"use strict"; | |
| 89 | - | |
| 90 | - | |
| 91 | -Object.defineProperty(exports, "__esModule", ({ | |
| 92 | - value: true | |
| 93 | -})); | |
| 94 | -exports.customizationDialogsRegistry = void 0; | |
| 95 | -var _base = __webpack_require__(/*! ./base */ "../app/modules/import-export-customization/assets/js/shared/registry/base.js"); | |
| 96 | -const customizationDialogsRegistry = exports.customizationDialogsRegistry = new _base.BaseRegistry(); | |
| 97 | - | |
| 98 | -/***/ }), | |
| 99 | - | |
| 100 | -/***/ "../app/modules/import-export-customization/assets/js/shared/utils/template-registry-helpers.js": | |
| 101 | -/*!******************************************************************************************************!*\ | |
| 102 | - !*** ../app/modules/import-export-customization/assets/js/shared/utils/template-registry-helpers.js ***! | |
| 103 | - \******************************************************************************************************/ | |
| 104 | -/***/ ((__unused_webpack_module, exports) => { | |
| 105 | - | |
| 106 | -"use strict"; | |
| 107 | - | |
| 108 | - | |
| 109 | -Object.defineProperty(exports, "__esModule", ({ | |
| 110 | - value: true | |
| 111 | -})); | |
| 112 | -exports.createGetInitialState = createGetInitialState; | |
| 113 | -function createGetInitialState(exportGroup, additionalProps = {}) { | |
| 114 | - return (data, parentInitialState) => { | |
| 115 | - let isEnabled = parentInitialState; | |
| 116 | - const isImport = data.hasOwnProperty('uploadedData'); | |
| 117 | - if (isImport) { | |
| 118 | - isEnabled = false; | |
| 119 | - const templates = data.uploadedData.manifest.templates; | |
| 120 | - const exportGroups = elementorAppConfig?.['import-export-customization']?.exportGroups || {}; | |
| 121 | - for (const templateId in templates) { | |
| 122 | - const template = templates[templateId]; | |
| 123 | - const templateExportGroup = exportGroups[template.doc_type]; | |
| 124 | - if (templateExportGroup === exportGroup) { | |
| 125 | - isEnabled = true; | |
| 126 | - break; | |
| 127 | - } | |
| 128 | - } | |
| 129 | - } | |
| 130 | - return { | |
| 131 | - enabled: isEnabled, | |
| 132 | - ...additionalProps | |
| 133 | - }; | |
| 134 | - }; | |
| 135 | -} | |
| 136 | - | |
| 137 | -/***/ }), | |
| 138 | - | |
| 139 | 4 | /***/ "../assets/dev/js/editor/utils/is-instanceof.js": |
| 140 | 5 | /*!******************************************************!*\ |
| 141 | 6 | !*** ../assets/dev/js/editor/utils/is-instanceof.js ***! |
| 142 | 7 | \******************************************************/ |
| @@ -174,9 +39,9 @@ | ||
| 174 | 39 | /***/ "../assets/dev/js/frontend/document.js": |
| 175 | 40 | /*!*********************************************!*\ |
| 176 | 41 | !*** ../assets/dev/js/frontend/document.js ***! |
| 177 | 42 | \*********************************************/ |
| 178 | -/***/ ((__unused_webpack_module, exports, __webpack_require__) => { | |
| 43 | +/***/ ((__unused_webpack_module, exports) => { | |
| 179 | 44 | |
| 180 | 45 | "use strict"; |
| 181 | 46 | |
| 182 | 47 | |
| @@ -183,10 +48,8 @@ | ||
| 183 | 48 | Object.defineProperty(exports, "__esModule", ({ |
| 184 | 49 | value: true |
| 185 | 50 | })); |
| 186 | 51 | exports["default"] = void 0; |
| 187 | -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js"); | |
| 188 | -__webpack_require__(/*! core-js/modules/esnext.iterator.find.js */ "../node_modules/core-js/modules/esnext.iterator.find.js"); | |
| 189 | 52 | class _default extends elementorModules.ViewModule { |
| 190 | 53 | getDefaultSettings() { |
| 191 | 54 | return { |
| 192 | 55 | selectors: { |
| @@ -237,336 +100,8 @@ | ||
| 237 | 100 | exports["default"] = _default; |
| 238 | 101 | |
| 239 | 102 | /***/ }), |
| 240 | 103 | |
| 241 | -/***/ "../assets/dev/js/frontend/handlers/base-carousel.js": | |
| 242 | -/*!***********************************************************!*\ | |
| 243 | - !*** ../assets/dev/js/frontend/handlers/base-carousel.js ***! | |
| 244 | - \***********************************************************/ | |
| 245 | -/***/ ((__unused_webpack_module, exports, __webpack_require__) => { | |
| 246 | - | |
| 247 | -"use strict"; | |
| 248 | - | |
| 249 | - | |
| 250 | -var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); | |
| 251 | -Object.defineProperty(exports, "__esModule", ({ | |
| 252 | - value: true | |
| 253 | -})); | |
| 254 | -exports["default"] = void 0; | |
| 255 | -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js"); | |
| 256 | -__webpack_require__(/*! core-js/modules/esnext.iterator.find.js */ "../node_modules/core-js/modules/esnext.iterator.find.js"); | |
| 257 | -__webpack_require__(/*! core-js/modules/esnext.iterator.for-each.js */ "../node_modules/core-js/modules/esnext.iterator.for-each.js"); | |
| 258 | -var _baseSwiper = _interopRequireDefault(__webpack_require__(/*! ./base-swiper */ "../assets/dev/js/frontend/handlers/base-swiper.js")); | |
| 259 | -class CarouselHandlerBase extends _baseSwiper.default { | |
| 260 | - getDefaultSettings() { | |
| 261 | - return { | |
| 262 | - selectors: { | |
| 263 | - carousel: '.swiper', | |
| 264 | - swiperWrapper: '.swiper-wrapper', | |
| 265 | - slideContent: '.swiper-slide', | |
| 266 | - swiperArrow: '.elementor-swiper-button', | |
| 267 | - paginationWrapper: '.swiper-pagination', | |
| 268 | - paginationBullet: '.swiper-pagination-bullet', | |
| 269 | - paginationBulletWrapper: '.swiper-pagination-bullets' | |
| 270 | - } | |
| 271 | - }; | |
| 272 | - } | |
| 273 | - getDefaultElements() { | |
| 274 | - const selectors = this.getSettings('selectors'), | |
| 275 | - elements = { | |
| 276 | - $swiperContainer: this.$element.find(selectors.carousel), | |
| 277 | - $swiperWrapper: this.$element.find(selectors.swiperWrapper), | |
| 278 | - $swiperArrows: this.$element.find(selectors.swiperArrow), | |
| 279 | - $paginationWrapper: this.$element.find(selectors.paginationWrapper), | |
| 280 | - $paginationBullets: this.$element.find(selectors.paginationBullet), | |
| 281 | - $paginationBulletWrapper: this.$element.find(selectors.paginationBulletWrapper) | |
| 282 | - }; | |
| 283 | - elements.$slides = elements.$swiperContainer.find(selectors.slideContent); | |
| 284 | - return elements; | |
| 285 | - } | |
| 286 | - getSwiperSettings() { | |
| 287 | - const elementSettings = this.getElementSettings(), | |
| 288 | - slidesToShow = +elementSettings.slides_to_show || 3, | |
| 289 | - isSingleSlide = 1 === slidesToShow, | |
| 290 | - elementorBreakpoints = elementorFrontend.config.responsive.activeBreakpoints, | |
| 291 | - defaultSlidesToShowMap = { | |
| 292 | - mobile: 1, | |
| 293 | - tablet: isSingleSlide ? 1 : 2 | |
| 294 | - }; | |
| 295 | - const swiperOptions = { | |
| 296 | - slidesPerView: slidesToShow, | |
| 297 | - loop: 'yes' === elementSettings.infinite, | |
| 298 | - speed: elementSettings.speed, | |
| 299 | - handleElementorBreakpoints: true | |
| 300 | - }; | |
| 301 | - swiperOptions.breakpoints = {}; | |
| 302 | - let lastBreakpointSlidesToShowValue = slidesToShow; | |
| 303 | - Object.keys(elementorBreakpoints).reverse().forEach(breakpointName => { | |
| 304 | - // Tablet has a specific default `slides_to_show`. | |
| 305 | - const defaultSlidesToShow = defaultSlidesToShowMap[breakpointName] ? defaultSlidesToShowMap[breakpointName] : lastBreakpointSlidesToShowValue; | |
| 306 | - swiperOptions.breakpoints[elementorBreakpoints[breakpointName].value] = { | |
| 307 | - slidesPerView: +elementSettings['slides_to_show_' + breakpointName] || defaultSlidesToShow, | |
| 308 | - slidesPerGroup: +elementSettings['slides_to_scroll_' + breakpointName] || 1 | |
| 309 | - }; | |
| 310 | - if (elementSettings.image_spacing_custom) { | |
| 311 | - swiperOptions.breakpoints[elementorBreakpoints[breakpointName].value].spaceBetween = this.getSpaceBetween(breakpointName); | |
| 312 | - } | |
| 313 | - lastBreakpointSlidesToShowValue = +elementSettings['slides_to_show_' + breakpointName] || defaultSlidesToShow; | |
| 314 | - }); | |
| 315 | - if ('yes' === elementSettings.autoplay) { | |
| 316 | - swiperOptions.autoplay = { | |
| 317 | - delay: elementSettings.autoplay_speed, | |
| 318 | - disableOnInteraction: 'yes' === elementSettings.pause_on_interaction | |
| 319 | - }; | |
| 320 | - } | |
| 321 | - if (isSingleSlide) { | |
| 322 | - swiperOptions.effect = elementSettings.effect; | |
| 323 | - if ('fade' === elementSettings.effect) { | |
| 324 | - swiperOptions.fadeEffect = { | |
| 325 | - crossFade: true | |
| 326 | - }; | |
| 327 | - } | |
| 328 | - } else { | |
| 329 | - swiperOptions.slidesPerGroup = +elementSettings.slides_to_scroll || 1; | |
| 330 | - } | |
| 331 | - if (elementSettings.image_spacing_custom) { | |
| 332 | - swiperOptions.spaceBetween = this.getSpaceBetween(); | |
| 333 | - } | |
| 334 | - const showArrows = 'arrows' === elementSettings.navigation || 'both' === elementSettings.navigation, | |
| 335 | - showPagination = 'dots' === elementSettings.navigation || 'both' === elementSettings.navigation || elementSettings.pagination; | |
| 336 | - if (showArrows) { | |
| 337 | - swiperOptions.navigation = { | |
| 338 | - prevEl: '.elementor-swiper-button-prev', | |
| 339 | - nextEl: '.elementor-swiper-button-next' | |
| 340 | - }; | |
| 341 | - } | |
| 342 | - if (showPagination) { | |
| 343 | - swiperOptions.pagination = { | |
| 344 | - el: `.elementor-element-${this.getID()} .swiper-pagination`, | |
| 345 | - type: !!elementSettings.pagination ? elementSettings.pagination : 'bullets', | |
| 346 | - clickable: true, | |
| 347 | - renderBullet: (index, classname) => { | |
| 348 | - return `<span class="${classname}" role="button" tabindex="0" data-bullet-index="${index}" aria-label="${elementorFrontend.config.i18n.a11yCarouselPaginationBulletMessage} ${index + 1}"></span>`; | |
| 349 | - } | |
| 350 | - }; | |
| 351 | - } | |
| 352 | - if ('yes' === elementSettings.lazyload) { | |
| 353 | - swiperOptions.lazy = { | |
| 354 | - loadPrevNext: true, | |
| 355 | - loadPrevNextAmount: 1 | |
| 356 | - }; | |
| 357 | - } | |
| 358 | - swiperOptions.a11y = { | |
| 359 | - enabled: true, | |
| 360 | - prevSlideMessage: elementorFrontend.config.i18n.a11yCarouselPrevSlideMessage, | |
| 361 | - nextSlideMessage: elementorFrontend.config.i18n.a11yCarouselNextSlideMessage, | |
| 362 | - firstSlideMessage: elementorFrontend.config.i18n.a11yCarouselFirstSlideMessage, | |
| 363 | - lastSlideMessage: elementorFrontend.config.i18n.a11yCarouselLastSlideMessage | |
| 364 | - }; | |
| 365 | - swiperOptions.on = { | |
| 366 | - slideChange: () => { | |
| 367 | - this.a11ySetPaginationTabindex(); | |
| 368 | - this.handleElementHandlers(); | |
| 369 | - this.a11ySetSlideAriaHidden(); | |
| 370 | - }, | |
| 371 | - init: () => { | |
| 372 | - this.a11ySetPaginationTabindex(); | |
| 373 | - this.a11ySetSlideAriaHidden('initialisation'); | |
| 374 | - } | |
| 375 | - }; | |
| 376 | - this.applyOffsetSettings(elementSettings, swiperOptions, slidesToShow); | |
| 377 | - return swiperOptions; | |
| 378 | - } | |
| 379 | - getOffsetWidth() { | |
| 380 | - const currentDevice = elementorFrontend.getCurrentDeviceMode(); | |
| 381 | - return elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'offset_width', 'size', currentDevice) || 0; | |
| 382 | - } | |
| 383 | - applyOffsetSettings(elementSettings, swiperOptions, slidesToShow) { | |
| 384 | - const offsetSide = elementSettings.offset_sides, | |
| 385 | - isNestedCarouselInEditMode = elementorFrontend.isEditMode() && 'NestedCarousel' === this.constructor.name; | |
| 386 | - if (isNestedCarouselInEditMode || !offsetSide || 'none' === offsetSide) { | |
| 387 | - return; | |
| 388 | - } | |
| 389 | - switch (offsetSide) { | |
| 390 | - case 'right': | |
| 391 | - this.forceSliderToShowNextSlideWhenOnLast(swiperOptions, slidesToShow); | |
| 392 | - this.addClassToSwiperContainer('offset-right'); | |
| 393 | - break; | |
| 394 | - case 'left': | |
| 395 | - this.addClassToSwiperContainer('offset-left'); | |
| 396 | - break; | |
| 397 | - case 'both': | |
| 398 | - this.forceSliderToShowNextSlideWhenOnLast(swiperOptions, slidesToShow); | |
| 399 | - this.addClassToSwiperContainer('offset-both'); | |
| 400 | - break; | |
| 401 | - } | |
| 402 | - } | |
| 403 | - forceSliderToShowNextSlideWhenOnLast(swiperOptions, slidesToShow) { | |
| 404 | - swiperOptions.slidesPerView = slidesToShow + 0.001; | |
| 405 | - } | |
| 406 | - addClassToSwiperContainer(className) { | |
| 407 | - this.getDefaultElements().$swiperContainer[0].classList.add(className); | |
| 408 | - } | |
| 409 | - async onInit(...args) { | |
| 410 | - super.onInit(...args); | |
| 411 | - if (!this.elements.$swiperContainer.length || 2 > this.elements.$slides.length) { | |
| 412 | - return; | |
| 413 | - } | |
| 414 | - await this.initSwiper(); | |
| 415 | - const elementSettings = this.getElementSettings(); | |
| 416 | - if ('yes' === elementSettings.pause_on_hover) { | |
| 417 | - this.togglePauseOnHover(true); | |
| 418 | - } | |
| 419 | - } | |
| 420 | - async initSwiper() { | |
| 421 | - const Swiper = elementorFrontend.utils.swiper; | |
| 422 | - this.swiper = await new Swiper(this.elements.$swiperContainer, this.getSwiperSettings()); | |
| 423 | - | |
| 424 | - // Expose the swiper instance in the frontend | |
| 425 | - this.elements.$swiperContainer.data('swiper', this.swiper); | |
| 426 | - } | |
| 427 | - bindEvents() { | |
| 428 | - this.elements.$swiperArrows.on('keydown', this.onDirectionArrowKeydown.bind(this)); | |
| 429 | - this.elements.$paginationWrapper.on('keydown', '.swiper-pagination-bullet', this.onDirectionArrowKeydown.bind(this)); | |
| 430 | - this.elements.$swiperContainer.on('keydown', '.swiper-slide', this.onDirectionArrowKeydown.bind(this)); | |
| 431 | - this.$element.find(':focusable').on('focus', this.onFocusDisableAutoplay.bind(this)); | |
| 432 | - elementorFrontend.elements.$window.on('resize', this.getSwiperSettings.bind(this)); | |
| 433 | - } | |
| 434 | - unbindEvents() { | |
| 435 | - this.elements.$swiperArrows.off(); | |
| 436 | - this.elements.$paginationWrapper.off(); | |
| 437 | - this.elements.$swiperContainer.off(); | |
| 438 | - this.$element.find(':focusable').off(); | |
| 439 | - elementorFrontend.elements.$window.off('resize'); | |
| 440 | - } | |
| 441 | - onDirectionArrowKeydown(event) { | |
| 442 | - const isRTL = elementorFrontend.config.is_rtl, | |
| 443 | - inlineDirectionArrows = ['ArrowLeft', 'ArrowRight'], | |
| 444 | - currentKeydown = event.originalEvent.code, | |
| 445 | - isDirectionInlineKeydown = -1 !== inlineDirectionArrows.indexOf(currentKeydown), | |
| 446 | - directionStart = isRTL ? 'ArrowRight' : 'ArrowLeft', | |
| 447 | - directionEnd = isRTL ? 'ArrowLeft' : 'ArrowRight'; | |
| 448 | - if (!isDirectionInlineKeydown) { | |
| 449 | - return true; | |
| 450 | - } else if (directionStart === currentKeydown) { | |
| 451 | - this.swiper.slidePrev(); | |
| 452 | - } else if (directionEnd === currentKeydown) { | |
| 453 | - this.swiper.slideNext(); | |
| 454 | - } | |
| 455 | - } | |
| 456 | - onFocusDisableAutoplay() { | |
| 457 | - this.swiper.autoplay.stop(); | |
| 458 | - } | |
| 459 | - updateSwiperOption(propertyName) { | |
| 460 | - const elementSettings = this.getElementSettings(), | |
| 461 | - newSettingValue = elementSettings[propertyName], | |
| 462 | - params = this.swiper.params; | |
| 463 | - | |
| 464 | - // Handle special cases where the value to update is not the value that the Swiper library accepts. | |
| 465 | - switch (propertyName) { | |
| 466 | - case 'autoplay_speed': | |
| 467 | - params.autoplay.delay = newSettingValue; | |
| 468 | - break; | |
| 469 | - case 'speed': | |
| 470 | - params.speed = newSettingValue; | |
| 471 | - break; | |
| 472 | - } | |
| 473 | - this.swiper.update(); | |
| 474 | - } | |
| 475 | - getChangeableProperties() { | |
| 476 | - return { | |
| 477 | - pause_on_hover: 'pauseOnHover', | |
| 478 | - autoplay_speed: 'delay', | |
| 479 | - speed: 'speed', | |
| 480 | - arrows_position: 'arrows_position' // Not a Swiper setting. | |
| 481 | - }; | |
| 482 | - } | |
| 483 | - onElementChange(propertyName) { | |
| 484 | - if (0 === propertyName.indexOf('image_spacing_custom')) { | |
| 485 | - this.updateSpaceBetween(propertyName); | |
| 486 | - return; | |
| 487 | - } | |
| 488 | - const changeableProperties = this.getChangeableProperties(); | |
| 489 | - if (changeableProperties[propertyName]) { | |
| 490 | - // 'pause_on_hover' is implemented by the handler with event listeners, not the Swiper library. | |
| 491 | - if ('pause_on_hover' === propertyName) { | |
| 492 | - const newSettingValue = this.getElementSettings('pause_on_hover'); | |
| 493 | - this.togglePauseOnHover('yes' === newSettingValue); | |
| 494 | - } else { | |
| 495 | - this.updateSwiperOption(propertyName); | |
| 496 | - } | |
| 497 | - } | |
| 498 | - } | |
| 499 | - onEditSettingsChange(propertyName) { | |
| 500 | - if ('activeItemIndex' === propertyName) { | |
| 501 | - this.swiper.slideToLoop(this.getEditSettings('activeItemIndex') - 1); | |
| 502 | - } | |
| 503 | - } | |
| 504 | - getSpaceBetween(device = null) { | |
| 505 | - const responsiveControlValue = elementorFrontend.utils.controls.getResponsiveControlValue(this.getElementSettings(), 'image_spacing_custom', 'size', device); | |
| 506 | - return Number(responsiveControlValue) || 0; | |
| 507 | - } | |
| 508 | - updateSpaceBetween(propertyName) { | |
| 509 | - const deviceMatch = propertyName.match('image_spacing_custom_(.*)'), | |
| 510 | - device = deviceMatch ? deviceMatch[1] : 'desktop', | |
| 511 | - newSpaceBetween = this.getSpaceBetween(device); | |
| 512 | - if ('desktop' !== device) { | |
| 513 | - this.swiper.params.breakpoints[elementorFrontend.config.responsive.activeBreakpoints[device].value].spaceBetween = newSpaceBetween; | |
| 514 | - } | |
| 515 | - this.swiper.params.spaceBetween = newSpaceBetween; | |
| 516 | - this.swiper.update(); | |
| 517 | - } | |
| 518 | - getPaginationBullets(type = 'array') { | |
| 519 | - const paginationBullets = this.$element.find(this.getSettings('selectors').paginationBullet); | |
| 520 | - return 'array' === type ? Array.from(paginationBullets) : paginationBullets; | |
| 521 | - } | |
| 522 | - a11ySetPaginationTabindex() { | |
| 523 | - const bulletClass = this.swiper?.params?.pagination.bulletClass, | |
| 524 | - activeBulletClass = this.swiper?.params?.pagination.bulletActiveClass; | |
| 525 | - this.getPaginationBullets().forEach(bullet => { | |
| 526 | - if (!bullet.classList?.contains(activeBulletClass)) { | |
| 527 | - bullet.removeAttribute('tabindex'); | |
| 528 | - } | |
| 529 | - }); | |
| 530 | - const isDirectionInlineArrowKey = 'ArrowLeft' === event?.code || 'ArrowRight' === event?.code; | |
| 531 | - if (event?.target?.classList?.contains(bulletClass) && isDirectionInlineArrowKey) { | |
| 532 | - this.$element.find(`.${activeBulletClass}`).trigger('focus'); | |
| 533 | - } | |
| 534 | - } | |
| 535 | - getSwiperWrapperTranformXValue() { | |
| 536 | - let transformValue = this.elements.$swiperWrapper[0]?.style.transform; | |
| 537 | - transformValue = transformValue.replace('translate3d(', ''); | |
| 538 | - transformValue = transformValue.split(','); | |
| 539 | - transformValue = parseInt(transformValue[0].replace('px', '')); | |
| 540 | - return !!transformValue ? transformValue : 0; | |
| 541 | - } | |
| 542 | - a11ySetSlideAriaHidden(status = '') { | |
| 543 | - const currentIndex = 'initialisation' === status ? 0 : this.swiper?.activeIndex; | |
| 544 | - if ('number' !== typeof currentIndex) { | |
| 545 | - return; | |
| 546 | - } | |
| 547 | - const swiperWrapperTransformXValue = this.getSwiperWrapperTranformXValue(), | |
| 548 | - swiperWrapperWidth = this.elements.$swiperWrapper[0].clientWidth, | |
| 549 | - $slides = this.elements.$swiperContainer.find(this.getSettings('selectors').slideContent); | |
| 550 | - $slides.each((index, slide) => { | |
| 551 | - const isSlideInsideWrapper = 0 <= slide.offsetLeft + swiperWrapperTransformXValue && swiperWrapperWidth > slide.offsetLeft + swiperWrapperTransformXValue; | |
| 552 | - if (!isSlideInsideWrapper) { | |
| 553 | - slide.setAttribute('aria-hidden', true); | |
| 554 | - slide.setAttribute('inert', ''); | |
| 555 | - } else { | |
| 556 | - slide.removeAttribute('aria-hidden'); | |
| 557 | - slide.removeAttribute('inert'); | |
| 558 | - } | |
| 559 | - }); | |
| 560 | - } | |
| 561 | - | |
| 562 | - // Empty method which can be overwritten by child methods. | |
| 563 | - handleElementHandlers() {} | |
| 564 | -} | |
| 565 | -exports["default"] = CarouselHandlerBase; | |
| 566 | - | |
| 567 | -/***/ }), | |
| 568 | - | |
| 569 | 104 | /***/ "../assets/dev/js/frontend/handlers/base-swiper.js": |
| 570 | 105 | /*!*********************************************************!*\ |
| 571 | 106 | !*** ../assets/dev/js/frontend/handlers/base-swiper.js ***! |
| 572 | 107 | \*********************************************************/ |
| @@ -626,18 +161,13 @@ | ||
| 626 | 161 | /***/ "../assets/dev/js/frontend/handlers/base.js": |
| 627 | 162 | /*!**************************************************!*\ |
| 628 | 163 | !*** ../assets/dev/js/frontend/handlers/base.js ***! |
| 629 | 164 | \**************************************************/ |
| 630 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 165 | +/***/ ((module) => { | |
| 631 | 166 | |
| 632 | 167 | "use strict"; |
| 633 | 168 | |
| 634 | 169 | |
| 635 | -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js"); | |
| 636 | -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js"); | |
| 637 | -__webpack_require__(/*! core-js/modules/esnext.iterator.filter.js */ "../node_modules/core-js/modules/esnext.iterator.filter.js"); | |
| 638 | -__webpack_require__(/*! core-js/modules/esnext.iterator.find.js */ "../node_modules/core-js/modules/esnext.iterator.find.js"); | |
| 639 | -__webpack_require__(/*! core-js/modules/esnext.iterator.for-each.js */ "../node_modules/core-js/modules/esnext.iterator.for-each.js"); | |
| 640 | 170 | module.exports = elementorModules.ViewModule.extend({ |
| 641 | 171 | $element: null, |
| 642 | 172 | editorListeners: null, |
| 643 | 173 | onElementChange: null, |
| @@ -656,14 +186,8 @@ | ||
| 656 | 186 | }, |
| 657 | 187 | isActive() { |
| 658 | 188 | return true; |
| 659 | 189 | }, |
| 660 | - isElementInTheCurrentDocument() { | |
| 661 | - if (!elementorFrontend.isEditMode()) { | |
| 662 | - return false; | |
| 663 | - } | |
| 664 | - return elementor.documents.currentDocument.id.toString() === this.$element[0].closest('.elementor').dataset.elementorId; | |
| 665 | - }, | |
| 666 | 190 | findElement(selector) { |
| 667 | 191 | var $mainElement = this.$element; |
| 668 | 192 | return $mainElement.find(selector).filter(function () { |
| 669 | 193 | // Start `closest` from parent since self can be `.elementor-element`. |
| @@ -782,9 +306,9 @@ | ||
| 782 | 306 | let settingsKeys = elementorFrontend.config.elements.keys[type]; |
| 783 | 307 | if (!settingsKeys) { |
| 784 | 308 | settingsKeys = elementorFrontend.config.elements.keys[type] = []; |
| 785 | 309 | jQuery.each(settings.controls, (name, control) => { |
| 786 | - if (control.frontend_available || control.editor_available) { | |
| 310 | + if (control.frontend_available) { | |
| 787 | 311 | settingsKeys.push(name); |
| 788 | 312 | } |
| 789 | 313 | }); |
| 790 | 314 | } |
| @@ -828,112 +352,8 @@ | ||
| 828 | 352 | }); |
| 829 | 353 | |
| 830 | 354 | /***/ }), |
| 831 | 355 | |
| 832 | -/***/ "../assets/dev/js/frontend/handlers/stretched-element.js": | |
| 833 | -/*!***************************************************************!*\ | |
| 834 | - !*** ../assets/dev/js/frontend/handlers/stretched-element.js ***! | |
| 835 | - \***************************************************************/ | |
| 836 | -/***/ ((__unused_webpack_module, exports, __webpack_require__) => { | |
| 837 | - | |
| 838 | -"use strict"; | |
| 839 | - | |
| 840 | - | |
| 841 | -var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); | |
| 842 | -Object.defineProperty(exports, "__esModule", ({ | |
| 843 | - value: true | |
| 844 | -})); | |
| 845 | -exports["default"] = void 0; | |
| 846 | -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js"); | |
| 847 | -__webpack_require__(/*! core-js/modules/esnext.iterator.find.js */ "../node_modules/core-js/modules/esnext.iterator.find.js"); | |
| 848 | -var _base = _interopRequireDefault(__webpack_require__(/*! ./base */ "../assets/dev/js/frontend/handlers/base.js")); | |
| 849 | -class StretchedElement extends _base.default { | |
| 850 | - getStretchedClass() { | |
| 851 | - return 'e-stretched'; | |
| 852 | - } | |
| 853 | - getStretchSettingName() { | |
| 854 | - return 'stretch_element'; | |
| 855 | - } | |
| 856 | - getStretchActiveValue() { | |
| 857 | - return 'yes'; | |
| 858 | - } | |
| 859 | - bindEvents() { | |
| 860 | - const handlerID = this.getUniqueHandlerID(); | |
| 861 | - elementorFrontend.addListenerOnce(handlerID, 'resize', this.stretch); | |
| 862 | - elementorFrontend.addListenerOnce(handlerID, 'sticky:stick', this.stretch, this.$element); | |
| 863 | - elementorFrontend.addListenerOnce(handlerID, 'sticky:unstick', this.stretch, this.$element); | |
| 864 | - if (elementorFrontend.isEditMode()) { | |
| 865 | - this.onKitChangeStretchContainerChange = this.onKitChangeStretchContainerChange.bind(this); | |
| 866 | - elementor.channels.editor.on('kit:change:stretchContainer', this.onKitChangeStretchContainerChange); | |
| 867 | - } | |
| 868 | - } | |
| 869 | - unbindEvents() { | |
| 870 | - elementorFrontend.removeListeners(this.getUniqueHandlerID(), 'resize', this.stretch); | |
| 871 | - if (elementorFrontend.isEditMode()) { | |
| 872 | - elementor.channels.editor.off('kit:change:stretchContainer', this.onKitChangeStretchContainerChange); | |
| 873 | - } | |
| 874 | - } | |
| 875 | - isActive(settings) { | |
| 876 | - return elementorFrontend.isEditMode() || settings.$element.hasClass(this.getStretchedClass()); | |
| 877 | - } | |
| 878 | - getStretchElementForConfig(childSelector = null) { | |
| 879 | - if (childSelector) { | |
| 880 | - return this.$element.find(childSelector); | |
| 881 | - } | |
| 882 | - return this.$element; | |
| 883 | - } | |
| 884 | - getStretchElementConfig() { | |
| 885 | - return { | |
| 886 | - element: this.getStretchElementForConfig(), | |
| 887 | - selectors: { | |
| 888 | - container: this.getStretchContainer() | |
| 889 | - }, | |
| 890 | - considerScrollbar: elementorFrontend.isEditMode() && elementorFrontend.config.is_rtl | |
| 891 | - }; | |
| 892 | - } | |
| 893 | - initStretch() { | |
| 894 | - this.stretch = this.stretch.bind(this); | |
| 895 | - this.stretchElement = new elementorModules.frontend.tools.StretchElement(this.getStretchElementConfig()); | |
| 896 | - } | |
| 897 | - getStretchContainer() { | |
| 898 | - return elementorFrontend.getKitSettings('stretched_section_container') || window; | |
| 899 | - } | |
| 900 | - isStretchSettingEnabled() { | |
| 901 | - return this.getElementSettings(this.getStretchSettingName()) === this.getStretchActiveValue(); | |
| 902 | - } | |
| 903 | - stretch() { | |
| 904 | - if (!this.isStretchSettingEnabled()) { | |
| 905 | - return; | |
| 906 | - } | |
| 907 | - this.stretchElement.stretch(); | |
| 908 | - } | |
| 909 | - onInit(...args) { | |
| 910 | - if (!this.isActive(this.getSettings())) { | |
| 911 | - return; | |
| 912 | - } | |
| 913 | - this.initStretch(); | |
| 914 | - super.onInit(...args); | |
| 915 | - this.stretch(); | |
| 916 | - } | |
| 917 | - onElementChange(propertyName) { | |
| 918 | - const stretchSettingName = this.getStretchSettingName(); | |
| 919 | - if (stretchSettingName === propertyName) { | |
| 920 | - if (this.isStretchSettingEnabled()) { | |
| 921 | - this.stretch(); | |
| 922 | - } else { | |
| 923 | - this.stretchElement.reset(); | |
| 924 | - } | |
| 925 | - } | |
| 926 | - } | |
| 927 | - onKitChangeStretchContainerChange() { | |
| 928 | - this.stretchElement.setSettings('selectors.container', this.getStretchContainer()); | |
| 929 | - this.stretch(); | |
| 930 | - } | |
| 931 | -} | |
| 932 | -exports["default"] = StretchedElement; | |
| 933 | - | |
| 934 | -/***/ }), | |
| 935 | - | |
| 936 | 356 | /***/ "../assets/dev/js/frontend/modules.js": |
| 937 | 357 | /*!********************************************!*\ |
| 938 | 358 | !*** ../assets/dev/js/frontend/modules.js ***! |
| 939 | 359 | \********************************************/ |
| @@ -945,12 +365,10 @@ | ||
| 945 | 365 | var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); |
| 946 | 366 | var _modules = _interopRequireDefault(__webpack_require__(/*! ../modules/modules */ "../assets/dev/js/modules/modules.js")); |
| 947 | 367 | var _document = _interopRequireDefault(__webpack_require__(/*! ./document */ "../assets/dev/js/frontend/document.js")); |
| 948 | 368 | var _stretchElement = _interopRequireDefault(__webpack_require__(/*! ./tools/stretch-element */ "../assets/dev/js/frontend/tools/stretch-element.js")); |
| 949 | -var _stretchedElement = _interopRequireDefault(__webpack_require__(/*! ./handlers/stretched-element */ "../assets/dev/js/frontend/handlers/stretched-element.js")); | |
| 950 | 369 | var _base = _interopRequireDefault(__webpack_require__(/*! ./handlers/base */ "../assets/dev/js/frontend/handlers/base.js")); |
| 951 | 370 | var _baseSwiper = _interopRequireDefault(__webpack_require__(/*! ./handlers/base-swiper */ "../assets/dev/js/frontend/handlers/base-swiper.js")); |
| 952 | -var _baseCarousel = _interopRequireDefault(__webpack_require__(/*! ./handlers/base-carousel */ "../assets/dev/js/frontend/handlers/base-carousel.js")); | |
| 953 | 371 | _modules.default.frontend = { |
| 954 | 372 | Document: _document.default, |
| 955 | 373 | tools: { |
| 956 | 374 | StretchElement: _stretchElement.default |
| @@ -956,11 +374,9 @@ | ||
| 956 | 374 | StretchElement: _stretchElement.default |
| 957 | 375 | }, |
| 958 | 376 | handlers: { |
| 959 | 377 | Base: _base.default, |
| 960 | - StretchedElement: _stretchedElement.default, | |
| 961 | - SwiperBase: _baseSwiper.default, | |
| 962 | - CarouselBase: _baseCarousel.default | |
| 378 | + SwiperBase: _baseSwiper.default | |
| 963 | 379 | } |
| 964 | 380 | }; |
| 965 | 381 | |
| 966 | 382 | /***/ }), |
| @@ -980,11 +396,9 @@ | ||
| 980 | 396 | element: null, |
| 981 | 397 | direction: elementorFrontend.config.is_rtl ? 'right' : 'left', |
| 982 | 398 | selectors: { |
| 983 | 399 | container: window |
| 984 | - }, | |
| 985 | - considerScrollbar: false, | |
| 986 | - cssOutput: 'inline' | |
| 400 | + } | |
| 987 | 401 | }; |
| 988 | 402 | }, |
| 989 | 403 | getDefaultElements() { |
| 990 | 404 | return { |
| @@ -991,12 +405,12 @@ | ||
| 991 | 405 | $element: jQuery(this.getSettings('element')) |
| 992 | 406 | }; |
| 993 | 407 | }, |
| 994 | 408 | stretch() { |
| 995 | - const settings = this.getSettings(); | |
| 996 | - let $container; | |
| 409 | + var containerSelector = this.getSettings('selectors.container'), | |
| 410 | + $container; | |
| 997 | 411 | try { |
| 998 | - $container = jQuery(settings.selectors.container); | |
| 412 | + $container = jQuery(containerSelector); | |
| 999 | 413 | // eslint-disable-next-line no-empty |
| 1000 | 414 | } catch (e) {} |
| 1001 | 415 | if (!$container || !$container.length) { |
| 1002 | 416 | $container = jQuery(this.getDefaultSettings().selectors.container); |
| @@ -1005,11 +419,10 @@ | ||
| 1005 | 419 | var $element = this.elements.$element, |
| 1006 | 420 | containerWidth = $container.innerWidth(), |
| 1007 | 421 | elementOffset = $element.offset().left, |
| 1008 | 422 | isFixed = 'fixed' === $element.css('position'), |
| 1009 | - correctOffset = isFixed ? 0 : elementOffset, | |
| 1010 | - isContainerFullScreen = window === $container[0]; | |
| 1011 | - if (!isContainerFullScreen) { | |
| 423 | + correctOffset = isFixed ? 0 : elementOffset; | |
| 424 | + if (window !== $container[0]) { | |
| 1012 | 425 | var containerOffset = $container.offset().left; |
| 1013 | 426 | if (isFixed) { |
| 1014 | 427 | correctOffset = containerOffset; |
| 1015 | 428 | } |
| @@ -1016,12 +429,8 @@ | ||
| 1016 | 429 | if (elementOffset > containerOffset) { |
| 1017 | 430 | correctOffset = elementOffset - containerOffset; |
| 1018 | 431 | } |
| 1019 | 432 | } |
| 1020 | - if (settings.considerScrollbar && isContainerFullScreen) { | |
| 1021 | - const scrollbarWidth = window.innerWidth - containerWidth; | |
| 1022 | - correctOffset -= scrollbarWidth; | |
| 1023 | - } | |
| 1024 | 433 | if (!isFixed) { |
| 1025 | 434 | if (elementorFrontend.config.is_rtl) { |
| 1026 | 435 | correctOffset = containerWidth - ($element.outerWidth() + correctOffset); |
| 1027 | 436 | } |
| @@ -1026,52 +435,18 @@ | ||
| 1026 | 435 | correctOffset = containerWidth - ($element.outerWidth() + correctOffset); |
| 1027 | 436 | } |
| 1028 | 437 | correctOffset = -correctOffset; |
| 1029 | 438 | } |
| 1030 | - | |
| 1031 | - // Consider margin | |
| 1032 | - if (settings.margin) { | |
| 1033 | - correctOffset += settings.margin; | |
| 1034 | - } | |
| 1035 | 439 | var css = {}; |
| 1036 | - let width = containerWidth; | |
| 1037 | - if (settings.margin) { | |
| 1038 | - width -= settings.margin * 2; | |
| 1039 | - } | |
| 1040 | - css.width = width + 'px'; | |
| 1041 | - css[settings.direction] = correctOffset + 'px'; | |
| 1042 | - if ('variables' === settings.cssOutput) { | |
| 1043 | - this.applyCssVariables($element, css); | |
| 1044 | - return; | |
| 1045 | - } | |
| 440 | + css.width = containerWidth + 'px'; | |
| 441 | + css[this.getSettings('direction')] = correctOffset + 'px'; | |
| 1046 | 442 | $element.css(css); |
| 1047 | 443 | }, |
| 1048 | 444 | reset() { |
| 1049 | - const css = {}, | |
| 1050 | - settings = this.getSettings(), | |
| 1051 | - $element = this.elements.$element; | |
| 1052 | - if ('variables' === settings.cssOutput) { | |
| 1053 | - this.resetCssVariables($element); | |
| 1054 | - return; | |
| 1055 | - } | |
| 445 | + var css = {}; | |
| 1056 | 446 | css.width = ''; |
| 1057 | - css[settings.direction] = ''; | |
| 1058 | - $element.css(css); | |
| 1059 | - }, | |
| 1060 | - applyCssVariables($element, css) { | |
| 1061 | - $element.css('--stretch-width', css.width); | |
| 1062 | - if (!!css.left) { | |
| 1063 | - $element.css('--stretch-left', css.left); | |
| 1064 | - } else { | |
| 1065 | - $element.css('--stretch-right', css.right); | |
| 1066 | - } | |
| 1067 | - }, | |
| 1068 | - resetCssVariables($element) { | |
| 1069 | - $element.css({ | |
| 1070 | - '--stretch-width': '', | |
| 1071 | - '--stretch-left': '', | |
| 1072 | - '--stretch-right': '' | |
| 1073 | - }); | |
| 447 | + css[this.getSettings('direction')] = ''; | |
| 448 | + this.elements.$element.css(css); | |
| 1074 | 449 | } |
| 1075 | 450 | }); |
| 1076 | 451 | |
| 1077 | 452 | /***/ }), |
| @@ -1089,8 +464,9 @@ | ||
| 1089 | 464 | Object.defineProperty(exports, "__esModule", ({ |
| 1090 | 465 | value: true |
| 1091 | 466 | })); |
| 1092 | 467 | exports["default"] = void 0; |
| 468 | +__webpack_require__(/*! core-js/modules/es.error.cause.js */ "../node_modules/core-js/modules/es.error.cause.js"); | |
| 1093 | 469 | var _instanceType = _interopRequireDefault(__webpack_require__(/*! ./instance-type */ "../assets/dev/js/modules/imports/instance-type.js")); |
| 1094 | 470 | var _isInstanceof = _interopRequireDefault(__webpack_require__(/*! ../../editor/utils/is-instanceof */ "../assets/dev/js/editor/utils/is-instanceof.js")); |
| 1095 | 471 | class ArgsObject extends _instanceType.default { |
| 1096 | 472 | static getInstanceType() { |
| @@ -1117,10 +493,12 @@ | ||
| 1117 | 493 | * @param {string} property |
| 1118 | 494 | * @param {{}} args |
| 1119 | 495 | * |
| 1120 | 496 | * @throws {Error} |
| 497 | + * | |
| 1121 | 498 | */ |
| 1122 | - requireArgument(property, args = this.args) { | |
| 499 | + requireArgument(property) { | |
| 500 | + let args = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.args; | |
| 1123 | 501 | if (!Object.prototype.hasOwnProperty.call(args, property)) { |
| 1124 | 502 | throw Error(`${property} is required.`); |
| 1125 | 503 | } |
| 1126 | 504 | } |
| @@ -1134,10 +512,12 @@ | ||
| 1134 | 512 | * @param {string} type |
| 1135 | 513 | * @param {{}} args |
| 1136 | 514 | * |
| 1137 | 515 | * @throws {Error} |
| 516 | + * | |
| 1138 | 517 | */ |
| 1139 | - requireArgumentType(property, type, args = this.args) { | |
| 518 | + requireArgumentType(property, type) { | |
| 519 | + let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args; | |
| 1140 | 520 | this.requireArgument(property, args); |
| 1141 | 521 | if (typeof args[property] !== type) { |
| 1142 | 522 | throw Error(`${property} invalid type: ${type}.`); |
| 1143 | 523 | } |
| @@ -1152,10 +532,12 @@ | ||
| 1152 | 532 | * @param {*} instance |
| 1153 | 533 | * @param {{}} args |
| 1154 | 534 | * |
| 1155 | 535 | * @throws {Error} |
| 536 | + * | |
| 1156 | 537 | */ |
| 1157 | - requireArgumentInstance(property, instance, args = this.args) { | |
| 538 | + requireArgumentInstance(property, instance) { | |
| 539 | + let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args; | |
| 1158 | 540 | this.requireArgument(property, args); |
| 1159 | 541 | if (!(args[property] instanceof instance) && !(0, _isInstanceof.default)(args[property], instance)) { |
| 1160 | 542 | throw Error(`${property} invalid instance.`); |
| 1161 | 543 | } |
| @@ -1170,10 +552,12 @@ | ||
| 1170 | 552 | * @param {*} type |
| 1171 | 553 | * @param {{}} args |
| 1172 | 554 | * |
| 1173 | 555 | * @throws {Error} |
| 556 | + * | |
| 1174 | 557 | */ |
| 1175 | - requireArgumentConstructor(property, type, args = this.args) { | |
| 558 | + requireArgumentConstructor(property, type) { | |
| 559 | + let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.args; | |
| 1176 | 560 | this.requireArgument(property, args); |
| 1177 | 561 | |
| 1178 | 562 | // Note: Converting the constructor to string in order to avoid equation issues |
| 1179 | 563 | // due to different memory addresses between iframes (window.Object !== window.top.Object). |
| @@ -1189,9 +573,9 @@ | ||
| 1189 | 573 | /***/ "../assets/dev/js/modules/imports/force-method-implementation.js": |
| 1190 | 574 | /*!***********************************************************************!*\ |
| 1191 | 575 | !*** ../assets/dev/js/modules/imports/force-method-implementation.js ***! |
| 1192 | 576 | \***********************************************************************/ |
| 1193 | -/***/ ((__unused_webpack_module, exports) => { | |
| 577 | +/***/ ((__unused_webpack_module, exports, __webpack_require__) => { | |
| 1194 | 578 | |
| 1195 | 579 | "use strict"; |
| 1196 | 580 | |
| 1197 | 581 | |
| @@ -1198,12 +582,15 @@ | ||
| 1198 | 582 | Object.defineProperty(exports, "__esModule", ({ |
| 1199 | 583 | value: true |
| 1200 | 584 | })); |
| 1201 | 585 | exports["default"] = exports.ForceMethodImplementation = void 0; |
| 586 | +__webpack_require__(/*! core-js/modules/es.error.cause.js */ "../node_modules/core-js/modules/es.error.cause.js"); | |
| 1202 | 587 | // TODO: Wrong location used as `elementorModules.ForceMethodImplementation(); should be` `elementorUtils.forceMethodImplementation()`; |
| 1203 | 588 | |
| 1204 | 589 | class ForceMethodImplementation extends Error { |
| 1205 | - constructor(info = {}, args = {}) { | |
| 590 | + constructor() { | |
| 591 | + let info = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; | |
| 592 | + let args = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; | |
| 1206 | 593 | super(`${info.isStatic ? 'static ' : ''}${info.fullName}() should be implemented, please provide '${info.functionName || info.fullName}' functionality.`, args); |
| 1207 | 594 | |
| 1208 | 595 | // Allow to pass custom properties to the error. |
| 1209 | 596 | if (Object.keys(args).length) { |
| @@ -1237,9 +624,9 @@ | ||
| 1237 | 624 | /***/ "../assets/dev/js/modules/imports/instance-type.js": |
| 1238 | 625 | /*!*********************************************************!*\ |
| 1239 | 626 | !*** ../assets/dev/js/modules/imports/instance-type.js ***! |
| 1240 | 627 | \*********************************************************/ |
| 1241 | -/***/ ((__unused_webpack_module, exports, __webpack_require__) => { | |
| 628 | +/***/ ((__unused_webpack_module, exports) => { | |
| 1242 | 629 | |
| 1243 | 630 | "use strict"; |
| 1244 | 631 | |
| 1245 | 632 | |
| @@ -1246,11 +633,8 @@ | ||
| 1246 | 633 | Object.defineProperty(exports, "__esModule", ({ |
| 1247 | 634 | value: true |
| 1248 | 635 | })); |
| 1249 | 636 | exports["default"] = void 0; |
| 1250 | -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js"); | |
| 1251 | -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js"); | |
| 1252 | -__webpack_require__(/*! core-js/modules/esnext.iterator.for-each.js */ "../node_modules/core-js/modules/esnext.iterator.for-each.js"); | |
| 1253 | 637 | class InstanceType { |
| 1254 | 638 | static [Symbol.hasInstance](target) { |
| 1255 | 639 | /** |
| 1256 | 640 | * This is function extending being called each time JS uses instanceOf, since babel use it each time it create new class |
| @@ -1311,12 +695,9 @@ | ||
| 1311 | 695 | |
| 1312 | 696 | "use strict"; |
| 1313 | 697 | |
| 1314 | 698 | |
| 1315 | -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js"); | |
| 1316 | -__webpack_require__(/*! core-js/modules/esnext.iterator.constructor.js */ "../node_modules/core-js/modules/esnext.iterator.constructor.js"); | |
| 1317 | -__webpack_require__(/*! core-js/modules/esnext.iterator.filter.js */ "../node_modules/core-js/modules/esnext.iterator.filter.js"); | |
| 1318 | -__webpack_require__(/*! core-js/modules/esnext.iterator.for-each.js */ "../node_modules/core-js/modules/esnext.iterator.for-each.js"); | |
| 699 | +__webpack_require__(/*! core-js/modules/es.error.cause.js */ "../node_modules/core-js/modules/es.error.cause.js"); | |
| 1319 | 700 | const Module = function () { |
| 1320 | 701 | const $ = jQuery, |
| 1321 | 702 | instanceParams = arguments, |
| 1322 | 703 | self = this, |
| @@ -1484,11 +865,10 @@ | ||
| 1484 | 865 | Object.defineProperty(exports, "__esModule", ({ |
| 1485 | 866 | value: true |
| 1486 | 867 | })); |
| 1487 | 868 | exports["default"] = void 0; |
| 1488 | -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js"); | |
| 1489 | 869 | var _viewModule = _interopRequireDefault(__webpack_require__(/*! ../view-module */ "../assets/dev/js/modules/imports/view-module.js")); |
| 1490 | -var _default = exports["default"] = _viewModule.default.extend({ | |
| 870 | +var _default = _viewModule.default.extend({ | |
| 1491 | 871 | getDefaultSettings() { |
| 1492 | 872 | return { |
| 1493 | 873 | container: null, |
| 1494 | 874 | items: null, |
| @@ -1525,8 +905,9 @@ | ||
| 1525 | 905 | } |
| 1526 | 906 | }); |
| 1527 | 907 | } |
| 1528 | 908 | }); |
| 909 | +exports["default"] = _default; | |
| 1529 | 910 | |
| 1530 | 911 | /***/ }), |
| 1531 | 912 | |
| 1532 | 913 | /***/ "../assets/dev/js/modules/imports/utils/scroll.js": |
| @@ -1532,9 +913,9 @@ | ||
| 1532 | 913 | /***/ "../assets/dev/js/modules/imports/utils/scroll.js": |
| 1533 | 914 | /*!********************************************************!*\ |
| 1534 | 915 | !*** ../assets/dev/js/modules/imports/utils/scroll.js ***! |
| 1535 | 916 | \********************************************************/ |
| 1536 | -/***/ ((__unused_webpack_module, exports, __webpack_require__) => { | |
| 917 | +/***/ ((__unused_webpack_module, exports) => { | |
| 1537 | 918 | |
| 1538 | 919 | "use strict"; |
| 1539 | 920 | |
| 1540 | 921 | |
| @@ -1541,9 +922,8 @@ | ||
| 1541 | 922 | Object.defineProperty(exports, "__esModule", ({ |
| 1542 | 923 | value: true |
| 1543 | 924 | })); |
| 1544 | 925 | exports["default"] = void 0; |
| 1545 | -__webpack_require__(/*! core-js/modules/es.array.push.js */ "../node_modules/core-js/modules/es.array.push.js"); | |
| 1546 | 926 | // Moved from elementor pro: 'assets/dev/js/frontend/utils' |
| 1547 | 927 | class Scroll { |
| 1548 | 928 | /** |
| 1549 | 929 | * @param {Object} obj |
| @@ -1554,26 +934,27 @@ | ||
| 1554 | 934 | */ |
| 1555 | 935 | static scrollObserver(obj) { |
| 1556 | 936 | let lastScrollY = 0; |
| 1557 | 937 | |
| 1558 | - // Generating thresholds points along the animation height | |
| 1559 | - // More thresholds points = more trigger points of the callback | |
| 1560 | - const buildThresholds = (sensitivityPercentage = 0) => { | |
| 1561 | - const thresholds = []; | |
| 938 | + // Generating threshholds points along the animation height | |
| 939 | + // More threshholds points = more trigger points of the callback | |
| 940 | + const buildThreshholds = function () { | |
| 941 | + let sensitivityPercentage = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0; | |
| 942 | + const threshholds = []; | |
| 1562 | 943 | if (sensitivityPercentage > 0 && sensitivityPercentage <= 100) { |
| 1563 | 944 | const increment = 100 / sensitivityPercentage; |
| 1564 | 945 | for (let i = 0; i <= 100; i += increment) { |
| 1565 | - thresholds.push(i / 100); | |
| 946 | + threshholds.push(i / 100); | |
| 1566 | 947 | } |
| 1567 | 948 | } else { |
| 1568 | - thresholds.push(0); | |
| 949 | + threshholds.push(0); | |
| 1569 | 950 | } |
| 1570 | - return thresholds; | |
| 951 | + return threshholds; | |
| 1571 | 952 | }; |
| 1572 | 953 | const options = { |
| 1573 | 954 | root: obj.root || null, |
| 1574 | 955 | rootMargin: obj.offset || '0px', |
| 1575 | - threshold: buildThresholds(obj.sensitivity) | |
| 956 | + threshold: buildThreshholds(obj.sensitivity) | |
| 1576 | 957 | }; |
| 1577 | 958 | function handleIntersect(entries) { |
| 1578 | 959 | const currentScrollY = entries[0].boundingClientRect.y, |
| 1579 | 960 | isInViewport = entries[0].isIntersecting, |
| @@ -1595,9 +976,10 @@ | ||
| 1595 | 976 | * @param {Object} offsetObj |
| 1596 | 977 | * @param {number} offsetObj.start - Offset start value in percentages |
| 1597 | 978 | * @param {number} offsetObj.end - Offset end value in percentages |
| 1598 | 979 | */ |
| 1599 | - static getElementViewportPercentage($element, offsetObj = {}) { | |
| 980 | + static getElementViewportPercentage($element) { | |
| 981 | + let offsetObj = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; | |
| 1600 | 982 | const elementOffset = $element[0].getBoundingClientRect(), |
| 1601 | 983 | offsetStart = offsetObj.start || 0, |
| 1602 | 984 | offsetEnd = offsetObj.end || 0, |
| 1603 | 985 | windowStartOffset = window.innerHeight * offsetStart / 100, |
| @@ -1615,9 +997,11 @@ | ||
| 1615 | 997 | * @param {number} offsetObj.start - Offset start value in percentages |
| 1616 | 998 | * @param {number} offsetObj.end - Offset end value in percentages |
| 1617 | 999 | * @param {number} limitPageHeight - Will limit the page height calculation |
| 1618 | 1000 | */ |
| 1619 | - static getPageScrollPercentage(offsetObj = {}, limitPageHeight) { | |
| 1001 | + static getPageScrollPercentage() { | |
| 1002 | + let offsetObj = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; | |
| 1003 | + let limitPageHeight = arguments.length > 1 ? arguments[1] : undefined; | |
| 1620 | 1004 | const offsetStart = offsetObj.start || 0, |
| 1621 | 1005 | offsetEnd = offsetObj.end || 0, |
| 1622 | 1006 | initialPageHeight = limitPageHeight || document.documentElement.scrollHeight - document.documentElement.clientHeight, |
| 1623 | 1007 | heightOffset = initialPageHeight * offsetStart / 100, |
| @@ -1644,9 +1028,9 @@ | ||
| 1644 | 1028 | value: true |
| 1645 | 1029 | })); |
| 1646 | 1030 | exports["default"] = void 0; |
| 1647 | 1031 | var _module = _interopRequireDefault(__webpack_require__(/*! ./module */ "../assets/dev/js/modules/imports/module.js")); |
| 1648 | -var _default = exports["default"] = _module.default.extend({ | |
| 1032 | +var _default = _module.default.extend({ | |
| 1649 | 1033 | elements: null, |
| 1650 | 1034 | getDefaultElements() { |
| 1651 | 1035 | return {}; |
| 1652 | 1036 | }, |
| @@ -1658,8 +1042,9 @@ | ||
| 1658 | 1042 | initElements() { |
| 1659 | 1043 | this.elements = this.getDefaultElements(); |
| 1660 | 1044 | } |
| 1661 | 1045 | }); |
| 1046 | +exports["default"] = _default; | |
| 1662 | 1047 | |
| 1663 | 1048 | /***/ }), |
| 1664 | 1049 | |
| 1665 | 1050 | /***/ "../assets/dev/js/modules/modules.js": |
| @@ -1681,11 +1066,9 @@ | ||
| 1681 | 1066 | var _argsObject = _interopRequireDefault(__webpack_require__(/*! ./imports/args-object */ "../assets/dev/js/modules/imports/args-object.js")); |
| 1682 | 1067 | var _masonry = _interopRequireDefault(__webpack_require__(/*! ./imports/utils/masonry */ "../assets/dev/js/modules/imports/utils/masonry.js")); |
| 1683 | 1068 | var _scroll = _interopRequireDefault(__webpack_require__(/*! ./imports/utils/scroll */ "../assets/dev/js/modules/imports/utils/scroll.js")); |
| 1684 | 1069 | var _forceMethodImplementation = _interopRequireDefault(__webpack_require__(/*! ./imports/force-method-implementation */ "../assets/dev/js/modules/imports/force-method-implementation.js")); |
| 1685 | -var _templateRegistryHelpers = __webpack_require__(/*! ../../../../app/modules/import-export-customization/assets/js/shared/utils/template-registry-helpers */ "../app/modules/import-export-customization/assets/js/shared/utils/template-registry-helpers.js"); | |
| 1686 | -var _customizationDialogs = __webpack_require__(/*! ../../../../app/modules/import-export-customization/assets/js/shared/registry/customization-dialogs */ "../app/modules/import-export-customization/assets/js/shared/registry/customization-dialogs.js"); | |
| 1687 | -const baseModules = { | |
| 1070 | +var _default = window.elementorModules = { | |
| 1688 | 1071 | Module: _module.default, |
| 1689 | 1072 | ViewModule: _viewModule.default, |
| 1690 | 1073 | ArgsObject: _argsObject.default, |
| 1691 | 1074 | ForceMethodImplementation: _forceMethodImplementation.default, |
| @@ -1691,38 +1074,14 @@ | ||
| 1691 | 1074 | ForceMethodImplementation: _forceMethodImplementation.default, |
| 1692 | 1075 | utils: { |
| 1693 | 1076 | Masonry: _masonry.default, |
| 1694 | 1077 | Scroll: _scroll.default |
| 1695 | - }, | |
| 1696 | - importExport: { | |
| 1697 | - createGetInitialState: _templateRegistryHelpers.createGetInitialState, | |
| 1698 | - customizationDialogsRegistry: _customizationDialogs.customizationDialogsRegistry | |
| 1699 | 1078 | } |
| 1700 | 1079 | }; |
| 1701 | -if (!window.elementorModules) { | |
| 1702 | - window.elementorModules = baseModules; | |
| 1703 | -} else { | |
| 1704 | - Object.assign(window.elementorModules, baseModules); | |
| 1705 | -} | |
| 1706 | -var _default = exports["default"] = window.elementorModules; | |
| 1080 | +exports["default"] = _default; | |
| 1707 | 1081 | |
| 1708 | 1082 | /***/ }), |
| 1709 | 1083 | |
| 1710 | -/***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js": | |
| 1711 | -/*!***********************************************************************!*\ | |
| 1712 | - !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***! | |
| 1713 | - \***********************************************************************/ | |
| 1714 | -/***/ ((module) => { | |
| 1715 | - | |
| 1716 | -function _interopRequireDefault(e) { | |
| 1717 | - return e && e.__esModule ? e : { | |
| 1718 | - "default": e | |
| 1719 | - }; | |
| 1720 | -} | |
| 1721 | -module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 1722 | - | |
| 1723 | -/***/ }), | |
| 1724 | - | |
| 1725 | 1084 | /***/ "../node_modules/core-js/internals/a-callable.js": |
| 1726 | 1085 | /*!*******************************************************!*\ |
| 1727 | 1086 | !*** ../node_modules/core-js/internals/a-callable.js ***! |
| 1728 | 1087 | \*******************************************************/ |
| @@ -1727,10 +1086,8 @@ | ||
| 1727 | 1086 | !*** ../node_modules/core-js/internals/a-callable.js ***! |
| 1728 | 1087 | \*******************************************************/ |
| 1729 | 1088 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 1730 | 1089 | |
| 1731 | -"use strict"; | |
| 1732 | - | |
| 1733 | 1090 | var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); |
| 1734 | 1091 | var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../node_modules/core-js/internals/try-to-string.js"); |
| 1735 | 1092 | |
| 1736 | 1093 | var $TypeError = TypeError; |
| @@ -1737,29 +1094,28 @@ | ||
| 1737 | 1094 | |
| 1738 | 1095 | // `Assert: IsCallable(argument) is true` |
| 1739 | 1096 | module.exports = function (argument) { |
| 1740 | 1097 | if (isCallable(argument)) return argument; |
| 1741 | - throw new $TypeError(tryToString(argument) + ' is not a function'); | |
| 1098 | + throw $TypeError(tryToString(argument) + ' is not a function'); | |
| 1742 | 1099 | }; |
| 1743 | 1100 | |
| 1744 | 1101 | |
| 1745 | 1102 | /***/ }), |
| 1746 | 1103 | |
| 1747 | -/***/ "../node_modules/core-js/internals/an-instance.js": | |
| 1748 | -/*!********************************************************!*\ | |
| 1749 | - !*** ../node_modules/core-js/internals/an-instance.js ***! | |
| 1750 | - \********************************************************/ | |
| 1104 | +/***/ "../node_modules/core-js/internals/a-possible-prototype.js": | |
| 1105 | +/*!*****************************************************************!*\ | |
| 1106 | + !*** ../node_modules/core-js/internals/a-possible-prototype.js ***! | |
| 1107 | + \*****************************************************************/ | |
| 1751 | 1108 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 1752 | 1109 | |
| 1753 | -"use strict"; | |
| 1110 | +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); | |
| 1754 | 1111 | |
| 1755 | -var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js"); | |
| 1756 | - | |
| 1112 | +var $String = String; | |
| 1757 | 1113 | var $TypeError = TypeError; |
| 1758 | 1114 | |
| 1759 | -module.exports = function (it, Prototype) { | |
| 1760 | - if (isPrototypeOf(Prototype, it)) return it; | |
| 1761 | - throw new $TypeError('Incorrect invocation'); | |
| 1115 | +module.exports = function (argument) { | |
| 1116 | + if (typeof argument == 'object' || isCallable(argument)) return argument; | |
| 1117 | + throw $TypeError("Can't set " + $String(argument) + ' as a prototype'); | |
| 1762 | 1118 | }; |
| 1763 | 1119 | |
| 1764 | 1120 | |
| 1765 | 1121 | /***/ }), |
| @@ -1769,10 +1125,8 @@ | ||
| 1769 | 1125 | !*** ../node_modules/core-js/internals/an-object.js ***! |
| 1770 | 1126 | \******************************************************/ |
| 1771 | 1127 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 1772 | 1128 | |
| 1773 | -"use strict"; | |
| 1774 | - | |
| 1775 | 1129 | var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js"); |
| 1776 | 1130 | |
| 1777 | 1131 | var $String = String; |
| 1778 | 1132 | var $TypeError = TypeError; |
| @@ -1779,9 +1133,9 @@ | ||
| 1779 | 1133 | |
| 1780 | 1134 | // `Assert: Type(argument) is Object` |
| 1781 | 1135 | module.exports = function (argument) { |
| 1782 | 1136 | if (isObject(argument)) return argument; |
| 1783 | - throw new $TypeError($String(argument) + ' is not an object'); | |
| 1137 | + throw $TypeError($String(argument) + ' is not an object'); | |
| 1784 | 1138 | }; |
| 1785 | 1139 | |
| 1786 | 1140 | |
| 1787 | 1141 | /***/ }), |
| @@ -1791,10 +1145,8 @@ | ||
| 1791 | 1145 | !*** ../node_modules/core-js/internals/array-includes.js ***! |
| 1792 | 1146 | \***********************************************************/ |
| 1793 | 1147 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 1794 | 1148 | |
| 1795 | -"use strict"; | |
| 1796 | - | |
| 1797 | 1149 | var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js"); |
| 1798 | 1150 | var toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "../node_modules/core-js/internals/to-absolute-index.js"); |
| 1799 | 1151 | var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../node_modules/core-js/internals/length-of-array-like.js"); |
| 1800 | 1152 | |
| @@ -1802,17 +1154,16 @@ | ||
| 1802 | 1154 | var createMethod = function (IS_INCLUDES) { |
| 1803 | 1155 | return function ($this, el, fromIndex) { |
| 1804 | 1156 | var O = toIndexedObject($this); |
| 1805 | 1157 | var length = lengthOfArrayLike(O); |
| 1806 | - if (length === 0) return !IS_INCLUDES && -1; | |
| 1807 | 1158 | var index = toAbsoluteIndex(fromIndex, length); |
| 1808 | 1159 | var value; |
| 1809 | 1160 | // Array#includes uses SameValueZero equality algorithm |
| 1810 | 1161 | // eslint-disable-next-line no-self-compare -- NaN check |
| 1811 | - if (IS_INCLUDES && el !== el) while (length > index) { | |
| 1162 | + if (IS_INCLUDES && el != el) while (length > index) { | |
| 1812 | 1163 | value = O[index++]; |
| 1813 | 1164 | // eslint-disable-next-line no-self-compare -- NaN check |
| 1814 | - if (value !== value) return true; | |
| 1165 | + if (value != value) return true; | |
| 1815 | 1166 | // Array#indexOf ignores holes, Array#includes - not |
| 1816 | 1167 | } else for (;length > index; index++) { |
| 1817 | 1168 | if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0; |
| 1818 | 1169 | } return !IS_INCLUDES && -1; |
| @@ -1830,69 +1181,8 @@ | ||
| 1830 | 1181 | |
| 1831 | 1182 | |
| 1832 | 1183 | /***/ }), |
| 1833 | 1184 | |
| 1834 | -/***/ "../node_modules/core-js/internals/array-set-length.js": | |
| 1835 | -/*!*************************************************************!*\ | |
| 1836 | - !*** ../node_modules/core-js/internals/array-set-length.js ***! | |
| 1837 | - \*************************************************************/ | |
| 1838 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 1839 | - | |
| 1840 | -"use strict"; | |
| 1841 | - | |
| 1842 | -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js"); | |
| 1843 | -var isArray = __webpack_require__(/*! ../internals/is-array */ "../node_modules/core-js/internals/is-array.js"); | |
| 1844 | - | |
| 1845 | -var $TypeError = TypeError; | |
| 1846 | -// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe | |
| 1847 | -var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; | |
| 1848 | - | |
| 1849 | -// Safari < 13 does not throw an error in this case | |
| 1850 | -var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () { | |
| 1851 | - // makes no sense without proper strict mode support | |
| 1852 | - if (this !== undefined) return true; | |
| 1853 | - try { | |
| 1854 | - // eslint-disable-next-line es/no-object-defineproperty -- safe | |
| 1855 | - Object.defineProperty([], 'length', { writable: false }).length = 1; | |
| 1856 | - } catch (error) { | |
| 1857 | - return error instanceof TypeError; | |
| 1858 | - } | |
| 1859 | -}(); | |
| 1860 | - | |
| 1861 | -module.exports = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) { | |
| 1862 | - if (isArray(O) && !getOwnPropertyDescriptor(O, 'length').writable) { | |
| 1863 | - throw new $TypeError('Cannot set read only .length'); | |
| 1864 | - } return O.length = length; | |
| 1865 | -} : function (O, length) { | |
| 1866 | - return O.length = length; | |
| 1867 | -}; | |
| 1868 | - | |
| 1869 | - | |
| 1870 | -/***/ }), | |
| 1871 | - | |
| 1872 | -/***/ "../node_modules/core-js/internals/call-with-safe-iteration-closing.js": | |
| 1873 | -/*!*****************************************************************************!*\ | |
| 1874 | - !*** ../node_modules/core-js/internals/call-with-safe-iteration-closing.js ***! | |
| 1875 | - \*****************************************************************************/ | |
| 1876 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 1877 | - | |
| 1878 | -"use strict"; | |
| 1879 | - | |
| 1880 | -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js"); | |
| 1881 | -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js"); | |
| 1882 | - | |
| 1883 | -// call something on iterator step with safe closing on error | |
| 1884 | -module.exports = function (iterator, fn, value, ENTRIES) { | |
| 1885 | - try { | |
| 1886 | - return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value); | |
| 1887 | - } catch (error) { | |
| 1888 | - iteratorClose(iterator, 'throw', error); | |
| 1889 | - } | |
| 1890 | -}; | |
| 1891 | - | |
| 1892 | - | |
| 1893 | -/***/ }), | |
| 1894 | - | |
| 1895 | 1185 | /***/ "../node_modules/core-js/internals/classof-raw.js": |
| 1896 | 1186 | /*!********************************************************!*\ |
| 1897 | 1187 | !*** ../node_modules/core-js/internals/classof-raw.js ***! |
| 1898 | 1188 | \********************************************************/ |
| @@ -1897,15 +1187,13 @@ | ||
| 1897 | 1187 | !*** ../node_modules/core-js/internals/classof-raw.js ***! |
| 1898 | 1188 | \********************************************************/ |
| 1899 | 1189 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 1900 | 1190 | |
| 1901 | -"use strict"; | |
| 1191 | +var uncurryThisRaw = __webpack_require__(/*! ../internals/function-uncurry-this-raw */ "../node_modules/core-js/internals/function-uncurry-this-raw.js"); | |
| 1902 | 1192 | |
| 1903 | -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js"); | |
| 1193 | +var toString = uncurryThisRaw({}.toString); | |
| 1194 | +var stringSlice = uncurryThisRaw(''.slice); | |
| 1904 | 1195 | |
| 1905 | -var toString = uncurryThis({}.toString); | |
| 1906 | -var stringSlice = uncurryThis(''.slice); | |
| 1907 | - | |
| 1908 | 1196 | module.exports = function (it) { |
| 1909 | 1197 | return stringSlice(toString(it), 8, -1); |
| 1910 | 1198 | }; |
| 1911 | 1199 | |
| @@ -1917,10 +1205,8 @@ | ||
| 1917 | 1205 | !*** ../node_modules/core-js/internals/classof.js ***! |
| 1918 | 1206 | \****************************************************/ |
| 1919 | 1207 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 1920 | 1208 | |
| 1921 | -"use strict"; | |
| 1922 | - | |
| 1923 | 1209 | var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "../node_modules/core-js/internals/to-string-tag-support.js"); |
| 1924 | 1210 | var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); |
| 1925 | 1211 | var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js"); |
| 1926 | 1212 | var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js"); |
| @@ -1928,9 +1214,9 @@ | ||
| 1928 | 1214 | var TO_STRING_TAG = wellKnownSymbol('toStringTag'); |
| 1929 | 1215 | var $Object = Object; |
| 1930 | 1216 | |
| 1931 | 1217 | // ES3 wrong here |
| 1932 | -var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments'; | |
| 1218 | +var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments'; | |
| 1933 | 1219 | |
| 1934 | 1220 | // fallback for IE11 Script Access Denied error |
| 1935 | 1221 | var tryGet = function (it, key) { |
| 1936 | 1222 | try { |
| @@ -1946,9 +1232,9 @@ | ||
| 1946 | 1232 | : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag |
| 1947 | 1233 | // builtinTag case |
| 1948 | 1234 | : CORRECT_ARGUMENTS ? classofRaw(O) |
| 1949 | 1235 | // ES3 arguments fallback |
| 1950 | - : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result; | |
| 1236 | + : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result; | |
| 1951 | 1237 | }; |
| 1952 | 1238 | |
| 1953 | 1239 | |
| 1954 | 1240 | /***/ }), |
| @@ -1958,10 +1244,8 @@ | ||
| 1958 | 1244 | !*** ../node_modules/core-js/internals/copy-constructor-properties.js ***! |
| 1959 | 1245 | \************************************************************************/ |
| 1960 | 1246 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 1961 | 1247 | |
| 1962 | -"use strict"; | |
| 1963 | - | |
| 1964 | 1248 | var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js"); |
| 1965 | 1249 | var ownKeys = __webpack_require__(/*! ../internals/own-keys */ "../node_modules/core-js/internals/own-keys.js"); |
| 1966 | 1250 | var getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../node_modules/core-js/internals/object-get-own-property-descriptor.js"); |
| 1967 | 1251 | var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js"); |
| @@ -1980,45 +1264,8 @@ | ||
| 1980 | 1264 | |
| 1981 | 1265 | |
| 1982 | 1266 | /***/ }), |
| 1983 | 1267 | |
| 1984 | -/***/ "../node_modules/core-js/internals/correct-prototype-getter.js": | |
| 1985 | -/*!*********************************************************************!*\ | |
| 1986 | - !*** ../node_modules/core-js/internals/correct-prototype-getter.js ***! | |
| 1987 | - \*********************************************************************/ | |
| 1988 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 1989 | - | |
| 1990 | -"use strict"; | |
| 1991 | - | |
| 1992 | -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js"); | |
| 1993 | - | |
| 1994 | -module.exports = !fails(function () { | |
| 1995 | - function F() { /* empty */ } | |
| 1996 | - F.prototype.constructor = null; | |
| 1997 | - // eslint-disable-next-line es/no-object-getprototypeof -- required for testing | |
| 1998 | - return Object.getPrototypeOf(new F()) !== F.prototype; | |
| 1999 | -}); | |
| 2000 | - | |
| 2001 | - | |
| 2002 | -/***/ }), | |
| 2003 | - | |
| 2004 | -/***/ "../node_modules/core-js/internals/create-iter-result-object.js": | |
| 2005 | -/*!**********************************************************************!*\ | |
| 2006 | - !*** ../node_modules/core-js/internals/create-iter-result-object.js ***! | |
| 2007 | - \**********************************************************************/ | |
| 2008 | -/***/ ((module) => { | |
| 2009 | - | |
| 2010 | -"use strict"; | |
| 2011 | - | |
| 2012 | -// `CreateIterResultObject` abstract operation | |
| 2013 | -// https://tc39.es/ecma262/#sec-createiterresultobject | |
| 2014 | -module.exports = function (value, done) { | |
| 2015 | - return { value: value, done: done }; | |
| 2016 | -}; | |
| 2017 | - | |
| 2018 | - | |
| 2019 | -/***/ }), | |
| 2020 | - | |
| 2021 | 1268 | /***/ "../node_modules/core-js/internals/create-non-enumerable-property.js": |
| 2022 | 1269 | /*!***************************************************************************!*\ |
| 2023 | 1270 | !*** ../node_modules/core-js/internals/create-non-enumerable-property.js ***! |
| 2024 | 1271 | \***************************************************************************/ |
| @@ -2023,10 +1270,8 @@ | ||
| 2023 | 1270 | !*** ../node_modules/core-js/internals/create-non-enumerable-property.js ***! |
| 2024 | 1271 | \***************************************************************************/ |
| 2025 | 1272 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2026 | 1273 | |
| 2027 | -"use strict"; | |
| 2028 | - | |
| 2029 | 1274 | var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js"); |
| 2030 | 1275 | var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js"); |
| 2031 | 1276 | var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js"); |
| 2032 | 1277 | |
| @@ -2045,10 +1290,8 @@ | ||
| 2045 | 1290 | !*** ../node_modules/core-js/internals/create-property-descriptor.js ***! |
| 2046 | 1291 | \***********************************************************************/ |
| 2047 | 1292 | /***/ ((module) => { |
| 2048 | 1293 | |
| 2049 | -"use strict"; | |
| 2050 | - | |
| 2051 | 1294 | module.exports = function (bitmap, value) { |
| 2052 | 1295 | return { |
| 2053 | 1296 | enumerable: !(bitmap & 1), |
| 2054 | 1297 | configurable: !(bitmap & 2), |
| @@ -2059,48 +1302,8 @@ | ||
| 2059 | 1302 | |
| 2060 | 1303 | |
| 2061 | 1304 | /***/ }), |
| 2062 | 1305 | |
| 2063 | -/***/ "../node_modules/core-js/internals/create-property.js": | |
| 2064 | -/*!************************************************************!*\ | |
| 2065 | - !*** ../node_modules/core-js/internals/create-property.js ***! | |
| 2066 | - \************************************************************/ | |
| 2067 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2068 | - | |
| 2069 | -"use strict"; | |
| 2070 | - | |
| 2071 | -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js"); | |
| 2072 | -var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js"); | |
| 2073 | -var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js"); | |
| 2074 | - | |
| 2075 | -module.exports = function (object, key, value) { | |
| 2076 | - if (DESCRIPTORS) definePropertyModule.f(object, key, createPropertyDescriptor(0, value)); | |
| 2077 | - else object[key] = value; | |
| 2078 | -}; | |
| 2079 | - | |
| 2080 | - | |
| 2081 | -/***/ }), | |
| 2082 | - | |
| 2083 | -/***/ "../node_modules/core-js/internals/define-built-in-accessor.js": | |
| 2084 | -/*!*********************************************************************!*\ | |
| 2085 | - !*** ../node_modules/core-js/internals/define-built-in-accessor.js ***! | |
| 2086 | - \*********************************************************************/ | |
| 2087 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2088 | - | |
| 2089 | -"use strict"; | |
| 2090 | - | |
| 2091 | -var makeBuiltIn = __webpack_require__(/*! ../internals/make-built-in */ "../node_modules/core-js/internals/make-built-in.js"); | |
| 2092 | -var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js"); | |
| 2093 | - | |
| 2094 | -module.exports = function (target, name, descriptor) { | |
| 2095 | - if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true }); | |
| 2096 | - if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true }); | |
| 2097 | - return defineProperty.f(target, name, descriptor); | |
| 2098 | -}; | |
| 2099 | - | |
| 2100 | - | |
| 2101 | -/***/ }), | |
| 2102 | - | |
| 2103 | 1306 | /***/ "../node_modules/core-js/internals/define-built-in.js": |
| 2104 | 1307 | /*!************************************************************!*\ |
| 2105 | 1308 | !*** ../node_modules/core-js/internals/define-built-in.js ***! |
| 2106 | 1309 | \************************************************************/ |
| @@ -2105,10 +1308,8 @@ | ||
| 2105 | 1308 | !*** ../node_modules/core-js/internals/define-built-in.js ***! |
| 2106 | 1309 | \************************************************************/ |
| 2107 | 1310 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2108 | 1311 | |
| 2109 | -"use strict"; | |
| 2110 | - | |
| 2111 | 1312 | var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); |
| 2112 | 1313 | var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js"); |
| 2113 | 1314 | var makeBuiltIn = __webpack_require__(/*! ../internals/make-built-in */ "../node_modules/core-js/internals/make-built-in.js"); |
| 2114 | 1315 | var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js"); |
| @@ -2138,26 +1339,8 @@ | ||
| 2138 | 1339 | |
| 2139 | 1340 | |
| 2140 | 1341 | /***/ }), |
| 2141 | 1342 | |
| 2142 | -/***/ "../node_modules/core-js/internals/define-built-ins.js": | |
| 2143 | -/*!*************************************************************!*\ | |
| 2144 | - !*** ../node_modules/core-js/internals/define-built-ins.js ***! | |
| 2145 | - \*************************************************************/ | |
| 2146 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2147 | - | |
| 2148 | -"use strict"; | |
| 2149 | - | |
| 2150 | -var defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ "../node_modules/core-js/internals/define-built-in.js"); | |
| 2151 | - | |
| 2152 | -module.exports = function (target, src, options) { | |
| 2153 | - for (var key in src) defineBuiltIn(target, key, src[key], options); | |
| 2154 | - return target; | |
| 2155 | -}; | |
| 2156 | - | |
| 2157 | - | |
| 2158 | -/***/ }), | |
| 2159 | - | |
| 2160 | 1343 | /***/ "../node_modules/core-js/internals/define-global-property.js": |
| 2161 | 1344 | /*!*******************************************************************!*\ |
| 2162 | 1345 | !*** ../node_modules/core-js/internals/define-global-property.js ***! |
| 2163 | 1346 | \*******************************************************************/ |
| @@ -2162,20 +1345,18 @@ | ||
| 2162 | 1345 | !*** ../node_modules/core-js/internals/define-global-property.js ***! |
| 2163 | 1346 | \*******************************************************************/ |
| 2164 | 1347 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2165 | 1348 | |
| 2166 | -"use strict"; | |
| 1349 | +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js"); | |
| 2167 | 1350 | |
| 2168 | -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js"); | |
| 2169 | - | |
| 2170 | 1351 | // eslint-disable-next-line es/no-object-defineproperty -- safe |
| 2171 | 1352 | var defineProperty = Object.defineProperty; |
| 2172 | 1353 | |
| 2173 | 1354 | module.exports = function (key, value) { |
| 2174 | 1355 | try { |
| 2175 | - defineProperty(globalThis, key, { value: value, configurable: true, writable: true }); | |
| 1356 | + defineProperty(global, key, { value: value, configurable: true, writable: true }); | |
| 2176 | 1357 | } catch (error) { |
| 2177 | - globalThis[key] = value; | |
| 1358 | + global[key] = value; | |
| 2178 | 1359 | } return value; |
| 2179 | 1360 | }; |
| 2180 | 1361 | |
| 2181 | 1362 | |
| @@ -2186,21 +1367,38 @@ | ||
| 2186 | 1367 | !*** ../node_modules/core-js/internals/descriptors.js ***! |
| 2187 | 1368 | \********************************************************/ |
| 2188 | 1369 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2189 | 1370 | |
| 2190 | -"use strict"; | |
| 2191 | - | |
| 2192 | 1371 | var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js"); |
| 2193 | 1372 | |
| 2194 | 1373 | // Detect IE8's incomplete defineProperty implementation |
| 2195 | 1374 | module.exports = !fails(function () { |
| 2196 | 1375 | // eslint-disable-next-line es/no-object-defineproperty -- required for testing |
| 2197 | - return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7; | |
| 1376 | + return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7; | |
| 2198 | 1377 | }); |
| 2199 | 1378 | |
| 2200 | 1379 | |
| 2201 | 1380 | /***/ }), |
| 2202 | 1381 | |
| 1382 | +/***/ "../node_modules/core-js/internals/document-all.js": | |
| 1383 | +/*!*********************************************************!*\ | |
| 1384 | + !*** ../node_modules/core-js/internals/document-all.js ***! | |
| 1385 | + \*********************************************************/ | |
| 1386 | +/***/ ((module) => { | |
| 1387 | + | |
| 1388 | +var documentAll = typeof document == 'object' && document.all; | |
| 1389 | + | |
| 1390 | +// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot | |
| 1391 | +var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined; | |
| 1392 | + | |
| 1393 | +module.exports = { | |
| 1394 | + all: documentAll, | |
| 1395 | + IS_HTMLDDA: IS_HTMLDDA | |
| 1396 | +}; | |
| 1397 | + | |
| 1398 | + | |
| 1399 | +/***/ }), | |
| 1400 | + | |
| 2203 | 1401 | /***/ "../node_modules/core-js/internals/document-create-element.js": |
| 2204 | 1402 | /*!********************************************************************!*\ |
| 2205 | 1403 | !*** ../node_modules/core-js/internals/document-create-element.js ***! |
| 2206 | 1404 | \********************************************************************/ |
| @@ -2205,14 +1403,12 @@ | ||
| 2205 | 1403 | !*** ../node_modules/core-js/internals/document-create-element.js ***! |
| 2206 | 1404 | \********************************************************************/ |
| 2207 | 1405 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2208 | 1406 | |
| 2209 | -"use strict"; | |
| 2210 | - | |
| 2211 | -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js"); | |
| 1407 | +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js"); | |
| 2212 | 1408 | var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js"); |
| 2213 | 1409 | |
| 2214 | -var document = globalThis.document; | |
| 1410 | +var document = global.document; | |
| 2215 | 1411 | // typeof document.createElement is 'object' in old IE |
| 2216 | 1412 | var EXISTS = isObject(document) && isObject(document.createElement); |
| 2217 | 1413 | |
| 2218 | 1414 | module.exports = function (it) { |
| @@ -2221,25 +1417,56 @@ | ||
| 2221 | 1417 | |
| 2222 | 1418 | |
| 2223 | 1419 | /***/ }), |
| 2224 | 1420 | |
| 2225 | -/***/ "../node_modules/core-js/internals/does-not-exceed-safe-integer.js": | |
| 2226 | -/*!*************************************************************************!*\ | |
| 2227 | - !*** ../node_modules/core-js/internals/does-not-exceed-safe-integer.js ***! | |
| 2228 | - \*************************************************************************/ | |
| 2229 | -/***/ ((module) => { | |
| 1421 | +/***/ "../node_modules/core-js/internals/engine-user-agent.js": | |
| 1422 | +/*!**************************************************************!*\ | |
| 1423 | + !*** ../node_modules/core-js/internals/engine-user-agent.js ***! | |
| 1424 | + \**************************************************************/ | |
| 1425 | +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2230 | 1426 | |
| 2231 | -"use strict"; | |
| 1427 | +var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js"); | |
| 2232 | 1428 | |
| 2233 | -var $TypeError = TypeError; | |
| 2234 | -var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991 | |
| 1429 | +module.exports = getBuiltIn('navigator', 'userAgent') || ''; | |
| 2235 | 1430 | |
| 2236 | -module.exports = function (it) { | |
| 2237 | - if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded'); | |
| 2238 | - return it; | |
| 2239 | -}; | |
| 2240 | 1431 | |
| 1432 | +/***/ }), | |
| 2241 | 1433 | |
| 1434 | +/***/ "../node_modules/core-js/internals/engine-v8-version.js": | |
| 1435 | +/*!**************************************************************!*\ | |
| 1436 | + !*** ../node_modules/core-js/internals/engine-v8-version.js ***! | |
| 1437 | + \**************************************************************/ | |
| 1438 | +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 1439 | + | |
| 1440 | +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js"); | |
| 1441 | +var userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ "../node_modules/core-js/internals/engine-user-agent.js"); | |
| 1442 | + | |
| 1443 | +var process = global.process; | |
| 1444 | +var Deno = global.Deno; | |
| 1445 | +var versions = process && process.versions || Deno && Deno.version; | |
| 1446 | +var v8 = versions && versions.v8; | |
| 1447 | +var match, version; | |
| 1448 | + | |
| 1449 | +if (v8) { | |
| 1450 | + match = v8.split('.'); | |
| 1451 | + // in old Chrome, versions of V8 isn't V8 = Chrome / 10 | |
| 1452 | + // but their correct versions are not interesting for us | |
| 1453 | + version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]); | |
| 1454 | +} | |
| 1455 | + | |
| 1456 | +// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0` | |
| 1457 | +// so check `userAgent` even if `.v8` exists, but 0 | |
| 1458 | +if (!version && userAgent) { | |
| 1459 | + match = userAgent.match(/Edge\/(\d+)/); | |
| 1460 | + if (!match || match[1] >= 74) { | |
| 1461 | + match = userAgent.match(/Chrome\/(\d+)/); | |
| 1462 | + if (match) version = +match[1]; | |
| 1463 | + } | |
| 1464 | +} | |
| 1465 | + | |
| 1466 | +module.exports = version; | |
| 1467 | + | |
| 1468 | + | |
| 2242 | 1469 | /***/ }), |
| 2243 | 1470 | |
| 2244 | 1471 | /***/ "../node_modules/core-js/internals/enum-bug-keys.js": |
| 2245 | 1472 | /*!**********************************************************!*\ |
| @@ -2246,10 +1473,8 @@ | ||
| 2246 | 1473 | !*** ../node_modules/core-js/internals/enum-bug-keys.js ***! |
| 2247 | 1474 | \**********************************************************/ |
| 2248 | 1475 | /***/ ((module) => { |
| 2249 | 1476 | |
| 2250 | -"use strict"; | |
| 2251 | - | |
| 2252 | 1477 | // IE8- don't enum bug keys |
| 2253 | 1478 | module.exports = [ |
| 2254 | 1479 | 'constructor', |
| 2255 | 1480 | 'hasOwnProperty', |
| @@ -2262,63 +1487,50 @@ | ||
| 2262 | 1487 | |
| 2263 | 1488 | |
| 2264 | 1489 | /***/ }), |
| 2265 | 1490 | |
| 2266 | -/***/ "../node_modules/core-js/internals/environment-user-agent.js": | |
| 2267 | -/*!*******************************************************************!*\ | |
| 2268 | - !*** ../node_modules/core-js/internals/environment-user-agent.js ***! | |
| 2269 | - \*******************************************************************/ | |
| 1491 | +/***/ "../node_modules/core-js/internals/error-stack-clear.js": | |
| 1492 | +/*!**************************************************************!*\ | |
| 1493 | + !*** ../node_modules/core-js/internals/error-stack-clear.js ***! | |
| 1494 | + \**************************************************************/ | |
| 2270 | 1495 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2271 | 1496 | |
| 2272 | -"use strict"; | |
| 1497 | +var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js"); | |
| 2273 | 1498 | |
| 2274 | -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js"); | |
| 1499 | +var $Error = Error; | |
| 1500 | +var replace = uncurryThis(''.replace); | |
| 2275 | 1501 | |
| 2276 | -var navigator = globalThis.navigator; | |
| 2277 | -var userAgent = navigator && navigator.userAgent; | |
| 1502 | +var TEST = (function (arg) { return String($Error(arg).stack); })('zxcasd'); | |
| 1503 | +var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/; | |
| 1504 | +var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST); | |
| 2278 | 1505 | |
| 2279 | -module.exports = userAgent ? String(userAgent) : ''; | |
| 1506 | +module.exports = function (stack, dropEntries) { | |
| 1507 | + if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string' && !$Error.prepareStackTrace) { | |
| 1508 | + while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, ''); | |
| 1509 | + } return stack; | |
| 1510 | +}; | |
| 2280 | 1511 | |
| 2281 | 1512 | |
| 2282 | 1513 | /***/ }), |
| 2283 | 1514 | |
| 2284 | -/***/ "../node_modules/core-js/internals/environment-v8-version.js": | |
| 2285 | -/*!*******************************************************************!*\ | |
| 2286 | - !*** ../node_modules/core-js/internals/environment-v8-version.js ***! | |
| 2287 | - \*******************************************************************/ | |
| 1515 | +/***/ "../node_modules/core-js/internals/error-stack-installable.js": | |
| 1516 | +/*!********************************************************************!*\ | |
| 1517 | + !*** ../node_modules/core-js/internals/error-stack-installable.js ***! | |
| 1518 | + \********************************************************************/ | |
| 2288 | 1519 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2289 | 1520 | |
| 2290 | -"use strict"; | |
| 1521 | +var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js"); | |
| 1522 | +var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js"); | |
| 2291 | 1523 | |
| 2292 | -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js"); | |
| 2293 | -var userAgent = __webpack_require__(/*! ../internals/environment-user-agent */ "../node_modules/core-js/internals/environment-user-agent.js"); | |
| 1524 | +module.exports = !fails(function () { | |
| 1525 | + var error = Error('a'); | |
| 1526 | + if (!('stack' in error)) return true; | |
| 1527 | + // eslint-disable-next-line es/no-object-defineproperty -- safe | |
| 1528 | + Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7)); | |
| 1529 | + return error.stack !== 7; | |
| 1530 | +}); | |
| 2294 | 1531 | |
| 2295 | -var process = globalThis.process; | |
| 2296 | -var Deno = globalThis.Deno; | |
| 2297 | -var versions = process && process.versions || Deno && Deno.version; | |
| 2298 | -var v8 = versions && versions.v8; | |
| 2299 | -var match, version; | |
| 2300 | 1532 | |
| 2301 | -if (v8) { | |
| 2302 | - match = v8.split('.'); | |
| 2303 | - // in old Chrome, versions of V8 isn't V8 = Chrome / 10 | |
| 2304 | - // but their correct versions are not interesting for us | |
| 2305 | - version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]); | |
| 2306 | -} | |
| 2307 | - | |
| 2308 | -// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0` | |
| 2309 | -// so check `userAgent` even if `.v8` exists, but 0 | |
| 2310 | -if (!version && userAgent) { | |
| 2311 | - match = userAgent.match(/Edge\/(\d+)/); | |
| 2312 | - if (!match || match[1] >= 74) { | |
| 2313 | - match = userAgent.match(/Chrome\/(\d+)/); | |
| 2314 | - if (match) version = +match[1]; | |
| 2315 | - } | |
| 2316 | -} | |
| 2317 | - | |
| 2318 | -module.exports = version; | |
| 2319 | - | |
| 2320 | - | |
| 2321 | 1533 | /***/ }), |
| 2322 | 1534 | |
| 2323 | 1535 | /***/ "../node_modules/core-js/internals/export.js": |
| 2324 | 1536 | /*!***************************************************!*\ |
| @@ -2325,11 +1537,9 @@ | ||
| 2325 | 1537 | !*** ../node_modules/core-js/internals/export.js ***! |
| 2326 | 1538 | \***************************************************/ |
| 2327 | 1539 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2328 | 1540 | |
| 2329 | -"use strict"; | |
| 2330 | - | |
| 2331 | -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js"); | |
| 1541 | +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js"); | |
| 2332 | 1542 | var getOwnPropertyDescriptor = (__webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../node_modules/core-js/internals/object-get-own-property-descriptor.js").f); |
| 2333 | 1543 | var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js"); |
| 2334 | 1544 | var defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ "../node_modules/core-js/internals/define-built-in.js"); |
| 2335 | 1545 | var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js"); |
| @@ -2356,13 +1566,13 @@ | ||
| 2356 | 1566 | var GLOBAL = options.global; |
| 2357 | 1567 | var STATIC = options.stat; |
| 2358 | 1568 | var FORCED, target, key, targetProperty, sourceProperty, descriptor; |
| 2359 | 1569 | if (GLOBAL) { |
| 2360 | - target = globalThis; | |
| 1570 | + target = global; | |
| 2361 | 1571 | } else if (STATIC) { |
| 2362 | - target = globalThis[TARGET] || defineGlobalProperty(TARGET, {}); | |
| 1572 | + target = global[TARGET] || defineGlobalProperty(TARGET, {}); | |
| 2363 | 1573 | } else { |
| 2364 | - target = globalThis[TARGET] && globalThis[TARGET].prototype; | |
| 1574 | + target = (global[TARGET] || {}).prototype; | |
| 2365 | 1575 | } |
| 2366 | 1576 | if (target) for (key in source) { |
| 2367 | 1577 | sourceProperty = source[key]; |
| 2368 | 1578 | if (options.dontCallGetSet) { |
| @@ -2391,10 +1601,8 @@ | ||
| 2391 | 1601 | !*** ../node_modules/core-js/internals/fails.js ***! |
| 2392 | 1602 | \**************************************************/ |
| 2393 | 1603 | /***/ ((module) => { |
| 2394 | 1604 | |
| 2395 | -"use strict"; | |
| 2396 | - | |
| 2397 | 1605 | module.exports = function (exec) { |
| 2398 | 1606 | try { |
| 2399 | 1607 | return !!exec(); |
| 2400 | 1608 | } catch (error) { |
| @@ -2404,29 +1612,24 @@ | ||
| 2404 | 1612 | |
| 2405 | 1613 | |
| 2406 | 1614 | /***/ }), |
| 2407 | 1615 | |
| 2408 | -/***/ "../node_modules/core-js/internals/function-bind-context.js": | |
| 2409 | -/*!******************************************************************!*\ | |
| 2410 | - !*** ../node_modules/core-js/internals/function-bind-context.js ***! | |
| 2411 | - \******************************************************************/ | |
| 1616 | +/***/ "../node_modules/core-js/internals/function-apply.js": | |
| 1617 | +/*!***********************************************************!*\ | |
| 1618 | + !*** ../node_modules/core-js/internals/function-apply.js ***! | |
| 1619 | + \***********************************************************/ | |
| 2412 | 1620 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2413 | 1621 | |
| 2414 | -"use strict"; | |
| 2415 | - | |
| 2416 | -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this-clause */ "../node_modules/core-js/internals/function-uncurry-this-clause.js"); | |
| 2417 | -var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js"); | |
| 2418 | 1622 | var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js"); |
| 2419 | 1623 | |
| 2420 | -var bind = uncurryThis(uncurryThis.bind); | |
| 1624 | +var FunctionPrototype = Function.prototype; | |
| 1625 | +var apply = FunctionPrototype.apply; | |
| 1626 | +var call = FunctionPrototype.call; | |
| 2421 | 1627 | |
| 2422 | -// optional / simple context binding | |
| 2423 | -module.exports = function (fn, that) { | |
| 2424 | - aCallable(fn); | |
| 2425 | - return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) { | |
| 2426 | - return fn.apply(that, arguments); | |
| 2427 | - }; | |
| 2428 | -}; | |
| 1628 | +// eslint-disable-next-line es/no-reflect -- safe | |
| 1629 | +module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () { | |
| 1630 | + return call.apply(apply, arguments); | |
| 1631 | +}); | |
| 2429 | 1632 | |
| 2430 | 1633 | |
| 2431 | 1634 | /***/ }), |
| 2432 | 1635 | |
| @@ -2435,10 +1638,8 @@ | ||
| 2435 | 1638 | !*** ../node_modules/core-js/internals/function-bind-native.js ***! |
| 2436 | 1639 | \*****************************************************************/ |
| 2437 | 1640 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2438 | 1641 | |
| 2439 | -"use strict"; | |
| 2440 | - | |
| 2441 | 1642 | var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js"); |
| 2442 | 1643 | |
| 2443 | 1644 | module.exports = !fails(function () { |
| 2444 | 1645 | // eslint-disable-next-line es/no-function-prototype-bind -- safe |
| @@ -2455,14 +1656,12 @@ | ||
| 2455 | 1656 | !*** ../node_modules/core-js/internals/function-call.js ***! |
| 2456 | 1657 | \**********************************************************/ |
| 2457 | 1658 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2458 | 1659 | |
| 2459 | -"use strict"; | |
| 2460 | - | |
| 2461 | 1660 | var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js"); |
| 2462 | 1661 | |
| 2463 | 1662 | var call = Function.prototype.call; |
| 2464 | -// eslint-disable-next-line es/no-function-prototype-bind -- safe | |
| 1663 | + | |
| 2465 | 1664 | module.exports = NATIVE_BIND ? call.bind(call) : function () { |
| 2466 | 1665 | return call.apply(call, arguments); |
| 2467 | 1666 | }; |
| 2468 | 1667 | |
| @@ -2474,10 +1673,8 @@ | ||
| 2474 | 1673 | !*** ../node_modules/core-js/internals/function-name.js ***! |
| 2475 | 1674 | \**********************************************************/ |
| 2476 | 1675 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2477 | 1676 | |
| 2478 | -"use strict"; | |
| 2479 | - | |
| 2480 | 1677 | var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js"); |
| 2481 | 1678 | var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js"); |
| 2482 | 1679 | |
| 2483 | 1680 | var FunctionPrototype = Function.prototype; |
| @@ -2497,24 +1694,24 @@ | ||
| 2497 | 1694 | |
| 2498 | 1695 | |
| 2499 | 1696 | /***/ }), |
| 2500 | 1697 | |
| 2501 | -/***/ "../node_modules/core-js/internals/function-uncurry-this-clause.js": | |
| 2502 | -/*!*************************************************************************!*\ | |
| 2503 | - !*** ../node_modules/core-js/internals/function-uncurry-this-clause.js ***! | |
| 2504 | - \*************************************************************************/ | |
| 1698 | +/***/ "../node_modules/core-js/internals/function-uncurry-this-raw.js": | |
| 1699 | +/*!**********************************************************************!*\ | |
| 1700 | + !*** ../node_modules/core-js/internals/function-uncurry-this-raw.js ***! | |
| 1701 | + \**********************************************************************/ | |
| 2505 | 1702 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2506 | 1703 | |
| 2507 | -"use strict"; | |
| 1704 | +var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js"); | |
| 2508 | 1705 | |
| 2509 | -var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js"); | |
| 2510 | -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js"); | |
| 1706 | +var FunctionPrototype = Function.prototype; | |
| 1707 | +var call = FunctionPrototype.call; | |
| 1708 | +var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call); | |
| 2511 | 1709 | |
| 2512 | -module.exports = function (fn) { | |
| 2513 | - // Nashorn bug: | |
| 2514 | - // https://github.com/zloirock/core-js/issues/1128 | |
| 2515 | - // https://github.com/zloirock/core-js/issues/1130 | |
| 2516 | - if (classofRaw(fn) === 'Function') return uncurryThis(fn); | |
| 1710 | +module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) { | |
| 1711 | + return function () { | |
| 1712 | + return call.apply(fn, arguments); | |
| 1713 | + }; | |
| 2517 | 1714 | }; |
| 2518 | 1715 | |
| 2519 | 1716 | |
| 2520 | 1717 | /***/ }), |
| @@ -2524,21 +1721,16 @@ | ||
| 2524 | 1721 | !*** ../node_modules/core-js/internals/function-uncurry-this.js ***! |
| 2525 | 1722 | \******************************************************************/ |
| 2526 | 1723 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2527 | 1724 | |
| 2528 | -"use strict"; | |
| 1725 | +var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js"); | |
| 1726 | +var uncurryThisRaw = __webpack_require__(/*! ../internals/function-uncurry-this-raw */ "../node_modules/core-js/internals/function-uncurry-this-raw.js"); | |
| 2529 | 1727 | |
| 2530 | -var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ "../node_modules/core-js/internals/function-bind-native.js"); | |
| 2531 | - | |
| 2532 | -var FunctionPrototype = Function.prototype; | |
| 2533 | -var call = FunctionPrototype.call; | |
| 2534 | -// eslint-disable-next-line es/no-function-prototype-bind -- safe | |
| 2535 | -var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call); | |
| 2536 | - | |
| 2537 | -module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) { | |
| 2538 | - return function () { | |
| 2539 | - return call.apply(fn, arguments); | |
| 2540 | - }; | |
| 1728 | +module.exports = function (fn) { | |
| 1729 | + // Nashorn bug: | |
| 1730 | + // https://github.com/zloirock/core-js/issues/1128 | |
| 1731 | + // https://github.com/zloirock/core-js/issues/1130 | |
| 1732 | + if (classofRaw(fn) === 'Function') return uncurryThisRaw(fn); | |
| 2541 | 1733 | }; |
| 2542 | 1734 | |
| 2543 | 1735 | |
| 2544 | 1736 | /***/ }), |
| @@ -2548,11 +1740,9 @@ | ||
| 2548 | 1740 | !*** ../node_modules/core-js/internals/get-built-in.js ***! |
| 2549 | 1741 | \*********************************************************/ |
| 2550 | 1742 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2551 | 1743 | |
| 2552 | -"use strict"; | |
| 2553 | - | |
| 2554 | -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js"); | |
| 1744 | +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js"); | |
| 2555 | 1745 | var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); |
| 2556 | 1746 | |
| 2557 | 1747 | var aFunction = function (argument) { |
| 2558 | 1748 | return isCallable(argument) ? argument : undefined; |
| @@ -2558,85 +1748,14 @@ | ||
| 2558 | 1748 | return isCallable(argument) ? argument : undefined; |
| 2559 | 1749 | }; |
| 2560 | 1750 | |
| 2561 | 1751 | module.exports = function (namespace, method) { |
| 2562 | - return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method]; | |
| 1752 | + return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method]; | |
| 2563 | 1753 | }; |
| 2564 | 1754 | |
| 2565 | 1755 | |
| 2566 | 1756 | /***/ }), |
| 2567 | 1757 | |
| 2568 | -/***/ "../node_modules/core-js/internals/get-iterator-direct.js": | |
| 2569 | -/*!****************************************************************!*\ | |
| 2570 | - !*** ../node_modules/core-js/internals/get-iterator-direct.js ***! | |
| 2571 | - \****************************************************************/ | |
| 2572 | -/***/ ((module) => { | |
| 2573 | - | |
| 2574 | -"use strict"; | |
| 2575 | - | |
| 2576 | -// `GetIteratorDirect(obj)` abstract operation | |
| 2577 | -// https://tc39.es/ecma262/#sec-getiteratordirect | |
| 2578 | -module.exports = function (obj) { | |
| 2579 | - return { | |
| 2580 | - iterator: obj, | |
| 2581 | - next: obj.next, | |
| 2582 | - done: false | |
| 2583 | - }; | |
| 2584 | -}; | |
| 2585 | - | |
| 2586 | - | |
| 2587 | -/***/ }), | |
| 2588 | - | |
| 2589 | -/***/ "../node_modules/core-js/internals/get-iterator-method.js": | |
| 2590 | -/*!****************************************************************!*\ | |
| 2591 | - !*** ../node_modules/core-js/internals/get-iterator-method.js ***! | |
| 2592 | - \****************************************************************/ | |
| 2593 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2594 | - | |
| 2595 | -"use strict"; | |
| 2596 | - | |
| 2597 | -var classof = __webpack_require__(/*! ../internals/classof */ "../node_modules/core-js/internals/classof.js"); | |
| 2598 | -var getMethod = __webpack_require__(/*! ../internals/get-method */ "../node_modules/core-js/internals/get-method.js"); | |
| 2599 | -var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ "../node_modules/core-js/internals/is-null-or-undefined.js"); | |
| 2600 | -var Iterators = __webpack_require__(/*! ../internals/iterators */ "../node_modules/core-js/internals/iterators.js"); | |
| 2601 | -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js"); | |
| 2602 | - | |
| 2603 | -var ITERATOR = wellKnownSymbol('iterator'); | |
| 2604 | - | |
| 2605 | -module.exports = function (it) { | |
| 2606 | - if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR) | |
| 2607 | - || getMethod(it, '@@iterator') | |
| 2608 | - || Iterators[classof(it)]; | |
| 2609 | -}; | |
| 2610 | - | |
| 2611 | - | |
| 2612 | -/***/ }), | |
| 2613 | - | |
| 2614 | -/***/ "../node_modules/core-js/internals/get-iterator.js": | |
| 2615 | -/*!*********************************************************!*\ | |
| 2616 | - !*** ../node_modules/core-js/internals/get-iterator.js ***! | |
| 2617 | - \*********************************************************/ | |
| 2618 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2619 | - | |
| 2620 | -"use strict"; | |
| 2621 | - | |
| 2622 | -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js"); | |
| 2623 | -var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js"); | |
| 2624 | -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js"); | |
| 2625 | -var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../node_modules/core-js/internals/try-to-string.js"); | |
| 2626 | -var getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ "../node_modules/core-js/internals/get-iterator-method.js"); | |
| 2627 | - | |
| 2628 | -var $TypeError = TypeError; | |
| 2629 | - | |
| 2630 | -module.exports = function (argument, usingIterator) { | |
| 2631 | - var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator; | |
| 2632 | - if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument)); | |
| 2633 | - throw new $TypeError(tryToString(argument) + ' is not iterable'); | |
| 2634 | -}; | |
| 2635 | - | |
| 2636 | - | |
| 2637 | -/***/ }), | |
| 2638 | - | |
| 2639 | 1758 | /***/ "../node_modules/core-js/internals/get-method.js": |
| 2640 | 1759 | /*!*******************************************************!*\ |
| 2641 | 1760 | !*** ../node_modules/core-js/internals/get-method.js ***! |
| 2642 | 1761 | \*******************************************************/ |
| @@ -2641,10 +1760,8 @@ | ||
| 2641 | 1760 | !*** ../node_modules/core-js/internals/get-method.js ***! |
| 2642 | 1761 | \*******************************************************/ |
| 2643 | 1762 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2644 | 1763 | |
| 2645 | -"use strict"; | |
| 2646 | - | |
| 2647 | 1764 | var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js"); |
| 2648 | 1765 | var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ "../node_modules/core-js/internals/is-null-or-undefined.js"); |
| 2649 | 1766 | |
| 2650 | 1767 | // `GetMethod` abstract operation |
| @@ -2656,18 +1773,16 @@ | ||
| 2656 | 1773 | |
| 2657 | 1774 | |
| 2658 | 1775 | /***/ }), |
| 2659 | 1776 | |
| 2660 | -/***/ "../node_modules/core-js/internals/global-this.js": | |
| 2661 | -/*!********************************************************!*\ | |
| 2662 | - !*** ../node_modules/core-js/internals/global-this.js ***! | |
| 2663 | - \********************************************************/ | |
| 2664 | -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { | |
| 1777 | +/***/ "../node_modules/core-js/internals/global.js": | |
| 1778 | +/*!***************************************************!*\ | |
| 1779 | + !*** ../node_modules/core-js/internals/global.js ***! | |
| 1780 | + \***************************************************/ | |
| 1781 | +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2665 | 1782 | |
| 2666 | -"use strict"; | |
| 2667 | - | |
| 2668 | 1783 | var check = function (it) { |
| 2669 | - return it && it.Math === Math && it; | |
| 1784 | + return it && it.Math == Math && it; | |
| 2670 | 1785 | }; |
| 2671 | 1786 | |
| 2672 | 1787 | // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 |
| 2673 | 1788 | module.exports = |
| @@ -2676,9 +1791,8 @@ | ||
| 2676 | 1791 | check(typeof window == 'object' && window) || |
| 2677 | 1792 | // eslint-disable-next-line no-restricted-globals -- safe |
| 2678 | 1793 | check(typeof self == 'object' && self) || |
| 2679 | 1794 | check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) || |
| 2680 | - check(typeof this == 'object' && this) || | |
| 2681 | 1795 | // eslint-disable-next-line no-new-func -- fallback |
| 2682 | 1796 | (function () { return this; })() || Function('return this')(); |
| 2683 | 1797 | |
| 2684 | 1798 | |
| @@ -2689,10 +1803,8 @@ | ||
| 2689 | 1803 | !*** ../node_modules/core-js/internals/has-own-property.js ***! |
| 2690 | 1804 | \*************************************************************/ |
| 2691 | 1805 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2692 | 1806 | |
| 2693 | -"use strict"; | |
| 2694 | - | |
| 2695 | 1807 | var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js"); |
| 2696 | 1808 | var toObject = __webpack_require__(/*! ../internals/to-object */ "../node_modules/core-js/internals/to-object.js"); |
| 2697 | 1809 | |
| 2698 | 1810 | var hasOwnProperty = uncurryThis({}.hasOwnProperty); |
| @@ -2712,30 +1824,13 @@ | ||
| 2712 | 1824 | !*** ../node_modules/core-js/internals/hidden-keys.js ***! |
| 2713 | 1825 | \********************************************************/ |
| 2714 | 1826 | /***/ ((module) => { |
| 2715 | 1827 | |
| 2716 | -"use strict"; | |
| 2717 | - | |
| 2718 | 1828 | module.exports = {}; |
| 2719 | 1829 | |
| 2720 | 1830 | |
| 2721 | 1831 | /***/ }), |
| 2722 | 1832 | |
| 2723 | -/***/ "../node_modules/core-js/internals/html.js": | |
| 2724 | -/*!*************************************************!*\ | |
| 2725 | - !*** ../node_modules/core-js/internals/html.js ***! | |
| 2726 | - \*************************************************/ | |
| 2727 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2728 | - | |
| 2729 | -"use strict"; | |
| 2730 | - | |
| 2731 | -var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js"); | |
| 2732 | - | |
| 2733 | -module.exports = getBuiltIn('document', 'documentElement'); | |
| 2734 | - | |
| 2735 | - | |
| 2736 | -/***/ }), | |
| 2737 | - | |
| 2738 | 1833 | /***/ "../node_modules/core-js/internals/ie8-dom-define.js": |
| 2739 | 1834 | /*!***********************************************************!*\ |
| 2740 | 1835 | !*** ../node_modules/core-js/internals/ie8-dom-define.js ***! |
| 2741 | 1836 | \***********************************************************/ |
| @@ -2740,10 +1835,8 @@ | ||
| 2740 | 1835 | !*** ../node_modules/core-js/internals/ie8-dom-define.js ***! |
| 2741 | 1836 | \***********************************************************/ |
| 2742 | 1837 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2743 | 1838 | |
| 2744 | -"use strict"; | |
| 2745 | - | |
| 2746 | 1839 | var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js"); |
| 2747 | 1840 | var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js"); |
| 2748 | 1841 | var createElement = __webpack_require__(/*! ../internals/document-create-element */ "../node_modules/core-js/internals/document-create-element.js"); |
| 2749 | 1842 | |
| @@ -2751,9 +1844,9 @@ | ||
| 2751 | 1844 | module.exports = !DESCRIPTORS && !fails(function () { |
| 2752 | 1845 | // eslint-disable-next-line es/no-object-defineproperty -- required for testing |
| 2753 | 1846 | return Object.defineProperty(createElement('div'), 'a', { |
| 2754 | 1847 | get: function () { return 7; } |
| 2755 | - }).a !== 7; | |
| 1848 | + }).a != 7; | |
| 2756 | 1849 | }); |
| 2757 | 1850 | |
| 2758 | 1851 | |
| 2759 | 1852 | /***/ }), |
| @@ -2763,10 +1856,8 @@ | ||
| 2763 | 1856 | !*** ../node_modules/core-js/internals/indexed-object.js ***! |
| 2764 | 1857 | \***********************************************************/ |
| 2765 | 1858 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2766 | 1859 | |
| 2767 | -"use strict"; | |
| 2768 | - | |
| 2769 | 1860 | var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js"); |
| 2770 | 1861 | var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js"); |
| 2771 | 1862 | var classof = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js"); |
| 2772 | 1863 | |
| @@ -2778,14 +1869,42 @@ | ||
| 2778 | 1869 | // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346 |
| 2779 | 1870 | // eslint-disable-next-line no-prototype-builtins -- safe |
| 2780 | 1871 | return !$Object('z').propertyIsEnumerable(0); |
| 2781 | 1872 | }) ? function (it) { |
| 2782 | - return classof(it) === 'String' ? split(it, '') : $Object(it); | |
| 1873 | + return classof(it) == 'String' ? split(it, '') : $Object(it); | |
| 2783 | 1874 | } : $Object; |
| 2784 | 1875 | |
| 2785 | 1876 | |
| 2786 | 1877 | /***/ }), |
| 2787 | 1878 | |
| 1879 | +/***/ "../node_modules/core-js/internals/inherit-if-required.js": | |
| 1880 | +/*!****************************************************************!*\ | |
| 1881 | + !*** ../node_modules/core-js/internals/inherit-if-required.js ***! | |
| 1882 | + \****************************************************************/ | |
| 1883 | +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 1884 | + | |
| 1885 | +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); | |
| 1886 | +var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js"); | |
| 1887 | +var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "../node_modules/core-js/internals/object-set-prototype-of.js"); | |
| 1888 | + | |
| 1889 | +// makes subclassing work correct for wrapped built-ins | |
| 1890 | +module.exports = function ($this, dummy, Wrapper) { | |
| 1891 | + var NewTarget, NewTargetPrototype; | |
| 1892 | + if ( | |
| 1893 | + // it can work only with native `setPrototypeOf` | |
| 1894 | + setPrototypeOf && | |
| 1895 | + // we haven't completely correct pre-ES6 way for getting `new.target`, so use this | |
| 1896 | + isCallable(NewTarget = dummy.constructor) && | |
| 1897 | + NewTarget !== Wrapper && | |
| 1898 | + isObject(NewTargetPrototype = NewTarget.prototype) && | |
| 1899 | + NewTargetPrototype !== Wrapper.prototype | |
| 1900 | + ) setPrototypeOf($this, NewTargetPrototype); | |
| 1901 | + return $this; | |
| 1902 | +}; | |
| 1903 | + | |
| 1904 | + | |
| 1905 | +/***/ }), | |
| 1906 | + | |
| 2788 | 1907 | /***/ "../node_modules/core-js/internals/inspect-source.js": |
| 2789 | 1908 | /*!***********************************************************!*\ |
| 2790 | 1909 | !*** ../node_modules/core-js/internals/inspect-source.js ***! |
| 2791 | 1910 | \***********************************************************/ |
| @@ -2790,10 +1909,8 @@ | ||
| 2790 | 1909 | !*** ../node_modules/core-js/internals/inspect-source.js ***! |
| 2791 | 1910 | \***********************************************************/ |
| 2792 | 1911 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2793 | 1912 | |
| 2794 | -"use strict"; | |
| 2795 | - | |
| 2796 | 1913 | var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js"); |
| 2797 | 1914 | var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); |
| 2798 | 1915 | var store = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js"); |
| 2799 | 1916 | |
| @@ -2810,8 +1927,28 @@ | ||
| 2810 | 1927 | |
| 2811 | 1928 | |
| 2812 | 1929 | /***/ }), |
| 2813 | 1930 | |
| 1931 | +/***/ "../node_modules/core-js/internals/install-error-cause.js": | |
| 1932 | +/*!****************************************************************!*\ | |
| 1933 | + !*** ../node_modules/core-js/internals/install-error-cause.js ***! | |
| 1934 | + \****************************************************************/ | |
| 1935 | +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 1936 | + | |
| 1937 | +var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js"); | |
| 1938 | +var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js"); | |
| 1939 | + | |
| 1940 | +// `InstallErrorCause` abstract operation | |
| 1941 | +// https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause | |
| 1942 | +module.exports = function (O, options) { | |
| 1943 | + if (isObject(options) && 'cause' in options) { | |
| 1944 | + createNonEnumerableProperty(O, 'cause', options.cause); | |
| 1945 | + } | |
| 1946 | +}; | |
| 1947 | + | |
| 1948 | + | |
| 1949 | +/***/ }), | |
| 1950 | + | |
| 2814 | 1951 | /***/ "../node_modules/core-js/internals/internal-state.js": |
| 2815 | 1952 | /*!***********************************************************!*\ |
| 2816 | 1953 | !*** ../node_modules/core-js/internals/internal-state.js ***! |
| 2817 | 1954 | \***********************************************************/ |
| @@ -2816,12 +1953,10 @@ | ||
| 2816 | 1953 | !*** ../node_modules/core-js/internals/internal-state.js ***! |
| 2817 | 1954 | \***********************************************************/ |
| 2818 | 1955 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2819 | 1956 | |
| 2820 | -"use strict"; | |
| 2821 | - | |
| 2822 | 1957 | var NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/weak-map-basic-detection */ "../node_modules/core-js/internals/weak-map-basic-detection.js"); |
| 2823 | -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js"); | |
| 1958 | +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js"); | |
| 2824 | 1959 | var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js"); |
| 2825 | 1960 | var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js"); |
| 2826 | 1961 | var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js"); |
| 2827 | 1962 | var shared = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js"); |
| @@ -2828,10 +1963,10 @@ | ||
| 2828 | 1963 | var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../node_modules/core-js/internals/shared-key.js"); |
| 2829 | 1964 | var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js"); |
| 2830 | 1965 | |
| 2831 | 1966 | var OBJECT_ALREADY_INITIALIZED = 'Object already initialized'; |
| 2832 | -var TypeError = globalThis.TypeError; | |
| 2833 | -var WeakMap = globalThis.WeakMap; | |
| 1967 | +var TypeError = global.TypeError; | |
| 1968 | +var WeakMap = global.WeakMap; | |
| 2834 | 1969 | var set, get, has; |
| 2835 | 1970 | |
| 2836 | 1971 | var enforce = function (it) { |
| 2837 | 1972 | return has(it) ? get(it) : set(it, {}); |
| @@ -2840,9 +1975,9 @@ | ||
| 2840 | 1975 | var getterFor = function (TYPE) { |
| 2841 | 1976 | return function (it) { |
| 2842 | 1977 | var state; |
| 2843 | 1978 | if (!isObject(it) || (state = get(it)).type !== TYPE) { |
| 2844 | - throw new TypeError('Incompatible receiver, ' + TYPE + ' required'); | |
| 1979 | + throw TypeError('Incompatible receiver, ' + TYPE + ' required'); | |
| 2845 | 1980 | } return state; |
| 2846 | 1981 | }; |
| 2847 | 1982 | }; |
| 2848 | 1983 | |
| @@ -2853,9 +1988,9 @@ | ||
| 2853 | 1988 | store.has = store.has; |
| 2854 | 1989 | store.set = store.set; |
| 2855 | 1990 | /* eslint-enable no-self-assign -- prototype methods protection */ |
| 2856 | 1991 | set = function (it, metadata) { |
| 2857 | - if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED); | |
| 1992 | + if (store.has(it)) throw TypeError(OBJECT_ALREADY_INITIALIZED); | |
| 2858 | 1993 | metadata.facade = it; |
| 2859 | 1994 | store.set(it, metadata); |
| 2860 | 1995 | return metadata; |
| 2861 | 1996 | }; |
| @@ -2868,9 +2003,9 @@ | ||
| 2868 | 2003 | } else { |
| 2869 | 2004 | var STATE = sharedKey('state'); |
| 2870 | 2005 | hiddenKeys[STATE] = true; |
| 2871 | 2006 | set = function (it, metadata) { |
| 2872 | - if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED); | |
| 2007 | + if (hasOwn(it, STATE)) throw TypeError(OBJECT_ALREADY_INITIALIZED); | |
| 2873 | 2008 | metadata.facade = it; |
| 2874 | 2009 | createNonEnumerableProperty(it, STATE, metadata); |
| 2875 | 2010 | return metadata; |
| 2876 | 2011 | }; |
| @@ -2892,65 +2027,21 @@ | ||
| 2892 | 2027 | |
| 2893 | 2028 | |
| 2894 | 2029 | /***/ }), |
| 2895 | 2030 | |
| 2896 | -/***/ "../node_modules/core-js/internals/is-array-iterator-method.js": | |
| 2897 | -/*!*********************************************************************!*\ | |
| 2898 | - !*** ../node_modules/core-js/internals/is-array-iterator-method.js ***! | |
| 2899 | - \*********************************************************************/ | |
| 2900 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2901 | - | |
| 2902 | -"use strict"; | |
| 2903 | - | |
| 2904 | -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js"); | |
| 2905 | -var Iterators = __webpack_require__(/*! ../internals/iterators */ "../node_modules/core-js/internals/iterators.js"); | |
| 2906 | - | |
| 2907 | -var ITERATOR = wellKnownSymbol('iterator'); | |
| 2908 | -var ArrayPrototype = Array.prototype; | |
| 2909 | - | |
| 2910 | -// check on default Array iterator | |
| 2911 | -module.exports = function (it) { | |
| 2912 | - return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it); | |
| 2913 | -}; | |
| 2914 | - | |
| 2915 | - | |
| 2916 | -/***/ }), | |
| 2917 | - | |
| 2918 | -/***/ "../node_modules/core-js/internals/is-array.js": | |
| 2919 | -/*!*****************************************************!*\ | |
| 2920 | - !*** ../node_modules/core-js/internals/is-array.js ***! | |
| 2921 | - \*****************************************************/ | |
| 2922 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2923 | - | |
| 2924 | -"use strict"; | |
| 2925 | - | |
| 2926 | -var classof = __webpack_require__(/*! ../internals/classof-raw */ "../node_modules/core-js/internals/classof-raw.js"); | |
| 2927 | - | |
| 2928 | -// `IsArray` abstract operation | |
| 2929 | -// https://tc39.es/ecma262/#sec-isarray | |
| 2930 | -// eslint-disable-next-line es/no-array-isarray -- safe | |
| 2931 | -module.exports = Array.isArray || function isArray(argument) { | |
| 2932 | - return classof(argument) === 'Array'; | |
| 2933 | -}; | |
| 2934 | - | |
| 2935 | - | |
| 2936 | -/***/ }), | |
| 2937 | - | |
| 2938 | 2031 | /***/ "../node_modules/core-js/internals/is-callable.js": |
| 2939 | 2032 | /*!********************************************************!*\ |
| 2940 | 2033 | !*** ../node_modules/core-js/internals/is-callable.js ***! |
| 2941 | 2034 | \********************************************************/ |
| 2942 | -/***/ ((module) => { | |
| 2035 | +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2943 | 2036 | |
| 2944 | -"use strict"; | |
| 2037 | +var $documentAll = __webpack_require__(/*! ../internals/document-all */ "../node_modules/core-js/internals/document-all.js"); | |
| 2945 | 2038 | |
| 2946 | -// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot | |
| 2947 | -var documentAll = typeof document == 'object' && document.all; | |
| 2039 | +var documentAll = $documentAll.all; | |
| 2948 | 2040 | |
| 2949 | 2041 | // `IsCallable` abstract operation |
| 2950 | 2042 | // https://tc39.es/ecma262/#sec-iscallable |
| 2951 | -// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing | |
| 2952 | -module.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) { | |
| 2043 | +module.exports = $documentAll.IS_HTMLDDA ? function (argument) { | |
| 2953 | 2044 | return typeof argument == 'function' || argument === documentAll; |
| 2954 | 2045 | } : function (argument) { |
| 2955 | 2046 | return typeof argument == 'function'; |
| 2956 | 2047 | }; |
| @@ -2963,10 +2054,8 @@ | ||
| 2963 | 2054 | !*** ../node_modules/core-js/internals/is-forced.js ***! |
| 2964 | 2055 | \******************************************************/ |
| 2965 | 2056 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 2966 | 2057 | |
| 2967 | -"use strict"; | |
| 2968 | - | |
| 2969 | 2058 | var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js"); |
| 2970 | 2059 | var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); |
| 2971 | 2060 | |
| 2972 | 2061 | var replacement = /#|\.prototype\./; |
| @@ -2972,10 +2061,10 @@ | ||
| 2972 | 2061 | var replacement = /#|\.prototype\./; |
| 2973 | 2062 | |
| 2974 | 2063 | var isForced = function (feature, detection) { |
| 2975 | 2064 | var value = data[normalize(feature)]; |
| 2976 | - return value === POLYFILL ? true | |
| 2977 | - : value === NATIVE ? false | |
| 2065 | + return value == POLYFILL ? true | |
| 2066 | + : value == NATIVE ? false | |
| 2978 | 2067 | : isCallable(detection) ? fails(detection) |
| 2979 | 2068 | : !!detection; |
| 2980 | 2069 | }; |
| 2981 | 2070 | |
| @@ -2997,10 +2086,8 @@ | ||
| 2997 | 2086 | !*** ../node_modules/core-js/internals/is-null-or-undefined.js ***! |
| 2998 | 2087 | \*****************************************************************/ |
| 2999 | 2088 | /***/ ((module) => { |
| 3000 | 2089 | |
| 3001 | -"use strict"; | |
| 3002 | - | |
| 3003 | 2090 | // we can't use just `it == null` since of `document.all` special case |
| 3004 | 2091 | // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec |
| 3005 | 2092 | module.exports = function (it) { |
| 3006 | 2093 | return it === null || it === undefined; |
| @@ -3014,13 +2101,16 @@ | ||
| 3014 | 2101 | !*** ../node_modules/core-js/internals/is-object.js ***! |
| 3015 | 2102 | \******************************************************/ |
| 3016 | 2103 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 3017 | 2104 | |
| 3018 | -"use strict"; | |
| 2105 | +var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); | |
| 2106 | +var $documentAll = __webpack_require__(/*! ../internals/document-all */ "../node_modules/core-js/internals/document-all.js"); | |
| 3019 | 2107 | |
| 3020 | -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); | |
| 2108 | +var documentAll = $documentAll.all; | |
| 3021 | 2109 | |
| 3022 | -module.exports = function (it) { | |
| 2110 | +module.exports = $documentAll.IS_HTMLDDA ? function (it) { | |
| 2111 | + return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll; | |
| 2112 | +} : function (it) { | |
| 3023 | 2113 | return typeof it == 'object' ? it !== null : isCallable(it); |
| 3024 | 2114 | }; |
| 3025 | 2115 | |
| 3026 | 2116 | |
| @@ -3031,10 +2121,8 @@ | ||
| 3031 | 2121 | !*** ../node_modules/core-js/internals/is-pure.js ***! |
| 3032 | 2122 | \****************************************************/ |
| 3033 | 2123 | /***/ ((module) => { |
| 3034 | 2124 | |
| 3035 | -"use strict"; | |
| 3036 | - | |
| 3037 | 2125 | module.exports = false; |
| 3038 | 2126 | |
| 3039 | 2127 | |
| 3040 | 2128 | /***/ }), |
| @@ -3044,10 +2132,8 @@ | ||
| 3044 | 2132 | !*** ../node_modules/core-js/internals/is-symbol.js ***! |
| 3045 | 2133 | \******************************************************/ |
| 3046 | 2134 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 3047 | 2135 | |
| 3048 | -"use strict"; | |
| 3049 | - | |
| 3050 | 2136 | var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js"); |
| 3051 | 2137 | var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); |
| 3052 | 2138 | var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js"); |
| 3053 | 2139 | var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../node_modules/core-js/internals/use-symbol-as-uid.js"); |
| @@ -3063,377 +2149,8 @@ | ||
| 3063 | 2149 | |
| 3064 | 2150 | |
| 3065 | 2151 | /***/ }), |
| 3066 | 2152 | |
| 3067 | -/***/ "../node_modules/core-js/internals/iterate.js": | |
| 3068 | -/*!****************************************************!*\ | |
| 3069 | - !*** ../node_modules/core-js/internals/iterate.js ***! | |
| 3070 | - \****************************************************/ | |
| 3071 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 3072 | - | |
| 3073 | -"use strict"; | |
| 3074 | - | |
| 3075 | -var bind = __webpack_require__(/*! ../internals/function-bind-context */ "../node_modules/core-js/internals/function-bind-context.js"); | |
| 3076 | -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js"); | |
| 3077 | -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js"); | |
| 3078 | -var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../node_modules/core-js/internals/try-to-string.js"); | |
| 3079 | -var isArrayIteratorMethod = __webpack_require__(/*! ../internals/is-array-iterator-method */ "../node_modules/core-js/internals/is-array-iterator-method.js"); | |
| 3080 | -var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../node_modules/core-js/internals/length-of-array-like.js"); | |
| 3081 | -var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js"); | |
| 3082 | -var getIterator = __webpack_require__(/*! ../internals/get-iterator */ "../node_modules/core-js/internals/get-iterator.js"); | |
| 3083 | -var getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ "../node_modules/core-js/internals/get-iterator-method.js"); | |
| 3084 | -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js"); | |
| 3085 | - | |
| 3086 | -var $TypeError = TypeError; | |
| 3087 | - | |
| 3088 | -var Result = function (stopped, result) { | |
| 3089 | - this.stopped = stopped; | |
| 3090 | - this.result = result; | |
| 3091 | -}; | |
| 3092 | - | |
| 3093 | -var ResultPrototype = Result.prototype; | |
| 3094 | - | |
| 3095 | -module.exports = function (iterable, unboundFunction, options) { | |
| 3096 | - var that = options && options.that; | |
| 3097 | - var AS_ENTRIES = !!(options && options.AS_ENTRIES); | |
| 3098 | - var IS_RECORD = !!(options && options.IS_RECORD); | |
| 3099 | - var IS_ITERATOR = !!(options && options.IS_ITERATOR); | |
| 3100 | - var INTERRUPTED = !!(options && options.INTERRUPTED); | |
| 3101 | - var fn = bind(unboundFunction, that); | |
| 3102 | - var iterator, iterFn, index, length, result, next, step; | |
| 3103 | - | |
| 3104 | - var stop = function (condition) { | |
| 3105 | - if (iterator) iteratorClose(iterator, 'normal'); | |
| 3106 | - return new Result(true, condition); | |
| 3107 | - }; | |
| 3108 | - | |
| 3109 | - var callFn = function (value) { | |
| 3110 | - if (AS_ENTRIES) { | |
| 3111 | - anObject(value); | |
| 3112 | - return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]); | |
| 3113 | - } return INTERRUPTED ? fn(value, stop) : fn(value); | |
| 3114 | - }; | |
| 3115 | - | |
| 3116 | - if (IS_RECORD) { | |
| 3117 | - iterator = iterable.iterator; | |
| 3118 | - } else if (IS_ITERATOR) { | |
| 3119 | - iterator = iterable; | |
| 3120 | - } else { | |
| 3121 | - iterFn = getIteratorMethod(iterable); | |
| 3122 | - if (!iterFn) throw new $TypeError(tryToString(iterable) + ' is not iterable'); | |
| 3123 | - // optimisation for array iterators | |
| 3124 | - if (isArrayIteratorMethod(iterFn)) { | |
| 3125 | - for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) { | |
| 3126 | - result = callFn(iterable[index]); | |
| 3127 | - if (result && isPrototypeOf(ResultPrototype, result)) return result; | |
| 3128 | - } return new Result(false); | |
| 3129 | - } | |
| 3130 | - iterator = getIterator(iterable, iterFn); | |
| 3131 | - } | |
| 3132 | - | |
| 3133 | - next = IS_RECORD ? iterable.next : iterator.next; | |
| 3134 | - while (!(step = call(next, iterator)).done) { | |
| 3135 | - try { | |
| 3136 | - result = callFn(step.value); | |
| 3137 | - } catch (error) { | |
| 3138 | - iteratorClose(iterator, 'throw', error); | |
| 3139 | - } | |
| 3140 | - if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result; | |
| 3141 | - } return new Result(false); | |
| 3142 | -}; | |
| 3143 | - | |
| 3144 | - | |
| 3145 | -/***/ }), | |
| 3146 | - | |
| 3147 | -/***/ "../node_modules/core-js/internals/iterator-close-all.js": | |
| 3148 | -/*!***************************************************************!*\ | |
| 3149 | - !*** ../node_modules/core-js/internals/iterator-close-all.js ***! | |
| 3150 | - \***************************************************************/ | |
| 3151 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 3152 | - | |
| 3153 | -"use strict"; | |
| 3154 | - | |
| 3155 | -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js"); | |
| 3156 | - | |
| 3157 | -module.exports = function (iters, kind, value) { | |
| 3158 | - for (var i = iters.length - 1; i >= 0; i--) { | |
| 3159 | - if (iters[i] === undefined) continue; | |
| 3160 | - try { | |
| 3161 | - value = iteratorClose(iters[i].iterator, kind, value); | |
| 3162 | - } catch (error) { | |
| 3163 | - kind = 'throw'; | |
| 3164 | - value = error; | |
| 3165 | - } | |
| 3166 | - } | |
| 3167 | - if (kind === 'throw') throw value; | |
| 3168 | - return value; | |
| 3169 | -}; | |
| 3170 | - | |
| 3171 | - | |
| 3172 | -/***/ }), | |
| 3173 | - | |
| 3174 | -/***/ "../node_modules/core-js/internals/iterator-close.js": | |
| 3175 | -/*!***********************************************************!*\ | |
| 3176 | - !*** ../node_modules/core-js/internals/iterator-close.js ***! | |
| 3177 | - \***********************************************************/ | |
| 3178 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 3179 | - | |
| 3180 | -"use strict"; | |
| 3181 | - | |
| 3182 | -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js"); | |
| 3183 | -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js"); | |
| 3184 | -var getMethod = __webpack_require__(/*! ../internals/get-method */ "../node_modules/core-js/internals/get-method.js"); | |
| 3185 | - | |
| 3186 | -module.exports = function (iterator, kind, value) { | |
| 3187 | - var innerResult, innerError; | |
| 3188 | - anObject(iterator); | |
| 3189 | - try { | |
| 3190 | - innerResult = getMethod(iterator, 'return'); | |
| 3191 | - if (!innerResult) { | |
| 3192 | - if (kind === 'throw') throw value; | |
| 3193 | - return value; | |
| 3194 | - } | |
| 3195 | - innerResult = call(innerResult, iterator); | |
| 3196 | - } catch (error) { | |
| 3197 | - innerError = true; | |
| 3198 | - innerResult = error; | |
| 3199 | - } | |
| 3200 | - if (kind === 'throw') throw value; | |
| 3201 | - if (innerError) throw innerResult; | |
| 3202 | - anObject(innerResult); | |
| 3203 | - return value; | |
| 3204 | -}; | |
| 3205 | - | |
| 3206 | - | |
| 3207 | -/***/ }), | |
| 3208 | - | |
| 3209 | -/***/ "../node_modules/core-js/internals/iterator-create-proxy.js": | |
| 3210 | -/*!******************************************************************!*\ | |
| 3211 | - !*** ../node_modules/core-js/internals/iterator-create-proxy.js ***! | |
| 3212 | - \******************************************************************/ | |
| 3213 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 3214 | - | |
| 3215 | -"use strict"; | |
| 3216 | - | |
| 3217 | -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js"); | |
| 3218 | -var create = __webpack_require__(/*! ../internals/object-create */ "../node_modules/core-js/internals/object-create.js"); | |
| 3219 | -var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js"); | |
| 3220 | -var defineBuiltIns = __webpack_require__(/*! ../internals/define-built-ins */ "../node_modules/core-js/internals/define-built-ins.js"); | |
| 3221 | -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js"); | |
| 3222 | -var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "../node_modules/core-js/internals/internal-state.js"); | |
| 3223 | -var getMethod = __webpack_require__(/*! ../internals/get-method */ "../node_modules/core-js/internals/get-method.js"); | |
| 3224 | -var IteratorPrototype = (__webpack_require__(/*! ../internals/iterators-core */ "../node_modules/core-js/internals/iterators-core.js").IteratorPrototype); | |
| 3225 | -var createIterResultObject = __webpack_require__(/*! ../internals/create-iter-result-object */ "../node_modules/core-js/internals/create-iter-result-object.js"); | |
| 3226 | -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js"); | |
| 3227 | -var iteratorCloseAll = __webpack_require__(/*! ../internals/iterator-close-all */ "../node_modules/core-js/internals/iterator-close-all.js"); | |
| 3228 | - | |
| 3229 | -var TO_STRING_TAG = wellKnownSymbol('toStringTag'); | |
| 3230 | -var ITERATOR_HELPER = 'IteratorHelper'; | |
| 3231 | -var WRAP_FOR_VALID_ITERATOR = 'WrapForValidIterator'; | |
| 3232 | -var NORMAL = 'normal'; | |
| 3233 | -var THROW = 'throw'; | |
| 3234 | -var setInternalState = InternalStateModule.set; | |
| 3235 | - | |
| 3236 | -var createIteratorProxyPrototype = function (IS_ITERATOR) { | |
| 3237 | - var getInternalState = InternalStateModule.getterFor(IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER); | |
| 3238 | - | |
| 3239 | - return defineBuiltIns(create(IteratorPrototype), { | |
| 3240 | - next: function next() { | |
| 3241 | - var state = getInternalState(this); | |
| 3242 | - // for simplification: | |
| 3243 | - // for `%WrapForValidIteratorPrototype%.next` or with `state.returnHandlerResult` our `nextHandler` returns `IterResultObject` | |
| 3244 | - // for `%IteratorHelperPrototype%.next` - just a value | |
| 3245 | - if (IS_ITERATOR) return state.nextHandler(); | |
| 3246 | - if (state.done) return createIterResultObject(undefined, true); | |
| 3247 | - try { | |
| 3248 | - var result = state.nextHandler(); | |
| 3249 | - return state.returnHandlerResult ? result : createIterResultObject(result, state.done); | |
| 3250 | - } catch (error) { | |
| 3251 | - state.done = true; | |
| 3252 | - throw error; | |
| 3253 | - } | |
| 3254 | - }, | |
| 3255 | - 'return': function () { | |
| 3256 | - var state = getInternalState(this); | |
| 3257 | - var iterator = state.iterator; | |
| 3258 | - state.done = true; | |
| 3259 | - if (IS_ITERATOR) { | |
| 3260 | - var returnMethod = getMethod(iterator, 'return'); | |
| 3261 | - return returnMethod ? call(returnMethod, iterator) : createIterResultObject(undefined, true); | |
| 3262 | - } | |
| 3263 | - if (state.inner) try { | |
| 3264 | - iteratorClose(state.inner.iterator, NORMAL); | |
| 3265 | - } catch (error) { | |
| 3266 | - return iteratorClose(iterator, THROW, error); | |
| 3267 | - } | |
| 3268 | - if (state.openIters) try { | |
| 3269 | - iteratorCloseAll(state.openIters, NORMAL); | |
| 3270 | - } catch (error) { | |
| 3271 | - return iteratorClose(iterator, THROW, error); | |
| 3272 | - } | |
| 3273 | - if (iterator) iteratorClose(iterator, NORMAL); | |
| 3274 | - return createIterResultObject(undefined, true); | |
| 3275 | - } | |
| 3276 | - }); | |
| 3277 | -}; | |
| 3278 | - | |
| 3279 | -var WrapForValidIteratorPrototype = createIteratorProxyPrototype(true); | |
| 3280 | -var IteratorHelperPrototype = createIteratorProxyPrototype(false); | |
| 3281 | - | |
| 3282 | -createNonEnumerableProperty(IteratorHelperPrototype, TO_STRING_TAG, 'Iterator Helper'); | |
| 3283 | - | |
| 3284 | -module.exports = function (nextHandler, IS_ITERATOR, RETURN_HANDLER_RESULT) { | |
| 3285 | - var IteratorProxy = function Iterator(record, state) { | |
| 3286 | - if (state) { | |
| 3287 | - state.iterator = record.iterator; | |
| 3288 | - state.next = record.next; | |
| 3289 | - } else state = record; | |
| 3290 | - state.type = IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER; | |
| 3291 | - state.returnHandlerResult = !!RETURN_HANDLER_RESULT; | |
| 3292 | - state.nextHandler = nextHandler; | |
| 3293 | - state.counter = 0; | |
| 3294 | - state.done = false; | |
| 3295 | - setInternalState(this, state); | |
| 3296 | - }; | |
| 3297 | - | |
| 3298 | - IteratorProxy.prototype = IS_ITERATOR ? WrapForValidIteratorPrototype : IteratorHelperPrototype; | |
| 3299 | - | |
| 3300 | - return IteratorProxy; | |
| 3301 | -}; | |
| 3302 | - | |
| 3303 | - | |
| 3304 | -/***/ }), | |
| 3305 | - | |
| 3306 | -/***/ "../node_modules/core-js/internals/iterator-helper-throws-on-invalid-iterator.js": | |
| 3307 | -/*!***************************************************************************************!*\ | |
| 3308 | - !*** ../node_modules/core-js/internals/iterator-helper-throws-on-invalid-iterator.js ***! | |
| 3309 | - \***************************************************************************************/ | |
| 3310 | -/***/ ((module) => { | |
| 3311 | - | |
| 3312 | -"use strict"; | |
| 3313 | - | |
| 3314 | -// Should throw an error on invalid iterator | |
| 3315 | -// https://issues.chromium.org/issues/336839115 | |
| 3316 | -module.exports = function (methodName, argument) { | |
| 3317 | - // eslint-disable-next-line es/no-iterator -- required for testing | |
| 3318 | - var method = typeof Iterator == 'function' && Iterator.prototype[methodName]; | |
| 3319 | - if (method) try { | |
| 3320 | - method.call({ next: null }, argument).next(); | |
| 3321 | - } catch (error) { | |
| 3322 | - return true; | |
| 3323 | - } | |
| 3324 | -}; | |
| 3325 | - | |
| 3326 | - | |
| 3327 | -/***/ }), | |
| 3328 | - | |
| 3329 | -/***/ "../node_modules/core-js/internals/iterator-helper-without-closing-on-early-error.js": | |
| 3330 | -/*!*******************************************************************************************!*\ | |
| 3331 | - !*** ../node_modules/core-js/internals/iterator-helper-without-closing-on-early-error.js ***! | |
| 3332 | - \*******************************************************************************************/ | |
| 3333 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 3334 | - | |
| 3335 | -"use strict"; | |
| 3336 | - | |
| 3337 | -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js"); | |
| 3338 | - | |
| 3339 | -// https://github.com/tc39/ecma262/pull/3467 | |
| 3340 | -module.exports = function (METHOD_NAME, ExpectedError) { | |
| 3341 | - var Iterator = globalThis.Iterator; | |
| 3342 | - var IteratorPrototype = Iterator && Iterator.prototype; | |
| 3343 | - var method = IteratorPrototype && IteratorPrototype[METHOD_NAME]; | |
| 3344 | - | |
| 3345 | - var CLOSED = false; | |
| 3346 | - | |
| 3347 | - if (method) try { | |
| 3348 | - method.call({ | |
| 3349 | - next: function () { return { done: true }; }, | |
| 3350 | - 'return': function () { CLOSED = true; } | |
| 3351 | - }, -1); | |
| 3352 | - } catch (error) { | |
| 3353 | - // https://bugs.webkit.org/show_bug.cgi?id=291195 | |
| 3354 | - if (!(error instanceof ExpectedError)) CLOSED = false; | |
| 3355 | - } | |
| 3356 | - | |
| 3357 | - if (!CLOSED) return method; | |
| 3358 | -}; | |
| 3359 | - | |
| 3360 | - | |
| 3361 | -/***/ }), | |
| 3362 | - | |
| 3363 | -/***/ "../node_modules/core-js/internals/iterators-core.js": | |
| 3364 | -/*!***********************************************************!*\ | |
| 3365 | - !*** ../node_modules/core-js/internals/iterators-core.js ***! | |
| 3366 | - \***********************************************************/ | |
| 3367 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 3368 | - | |
| 3369 | -"use strict"; | |
| 3370 | - | |
| 3371 | -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js"); | |
| 3372 | -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); | |
| 3373 | -var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js"); | |
| 3374 | -var create = __webpack_require__(/*! ../internals/object-create */ "../node_modules/core-js/internals/object-create.js"); | |
| 3375 | -var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "../node_modules/core-js/internals/object-get-prototype-of.js"); | |
| 3376 | -var defineBuiltIn = __webpack_require__(/*! ../internals/define-built-in */ "../node_modules/core-js/internals/define-built-in.js"); | |
| 3377 | -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js"); | |
| 3378 | -var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js"); | |
| 3379 | - | |
| 3380 | -var ITERATOR = wellKnownSymbol('iterator'); | |
| 3381 | -var BUGGY_SAFARI_ITERATORS = false; | |
| 3382 | - | |
| 3383 | -// `%IteratorPrototype%` object | |
| 3384 | -// https://tc39.es/ecma262/#sec-%iteratorprototype%-object | |
| 3385 | -var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator; | |
| 3386 | - | |
| 3387 | -/* eslint-disable es/no-array-prototype-keys -- safe */ | |
| 3388 | -if ([].keys) { | |
| 3389 | - arrayIterator = [].keys(); | |
| 3390 | - // Safari 8 has buggy iterators w/o `next` | |
| 3391 | - if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true; | |
| 3392 | - else { | |
| 3393 | - PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator)); | |
| 3394 | - if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype; | |
| 3395 | - } | |
| 3396 | -} | |
| 3397 | - | |
| 3398 | -var NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype) || fails(function () { | |
| 3399 | - var test = {}; | |
| 3400 | - // FF44- legacy iterators case | |
| 3401 | - return IteratorPrototype[ITERATOR].call(test) !== test; | |
| 3402 | -}); | |
| 3403 | - | |
| 3404 | -if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {}; | |
| 3405 | -else if (IS_PURE) IteratorPrototype = create(IteratorPrototype); | |
| 3406 | - | |
| 3407 | -// `%IteratorPrototype%[@@iterator]()` method | |
| 3408 | -// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator | |
| 3409 | -if (!isCallable(IteratorPrototype[ITERATOR])) { | |
| 3410 | - defineBuiltIn(IteratorPrototype, ITERATOR, function () { | |
| 3411 | - return this; | |
| 3412 | - }); | |
| 3413 | -} | |
| 3414 | - | |
| 3415 | -module.exports = { | |
| 3416 | - IteratorPrototype: IteratorPrototype, | |
| 3417 | - BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS | |
| 3418 | -}; | |
| 3419 | - | |
| 3420 | - | |
| 3421 | -/***/ }), | |
| 3422 | - | |
| 3423 | -/***/ "../node_modules/core-js/internals/iterators.js": | |
| 3424 | -/*!******************************************************!*\ | |
| 3425 | - !*** ../node_modules/core-js/internals/iterators.js ***! | |
| 3426 | - \******************************************************/ | |
| 3427 | -/***/ ((module) => { | |
| 3428 | - | |
| 3429 | -"use strict"; | |
| 3430 | - | |
| 3431 | -module.exports = {}; | |
| 3432 | - | |
| 3433 | - | |
| 3434 | -/***/ }), | |
| 3435 | - | |
| 3436 | 2153 | /***/ "../node_modules/core-js/internals/length-of-array-like.js": |
| 3437 | 2154 | /*!*****************************************************************!*\ |
| 3438 | 2155 | !*** ../node_modules/core-js/internals/length-of-array-like.js ***! |
| 3439 | 2156 | \*****************************************************************/ |
| @@ -3438,10 +2155,8 @@ | ||
| 3438 | 2155 | !*** ../node_modules/core-js/internals/length-of-array-like.js ***! |
| 3439 | 2156 | \*****************************************************************/ |
| 3440 | 2157 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 3441 | 2158 | |
| 3442 | -"use strict"; | |
| 3443 | - | |
| 3444 | 2159 | var toLength = __webpack_require__(/*! ../internals/to-length */ "../node_modules/core-js/internals/to-length.js"); |
| 3445 | 2160 | |
| 3446 | 2161 | // `LengthOfArrayLike` abstract operation |
| 3447 | 2162 | // https://tc39.es/ecma262/#sec-lengthofarraylike |
| @@ -3457,11 +2172,8 @@ | ||
| 3457 | 2172 | !*** ../node_modules/core-js/internals/make-built-in.js ***! |
| 3458 | 2173 | \**********************************************************/ |
| 3459 | 2174 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 3460 | 2175 | |
| 3461 | -"use strict"; | |
| 3462 | - | |
| 3463 | -var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js"); | |
| 3464 | 2176 | var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js"); |
| 3465 | 2177 | var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); |
| 3466 | 2178 | var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js"); |
| 3467 | 2179 | var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js"); |
| @@ -3470,14 +2182,10 @@ | ||
| 3470 | 2182 | var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "../node_modules/core-js/internals/internal-state.js"); |
| 3471 | 2183 | |
| 3472 | 2184 | var enforceInternalState = InternalStateModule.enforce; |
| 3473 | 2185 | var getInternalState = InternalStateModule.get; |
| 3474 | -var $String = String; | |
| 3475 | 2186 | // eslint-disable-next-line es/no-object-defineproperty -- safe |
| 3476 | 2187 | var defineProperty = Object.defineProperty; |
| 3477 | -var stringSlice = uncurryThis(''.slice); | |
| 3478 | -var replace = uncurryThis(''.replace); | |
| 3479 | -var join = uncurryThis([].join); | |
| 3480 | 2188 | |
| 3481 | 2189 | var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () { |
| 3482 | 2190 | return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8; |
| 3483 | 2191 | }); |
| @@ -3484,10 +2192,10 @@ | ||
| 3484 | 2192 | |
| 3485 | 2193 | var TEMPLATE = String(String).split('String'); |
| 3486 | 2194 | |
| 3487 | 2195 | var makeBuiltIn = module.exports = function (value, name, options) { |
| 3488 | - if (stringSlice($String(name), 0, 7) === 'Symbol(') { | |
| 3489 | - name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']'; | |
| 2196 | + if (String(name).slice(0, 7) === 'Symbol(') { | |
| 2197 | + name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']'; | |
| 3490 | 2198 | } |
| 3491 | 2199 | if (options && options.getter) name = 'get ' + name; |
| 3492 | 2200 | if (options && options.setter) name = 'set ' + name; |
| 3493 | 2201 | if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) { |
| @@ -3504,9 +2212,9 @@ | ||
| 3504 | 2212 | } else if (value.prototype) value.prototype = undefined; |
| 3505 | 2213 | } catch (error) { /* empty */ } |
| 3506 | 2214 | var state = enforceInternalState(value); |
| 3507 | 2215 | if (!hasOwn(state, 'source')) { |
| 3508 | - state.source = join(TEMPLATE, typeof name == 'string' ? name : ''); | |
| 2216 | + state.source = TEMPLATE.join(typeof name == 'string' ? name : ''); | |
| 3509 | 2217 | } return value; |
| 3510 | 2218 | }; |
| 3511 | 2219 | |
| 3512 | 2220 | // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative |
| @@ -3523,10 +2231,8 @@ | ||
| 3523 | 2231 | !*** ../node_modules/core-js/internals/math-trunc.js ***! |
| 3524 | 2232 | \*******************************************************/ |
| 3525 | 2233 | /***/ ((module) => { |
| 3526 | 2234 | |
| 3527 | -"use strict"; | |
| 3528 | - | |
| 3529 | 2235 | var ceil = Math.ceil; |
| 3530 | 2236 | var floor = Math.floor; |
| 3531 | 2237 | |
| 3532 | 2238 | // `Math.trunc` method |
| @@ -3539,136 +2245,23 @@ | ||
| 3539 | 2245 | |
| 3540 | 2246 | |
| 3541 | 2247 | /***/ }), |
| 3542 | 2248 | |
| 3543 | -/***/ "../node_modules/core-js/internals/object-create.js": | |
| 3544 | -/*!**********************************************************!*\ | |
| 3545 | - !*** ../node_modules/core-js/internals/object-create.js ***! | |
| 3546 | - \**********************************************************/ | |
| 2249 | +/***/ "../node_modules/core-js/internals/normalize-string-argument.js": | |
| 2250 | +/*!**********************************************************************!*\ | |
| 2251 | + !*** ../node_modules/core-js/internals/normalize-string-argument.js ***! | |
| 2252 | + \**********************************************************************/ | |
| 3547 | 2253 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 3548 | 2254 | |
| 3549 | -"use strict"; | |
| 2255 | +var toString = __webpack_require__(/*! ../internals/to-string */ "../node_modules/core-js/internals/to-string.js"); | |
| 3550 | 2256 | |
| 3551 | -/* global ActiveXObject -- old IE, WSH */ | |
| 3552 | -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js"); | |
| 3553 | -var definePropertiesModule = __webpack_require__(/*! ../internals/object-define-properties */ "../node_modules/core-js/internals/object-define-properties.js"); | |
| 3554 | -var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "../node_modules/core-js/internals/enum-bug-keys.js"); | |
| 3555 | -var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../node_modules/core-js/internals/hidden-keys.js"); | |
| 3556 | -var html = __webpack_require__(/*! ../internals/html */ "../node_modules/core-js/internals/html.js"); | |
| 3557 | -var documentCreateElement = __webpack_require__(/*! ../internals/document-create-element */ "../node_modules/core-js/internals/document-create-element.js"); | |
| 3558 | -var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../node_modules/core-js/internals/shared-key.js"); | |
| 3559 | - | |
| 3560 | -var GT = '>'; | |
| 3561 | -var LT = '<'; | |
| 3562 | -var PROTOTYPE = 'prototype'; | |
| 3563 | -var SCRIPT = 'script'; | |
| 3564 | -var IE_PROTO = sharedKey('IE_PROTO'); | |
| 3565 | - | |
| 3566 | -var EmptyConstructor = function () { /* empty */ }; | |
| 3567 | - | |
| 3568 | -var scriptTag = function (content) { | |
| 3569 | - return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT; | |
| 2257 | +module.exports = function (argument, $default) { | |
| 2258 | + return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument); | |
| 3570 | 2259 | }; |
| 3571 | 2260 | |
| 3572 | -// Create object with fake `null` prototype: use ActiveX Object with cleared prototype | |
| 3573 | -var NullProtoObjectViaActiveX = function (activeXDocument) { | |
| 3574 | - activeXDocument.write(scriptTag('')); | |
| 3575 | - activeXDocument.close(); | |
| 3576 | - var temp = activeXDocument.parentWindow.Object; | |
| 3577 | - // eslint-disable-next-line no-useless-assignment -- avoid memory leak | |
| 3578 | - activeXDocument = null; | |
| 3579 | - return temp; | |
| 3580 | -}; | |
| 3581 | 2261 | |
| 3582 | -// Create object with fake `null` prototype: use iframe Object with cleared prototype | |
| 3583 | -var NullProtoObjectViaIFrame = function () { | |
| 3584 | - // Thrash, waste and sodomy: IE GC bug | |
| 3585 | - var iframe = documentCreateElement('iframe'); | |
| 3586 | - var JS = 'java' + SCRIPT + ':'; | |
| 3587 | - var iframeDocument; | |
| 3588 | - iframe.style.display = 'none'; | |
| 3589 | - html.appendChild(iframe); | |
| 3590 | - // https://github.com/zloirock/core-js/issues/475 | |
| 3591 | - iframe.src = String(JS); | |
| 3592 | - iframeDocument = iframe.contentWindow.document; | |
| 3593 | - iframeDocument.open(); | |
| 3594 | - iframeDocument.write(scriptTag('document.F=Object')); | |
| 3595 | - iframeDocument.close(); | |
| 3596 | - return iframeDocument.F; | |
| 3597 | -}; | |
| 3598 | - | |
| 3599 | -// Check for document.domain and active x support | |
| 3600 | -// No need to use active x approach when document.domain is not set | |
| 3601 | -// see https://github.com/es-shims/es5-shim/issues/150 | |
| 3602 | -// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346 | |
| 3603 | -// avoid IE GC bug | |
| 3604 | -var activeXDocument; | |
| 3605 | -var NullProtoObject = function () { | |
| 3606 | - try { | |
| 3607 | - activeXDocument = new ActiveXObject('htmlfile'); | |
| 3608 | - } catch (error) { /* ignore */ } | |
| 3609 | - NullProtoObject = typeof document != 'undefined' | |
| 3610 | - ? document.domain && activeXDocument | |
| 3611 | - ? NullProtoObjectViaActiveX(activeXDocument) // old IE | |
| 3612 | - : NullProtoObjectViaIFrame() | |
| 3613 | - : NullProtoObjectViaActiveX(activeXDocument); // WSH | |
| 3614 | - var length = enumBugKeys.length; | |
| 3615 | - while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]]; | |
| 3616 | - return NullProtoObject(); | |
| 3617 | -}; | |
| 3618 | - | |
| 3619 | -hiddenKeys[IE_PROTO] = true; | |
| 3620 | - | |
| 3621 | -// `Object.create` method | |
| 3622 | -// https://tc39.es/ecma262/#sec-object.create | |
| 3623 | -// eslint-disable-next-line es/no-object-create -- safe | |
| 3624 | -module.exports = Object.create || function create(O, Properties) { | |
| 3625 | - var result; | |
| 3626 | - if (O !== null) { | |
| 3627 | - EmptyConstructor[PROTOTYPE] = anObject(O); | |
| 3628 | - result = new EmptyConstructor(); | |
| 3629 | - EmptyConstructor[PROTOTYPE] = null; | |
| 3630 | - // add "__proto__" for Object.getPrototypeOf polyfill | |
| 3631 | - result[IE_PROTO] = O; | |
| 3632 | - } else result = NullProtoObject(); | |
| 3633 | - return Properties === undefined ? result : definePropertiesModule.f(result, Properties); | |
| 3634 | -}; | |
| 3635 | - | |
| 3636 | - | |
| 3637 | 2262 | /***/ }), |
| 3638 | 2263 | |
| 3639 | -/***/ "../node_modules/core-js/internals/object-define-properties.js": | |
| 3640 | -/*!*********************************************************************!*\ | |
| 3641 | - !*** ../node_modules/core-js/internals/object-define-properties.js ***! | |
| 3642 | - \*********************************************************************/ | |
| 3643 | -/***/ ((__unused_webpack_module, exports, __webpack_require__) => { | |
| 3644 | - | |
| 3645 | -"use strict"; | |
| 3646 | - | |
| 3647 | -var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js"); | |
| 3648 | -var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(/*! ../internals/v8-prototype-define-bug */ "../node_modules/core-js/internals/v8-prototype-define-bug.js"); | |
| 3649 | -var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js"); | |
| 3650 | -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js"); | |
| 3651 | -var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js"); | |
| 3652 | -var objectKeys = __webpack_require__(/*! ../internals/object-keys */ "../node_modules/core-js/internals/object-keys.js"); | |
| 3653 | - | |
| 3654 | -// `Object.defineProperties` method | |
| 3655 | -// https://tc39.es/ecma262/#sec-object.defineproperties | |
| 3656 | -// eslint-disable-next-line es/no-object-defineproperties -- safe | |
| 3657 | -exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) { | |
| 3658 | - anObject(O); | |
| 3659 | - var props = toIndexedObject(Properties); | |
| 3660 | - var keys = objectKeys(Properties); | |
| 3661 | - var length = keys.length; | |
| 3662 | - var index = 0; | |
| 3663 | - var key; | |
| 3664 | - while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]); | |
| 3665 | - return O; | |
| 3666 | -}; | |
| 3667 | - | |
| 3668 | - | |
| 3669 | -/***/ }), | |
| 3670 | - | |
| 3671 | 2264 | /***/ "../node_modules/core-js/internals/object-define-property.js": |
| 3672 | 2265 | /*!*******************************************************************!*\ |
| 3673 | 2266 | !*** ../node_modules/core-js/internals/object-define-property.js ***! |
| 3674 | 2267 | \*******************************************************************/ |
| @@ -3673,10 +2266,8 @@ | ||
| 3673 | 2266 | !*** ../node_modules/core-js/internals/object-define-property.js ***! |
| 3674 | 2267 | \*******************************************************************/ |
| 3675 | 2268 | /***/ ((__unused_webpack_module, exports, __webpack_require__) => { |
| 3676 | 2269 | |
| 3677 | -"use strict"; | |
| 3678 | - | |
| 3679 | 2270 | var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js"); |
| 3680 | 2271 | var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "../node_modules/core-js/internals/ie8-dom-define.js"); |
| 3681 | 2272 | var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(/*! ../internals/v8-prototype-define-bug */ "../node_modules/core-js/internals/v8-prototype-define-bug.js"); |
| 3682 | 2273 | var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js"); |
| @@ -3714,9 +2305,9 @@ | ||
| 3714 | 2305 | anObject(Attributes); |
| 3715 | 2306 | if (IE8_DOM_DEFINE) try { |
| 3716 | 2307 | return $defineProperty(O, P, Attributes); |
| 3717 | 2308 | } catch (error) { /* empty */ } |
| 3718 | - if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported'); | |
| 2309 | + if ('get' in Attributes || 'set' in Attributes) throw $TypeError('Accessors not supported'); | |
| 3719 | 2310 | if ('value' in Attributes) O[P] = Attributes.value; |
| 3720 | 2311 | return O; |
| 3721 | 2312 | }; |
| 3722 | 2313 | |
| @@ -3728,10 +2319,8 @@ | ||
| 3728 | 2319 | !*** ../node_modules/core-js/internals/object-get-own-property-descriptor.js ***! |
| 3729 | 2320 | \*******************************************************************************/ |
| 3730 | 2321 | /***/ ((__unused_webpack_module, exports, __webpack_require__) => { |
| 3731 | 2322 | |
| 3732 | -"use strict"; | |
| 3733 | - | |
| 3734 | 2323 | var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js"); |
| 3735 | 2324 | var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js"); |
| 3736 | 2325 | var propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "../node_modules/core-js/internals/object-property-is-enumerable.js"); |
| 3737 | 2326 | var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../node_modules/core-js/internals/create-property-descriptor.js"); |
| @@ -3762,10 +2351,8 @@ | ||
| 3762 | 2351 | !*** ../node_modules/core-js/internals/object-get-own-property-names.js ***! |
| 3763 | 2352 | \**************************************************************************/ |
| 3764 | 2353 | /***/ ((__unused_webpack_module, exports, __webpack_require__) => { |
| 3765 | 2354 | |
| 3766 | -"use strict"; | |
| 3767 | - | |
| 3768 | 2355 | var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "../node_modules/core-js/internals/object-keys-internal.js"); |
| 3769 | 2356 | var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "../node_modules/core-js/internals/enum-bug-keys.js"); |
| 3770 | 2357 | |
| 3771 | 2358 | var hiddenKeys = enumBugKeys.concat('length', 'prototype'); |
| @@ -3785,10 +2372,8 @@ | ||
| 3785 | 2372 | !*** ../node_modules/core-js/internals/object-get-own-property-symbols.js ***! |
| 3786 | 2373 | \****************************************************************************/ |
| 3787 | 2374 | /***/ ((__unused_webpack_module, exports) => { |
| 3788 | 2375 | |
| 3789 | -"use strict"; | |
| 3790 | - | |
| 3791 | 2376 | // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe |
| 3792 | 2377 | exports.f = Object.getOwnPropertySymbols; |
| 3793 | 2378 | |
| 3794 | 2379 | |
| @@ -3793,41 +2378,8 @@ | ||
| 3793 | 2378 | |
| 3794 | 2379 | |
| 3795 | 2380 | /***/ }), |
| 3796 | 2381 | |
| 3797 | -/***/ "../node_modules/core-js/internals/object-get-prototype-of.js": | |
| 3798 | -/*!********************************************************************!*\ | |
| 3799 | - !*** ../node_modules/core-js/internals/object-get-prototype-of.js ***! | |
| 3800 | - \********************************************************************/ | |
| 3801 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 3802 | - | |
| 3803 | -"use strict"; | |
| 3804 | - | |
| 3805 | -var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js"); | |
| 3806 | -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); | |
| 3807 | -var toObject = __webpack_require__(/*! ../internals/to-object */ "../node_modules/core-js/internals/to-object.js"); | |
| 3808 | -var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../node_modules/core-js/internals/shared-key.js"); | |
| 3809 | -var CORRECT_PROTOTYPE_GETTER = __webpack_require__(/*! ../internals/correct-prototype-getter */ "../node_modules/core-js/internals/correct-prototype-getter.js"); | |
| 3810 | - | |
| 3811 | -var IE_PROTO = sharedKey('IE_PROTO'); | |
| 3812 | -var $Object = Object; | |
| 3813 | -var ObjectPrototype = $Object.prototype; | |
| 3814 | - | |
| 3815 | -// `Object.getPrototypeOf` method | |
| 3816 | -// https://tc39.es/ecma262/#sec-object.getprototypeof | |
| 3817 | -// eslint-disable-next-line es/no-object-getprototypeof -- safe | |
| 3818 | -module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) { | |
| 3819 | - var object = toObject(O); | |
| 3820 | - if (hasOwn(object, IE_PROTO)) return object[IE_PROTO]; | |
| 3821 | - var constructor = object.constructor; | |
| 3822 | - if (isCallable(constructor) && object instanceof constructor) { | |
| 3823 | - return constructor.prototype; | |
| 3824 | - } return object instanceof $Object ? ObjectPrototype : null; | |
| 3825 | -}; | |
| 3826 | - | |
| 3827 | - | |
| 3828 | -/***/ }), | |
| 3829 | - | |
| 3830 | 2382 | /***/ "../node_modules/core-js/internals/object-is-prototype-of.js": |
| 3831 | 2383 | /*!*******************************************************************!*\ |
| 3832 | 2384 | !*** ../node_modules/core-js/internals/object-is-prototype-of.js ***! |
| 3833 | 2385 | \*******************************************************************/ |
| @@ -3832,10 +2384,8 @@ | ||
| 3832 | 2384 | !*** ../node_modules/core-js/internals/object-is-prototype-of.js ***! |
| 3833 | 2385 | \*******************************************************************/ |
| 3834 | 2386 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 3835 | 2387 | |
| 3836 | -"use strict"; | |
| 3837 | - | |
| 3838 | 2388 | var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js"); |
| 3839 | 2389 | |
| 3840 | 2390 | module.exports = uncurryThis({}.isPrototypeOf); |
| 3841 | 2391 | |
| @@ -3847,10 +2397,8 @@ | ||
| 3847 | 2397 | !*** ../node_modules/core-js/internals/object-keys-internal.js ***! |
| 3848 | 2398 | \*****************************************************************/ |
| 3849 | 2399 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 3850 | 2400 | |
| 3851 | -"use strict"; | |
| 3852 | - | |
| 3853 | 2401 | var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js"); |
| 3854 | 2402 | var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js"); |
| 3855 | 2403 | var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../node_modules/core-js/internals/to-indexed-object.js"); |
| 3856 | 2404 | var indexOf = (__webpack_require__(/*! ../internals/array-includes */ "../node_modules/core-js/internals/array-includes.js").indexOf); |
| @@ -3873,29 +2421,8 @@ | ||
| 3873 | 2421 | |
| 3874 | 2422 | |
| 3875 | 2423 | /***/ }), |
| 3876 | 2424 | |
| 3877 | -/***/ "../node_modules/core-js/internals/object-keys.js": | |
| 3878 | -/*!********************************************************!*\ | |
| 3879 | - !*** ../node_modules/core-js/internals/object-keys.js ***! | |
| 3880 | - \********************************************************/ | |
| 3881 | -/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 3882 | - | |
| 3883 | -"use strict"; | |
| 3884 | - | |
| 3885 | -var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "../node_modules/core-js/internals/object-keys-internal.js"); | |
| 3886 | -var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "../node_modules/core-js/internals/enum-bug-keys.js"); | |
| 3887 | - | |
| 3888 | -// `Object.keys` method | |
| 3889 | -// https://tc39.es/ecma262/#sec-object.keys | |
| 3890 | -// eslint-disable-next-line es/no-object-keys -- safe | |
| 3891 | -module.exports = Object.keys || function keys(O) { | |
| 3892 | - return internalObjectKeys(O, enumBugKeys); | |
| 3893 | -}; | |
| 3894 | - | |
| 3895 | - | |
| 3896 | -/***/ }), | |
| 3897 | - | |
| 3898 | 2425 | /***/ "../node_modules/core-js/internals/object-property-is-enumerable.js": |
| 3899 | 2426 | /*!**************************************************************************!*\ |
| 3900 | 2427 | !*** ../node_modules/core-js/internals/object-property-is-enumerable.js ***! |
| 3901 | 2428 | \**************************************************************************/ |
| @@ -3919,8 +2446,45 @@ | ||
| 3919 | 2446 | |
| 3920 | 2447 | |
| 3921 | 2448 | /***/ }), |
| 3922 | 2449 | |
| 2450 | +/***/ "../node_modules/core-js/internals/object-set-prototype-of.js": | |
| 2451 | +/*!********************************************************************!*\ | |
| 2452 | + !*** ../node_modules/core-js/internals/object-set-prototype-of.js ***! | |
| 2453 | + \********************************************************************/ | |
| 2454 | +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2455 | + | |
| 2456 | +/* eslint-disable no-proto -- safe */ | |
| 2457 | +var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js"); | |
| 2458 | +var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js"); | |
| 2459 | +var aPossiblePrototype = __webpack_require__(/*! ../internals/a-possible-prototype */ "../node_modules/core-js/internals/a-possible-prototype.js"); | |
| 2460 | + | |
| 2461 | +// `Object.setPrototypeOf` method | |
| 2462 | +// https://tc39.es/ecma262/#sec-object.setprototypeof | |
| 2463 | +// Works with __proto__ only. Old v8 can't work with null proto objects. | |
| 2464 | +// eslint-disable-next-line es/no-object-setprototypeof -- safe | |
| 2465 | +module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () { | |
| 2466 | + var CORRECT_SETTER = false; | |
| 2467 | + var test = {}; | |
| 2468 | + var setter; | |
| 2469 | + try { | |
| 2470 | + // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe | |
| 2471 | + setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set); | |
| 2472 | + setter(test, []); | |
| 2473 | + CORRECT_SETTER = test instanceof Array; | |
| 2474 | + } catch (error) { /* empty */ } | |
| 2475 | + return function setPrototypeOf(O, proto) { | |
| 2476 | + anObject(O); | |
| 2477 | + aPossiblePrototype(proto); | |
| 2478 | + if (CORRECT_SETTER) setter(O, proto); | |
| 2479 | + else O.__proto__ = proto; | |
| 2480 | + return O; | |
| 2481 | + }; | |
| 2482 | +}() : undefined); | |
| 2483 | + | |
| 2484 | + | |
| 2485 | +/***/ }), | |
| 2486 | + | |
| 3923 | 2487 | /***/ "../node_modules/core-js/internals/ordinary-to-primitive.js": |
| 3924 | 2488 | /*!******************************************************************!*\ |
| 3925 | 2489 | !*** ../node_modules/core-js/internals/ordinary-to-primitive.js ***! |
| 3926 | 2490 | \******************************************************************/ |
| @@ -3925,10 +2489,8 @@ | ||
| 3925 | 2489 | !*** ../node_modules/core-js/internals/ordinary-to-primitive.js ***! |
| 3926 | 2490 | \******************************************************************/ |
| 3927 | 2491 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 3928 | 2492 | |
| 3929 | -"use strict"; | |
| 3930 | - | |
| 3931 | 2493 | var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js"); |
| 3932 | 2494 | var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); |
| 3933 | 2495 | var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js"); |
| 3934 | 2496 | |
| @@ -3940,9 +2502,9 @@ | ||
| 3940 | 2502 | var fn, val; |
| 3941 | 2503 | if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val; |
| 3942 | 2504 | if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val; |
| 3943 | 2505 | if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val; |
| 3944 | - throw new $TypeError("Can't convert object to primitive value"); | |
| 2506 | + throw $TypeError("Can't convert object to primitive value"); | |
| 3945 | 2507 | }; |
| 3946 | 2508 | |
| 3947 | 2509 | |
| 3948 | 2510 | /***/ }), |
| @@ -3952,10 +2514,8 @@ | ||
| 3952 | 2514 | !*** ../node_modules/core-js/internals/own-keys.js ***! |
| 3953 | 2515 | \*****************************************************/ |
| 3954 | 2516 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 3955 | 2517 | |
| 3956 | -"use strict"; | |
| 3957 | - | |
| 3958 | 2518 | var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js"); |
| 3959 | 2519 | var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js"); |
| 3960 | 2520 | var getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "../node_modules/core-js/internals/object-get-own-property-names.js"); |
| 3961 | 2521 | var getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "../node_modules/core-js/internals/object-get-own-property-symbols.js"); |
| @@ -3972,8 +2532,27 @@ | ||
| 3972 | 2532 | |
| 3973 | 2533 | |
| 3974 | 2534 | /***/ }), |
| 3975 | 2535 | |
| 2536 | +/***/ "../node_modules/core-js/internals/proxy-accessor.js": | |
| 2537 | +/*!***********************************************************!*\ | |
| 2538 | + !*** ../node_modules/core-js/internals/proxy-accessor.js ***! | |
| 2539 | + \***********************************************************/ | |
| 2540 | +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2541 | + | |
| 2542 | +var defineProperty = (__webpack_require__(/*! ../internals/object-define-property */ "../node_modules/core-js/internals/object-define-property.js").f); | |
| 2543 | + | |
| 2544 | +module.exports = function (Target, Source, key) { | |
| 2545 | + key in Target || defineProperty(Target, key, { | |
| 2546 | + configurable: true, | |
| 2547 | + get: function () { return Source[key]; }, | |
| 2548 | + set: function (it) { Source[key] = it; } | |
| 2549 | + }); | |
| 2550 | +}; | |
| 2551 | + | |
| 2552 | + | |
| 2553 | +/***/ }), | |
| 2554 | + | |
| 3976 | 2555 | /***/ "../node_modules/core-js/internals/require-object-coercible.js": |
| 3977 | 2556 | /*!*********************************************************************!*\ |
| 3978 | 2557 | !*** ../node_modules/core-js/internals/require-object-coercible.js ***! |
| 3979 | 2558 | \*********************************************************************/ |
| @@ -3978,10 +2557,8 @@ | ||
| 3978 | 2557 | !*** ../node_modules/core-js/internals/require-object-coercible.js ***! |
| 3979 | 2558 | \*********************************************************************/ |
| 3980 | 2559 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 3981 | 2560 | |
| 3982 | -"use strict"; | |
| 3983 | - | |
| 3984 | 2561 | var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ "../node_modules/core-js/internals/is-null-or-undefined.js"); |
| 3985 | 2562 | |
| 3986 | 2563 | var $TypeError = TypeError; |
| 3987 | 2564 | |
| @@ -3987,9 +2564,9 @@ | ||
| 3987 | 2564 | |
| 3988 | 2565 | // `RequireObjectCoercible` abstract operation |
| 3989 | 2566 | // https://tc39.es/ecma262/#sec-requireobjectcoercible |
| 3990 | 2567 | module.exports = function (it) { |
| 3991 | - if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it); | |
| 2568 | + if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it); | |
| 3992 | 2569 | return it; |
| 3993 | 2570 | }; |
| 3994 | 2571 | |
| 3995 | 2572 | |
| @@ -4000,10 +2577,8 @@ | ||
| 4000 | 2577 | !*** ../node_modules/core-js/internals/shared-key.js ***! |
| 4001 | 2578 | \*******************************************************/ |
| 4002 | 2579 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4003 | 2580 | |
| 4004 | -"use strict"; | |
| 4005 | - | |
| 4006 | 2581 | var shared = __webpack_require__(/*! ../internals/shared */ "../node_modules/core-js/internals/shared.js"); |
| 4007 | 2582 | var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js"); |
| 4008 | 2583 | |
| 4009 | 2584 | var keys = shared('keys'); |
| @@ -4020,24 +2595,15 @@ | ||
| 4020 | 2595 | !*** ../node_modules/core-js/internals/shared-store.js ***! |
| 4021 | 2596 | \*********************************************************/ |
| 4022 | 2597 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4023 | 2598 | |
| 4024 | -"use strict"; | |
| 4025 | - | |
| 4026 | -var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js"); | |
| 4027 | -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js"); | |
| 2599 | +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js"); | |
| 4028 | 2600 | var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ "../node_modules/core-js/internals/define-global-property.js"); |
| 4029 | 2601 | |
| 4030 | 2602 | var SHARED = '__core-js_shared__'; |
| 4031 | -var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {}); | |
| 2603 | +var store = global[SHARED] || defineGlobalProperty(SHARED, {}); | |
| 4032 | 2604 | |
| 4033 | -(store.versions || (store.versions = [])).push({ | |
| 4034 | - version: '3.46.0', | |
| 4035 | - mode: IS_PURE ? 'pure' : 'global', | |
| 4036 | - copyright: '© 2014-2025 Denis Pushkarev (zloirock.ru), 2025 CoreJS Company (core-js.io)', | |
| 4037 | - license: 'https://github.com/zloirock/core-js/blob/v3.46.0/LICENSE', | |
| 4038 | - source: 'https://github.com/zloirock/core-js' | |
| 4039 | -}); | |
| 2605 | +module.exports = store; | |
| 4040 | 2606 | |
| 4041 | 2607 | |
| 4042 | 2608 | /***/ }), |
| 4043 | 2609 | |
| @@ -4046,15 +2612,20 @@ | ||
| 4046 | 2612 | !*** ../node_modules/core-js/internals/shared.js ***! |
| 4047 | 2613 | \***************************************************/ |
| 4048 | 2614 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4049 | 2615 | |
| 4050 | -"use strict"; | |
| 4051 | - | |
| 2616 | +var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js"); | |
| 4052 | 2617 | var store = __webpack_require__(/*! ../internals/shared-store */ "../node_modules/core-js/internals/shared-store.js"); |
| 4053 | 2618 | |
| 4054 | -module.exports = function (key, value) { | |
| 4055 | - return store[key] || (store[key] = value || {}); | |
| 4056 | -}; | |
| 2619 | +(module.exports = function (key, value) { | |
| 2620 | + return store[key] || (store[key] = value !== undefined ? value : {}); | |
| 2621 | +})('versions', []).push({ | |
| 2622 | + version: '3.26.0', | |
| 2623 | + mode: IS_PURE ? 'pure' : 'global', | |
| 2624 | + copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)', | |
| 2625 | + license: 'https://github.com/zloirock/core-js/blob/v3.26.0/LICENSE', | |
| 2626 | + source: 'https://github.com/zloirock/core-js' | |
| 2627 | +}); | |
| 4057 | 2628 | |
| 4058 | 2629 | |
| 4059 | 2630 | /***/ }), |
| 4060 | 2631 | |
| @@ -4063,25 +2634,18 @@ | ||
| 4063 | 2634 | !*** ../node_modules/core-js/internals/symbol-constructor-detection.js ***! |
| 4064 | 2635 | \*************************************************************************/ |
| 4065 | 2636 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4066 | 2637 | |
| 4067 | -"use strict"; | |
| 4068 | - | |
| 4069 | 2638 | /* eslint-disable es/no-symbol -- required for testing */ |
| 4070 | -var V8_VERSION = __webpack_require__(/*! ../internals/environment-v8-version */ "../node_modules/core-js/internals/environment-v8-version.js"); | |
| 2639 | +var V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ "../node_modules/core-js/internals/engine-v8-version.js"); | |
| 4071 | 2640 | var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js"); |
| 4072 | -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js"); | |
| 4073 | 2641 | |
| 4074 | -var $String = globalThis.String; | |
| 4075 | - | |
| 4076 | 2642 | // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing |
| 4077 | 2643 | module.exports = !!Object.getOwnPropertySymbols && !fails(function () { |
| 4078 | - var symbol = Symbol('symbol detection'); | |
| 2644 | + var symbol = Symbol(); | |
| 4079 | 2645 | // Chrome 38 Symbol has incorrect toString conversion |
| 4080 | 2646 | // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances |
| 4081 | - // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will, | |
| 4082 | - // of course, fail. | |
| 4083 | - return !$String(symbol) || !(Object(symbol) instanceof Symbol) || | |
| 2647 | + return !String(symbol) || !(Object(symbol) instanceof Symbol) || | |
| 4084 | 2648 | // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances |
| 4085 | 2649 | !Symbol.sham && V8_VERSION && V8_VERSION < 41; |
| 4086 | 2650 | }); |
| 4087 | 2651 | |
| @@ -4093,10 +2657,8 @@ | ||
| 4093 | 2657 | !*** ../node_modules/core-js/internals/to-absolute-index.js ***! |
| 4094 | 2658 | \**************************************************************/ |
| 4095 | 2659 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4096 | 2660 | |
| 4097 | -"use strict"; | |
| 4098 | - | |
| 4099 | 2661 | var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../node_modules/core-js/internals/to-integer-or-infinity.js"); |
| 4100 | 2662 | |
| 4101 | 2663 | var max = Math.max; |
| 4102 | 2664 | var min = Math.min; |
| @@ -4117,10 +2679,8 @@ | ||
| 4117 | 2679 | !*** ../node_modules/core-js/internals/to-indexed-object.js ***! |
| 4118 | 2680 | \**************************************************************/ |
| 4119 | 2681 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4120 | 2682 | |
| 4121 | -"use strict"; | |
| 4122 | - | |
| 4123 | 2683 | // toObject with fallback for non-array-like ES3 strings |
| 4124 | 2684 | var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "../node_modules/core-js/internals/indexed-object.js"); |
| 4125 | 2685 | var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "../node_modules/core-js/internals/require-object-coercible.js"); |
| 4126 | 2686 | |
| @@ -4136,10 +2696,8 @@ | ||
| 4136 | 2696 | !*** ../node_modules/core-js/internals/to-integer-or-infinity.js ***! |
| 4137 | 2697 | \*******************************************************************/ |
| 4138 | 2698 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4139 | 2699 | |
| 4140 | -"use strict"; | |
| 4141 | - | |
| 4142 | 2700 | var trunc = __webpack_require__(/*! ../internals/math-trunc */ "../node_modules/core-js/internals/math-trunc.js"); |
| 4143 | 2701 | |
| 4144 | 2702 | // `ToIntegerOrInfinity` abstract operation |
| 4145 | 2703 | // https://tc39.es/ecma262/#sec-tointegerorinfinity |
| @@ -4157,10 +2715,8 @@ | ||
| 4157 | 2715 | !*** ../node_modules/core-js/internals/to-length.js ***! |
| 4158 | 2716 | \******************************************************/ |
| 4159 | 2717 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4160 | 2718 | |
| 4161 | -"use strict"; | |
| 4162 | - | |
| 4163 | 2719 | var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../node_modules/core-js/internals/to-integer-or-infinity.js"); |
| 4164 | 2720 | |
| 4165 | 2721 | var min = Math.min; |
| 4166 | 2722 | |
| @@ -4166,10 +2722,9 @@ | ||
| 4166 | 2722 | |
| 4167 | 2723 | // `ToLength` abstract operation |
| 4168 | 2724 | // https://tc39.es/ecma262/#sec-tolength |
| 4169 | 2725 | module.exports = function (argument) { |
| 4170 | - var len = toIntegerOrInfinity(argument); | |
| 4171 | - return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991 | |
| 2726 | + return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991 | |
| 4172 | 2727 | }; |
| 4173 | 2728 | |
| 4174 | 2729 | |
| 4175 | 2730 | /***/ }), |
| @@ -4179,10 +2734,8 @@ | ||
| 4179 | 2734 | !*** ../node_modules/core-js/internals/to-object.js ***! |
| 4180 | 2735 | \******************************************************/ |
| 4181 | 2736 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4182 | 2737 | |
| 4183 | -"use strict"; | |
| 4184 | - | |
| 4185 | 2738 | var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "../node_modules/core-js/internals/require-object-coercible.js"); |
| 4186 | 2739 | |
| 4187 | 2740 | var $Object = Object; |
| 4188 | 2741 | |
| @@ -4200,10 +2753,8 @@ | ||
| 4200 | 2753 | !*** ../node_modules/core-js/internals/to-primitive.js ***! |
| 4201 | 2754 | \*********************************************************/ |
| 4202 | 2755 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4203 | 2756 | |
| 4204 | -"use strict"; | |
| 4205 | - | |
| 4206 | 2757 | var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js"); |
| 4207 | 2758 | var isObject = __webpack_require__(/*! ../internals/is-object */ "../node_modules/core-js/internals/is-object.js"); |
| 4208 | 2759 | var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../node_modules/core-js/internals/is-symbol.js"); |
| 4209 | 2760 | var getMethod = __webpack_require__(/*! ../internals/get-method */ "../node_modules/core-js/internals/get-method.js"); |
| @@ -4222,9 +2773,9 @@ | ||
| 4222 | 2773 | if (exoticToPrim) { |
| 4223 | 2774 | if (pref === undefined) pref = 'default'; |
| 4224 | 2775 | result = call(exoticToPrim, input, pref); |
| 4225 | 2776 | if (!isObject(result) || isSymbol(result)) return result; |
| 4226 | - throw new $TypeError("Can't convert object to primitive value"); | |
| 2777 | + throw $TypeError("Can't convert object to primitive value"); | |
| 4227 | 2778 | } |
| 4228 | 2779 | if (pref === undefined) pref = 'number'; |
| 4229 | 2780 | return ordinaryToPrimitive(input, pref); |
| 4230 | 2781 | }; |
| @@ -4237,10 +2788,8 @@ | ||
| 4237 | 2788 | !*** ../node_modules/core-js/internals/to-property-key.js ***! |
| 4238 | 2789 | \************************************************************/ |
| 4239 | 2790 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4240 | 2791 | |
| 4241 | -"use strict"; | |
| 4242 | - | |
| 4243 | 2792 | var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "../node_modules/core-js/internals/to-primitive.js"); |
| 4244 | 2793 | var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../node_modules/core-js/internals/is-symbol.js"); |
| 4245 | 2794 | |
| 4246 | 2795 | // `ToPropertyKey` abstract operation |
| @@ -4258,10 +2807,8 @@ | ||
| 4258 | 2807 | !*** ../node_modules/core-js/internals/to-string-tag-support.js ***! |
| 4259 | 2808 | \******************************************************************/ |
| 4260 | 2809 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4261 | 2810 | |
| 4262 | -"use strict"; | |
| 4263 | - | |
| 4264 | 2811 | var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js"); |
| 4265 | 2812 | |
| 4266 | 2813 | var TO_STRING_TAG = wellKnownSymbol('toStringTag'); |
| 4267 | 2814 | var test = {}; |
| @@ -4272,8 +2819,26 @@ | ||
| 4272 | 2819 | |
| 4273 | 2820 | |
| 4274 | 2821 | /***/ }), |
| 4275 | 2822 | |
| 2823 | +/***/ "../node_modules/core-js/internals/to-string.js": | |
| 2824 | +/*!******************************************************!*\ | |
| 2825 | + !*** ../node_modules/core-js/internals/to-string.js ***! | |
| 2826 | + \******************************************************/ | |
| 2827 | +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 2828 | + | |
| 2829 | +var classof = __webpack_require__(/*! ../internals/classof */ "../node_modules/core-js/internals/classof.js"); | |
| 2830 | + | |
| 2831 | +var $String = String; | |
| 2832 | + | |
| 2833 | +module.exports = function (argument) { | |
| 2834 | + if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string'); | |
| 2835 | + return $String(argument); | |
| 2836 | +}; | |
| 2837 | + | |
| 2838 | + | |
| 2839 | +/***/ }), | |
| 2840 | + | |
| 4276 | 2841 | /***/ "../node_modules/core-js/internals/try-to-string.js": |
| 4277 | 2842 | /*!**********************************************************!*\ |
| 4278 | 2843 | !*** ../node_modules/core-js/internals/try-to-string.js ***! |
| 4279 | 2844 | \**********************************************************/ |
| @@ -4278,10 +2843,8 @@ | ||
| 4278 | 2843 | !*** ../node_modules/core-js/internals/try-to-string.js ***! |
| 4279 | 2844 | \**********************************************************/ |
| 4280 | 2845 | /***/ ((module) => { |
| 4281 | 2846 | |
| 4282 | -"use strict"; | |
| 4283 | - | |
| 4284 | 2847 | var $String = String; |
| 4285 | 2848 | |
| 4286 | 2849 | module.exports = function (argument) { |
| 4287 | 2850 | try { |
| @@ -4299,15 +2862,13 @@ | ||
| 4299 | 2862 | !*** ../node_modules/core-js/internals/uid.js ***! |
| 4300 | 2863 | \************************************************/ |
| 4301 | 2864 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4302 | 2865 | |
| 4303 | -"use strict"; | |
| 4304 | - | |
| 4305 | 2866 | var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../node_modules/core-js/internals/function-uncurry-this.js"); |
| 4306 | 2867 | |
| 4307 | 2868 | var id = 0; |
| 4308 | 2869 | var postfix = Math.random(); |
| 4309 | -var toString = uncurryThis(1.1.toString); | |
| 2870 | +var toString = uncurryThis(1.0.toString); | |
| 4310 | 2871 | |
| 4311 | 2872 | module.exports = function (key) { |
| 4312 | 2873 | return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36); |
| 4313 | 2874 | }; |
| @@ -4320,16 +2881,14 @@ | ||
| 4320 | 2881 | !*** ../node_modules/core-js/internals/use-symbol-as-uid.js ***! |
| 4321 | 2882 | \**************************************************************/ |
| 4322 | 2883 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4323 | 2884 | |
| 4324 | -"use strict"; | |
| 4325 | - | |
| 4326 | 2885 | /* eslint-disable es/no-symbol -- required for testing */ |
| 4327 | 2886 | var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js"); |
| 4328 | 2887 | |
| 4329 | -module.exports = NATIVE_SYMBOL && | |
| 4330 | - !Symbol.sham && | |
| 4331 | - typeof Symbol.iterator == 'symbol'; | |
| 2888 | +module.exports = NATIVE_SYMBOL | |
| 2889 | + && !Symbol.sham | |
| 2890 | + && typeof Symbol.iterator == 'symbol'; | |
| 4332 | 2891 | |
| 4333 | 2892 | |
| 4334 | 2893 | /***/ }), |
| 4335 | 2894 | |
| @@ -4338,10 +2897,8 @@ | ||
| 4338 | 2897 | !*** ../node_modules/core-js/internals/v8-prototype-define-bug.js ***! |
| 4339 | 2898 | \********************************************************************/ |
| 4340 | 2899 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4341 | 2900 | |
| 4342 | -"use strict"; | |
| 4343 | - | |
| 4344 | 2901 | var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js"); |
| 4345 | 2902 | var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js"); |
| 4346 | 2903 | |
| 4347 | 2904 | // V8 ~ Chrome 36- |
| @@ -4350,9 +2907,9 @@ | ||
| 4350 | 2907 | // eslint-disable-next-line es/no-object-defineproperty -- required for testing |
| 4351 | 2908 | return Object.defineProperty(function () { /* empty */ }, 'prototype', { |
| 4352 | 2909 | value: 42, |
| 4353 | 2910 | writable: false |
| 4354 | - }).prototype !== 42; | |
| 2911 | + }).prototype != 42; | |
| 4355 | 2912 | }); |
| 4356 | 2913 | |
| 4357 | 2914 | |
| 4358 | 2915 | /***/ }), |
| @@ -4362,14 +2919,12 @@ | ||
| 4362 | 2919 | !*** ../node_modules/core-js/internals/weak-map-basic-detection.js ***! |
| 4363 | 2920 | \*********************************************************************/ |
| 4364 | 2921 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4365 | 2922 | |
| 4366 | -"use strict"; | |
| 4367 | - | |
| 4368 | -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js"); | |
| 2923 | +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js"); | |
| 4369 | 2924 | var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); |
| 4370 | 2925 | |
| 4371 | -var WeakMap = globalThis.WeakMap; | |
| 2926 | +var WeakMap = global.WeakMap; | |
| 4372 | 2927 | |
| 4373 | 2928 | module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap)); |
| 4374 | 2929 | |
| 4375 | 2930 | |
| @@ -4380,11 +2935,9 @@ | ||
| 4380 | 2935 | !*** ../node_modules/core-js/internals/well-known-symbol.js ***! |
| 4381 | 2936 | \**************************************************************/ |
| 4382 | 2937 | /***/ ((module, __unused_webpack_exports, __webpack_require__) => { |
| 4383 | 2938 | |
| 4384 | -"use strict"; | |
| 4385 | - | |
| 4386 | -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js"); | |
| 2939 | +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js"); | |
| 4387 | 2940 | var shared = __webpack_require__(/*! ../internals/shared */ "../node_modules/core-js/internals/shared.js"); |
| 4388 | 2941 | var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js"); |
| 4389 | 2942 | var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js"); |
| 4390 | 2943 | var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js"); |
| @@ -4389,17 +2942,23 @@ | ||
| 4389 | 2942 | var uid = __webpack_require__(/*! ../internals/uid */ "../node_modules/core-js/internals/uid.js"); |
| 4390 | 2943 | var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ "../node_modules/core-js/internals/symbol-constructor-detection.js"); |
| 4391 | 2944 | var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../node_modules/core-js/internals/use-symbol-as-uid.js"); |
| 4392 | 2945 | |
| 4393 | -var Symbol = globalThis.Symbol; | |
| 4394 | 2946 | var WellKnownSymbolsStore = shared('wks'); |
| 4395 | -var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid; | |
| 2947 | +var Symbol = global.Symbol; | |
| 2948 | +var symbolFor = Symbol && Symbol['for']; | |
| 2949 | +var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid; | |
| 4396 | 2950 | |
| 4397 | 2951 | module.exports = function (name) { |
| 4398 | - if (!hasOwn(WellKnownSymbolsStore, name)) { | |
| 4399 | - WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name) | |
| 4400 | - ? Symbol[name] | |
| 4401 | - : createWellKnownSymbol('Symbol.' + name); | |
| 2952 | + if (!hasOwn(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) { | |
| 2953 | + var description = 'Symbol.' + name; | |
| 2954 | + if (NATIVE_SYMBOL && hasOwn(Symbol, name)) { | |
| 2955 | + WellKnownSymbolsStore[name] = Symbol[name]; | |
| 2956 | + } else if (USE_SYMBOL_AS_UID && symbolFor) { | |
| 2957 | + WellKnownSymbolsStore[name] = symbolFor(description); | |
| 2958 | + } else { | |
| 2959 | + WellKnownSymbolsStore[name] = createWellKnownSymbol(description); | |
| 2960 | + } | |
| 4402 | 2961 | } return WellKnownSymbolsStore[name]; |
| 4403 | 2962 | }; |
| 4404 | 2963 | |
| 4405 | 2964 | |
| @@ -4404,407 +2963,163 @@ | ||
| 4404 | 2963 | |
| 4405 | 2964 | |
| 4406 | 2965 | /***/ }), |
| 4407 | 2966 | |
| 4408 | -/***/ "../node_modules/core-js/modules/es.array.push.js": | |
| 4409 | -/*!********************************************************!*\ | |
| 4410 | - !*** ../node_modules/core-js/modules/es.array.push.js ***! | |
| 4411 | - \********************************************************/ | |
| 4412 | -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => { | |
| 2967 | +/***/ "../node_modules/core-js/internals/wrap-error-constructor-with-cause.js": | |
| 2968 | +/*!******************************************************************************!*\ | |
| 2969 | + !*** ../node_modules/core-js/internals/wrap-error-constructor-with-cause.js ***! | |
| 2970 | + \******************************************************************************/ | |
| 2971 | +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { | |
| 4413 | 2972 | |
| 4414 | 2973 | "use strict"; |
| 4415 | 2974 | |
| 4416 | -var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js"); | |
| 4417 | -var toObject = __webpack_require__(/*! ../internals/to-object */ "../node_modules/core-js/internals/to-object.js"); | |
| 4418 | -var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../node_modules/core-js/internals/length-of-array-like.js"); | |
| 4419 | -var setArrayLength = __webpack_require__(/*! ../internals/array-set-length */ "../node_modules/core-js/internals/array-set-length.js"); | |
| 4420 | -var doesNotExceedSafeInteger = __webpack_require__(/*! ../internals/does-not-exceed-safe-integer */ "../node_modules/core-js/internals/does-not-exceed-safe-integer.js"); | |
| 4421 | -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js"); | |
| 4422 | - | |
| 4423 | -var INCORRECT_TO_LENGTH = fails(function () { | |
| 4424 | - return [].push.call({ length: 0x100000000 }, 1) !== 4294967297; | |
| 4425 | -}); | |
| 4426 | - | |
| 4427 | -// V8 <= 121 and Safari <= 15.4; FF < 23 throws InternalError | |
| 4428 | -// https://bugs.chromium.org/p/v8/issues/detail?id=12681 | |
| 4429 | -var properErrorOnNonWritableLength = function () { | |
| 4430 | - try { | |
| 4431 | - // eslint-disable-next-line es/no-object-defineproperty -- safe | |
| 4432 | - Object.defineProperty([], 'length', { writable: false }).push(); | |
| 4433 | - } catch (error) { | |
| 4434 | - return error instanceof TypeError; | |
| 4435 | - } | |
| 4436 | -}; | |
| 4437 | - | |
| 4438 | -var FORCED = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength(); | |
| 4439 | - | |
| 4440 | -// `Array.prototype.push` method | |
| 4441 | -// https://tc39.es/ecma262/#sec-array.prototype.push | |
| 4442 | -$({ target: 'Array', proto: true, arity: 1, forced: FORCED }, { | |
| 4443 | - // eslint-disable-next-line no-unused-vars -- required for `.length` | |
| 4444 | - push: function push(item) { | |
| 4445 | - var O = toObject(this); | |
| 4446 | - var len = lengthOfArrayLike(O); | |
| 4447 | - var argCount = arguments.length; | |
| 4448 | - doesNotExceedSafeInteger(len + argCount); | |
| 4449 | - for (var i = 0; i < argCount; i++) { | |
| 4450 | - O[len] = arguments[i]; | |
| 4451 | - len++; | |
| 4452 | - } | |
| 4453 | - setArrayLength(O, len); | |
| 4454 | - return len; | |
| 4455 | - } | |
| 4456 | -}); | |
| 4457 | - | |
| 4458 | - | |
| 4459 | -/***/ }), | |
| 4460 | - | |
| 4461 | -/***/ "../node_modules/core-js/modules/es.iterator.constructor.js": | |
| 4462 | -/*!******************************************************************!*\ | |
| 4463 | - !*** ../node_modules/core-js/modules/es.iterator.constructor.js ***! | |
| 4464 | - \******************************************************************/ | |
| 4465 | -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => { | |
| 4466 | - | |
| 4467 | -"use strict"; | |
| 4468 | - | |
| 4469 | -var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js"); | |
| 4470 | -var globalThis = __webpack_require__(/*! ../internals/global-this */ "../node_modules/core-js/internals/global-this.js"); | |
| 4471 | -var anInstance = __webpack_require__(/*! ../internals/an-instance */ "../node_modules/core-js/internals/an-instance.js"); | |
| 4472 | -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js"); | |
| 4473 | -var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../node_modules/core-js/internals/is-callable.js"); | |
| 4474 | -var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "../node_modules/core-js/internals/object-get-prototype-of.js"); | |
| 4475 | -var defineBuiltInAccessor = __webpack_require__(/*! ../internals/define-built-in-accessor */ "../node_modules/core-js/internals/define-built-in-accessor.js"); | |
| 4476 | -var createProperty = __webpack_require__(/*! ../internals/create-property */ "../node_modules/core-js/internals/create-property.js"); | |
| 4477 | -var fails = __webpack_require__(/*! ../internals/fails */ "../node_modules/core-js/internals/fails.js"); | |
| 2975 | +var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../node_modules/core-js/internals/get-built-in.js"); | |
| 4478 | 2976 | var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../node_modules/core-js/internals/has-own-property.js"); |
| 4479 | -var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../node_modules/core-js/internals/well-known-symbol.js"); | |
| 4480 | -var IteratorPrototype = (__webpack_require__(/*! ../internals/iterators-core */ "../node_modules/core-js/internals/iterators-core.js").IteratorPrototype); | |
| 2977 | +var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../node_modules/core-js/internals/create-non-enumerable-property.js"); | |
| 2978 | +var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../node_modules/core-js/internals/object-is-prototype-of.js"); | |
| 2979 | +var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "../node_modules/core-js/internals/object-set-prototype-of.js"); | |
| 2980 | +var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "../node_modules/core-js/internals/copy-constructor-properties.js"); | |
| 2981 | +var proxyAccessor = __webpack_require__(/*! ../internals/proxy-accessor */ "../node_modules/core-js/internals/proxy-accessor.js"); | |
| 2982 | +var inheritIfRequired = __webpack_require__(/*! ../internals/inherit-if-required */ "../node_modules/core-js/internals/inherit-if-required.js"); | |
| 2983 | +var normalizeStringArgument = __webpack_require__(/*! ../internals/normalize-string-argument */ "../node_modules/core-js/internals/normalize-string-argument.js"); | |
| 2984 | +var installErrorCause = __webpack_require__(/*! ../internals/install-error-cause */ "../node_modules/core-js/internals/install-error-cause.js"); | |
| 2985 | +var clearErrorStack = __webpack_require__(/*! ../internals/error-stack-clear */ "../node_modules/core-js/internals/error-stack-clear.js"); | |
| 2986 | +var ERROR_STACK_INSTALLABLE = __webpack_require__(/*! ../internals/error-stack-installable */ "../node_modules/core-js/internals/error-stack-installable.js"); | |
| 4481 | 2987 | var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../node_modules/core-js/internals/descriptors.js"); |
| 4482 | 2988 | var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js"); |
| 4483 | 2989 | |
| 4484 | -var CONSTRUCTOR = 'constructor'; | |
| 4485 | -var ITERATOR = 'Iterator'; | |
| 4486 | -var TO_STRING_TAG = wellKnownSymbol('toStringTag'); | |
| 2990 | +module.exports = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) { | |
| 2991 | + var STACK_TRACE_LIMIT = 'stackTraceLimit'; | |
| 2992 | + var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1; | |
| 2993 | + var path = FULL_NAME.split('.'); | |
| 2994 | + var ERROR_NAME = path[path.length - 1]; | |
| 2995 | + var OriginalError = getBuiltIn.apply(null, path); | |
| 4487 | 2996 | |
| 4488 | -var $TypeError = TypeError; | |
| 4489 | -var NativeIterator = globalThis[ITERATOR]; | |
| 2997 | + if (!OriginalError) return; | |
| 4490 | 2998 | |
| 4491 | -// FF56- have non-standard global helper `Iterator` | |
| 4492 | -var FORCED = IS_PURE | |
| 4493 | - || !isCallable(NativeIterator) | |
| 4494 | - || NativeIterator.prototype !== IteratorPrototype | |
| 4495 | - // FF44- non-standard `Iterator` passes previous tests | |
| 4496 | - || !fails(function () { NativeIterator({}); }); | |
| 2999 | + var OriginalErrorPrototype = OriginalError.prototype; | |
| 4497 | 3000 | |
| 4498 | -var IteratorConstructor = function Iterator() { | |
| 4499 | - anInstance(this, IteratorPrototype); | |
| 4500 | - if (getPrototypeOf(this) === IteratorPrototype) throw new $TypeError('Abstract class Iterator not directly constructable'); | |
| 4501 | -}; | |
| 3001 | + // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006 | |
| 3002 | + if (!IS_PURE && hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause; | |
| 4502 | 3003 | |
| 4503 | -var defineIteratorPrototypeAccessor = function (key, value) { | |
| 4504 | - if (DESCRIPTORS) { | |
| 4505 | - defineBuiltInAccessor(IteratorPrototype, key, { | |
| 4506 | - configurable: true, | |
| 4507 | - get: function () { | |
| 4508 | - return value; | |
| 4509 | - }, | |
| 4510 | - set: function (replacement) { | |
| 4511 | - anObject(this); | |
| 4512 | - if (this === IteratorPrototype) throw new $TypeError("You can't redefine this property"); | |
| 4513 | - if (hasOwn(this, key)) this[key] = replacement; | |
| 4514 | - else createProperty(this, key, replacement); | |
| 4515 | - } | |
| 4516 | - }); | |
| 4517 | - } else IteratorPrototype[key] = value; | |
| 4518 | -}; | |
| 3004 | + if (!FORCED) return OriginalError; | |
| 4519 | 3005 | |
| 4520 | -if (!hasOwn(IteratorPrototype, TO_STRING_TAG)) defineIteratorPrototypeAccessor(TO_STRING_TAG, ITERATOR); | |
| 3006 | + var BaseError = getBuiltIn('Error'); | |
| 4521 | 3007 | |
| 4522 | -if (FORCED || !hasOwn(IteratorPrototype, CONSTRUCTOR) || IteratorPrototype[CONSTRUCTOR] === Object) { | |
| 4523 | - defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor); | |
| 4524 | -} | |
| 3008 | + var WrappedError = wrapper(function (a, b) { | |
| 3009 | + var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined); | |
| 3010 | + var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError(); | |
| 3011 | + if (message !== undefined) createNonEnumerableProperty(result, 'message', message); | |
| 3012 | + if (ERROR_STACK_INSTALLABLE) createNonEnumerableProperty(result, 'stack', clearErrorStack(result.stack, 2)); | |
| 3013 | + if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError); | |
| 3014 | + if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]); | |
| 3015 | + return result; | |
| 3016 | + }); | |
| 4525 | 3017 | |
| 4526 | -IteratorConstructor.prototype = IteratorPrototype; | |
| 3018 | + WrappedError.prototype = OriginalErrorPrototype; | |
| 4527 | 3019 | |
| 4528 | -// `Iterator` constructor | |
| 4529 | -// https://tc39.es/ecma262/#sec-iterator | |
| 4530 | -$({ global: true, constructor: true, forced: FORCED }, { | |
| 4531 | - Iterator: IteratorConstructor | |
| 4532 | -}); | |
| 3020 | + if (ERROR_NAME !== 'Error') { | |
| 3021 | + if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError); | |
| 3022 | + else copyConstructorProperties(WrappedError, BaseError, { name: true }); | |
| 3023 | + } else if (DESCRIPTORS && STACK_TRACE_LIMIT in OriginalError) { | |
| 3024 | + proxyAccessor(WrappedError, OriginalError, STACK_TRACE_LIMIT); | |
| 3025 | + proxyAccessor(WrappedError, OriginalError, 'prepareStackTrace'); | |
| 3026 | + } | |
| 4533 | 3027 | |
| 3028 | + copyConstructorProperties(WrappedError, OriginalError); | |
| 4534 | 3029 | |
| 4535 | -/***/ }), | |
| 4536 | - | |
| 4537 | -/***/ "../node_modules/core-js/modules/es.iterator.filter.js": | |
| 4538 | -/*!*************************************************************!*\ | |
| 4539 | - !*** ../node_modules/core-js/modules/es.iterator.filter.js ***! | |
| 4540 | - \*************************************************************/ | |
| 4541 | -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => { | |
| 4542 | - | |
| 4543 | -"use strict"; | |
| 4544 | - | |
| 4545 | -var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js"); | |
| 4546 | -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js"); | |
| 4547 | -var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js"); | |
| 4548 | -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js"); | |
| 4549 | -var getIteratorDirect = __webpack_require__(/*! ../internals/get-iterator-direct */ "../node_modules/core-js/internals/get-iterator-direct.js"); | |
| 4550 | -var createIteratorProxy = __webpack_require__(/*! ../internals/iterator-create-proxy */ "../node_modules/core-js/internals/iterator-create-proxy.js"); | |
| 4551 | -var callWithSafeIterationClosing = __webpack_require__(/*! ../internals/call-with-safe-iteration-closing */ "../node_modules/core-js/internals/call-with-safe-iteration-closing.js"); | |
| 4552 | -var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js"); | |
| 4553 | -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js"); | |
| 4554 | -var iteratorHelperThrowsOnInvalidIterator = __webpack_require__(/*! ../internals/iterator-helper-throws-on-invalid-iterator */ "../node_modules/core-js/internals/iterator-helper-throws-on-invalid-iterator.js"); | |
| 4555 | -var iteratorHelperWithoutClosingOnEarlyError = __webpack_require__(/*! ../internals/iterator-helper-without-closing-on-early-error */ "../node_modules/core-js/internals/iterator-helper-without-closing-on-early-error.js"); | |
| 4556 | - | |
| 4557 | -var FILTER_WITHOUT_THROWING_ON_INVALID_ITERATOR = !IS_PURE && !iteratorHelperThrowsOnInvalidIterator('filter', function () { /* empty */ }); | |
| 4558 | -var filterWithoutClosingOnEarlyError = !IS_PURE && !FILTER_WITHOUT_THROWING_ON_INVALID_ITERATOR | |
| 4559 | - && iteratorHelperWithoutClosingOnEarlyError('filter', TypeError); | |
| 4560 | - | |
| 4561 | -var FORCED = IS_PURE || FILTER_WITHOUT_THROWING_ON_INVALID_ITERATOR || filterWithoutClosingOnEarlyError; | |
| 4562 | - | |
| 4563 | -var IteratorProxy = createIteratorProxy(function () { | |
| 4564 | - var iterator = this.iterator; | |
| 4565 | - var predicate = this.predicate; | |
| 4566 | - var next = this.next; | |
| 4567 | - var result, done, value; | |
| 4568 | - while (true) { | |
| 4569 | - result = anObject(call(next, iterator)); | |
| 4570 | - done = this.done = !!result.done; | |
| 4571 | - if (done) return; | |
| 4572 | - value = result.value; | |
| 4573 | - if (callWithSafeIterationClosing(iterator, predicate, [value, this.counter++], true)) return value; | |
| 4574 | - } | |
| 4575 | -}); | |
| 4576 | - | |
| 4577 | -// `Iterator.prototype.filter` method | |
| 4578 | -// https://tc39.es/ecma262/#sec-iterator.prototype.filter | |
| 4579 | -$({ target: 'Iterator', proto: true, real: true, forced: FORCED }, { | |
| 4580 | - filter: function filter(predicate) { | |
| 4581 | - anObject(this); | |
| 4582 | - try { | |
| 4583 | - aCallable(predicate); | |
| 4584 | - } catch (error) { | |
| 4585 | - iteratorClose(this, 'throw', error); | |
| 3030 | + if (!IS_PURE) try { | |
| 3031 | + // Safari 13- bug: WebAssembly errors does not have a proper `.name` | |
| 3032 | + if (OriginalErrorPrototype.name !== ERROR_NAME) { | |
| 3033 | + createNonEnumerableProperty(OriginalErrorPrototype, 'name', ERROR_NAME); | |
| 4586 | 3034 | } |
| 3035 | + OriginalErrorPrototype.constructor = WrappedError; | |
| 3036 | + } catch (error) { /* empty */ } | |
| 4587 | 3037 | |
| 4588 | - if (filterWithoutClosingOnEarlyError) return call(filterWithoutClosingOnEarlyError, this, predicate); | |
| 3038 | + return WrappedError; | |
| 3039 | +}; | |
| 4589 | 3040 | |
| 4590 | - return new IteratorProxy(getIteratorDirect(this), { | |
| 4591 | - predicate: predicate | |
| 4592 | - }); | |
| 4593 | - } | |
| 4594 | -}); | |
| 4595 | 3041 | |
| 4596 | - | |
| 4597 | 3042 | /***/ }), |
| 4598 | 3043 | |
| 4599 | -/***/ "../node_modules/core-js/modules/es.iterator.find.js": | |
| 4600 | -/*!***********************************************************!*\ | |
| 4601 | - !*** ../node_modules/core-js/modules/es.iterator.find.js ***! | |
| 4602 | - \***********************************************************/ | |
| 3044 | +/***/ "../node_modules/core-js/modules/es.error.cause.js": | |
| 3045 | +/*!*********************************************************!*\ | |
| 3046 | + !*** ../node_modules/core-js/modules/es.error.cause.js ***! | |
| 3047 | + \*********************************************************/ | |
| 4603 | 3048 | /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => { |
| 4604 | 3049 | |
| 4605 | -"use strict"; | |
| 4606 | - | |
| 3050 | +/* eslint-disable no-unused-vars -- required for functions `.length` */ | |
| 4607 | 3051 | var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js"); |
| 4608 | -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js"); | |
| 4609 | -var iterate = __webpack_require__(/*! ../internals/iterate */ "../node_modules/core-js/internals/iterate.js"); | |
| 4610 | -var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js"); | |
| 4611 | -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js"); | |
| 4612 | -var getIteratorDirect = __webpack_require__(/*! ../internals/get-iterator-direct */ "../node_modules/core-js/internals/get-iterator-direct.js"); | |
| 4613 | -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js"); | |
| 4614 | -var iteratorHelperWithoutClosingOnEarlyError = __webpack_require__(/*! ../internals/iterator-helper-without-closing-on-early-error */ "../node_modules/core-js/internals/iterator-helper-without-closing-on-early-error.js"); | |
| 3052 | +var global = __webpack_require__(/*! ../internals/global */ "../node_modules/core-js/internals/global.js"); | |
| 3053 | +var apply = __webpack_require__(/*! ../internals/function-apply */ "../node_modules/core-js/internals/function-apply.js"); | |
| 3054 | +var wrapErrorConstructorWithCause = __webpack_require__(/*! ../internals/wrap-error-constructor-with-cause */ "../node_modules/core-js/internals/wrap-error-constructor-with-cause.js"); | |
| 4615 | 3055 | |
| 4616 | -var findWithoutClosingOnEarlyError = iteratorHelperWithoutClosingOnEarlyError('find', TypeError); | |
| 3056 | +var WEB_ASSEMBLY = 'WebAssembly'; | |
| 3057 | +var WebAssembly = global[WEB_ASSEMBLY]; | |
| 4617 | 3058 | |
| 4618 | -// `Iterator.prototype.find` method | |
| 4619 | -// https://tc39.es/ecma262/#sec-iterator.prototype.find | |
| 4620 | -$({ target: 'Iterator', proto: true, real: true, forced: findWithoutClosingOnEarlyError }, { | |
| 4621 | - find: function find(predicate) { | |
| 4622 | - anObject(this); | |
| 4623 | - try { | |
| 4624 | - aCallable(predicate); | |
| 4625 | - } catch (error) { | |
| 4626 | - iteratorClose(this, 'throw', error); | |
| 4627 | - } | |
| 3059 | +var FORCED = Error('e', { cause: 7 }).cause !== 7; | |
| 4628 | 3060 | |
| 4629 | - if (findWithoutClosingOnEarlyError) return call(findWithoutClosingOnEarlyError, this, predicate); | |
| 3061 | +var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) { | |
| 3062 | + var O = {}; | |
| 3063 | + O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED); | |
| 3064 | + $({ global: true, constructor: true, arity: 1, forced: FORCED }, O); | |
| 3065 | +}; | |
| 4630 | 3066 | |
| 4631 | - var record = getIteratorDirect(this); | |
| 4632 | - var counter = 0; | |
| 4633 | - return iterate(record, function (value, stop) { | |
| 4634 | - if (predicate(value, counter++)) return stop(value); | |
| 4635 | - }, { IS_RECORD: true, INTERRUPTED: true }).result; | |
| 3067 | +var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) { | |
| 3068 | + if (WebAssembly && WebAssembly[ERROR_NAME]) { | |
| 3069 | + var O = {}; | |
| 3070 | + O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED); | |
| 3071 | + $({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O); | |
| 4636 | 3072 | } |
| 3073 | +}; | |
| 3074 | + | |
| 3075 | +// https://github.com/tc39/proposal-error-cause | |
| 3076 | +exportGlobalErrorCauseWrapper('Error', function (init) { | |
| 3077 | + return function Error(message) { return apply(init, this, arguments); }; | |
| 4637 | 3078 | }); |
| 4638 | - | |
| 4639 | - | |
| 4640 | -/***/ }), | |
| 4641 | - | |
| 4642 | -/***/ "../node_modules/core-js/modules/es.iterator.for-each.js": | |
| 4643 | -/*!***************************************************************!*\ | |
| 4644 | - !*** ../node_modules/core-js/modules/es.iterator.for-each.js ***! | |
| 4645 | - \***************************************************************/ | |
| 4646 | -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => { | |
| 4647 | - | |
| 4648 | -"use strict"; | |
| 4649 | - | |
| 4650 | -var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js"); | |
| 4651 | -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js"); | |
| 4652 | -var iterate = __webpack_require__(/*! ../internals/iterate */ "../node_modules/core-js/internals/iterate.js"); | |
| 4653 | -var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js"); | |
| 4654 | -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js"); | |
| 4655 | -var getIteratorDirect = __webpack_require__(/*! ../internals/get-iterator-direct */ "../node_modules/core-js/internals/get-iterator-direct.js"); | |
| 4656 | -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js"); | |
| 4657 | -var iteratorHelperWithoutClosingOnEarlyError = __webpack_require__(/*! ../internals/iterator-helper-without-closing-on-early-error */ "../node_modules/core-js/internals/iterator-helper-without-closing-on-early-error.js"); | |
| 4658 | - | |
| 4659 | -var forEachWithoutClosingOnEarlyError = iteratorHelperWithoutClosingOnEarlyError('forEach', TypeError); | |
| 4660 | - | |
| 4661 | -// `Iterator.prototype.forEach` method | |
| 4662 | -// https://tc39.es/ecma262/#sec-iterator.prototype.foreach | |
| 4663 | -$({ target: 'Iterator', proto: true, real: true, forced: forEachWithoutClosingOnEarlyError }, { | |
| 4664 | - forEach: function forEach(fn) { | |
| 4665 | - anObject(this); | |
| 4666 | - try { | |
| 4667 | - aCallable(fn); | |
| 4668 | - } catch (error) { | |
| 4669 | - iteratorClose(this, 'throw', error); | |
| 4670 | - } | |
| 4671 | - | |
| 4672 | - if (forEachWithoutClosingOnEarlyError) return call(forEachWithoutClosingOnEarlyError, this, fn); | |
| 4673 | - | |
| 4674 | - var record = getIteratorDirect(this); | |
| 4675 | - var counter = 0; | |
| 4676 | - iterate(record, function (value) { | |
| 4677 | - fn(value, counter++); | |
| 4678 | - }, { IS_RECORD: true }); | |
| 4679 | - } | |
| 3079 | +exportGlobalErrorCauseWrapper('EvalError', function (init) { | |
| 3080 | + return function EvalError(message) { return apply(init, this, arguments); }; | |
| 4680 | 3081 | }); |
| 4681 | - | |
| 4682 | - | |
| 4683 | -/***/ }), | |
| 4684 | - | |
| 4685 | -/***/ "../node_modules/core-js/modules/es.iterator.map.js": | |
| 4686 | -/*!**********************************************************!*\ | |
| 4687 | - !*** ../node_modules/core-js/modules/es.iterator.map.js ***! | |
| 4688 | - \**********************************************************/ | |
| 4689 | -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => { | |
| 4690 | - | |
| 4691 | -"use strict"; | |
| 4692 | - | |
| 4693 | -var $ = __webpack_require__(/*! ../internals/export */ "../node_modules/core-js/internals/export.js"); | |
| 4694 | -var call = __webpack_require__(/*! ../internals/function-call */ "../node_modules/core-js/internals/function-call.js"); | |
| 4695 | -var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../node_modules/core-js/internals/a-callable.js"); | |
| 4696 | -var anObject = __webpack_require__(/*! ../internals/an-object */ "../node_modules/core-js/internals/an-object.js"); | |
| 4697 | -var getIteratorDirect = __webpack_require__(/*! ../internals/get-iterator-direct */ "../node_modules/core-js/internals/get-iterator-direct.js"); | |
| 4698 | -var createIteratorProxy = __webpack_require__(/*! ../internals/iterator-create-proxy */ "../node_modules/core-js/internals/iterator-create-proxy.js"); | |
| 4699 | -var callWithSafeIterationClosing = __webpack_require__(/*! ../internals/call-with-safe-iteration-closing */ "../node_modules/core-js/internals/call-with-safe-iteration-closing.js"); | |
| 4700 | -var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../node_modules/core-js/internals/iterator-close.js"); | |
| 4701 | -var iteratorHelperThrowsOnInvalidIterator = __webpack_require__(/*! ../internals/iterator-helper-throws-on-invalid-iterator */ "../node_modules/core-js/internals/iterator-helper-throws-on-invalid-iterator.js"); | |
| 4702 | -var iteratorHelperWithoutClosingOnEarlyError = __webpack_require__(/*! ../internals/iterator-helper-without-closing-on-early-error */ "../node_modules/core-js/internals/iterator-helper-without-closing-on-early-error.js"); | |
| 4703 | -var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../node_modules/core-js/internals/is-pure.js"); | |
| 4704 | - | |
| 4705 | -var MAP_WITHOUT_THROWING_ON_INVALID_ITERATOR = !IS_PURE && !iteratorHelperThrowsOnInvalidIterator('map', function () { /* empty */ }); | |
| 4706 | -var mapWithoutClosingOnEarlyError = !IS_PURE && !MAP_WITHOUT_THROWING_ON_INVALID_ITERATOR | |
| 4707 | - && iteratorHelperWithoutClosingOnEarlyError('map', TypeError); | |
| 4708 | - | |
| 4709 | -var FORCED = IS_PURE || MAP_WITHOUT_THROWING_ON_INVALID_ITERATOR || mapWithoutClosingOnEarlyError; | |
| 4710 | - | |
| 4711 | -var IteratorProxy = createIteratorProxy(function () { | |
| 4712 | - var iterator = this.iterator; | |
| 4713 | - var result = anObject(call(this.next, iterator)); | |
| 4714 | - var done = this.done = !!result.done; | |
| 4715 | - if (!done) return callWithSafeIterationClosing(iterator, this.mapper, [result.value, this.counter++], true); | |
| 3082 | +exportGlobalErrorCauseWrapper('RangeError', function (init) { | |
| 3083 | + return function RangeError(message) { return apply(init, this, arguments); }; | |
| 4716 | 3084 | }); |
| 4717 | - | |
| 4718 | -// `Iterator.prototype.map` method | |
| 4719 | -// https://tc39.es/ecma262/#sec-iterator.prototype.map | |
| 4720 | -$({ target: 'Iterator', proto: true, real: true, forced: FORCED }, { | |
| 4721 | - map: function map(mapper) { | |
| 4722 | - anObject(this); | |
| 4723 | - try { | |
| 4724 | - aCallable(mapper); | |
| 4725 | - } catch (error) { | |
| 4726 | - iteratorClose(this, 'throw', error); | |
| 4727 | - } | |
| 4728 | - | |
| 4729 | - if (mapWithoutClosingOnEarlyError) return call(mapWithoutClosingOnEarlyError, this, mapper); | |
| 4730 | - | |
| 4731 | - return new IteratorProxy(getIteratorDirect(this), { | |
| 4732 | - mapper: mapper | |
| 4733 | - }); | |
| 4734 | - } | |
| 3085 | +exportGlobalErrorCauseWrapper('ReferenceError', function (init) { | |
| 3086 | + return function ReferenceError(message) { return apply(init, this, arguments); }; | |
| 4735 | 3087 | }); |
| 3088 | +exportGlobalErrorCauseWrapper('SyntaxError', function (init) { | |
| 3089 | + return function SyntaxError(message) { return apply(init, this, arguments); }; | |
| 3090 | +}); | |
| 3091 | +exportGlobalErrorCauseWrapper('TypeError', function (init) { | |
| 3092 | + return function TypeError(message) { return apply(init, this, arguments); }; | |
| 3093 | +}); | |
| 3094 | +exportGlobalErrorCauseWrapper('URIError', function (init) { | |
| 3095 | + return function URIError(message) { return apply(init, this, arguments); }; | |
| 3096 | +}); | |
| 3097 | +exportWebAssemblyErrorCauseWrapper('CompileError', function (init) { | |
| 3098 | + return function CompileError(message) { return apply(init, this, arguments); }; | |
| 3099 | +}); | |
| 3100 | +exportWebAssemblyErrorCauseWrapper('LinkError', function (init) { | |
| 3101 | + return function LinkError(message) { return apply(init, this, arguments); }; | |
| 3102 | +}); | |
| 3103 | +exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) { | |
| 3104 | + return function RuntimeError(message) { return apply(init, this, arguments); }; | |
| 3105 | +}); | |
| 4736 | 3106 | |
| 4737 | 3107 | |
| 4738 | 3108 | /***/ }), |
| 4739 | 3109 | |
| 4740 | -/***/ "../node_modules/core-js/modules/esnext.iterator.constructor.js": | |
| 4741 | -/*!**********************************************************************!*\ | |
| 4742 | - !*** ../node_modules/core-js/modules/esnext.iterator.constructor.js ***! | |
| 4743 | - \**********************************************************************/ | |
| 4744 | -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => { | |
| 3110 | +/***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js": | |
| 3111 | +/*!***********************************************************************!*\ | |
| 3112 | + !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***! | |
| 3113 | + \***********************************************************************/ | |
| 3114 | +/***/ ((module) => { | |
| 4745 | 3115 | |
| 4746 | -"use strict"; | |
| 4747 | - | |
| 4748 | -// TODO: Remove from `core-js@4` | |
| 4749 | -__webpack_require__(/*! ../modules/es.iterator.constructor */ "../node_modules/core-js/modules/es.iterator.constructor.js"); | |
| 4750 | - | |
| 4751 | - | |
| 4752 | -/***/ }), | |
| 4753 | - | |
| 4754 | -/***/ "../node_modules/core-js/modules/esnext.iterator.filter.js": | |
| 4755 | -/*!*****************************************************************!*\ | |
| 4756 | - !*** ../node_modules/core-js/modules/esnext.iterator.filter.js ***! | |
| 4757 | - \*****************************************************************/ | |
| 4758 | -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => { | |
| 4759 | - | |
| 4760 | -"use strict"; | |
| 4761 | - | |
| 4762 | -// TODO: Remove from `core-js@4` | |
| 4763 | -__webpack_require__(/*! ../modules/es.iterator.filter */ "../node_modules/core-js/modules/es.iterator.filter.js"); | |
| 4764 | - | |
| 4765 | - | |
| 4766 | -/***/ }), | |
| 4767 | - | |
| 4768 | -/***/ "../node_modules/core-js/modules/esnext.iterator.find.js": | |
| 4769 | -/*!***************************************************************!*\ | |
| 4770 | - !*** ../node_modules/core-js/modules/esnext.iterator.find.js ***! | |
| 4771 | - \***************************************************************/ | |
| 4772 | -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => { | |
| 4773 | - | |
| 4774 | -"use strict"; | |
| 4775 | - | |
| 4776 | -// TODO: Remove from `core-js@4` | |
| 4777 | -__webpack_require__(/*! ../modules/es.iterator.find */ "../node_modules/core-js/modules/es.iterator.find.js"); | |
| 4778 | - | |
| 4779 | - | |
| 4780 | -/***/ }), | |
| 4781 | - | |
| 4782 | -/***/ "../node_modules/core-js/modules/esnext.iterator.for-each.js": | |
| 4783 | -/*!*******************************************************************!*\ | |
| 4784 | - !*** ../node_modules/core-js/modules/esnext.iterator.for-each.js ***! | |
| 4785 | - \*******************************************************************/ | |
| 4786 | -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => { | |
| 4787 | - | |
| 4788 | -"use strict"; | |
| 4789 | - | |
| 4790 | -// TODO: Remove from `core-js@4` | |
| 4791 | -__webpack_require__(/*! ../modules/es.iterator.for-each */ "../node_modules/core-js/modules/es.iterator.for-each.js"); | |
| 4792 | - | |
| 4793 | - | |
| 4794 | -/***/ }), | |
| 4795 | - | |
| 4796 | -/***/ "../node_modules/core-js/modules/esnext.iterator.map.js": | |
| 4797 | -/*!**************************************************************!*\ | |
| 4798 | - !*** ../node_modules/core-js/modules/esnext.iterator.map.js ***! | |
| 4799 | - \**************************************************************/ | |
| 4800 | -/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => { | |
| 4801 | - | |
| 4802 | -"use strict"; | |
| 4803 | - | |
| 4804 | -// TODO: Remove from `core-js@4` | |
| 4805 | -__webpack_require__(/*! ../modules/es.iterator.map */ "../node_modules/core-js/modules/es.iterator.map.js"); | |
| 4806 | - | |
| 3116 | +function _interopRequireDefault(obj) { | |
| 3117 | + return obj && obj.__esModule ? obj : { | |
| 3118 | + "default": obj | |
| 3119 | + }; | |
| 3120 | +} | |
| 3121 | +module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports; | |
| 4807 | 3122 | |
| 4808 | 3123 | /***/ }) |
| 4809 | 3124 | |
| 4810 | 3125 | }, |