@itwin/core-i18n 4.9.0-dev.2 → 4.9.0-dev.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8262,7 +8262,7 @@ module.exports = function compareByInspect(a, b) {
8262
8262
 
8263
8263
  var AssertionError = __webpack_require__(/*! assertion-error */ "../../common/temp/node_modules/.pnpm/assertion-error@1.1.0/node_modules/assertion-error/index.js");
8264
8264
  var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.10/node_modules/chai/lib/chai/utils/flag.js");
8265
- var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js");
8265
+ var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.1.0/node_modules/type-detect/type-detect.js");
8266
8266
 
8267
8267
  module.exports = function expectTypes(obj, types) {
8268
8268
  var flagMsg = flag(obj, 'message');
@@ -8434,7 +8434,7 @@ module.exports = function getMessage(obj, args) {
8434
8434
  \********************************************************************************************************/
8435
8435
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
8436
8436
 
8437
- var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js");
8437
+ var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.1.0/node_modules/type-detect/type-detect.js");
8438
8438
 
8439
8439
  var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.10/node_modules/chai/lib/chai/utils/flag.js");
8440
8440
 
@@ -8643,7 +8643,7 @@ exports.test = __webpack_require__(/*! ./test */ "../../common/temp/node_modules
8643
8643
  * type utility
8644
8644
  */
8645
8645
 
8646
- exports.type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js");
8646
+ exports.type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.1.0/node_modules/type-detect/type-detect.js");
8647
8647
 
8648
8648
  /*!
8649
8649
  * expectTypes utility
@@ -8690,7 +8690,7 @@ exports.transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common
8690
8690
  * Deep equal utility
8691
8691
  */
8692
8692
 
8693
- exports.eql = __webpack_require__(/*! deep-eql */ "../../common/temp/node_modules/.pnpm/deep-eql@4.1.3/node_modules/deep-eql/index.js");
8693
+ exports.eql = __webpack_require__(/*! deep-eql */ "../../common/temp/node_modules/.pnpm/deep-eql@4.1.4/node_modules/deep-eql/index.js");
8694
8694
 
8695
8695
  /*!
8696
8696
  * Deep path info
@@ -10232,9 +10232,9 @@ module.exports = exports
10232
10232
 
10233
10233
  /***/ }),
10234
10234
 
10235
- /***/ "../../common/temp/node_modules/.pnpm/deep-eql@4.1.3/node_modules/deep-eql/index.js":
10235
+ /***/ "../../common/temp/node_modules/.pnpm/deep-eql@4.1.4/node_modules/deep-eql/index.js":
10236
10236
  /*!******************************************************************************************!*\
10237
- !*** ../../common/temp/node_modules/.pnpm/deep-eql@4.1.3/node_modules/deep-eql/index.js ***!
10237
+ !*** ../../common/temp/node_modules/.pnpm/deep-eql@4.1.4/node_modules/deep-eql/index.js ***!
10238
10238
  \******************************************************************************************/
10239
10239
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
10240
10240
 
@@ -10247,7 +10247,7 @@ module.exports = exports
10247
10247
  * MIT Licensed
10248
10248
  */
10249
10249
 
10250
- var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js");
10250
+ var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.1.0/node_modules/type-detect/type-detect.js");
10251
10251
  function FakeMap() {
10252
10252
  this._key = 'chai/deep-eql__' + Math.random() + Date.now();
10253
10253
  }
@@ -10515,13 +10515,18 @@ function regexpEqual(leftHandOperand, rightHandOperand) {
10515
10515
  */
10516
10516
 
10517
10517
  function entriesEqual(leftHandOperand, rightHandOperand, options) {
10518
- // IE11 doesn't support Set#entries or Set#@@iterator, so we need manually populate using Set#forEach
10519
- if (leftHandOperand.size !== rightHandOperand.size) {
10518
+ try {
10519
+ // IE11 doesn't support Set#entries or Set#@@iterator, so we need manually populate using Set#forEach
10520
+ if (leftHandOperand.size !== rightHandOperand.size) {
10521
+ return false;
10522
+ }
10523
+ if (leftHandOperand.size === 0) {
10524
+ return true;
10525
+ }
10526
+ } catch (sizeError) {
10527
+ // things that aren't actual Maps or Sets will throw here
10520
10528
  return false;
10521
10529
  }
10522
- if (leftHandOperand.size === 0) {
10523
- return true;
10524
- }
10525
10530
  var leftHandItems = [];
10526
10531
  var rightHandItems = [];
10527
10532
  leftHandOperand.forEach(function gatherEntries(key, value) {
@@ -10810,8 +10815,8 @@ __webpack_require__.r(__webpack_exports__);
10810
10815
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
10811
10816
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
10812
10817
  /* harmony export */ });
10813
- /* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
10814
- /* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/createClass.js");
10818
+ /* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
10819
+ /* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/createClass.js");
10815
10820
 
10816
10821
 
10817
10822
 
@@ -11239,15 +11244,15 @@ Browser.type = 'languageDetector';
11239
11244
  "use strict";
11240
11245
 
11241
11246
 
11242
- var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/typeof.js");
11243
- var _classCallCheck = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/classCallCheck.js");
11244
- var _createClass = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/createClass.js");
11245
- var _assertThisInitialized = __webpack_require__(/*! @babel/runtime/helpers/assertThisInitialized */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/assertThisInitialized.js");
11246
- var _inherits = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/inherits.js");
11247
- var _possibleConstructorReturn = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js");
11248
- var _getPrototypeOf = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/getPrototypeOf.js");
11249
- var _defineProperty = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/defineProperty.js");
11250
- var _toArray = __webpack_require__(/*! @babel/runtime/helpers/toArray */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toArray.js");
11247
+ var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/typeof.js");
11248
+ var _classCallCheck = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/classCallCheck.js");
11249
+ var _createClass = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/createClass.js");
11250
+ var _assertThisInitialized = __webpack_require__(/*! @babel/runtime/helpers/assertThisInitialized */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/assertThisInitialized.js");
11251
+ var _inherits = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/inherits.js");
11252
+ var _possibleConstructorReturn = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js");
11253
+ var _getPrototypeOf = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/getPrototypeOf.js");
11254
+ var _defineProperty = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/defineProperty.js");
11255
+ var _toArray = __webpack_require__(/*! @babel/runtime/helpers/toArray */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/toArray.js");
11251
11256
 
11252
11257
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
11253
11258
 
@@ -15257,399 +15262,150 @@ module.exports = {
15257
15262
 
15258
15263
  /***/ }),
15259
15264
 
15260
- /***/ "../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js":
15265
+ /***/ "../../common/temp/node_modules/.pnpm/type-detect@4.1.0/node_modules/type-detect/type-detect.js":
15261
15266
  /*!******************************************************************************************************!*\
15262
- !*** ../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js ***!
15267
+ !*** ../../common/temp/node_modules/.pnpm/type-detect@4.1.0/node_modules/type-detect/type-detect.js ***!
15263
15268
  \******************************************************************************************************/
15264
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15269
+ /***/ (function(module) {
15265
15270
 
15266
15271
  (function (global, factory) {
15267
- true ? module.exports = factory() :
15268
- 0;
15269
- }(this, (function () { 'use strict';
15270
-
15271
- /* !
15272
- * type-detect
15273
- * Copyright(c) 2013 jake luer <jake@alogicalparadox.com>
15274
- * MIT Licensed
15275
- */
15276
- var promiseExists = typeof Promise === 'function';
15277
-
15278
- /* eslint-disable no-undef */
15279
- var globalObject = typeof self === 'object' ? self : __webpack_require__.g; // eslint-disable-line id-blacklist
15280
-
15281
- var symbolExists = typeof Symbol !== 'undefined';
15282
- var mapExists = typeof Map !== 'undefined';
15283
- var setExists = typeof Set !== 'undefined';
15284
- var weakMapExists = typeof WeakMap !== 'undefined';
15285
- var weakSetExists = typeof WeakSet !== 'undefined';
15286
- var dataViewExists = typeof DataView !== 'undefined';
15287
- var symbolIteratorExists = symbolExists && typeof Symbol.iterator !== 'undefined';
15288
- var symbolToStringTagExists = symbolExists && typeof Symbol.toStringTag !== 'undefined';
15289
- var setEntriesExists = setExists && typeof Set.prototype.entries === 'function';
15290
- var mapEntriesExists = mapExists && typeof Map.prototype.entries === 'function';
15291
- var setIteratorPrototype = setEntriesExists && Object.getPrototypeOf(new Set().entries());
15292
- var mapIteratorPrototype = mapEntriesExists && Object.getPrototypeOf(new Map().entries());
15293
- var arrayIteratorExists = symbolIteratorExists && typeof Array.prototype[Symbol.iterator] === 'function';
15294
- var arrayIteratorPrototype = arrayIteratorExists && Object.getPrototypeOf([][Symbol.iterator]());
15295
- var stringIteratorExists = symbolIteratorExists && typeof String.prototype[Symbol.iterator] === 'function';
15296
- var stringIteratorPrototype = stringIteratorExists && Object.getPrototypeOf(''[Symbol.iterator]());
15297
- var toStringLeftSliceLength = 8;
15298
- var toStringRightSliceLength = -1;
15299
- /**
15300
- * ### typeOf (obj)
15301
- *
15302
- * Uses `Object.prototype.toString` to determine the type of an object,
15303
- * normalising behaviour across engine versions & well optimised.
15304
- *
15305
- * @param {Mixed} object
15306
- * @return {String} object type
15307
- * @api public
15308
- */
15309
- function typeDetect(obj) {
15310
- /* ! Speed optimisation
15311
- * Pre:
15312
- * string literal x 3,039,035 ops/sec ±1.62% (78 runs sampled)
15313
- * boolean literal x 1,424,138 ops/sec ±4.54% (75 runs sampled)
15314
- * number literal x 1,653,153 ops/sec ±1.91% (82 runs sampled)
15315
- * undefined x 9,978,660 ops/sec ±1.92% (75 runs sampled)
15316
- * function x 2,556,769 ops/sec ±1.73% (77 runs sampled)
15317
- * Post:
15318
- * string literal x 38,564,796 ops/sec ±1.15% (79 runs sampled)
15319
- * boolean literal x 31,148,940 ops/sec ±1.10% (79 runs sampled)
15320
- * number literal x 32,679,330 ops/sec ±1.90% (78 runs sampled)
15321
- * undefined x 32,363,368 ops/sec ±1.07% (82 runs sampled)
15322
- * function x 31,296,870 ops/sec ±0.96% (83 runs sampled)
15323
- */
15324
- var typeofObj = typeof obj;
15325
- if (typeofObj !== 'object') {
15326
- return typeofObj;
15327
- }
15328
-
15329
- /* ! Speed optimisation
15330
- * Pre:
15331
- * null x 28,645,765 ops/sec ±1.17% (82 runs sampled)
15332
- * Post:
15333
- * null x 36,428,962 ops/sec ±1.37% (84 runs sampled)
15334
- */
15335
- if (obj === null) {
15336
- return 'null';
15337
- }
15338
-
15339
- /* ! Spec Conformance
15340
- * Test: `Object.prototype.toString.call(window)``
15341
- * - Node === "[object global]"
15342
- * - Chrome === "[object global]"
15343
- * - Firefox === "[object Window]"
15344
- * - PhantomJS === "[object Window]"
15345
- * - Safari === "[object Window]"
15346
- * - IE 11 === "[object Window]"
15347
- * - IE Edge === "[object Window]"
15348
- * Test: `Object.prototype.toString.call(this)``
15349
- * - Chrome Worker === "[object global]"
15350
- * - Firefox Worker === "[object DedicatedWorkerGlobalScope]"
15351
- * - Safari Worker === "[object DedicatedWorkerGlobalScope]"
15352
- * - IE 11 Worker === "[object WorkerGlobalScope]"
15353
- * - IE Edge Worker === "[object WorkerGlobalScope]"
15354
- */
15355
- if (obj === globalObject) {
15356
- return 'global';
15357
- }
15358
-
15359
- /* ! Speed optimisation
15360
- * Pre:
15361
- * array literal x 2,888,352 ops/sec ±0.67% (82 runs sampled)
15362
- * Post:
15363
- * array literal x 22,479,650 ops/sec ±0.96% (81 runs sampled)
15364
- */
15365
- if (
15366
- Array.isArray(obj) &&
15367
- (symbolToStringTagExists === false || !(Symbol.toStringTag in obj))
15368
- ) {
15369
- return 'Array';
15370
- }
15371
-
15372
- // Not caching existence of `window` and related properties due to potential
15373
- // for `window` to be unset before tests in quasi-browser environments.
15374
- if (typeof window === 'object' && window !== null) {
15375
- /* ! Spec Conformance
15376
- * (https://html.spec.whatwg.org/multipage/browsers.html#location)
15377
- * WhatWG HTML$7.7.3 - The `Location` interface
15378
- * Test: `Object.prototype.toString.call(window.location)``
15379
- * - IE <=11 === "[object Object]"
15380
- * - IE Edge <=13 === "[object Object]"
15381
- */
15382
- if (typeof window.location === 'object' && obj === window.location) {
15383
- return 'Location';
15384
- }
15385
-
15386
- /* ! Spec Conformance
15387
- * (https://html.spec.whatwg.org/#document)
15388
- * WhatWG HTML$3.1.1 - The `Document` object
15389
- * Note: Most browsers currently adher to the W3C DOM Level 2 spec
15390
- * (https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-26809268)
15391
- * which suggests that browsers should use HTMLTableCellElement for
15392
- * both TD and TH elements. WhatWG separates these.
15393
- * WhatWG HTML states:
15394
- * > For historical reasons, Window objects must also have a
15395
- * > writable, configurable, non-enumerable property named
15396
- * > HTMLDocument whose value is the Document interface object.
15397
- * Test: `Object.prototype.toString.call(document)``
15398
- * - Chrome === "[object HTMLDocument]"
15399
- * - Firefox === "[object HTMLDocument]"
15400
- * - Safari === "[object HTMLDocument]"
15401
- * - IE <=10 === "[object Document]"
15402
- * - IE 11 === "[object HTMLDocument]"
15403
- * - IE Edge <=13 === "[object HTMLDocument]"
15404
- */
15405
- if (typeof window.document === 'object' && obj === window.document) {
15406
- return 'Document';
15407
- }
15408
-
15409
- if (typeof window.navigator === 'object') {
15410
- /* ! Spec Conformance
15411
- * (https://html.spec.whatwg.org/multipage/webappapis.html#mimetypearray)
15412
- * WhatWG HTML$8.6.1.5 - Plugins - Interface MimeTypeArray
15413
- * Test: `Object.prototype.toString.call(navigator.mimeTypes)``
15414
- * - IE <=10 === "[object MSMimeTypesCollection]"
15415
- */
15416
- if (typeof window.navigator.mimeTypes === 'object' &&
15417
- obj === window.navigator.mimeTypes) {
15418
- return 'MimeTypeArray';
15419
- }
15420
-
15421
- /* ! Spec Conformance
15422
- * (https://html.spec.whatwg.org/multipage/webappapis.html#pluginarray)
15423
- * WhatWG HTML$8.6.1.5 - Plugins - Interface PluginArray
15424
- * Test: `Object.prototype.toString.call(navigator.plugins)``
15425
- * - IE <=10 === "[object MSPluginsCollection]"
15426
- */
15427
- if (typeof window.navigator.plugins === 'object' &&
15428
- obj === window.navigator.plugins) {
15429
- return 'PluginArray';
15430
- }
15431
- }
15432
-
15433
- if ((typeof window.HTMLElement === 'function' ||
15434
- typeof window.HTMLElement === 'object') &&
15435
- obj instanceof window.HTMLElement) {
15436
- /* ! Spec Conformance
15437
- * (https://html.spec.whatwg.org/multipage/webappapis.html#pluginarray)
15438
- * WhatWG HTML$4.4.4 - The `blockquote` element - Interface `HTMLQuoteElement`
15439
- * Test: `Object.prototype.toString.call(document.createElement('blockquote'))``
15440
- * - IE <=10 === "[object HTMLBlockElement]"
15441
- */
15442
- if (obj.tagName === 'BLOCKQUOTE') {
15443
- return 'HTMLQuoteElement';
15444
- }
15445
-
15446
- /* ! Spec Conformance
15447
- * (https://html.spec.whatwg.org/#htmltabledatacellelement)
15448
- * WhatWG HTML$4.9.9 - The `td` element - Interface `HTMLTableDataCellElement`
15449
- * Note: Most browsers currently adher to the W3C DOM Level 2 spec
15450
- * (https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-82915075)
15451
- * which suggests that browsers should use HTMLTableCellElement for
15452
- * both TD and TH elements. WhatWG separates these.
15453
- * Test: Object.prototype.toString.call(document.createElement('td'))
15454
- * - Chrome === "[object HTMLTableCellElement]"
15455
- * - Firefox === "[object HTMLTableCellElement]"
15456
- * - Safari === "[object HTMLTableCellElement]"
15457
- */
15458
- if (obj.tagName === 'TD') {
15459
- return 'HTMLTableDataCellElement';
15460
- }
15461
-
15462
- /* ! Spec Conformance
15463
- * (https://html.spec.whatwg.org/#htmltableheadercellelement)
15464
- * WhatWG HTML$4.9.9 - The `td` element - Interface `HTMLTableHeaderCellElement`
15465
- * Note: Most browsers currently adher to the W3C DOM Level 2 spec
15466
- * (https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-82915075)
15467
- * which suggests that browsers should use HTMLTableCellElement for
15468
- * both TD and TH elements. WhatWG separates these.
15469
- * Test: Object.prototype.toString.call(document.createElement('th'))
15470
- * - Chrome === "[object HTMLTableCellElement]"
15471
- * - Firefox === "[object HTMLTableCellElement]"
15472
- * - Safari === "[object HTMLTableCellElement]"
15473
- */
15474
- if (obj.tagName === 'TH') {
15475
- return 'HTMLTableHeaderCellElement';
15476
- }
15272
+ true ? module.exports = factory() :
15273
+ 0;
15274
+ })(this, (function () { 'use strict';
15275
+
15276
+ var promiseExists = typeof Promise === 'function';
15277
+ var globalObject = (function (Obj) {
15278
+ if (typeof globalThis === 'object') {
15279
+ return globalThis;
15280
+ }
15281
+ Object.defineProperty(Obj, 'typeDetectGlobalObject', {
15282
+ get: function get() {
15283
+ return this;
15284
+ },
15285
+ configurable: true,
15286
+ });
15287
+ var global = typeDetectGlobalObject;
15288
+ delete Obj.typeDetectGlobalObject;
15289
+ return global;
15290
+ })(Object.prototype);
15291
+ var symbolExists = typeof Symbol !== 'undefined';
15292
+ var mapExists = typeof Map !== 'undefined';
15293
+ var setExists = typeof Set !== 'undefined';
15294
+ var weakMapExists = typeof WeakMap !== 'undefined';
15295
+ var weakSetExists = typeof WeakSet !== 'undefined';
15296
+ var dataViewExists = typeof DataView !== 'undefined';
15297
+ var symbolIteratorExists = symbolExists && typeof Symbol.iterator !== 'undefined';
15298
+ var symbolToStringTagExists = symbolExists && typeof Symbol.toStringTag !== 'undefined';
15299
+ var setEntriesExists = setExists && typeof Set.prototype.entries === 'function';
15300
+ var mapEntriesExists = mapExists && typeof Map.prototype.entries === 'function';
15301
+ var setIteratorPrototype = setEntriesExists && Object.getPrototypeOf(new Set().entries());
15302
+ var mapIteratorPrototype = mapEntriesExists && Object.getPrototypeOf(new Map().entries());
15303
+ var arrayIteratorExists = symbolIteratorExists && typeof Array.prototype[Symbol.iterator] === 'function';
15304
+ var arrayIteratorPrototype = arrayIteratorExists && Object.getPrototypeOf([][Symbol.iterator]());
15305
+ var stringIteratorExists = symbolIteratorExists && typeof String.prototype[Symbol.iterator] === 'function';
15306
+ var stringIteratorPrototype = stringIteratorExists && Object.getPrototypeOf(''[Symbol.iterator]());
15307
+ var toStringLeftSliceLength = 8;
15308
+ var toStringRightSliceLength = -1;
15309
+ function typeDetect(obj) {
15310
+ var typeofObj = typeof obj;
15311
+ if (typeofObj !== 'object') {
15312
+ return typeofObj;
15313
+ }
15314
+ if (obj === null) {
15315
+ return 'null';
15316
+ }
15317
+ if (obj === globalObject) {
15318
+ return 'global';
15319
+ }
15320
+ if (Array.isArray(obj) &&
15321
+ (symbolToStringTagExists === false || !(Symbol.toStringTag in obj))) {
15322
+ return 'Array';
15323
+ }
15324
+ if (typeof window === 'object' && window !== null) {
15325
+ if (typeof window.location === 'object' && obj === window.location) {
15326
+ return 'Location';
15327
+ }
15328
+ if (typeof window.document === 'object' && obj === window.document) {
15329
+ return 'Document';
15330
+ }
15331
+ if (typeof window.navigator === 'object') {
15332
+ if (typeof window.navigator.mimeTypes === 'object' &&
15333
+ obj === window.navigator.mimeTypes) {
15334
+ return 'MimeTypeArray';
15335
+ }
15336
+ if (typeof window.navigator.plugins === 'object' &&
15337
+ obj === window.navigator.plugins) {
15338
+ return 'PluginArray';
15339
+ }
15340
+ }
15341
+ if ((typeof window.HTMLElement === 'function' ||
15342
+ typeof window.HTMLElement === 'object') &&
15343
+ obj instanceof window.HTMLElement) {
15344
+ if (obj.tagName === 'BLOCKQUOTE') {
15345
+ return 'HTMLQuoteElement';
15346
+ }
15347
+ if (obj.tagName === 'TD') {
15348
+ return 'HTMLTableDataCellElement';
15349
+ }
15350
+ if (obj.tagName === 'TH') {
15351
+ return 'HTMLTableHeaderCellElement';
15352
+ }
15353
+ }
15354
+ }
15355
+ var stringTag = (symbolToStringTagExists && obj[Symbol.toStringTag]);
15356
+ if (typeof stringTag === 'string') {
15357
+ return stringTag;
15358
+ }
15359
+ var objPrototype = Object.getPrototypeOf(obj);
15360
+ if (objPrototype === RegExp.prototype) {
15361
+ return 'RegExp';
15362
+ }
15363
+ if (objPrototype === Date.prototype) {
15364
+ return 'Date';
15365
+ }
15366
+ if (promiseExists && objPrototype === Promise.prototype) {
15367
+ return 'Promise';
15368
+ }
15369
+ if (setExists && objPrototype === Set.prototype) {
15370
+ return 'Set';
15371
+ }
15372
+ if (mapExists && objPrototype === Map.prototype) {
15373
+ return 'Map';
15374
+ }
15375
+ if (weakSetExists && objPrototype === WeakSet.prototype) {
15376
+ return 'WeakSet';
15377
+ }
15378
+ if (weakMapExists && objPrototype === WeakMap.prototype) {
15379
+ return 'WeakMap';
15380
+ }
15381
+ if (dataViewExists && objPrototype === DataView.prototype) {
15382
+ return 'DataView';
15383
+ }
15384
+ if (mapExists && objPrototype === mapIteratorPrototype) {
15385
+ return 'Map Iterator';
15386
+ }
15387
+ if (setExists && objPrototype === setIteratorPrototype) {
15388
+ return 'Set Iterator';
15389
+ }
15390
+ if (arrayIteratorExists && objPrototype === arrayIteratorPrototype) {
15391
+ return 'Array Iterator';
15392
+ }
15393
+ if (stringIteratorExists && objPrototype === stringIteratorPrototype) {
15394
+ return 'String Iterator';
15395
+ }
15396
+ if (objPrototype === null) {
15397
+ return 'Object';
15398
+ }
15399
+ return Object
15400
+ .prototype
15401
+ .toString
15402
+ .call(obj)
15403
+ .slice(toStringLeftSliceLength, toStringRightSliceLength);
15477
15404
  }
15478
- }
15479
-
15480
- /* ! Speed optimisation
15481
- * Pre:
15482
- * Float64Array x 625,644 ops/sec ±1.58% (80 runs sampled)
15483
- * Float32Array x 1,279,852 ops/sec ±2.91% (77 runs sampled)
15484
- * Uint32Array x 1,178,185 ops/sec ±1.95% (83 runs sampled)
15485
- * Uint16Array x 1,008,380 ops/sec ±2.25% (80 runs sampled)
15486
- * Uint8Array x 1,128,040 ops/sec ±2.11% (81 runs sampled)
15487
- * Int32Array x 1,170,119 ops/sec ±2.88% (80 runs sampled)
15488
- * Int16Array x 1,176,348 ops/sec ±5.79% (86 runs sampled)
15489
- * Int8Array x 1,058,707 ops/sec ±4.94% (77 runs sampled)
15490
- * Uint8ClampedArray x 1,110,633 ops/sec ±4.20% (80 runs sampled)
15491
- * Post:
15492
- * Float64Array x 7,105,671 ops/sec ±13.47% (64 runs sampled)
15493
- * Float32Array x 5,887,912 ops/sec ±1.46% (82 runs sampled)
15494
- * Uint32Array x 6,491,661 ops/sec ±1.76% (79 runs sampled)
15495
- * Uint16Array x 6,559,795 ops/sec ±1.67% (82 runs sampled)
15496
- * Uint8Array x 6,463,966 ops/sec ±1.43% (85 runs sampled)
15497
- * Int32Array x 5,641,841 ops/sec ±3.49% (81 runs sampled)
15498
- * Int16Array x 6,583,511 ops/sec ±1.98% (80 runs sampled)
15499
- * Int8Array x 6,606,078 ops/sec ±1.74% (81 runs sampled)
15500
- * Uint8ClampedArray x 6,602,224 ops/sec ±1.77% (83 runs sampled)
15501
- */
15502
- var stringTag = (symbolToStringTagExists && obj[Symbol.toStringTag]);
15503
- if (typeof stringTag === 'string') {
15504
- return stringTag;
15505
- }
15506
15405
 
15507
- var objPrototype = Object.getPrototypeOf(obj);
15508
- /* ! Speed optimisation
15509
- * Pre:
15510
- * regex literal x 1,772,385 ops/sec ±1.85% (77 runs sampled)
15511
- * regex constructor x 2,143,634 ops/sec ±2.46% (78 runs sampled)
15512
- * Post:
15513
- * regex literal x 3,928,009 ops/sec ±0.65% (78 runs sampled)
15514
- * regex constructor x 3,931,108 ops/sec ±0.58% (84 runs sampled)
15515
- */
15516
- if (objPrototype === RegExp.prototype) {
15517
- return 'RegExp';
15518
- }
15519
-
15520
- /* ! Speed optimisation
15521
- * Pre:
15522
- * date x 2,130,074 ops/sec ±4.42% (68 runs sampled)
15523
- * Post:
15524
- * date x 3,953,779 ops/sec ±1.35% (77 runs sampled)
15525
- */
15526
- if (objPrototype === Date.prototype) {
15527
- return 'Date';
15528
- }
15529
-
15530
- /* ! Spec Conformance
15531
- * (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-promise.prototype-@@tostringtag)
15532
- * ES6$25.4.5.4 - Promise.prototype[@@toStringTag] should be "Promise":
15533
- * Test: `Object.prototype.toString.call(Promise.resolve())``
15534
- * - Chrome <=47 === "[object Object]"
15535
- * - Edge <=20 === "[object Object]"
15536
- * - Firefox 29-Latest === "[object Promise]"
15537
- * - Safari 7.1-Latest === "[object Promise]"
15538
- */
15539
- if (promiseExists && objPrototype === Promise.prototype) {
15540
- return 'Promise';
15541
- }
15542
-
15543
- /* ! Speed optimisation
15544
- * Pre:
15545
- * set x 2,222,186 ops/sec ±1.31% (82 runs sampled)
15546
- * Post:
15547
- * set x 4,545,879 ops/sec ±1.13% (83 runs sampled)
15548
- */
15549
- if (setExists && objPrototype === Set.prototype) {
15550
- return 'Set';
15551
- }
15406
+ return typeDetect;
15552
15407
 
15553
- /* ! Speed optimisation
15554
- * Pre:
15555
- * map x 2,396,842 ops/sec ±1.59% (81 runs sampled)
15556
- * Post:
15557
- * map x 4,183,945 ops/sec ±6.59% (82 runs sampled)
15558
- */
15559
- if (mapExists && objPrototype === Map.prototype) {
15560
- return 'Map';
15561
- }
15562
-
15563
- /* ! Speed optimisation
15564
- * Pre:
15565
- * weakset x 1,323,220 ops/sec ±2.17% (76 runs sampled)
15566
- * Post:
15567
- * weakset x 4,237,510 ops/sec ±2.01% (77 runs sampled)
15568
- */
15569
- if (weakSetExists && objPrototype === WeakSet.prototype) {
15570
- return 'WeakSet';
15571
- }
15572
-
15573
- /* ! Speed optimisation
15574
- * Pre:
15575
- * weakmap x 1,500,260 ops/sec ±2.02% (78 runs sampled)
15576
- * Post:
15577
- * weakmap x 3,881,384 ops/sec ±1.45% (82 runs sampled)
15578
- */
15579
- if (weakMapExists && objPrototype === WeakMap.prototype) {
15580
- return 'WeakMap';
15581
- }
15582
-
15583
- /* ! Spec Conformance
15584
- * (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-dataview.prototype-@@tostringtag)
15585
- * ES6$24.2.4.21 - DataView.prototype[@@toStringTag] should be "DataView":
15586
- * Test: `Object.prototype.toString.call(new DataView(new ArrayBuffer(1)))``
15587
- * - Edge <=13 === "[object Object]"
15588
- */
15589
- if (dataViewExists && objPrototype === DataView.prototype) {
15590
- return 'DataView';
15591
- }
15592
-
15593
- /* ! Spec Conformance
15594
- * (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-%mapiteratorprototype%-@@tostringtag)
15595
- * ES6$23.1.5.2.2 - %MapIteratorPrototype%[@@toStringTag] should be "Map Iterator":
15596
- * Test: `Object.prototype.toString.call(new Map().entries())``
15597
- * - Edge <=13 === "[object Object]"
15598
- */
15599
- if (mapExists && objPrototype === mapIteratorPrototype) {
15600
- return 'Map Iterator';
15601
- }
15602
-
15603
- /* ! Spec Conformance
15604
- * (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-%setiteratorprototype%-@@tostringtag)
15605
- * ES6$23.2.5.2.2 - %SetIteratorPrototype%[@@toStringTag] should be "Set Iterator":
15606
- * Test: `Object.prototype.toString.call(new Set().entries())``
15607
- * - Edge <=13 === "[object Object]"
15608
- */
15609
- if (setExists && objPrototype === setIteratorPrototype) {
15610
- return 'Set Iterator';
15611
- }
15612
-
15613
- /* ! Spec Conformance
15614
- * (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-%arrayiteratorprototype%-@@tostringtag)
15615
- * ES6$22.1.5.2.2 - %ArrayIteratorPrototype%[@@toStringTag] should be "Array Iterator":
15616
- * Test: `Object.prototype.toString.call([][Symbol.iterator]())``
15617
- * - Edge <=13 === "[object Object]"
15618
- */
15619
- if (arrayIteratorExists && objPrototype === arrayIteratorPrototype) {
15620
- return 'Array Iterator';
15621
- }
15622
-
15623
- /* ! Spec Conformance
15624
- * (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-%stringiteratorprototype%-@@tostringtag)
15625
- * ES6$21.1.5.2.2 - %StringIteratorPrototype%[@@toStringTag] should be "String Iterator":
15626
- * Test: `Object.prototype.toString.call(''[Symbol.iterator]())``
15627
- * - Edge <=13 === "[object Object]"
15628
- */
15629
- if (stringIteratorExists && objPrototype === stringIteratorPrototype) {
15630
- return 'String Iterator';
15631
- }
15632
-
15633
- /* ! Speed optimisation
15634
- * Pre:
15635
- * object from null x 2,424,320 ops/sec ±1.67% (76 runs sampled)
15636
- * Post:
15637
- * object from null x 5,838,000 ops/sec ±0.99% (84 runs sampled)
15638
- */
15639
- if (objPrototype === null) {
15640
- return 'Object';
15641
- }
15642
-
15643
- return Object
15644
- .prototype
15645
- .toString
15646
- .call(obj)
15647
- .slice(toStringLeftSliceLength, toStringRightSliceLength);
15648
- }
15649
-
15650
- return typeDetect;
15651
-
15652
- })));
15408
+ }));
15653
15409
 
15654
15410
 
15655
15411
  /***/ }),
@@ -22692,177 +22448,156 @@ TranslationLogger.type = "logger";
22692
22448
 
22693
22449
  /***/ }),
22694
22450
 
22695
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/arrayLikeToArray.js":
22451
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/arrayLikeToArray.js":
22696
22452
  /*!**************************************************************************************************************************!*\
22697
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/arrayLikeToArray.js ***!
22453
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/arrayLikeToArray.js ***!
22698
22454
  \**************************************************************************************************************************/
22699
22455
  /***/ ((module) => {
22700
22456
 
22701
- function _arrayLikeToArray(arr, len) {
22702
- if (len == null || len > arr.length) len = arr.length;
22703
- for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
22704
- return arr2;
22457
+ function _arrayLikeToArray(r, a) {
22458
+ (null == a || a > r.length) && (a = r.length);
22459
+ for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
22460
+ return n;
22705
22461
  }
22706
22462
  module.exports = _arrayLikeToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
22707
22463
 
22708
22464
  /***/ }),
22709
22465
 
22710
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/arrayWithHoles.js":
22466
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/arrayWithHoles.js":
22711
22467
  /*!************************************************************************************************************************!*\
22712
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/arrayWithHoles.js ***!
22468
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/arrayWithHoles.js ***!
22713
22469
  \************************************************************************************************************************/
22714
22470
  /***/ ((module) => {
22715
22471
 
22716
- function _arrayWithHoles(arr) {
22717
- if (Array.isArray(arr)) return arr;
22472
+ function _arrayWithHoles(r) {
22473
+ if (Array.isArray(r)) return r;
22718
22474
  }
22719
22475
  module.exports = _arrayWithHoles, module.exports.__esModule = true, module.exports["default"] = module.exports;
22720
22476
 
22721
22477
  /***/ }),
22722
22478
 
22723
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/assertThisInitialized.js":
22479
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/assertThisInitialized.js":
22724
22480
  /*!*******************************************************************************************************************************!*\
22725
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/assertThisInitialized.js ***!
22481
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/assertThisInitialized.js ***!
22726
22482
  \*******************************************************************************************************************************/
22727
22483
  /***/ ((module) => {
22728
22484
 
22729
- function _assertThisInitialized(self) {
22730
- if (self === void 0) {
22731
- throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
22732
- }
22733
- return self;
22485
+ function _assertThisInitialized(e) {
22486
+ if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
22487
+ return e;
22734
22488
  }
22735
22489
  module.exports = _assertThisInitialized, module.exports.__esModule = true, module.exports["default"] = module.exports;
22736
22490
 
22737
22491
  /***/ }),
22738
22492
 
22739
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/classCallCheck.js":
22493
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/classCallCheck.js":
22740
22494
  /*!************************************************************************************************************************!*\
22741
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/classCallCheck.js ***!
22495
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/classCallCheck.js ***!
22742
22496
  \************************************************************************************************************************/
22743
22497
  /***/ ((module) => {
22744
22498
 
22745
- function _classCallCheck(instance, Constructor) {
22746
- if (!(instance instanceof Constructor)) {
22747
- throw new TypeError("Cannot call a class as a function");
22748
- }
22499
+ function _classCallCheck(a, n) {
22500
+ if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
22749
22501
  }
22750
22502
  module.exports = _classCallCheck, module.exports.__esModule = true, module.exports["default"] = module.exports;
22751
22503
 
22752
22504
  /***/ }),
22753
22505
 
22754
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/createClass.js":
22506
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/createClass.js":
22755
22507
  /*!*********************************************************************************************************************!*\
22756
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/createClass.js ***!
22508
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/createClass.js ***!
22757
22509
  \*********************************************************************************************************************/
22758
22510
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22759
22511
 
22760
- var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPropertyKey.js");
22761
- function _defineProperties(target, props) {
22762
- for (var i = 0; i < props.length; i++) {
22763
- var descriptor = props[i];
22764
- descriptor.enumerable = descriptor.enumerable || false;
22765
- descriptor.configurable = true;
22766
- if ("value" in descriptor) descriptor.writable = true;
22767
- Object.defineProperty(target, toPropertyKey(descriptor.key), descriptor);
22512
+ var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/toPropertyKey.js");
22513
+ function _defineProperties(e, r) {
22514
+ for (var t = 0; t < r.length; t++) {
22515
+ var o = r[t];
22516
+ o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, toPropertyKey(o.key), o);
22768
22517
  }
22769
22518
  }
22770
- function _createClass(Constructor, protoProps, staticProps) {
22771
- if (protoProps) _defineProperties(Constructor.prototype, protoProps);
22772
- if (staticProps) _defineProperties(Constructor, staticProps);
22773
- Object.defineProperty(Constructor, "prototype", {
22774
- writable: false
22775
- });
22776
- return Constructor;
22519
+ function _createClass(e, r, t) {
22520
+ return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", {
22521
+ writable: !1
22522
+ }), e;
22777
22523
  }
22778
22524
  module.exports = _createClass, module.exports.__esModule = true, module.exports["default"] = module.exports;
22779
22525
 
22780
22526
  /***/ }),
22781
22527
 
22782
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/defineProperty.js":
22528
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/defineProperty.js":
22783
22529
  /*!************************************************************************************************************************!*\
22784
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/defineProperty.js ***!
22530
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/defineProperty.js ***!
22785
22531
  \************************************************************************************************************************/
22786
22532
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22787
22533
 
22788
- var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPropertyKey.js");
22789
- function _defineProperty(obj, key, value) {
22790
- key = toPropertyKey(key);
22791
- if (key in obj) {
22792
- Object.defineProperty(obj, key, {
22793
- value: value,
22794
- enumerable: true,
22795
- configurable: true,
22796
- writable: true
22797
- });
22798
- } else {
22799
- obj[key] = value;
22800
- }
22801
- return obj;
22534
+ var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/toPropertyKey.js");
22535
+ function _defineProperty(e, r, t) {
22536
+ return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
22537
+ value: t,
22538
+ enumerable: !0,
22539
+ configurable: !0,
22540
+ writable: !0
22541
+ }) : e[r] = t, e;
22802
22542
  }
22803
22543
  module.exports = _defineProperty, module.exports.__esModule = true, module.exports["default"] = module.exports;
22804
22544
 
22805
22545
  /***/ }),
22806
22546
 
22807
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/getPrototypeOf.js":
22547
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/getPrototypeOf.js":
22808
22548
  /*!************************************************************************************************************************!*\
22809
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/getPrototypeOf.js ***!
22549
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/getPrototypeOf.js ***!
22810
22550
  \************************************************************************************************************************/
22811
22551
  /***/ ((module) => {
22812
22552
 
22813
- function _getPrototypeOf(o) {
22814
- module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {
22815
- return o.__proto__ || Object.getPrototypeOf(o);
22816
- }, module.exports.__esModule = true, module.exports["default"] = module.exports;
22817
- return _getPrototypeOf(o);
22553
+ function _getPrototypeOf(t) {
22554
+ return (module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) {
22555
+ return t.__proto__ || Object.getPrototypeOf(t);
22556
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports), _getPrototypeOf(t);
22818
22557
  }
22819
22558
  module.exports = _getPrototypeOf, module.exports.__esModule = true, module.exports["default"] = module.exports;
22820
22559
 
22821
22560
  /***/ }),
22822
22561
 
22823
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/inherits.js":
22562
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/inherits.js":
22824
22563
  /*!******************************************************************************************************************!*\
22825
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/inherits.js ***!
22564
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/inherits.js ***!
22826
22565
  \******************************************************************************************************************/
22827
22566
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22828
22567
 
22829
- var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/setPrototypeOf.js");
22830
- function _inherits(subClass, superClass) {
22831
- if (typeof superClass !== "function" && superClass !== null) {
22832
- throw new TypeError("Super expression must either be null or a function");
22833
- }
22834
- subClass.prototype = Object.create(superClass && superClass.prototype, {
22568
+ var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/setPrototypeOf.js");
22569
+ function _inherits(t, e) {
22570
+ if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function");
22571
+ t.prototype = Object.create(e && e.prototype, {
22835
22572
  constructor: {
22836
- value: subClass,
22837
- writable: true,
22838
- configurable: true
22573
+ value: t,
22574
+ writable: !0,
22575
+ configurable: !0
22839
22576
  }
22840
- });
22841
- Object.defineProperty(subClass, "prototype", {
22842
- writable: false
22843
- });
22844
- if (superClass) setPrototypeOf(subClass, superClass);
22577
+ }), Object.defineProperty(t, "prototype", {
22578
+ writable: !1
22579
+ }), e && setPrototypeOf(t, e);
22845
22580
  }
22846
22581
  module.exports = _inherits, module.exports.__esModule = true, module.exports["default"] = module.exports;
22847
22582
 
22848
22583
  /***/ }),
22849
22584
 
22850
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/iterableToArray.js":
22585
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/iterableToArray.js":
22851
22586
  /*!*************************************************************************************************************************!*\
22852
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/iterableToArray.js ***!
22587
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/iterableToArray.js ***!
22853
22588
  \*************************************************************************************************************************/
22854
22589
  /***/ ((module) => {
22855
22590
 
22856
- function _iterableToArray(iter) {
22857
- if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
22591
+ function _iterableToArray(r) {
22592
+ if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r);
22858
22593
  }
22859
22594
  module.exports = _iterableToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
22860
22595
 
22861
22596
  /***/ }),
22862
22597
 
22863
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/nonIterableRest.js":
22598
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/nonIterableRest.js":
22864
22599
  /*!*************************************************************************************************************************!*\
22865
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/nonIterableRest.js ***!
22600
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/nonIterableRest.js ***!
22866
22601
  \*************************************************************************************************************************/
22867
22602
  /***/ ((module) => {
22868
22603
 
@@ -22873,67 +22608,62 @@ module.exports = _nonIterableRest, module.exports.__esModule = true, module.expo
22873
22608
 
22874
22609
  /***/ }),
22875
22610
 
22876
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js":
22611
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js":
22877
22612
  /*!***********************************************************************************************************************************!*\
22878
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js ***!
22613
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js ***!
22879
22614
  \***********************************************************************************************************************************/
22880
22615
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22881
22616
 
22882
- var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
22883
- var assertThisInitialized = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/assertThisInitialized.js");
22884
- function _possibleConstructorReturn(self, call) {
22885
- if (call && (_typeof(call) === "object" || typeof call === "function")) {
22886
- return call;
22887
- } else if (call !== void 0) {
22888
- throw new TypeError("Derived constructors may only return object or undefined");
22889
- }
22890
- return assertThisInitialized(self);
22617
+ var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
22618
+ var assertThisInitialized = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/assertThisInitialized.js");
22619
+ function _possibleConstructorReturn(t, e) {
22620
+ if (e && ("object" == _typeof(e) || "function" == typeof e)) return e;
22621
+ if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined");
22622
+ return assertThisInitialized(t);
22891
22623
  }
22892
22624
  module.exports = _possibleConstructorReturn, module.exports.__esModule = true, module.exports["default"] = module.exports;
22893
22625
 
22894
22626
  /***/ }),
22895
22627
 
22896
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/setPrototypeOf.js":
22628
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/setPrototypeOf.js":
22897
22629
  /*!************************************************************************************************************************!*\
22898
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/setPrototypeOf.js ***!
22630
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/setPrototypeOf.js ***!
22899
22631
  \************************************************************************************************************************/
22900
22632
  /***/ ((module) => {
22901
22633
 
22902
- function _setPrototypeOf(o, p) {
22903
- module.exports = _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
22904
- o.__proto__ = p;
22905
- return o;
22906
- }, module.exports.__esModule = true, module.exports["default"] = module.exports;
22907
- return _setPrototypeOf(o, p);
22634
+ function _setPrototypeOf(t, e) {
22635
+ return (module.exports = _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) {
22636
+ return t.__proto__ = e, t;
22637
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports), _setPrototypeOf(t, e);
22908
22638
  }
22909
22639
  module.exports = _setPrototypeOf, module.exports.__esModule = true, module.exports["default"] = module.exports;
22910
22640
 
22911
22641
  /***/ }),
22912
22642
 
22913
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toArray.js":
22643
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/toArray.js":
22914
22644
  /*!*****************************************************************************************************************!*\
22915
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toArray.js ***!
22645
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/toArray.js ***!
22916
22646
  \*****************************************************************************************************************/
22917
22647
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22918
22648
 
22919
- var arrayWithHoles = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/arrayWithHoles.js");
22920
- var iterableToArray = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/iterableToArray.js");
22921
- var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js");
22922
- var nonIterableRest = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/nonIterableRest.js");
22923
- function _toArray(arr) {
22924
- return arrayWithHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableRest();
22649
+ var arrayWithHoles = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/arrayWithHoles.js");
22650
+ var iterableToArray = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/iterableToArray.js");
22651
+ var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js");
22652
+ var nonIterableRest = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/nonIterableRest.js");
22653
+ function _toArray(r) {
22654
+ return arrayWithHoles(r) || iterableToArray(r) || unsupportedIterableToArray(r) || nonIterableRest();
22925
22655
  }
22926
22656
  module.exports = _toArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
22927
22657
 
22928
22658
  /***/ }),
22929
22659
 
22930
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPrimitive.js":
22660
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/toPrimitive.js":
22931
22661
  /*!*********************************************************************************************************************!*\
22932
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPrimitive.js ***!
22662
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/toPrimitive.js ***!
22933
22663
  \*********************************************************************************************************************/
22934
22664
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22935
22665
 
22936
- var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
22666
+ var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
22937
22667
  function toPrimitive(t, r) {
22938
22668
  if ("object" != _typeof(t) || !t) return t;
22939
22669
  var e = t[Symbol.toPrimitive];
@@ -22948,25 +22678,25 @@ module.exports = toPrimitive, module.exports.__esModule = true, module.exports["
22948
22678
 
22949
22679
  /***/ }),
22950
22680
 
22951
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPropertyKey.js":
22681
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/toPropertyKey.js":
22952
22682
  /*!***********************************************************************************************************************!*\
22953
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPropertyKey.js ***!
22683
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/toPropertyKey.js ***!
22954
22684
  \***********************************************************************************************************************/
22955
22685
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22956
22686
 
22957
- var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
22958
- var toPrimitive = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPrimitive.js");
22687
+ var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
22688
+ var toPrimitive = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/toPrimitive.js");
22959
22689
  function toPropertyKey(t) {
22960
22690
  var i = toPrimitive(t, "string");
22961
- return "symbol" == _typeof(i) ? i : String(i);
22691
+ return "symbol" == _typeof(i) ? i : i + "";
22962
22692
  }
22963
22693
  module.exports = toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports;
22964
22694
 
22965
22695
  /***/ }),
22966
22696
 
22967
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/typeof.js":
22697
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/typeof.js":
22968
22698
  /*!****************************************************************************************************************!*\
22969
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/typeof.js ***!
22699
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/typeof.js ***!
22970
22700
  \****************************************************************************************************************/
22971
22701
  /***/ ((module) => {
22972
22702
 
@@ -22983,20 +22713,19 @@ module.exports = _typeof, module.exports.__esModule = true, module.exports["defa
22983
22713
 
22984
22714
  /***/ }),
22985
22715
 
22986
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js":
22716
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js":
22987
22717
  /*!************************************************************************************************************************************!*\
22988
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js ***!
22718
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js ***!
22989
22719
  \************************************************************************************************************************************/
22990
22720
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
22991
22721
 
22992
- var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/arrayLikeToArray.js");
22993
- function _unsupportedIterableToArray(o, minLen) {
22994
- if (!o) return;
22995
- if (typeof o === "string") return arrayLikeToArray(o, minLen);
22996
- var n = Object.prototype.toString.call(o).slice(8, -1);
22997
- if (n === "Object" && o.constructor) n = o.constructor.name;
22998
- if (n === "Map" || n === "Set") return Array.from(o);
22999
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen);
22722
+ var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/arrayLikeToArray.js");
22723
+ function _unsupportedIterableToArray(r, a) {
22724
+ if (r) {
22725
+ if ("string" == typeof r) return arrayLikeToArray(r, a);
22726
+ var t = {}.toString.call(r).slice(8, -1);
22727
+ return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? arrayLikeToArray(r, a) : void 0;
22728
+ }
23000
22729
  }
23001
22730
  module.exports = _unsupportedIterableToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
23002
22731
 
@@ -23509,9 +23238,9 @@ function makePromise(maybePromise) {
23509
23238
 
23510
23239
  /***/ }),
23511
23240
 
23512
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
23241
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
23513
23242
  /*!****************************************************************************************************************************!*\
23514
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
23243
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
23515
23244
  \****************************************************************************************************************************/
23516
23245
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
23517
23246
 
@@ -23520,17 +23249,16 @@ __webpack_require__.r(__webpack_exports__);
23520
23249
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23521
23250
  /* harmony export */ "default": () => (/* binding */ _classCallCheck)
23522
23251
  /* harmony export */ });
23523
- function _classCallCheck(instance, Constructor) {
23524
- if (!(instance instanceof Constructor)) {
23525
- throw new TypeError("Cannot call a class as a function");
23526
- }
23252
+ function _classCallCheck(a, n) {
23253
+ if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
23527
23254
  }
23528
23255
 
23256
+
23529
23257
  /***/ }),
23530
23258
 
23531
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/createClass.js":
23259
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/createClass.js":
23532
23260
  /*!*************************************************************************************************************************!*\
23533
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
23261
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
23534
23262
  \*************************************************************************************************************************/
23535
23263
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
23536
23264
 
@@ -23539,31 +23267,26 @@ __webpack_require__.r(__webpack_exports__);
23539
23267
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23540
23268
  /* harmony export */ "default": () => (/* binding */ _createClass)
23541
23269
  /* harmony export */ });
23542
- /* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
23543
-
23544
- function _defineProperties(target, props) {
23545
- for (var i = 0; i < props.length; i++) {
23546
- var descriptor = props[i];
23547
- descriptor.enumerable = descriptor.enumerable || false;
23548
- descriptor.configurable = true;
23549
- if ("value" in descriptor) descriptor.writable = true;
23550
- Object.defineProperty(target, (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(descriptor.key), descriptor);
23270
+ /* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
23271
+
23272
+ function _defineProperties(e, r) {
23273
+ for (var t = 0; t < r.length; t++) {
23274
+ var o = r[t];
23275
+ o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(o.key), o);
23551
23276
  }
23552
23277
  }
23553
- function _createClass(Constructor, protoProps, staticProps) {
23554
- if (protoProps) _defineProperties(Constructor.prototype, protoProps);
23555
- if (staticProps) _defineProperties(Constructor, staticProps);
23556
- Object.defineProperty(Constructor, "prototype", {
23557
- writable: false
23558
- });
23559
- return Constructor;
23278
+ function _createClass(e, r, t) {
23279
+ return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", {
23280
+ writable: !1
23281
+ }), e;
23560
23282
  }
23561
23283
 
23284
+
23562
23285
  /***/ }),
23563
23286
 
23564
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
23287
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
23565
23288
  /*!*************************************************************************************************************************!*\
23566
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
23289
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
23567
23290
  \*************************************************************************************************************************/
23568
23291
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
23569
23292
 
@@ -23572,7 +23295,7 @@ __webpack_require__.r(__webpack_exports__);
23572
23295
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23573
23296
  /* harmony export */ "default": () => (/* binding */ toPrimitive)
23574
23297
  /* harmony export */ });
23575
- /* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js");
23298
+ /* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/typeof.js");
23576
23299
 
23577
23300
  function toPrimitive(t, r) {
23578
23301
  if ("object" != (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(t) || !t) return t;
@@ -23585,11 +23308,12 @@ function toPrimitive(t, r) {
23585
23308
  return ("string" === r ? String : Number)(t);
23586
23309
  }
23587
23310
 
23311
+
23588
23312
  /***/ }),
23589
23313
 
23590
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
23314
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
23591
23315
  /*!***************************************************************************************************************************!*\
23592
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
23316
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
23593
23317
  \***************************************************************************************************************************/
23594
23318
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
23595
23319
 
@@ -23598,20 +23322,21 @@ __webpack_require__.r(__webpack_exports__);
23598
23322
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
23599
23323
  /* harmony export */ "default": () => (/* binding */ toPropertyKey)
23600
23324
  /* harmony export */ });
23601
- /* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js");
23602
- /* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPrimitive.js");
23325
+ /* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/typeof.js");
23326
+ /* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/toPrimitive.js");
23603
23327
 
23604
23328
 
23605
23329
  function toPropertyKey(t) {
23606
23330
  var i = (0,_toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__["default"])(t, "string");
23607
- return "symbol" == (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(i) ? i : String(i);
23331
+ return "symbol" == (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(i) ? i : i + "";
23608
23332
  }
23609
23333
 
23334
+
23610
23335
  /***/ }),
23611
23336
 
23612
- /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js":
23337
+ /***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/typeof.js":
23613
23338
  /*!********************************************************************************************************************!*\
23614
- !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
23339
+ !*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.25.0/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
23615
23340
  \********************************************************************************************************************/
23616
23341
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
23617
23342
 
@@ -23630,6 +23355,7 @@ function _typeof(o) {
23630
23355
  }, _typeof(o);
23631
23356
  }
23632
23357
 
23358
+
23633
23359
  /***/ })
23634
23360
 
23635
23361
  /******/ });