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