@danielgindi/selectbox 1.0.62 → 1.0.65

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.
package/dist/lib.umd.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @danielgindi/selectbox 1.0.62
2
+ * @danielgindi/selectbox 1.0.65
3
3
  * git://github.com/danielgindi/selectbox.git
4
4
  */
5
5
  (function (global, factory) {
@@ -388,6 +388,353 @@
388
388
  return target;
389
389
  }
390
390
 
391
+ function _regeneratorRuntime() {
392
+ "use strict";
393
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
394
+
395
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
396
+ _regeneratorRuntime = function () {
397
+ return exports;
398
+ };
399
+
400
+ var exports = {},
401
+ Op = Object.prototype,
402
+ hasOwn = Op.hasOwnProperty,
403
+ $Symbol = "function" == typeof Symbol ? Symbol : {},
404
+ iteratorSymbol = $Symbol.iterator || "@@iterator",
405
+ asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator",
406
+ toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
407
+
408
+ function define(obj, key, value) {
409
+ return Object.defineProperty(obj, key, {
410
+ value: value,
411
+ enumerable: !0,
412
+ configurable: !0,
413
+ writable: !0
414
+ }), obj[key];
415
+ }
416
+
417
+ try {
418
+ define({}, "");
419
+ } catch (err) {
420
+ define = function (obj, key, value) {
421
+ return obj[key] = value;
422
+ };
423
+ }
424
+
425
+ function wrap(innerFn, outerFn, self, tryLocsList) {
426
+ var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator,
427
+ generator = Object.create(protoGenerator.prototype),
428
+ context = new Context(tryLocsList || []);
429
+ return generator._invoke = function (innerFn, self, context) {
430
+ var state = "suspendedStart";
431
+ return function (method, arg) {
432
+ if ("executing" === state) throw new Error("Generator is already running");
433
+
434
+ if ("completed" === state) {
435
+ if ("throw" === method) throw arg;
436
+ return doneResult();
437
+ }
438
+
439
+ for (context.method = method, context.arg = arg;;) {
440
+ var delegate = context.delegate;
441
+
442
+ if (delegate) {
443
+ var delegateResult = maybeInvokeDelegate(delegate, context);
444
+
445
+ if (delegateResult) {
446
+ if (delegateResult === ContinueSentinel) continue;
447
+ return delegateResult;
448
+ }
449
+ }
450
+
451
+ if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) {
452
+ if ("suspendedStart" === state) throw state = "completed", context.arg;
453
+ context.dispatchException(context.arg);
454
+ } else "return" === context.method && context.abrupt("return", context.arg);
455
+ state = "executing";
456
+ var record = tryCatch(innerFn, self, context);
457
+
458
+ if ("normal" === record.type) {
459
+ if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue;
460
+ return {
461
+ value: record.arg,
462
+ done: context.done
463
+ };
464
+ }
465
+
466
+ "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg);
467
+ }
468
+ };
469
+ }(innerFn, self, context), generator;
470
+ }
471
+
472
+ function tryCatch(fn, obj, arg) {
473
+ try {
474
+ return {
475
+ type: "normal",
476
+ arg: fn.call(obj, arg)
477
+ };
478
+ } catch (err) {
479
+ return {
480
+ type: "throw",
481
+ arg: err
482
+ };
483
+ }
484
+ }
485
+
486
+ exports.wrap = wrap;
487
+ var ContinueSentinel = {};
488
+
489
+ function Generator() {}
490
+
491
+ function GeneratorFunction() {}
492
+
493
+ function GeneratorFunctionPrototype() {}
494
+
495
+ var IteratorPrototype = {};
496
+ define(IteratorPrototype, iteratorSymbol, function () {
497
+ return this;
498
+ });
499
+ var getProto = Object.getPrototypeOf,
500
+ NativeIteratorPrototype = getProto && getProto(getProto(values([])));
501
+ NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype);
502
+ var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype);
503
+
504
+ function defineIteratorMethods(prototype) {
505
+ ["next", "throw", "return"].forEach(function (method) {
506
+ define(prototype, method, function (arg) {
507
+ return this._invoke(method, arg);
508
+ });
509
+ });
510
+ }
511
+
512
+ function AsyncIterator(generator, PromiseImpl) {
513
+ function invoke(method, arg, resolve, reject) {
514
+ var record = tryCatch(generator[method], generator, arg);
515
+
516
+ if ("throw" !== record.type) {
517
+ var result = record.arg,
518
+ value = result.value;
519
+ return value && "object" == typeof value && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) {
520
+ invoke("next", value, resolve, reject);
521
+ }, function (err) {
522
+ invoke("throw", err, resolve, reject);
523
+ }) : PromiseImpl.resolve(value).then(function (unwrapped) {
524
+ result.value = unwrapped, resolve(result);
525
+ }, function (error) {
526
+ return invoke("throw", error, resolve, reject);
527
+ });
528
+ }
529
+
530
+ reject(record.arg);
531
+ }
532
+
533
+ var previousPromise;
534
+
535
+ this._invoke = function (method, arg) {
536
+ function callInvokeWithMethodAndArg() {
537
+ return new PromiseImpl(function (resolve, reject) {
538
+ invoke(method, arg, resolve, reject);
539
+ });
540
+ }
541
+
542
+ return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
543
+ };
544
+ }
545
+
546
+ function maybeInvokeDelegate(delegate, context) {
547
+ var method = delegate.iterator[context.method];
548
+
549
+ if (undefined === method) {
550
+ if (context.delegate = null, "throw" === context.method) {
551
+ if (delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel;
552
+ context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method");
553
+ }
554
+
555
+ return ContinueSentinel;
556
+ }
557
+
558
+ var record = tryCatch(method, delegate.iterator, context.arg);
559
+ if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel;
560
+ var info = record.arg;
561
+ return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel);
562
+ }
563
+
564
+ function pushTryEntry(locs) {
565
+ var entry = {
566
+ tryLoc: locs[0]
567
+ };
568
+ 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry);
569
+ }
570
+
571
+ function resetTryEntry(entry) {
572
+ var record = entry.completion || {};
573
+ record.type = "normal", delete record.arg, entry.completion = record;
574
+ }
575
+
576
+ function Context(tryLocsList) {
577
+ this.tryEntries = [{
578
+ tryLoc: "root"
579
+ }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0);
580
+ }
581
+
582
+ function values(iterable) {
583
+ if (iterable) {
584
+ var iteratorMethod = iterable[iteratorSymbol];
585
+ if (iteratorMethod) return iteratorMethod.call(iterable);
586
+ if ("function" == typeof iterable.next) return iterable;
587
+
588
+ if (!isNaN(iterable.length)) {
589
+ var i = -1,
590
+ next = function next() {
591
+ for (; ++i < iterable.length;) if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next;
592
+
593
+ return next.value = undefined, next.done = !0, next;
594
+ };
595
+
596
+ return next.next = next;
597
+ }
598
+ }
599
+
600
+ return {
601
+ next: doneResult
602
+ };
603
+ }
604
+
605
+ function doneResult() {
606
+ return {
607
+ value: undefined,
608
+ done: !0
609
+ };
610
+ }
611
+
612
+ return GeneratorFunction.prototype = GeneratorFunctionPrototype, define(Gp, "constructor", GeneratorFunctionPrototype), define(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) {
613
+ var ctor = "function" == typeof genFun && genFun.constructor;
614
+ return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name));
615
+ }, exports.mark = function (genFun) {
616
+ return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun;
617
+ }, exports.awrap = function (arg) {
618
+ return {
619
+ __await: arg
620
+ };
621
+ }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () {
622
+ return this;
623
+ }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) {
624
+ void 0 === PromiseImpl && (PromiseImpl = Promise);
625
+ var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl);
626
+ return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) {
627
+ return result.done ? result.value : iter.next();
628
+ });
629
+ }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () {
630
+ return this;
631
+ }), define(Gp, "toString", function () {
632
+ return "[object Generator]";
633
+ }), exports.keys = function (object) {
634
+ var keys = [];
635
+
636
+ for (var key in object) keys.push(key);
637
+
638
+ return keys.reverse(), function next() {
639
+ for (; keys.length;) {
640
+ var key = keys.pop();
641
+ if (key in object) return next.value = key, next.done = !1, next;
642
+ }
643
+
644
+ return next.done = !0, next;
645
+ };
646
+ }, exports.values = values, Context.prototype = {
647
+ constructor: Context,
648
+ reset: function (skipTempReset) {
649
+ if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined);
650
+ },
651
+ stop: function () {
652
+ this.done = !0;
653
+ var rootRecord = this.tryEntries[0].completion;
654
+ if ("throw" === rootRecord.type) throw rootRecord.arg;
655
+ return this.rval;
656
+ },
657
+ dispatchException: function (exception) {
658
+ if (this.done) throw exception;
659
+ var context = this;
660
+
661
+ function handle(loc, caught) {
662
+ return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught;
663
+ }
664
+
665
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
666
+ var entry = this.tryEntries[i],
667
+ record = entry.completion;
668
+ if ("root" === entry.tryLoc) return handle("end");
669
+
670
+ if (entry.tryLoc <= this.prev) {
671
+ var hasCatch = hasOwn.call(entry, "catchLoc"),
672
+ hasFinally = hasOwn.call(entry, "finallyLoc");
673
+
674
+ if (hasCatch && hasFinally) {
675
+ if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);
676
+ if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);
677
+ } else if (hasCatch) {
678
+ if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);
679
+ } else {
680
+ if (!hasFinally) throw new Error("try statement without catch or finally");
681
+ if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);
682
+ }
683
+ }
684
+ }
685
+ },
686
+ abrupt: function (type, arg) {
687
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
688
+ var entry = this.tryEntries[i];
689
+
690
+ if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) {
691
+ var finallyEntry = entry;
692
+ break;
693
+ }
694
+ }
695
+
696
+ finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null);
697
+ var record = finallyEntry ? finallyEntry.completion : {};
698
+ return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record);
699
+ },
700
+ complete: function (record, afterLoc) {
701
+ if ("throw" === record.type) throw record.arg;
702
+ return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel;
703
+ },
704
+ finish: function (finallyLoc) {
705
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
706
+ var entry = this.tryEntries[i];
707
+ if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel;
708
+ }
709
+ },
710
+ catch: function (tryLoc) {
711
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
712
+ var entry = this.tryEntries[i];
713
+
714
+ if (entry.tryLoc === tryLoc) {
715
+ var record = entry.completion;
716
+
717
+ if ("throw" === record.type) {
718
+ var thrown = record.arg;
719
+ resetTryEntry(entry);
720
+ }
721
+
722
+ return thrown;
723
+ }
724
+ }
725
+
726
+ throw new Error("illegal catch attempt");
727
+ },
728
+ delegateYield: function (iterable, resultName, nextLoc) {
729
+ return this.delegate = {
730
+ iterator: values(iterable),
731
+ resultName: resultName,
732
+ nextLoc: nextLoc
733
+ }, "next" === this.method && (this.arg = undefined), ContinueSentinel;
734
+ }
735
+ }, exports;
736
+ }
737
+
391
738
  function _typeof(obj) {
392
739
  "@babel/helpers - typeof";
393
740
 
@@ -725,7 +1072,7 @@
725
1072
  }
726
1073
 
727
1074
  function _extends() {
728
- _extends = Object.assign || function (target) {
1075
+ _extends = Object.assign ? Object.assign.bind() : function (target) {
729
1076
  for (var i = 1; i < arguments.length; i++) {
730
1077
  var source = arguments[i];
731
1078
 
@@ -738,7 +1085,6 @@
738
1085
 
739
1086
  return target;
740
1087
  };
741
-
742
1088
  return _extends.apply(this, arguments);
743
1089
  }
744
1090
 
@@ -787,18 +1133,17 @@
787
1133
  }
788
1134
 
789
1135
  function _getPrototypeOf(o) {
790
- _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
1136
+ _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {
791
1137
  return o.__proto__ || Object.getPrototypeOf(o);
792
1138
  };
793
1139
  return _getPrototypeOf(o);
794
1140
  }
795
1141
 
796
1142
  function _setPrototypeOf(o, p) {
797
- _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
1143
+ _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
798
1144
  o.__proto__ = p;
799
1145
  return o;
800
1146
  };
801
-
802
1147
  return _setPrototypeOf(o, p);
803
1148
  }
804
1149
 
@@ -817,7 +1162,7 @@
817
1162
 
818
1163
  function _construct(Parent, args, Class) {
819
1164
  if (_isNativeReflectConstruct()) {
820
- _construct = Reflect.construct;
1165
+ _construct = Reflect.construct.bind();
821
1166
  } else {
822
1167
  _construct = function _construct(Parent, args, Class) {
823
1168
  var a = [null];
@@ -1028,7 +1373,7 @@
1028
1373
 
1029
1374
  function _get() {
1030
1375
  if (typeof Reflect !== "undefined" && Reflect.get) {
1031
- _get = Reflect.get;
1376
+ _get = Reflect.get.bind();
1032
1377
  } else {
1033
1378
  _get = function _get(target, property, receiver) {
1034
1379
  var base = _superPropBase(target, property);
@@ -2001,7 +2346,7 @@
2001
2346
  };
2002
2347
 
2003
2348
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
2004
- var global$N =
2349
+ var global$l =
2005
2350
  // eslint-disable-next-line es-x/no-global-this -- safe
2006
2351
  check(typeof globalThis == 'object' && globalThis) ||
2007
2352
  check(typeof window == 'object' && window) ||
@@ -2013,7 +2358,7 @@
2013
2358
 
2014
2359
  var objectGetOwnPropertyDescriptor = {};
2015
2360
 
2016
- var fails$x = function (exec) {
2361
+ var fails$y = function (exec) {
2017
2362
  try {
2018
2363
  return !!exec();
2019
2364
  } catch (error) {
@@ -2021,17 +2366,17 @@
2021
2366
  }
2022
2367
  };
2023
2368
 
2024
- var fails$w = fails$x;
2369
+ var fails$x = fails$y;
2025
2370
 
2026
2371
  // Detect IE8's incomplete defineProperty implementation
2027
- var descriptors = !fails$w(function () {
2372
+ var descriptors = !fails$x(function () {
2028
2373
  // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
2029
2374
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
2030
2375
  });
2031
2376
 
2032
- var fails$v = fails$x;
2377
+ var fails$w = fails$y;
2033
2378
 
2034
- var functionBindNative = !fails$v(function () {
2379
+ var functionBindNative = !fails$w(function () {
2035
2380
  // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
2036
2381
  var test = (function () { /* empty */ }).bind();
2037
2382
  // eslint-disable-next-line no-prototype-builtins -- safe
@@ -2096,31 +2441,28 @@
2096
2441
  return stringSlice$8(toString$g(it), 8, -1);
2097
2442
  };
2098
2443
 
2099
- var global$M = global$N;
2100
2444
  var uncurryThis$x = functionUncurryThis;
2101
- var fails$u = fails$x;
2445
+ var fails$v = fails$y;
2102
2446
  var classof$b = classofRaw$1;
2103
2447
 
2104
- var Object$5 = global$M.Object;
2448
+ var $Object$4 = Object;
2105
2449
  var split = uncurryThis$x(''.split);
2106
2450
 
2107
2451
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
2108
- var indexedObject = fails$u(function () {
2452
+ var indexedObject = fails$v(function () {
2109
2453
  // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
2110
2454
  // eslint-disable-next-line no-prototype-builtins -- safe
2111
- return !Object$5('z').propertyIsEnumerable(0);
2455
+ return !$Object$4('z').propertyIsEnumerable(0);
2112
2456
  }) ? function (it) {
2113
- return classof$b(it) == 'String' ? split(it, '') : Object$5(it);
2114
- } : Object$5;
2457
+ return classof$b(it) == 'String' ? split(it, '') : $Object$4(it);
2458
+ } : $Object$4;
2115
2459
 
2116
- var global$L = global$N;
2117
-
2118
- var TypeError$i = global$L.TypeError;
2460
+ var $TypeError$f = TypeError;
2119
2461
 
2120
2462
  // `RequireObjectCoercible` abstract operation
2121
2463
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
2122
2464
  var requireObjectCoercible$8 = function (it) {
2123
- if (it == undefined) throw TypeError$i("Can't call method on " + it);
2465
+ if (it == undefined) throw $TypeError$f("Can't call method on " + it);
2124
2466
  return it;
2125
2467
  };
2126
2468
 
@@ -2134,25 +2476,25 @@
2134
2476
 
2135
2477
  // `IsCallable` abstract operation
2136
2478
  // https://tc39.es/ecma262/#sec-iscallable
2137
- var isCallable$l = function (argument) {
2479
+ var isCallable$m = function (argument) {
2138
2480
  return typeof argument == 'function';
2139
2481
  };
2140
2482
 
2141
- var isCallable$k = isCallable$l;
2483
+ var isCallable$l = isCallable$m;
2142
2484
 
2143
2485
  var isObject$e = function (it) {
2144
- return typeof it == 'object' ? it !== null : isCallable$k(it);
2486
+ return typeof it == 'object' ? it !== null : isCallable$l(it);
2145
2487
  };
2146
2488
 
2147
- var global$K = global$N;
2148
- var isCallable$j = isCallable$l;
2489
+ var global$k = global$l;
2490
+ var isCallable$k = isCallable$m;
2149
2491
 
2150
2492
  var aFunction = function (argument) {
2151
- return isCallable$j(argument) ? argument : undefined;
2493
+ return isCallable$k(argument) ? argument : undefined;
2152
2494
  };
2153
2495
 
2154
2496
  var getBuiltIn$9 = function (namespace, method) {
2155
- return arguments.length < 2 ? aFunction(global$K[namespace]) : global$K[namespace] && global$K[namespace][method];
2497
+ return arguments.length < 2 ? aFunction(global$k[namespace]) : global$k[namespace] && global$k[namespace][method];
2156
2498
  };
2157
2499
 
2158
2500
  var uncurryThis$w = functionUncurryThis;
@@ -2163,11 +2505,11 @@
2163
2505
 
2164
2506
  var engineUserAgent = getBuiltIn$8('navigator', 'userAgent') || '';
2165
2507
 
2166
- var global$J = global$N;
2508
+ var global$j = global$l;
2167
2509
  var userAgent$2 = engineUserAgent;
2168
2510
 
2169
- var process = global$J.process;
2170
- var Deno = global$J.Deno;
2511
+ var process = global$j.process;
2512
+ var Deno = global$j.Deno;
2171
2513
  var versions = process && process.versions || Deno && Deno.version;
2172
2514
  var v8 = versions && versions.v8;
2173
2515
  var match, version;
@@ -2194,10 +2536,10 @@
2194
2536
  /* eslint-disable es-x/no-symbol -- required for testing */
2195
2537
 
2196
2538
  var V8_VERSION$2 = engineV8Version;
2197
- var fails$t = fails$x;
2539
+ var fails$u = fails$y;
2198
2540
 
2199
2541
  // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
2200
- var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$t(function () {
2542
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$u(function () {
2201
2543
  var symbol = Symbol();
2202
2544
  // Chrome 38 Symbol has incorrect toString conversion
2203
2545
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -2214,43 +2556,39 @@
2214
2556
  && !Symbol.sham
2215
2557
  && typeof Symbol.iterator == 'symbol';
2216
2558
 
2217
- var global$I = global$N;
2218
2559
  var getBuiltIn$7 = getBuiltIn$9;
2219
- var isCallable$i = isCallable$l;
2560
+ var isCallable$j = isCallable$m;
2220
2561
  var isPrototypeOf$6 = objectIsPrototypeOf;
2221
2562
  var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
2222
2563
 
2223
- var Object$4 = global$I.Object;
2564
+ var $Object$3 = Object;
2224
2565
 
2225
2566
  var isSymbol$4 = USE_SYMBOL_AS_UID$1 ? function (it) {
2226
2567
  return typeof it == 'symbol';
2227
2568
  } : function (it) {
2228
2569
  var $Symbol = getBuiltIn$7('Symbol');
2229
- return isCallable$i($Symbol) && isPrototypeOf$6($Symbol.prototype, Object$4(it));
2570
+ return isCallable$j($Symbol) && isPrototypeOf$6($Symbol.prototype, $Object$3(it));
2230
2571
  };
2231
2572
 
2232
- var global$H = global$N;
2233
-
2234
- var String$4 = global$H.String;
2573
+ var $String$3 = String;
2235
2574
 
2236
- var tryToString$5 = function (argument) {
2575
+ var tryToString$6 = function (argument) {
2237
2576
  try {
2238
- return String$4(argument);
2577
+ return $String$3(argument);
2239
2578
  } catch (error) {
2240
2579
  return 'Object';
2241
2580
  }
2242
2581
  };
2243
2582
 
2244
- var global$G = global$N;
2245
- var isCallable$h = isCallable$l;
2246
- var tryToString$4 = tryToString$5;
2583
+ var isCallable$i = isCallable$m;
2584
+ var tryToString$5 = tryToString$6;
2247
2585
 
2248
- var TypeError$h = global$G.TypeError;
2586
+ var $TypeError$e = TypeError;
2249
2587
 
2250
2588
  // `Assert: IsCallable(argument) is true`
2251
2589
  var aCallable$5 = function (argument) {
2252
- if (isCallable$h(argument)) return argument;
2253
- throw TypeError$h(tryToString$4(argument) + ' is not a function');
2590
+ if (isCallable$i(argument)) return argument;
2591
+ throw $TypeError$e(tryToString$5(argument) + ' is not a function');
2254
2592
  };
2255
2593
 
2256
2594
  var aCallable$4 = aCallable$5;
@@ -2262,45 +2600,44 @@
2262
2600
  return func == null ? undefined : aCallable$4(func);
2263
2601
  };
2264
2602
 
2265
- var global$F = global$N;
2266
2603
  var call$h = functionCall;
2267
- var isCallable$g = isCallable$l;
2604
+ var isCallable$h = isCallable$m;
2268
2605
  var isObject$d = isObject$e;
2269
2606
 
2270
- var TypeError$g = global$F.TypeError;
2607
+ var $TypeError$d = TypeError;
2271
2608
 
2272
2609
  // `OrdinaryToPrimitive` abstract operation
2273
2610
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
2274
2611
  var ordinaryToPrimitive$1 = function (input, pref) {
2275
2612
  var fn, val;
2276
- if (pref === 'string' && isCallable$g(fn = input.toString) && !isObject$d(val = call$h(fn, input))) return val;
2277
- if (isCallable$g(fn = input.valueOf) && !isObject$d(val = call$h(fn, input))) return val;
2278
- if (pref !== 'string' && isCallable$g(fn = input.toString) && !isObject$d(val = call$h(fn, input))) return val;
2279
- throw TypeError$g("Can't convert object to primitive value");
2613
+ if (pref === 'string' && isCallable$h(fn = input.toString) && !isObject$d(val = call$h(fn, input))) return val;
2614
+ if (isCallable$h(fn = input.valueOf) && !isObject$d(val = call$h(fn, input))) return val;
2615
+ if (pref !== 'string' && isCallable$h(fn = input.toString) && !isObject$d(val = call$h(fn, input))) return val;
2616
+ throw $TypeError$d("Can't convert object to primitive value");
2280
2617
  };
2281
2618
 
2282
2619
  var shared$7 = {exports: {}};
2283
2620
 
2284
2621
  var isPure = false;
2285
2622
 
2286
- var global$E = global$N;
2623
+ var global$i = global$l;
2287
2624
 
2288
2625
  // eslint-disable-next-line es-x/no-object-defineproperty -- safe
2289
- var defineProperty$8 = Object.defineProperty;
2626
+ var defineProperty$a = Object.defineProperty;
2290
2627
 
2291
- var setGlobal$3 = function (key, value) {
2628
+ var defineGlobalProperty$3 = function (key, value) {
2292
2629
  try {
2293
- defineProperty$8(global$E, key, { value: value, configurable: true, writable: true });
2630
+ defineProperty$a(global$i, key, { value: value, configurable: true, writable: true });
2294
2631
  } catch (error) {
2295
- global$E[key] = value;
2632
+ global$i[key] = value;
2296
2633
  } return value;
2297
2634
  };
2298
2635
 
2299
- var global$D = global$N;
2300
- var setGlobal$2 = setGlobal$3;
2636
+ var global$h = global$l;
2637
+ var defineGlobalProperty$2 = defineGlobalProperty$3;
2301
2638
 
2302
2639
  var SHARED = '__core-js_shared__';
2303
- var store$3 = global$D[SHARED] || setGlobal$2(SHARED, {});
2640
+ var store$3 = global$h[SHARED] || defineGlobalProperty$2(SHARED, {});
2304
2641
 
2305
2642
  var sharedStore = store$3;
2306
2643
 
@@ -2310,22 +2647,21 @@
2310
2647
  (shared$7.exports = function (key, value) {
2311
2648
  return store$2[key] || (store$2[key] = value !== undefined ? value : {});
2312
2649
  })('versions', []).push({
2313
- version: '3.22.3',
2650
+ version: '3.22.8',
2314
2651
  mode: IS_PURE$5 ? 'pure' : 'global',
2315
2652
  copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
2316
- license: 'https://github.com/zloirock/core-js/blob/v3.22.3/LICENSE',
2653
+ license: 'https://github.com/zloirock/core-js/blob/v3.22.8/LICENSE',
2317
2654
  source: 'https://github.com/zloirock/core-js'
2318
2655
  });
2319
2656
 
2320
- var global$C = global$N;
2321
2657
  var requireObjectCoercible$6 = requireObjectCoercible$8;
2322
2658
 
2323
- var Object$3 = global$C.Object;
2659
+ var $Object$2 = Object;
2324
2660
 
2325
2661
  // `ToObject` abstract operation
2326
2662
  // https://tc39.es/ecma262/#sec-toobject
2327
2663
  var toObject$b = function (argument) {
2328
- return Object$3(requireObjectCoercible$6(argument));
2664
+ return $Object$2(requireObjectCoercible$6(argument));
2329
2665
  };
2330
2666
 
2331
2667
  var uncurryThis$v = functionUncurryThis;
@@ -2350,7 +2686,7 @@
2350
2686
  return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$f(++id$1 + postfix, 36);
2351
2687
  };
2352
2688
 
2353
- var global$B = global$N;
2689
+ var global$g = global$l;
2354
2690
  var shared$6 = shared$7.exports;
2355
2691
  var hasOwn$g = hasOwnProperty_1;
2356
2692
  var uid$3 = uid$4;
@@ -2358,7 +2694,7 @@
2358
2694
  var USE_SYMBOL_AS_UID = useSymbolAsUid;
2359
2695
 
2360
2696
  var WellKnownSymbolsStore$1 = shared$6('wks');
2361
- var Symbol$2 = global$B.Symbol;
2697
+ var Symbol$2 = global$g.Symbol;
2362
2698
  var symbolFor = Symbol$2 && Symbol$2['for'];
2363
2699
  var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$2 : Symbol$2 && Symbol$2.withoutSetter || uid$3;
2364
2700
 
@@ -2375,7 +2711,6 @@
2375
2711
  } return WellKnownSymbolsStore$1[name];
2376
2712
  };
2377
2713
 
2378
- var global$A = global$N;
2379
2714
  var call$g = functionCall;
2380
2715
  var isObject$c = isObject$e;
2381
2716
  var isSymbol$3 = isSymbol$4;
@@ -2383,7 +2718,7 @@
2383
2718
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
2384
2719
  var wellKnownSymbol$o = wellKnownSymbol$p;
2385
2720
 
2386
- var TypeError$f = global$A.TypeError;
2721
+ var $TypeError$c = TypeError;
2387
2722
  var TO_PRIMITIVE = wellKnownSymbol$o('toPrimitive');
2388
2723
 
2389
2724
  // `ToPrimitive` abstract operation
@@ -2396,7 +2731,7 @@
2396
2731
  if (pref === undefined) pref = 'default';
2397
2732
  result = call$g(exoticToPrim, input, pref);
2398
2733
  if (!isObject$c(result) || isSymbol$3(result)) return result;
2399
- throw TypeError$f("Can't convert object to primitive value");
2734
+ throw $TypeError$c("Can't convert object to primitive value");
2400
2735
  }
2401
2736
  if (pref === undefined) pref = 'number';
2402
2737
  return ordinaryToPrimitive(input, pref);
@@ -2412,10 +2747,10 @@
2412
2747
  return isSymbol$2(key) ? key : key + '';
2413
2748
  };
2414
2749
 
2415
- var global$z = global$N;
2750
+ var global$f = global$l;
2416
2751
  var isObject$b = isObject$e;
2417
2752
 
2418
- var document$1 = global$z.document;
2753
+ var document$1 = global$f.document;
2419
2754
  // typeof document.createElement is 'object' in old IE
2420
2755
  var EXISTS$1 = isObject$b(document$1) && isObject$b(document$1.createElement);
2421
2756
 
@@ -2423,19 +2758,19 @@
2423
2758
  return EXISTS$1 ? document$1.createElement(it) : {};
2424
2759
  };
2425
2760
 
2426
- var DESCRIPTORS$e = descriptors;
2427
- var fails$s = fails$x;
2761
+ var DESCRIPTORS$f = descriptors;
2762
+ var fails$t = fails$y;
2428
2763
  var createElement = documentCreateElement$2;
2429
2764
 
2430
2765
  // Thanks to IE8 for its funny defineProperty
2431
- var ie8DomDefine = !DESCRIPTORS$e && !fails$s(function () {
2766
+ var ie8DomDefine = !DESCRIPTORS$f && !fails$t(function () {
2432
2767
  // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
2433
2768
  return Object.defineProperty(createElement('div'), 'a', {
2434
2769
  get: function () { return 7; }
2435
2770
  }).a != 7;
2436
2771
  });
2437
2772
 
2438
- var DESCRIPTORS$d = descriptors;
2773
+ var DESCRIPTORS$e = descriptors;
2439
2774
  var call$f = functionCall;
2440
2775
  var propertyIsEnumerableModule$2 = objectPropertyIsEnumerable;
2441
2776
  var createPropertyDescriptor$4 = createPropertyDescriptor$5;
@@ -2449,7 +2784,7 @@
2449
2784
 
2450
2785
  // `Object.getOwnPropertyDescriptor` method
2451
2786
  // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
2452
- var f$6 = objectGetOwnPropertyDescriptor.f = DESCRIPTORS$d ? $getOwnPropertyDescriptor$2 : function getOwnPropertyDescriptor(O, P) {
2787
+ var f$6 = objectGetOwnPropertyDescriptor.f = DESCRIPTORS$e ? $getOwnPropertyDescriptor$2 : function getOwnPropertyDescriptor(O, P) {
2453
2788
  O = toIndexedObject$9(O);
2454
2789
  P = toPropertyKey$3(P);
2455
2790
  if (IE8_DOM_DEFINE$1) try {
@@ -2460,12 +2795,12 @@
2460
2795
 
2461
2796
  var objectDefineProperty = {};
2462
2797
 
2463
- var DESCRIPTORS$c = descriptors;
2464
- var fails$r = fails$x;
2798
+ var DESCRIPTORS$d = descriptors;
2799
+ var fails$s = fails$y;
2465
2800
 
2466
2801
  // V8 ~ Chrome 36-
2467
2802
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
2468
- var v8PrototypeDefineBug = DESCRIPTORS$c && fails$r(function () {
2803
+ var v8PrototypeDefineBug = DESCRIPTORS$d && fails$s(function () {
2469
2804
  // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
2470
2805
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
2471
2806
  value: 42,
@@ -2473,26 +2808,24 @@
2473
2808
  }).prototype != 42;
2474
2809
  });
2475
2810
 
2476
- var global$y = global$N;
2477
2811
  var isObject$a = isObject$e;
2478
2812
 
2479
- var String$3 = global$y.String;
2480
- var TypeError$e = global$y.TypeError;
2813
+ var $String$2 = String;
2814
+ var $TypeError$b = TypeError;
2481
2815
 
2482
2816
  // `Assert: Type(argument) is Object`
2483
2817
  var anObject$g = function (argument) {
2484
2818
  if (isObject$a(argument)) return argument;
2485
- throw TypeError$e(String$3(argument) + ' is not an object');
2819
+ throw $TypeError$b($String$2(argument) + ' is not an object');
2486
2820
  };
2487
2821
 
2488
- var global$x = global$N;
2489
- var DESCRIPTORS$b = descriptors;
2822
+ var DESCRIPTORS$c = descriptors;
2490
2823
  var IE8_DOM_DEFINE = ie8DomDefine;
2491
2824
  var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
2492
2825
  var anObject$f = anObject$g;
2493
2826
  var toPropertyKey$2 = toPropertyKey$4;
2494
2827
 
2495
- var TypeError$d = global$x.TypeError;
2828
+ var $TypeError$a = TypeError;
2496
2829
  // eslint-disable-next-line es-x/no-object-defineproperty -- safe
2497
2830
  var $defineProperty$1 = Object.defineProperty;
2498
2831
  // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
@@ -2503,7 +2836,7 @@
2503
2836
 
2504
2837
  // `Object.defineProperty` method
2505
2838
  // https://tc39.es/ecma262/#sec-object.defineproperty
2506
- var f$5 = objectDefineProperty.f = DESCRIPTORS$b ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
2839
+ var f$5 = objectDefineProperty.f = DESCRIPTORS$c ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
2507
2840
  anObject$f(O);
2508
2841
  P = toPropertyKey$2(P);
2509
2842
  anObject$f(Attributes);
@@ -2525,32 +2858,50 @@
2525
2858
  if (IE8_DOM_DEFINE) try {
2526
2859
  return $defineProperty$1(O, P, Attributes);
2527
2860
  } catch (error) { /* empty */ }
2528
- if ('get' in Attributes || 'set' in Attributes) throw TypeError$d('Accessors not supported');
2861
+ if ('get' in Attributes || 'set' in Attributes) throw $TypeError$a('Accessors not supported');
2529
2862
  if ('value' in Attributes) O[P] = Attributes.value;
2530
2863
  return O;
2531
2864
  };
2532
2865
 
2533
- var DESCRIPTORS$a = descriptors;
2534
- var definePropertyModule$6 = objectDefineProperty;
2866
+ var DESCRIPTORS$b = descriptors;
2867
+ var definePropertyModule$5 = objectDefineProperty;
2535
2868
  var createPropertyDescriptor$3 = createPropertyDescriptor$5;
2536
2869
 
2537
- var createNonEnumerableProperty$7 = DESCRIPTORS$a ? function (object, key, value) {
2538
- return definePropertyModule$6.f(object, key, createPropertyDescriptor$3(1, value));
2870
+ var createNonEnumerableProperty$7 = DESCRIPTORS$b ? function (object, key, value) {
2871
+ return definePropertyModule$5.f(object, key, createPropertyDescriptor$3(1, value));
2539
2872
  } : function (object, key, value) {
2540
2873
  object[key] = value;
2541
2874
  return object;
2542
2875
  };
2543
2876
 
2544
- var redefine$b = {exports: {}};
2877
+ var makeBuiltIn$2 = {exports: {}};
2878
+
2879
+ var DESCRIPTORS$a = descriptors;
2880
+ var hasOwn$e = hasOwnProperty_1;
2881
+
2882
+ var FunctionPrototype$1 = Function.prototype;
2883
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
2884
+ var getDescriptor = DESCRIPTORS$a && Object.getOwnPropertyDescriptor;
2885
+
2886
+ var EXISTS = hasOwn$e(FunctionPrototype$1, 'name');
2887
+ // additional protection from minified / mangled / dropped function names
2888
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
2889
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS$a || (DESCRIPTORS$a && getDescriptor(FunctionPrototype$1, 'name').configurable));
2890
+
2891
+ var functionName = {
2892
+ EXISTS: EXISTS,
2893
+ PROPER: PROPER,
2894
+ CONFIGURABLE: CONFIGURABLE
2895
+ };
2545
2896
 
2546
2897
  var uncurryThis$t = functionUncurryThis;
2547
- var isCallable$f = isCallable$l;
2898
+ var isCallable$g = isCallable$m;
2548
2899
  var store$1 = sharedStore;
2549
2900
 
2550
2901
  var functionToString = uncurryThis$t(Function.toString);
2551
2902
 
2552
2903
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
2553
- if (!isCallable$f(store$1.inspectSource)) {
2904
+ if (!isCallable$g(store$1.inspectSource)) {
2554
2905
  store$1.inspectSource = function (it) {
2555
2906
  return functionToString(it);
2556
2907
  };
@@ -2558,13 +2909,13 @@
2558
2909
 
2559
2910
  var inspectSource$3 = store$1.inspectSource;
2560
2911
 
2561
- var global$w = global$N;
2562
- var isCallable$e = isCallable$l;
2912
+ var global$e = global$l;
2913
+ var isCallable$f = isCallable$m;
2563
2914
  var inspectSource$2 = inspectSource$3;
2564
2915
 
2565
- var WeakMap$2 = global$w.WeakMap;
2916
+ var WeakMap$2 = global$e.WeakMap;
2566
2917
 
2567
- var nativeWeakMap = isCallable$e(WeakMap$2) && /native code/.test(inspectSource$2(WeakMap$2));
2918
+ var nativeWeakMap = isCallable$f(WeakMap$2) && /native code/.test(inspectSource$2(WeakMap$2));
2568
2919
 
2569
2920
  var shared$5 = shared$7.exports;
2570
2921
  var uid$2 = uid$4;
@@ -2578,18 +2929,18 @@
2578
2929
  var hiddenKeys$6 = {};
2579
2930
 
2580
2931
  var NATIVE_WEAK_MAP = nativeWeakMap;
2581
- var global$v = global$N;
2932
+ var global$d = global$l;
2582
2933
  var uncurryThis$s = functionUncurryThis;
2583
2934
  var isObject$9 = isObject$e;
2584
2935
  var createNonEnumerableProperty$6 = createNonEnumerableProperty$7;
2585
- var hasOwn$e = hasOwnProperty_1;
2936
+ var hasOwn$d = hasOwnProperty_1;
2586
2937
  var shared$4 = sharedStore;
2587
2938
  var sharedKey$3 = sharedKey$4;
2588
2939
  var hiddenKeys$5 = hiddenKeys$6;
2589
2940
 
2590
2941
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
2591
- var TypeError$c = global$v.TypeError;
2592
- var WeakMap$1 = global$v.WeakMap;
2942
+ var TypeError$2 = global$d.TypeError;
2943
+ var WeakMap$1 = global$d.WeakMap;
2593
2944
  var set, get, has;
2594
2945
 
2595
2946
  var enforce = function (it) {
@@ -2600,7 +2951,7 @@
2600
2951
  return function (it) {
2601
2952
  var state;
2602
2953
  if (!isObject$9(it) || (state = get(it)).type !== TYPE) {
2603
- throw TypeError$c('Incompatible receiver, ' + TYPE + ' required');
2954
+ throw TypeError$2('Incompatible receiver, ' + TYPE + ' required');
2604
2955
  } return state;
2605
2956
  };
2606
2957
  };
@@ -2611,7 +2962,7 @@
2611
2962
  var wmhas = uncurryThis$s(store.has);
2612
2963
  var wmset = uncurryThis$s(store.set);
2613
2964
  set = function (it, metadata) {
2614
- if (wmhas(store, it)) throw new TypeError$c(OBJECT_ALREADY_INITIALIZED);
2965
+ if (wmhas(store, it)) throw new TypeError$2(OBJECT_ALREADY_INITIALIZED);
2615
2966
  metadata.facade = it;
2616
2967
  wmset(store, it, metadata);
2617
2968
  return metadata;
@@ -2626,16 +2977,16 @@
2626
2977
  var STATE = sharedKey$3('state');
2627
2978
  hiddenKeys$5[STATE] = true;
2628
2979
  set = function (it, metadata) {
2629
- if (hasOwn$e(it, STATE)) throw new TypeError$c(OBJECT_ALREADY_INITIALIZED);
2980
+ if (hasOwn$d(it, STATE)) throw new TypeError$2(OBJECT_ALREADY_INITIALIZED);
2630
2981
  metadata.facade = it;
2631
2982
  createNonEnumerableProperty$6(it, STATE, metadata);
2632
2983
  return metadata;
2633
2984
  };
2634
2985
  get = function (it) {
2635
- return hasOwn$e(it, STATE) ? it[STATE] : {};
2986
+ return hasOwn$d(it, STATE) ? it[STATE] : {};
2636
2987
  };
2637
2988
  has = function (it) {
2638
- return hasOwn$e(it, STATE);
2989
+ return hasOwn$d(it, STATE);
2639
2990
  };
2640
2991
  }
2641
2992
 
@@ -2647,82 +2998,97 @@
2647
2998
  getterFor: getterFor
2648
2999
  };
2649
3000
 
2650
- var DESCRIPTORS$9 = descriptors;
2651
- var hasOwn$d = hasOwnProperty_1;
2652
-
2653
- var FunctionPrototype$1 = Function.prototype;
2654
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
2655
- var getDescriptor = DESCRIPTORS$9 && Object.getOwnPropertyDescriptor;
2656
-
2657
- var EXISTS = hasOwn$d(FunctionPrototype$1, 'name');
2658
- // additional protection from minified / mangled / dropped function names
2659
- var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
2660
- var CONFIGURABLE = EXISTS && (!DESCRIPTORS$9 || (DESCRIPTORS$9 && getDescriptor(FunctionPrototype$1, 'name').configurable));
2661
-
2662
- var functionName = {
2663
- EXISTS: EXISTS,
2664
- PROPER: PROPER,
2665
- CONFIGURABLE: CONFIGURABLE
2666
- };
2667
-
2668
- var global$u = global$N;
2669
- var isCallable$d = isCallable$l;
3001
+ var fails$r = fails$y;
3002
+ var isCallable$e = isCallable$m;
2670
3003
  var hasOwn$c = hasOwnProperty_1;
2671
- var createNonEnumerableProperty$5 = createNonEnumerableProperty$7;
2672
- var setGlobal$1 = setGlobal$3;
3004
+ var DESCRIPTORS$9 = descriptors;
3005
+ var CONFIGURABLE_FUNCTION_NAME$1 = functionName.CONFIGURABLE;
2673
3006
  var inspectSource$1 = inspectSource$3;
2674
3007
  var InternalStateModule$4 = internalState;
2675
- var CONFIGURABLE_FUNCTION_NAME$1 = functionName.CONFIGURABLE;
2676
3008
 
2677
- var getInternalState$4 = InternalStateModule$4.get;
2678
3009
  var enforceInternalState$1 = InternalStateModule$4.enforce;
3010
+ var getInternalState$4 = InternalStateModule$4.get;
3011
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
3012
+ var defineProperty$9 = Object.defineProperty;
3013
+
3014
+ var CONFIGURABLE_LENGTH = DESCRIPTORS$9 && !fails$r(function () {
3015
+ return defineProperty$9(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
3016
+ });
3017
+
2679
3018
  var TEMPLATE = String(String).split('String');
2680
3019
 
2681
- (redefine$b.exports = function (O, key, value, options) {
2682
- var unsafe = options ? !!options.unsafe : false;
2683
- var simple = options ? !!options.enumerable : false;
2684
- var noTargetGet = options ? !!options.noTargetGet : false;
2685
- var name = options && options.name !== undefined ? options.name : key;
2686
- var state;
2687
- if (isCallable$d(value)) {
2688
- if (String(name).slice(0, 7) === 'Symbol(') {
2689
- name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
2690
- }
2691
- if (!hasOwn$c(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
2692
- createNonEnumerableProperty$5(value, 'name', name);
2693
- }
2694
- state = enforceInternalState$1(value);
2695
- if (!state.source) {
2696
- state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
2697
- }
3020
+ var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
3021
+ if (String(name).slice(0, 7) === 'Symbol(') {
3022
+ name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
2698
3023
  }
2699
- if (O === global$u) {
2700
- if (simple) O[key] = value;
2701
- else setGlobal$1(key, value);
2702
- return;
2703
- } else if (!unsafe) {
2704
- delete O[key];
2705
- } else if (!noTargetGet && O[key]) {
2706
- simple = true;
3024
+ if (options && options.getter) name = 'get ' + name;
3025
+ if (options && options.setter) name = 'set ' + name;
3026
+ if (!hasOwn$c(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
3027
+ defineProperty$9(value, 'name', { value: name, configurable: true });
3028
+ }
3029
+ if (CONFIGURABLE_LENGTH && options && hasOwn$c(options, 'arity') && value.length !== options.arity) {
3030
+ defineProperty$9(value, 'length', { value: options.arity });
2707
3031
  }
2708
- if (simple) O[key] = value;
2709
- else createNonEnumerableProperty$5(O, key, value);
3032
+ try {
3033
+ if (options && hasOwn$c(options, 'constructor') && options.constructor) {
3034
+ if (DESCRIPTORS$9) defineProperty$9(value, 'prototype', { writable: false });
3035
+ // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
3036
+ } else if (value.prototype) value.prototype = undefined;
3037
+ } catch (error) { /* empty */ }
3038
+ var state = enforceInternalState$1(value);
3039
+ if (!hasOwn$c(state, 'source')) {
3040
+ state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
3041
+ } return value;
3042
+ };
3043
+
2710
3044
  // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
2711
- })(Function.prototype, 'toString', function toString() {
2712
- return isCallable$d(this) && getInternalState$4(this).source || inspectSource$1(this);
2713
- });
3045
+ // eslint-disable-next-line no-extend-native -- required
3046
+ Function.prototype.toString = makeBuiltIn$1(function toString() {
3047
+ return isCallable$e(this) && getInternalState$4(this).source || inspectSource$1(this);
3048
+ }, 'toString');
3049
+
3050
+ var isCallable$d = isCallable$m;
3051
+ var createNonEnumerableProperty$5 = createNonEnumerableProperty$7;
3052
+ var makeBuiltIn = makeBuiltIn$2.exports;
3053
+ var defineGlobalProperty$1 = defineGlobalProperty$3;
3054
+
3055
+ var defineBuiltIn$b = function (O, key, value, options) {
3056
+ if (!options) options = {};
3057
+ var simple = options.enumerable;
3058
+ var name = options.name !== undefined ? options.name : key;
3059
+ if (isCallable$d(value)) makeBuiltIn(value, name, options);
3060
+ if (options.global) {
3061
+ if (simple) O[key] = value;
3062
+ else defineGlobalProperty$1(key, value);
3063
+ } else {
3064
+ if (!options.unsafe) delete O[key];
3065
+ else if (O[key]) simple = true;
3066
+ if (simple) O[key] = value;
3067
+ else createNonEnumerableProperty$5(O, key, value);
3068
+ } return O;
3069
+ };
2714
3070
 
2715
3071
  var objectGetOwnPropertyNames = {};
2716
3072
 
2717
3073
  var ceil = Math.ceil;
2718
3074
  var floor$2 = Math.floor;
2719
3075
 
3076
+ // `Math.trunc` method
3077
+ // https://tc39.es/ecma262/#sec-math.trunc
3078
+ // eslint-disable-next-line es-x/no-math-trunc -- safe
3079
+ var mathTrunc = Math.trunc || function trunc(x) {
3080
+ var n = +x;
3081
+ return (n > 0 ? floor$2 : ceil)(n);
3082
+ };
3083
+
3084
+ var trunc = mathTrunc;
3085
+
2720
3086
  // `ToIntegerOrInfinity` abstract operation
2721
3087
  // https://tc39.es/ecma262/#sec-tointegerorinfinity
2722
3088
  var toIntegerOrInfinity$5 = function (argument) {
2723
3089
  var number = +argument;
2724
- // eslint-disable-next-line no-self-compare -- safe
2725
- return number !== number || number === 0 ? 0 : (number > 0 ? floor$2 : ceil)(number);
3090
+ // eslint-disable-next-line no-self-compare -- NaN check
3091
+ return number !== number || number === 0 ? 0 : trunc(number);
2726
3092
  };
2727
3093
 
2728
3094
  var toIntegerOrInfinity$4 = toIntegerOrInfinity$5;
@@ -2856,11 +3222,11 @@
2856
3222
  var hasOwn$a = hasOwnProperty_1;
2857
3223
  var ownKeys = ownKeys$1;
2858
3224
  var getOwnPropertyDescriptorModule$1 = objectGetOwnPropertyDescriptor;
2859
- var definePropertyModule$5 = objectDefineProperty;
3225
+ var definePropertyModule$4 = objectDefineProperty;
2860
3226
 
2861
3227
  var copyConstructorProperties$2 = function (target, source, exceptions) {
2862
3228
  var keys = ownKeys(source);
2863
- var defineProperty = definePropertyModule$5.f;
3229
+ var defineProperty = definePropertyModule$4.f;
2864
3230
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule$1.f;
2865
3231
  for (var i = 0; i < keys.length; i++) {
2866
3232
  var key = keys[i];
@@ -2870,8 +3236,8 @@
2870
3236
  }
2871
3237
  };
2872
3238
 
2873
- var fails$q = fails$x;
2874
- var isCallable$c = isCallable$l;
3239
+ var fails$q = fails$y;
3240
+ var isCallable$c = isCallable$m;
2875
3241
 
2876
3242
  var replacement = /#|\.prototype\./;
2877
3243
 
@@ -2893,28 +3259,28 @@
2893
3259
 
2894
3260
  var isForced_1 = isForced$3;
2895
3261
 
2896
- var global$t = global$N;
3262
+ var global$c = global$l;
2897
3263
  var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
2898
3264
  var createNonEnumerableProperty$4 = createNonEnumerableProperty$7;
2899
- var redefine$a = redefine$b.exports;
2900
- var setGlobal = setGlobal$3;
3265
+ var defineBuiltIn$a = defineBuiltIn$b;
3266
+ var defineGlobalProperty = defineGlobalProperty$3;
2901
3267
  var copyConstructorProperties$1 = copyConstructorProperties$2;
2902
3268
  var isForced$2 = isForced_1;
2903
3269
 
2904
3270
  /*
2905
- options.target - name of the target object
2906
- options.global - target is the global object
2907
- options.stat - export as static methods of target
2908
- options.proto - export as prototype methods of target
2909
- options.real - real prototype method for the `pure` version
2910
- options.forced - export even if the native feature is available
2911
- options.bind - bind methods to the target, required for the `pure` version
2912
- options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
2913
- options.unsafe - use the simple assignment of property instead of delete + defineProperty
2914
- options.sham - add a flag to not completely full polyfills
2915
- options.enumerable - export as enumerable property
2916
- options.noTargetGet - prevent calling a getter on target
2917
- options.name - the .name of the function if it does not match the key
3271
+ options.target - name of the target object
3272
+ options.global - target is the global object
3273
+ options.stat - export as static methods of target
3274
+ options.proto - export as prototype methods of target
3275
+ options.real - real prototype method for the `pure` version
3276
+ options.forced - export even if the native feature is available
3277
+ options.bind - bind methods to the target, required for the `pure` version
3278
+ options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
3279
+ options.unsafe - use the simple assignment of property instead of delete + defineProperty
3280
+ options.sham - add a flag to not completely full polyfills
3281
+ options.enumerable - export as enumerable property
3282
+ options.dontCallGetSet - prevent calling a getter on target
3283
+ options.name - the .name of the function if it does not match the key
2918
3284
  */
2919
3285
  var _export = function (options, source) {
2920
3286
  var TARGET = options.target;
@@ -2922,15 +3288,15 @@
2922
3288
  var STATIC = options.stat;
2923
3289
  var FORCED, target, key, targetProperty, sourceProperty, descriptor;
2924
3290
  if (GLOBAL) {
2925
- target = global$t;
3291
+ target = global$c;
2926
3292
  } else if (STATIC) {
2927
- target = global$t[TARGET] || setGlobal(TARGET, {});
3293
+ target = global$c[TARGET] || defineGlobalProperty(TARGET, {});
2928
3294
  } else {
2929
- target = (global$t[TARGET] || {}).prototype;
3295
+ target = (global$c[TARGET] || {}).prototype;
2930
3296
  }
2931
3297
  if (target) for (key in source) {
2932
3298
  sourceProperty = source[key];
2933
- if (options.noTargetGet) {
3299
+ if (options.dontCallGetSet) {
2934
3300
  descriptor = getOwnPropertyDescriptor$1(target, key);
2935
3301
  targetProperty = descriptor && descriptor.value;
2936
3302
  } else targetProperty = target[key];
@@ -2944,8 +3310,7 @@
2944
3310
  if (options.sham || (targetProperty && targetProperty.sham)) {
2945
3311
  createNonEnumerableProperty$4(sourceProperty, 'sham', true);
2946
3312
  }
2947
- // extend global
2948
- redefine$a(target, key, sourceProperty, options);
3313
+ defineBuiltIn$a(target, key, sourceProperty, options);
2949
3314
  }
2950
3315
  };
2951
3316
 
@@ -2958,14 +3323,13 @@
2958
3323
 
2959
3324
  var toStringTagSupport = String(test$1) === '[object z]';
2960
3325
 
2961
- var global$s = global$N;
2962
3326
  var TO_STRING_TAG_SUPPORT$2 = toStringTagSupport;
2963
- var isCallable$b = isCallable$l;
3327
+ var isCallable$b = isCallable$m;
2964
3328
  var classofRaw = classofRaw$1;
2965
3329
  var wellKnownSymbol$m = wellKnownSymbol$p;
2966
3330
 
2967
3331
  var TO_STRING_TAG$2 = wellKnownSymbol$m('toStringTag');
2968
- var Object$2 = global$s.Object;
3332
+ var $Object$1 = Object;
2969
3333
 
2970
3334
  // ES3 wrong here
2971
3335
  var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
@@ -2982,21 +3346,20 @@
2982
3346
  var O, tag, result;
2983
3347
  return it === undefined ? 'Undefined' : it === null ? 'Null'
2984
3348
  // @@toStringTag case
2985
- : typeof (tag = tryGet(O = Object$2(it), TO_STRING_TAG$2)) == 'string' ? tag
3349
+ : typeof (tag = tryGet(O = $Object$1(it), TO_STRING_TAG$2)) == 'string' ? tag
2986
3350
  // builtinTag case
2987
3351
  : CORRECT_ARGUMENTS ? classofRaw(O)
2988
3352
  // ES3 arguments fallback
2989
3353
  : (result = classofRaw(O)) == 'Object' && isCallable$b(O.callee) ? 'Arguments' : result;
2990
3354
  };
2991
3355
 
2992
- var global$r = global$N;
2993
3356
  var classof$9 = classof$a;
2994
3357
 
2995
- var String$2 = global$r.String;
3358
+ var $String$1 = String;
2996
3359
 
2997
3360
  var toString$e = function (argument) {
2998
3361
  if (classof$9(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
2999
- return String$2(argument);
3362
+ return $String$1(argument);
3000
3363
  };
3001
3364
 
3002
3365
  var objectDefineProperties = {};
@@ -3013,7 +3376,7 @@
3013
3376
 
3014
3377
  var DESCRIPTORS$8 = descriptors;
3015
3378
  var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
3016
- var definePropertyModule$4 = objectDefineProperty;
3379
+ var definePropertyModule$3 = objectDefineProperty;
3017
3380
  var anObject$d = anObject$g;
3018
3381
  var toIndexedObject$6 = toIndexedObject$a;
3019
3382
  var objectKeys$3 = objectKeys$4;
@@ -3028,7 +3391,7 @@
3028
3391
  var length = keys.length;
3029
3392
  var index = 0;
3030
3393
  var key;
3031
- while (length > index) definePropertyModule$4.f(O, key = keys[index++], props[key]);
3394
+ while (length > index) definePropertyModule$3.f(O, key = keys[index++], props[key]);
3032
3395
  return O;
3033
3396
  };
3034
3397
 
@@ -3125,28 +3488,27 @@
3125
3488
 
3126
3489
  'use strict';
3127
3490
  var toPropertyKey$1 = toPropertyKey$4;
3128
- var definePropertyModule$3 = objectDefineProperty;
3491
+ var definePropertyModule$2 = objectDefineProperty;
3129
3492
  var createPropertyDescriptor$2 = createPropertyDescriptor$5;
3130
3493
 
3131
3494
  var createProperty$5 = function (object, key, value) {
3132
3495
  var propertyKey = toPropertyKey$1(key);
3133
- if (propertyKey in object) definePropertyModule$3.f(object, propertyKey, createPropertyDescriptor$2(0, value));
3496
+ if (propertyKey in object) definePropertyModule$2.f(object, propertyKey, createPropertyDescriptor$2(0, value));
3134
3497
  else object[propertyKey] = value;
3135
3498
  };
3136
3499
 
3137
- var global$q = global$N;
3138
3500
  var toAbsoluteIndex$2 = toAbsoluteIndex$4;
3139
3501
  var lengthOfArrayLike$8 = lengthOfArrayLike$a;
3140
3502
  var createProperty$4 = createProperty$5;
3141
3503
 
3142
- var Array$4 = global$q.Array;
3504
+ var $Array$3 = Array;
3143
3505
  var max$3 = Math.max;
3144
3506
 
3145
3507
  var arraySliceSimple = function (O, start, end) {
3146
3508
  var length = lengthOfArrayLike$8(O);
3147
3509
  var k = toAbsoluteIndex$2(start, length);
3148
3510
  var fin = toAbsoluteIndex$2(end === undefined ? length : end, length);
3149
- var result = Array$4(max$3(fin - k, 0));
3511
+ var result = $Array$3(max$3(fin - k, 0));
3150
3512
  for (var n = 0; k < fin; k++, n++) createProperty$4(result, n, O[k]);
3151
3513
  result.length = n;
3152
3514
  return result;
@@ -3183,18 +3545,18 @@
3183
3545
 
3184
3546
  var f = wellKnownSymbolWrapped.f = wellKnownSymbol$l;
3185
3547
 
3186
- var global$p = global$N;
3548
+ var global$b = global$l;
3187
3549
 
3188
- var path$1 = global$p;
3550
+ var path$1 = global$b;
3189
3551
 
3190
3552
  var path = path$1;
3191
3553
  var hasOwn$9 = hasOwnProperty_1;
3192
3554
  var wrappedWellKnownSymbolModule$1 = wellKnownSymbolWrapped;
3193
- var defineProperty$7 = objectDefineProperty.f;
3555
+ var defineProperty$8 = objectDefineProperty.f;
3194
3556
 
3195
3557
  var defineWellKnownSymbol$1 = function (NAME) {
3196
3558
  var Symbol = path.Symbol || (path.Symbol = {});
3197
- if (!hasOwn$9(Symbol, NAME)) defineProperty$7(Symbol, NAME, {
3559
+ if (!hasOwn$9(Symbol, NAME)) defineProperty$8(Symbol, NAME, {
3198
3560
  value: wrappedWellKnownSymbolModule$1.f(NAME)
3199
3561
  });
3200
3562
  };
@@ -3202,7 +3564,7 @@
3202
3564
  var call$e = functionCall;
3203
3565
  var getBuiltIn$4 = getBuiltIn$9;
3204
3566
  var wellKnownSymbol$k = wellKnownSymbol$p;
3205
- var redefine$9 = redefine$b.exports;
3567
+ var defineBuiltIn$9 = defineBuiltIn$b;
3206
3568
 
3207
3569
  var symbolDefineToPrimitive = function () {
3208
3570
  var Symbol = getBuiltIn$4('Symbol');
@@ -3214,13 +3576,13 @@
3214
3576
  // `Symbol.prototype[@@toPrimitive]` method
3215
3577
  // https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive
3216
3578
  // eslint-disable-next-line no-unused-vars -- required for .length
3217
- redefine$9(SymbolPrototype, TO_PRIMITIVE, function (hint) {
3579
+ defineBuiltIn$9(SymbolPrototype, TO_PRIMITIVE, function (hint) {
3218
3580
  return call$e(valueOf, this);
3219
- });
3581
+ }, { arity: 1 });
3220
3582
  }
3221
3583
  };
3222
3584
 
3223
- var defineProperty$6 = objectDefineProperty.f;
3585
+ var defineProperty$7 = objectDefineProperty.f;
3224
3586
  var hasOwn$8 = hasOwnProperty_1;
3225
3587
  var wellKnownSymbol$j = wellKnownSymbol$p;
3226
3588
 
@@ -3229,7 +3591,7 @@
3229
3591
  var setToStringTag$4 = function (target, TAG, STATIC) {
3230
3592
  if (target && !STATIC) target = target.prototype;
3231
3593
  if (target && !hasOwn$8(target, TO_STRING_TAG$1)) {
3232
- defineProperty$6(target, TO_STRING_TAG$1, { configurable: true, value: TAG });
3594
+ defineProperty$7(target, TO_STRING_TAG$1, { configurable: true, value: TAG });
3233
3595
  }
3234
3596
  };
3235
3597
 
@@ -3257,8 +3619,8 @@
3257
3619
  };
3258
3620
 
3259
3621
  var uncurryThis$o = functionUncurryThis;
3260
- var fails$p = fails$x;
3261
- var isCallable$a = isCallable$l;
3622
+ var fails$p = fails$y;
3623
+ var isCallable$a = isCallable$m;
3262
3624
  var classof$6 = classof$a;
3263
3625
  var getBuiltIn$3 = getBuiltIn$9;
3264
3626
  var inspectSource = inspectSource$3;
@@ -3309,14 +3671,13 @@
3309
3671
  || called;
3310
3672
  }) ? isConstructorLegacy : isConstructorModern;
3311
3673
 
3312
- var global$o = global$N;
3313
3674
  var isArray$3 = isArray$4;
3314
3675
  var isConstructor$3 = isConstructor$4;
3315
3676
  var isObject$8 = isObject$e;
3316
3677
  var wellKnownSymbol$i = wellKnownSymbol$p;
3317
3678
 
3318
3679
  var SPECIES$5 = wellKnownSymbol$i('species');
3319
- var Array$3 = global$o.Array;
3680
+ var $Array$2 = Array;
3320
3681
 
3321
3682
  // a part of `ArraySpeciesCreate` abstract operation
3322
3683
  // https://tc39.es/ecma262/#sec-arrayspeciescreate
@@ -3325,12 +3686,12 @@
3325
3686
  if (isArray$3(originalArray)) {
3326
3687
  C = originalArray.constructor;
3327
3688
  // cross-realm fallback
3328
- if (isConstructor$3(C) && (C === Array$3 || isArray$3(C.prototype))) C = undefined;
3689
+ if (isConstructor$3(C) && (C === $Array$2 || isArray$3(C.prototype))) C = undefined;
3329
3690
  else if (isObject$8(C)) {
3330
3691
  C = C[SPECIES$5];
3331
3692
  if (C === null) C = undefined;
3332
3693
  }
3333
- } return C === undefined ? Array$3 : C;
3694
+ } return C === undefined ? $Array$2 : C;
3334
3695
  };
3335
3696
 
3336
3697
  var arraySpeciesConstructor = arraySpeciesConstructor$1;
@@ -3417,13 +3778,13 @@
3417
3778
 
3418
3779
  'use strict';
3419
3780
  var $$r = _export;
3420
- var global$n = global$N;
3781
+ var global$a = global$l;
3421
3782
  var call$d = functionCall;
3422
3783
  var uncurryThis$m = functionUncurryThis;
3423
3784
  var IS_PURE$4 = isPure;
3424
3785
  var DESCRIPTORS$7 = descriptors;
3425
3786
  var NATIVE_SYMBOL$4 = nativeSymbol;
3426
- var fails$o = fails$x;
3787
+ var fails$o = fails$y;
3427
3788
  var hasOwn$7 = hasOwnProperty_1;
3428
3789
  var isPrototypeOf$5 = objectIsPrototypeOf;
3429
3790
  var anObject$b = anObject$g;
@@ -3437,10 +3798,10 @@
3437
3798
  var getOwnPropertyNamesExternal = objectGetOwnPropertyNamesExternal;
3438
3799
  var getOwnPropertySymbolsModule$2 = objectGetOwnPropertySymbols;
3439
3800
  var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
3440
- var definePropertyModule$2 = objectDefineProperty;
3801
+ var definePropertyModule$1 = objectDefineProperty;
3441
3802
  var definePropertiesModule = objectDefineProperties;
3442
3803
  var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
3443
- var redefine$8 = redefine$b.exports;
3804
+ var defineBuiltIn$8 = defineBuiltIn$b;
3444
3805
  var shared$3 = shared$7.exports;
3445
3806
  var sharedKey$1 = sharedKey$4;
3446
3807
  var hiddenKeys$1 = hiddenKeys$6;
@@ -3461,12 +3822,12 @@
3461
3822
  var getInternalState$3 = InternalStateModule$3.getterFor(SYMBOL);
3462
3823
 
3463
3824
  var ObjectPrototype$1 = Object[PROTOTYPE];
3464
- var $Symbol = global$n.Symbol;
3825
+ var $Symbol = global$a.Symbol;
3465
3826
  var SymbolPrototype$1 = $Symbol && $Symbol[PROTOTYPE];
3466
- var TypeError$b = global$n.TypeError;
3467
- var QObject = global$n.QObject;
3827
+ var TypeError$1 = global$a.TypeError;
3828
+ var QObject = global$a.QObject;
3468
3829
  var nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
3469
- var nativeDefineProperty = definePropertyModule$2.f;
3830
+ var nativeDefineProperty = definePropertyModule$1.f;
3470
3831
  var nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f;
3471
3832
  var nativePropertyIsEnumerable = propertyIsEnumerableModule$1.f;
3472
3833
  var push$4 = uncurryThis$m([].push);
@@ -3577,7 +3938,7 @@
3577
3938
  // https://tc39.es/ecma262/#sec-symbol-constructor
3578
3939
  if (!NATIVE_SYMBOL$4) {
3579
3940
  $Symbol = function Symbol() {
3580
- if (isPrototypeOf$5(SymbolPrototype$1, this)) throw TypeError$b('Symbol is not a constructor');
3941
+ if (isPrototypeOf$5(SymbolPrototype$1, this)) throw TypeError$1('Symbol is not a constructor');
3581
3942
  var description = !arguments.length || arguments[0] === undefined ? undefined : $toString$1(arguments[0]);
3582
3943
  var tag = uid$1(description);
3583
3944
  var setter = function (value) {
@@ -3591,16 +3952,16 @@
3591
3952
 
3592
3953
  SymbolPrototype$1 = $Symbol[PROTOTYPE];
3593
3954
 
3594
- redefine$8(SymbolPrototype$1, 'toString', function toString() {
3955
+ defineBuiltIn$8(SymbolPrototype$1, 'toString', function toString() {
3595
3956
  return getInternalState$3(this).tag;
3596
3957
  });
3597
3958
 
3598
- redefine$8($Symbol, 'withoutSetter', function (description) {
3959
+ defineBuiltIn$8($Symbol, 'withoutSetter', function (description) {
3599
3960
  return wrap(uid$1(description), description);
3600
3961
  });
3601
3962
 
3602
3963
  propertyIsEnumerableModule$1.f = $propertyIsEnumerable$1;
3603
- definePropertyModule$2.f = $defineProperty;
3964
+ definePropertyModule$1.f = $defineProperty;
3604
3965
  definePropertiesModule.f = $defineProperties;
3605
3966
  getOwnPropertyDescriptorModule.f = $getOwnPropertyDescriptor;
3606
3967
  getOwnPropertyNamesModule$1.f = getOwnPropertyNamesExternal.f = $getOwnPropertyNames;
@@ -3619,12 +3980,12 @@
3619
3980
  }
3620
3981
  });
3621
3982
  if (!IS_PURE$4) {
3622
- redefine$8(ObjectPrototype$1, 'propertyIsEnumerable', $propertyIsEnumerable$1, { unsafe: true });
3983
+ defineBuiltIn$8(ObjectPrototype$1, 'propertyIsEnumerable', $propertyIsEnumerable$1, { unsafe: true });
3623
3984
  }
3624
3985
  }
3625
3986
  }
3626
3987
 
3627
- $$r({ global: true, wrap: true, forced: !NATIVE_SYMBOL$4, sham: !NATIVE_SYMBOL$4 }, {
3988
+ $$r({ global: true, constructor: true, wrap: true, forced: !NATIVE_SYMBOL$4, sham: !NATIVE_SYMBOL$4 }, {
3628
3989
  Symbol: $Symbol
3629
3990
  });
3630
3991
 
@@ -3703,7 +4064,7 @@
3703
4064
  var $$p = _export;
3704
4065
  var hasOwn$5 = hasOwnProperty_1;
3705
4066
  var isSymbol$1 = isSymbol$4;
3706
- var tryToString$3 = tryToString$5;
4067
+ var tryToString$4 = tryToString$6;
3707
4068
  var shared$1 = shared$7.exports;
3708
4069
  var NATIVE_SYMBOL_REGISTRY = nativeSymbolRegistry;
3709
4070
 
@@ -3713,7 +4074,7 @@
3713
4074
  // https://tc39.es/ecma262/#sec-symbol.keyfor
3714
4075
  $$p({ target: 'Symbol', stat: true, forced: !NATIVE_SYMBOL_REGISTRY }, {
3715
4076
  keyFor: function keyFor(sym) {
3716
- if (!isSymbol$1(sym)) throw TypeError(tryToString$3(sym) + ' is not a symbol');
4077
+ if (!isSymbol$1(sym)) throw TypeError(tryToString$4(sym) + ' is not a symbol');
3717
4078
  if (hasOwn$5(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym];
3718
4079
  }
3719
4080
  });
@@ -3740,9 +4101,9 @@
3740
4101
  var apply$2 = functionApply;
3741
4102
  var call$b = functionCall;
3742
4103
  var uncurryThis$k = functionUncurryThis;
3743
- var fails$n = fails$x;
4104
+ var fails$n = fails$y;
3744
4105
  var isArray$2 = isArray$4;
3745
- var isCallable$9 = isCallable$l;
4106
+ var isCallable$9 = isCallable$m;
3746
4107
  var isObject$7 = isObject$e;
3747
4108
  var isSymbol = isSymbol$4;
3748
4109
  var arraySlice$2 = arraySlice$3;
@@ -3798,7 +4159,7 @@
3798
4159
  if ($stringify) {
3799
4160
  // `JSON.stringify` method
3800
4161
  // https://tc39.es/ecma262/#sec-json.stringify
3801
- $$o({ target: 'JSON', stat: true, forced: WRONG_SYMBOLS_CONVERSION || ILL_FORMED_UNICODE }, {
4162
+ $$o({ target: 'JSON', stat: true, arity: 3, forced: WRONG_SYMBOLS_CONVERSION || ILL_FORMED_UNICODE }, {
3802
4163
  // eslint-disable-next-line no-unused-vars -- required for `.length`
3803
4164
  stringify: function stringify(it, replacer, space) {
3804
4165
  var args = arraySlice$2(arguments);
@@ -3812,7 +4173,7 @@
3812
4173
 
3813
4174
  var $$n = _export;
3814
4175
  var NATIVE_SYMBOL$1 = nativeSymbol;
3815
- var fails$m = fails$x;
4176
+ var fails$m = fails$y;
3816
4177
  var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
3817
4178
  var toObject$8 = toObject$b;
3818
4179
 
@@ -3836,16 +4197,16 @@
3836
4197
  'use strict';
3837
4198
  var $$m = _export;
3838
4199
  var DESCRIPTORS$6 = descriptors;
3839
- var global$m = global$N;
4200
+ var global$9 = global$l;
3840
4201
  var uncurryThis$j = functionUncurryThis;
3841
4202
  var hasOwn$4 = hasOwnProperty_1;
3842
- var isCallable$8 = isCallable$l;
4203
+ var isCallable$8 = isCallable$m;
3843
4204
  var isPrototypeOf$4 = objectIsPrototypeOf;
3844
4205
  var toString$c = toString$e;
3845
- var defineProperty$5 = objectDefineProperty.f;
4206
+ var defineProperty$6 = objectDefineProperty.f;
3846
4207
  var copyConstructorProperties = copyConstructorProperties$2;
3847
4208
 
3848
- var NativeSymbol = global$m.Symbol;
4209
+ var NativeSymbol = global$9.Symbol;
3849
4210
  var SymbolPrototype = NativeSymbol && NativeSymbol.prototype;
3850
4211
 
3851
4212
  if (DESCRIPTORS$6 && isCallable$8(NativeSymbol) && (!('description' in SymbolPrototype) ||
@@ -3875,7 +4236,7 @@
3875
4236
  var replace$5 = uncurryThis$j(''.replace);
3876
4237
  var stringSlice$7 = uncurryThis$j(''.slice);
3877
4238
 
3878
- defineProperty$5(SymbolPrototype, 'description', {
4239
+ defineProperty$6(SymbolPrototype, 'description', {
3879
4240
  configurable: true,
3880
4241
  get: function description() {
3881
4242
  var symbol = symbolValueOf(this);
@@ -3886,7 +4247,7 @@
3886
4247
  }
3887
4248
  });
3888
4249
 
3889
- $$m({ global: true, forced: true }, {
4250
+ $$m({ global: true, constructor: true, forced: true }, {
3890
4251
  Symbol: SymbolWrapper
3891
4252
  });
3892
4253
  }
@@ -3904,13 +4265,13 @@
3904
4265
  };
3905
4266
 
3906
4267
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
3907
- var redefine$7 = redefine$b.exports;
4268
+ var defineBuiltIn$7 = defineBuiltIn$b;
3908
4269
  var toString$b = objectToString;
3909
4270
 
3910
4271
  // `Object.prototype.toString` method
3911
4272
  // https://tc39.es/ecma262/#sec-object.prototype.tostring
3912
4273
  if (!TO_STRING_TAG_SUPPORT) {
3913
- redefine$7(Object.prototype, 'toString', toString$b, { unsafe: true });
4274
+ defineBuiltIn$7(Object.prototype, 'toString', toString$b, { unsafe: true });
3914
4275
  }
3915
4276
 
3916
4277
  var es_object_entries = {};
@@ -3965,7 +4326,15 @@
3965
4326
 
3966
4327
  var es_array_concat = {};
3967
4328
 
3968
- var fails$l = fails$x;
4329
+ var $TypeError$9 = TypeError;
4330
+ var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
4331
+
4332
+ var doesNotExceedSafeInteger$2 = function (it) {
4333
+ if (it > MAX_SAFE_INTEGER) throw $TypeError$9('Maximum allowed index exceeded');
4334
+ return it;
4335
+ };
4336
+
4337
+ var fails$l = fails$y;
3969
4338
  var wellKnownSymbol$g = wellKnownSymbol$p;
3970
4339
  var V8_VERSION$1 = engineV8Version;
3971
4340
 
@@ -3987,12 +4356,12 @@
3987
4356
 
3988
4357
  'use strict';
3989
4358
  var $$k = _export;
3990
- var global$l = global$N;
3991
- var fails$k = fails$x;
4359
+ var fails$k = fails$y;
3992
4360
  var isArray$1 = isArray$4;
3993
4361
  var isObject$6 = isObject$e;
3994
4362
  var toObject$7 = toObject$b;
3995
4363
  var lengthOfArrayLike$6 = lengthOfArrayLike$a;
4364
+ var doesNotExceedSafeInteger$1 = doesNotExceedSafeInteger$2;
3996
4365
  var createProperty$3 = createProperty$5;
3997
4366
  var arraySpeciesCreate$1 = arraySpeciesCreate$3;
3998
4367
  var arrayMethodHasSpeciesSupport$4 = arrayMethodHasSpeciesSupport$5;
@@ -4000,9 +4369,6 @@
4000
4369
  var V8_VERSION = engineV8Version;
4001
4370
 
4002
4371
  var IS_CONCAT_SPREADABLE = wellKnownSymbol$f('isConcatSpreadable');
4003
- var MAX_SAFE_INTEGER$1 = 0x1FFFFFFFFFFFFF;
4004
- var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
4005
- var TypeError$a = global$l.TypeError;
4006
4372
 
4007
4373
  // We can't use this feature detection in V8 since it causes
4008
4374
  // deoptimization and serious performance degradation
@@ -4026,7 +4392,7 @@
4026
4392
  // `Array.prototype.concat` method
4027
4393
  // https://tc39.es/ecma262/#sec-array.prototype.concat
4028
4394
  // with adding support of @@isConcatSpreadable and @@species
4029
- $$k({ target: 'Array', proto: true, forced: FORCED$2 }, {
4395
+ $$k({ target: 'Array', proto: true, arity: 1, forced: FORCED$2 }, {
4030
4396
  // eslint-disable-next-line no-unused-vars -- required for `.length`
4031
4397
  concat: function concat(arg) {
4032
4398
  var O = toObject$7(this);
@@ -4037,10 +4403,10 @@
4037
4403
  E = i === -1 ? O : arguments[i];
4038
4404
  if (isConcatSpreadable(E)) {
4039
4405
  len = lengthOfArrayLike$6(E);
4040
- if (n + len > MAX_SAFE_INTEGER$1) throw TypeError$a(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
4406
+ doesNotExceedSafeInteger$1(n + len);
4041
4407
  for (k = 0; k < len; k++, n++) if (k in E) createProperty$3(A, n, E[k]);
4042
4408
  } else {
4043
- if (n >= MAX_SAFE_INTEGER$1) throw TypeError$a(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
4409
+ doesNotExceedSafeInteger$1(n + 1);
4044
4410
  createProperty$3(A, n++, E);
4045
4411
  }
4046
4412
  }
@@ -4087,11 +4453,11 @@
4087
4453
  return result;
4088
4454
  };
4089
4455
 
4090
- var fails$j = fails$x;
4091
- var global$k = global$N;
4456
+ var fails$j = fails$y;
4457
+ var global$8 = global$l;
4092
4458
 
4093
4459
  // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
4094
- var $RegExp$2 = global$k.RegExp;
4460
+ var $RegExp$2 = global$8.RegExp;
4095
4461
 
4096
4462
  var UNSUPPORTED_Y$3 = fails$j(function () {
4097
4463
  var re = $RegExp$2('a', 'y');
@@ -4118,22 +4484,22 @@
4118
4484
  UNSUPPORTED_Y: UNSUPPORTED_Y$3
4119
4485
  };
4120
4486
 
4121
- var fails$i = fails$x;
4122
- var global$j = global$N;
4487
+ var fails$i = fails$y;
4488
+ var global$7 = global$l;
4123
4489
 
4124
4490
  // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
4125
- var $RegExp$1 = global$j.RegExp;
4491
+ var $RegExp$1 = global$7.RegExp;
4126
4492
 
4127
4493
  var regexpUnsupportedDotAll = fails$i(function () {
4128
4494
  var re = $RegExp$1('.', 's');
4129
4495
  return !(re.dotAll && re.exec('\n') && re.flags === 's');
4130
4496
  });
4131
4497
 
4132
- var fails$h = fails$x;
4133
- var global$i = global$N;
4498
+ var fails$h = fails$y;
4499
+ var global$6 = global$l;
4134
4500
 
4135
4501
  // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
4136
- var $RegExp = global$i.RegExp;
4502
+ var $RegExp = global$6.RegExp;
4137
4503
 
4138
4504
  var regexpUnsupportedNcg = fails$h(function () {
4139
4505
  var re = $RegExp('(?<a>b)', 'g');
@@ -4275,9 +4641,9 @@
4275
4641
  // TODO: Remove from `core-js@4` since it's moved to entry points
4276
4642
 
4277
4643
  var uncurryThis$g = functionUncurryThis;
4278
- var redefine$6 = redefine$b.exports;
4644
+ var defineBuiltIn$6 = defineBuiltIn$b;
4279
4645
  var regexpExec$2 = regexpExec$3;
4280
- var fails$g = fails$x;
4646
+ var fails$g = fails$y;
4281
4647
  var wellKnownSymbol$e = wellKnownSymbol$p;
4282
4648
  var createNonEnumerableProperty$3 = createNonEnumerableProperty$7;
4283
4649
 
@@ -4339,8 +4705,8 @@
4339
4705
  return { done: false };
4340
4706
  });
4341
4707
 
4342
- redefine$6(String.prototype, KEY, methods[0]);
4343
- redefine$6(RegExpPrototype$3, SYMBOL, methods[1]);
4708
+ defineBuiltIn$6(String.prototype, KEY, methods[0]);
4709
+ defineBuiltIn$6(RegExpPrototype$3, SYMBOL, methods[1]);
4344
4710
  }
4345
4711
 
4346
4712
  if (SHAM) createNonEnumerableProperty$3(RegExpPrototype$3[SYMBOL], 'sham', true);
@@ -4359,16 +4725,15 @@
4359
4725
  return isObject$5(it) && ((isRegExp = it[MATCH$2]) !== undefined ? !!isRegExp : classof$4(it) == 'RegExp');
4360
4726
  };
4361
4727
 
4362
- var global$h = global$N;
4363
4728
  var isConstructor$2 = isConstructor$4;
4364
- var tryToString$2 = tryToString$5;
4729
+ var tryToString$3 = tryToString$6;
4365
4730
 
4366
- var TypeError$9 = global$h.TypeError;
4731
+ var $TypeError$8 = TypeError;
4367
4732
 
4368
4733
  // `Assert: IsConstructor(argument) is true`
4369
4734
  var aConstructor$1 = function (argument) {
4370
4735
  if (isConstructor$2(argument)) return argument;
4371
- throw TypeError$9(tryToString$2(argument) + ' is not a constructor');
4736
+ throw $TypeError$8(tryToString$3(argument) + ' is not a constructor');
4372
4737
  };
4373
4738
 
4374
4739
  var anObject$9 = anObject$g;
@@ -4431,14 +4796,13 @@
4431
4796
  return index + (unicode ? charAt$4(S, index).length : 1);
4432
4797
  };
4433
4798
 
4434
- var global$g = global$N;
4435
4799
  var call$9 = functionCall;
4436
4800
  var anObject$8 = anObject$g;
4437
- var isCallable$7 = isCallable$l;
4801
+ var isCallable$7 = isCallable$m;
4438
4802
  var classof$3 = classofRaw$1;
4439
4803
  var regexpExec$1 = regexpExec$3;
4440
4804
 
4441
- var TypeError$8 = global$g.TypeError;
4805
+ var $TypeError$7 = TypeError;
4442
4806
 
4443
4807
  // `RegExpExec` abstract operation
4444
4808
  // https://tc39.es/ecma262/#sec-regexpexec
@@ -4450,7 +4814,7 @@
4450
4814
  return result;
4451
4815
  }
4452
4816
  if (classof$3(R) === 'RegExp') return call$9(regexpExec$1, R, S);
4453
- throw TypeError$8('RegExp#exec called on incompatible receiver');
4817
+ throw $TypeError$7('RegExp#exec called on incompatible receiver');
4454
4818
  };
4455
4819
 
4456
4820
  'use strict';
@@ -4470,7 +4834,7 @@
4470
4834
  var callRegExpExec = regexpExecAbstract;
4471
4835
  var regexpExec = regexpExec$3;
4472
4836
  var stickyHelpers$1 = regexpStickyHelpers;
4473
- var fails$f = fails$x;
4837
+ var fails$f = fails$y;
4474
4838
 
4475
4839
  var UNSUPPORTED_Y$1 = stickyHelpers$1.UNSUPPORTED_Y;
4476
4840
  var MAX_UINT32 = 0xFFFFFFFF;
@@ -4613,7 +4977,7 @@
4613
4977
  var es_array_join = {};
4614
4978
 
4615
4979
  'use strict';
4616
- var fails$e = fails$x;
4980
+ var fails$e = fails$y;
4617
4981
 
4618
4982
  var arrayMethodIsStrict$4 = function (METHOD_NAME, argument) {
4619
4983
  var method = [][METHOD_NAME];
@@ -4707,23 +5071,21 @@
4707
5071
  || Iterators$3[classof$2(it)];
4708
5072
  };
4709
5073
 
4710
- var global$f = global$N;
4711
5074
  var call$6 = functionCall;
4712
5075
  var aCallable$2 = aCallable$5;
4713
5076
  var anObject$4 = anObject$g;
4714
- var tryToString$1 = tryToString$5;
5077
+ var tryToString$2 = tryToString$6;
4715
5078
  var getIteratorMethod$2 = getIteratorMethod$3;
4716
5079
 
4717
- var TypeError$7 = global$f.TypeError;
5080
+ var $TypeError$6 = TypeError;
4718
5081
 
4719
5082
  var getIterator$2 = function (argument, usingIterator) {
4720
5083
  var iteratorMethod = arguments.length < 2 ? getIteratorMethod$2(argument) : usingIterator;
4721
5084
  if (aCallable$2(iteratorMethod)) return anObject$4(call$6(iteratorMethod, argument));
4722
- throw TypeError$7(tryToString$1(argument) + ' is not iterable');
5085
+ throw $TypeError$6(tryToString$2(argument) + ' is not iterable');
4723
5086
  };
4724
5087
 
4725
5088
  'use strict';
4726
- var global$e = global$N;
4727
5089
  var bind$2 = functionBindContext;
4728
5090
  var call$5 = functionCall;
4729
5091
  var toObject$6 = toObject$b;
@@ -4735,7 +5097,7 @@
4735
5097
  var getIterator$1 = getIterator$2;
4736
5098
  var getIteratorMethod$1 = getIteratorMethod$3;
4737
5099
 
4738
- var Array$2 = global$e.Array;
5100
+ var $Array$1 = Array;
4739
5101
 
4740
5102
  // `Array.from` method implementation
4741
5103
  // https://tc39.es/ecma262/#sec-array.from
@@ -4750,7 +5112,7 @@
4750
5112
  var index = 0;
4751
5113
  var length, result, step, iterator, next, value;
4752
5114
  // if the target is not iterable or it's an array with the default iterator - use a simple case
4753
- if (iteratorMethod && !(this == Array$2 && isArrayIteratorMethod$1(iteratorMethod))) {
5115
+ if (iteratorMethod && !(this === $Array$1 && isArrayIteratorMethod$1(iteratorMethod))) {
4754
5116
  iterator = getIterator$1(O, iteratorMethod);
4755
5117
  next = iterator.next;
4756
5118
  result = IS_CONSTRUCTOR ? new this() : [];
@@ -4760,7 +5122,7 @@
4760
5122
  }
4761
5123
  } else {
4762
5124
  length = lengthOfArrayLike$5(O);
4763
- result = IS_CONSTRUCTOR ? new this(length) : Array$2(length);
5125
+ result = IS_CONSTRUCTOR ? new this(length) : $Array$1(length);
4764
5126
  for (;length > index; index++) {
4765
5127
  value = mapping ? mapfn(O[index], index) : O[index];
4766
5128
  createProperty$2(result, index, value);
@@ -4826,7 +5188,7 @@
4826
5188
 
4827
5189
  var es_string_iterator = {};
4828
5190
 
4829
- var fails$d = fails$x;
5191
+ var fails$d = fails$y;
4830
5192
 
4831
5193
  var correctPrototypeGetter = !fails$d(function () {
4832
5194
  function F() { /* empty */ }
@@ -4835,34 +5197,34 @@
4835
5197
  return Object.getPrototypeOf(new F()) !== F.prototype;
4836
5198
  });
4837
5199
 
4838
- var global$d = global$N;
4839
5200
  var hasOwn$3 = hasOwnProperty_1;
4840
- var isCallable$6 = isCallable$l;
5201
+ var isCallable$6 = isCallable$m;
4841
5202
  var toObject$5 = toObject$b;
4842
5203
  var sharedKey = sharedKey$4;
4843
5204
  var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
4844
5205
 
4845
5206
  var IE_PROTO = sharedKey('IE_PROTO');
4846
- var Object$1 = global$d.Object;
4847
- var ObjectPrototype = Object$1.prototype;
5207
+ var $Object = Object;
5208
+ var ObjectPrototype = $Object.prototype;
4848
5209
 
4849
5210
  // `Object.getPrototypeOf` method
4850
5211
  // https://tc39.es/ecma262/#sec-object.getprototypeof
4851
- var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? Object$1.getPrototypeOf : function (O) {
5212
+ // eslint-disable-next-line es-x/no-object-getprototypeof -- safe
5213
+ var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
4852
5214
  var object = toObject$5(O);
4853
5215
  if (hasOwn$3(object, IE_PROTO)) return object[IE_PROTO];
4854
5216
  var constructor = object.constructor;
4855
5217
  if (isCallable$6(constructor) && object instanceof constructor) {
4856
5218
  return constructor.prototype;
4857
- } return object instanceof Object$1 ? ObjectPrototype : null;
5219
+ } return object instanceof $Object ? ObjectPrototype : null;
4858
5220
  };
4859
5221
 
4860
5222
  'use strict';
4861
- var fails$c = fails$x;
4862
- var isCallable$5 = isCallable$l;
5223
+ var fails$c = fails$y;
5224
+ var isCallable$5 = isCallable$m;
4863
5225
  var create$3 = objectCreate;
4864
5226
  var getPrototypeOf$1 = objectGetPrototypeOf;
4865
- var redefine$5 = redefine$b.exports;
5227
+ var defineBuiltIn$5 = defineBuiltIn$b;
4866
5228
  var wellKnownSymbol$8 = wellKnownSymbol$p;
4867
5229
  var IS_PURE$3 = isPure;
4868
5230
 
@@ -4896,7 +5258,7 @@
4896
5258
  // `%IteratorPrototype%[@@iterator]()` method
4897
5259
  // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
4898
5260
  if (!isCallable$5(IteratorPrototype$2[ITERATOR$3])) {
4899
- redefine$5(IteratorPrototype$2, ITERATOR$3, function () {
5261
+ defineBuiltIn$5(IteratorPrototype$2, ITERATOR$3, function () {
4900
5262
  return this;
4901
5263
  });
4902
5264
  }
@@ -4923,15 +5285,14 @@
4923
5285
  return IteratorConstructor;
4924
5286
  };
4925
5287
 
4926
- var global$c = global$N;
4927
- var isCallable$4 = isCallable$l;
5288
+ var isCallable$4 = isCallable$m;
4928
5289
 
4929
- var String$1 = global$c.String;
4930
- var TypeError$6 = global$c.TypeError;
5290
+ var $String = String;
5291
+ var $TypeError$5 = TypeError;
4931
5292
 
4932
5293
  var aPossiblePrototype$1 = function (argument) {
4933
5294
  if (typeof argument == 'object' || isCallable$4(argument)) return argument;
4934
- throw TypeError$6("Can't set " + String$1(argument) + ' as a prototype');
5295
+ throw $TypeError$5("Can't set " + $String(argument) + ' as a prototype');
4935
5296
  };
4936
5297
 
4937
5298
  /* eslint-disable no-proto -- safe */
@@ -4968,13 +5329,13 @@
4968
5329
  var call$4 = functionCall;
4969
5330
  var IS_PURE$2 = isPure;
4970
5331
  var FunctionName = functionName;
4971
- var isCallable$3 = isCallable$l;
5332
+ var isCallable$3 = isCallable$m;
4972
5333
  var createIteratorConstructor = createIteratorConstructor$1;
4973
5334
  var getPrototypeOf = objectGetPrototypeOf;
4974
5335
  var setPrototypeOf$1 = objectSetPrototypeOf;
4975
5336
  var setToStringTag$1 = setToStringTag$4;
4976
5337
  var createNonEnumerableProperty$2 = createNonEnumerableProperty$7;
4977
- var redefine$4 = redefine$b.exports;
5338
+ var defineBuiltIn$4 = defineBuiltIn$b;
4978
5339
  var wellKnownSymbol$7 = wellKnownSymbol$p;
4979
5340
  var Iterators$1 = iterators;
4980
5341
  var IteratorsCore = iteratorsCore;
@@ -5021,7 +5382,7 @@
5021
5382
  if (setPrototypeOf$1) {
5022
5383
  setPrototypeOf$1(CurrentIteratorPrototype, IteratorPrototype);
5023
5384
  } else if (!isCallable$3(CurrentIteratorPrototype[ITERATOR$2])) {
5024
- redefine$4(CurrentIteratorPrototype, ITERATOR$2, returnThis);
5385
+ defineBuiltIn$4(CurrentIteratorPrototype, ITERATOR$2, returnThis);
5025
5386
  }
5026
5387
  }
5027
5388
  // Set @@toStringTag to native iterators
@@ -5049,14 +5410,14 @@
5049
5410
  };
5050
5411
  if (FORCED) for (KEY in methods) {
5051
5412
  if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
5052
- redefine$4(IterablePrototype, KEY, methods[KEY]);
5413
+ defineBuiltIn$4(IterablePrototype, KEY, methods[KEY]);
5053
5414
  }
5054
5415
  } else $$f({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
5055
5416
  }
5056
5417
 
5057
5418
  // define iterator
5058
5419
  if ((!IS_PURE$2 || FORCED) && IterablePrototype[ITERATOR$2] !== defaultIterator) {
5059
- redefine$4(IterablePrototype, ITERATOR$2, defaultIterator, { name: DEFAULT });
5420
+ defineBuiltIn$4(IterablePrototype, ITERATOR$2, defaultIterator, { name: DEFAULT });
5060
5421
  }
5061
5422
  Iterators$1[NAME] = defaultIterator;
5062
5423
 
@@ -5096,14 +5457,13 @@
5096
5457
 
5097
5458
  var es_string_startsWith = {};
5098
5459
 
5099
- var global$b = global$N;
5100
5460
  var isRegExp$1 = isRegexp;
5101
5461
 
5102
- var TypeError$5 = global$b.TypeError;
5462
+ var $TypeError$4 = TypeError;
5103
5463
 
5104
5464
  var notARegexp = function (it) {
5105
5465
  if (isRegExp$1(it)) {
5106
- throw TypeError$5("The method doesn't accept regular expressions");
5466
+ throw $TypeError$4("The method doesn't accept regular expressions");
5107
5467
  } return it;
5108
5468
  };
5109
5469
 
@@ -5162,24 +5522,31 @@
5162
5522
 
5163
5523
  var es_array_splice = {};
5164
5524
 
5525
+ 'use strict';
5526
+ var tryToString$1 = tryToString$6;
5527
+
5528
+ var $TypeError$3 = TypeError;
5529
+
5530
+ var deletePropertyOrThrow$2 = function (O, P) {
5531
+ if (!delete O[P]) throw $TypeError$3('Cannot delete property ' + tryToString$1(P) + ' of ' + tryToString$1(O));
5532
+ };
5533
+
5165
5534
  'use strict';
5166
5535
  var $$d = _export;
5167
- var global$a = global$N;
5536
+ var toObject$4 = toObject$b;
5168
5537
  var toAbsoluteIndex$1 = toAbsoluteIndex$4;
5169
5538
  var toIntegerOrInfinity$1 = toIntegerOrInfinity$5;
5170
5539
  var lengthOfArrayLike$4 = lengthOfArrayLike$a;
5171
- var toObject$4 = toObject$b;
5540
+ var doesNotExceedSafeInteger = doesNotExceedSafeInteger$2;
5172
5541
  var arraySpeciesCreate = arraySpeciesCreate$3;
5173
5542
  var createProperty$1 = createProperty$5;
5543
+ var deletePropertyOrThrow$1 = deletePropertyOrThrow$2;
5174
5544
  var arrayMethodHasSpeciesSupport$2 = arrayMethodHasSpeciesSupport$5;
5175
5545
 
5176
5546
  var HAS_SPECIES_SUPPORT$2 = arrayMethodHasSpeciesSupport$2('splice');
5177
5547
 
5178
- var TypeError$4 = global$a.TypeError;
5179
5548
  var max$2 = Math.max;
5180
5549
  var min$1 = Math.min;
5181
- var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
5182
- var MAXIMUM_ALLOWED_LENGTH_EXCEEDED = 'Maximum allowed length exceeded';
5183
5550
 
5184
5551
  // `Array.prototype.splice` method
5185
5552
  // https://tc39.es/ecma262/#sec-array.prototype.splice
@@ -5200,9 +5567,7 @@
5200
5567
  insertCount = argumentsLength - 2;
5201
5568
  actualDeleteCount = min$1(max$2(toIntegerOrInfinity$1(deleteCount), 0), len - actualStart);
5202
5569
  }
5203
- if (len + insertCount - actualDeleteCount > MAX_SAFE_INTEGER) {
5204
- throw TypeError$4(MAXIMUM_ALLOWED_LENGTH_EXCEEDED);
5205
- }
5570
+ doesNotExceedSafeInteger(len + insertCount - actualDeleteCount);
5206
5571
  A = arraySpeciesCreate(O, actualDeleteCount);
5207
5572
  for (k = 0; k < actualDeleteCount; k++) {
5208
5573
  from = actualStart + k;
@@ -5214,15 +5579,15 @@
5214
5579
  from = k + actualDeleteCount;
5215
5580
  to = k + insertCount;
5216
5581
  if (from in O) O[to] = O[from];
5217
- else delete O[to];
5582
+ else deletePropertyOrThrow$1(O, to);
5218
5583
  }
5219
- for (k = len; k > len - actualDeleteCount + insertCount; k--) delete O[k - 1];
5584
+ for (k = len; k > len - actualDeleteCount + insertCount; k--) deletePropertyOrThrow$1(O, k - 1);
5220
5585
  } else if (insertCount > actualDeleteCount) {
5221
5586
  for (k = len - actualDeleteCount; k > actualStart; k--) {
5222
5587
  from = k + actualDeleteCount - 1;
5223
5588
  to = k + insertCount - 1;
5224
5589
  if (from in O) O[to] = O[from];
5225
- else delete O[to];
5590
+ else deletePropertyOrThrow$1(O, to);
5226
5591
  }
5227
5592
  }
5228
5593
  for (k = 0; k < insertCount; k++) {
@@ -5289,16 +5654,16 @@
5289
5654
  trim: createMethod$1(3)
5290
5655
  };
5291
5656
 
5292
- var global$9 = global$N;
5293
- var fails$b = fails$x;
5657
+ var global$5 = global$l;
5658
+ var fails$b = fails$y;
5294
5659
  var uncurryThis$9 = functionUncurryThis;
5295
5660
  var toString$4 = toString$e;
5296
5661
  var trim = stringTrim.trim;
5297
5662
  var whitespaces$1 = whitespaces$3;
5298
5663
 
5299
5664
  var charAt$2 = uncurryThis$9(''.charAt);
5300
- var n$ParseFloat = global$9.parseFloat;
5301
- var Symbol$1 = global$9.Symbol;
5665
+ var n$ParseFloat = global$5.parseFloat;
5666
+ var Symbol$1 = global$5.Symbol;
5302
5667
  var ITERATOR$1 = Symbol$1 && Symbol$1.iterator;
5303
5668
  var FORCED$1 = 1 / n$ParseFloat(whitespaces$1 + '-0') !== -Infinity
5304
5669
  // MS Edge 18- broken with boxed symbols
@@ -5339,7 +5704,7 @@
5339
5704
  return p1 + '>' + S + '</' + tag + '>';
5340
5705
  };
5341
5706
 
5342
- var fails$a = fails$x;
5707
+ var fails$a = fails$y;
5343
5708
 
5344
5709
  // check the existence of a method, lowercase
5345
5710
  // of a tag and escaping quotes in arguments
@@ -5391,13 +5756,12 @@
5391
5756
 
5392
5757
  var es_array_reduce = {};
5393
5758
 
5394
- var global$8 = global$N;
5395
5759
  var aCallable$1 = aCallable$5;
5396
5760
  var toObject$3 = toObject$b;
5397
5761
  var IndexedObject$1 = indexedObject;
5398
5762
  var lengthOfArrayLike$3 = lengthOfArrayLike$a;
5399
5763
 
5400
- var TypeError$3 = global$8.TypeError;
5764
+ var $TypeError$2 = TypeError;
5401
5765
 
5402
5766
  // `Array.prototype.{ reduce, reduceRight }` methods implementation
5403
5767
  var createMethod = function (IS_RIGHT) {
@@ -5416,7 +5780,7 @@
5416
5780
  }
5417
5781
  index += i;
5418
5782
  if (IS_RIGHT ? index < 0 : length <= index) {
5419
- throw TypeError$3('Reduce of empty array with no initial value');
5783
+ throw $TypeError$2('Reduce of empty array with no initial value');
5420
5784
  }
5421
5785
  }
5422
5786
  for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) {
@@ -5436,9 +5800,9 @@
5436
5800
  };
5437
5801
 
5438
5802
  var classof$1 = classofRaw$1;
5439
- var global$7 = global$N;
5803
+ var global$4 = global$l;
5440
5804
 
5441
- var engineIsNode = classof$1(global$7.process) == 'process';
5805
+ var engineIsNode = classof$1(global$4.process) == 'process';
5442
5806
 
5443
5807
  'use strict';
5444
5808
  var $$8 = _export;
@@ -5465,7 +5829,7 @@
5465
5829
 
5466
5830
  var wellKnownSymbol$5 = wellKnownSymbol$p;
5467
5831
  var create$1 = objectCreate;
5468
- var definePropertyModule$1 = objectDefineProperty;
5832
+ var defineProperty$5 = objectDefineProperty.f;
5469
5833
 
5470
5834
  var UNSCOPABLES = wellKnownSymbol$5('unscopables');
5471
5835
  var ArrayPrototype = Array.prototype;
@@ -5473,7 +5837,7 @@
5473
5837
  // Array.prototype[@@unscopables]
5474
5838
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
5475
5839
  if (ArrayPrototype[UNSCOPABLES] == undefined) {
5476
- definePropertyModule$1.f(ArrayPrototype, UNSCOPABLES, {
5840
+ defineProperty$5(ArrayPrototype, UNSCOPABLES, {
5477
5841
  configurable: true,
5478
5842
  value: create$1(null)
5479
5843
  });
@@ -5508,7 +5872,7 @@
5508
5872
 
5509
5873
  var es_regexp_constructor = {};
5510
5874
 
5511
- var isCallable$2 = isCallable$l;
5875
+ var isCallable$2 = isCallable$m;
5512
5876
  var isObject$4 = isObject$e;
5513
5877
  var setPrototypeOf = objectSetPrototypeOf;
5514
5878
 
@@ -5571,7 +5935,7 @@
5571
5935
  };
5572
5936
 
5573
5937
  var DESCRIPTORS$3 = descriptors;
5574
- var global$6 = global$N;
5938
+ var global$3 = global$l;
5575
5939
  var uncurryThis$6 = functionUncurryThis;
5576
5940
  var isForced$1 = isForced_1;
5577
5941
  var inheritIfRequired$1 = inheritIfRequired$2;
@@ -5583,8 +5947,8 @@
5583
5947
  var getRegExpFlags$1 = regexpGetFlags;
5584
5948
  var stickyHelpers = regexpStickyHelpers;
5585
5949
  var proxyAccessor = proxyAccessor$1;
5586
- var redefine$3 = redefine$b.exports;
5587
- var fails$9 = fails$x;
5950
+ var defineBuiltIn$3 = defineBuiltIn$b;
5951
+ var fails$9 = fails$y;
5588
5952
  var hasOwn$1 = hasOwnProperty_1;
5589
5953
  var enforceInternalState = internalState.enforce;
5590
5954
  var setSpecies$1 = setSpecies$2;
@@ -5593,9 +5957,9 @@
5593
5957
  var UNSUPPORTED_NCG = regexpUnsupportedNcg;
5594
5958
 
5595
5959
  var MATCH = wellKnownSymbol$3('match');
5596
- var NativeRegExp = global$6.RegExp;
5960
+ var NativeRegExp = global$3.RegExp;
5597
5961
  var RegExpPrototype$1 = NativeRegExp.prototype;
5598
- var SyntaxError = global$6.SyntaxError;
5962
+ var SyntaxError = global$3.SyntaxError;
5599
5963
  var exec = uncurryThis$6(RegExpPrototype$1.exec);
5600
5964
  var charAt$1 = uncurryThis$6(''.charAt);
5601
5965
  var replace$1 = uncurryThis$6(''.replace);
@@ -5755,7 +6119,7 @@
5755
6119
 
5756
6120
  RegExpPrototype$1.constructor = RegExpWrapper;
5757
6121
  RegExpWrapper.prototype = RegExpPrototype$1;
5758
- redefine$3(global$6, 'RegExp', RegExpWrapper);
6122
+ defineBuiltIn$3(global$3, 'RegExp', RegExpWrapper, { constructor: true });
5759
6123
  }
5760
6124
 
5761
6125
  // https://tc39.es/ecma262/#sec-get-regexp-@@species
@@ -5765,10 +6129,10 @@
5765
6129
 
5766
6130
  'use strict';
5767
6131
  var PROPER_FUNCTION_NAME$1 = functionName.PROPER;
5768
- var redefine$2 = redefine$b.exports;
6132
+ var defineBuiltIn$2 = defineBuiltIn$b;
5769
6133
  var anObject$2 = anObject$g;
5770
6134
  var $toString = toString$e;
5771
- var fails$8 = fails$x;
6135
+ var fails$8 = fails$y;
5772
6136
  var getRegExpFlags = regexpGetFlags;
5773
6137
 
5774
6138
  var TO_STRING = 'toString';
@@ -5782,7 +6146,7 @@
5782
6146
  // `RegExp.prototype.toString` method
5783
6147
  // https://tc39.es/ecma262/#sec-regexp.prototype.tostring
5784
6148
  if (NOT_GENERIC || INCORRECT_NAME) {
5785
- redefine$2(RegExp.prototype, TO_STRING, function toString() {
6149
+ defineBuiltIn$2(RegExp.prototype, TO_STRING, function toString() {
5786
6150
  var R = anObject$2(this);
5787
6151
  var pattern = $toString(R.source);
5788
6152
  var flags = $toString(getRegExpFlags(R));
@@ -5842,9 +6206,9 @@
5842
6206
  var call$2 = functionCall;
5843
6207
  var uncurryThis$4 = functionUncurryThis;
5844
6208
  var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
5845
- var fails$7 = fails$x;
6209
+ var fails$7 = fails$y;
5846
6210
  var anObject$1 = anObject$g;
5847
- var isCallable$1 = isCallable$l;
6211
+ var isCallable$1 = isCallable$m;
5848
6212
  var toIntegerOrInfinity = toIntegerOrInfinity$5;
5849
6213
  var toLength = toLength$4;
5850
6214
  var toString$1 = toString$e;
@@ -7901,17 +8265,17 @@
7901
8265
  function _updateGroupStateForItem(item) {
7902
8266
  var p = this._p;
7903
8267
 
7904
- if (p.multi && p.autoCheckGroupChildren) {
7905
-
7906
- var items, groupIndex, itemIndex;
8268
+ if (!p.multi)
8269
+ return this;
7907
8270
 
7908
- if (item._group) {var _item$ItemSymbol5;
7909
- // Now loop through children below the group
8271
+ if (item._group) {var _item$ItemSymbol5;
8272
+ // Now loop through children below the group
7910
8273
 
7911
- items = p.items;
7912
- groupIndex = items.indexOf(item);
8274
+ var affectedItems = 0;
7913
8275
 
7914
- var affectedItems = 0;
8276
+ if (p.autoCheckGroupChildren) {
8277
+ var items = p.items;
8278
+ var groupIndex = items.indexOf(item);
7915
8279
 
7916
8280
  for (var i = groupIndex + 1, len = items.length; i < len; i++) {var _next$ItemSymbol;
7917
8281
  var next = items[i];
@@ -7944,29 +8308,29 @@
7944
8308
  isCheckingGroup: true });
7945
8309
 
7946
8310
  }
8311
+ }
7947
8312
 
7948
- // Fire event
7949
- this._trigger('groupcheck', {
7950
- value: item.value,
7951
- item: (_item$ItemSymbol5 = item[ItemSymbol$1]) !== null && _item$ItemSymbol5 !== void 0 ? _item$ItemSymbol5 : item,
7952
- affectedItems: affectedItems });
7953
-
7954
- } else if (p.groupCount > 0) {
7955
- items = p.items;
7956
- itemIndex = items.indexOf(item);
7957
- groupIndex = -1;
7958
-
7959
- // Find the group index
7960
- for (var _i8 = itemIndex - 1; _i8 >= 0; _i8--) {
7961
- if (items[_i8]._group) {
7962
- groupIndex = _i8;
7963
- break;
7964
- }
8313
+ // Fire event
8314
+ this._trigger('groupcheck', {
8315
+ value: item.value,
8316
+ item: (_item$ItemSymbol5 = item[ItemSymbol$1]) !== null && _item$ItemSymbol5 !== void 0 ? _item$ItemSymbol5 : item,
8317
+ affectedItems: affectedItems });
8318
+
8319
+ } else if (p.groupCount > 0 && p.autoCheckGroupChildren) {
8320
+ var _items = p.items;
8321
+ var itemIndex = _items.indexOf(item);
8322
+ var _groupIndex = -1;
8323
+
8324
+ // Find the group index
8325
+ for (var _i8 = itemIndex - 1; _i8 >= 0; _i8--) {
8326
+ if (_items[_i8]._group) {
8327
+ _groupIndex = _i8;
8328
+ break;
7965
8329
  }
8330
+ }
7966
8331
 
7967
- if (groupIndex > -1) {
7968
- this._updateGroupCheckedState(groupIndex, true);
7969
- }
8332
+ if (_groupIndex > -1) {
8333
+ this._updateGroupCheckedState(_groupIndex, true);
7970
8334
  }
7971
8335
  }
7972
8336
 
@@ -7976,50 +8340,50 @@
7976
8340
  function _updateGroupCheckedState(groupIndex, fireEvents) {
7977
8341
  var p = this._p;
7978
8342
 
7979
- if (p.multi && p.autoCheckGroupChildren && groupIndex > -1) {
8343
+ if (!(p.multi && p.autoCheckGroupChildren && groupIndex > -1))
8344
+ return this;
7980
8345
 
7981
- var items = p.items;
7982
- var groupItem = items[groupIndex];
7983
- if (!groupItem || !groupItem._group) return this;
8346
+ var items = p.items;
8347
+ var groupItem = items[groupIndex];
7984
8348
 
7985
- var item,hasChecked = false,hasUnchecked = false;
8349
+ if (!groupItem || !groupItem._group) return this;
7986
8350
 
7987
- for (var i = groupIndex + 1, len = items.length; i < len; i++) {
7988
- item = items[i];
8351
+ var item,hasChecked = false,hasUnchecked = false;
7989
8352
 
7990
- // Hit the next group, break out
7991
- if (item._group || !item._child && items[i - 1]._child)
7992
- break;
8353
+ for (var i = groupIndex + 1, len = items.length; i < len; i++) {
8354
+ item = items[i];
7993
8355
 
7994
- if (item._checked) {
7995
- hasChecked = true;
7996
- } else if (!item._checked) {
7997
- hasUnchecked = true;
7998
- }
8356
+ // Hit the next group, break out
8357
+ if (item._group || !item._child && items[i - 1]._child)
8358
+ break;
8359
+
8360
+ if (item._checked) {
8361
+ hasChecked = true;
8362
+ } else if (!item._checked) {
8363
+ hasUnchecked = true;
7999
8364
  }
8365
+ }
8000
8366
 
8001
- // See if we need to update the group
8002
- var shouldCheckGroup = hasChecked && !hasUnchecked;
8003
- if (!!groupItem._checked !== shouldCheckGroup) {
8004
- // Update state
8005
- groupItem._checked = shouldCheckGroup;
8367
+ var shouldCheckGroup = hasChecked && !hasUnchecked;
8368
+ if (!!groupItem._checked !== shouldCheckGroup) {
8369
+ // Update state
8370
+ groupItem._checked = shouldCheckGroup;
8006
8371
 
8007
- // Update DOM
8008
- var nextEl = p.virtualListHelper.getItemElementAt(groupIndex);
8009
- if (nextEl) {
8010
- DomCompat.toggleClass(nextEl, "".concat(p.baseClassName, "__item_checked"), groupItem._checked);
8011
- }
8372
+ // Update DOM
8373
+ var nextEl = p.virtualListHelper.getItemElementAt(groupIndex);
8374
+ if (nextEl) {
8375
+ DomCompat.toggleClass(nextEl, "".concat(p.baseClassName, "__item_checked"), groupItem._checked);
8376
+ }
8012
8377
 
8013
- if (fireEvents) {var _groupItem$ItemSymbol;
8014
- // Fire event
8015
- this._trigger('check', {
8016
- value: groupItem.value,
8017
- item: (_groupItem$ItemSymbol = groupItem[ItemSymbol$1]) !== null && _groupItem$ItemSymbol !== void 0 ? _groupItem$ItemSymbol : groupItem,
8018
- checked: groupItem._checked,
8019
- isGroup: groupItem._group,
8020
- isCheckingGroup: false });
8378
+ if (fireEvents) {var _groupItem$ItemSymbol;
8379
+ // Fire event
8380
+ this._trigger('check', {
8381
+ value: groupItem.value,
8382
+ item: (_groupItem$ItemSymbol = groupItem[ItemSymbol$1]) !== null && _groupItem$ItemSymbol !== void 0 ? _groupItem$ItemSymbol : groupItem,
8383
+ checked: groupItem._checked,
8384
+ isGroup: groupItem._group,
8385
+ isCheckingGroup: false });
8021
8386
 
8022
- }
8023
8387
  }
8024
8388
  }
8025
8389
 
@@ -8235,7 +8599,7 @@
8235
8599
  var internalMetadata = {exports: {}};
8236
8600
 
8237
8601
  // FF26- bug: ArrayBuffers are non-extensible, but Object.isExtensible does not report it
8238
- var fails$6 = fails$x;
8602
+ var fails$6 = fails$y;
8239
8603
 
8240
8604
  var arrayBufferNonExtensible = fails$6(function () {
8241
8605
  if (typeof ArrayBuffer == 'function') {
@@ -8245,7 +8609,7 @@
8245
8609
  }
8246
8610
  });
8247
8611
 
8248
- var fails$5 = fails$x;
8612
+ var fails$5 = fails$y;
8249
8613
  var isObject$3 = isObject$e;
8250
8614
  var classof = classofRaw$1;
8251
8615
  var ARRAY_BUFFER_NON_EXTENSIBLE = arrayBufferNonExtensible;
@@ -8262,7 +8626,7 @@
8262
8626
  return $isExtensible ? $isExtensible(it) : true;
8263
8627
  } : $isExtensible;
8264
8628
 
8265
- var fails$4 = fails$x;
8629
+ var fails$4 = fails$y;
8266
8630
 
8267
8631
  var freezing = !fails$4(function () {
8268
8632
  // eslint-disable-next-line es-x/no-object-isextensible, es-x/no-object-preventextensions -- required for testing
@@ -8359,11 +8723,10 @@
8359
8723
 
8360
8724
  hiddenKeys[METADATA] = true;
8361
8725
 
8362
- var global$5 = global$N;
8363
8726
  var bind$1 = functionBindContext;
8364
8727
  var call$1 = functionCall;
8365
8728
  var anObject = anObject$g;
8366
- var tryToString = tryToString$5;
8729
+ var tryToString = tryToString$6;
8367
8730
  var isArrayIteratorMethod = isArrayIteratorMethod$2;
8368
8731
  var lengthOfArrayLike$2 = lengthOfArrayLike$a;
8369
8732
  var isPrototypeOf$1 = objectIsPrototypeOf;
@@ -8371,7 +8734,7 @@
8371
8734
  var getIteratorMethod = getIteratorMethod$3;
8372
8735
  var iteratorClose = iteratorClose$2;
8373
8736
 
8374
- var TypeError$2 = global$5.TypeError;
8737
+ var $TypeError$1 = TypeError;
8375
8738
 
8376
8739
  var Result = function (stopped, result) {
8377
8740
  this.stopped = stopped;
@@ -8404,7 +8767,7 @@
8404
8767
  iterator = iterable;
8405
8768
  } else {
8406
8769
  iterFn = getIteratorMethod(iterable);
8407
- if (!iterFn) throw TypeError$2(tryToString(iterable) + ' is not iterable');
8770
+ if (!iterFn) throw $TypeError$1(tryToString(iterable) + ' is not iterable');
8408
8771
  // optimisation for array iterators
8409
8772
  if (isArrayIteratorMethod(iterFn)) {
8410
8773
  for (index = 0, length = lengthOfArrayLike$2(iterable); length > index; index++) {
@@ -8426,28 +8789,27 @@
8426
8789
  } return new Result(false);
8427
8790
  };
8428
8791
 
8429
- var global$4 = global$N;
8430
8792
  var isPrototypeOf = objectIsPrototypeOf;
8431
8793
 
8432
- var TypeError$1 = global$4.TypeError;
8794
+ var $TypeError = TypeError;
8433
8795
 
8434
8796
  var anInstance$2 = function (it, Prototype) {
8435
8797
  if (isPrototypeOf(Prototype, it)) return it;
8436
- throw TypeError$1('Incorrect invocation');
8798
+ throw $TypeError('Incorrect invocation');
8437
8799
  };
8438
8800
 
8439
8801
  'use strict';
8440
8802
  var $$5 = _export;
8441
- var global$3 = global$N;
8803
+ var global$2 = global$l;
8442
8804
  var uncurryThis$2 = functionUncurryThis;
8443
8805
  var isForced = isForced_1;
8444
- var redefine$1 = redefine$b.exports;
8806
+ var defineBuiltIn$1 = defineBuiltIn$b;
8445
8807
  var InternalMetadataModule = internalMetadata.exports;
8446
8808
  var iterate$1 = iterate$2;
8447
8809
  var anInstance$1 = anInstance$2;
8448
- var isCallable = isCallable$l;
8810
+ var isCallable = isCallable$m;
8449
8811
  var isObject$1 = isObject$e;
8450
- var fails$3 = fails$x;
8812
+ var fails$3 = fails$y;
8451
8813
  var checkCorrectnessOfIteration = checkCorrectnessOfIteration$2;
8452
8814
  var setToStringTag = setToStringTag$4;
8453
8815
  var inheritIfRequired = inheritIfRequired$2;
@@ -8456,14 +8818,14 @@
8456
8818
  var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;
8457
8819
  var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;
8458
8820
  var ADDER = IS_MAP ? 'set' : 'add';
8459
- var NativeConstructor = global$3[CONSTRUCTOR_NAME];
8821
+ var NativeConstructor = global$2[CONSTRUCTOR_NAME];
8460
8822
  var NativePrototype = NativeConstructor && NativeConstructor.prototype;
8461
8823
  var Constructor = NativeConstructor;
8462
8824
  var exported = {};
8463
8825
 
8464
8826
  var fixMethod = function (KEY) {
8465
8827
  var uncurriedNativeMethod = uncurryThis$2(NativePrototype[KEY]);
8466
- redefine$1(NativePrototype, KEY,
8828
+ defineBuiltIn$1(NativePrototype, KEY,
8467
8829
  KEY == 'add' ? function add(value) {
8468
8830
  uncurriedNativeMethod(this, value === 0 ? 0 : value);
8469
8831
  return this;
@@ -8533,7 +8895,7 @@
8533
8895
  }
8534
8896
 
8535
8897
  exported[CONSTRUCTOR_NAME] = Constructor;
8536
- $$5({ global: true, forced: Constructor != NativeConstructor }, exported);
8898
+ $$5({ global: true, constructor: true, forced: Constructor != NativeConstructor }, exported);
8537
8899
 
8538
8900
  setToStringTag(Constructor, CONSTRUCTOR_NAME);
8539
8901
 
@@ -8542,17 +8904,17 @@
8542
8904
  return Constructor;
8543
8905
  };
8544
8906
 
8545
- var redefine = redefine$b.exports;
8907
+ var defineBuiltIn = defineBuiltIn$b;
8546
8908
 
8547
- var redefineAll$1 = function (target, src, options) {
8548
- for (var key in src) redefine(target, key, src[key], options);
8909
+ var defineBuiltIns$1 = function (target, src, options) {
8910
+ for (var key in src) defineBuiltIn(target, key, src[key], options);
8549
8911
  return target;
8550
8912
  };
8551
8913
 
8552
8914
  'use strict';
8553
8915
  var defineProperty$1 = objectDefineProperty.f;
8554
8916
  var create = objectCreate;
8555
- var redefineAll = redefineAll$1;
8917
+ var defineBuiltIns = defineBuiltIns$1;
8556
8918
  var bind = functionBindContext;
8557
8919
  var anInstance = anInstance$2;
8558
8920
  var iterate = iterate$2;
@@ -8622,7 +8984,7 @@
8622
8984
  }
8623
8985
  };
8624
8986
 
8625
- redefineAll(Prototype, {
8987
+ defineBuiltIns(Prototype, {
8626
8988
  // `{ Map, Set }.prototype.clear()` methods
8627
8989
  // https://tc39.es/ecma262/#sec-map.prototype.clear
8628
8990
  // https://tc39.es/ecma262/#sec-set.prototype.clear
@@ -8682,7 +9044,7 @@
8682
9044
  }
8683
9045
  });
8684
9046
 
8685
- redefineAll(Prototype, IS_MAP ? {
9047
+ defineBuiltIns(Prototype, IS_MAP ? {
8686
9048
  // `Map.prototype.get(key)` method
8687
9049
  // https://tc39.es/ecma262/#sec-map.prototype.get
8688
9050
  get: function get(key) {
@@ -8810,7 +9172,7 @@
8810
9172
 
8811
9173
  var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
8812
9174
 
8813
- var global$2 = global$N;
9175
+ var global$1 = global$l;
8814
9176
  var DOMIterables = domIterables;
8815
9177
  var DOMTokenListPrototype = domTokenListPrototype;
8816
9178
  var ArrayIteratorMethods = es_array_iterator;
@@ -8844,7 +9206,7 @@
8844
9206
  };
8845
9207
 
8846
9208
  for (var COLLECTION_NAME in DOMIterables) {
8847
- handlePrototype(global$2[COLLECTION_NAME] && global$2[COLLECTION_NAME].prototype, COLLECTION_NAME);
9209
+ handlePrototype(global$1[COLLECTION_NAME] && global$1[COLLECTION_NAME].prototype, COLLECTION_NAME);
8848
9210
  }
8849
9211
 
8850
9212
  handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
@@ -8853,7 +9215,6 @@
8853
9215
 
8854
9216
  'use strict';
8855
9217
  var $$4 = _export;
8856
- var global$1 = global$N;
8857
9218
  var isArray = isArray$4;
8858
9219
  var isConstructor = isConstructor$4;
8859
9220
  var isObject = isObject$e;
@@ -8868,7 +9229,7 @@
8868
9229
  var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');
8869
9230
 
8870
9231
  var SPECIES = wellKnownSymbol('species');
8871
- var Array$1 = global$1.Array;
9232
+ var $Array = Array;
8872
9233
  var max = Math.max;
8873
9234
 
8874
9235
  // `Array.prototype.slice` method
@@ -8885,17 +9246,17 @@
8885
9246
  if (isArray(O)) {
8886
9247
  Constructor = O.constructor;
8887
9248
  // cross-realm fallback
8888
- if (isConstructor(Constructor) && (Constructor === Array$1 || isArray(Constructor.prototype))) {
9249
+ if (isConstructor(Constructor) && (Constructor === $Array || isArray(Constructor.prototype))) {
8889
9250
  Constructor = undefined;
8890
9251
  } else if (isObject(Constructor)) {
8891
9252
  Constructor = Constructor[SPECIES];
8892
9253
  if (Constructor === null) Constructor = undefined;
8893
9254
  }
8894
- if (Constructor === Array$1 || Constructor === undefined) {
9255
+ if (Constructor === $Array || Constructor === undefined) {
8895
9256
  return un$Slice(O, k, fin);
8896
9257
  }
8897
9258
  }
8898
- result = new (Constructor === undefined ? Array$1 : Constructor)(max(fin - k, 0));
9259
+ result = new (Constructor === undefined ? $Array : Constructor)(max(fin - k, 0));
8899
9260
  for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);
8900
9261
  result.length = n;
8901
9262
  return result;
@@ -8908,7 +9269,7 @@
8908
9269
  var DESCRIPTORS = descriptors;
8909
9270
  var uncurryThis$1 = functionUncurryThis;
8910
9271
  var call = functionCall;
8911
- var fails$2 = fails$x;
9272
+ var fails$2 = fails$y;
8912
9273
  var objectKeys = objectKeys$4;
8913
9274
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
8914
9275
  var propertyIsEnumerableModule = objectPropertyIsEnumerable;
@@ -8968,14 +9329,14 @@
8968
9329
  // `Object.assign` method
8969
9330
  // https://tc39.es/ecma262/#sec-object.assign
8970
9331
  // eslint-disable-next-line es-x/no-object-assign -- required for testing
8971
- $$3({ target: 'Object', stat: true, forced: Object.assign !== assign }, {
9332
+ $$3({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
8972
9333
  assign: assign
8973
9334
  });
8974
9335
 
8975
9336
  var es_string_trim = {};
8976
9337
 
8977
9338
  var PROPER_FUNCTION_NAME = functionName.PROPER;
8978
- var fails$1 = fails$x;
9339
+ var fails$1 = fails$y;
8979
9340
  var whitespaces = whitespaces$3;
8980
9341
 
8981
9342
  var non = '\u200B\u0085\u180E';
@@ -9096,8 +9457,9 @@
9096
9457
  var aCallable = aCallable$5;
9097
9458
  var toObject = toObject$b;
9098
9459
  var lengthOfArrayLike = lengthOfArrayLike$a;
9460
+ var deletePropertyOrThrow = deletePropertyOrThrow$2;
9099
9461
  var toString = toString$e;
9100
- var fails = fails$x;
9462
+ var fails = fails$y;
9101
9463
  var internalSort = arraySort;
9102
9464
  var arrayMethodIsStrict = arrayMethodIsStrict$4;
9103
9465
  var FF = engineFfVersion;
@@ -9190,7 +9552,7 @@
9190
9552
  index = 0;
9191
9553
 
9192
9554
  while (index < itemsLength) array[index] = items[index++];
9193
- while (index < arrayLength) delete array[index++];
9555
+ while (index < arrayLength) deletePropertyOrThrow(array, index++);
9194
9556
 
9195
9557
  return array;
9196
9558
  }
@@ -9292,6 +9654,7 @@
9292
9654
  * @property {boolean} [sortSelectedItems=true] Should the selected items be sorted?
9293
9655
  * @property {boolean} [sortListItems=false] Sort list items
9294
9656
  * @property {boolean} [sortListCheckedFirst=true] When sorting - put checked items first (applicable to `multi` mode only)
9657
+ * @property {boolean} [treatGroupSelectionAsItems=false] Treat group items as normal items
9295
9658
  * @property {*[]} [stickyValues]
9296
9659
  * @property {function(a: DropList.ItemBase, b: DropList.ItemBase):number} [sortItemComparator]
9297
9660
  * @property {boolean} [splitListCheckedGroups=true] Split groups to "checked" and "unchecked", works with `sortCheckedFirst` only
@@ -9337,6 +9700,7 @@
9337
9700
  stickyValues: null,
9338
9701
  sortItemComparator: null,
9339
9702
  splitListCheckedGroups: true,
9703
+ treatGroupSelectionAsItems: false,
9340
9704
  blurOnSingleSelection: 'touch',
9341
9705
  multi: false,
9342
9706
  showSelection: true,
@@ -9426,6 +9790,7 @@
9426
9790
  stickyValues: Array.isArray(o.stickyValues) ? new Set(o.stickyValues) : null,
9427
9791
  sortItemComparator: o.sortItemComparator,
9428
9792
  splitListCheckedGroups: !!o.splitListCheckedGroups,
9793
+ treatGroupSelectionAsItems: o.treatGroupSelectionAsItems,
9429
9794
  blurOnSingleSelection: o.blurOnSingleSelection,
9430
9795
  multi: o.multi,
9431
9796
  showSelection: o.showSelection,
@@ -9971,6 +10336,29 @@
9971
10336
  return this._p.sortItemComparator;
9972
10337
  }
9973
10338
 
10339
+ /**
10340
+ * @param {boolean} treatGroupSelectionAsItems
10341
+ * @returns {SelectBox}
10342
+ */ }, { key: "setTreatGroupSelectionAsItems", value:
10343
+ function setTreatGroupSelectionAsItems(treatGroupSelectionAsItems) {
10344
+ var p = this._p;
10345
+ treatGroupSelectionAsItems = !!treatGroupSelectionAsItems;
10346
+ if (p.treatGroupSelectionAsItems === treatGroupSelectionAsItems)
10347
+ return this;
10348
+
10349
+ p.treatGroupSelectionAsItems = treatGroupSelectionAsItems;
10350
+ p.itemsChanged = true;
10351
+ this._scheduleSync();
10352
+ return this;
10353
+ }
10354
+
10355
+ /**
10356
+ * @returns {boolean}
10357
+ */ }, { key: "isTreatGroupSelectionAsItemsEnabled", value:
10358
+ function isTreatGroupSelectionAsItemsEnabled() {
10359
+ return !this._p.treatGroupSelectionAsItems;
10360
+ }
10361
+
9974
10362
  /**
9975
10363
  * @param {boolean} splitListCheckedGroups
9976
10364
  * @returns {SelectBox}
@@ -10922,7 +11310,7 @@
10922
11310
  var value = event.value;
10923
11311
 
10924
11312
  var checked = event.checked;
10925
- if (event.isGroup) return; // Ignore groups
11313
+ if (event.isGroup && !p.treatGroupSelectionAsItems) return; // Ignore groups
10926
11314
 
10927
11315
  var selEvt = { value: value, item: item, cancel: false };
10928
11316
  _this5._trigger((checked ? 'addsel' : 'removesel') + ':before', selEvt);
@@ -10958,7 +11346,7 @@
10958
11346
  _this5._scheduleSync('full');
10959
11347
  } else {
10960
11348
  if (p.maxMultiItems != null &&
10961
- p.selectedItems.filter(function (x) {return !x._group;}).length > p.maxMultiItems) {
11349
+ (p.treatGroupSelectionAsItems ? p.selectedItems : p.selectedItems.filter(function (x) {return !x._group;})).length > p.maxMultiItems) {
10962
11350
  _this5._scheduleSync('addOrUpdateMultiItemRestElement');
10963
11351
  } else {
10964
11352
  _this5._scheduleSync('addMultiItemElement', item);
@@ -10969,7 +11357,7 @@
10969
11357
  }
10970
11358
  } else {
10971
11359
  if (p.maxMultiItems != null &&
10972
- p.selectedItems.filter(function (x) {return !x._group;}).length === p.maxMultiItems) {
11360
+ (p.treatGroupSelectionAsItems ? p.selectedItems : p.selectedItems.filter(function (x) {return !x._group;})).length === p.maxMultiItems) {
10973
11361
  _this5._scheduleSync('removeMultiItemRestElement');
10974
11362
  } else {
10975
11363
  _this5._scheduleSync('removeMultiItemElement', item);
@@ -11421,6 +11809,7 @@
11421
11809
  var p = this._p;
11422
11810
 
11423
11811
  var term = p.filterTerm;
11812
+ var treatGroupSelectionAsItems = p.treatGroupSelectionAsItems;
11424
11813
 
11425
11814
  if (term || p.filterOnEmptyTerm && p.filterFn) {
11426
11815
  var fn = p.filterFn;
@@ -11439,7 +11828,7 @@
11439
11828
  multiItemLabelProp = p.multiItemLabelProp;
11440
11829
 
11441
11830
  filteredItems = p.items.filter(function (x) {
11442
- if (x._group) return true;
11831
+ if (!treatGroupSelectionAsItems && x._group) return true;
11443
11832
  return matcher.test(x[labelProp] || x[multiItemLabelProp]);
11444
11833
  });
11445
11834
  } else {
@@ -11449,7 +11838,7 @@
11449
11838
 
11450
11839
  p.filteredItems = filteredItems;
11451
11840
 
11452
- if (filteredItems) {
11841
+ if (filteredItems && !treatGroupSelectionAsItems) {
11453
11842
  // Clean up groups without children
11454
11843
 
11455
11844
  var lastGroup = -1;
@@ -11707,7 +12096,7 @@
11707
12096
  var p = this._p;
11708
12097
 
11709
12098
  var items = p.selectedItems.slice(0);
11710
- var count = items.filter(function (x) {return !x._group;}).length - p.maxMultiItems;
12099
+ var count = (p.treatGroupSelectionAsItems ? items : items.filter(function (x) {return !x._group;})).length - p.maxMultiItems;
11711
12100
  var label = p.multiItemsRestLabelProvider ?
11712
12101
  p.multiItemsRestLabelProvider(count, items) : "+ ".concat(
11713
12102
  count);
@@ -11812,6 +12201,7 @@
11812
12201
  if (p.multi) {
11813
12202
  if (fullItemsRender) {
11814
12203
  var items = p.selectedItems;
12204
+ var treatGroupSelectionAsItems = p.treatGroupSelectionAsItems;
11815
12205
 
11816
12206
  // Sort these
11817
12207
  if (p.sortSelectedItems) {
@@ -11844,7 +12234,7 @@
11844
12234
 
11845
12235
  // Add item elements
11846
12236
  for (var i = 0; i < items.length; i++) {
11847
- if (items[i]._group) continue;
12237
+ if (!treatGroupSelectionAsItems && items[i]._group) continue;
11848
12238
 
11849
12239
  if (max != null && actualItemCount === max) {
11850
12240
  addRestItem = true;
@@ -11957,7 +12347,8 @@
11957
12347
 
11958
12348
  if (item !== undefined) {
11959
12349
  if (value === RestMultiItemsSymbol) {
11960
- var items = p.selectedItems.filter(function (x) {return !x._group;}).slice(p.maxMultiItems);
12350
+ var items = (p.treatGroupSelectionAsItems ? p.selectedItems : p.selectedItems.filter(function (x) {return !x._group;})).
12351
+ slice(p.maxMultiItems);
11961
12352
  var itemsToRemove = [];var _iterator4 = _createForOfIteratorHelper(
11962
12353
 
11963
12354
  items),_step4;try {for (_iterator4.s(); !(_step4 = _iterator4.n()).done;) {var _item3 = _step4.value;