@janiscommerce/ui-web 1.5.0 → 1.6.0

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/index.esm.js CHANGED
@@ -3,7 +3,6 @@ import React__default, { useState, useEffect, useRef, PureComponent, useMemo, us
3
3
  import styled$j, { css, createGlobalStyle, keyframes } from 'styled-components';
4
4
  import * as ReactDOM from 'react-dom';
5
5
  import ReactDOM__default from 'react-dom';
6
- import { useCollapse } from 'react-collapsed';
7
6
 
8
7
  function ownKeys$2(object, enumerableOnly) {
9
8
  var keys = Object.keys(object);
@@ -182,6 +181,61 @@ function _isNativeReflectConstruct() {
182
181
  }
183
182
  }
184
183
 
184
+ function _construct(Parent, args, Class) {
185
+ if (_isNativeReflectConstruct()) {
186
+ _construct = Reflect.construct;
187
+ } else {
188
+ _construct = function _construct(Parent, args, Class) {
189
+ var a = [null];
190
+ a.push.apply(a, args);
191
+ var Constructor = Function.bind.apply(Parent, a);
192
+ var instance = new Constructor();
193
+ if (Class) _setPrototypeOf(instance, Class.prototype);
194
+ return instance;
195
+ };
196
+ }
197
+
198
+ return _construct.apply(null, arguments);
199
+ }
200
+
201
+ function _isNativeFunction(fn) {
202
+ return Function.toString.call(fn).indexOf("[native code]") !== -1;
203
+ }
204
+
205
+ function _wrapNativeSuper(Class) {
206
+ var _cache = typeof Map === "function" ? new Map() : undefined;
207
+
208
+ _wrapNativeSuper = function _wrapNativeSuper(Class) {
209
+ if (Class === null || !_isNativeFunction(Class)) return Class;
210
+
211
+ if (typeof Class !== "function") {
212
+ throw new TypeError("Super expression must either be null or a function");
213
+ }
214
+
215
+ if (typeof _cache !== "undefined") {
216
+ if (_cache.has(Class)) return _cache.get(Class);
217
+
218
+ _cache.set(Class, Wrapper);
219
+ }
220
+
221
+ function Wrapper() {
222
+ return _construct(Class, arguments, _getPrototypeOf(this).constructor);
223
+ }
224
+
225
+ Wrapper.prototype = Object.create(Class.prototype, {
226
+ constructor: {
227
+ value: Wrapper,
228
+ enumerable: false,
229
+ writable: true,
230
+ configurable: true
231
+ }
232
+ });
233
+ return _setPrototypeOf(Wrapper, Class);
234
+ };
235
+
236
+ return _wrapNativeSuper(Class);
237
+ }
238
+
185
239
  function _objectWithoutPropertiesLoose(source, excluded) {
186
240
  if (source == null) return {};
187
241
  var target = {};
@@ -353,7 +407,7 @@ var check = function (it) {
353
407
  };
354
408
 
355
409
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
356
- var global$T =
410
+ var global$R =
357
411
  // eslint-disable-next-line es/no-global-this -- safe
358
412
  check(typeof globalThis == 'object' && globalThis) ||
359
413
  check(typeof window == 'object' && window) ||
@@ -365,7 +419,7 @@ var global$T =
365
419
 
366
420
  var objectGetOwnPropertyDescriptor = {};
367
421
 
368
- var fails$q = function (exec) {
422
+ var fails$p = function (exec) {
369
423
  try {
370
424
  return !!exec();
371
425
  } catch (error) {
@@ -373,17 +427,17 @@ var fails$q = function (exec) {
373
427
  }
374
428
  };
375
429
 
376
- var fails$p = fails$q;
430
+ var fails$o = fails$p;
377
431
 
378
432
  // Detect IE8's incomplete defineProperty implementation
379
- var descriptors = !fails$p(function () {
433
+ var descriptors = !fails$o(function () {
380
434
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
381
435
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
382
436
  });
383
437
 
384
- var fails$o = fails$q;
438
+ var fails$n = fails$p;
385
439
 
386
- var functionBindNative = !fails$o(function () {
440
+ var functionBindNative = !fails$n(function () {
387
441
  var test = (function () { /* empty */ }).bind();
388
442
  // eslint-disable-next-line no-prototype-builtins -- safe
389
443
  return typeof test != 'function' || test.hasOwnProperty('prototype');
@@ -427,35 +481,35 @@ var NATIVE_BIND$2 = functionBindNative;
427
481
  var FunctionPrototype$3 = Function.prototype;
428
482
  var bind$a = FunctionPrototype$3.bind;
429
483
  var call$g = FunctionPrototype$3.call;
430
- var uncurryThis$v = NATIVE_BIND$2 && bind$a.bind(call$g, call$g);
484
+ var uncurryThis$t = NATIVE_BIND$2 && bind$a.bind(call$g, call$g);
431
485
 
432
486
  var functionUncurryThis = NATIVE_BIND$2 ? function (fn) {
433
- return fn && uncurryThis$v(fn);
487
+ return fn && uncurryThis$t(fn);
434
488
  } : function (fn) {
435
489
  return fn && function () {
436
490
  return call$g.apply(fn, arguments);
437
491
  };
438
492
  };
439
493
 
440
- var uncurryThis$u = functionUncurryThis;
494
+ var uncurryThis$s = functionUncurryThis;
441
495
 
442
- var toString$c = uncurryThis$u({}.toString);
443
- var stringSlice$5 = uncurryThis$u(''.slice);
496
+ var toString$b = uncurryThis$s({}.toString);
497
+ var stringSlice$5 = uncurryThis$s(''.slice);
444
498
 
445
499
  var classofRaw$1 = function (it) {
446
- return stringSlice$5(toString$c(it), 8, -1);
500
+ return stringSlice$5(toString$b(it), 8, -1);
447
501
  };
448
502
 
449
- var global$S = global$T;
450
- var uncurryThis$t = functionUncurryThis;
451
- var fails$n = fails$q;
503
+ var global$Q = global$R;
504
+ var uncurryThis$r = functionUncurryThis;
505
+ var fails$m = fails$p;
452
506
  var classof$a = classofRaw$1;
453
507
 
454
- var Object$5 = global$S.Object;
455
- var split$3 = uncurryThis$t(''.split);
508
+ var Object$5 = global$Q.Object;
509
+ var split$3 = uncurryThis$r(''.split);
456
510
 
457
511
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
458
- var indexedObject = fails$n(function () {
512
+ var indexedObject = fails$m(function () {
459
513
  // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
460
514
  // eslint-disable-next-line no-prototype-builtins -- safe
461
515
  return !Object$5('z').propertyIsEnumerable(0);
@@ -463,23 +517,23 @@ var indexedObject = fails$n(function () {
463
517
  return classof$a(it) == 'String' ? split$3(it, '') : Object$5(it);
464
518
  } : Object$5;
465
519
 
466
- var global$R = global$T;
520
+ var global$P = global$R;
467
521
 
468
- var TypeError$m = global$R.TypeError;
522
+ var TypeError$l = global$P.TypeError;
469
523
 
470
524
  // `RequireObjectCoercible` abstract operation
471
525
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
472
526
  var requireObjectCoercible$8 = function (it) {
473
- if (it == undefined) throw TypeError$m("Can't call method on " + it);
527
+ if (it == undefined) throw TypeError$l("Can't call method on " + it);
474
528
  return it;
475
529
  };
476
530
 
477
531
  // toObject with fallback for non-array-like ES3 strings
478
- var IndexedObject$3 = indexedObject;
532
+ var IndexedObject$2 = indexedObject;
479
533
  var requireObjectCoercible$7 = requireObjectCoercible$8;
480
534
 
481
535
  var toIndexedObject$5 = function (it) {
482
- return IndexedObject$3(requireObjectCoercible$7(it));
536
+ return IndexedObject$2(requireObjectCoercible$7(it));
483
537
  };
484
538
 
485
539
  // `IsCallable` abstract operation
@@ -494,7 +548,7 @@ var isObject$d = function (it) {
494
548
  return typeof it == 'object' ? it !== null : isCallable$j(it);
495
549
  };
496
550
 
497
- var global$Q = global$T;
551
+ var global$O = global$R;
498
552
  var isCallable$i = isCallable$k;
499
553
 
500
554
  var aFunction = function (argument) {
@@ -502,22 +556,22 @@ var aFunction = function (argument) {
502
556
  };
503
557
 
504
558
  var getBuiltIn$8 = function (namespace, method) {
505
- return arguments.length < 2 ? aFunction(global$Q[namespace]) : global$Q[namespace] && global$Q[namespace][method];
559
+ return arguments.length < 2 ? aFunction(global$O[namespace]) : global$O[namespace] && global$O[namespace][method];
506
560
  };
507
561
 
508
- var uncurryThis$s = functionUncurryThis;
562
+ var uncurryThis$q = functionUncurryThis;
509
563
 
510
- var objectIsPrototypeOf = uncurryThis$s({}.isPrototypeOf);
564
+ var objectIsPrototypeOf = uncurryThis$q({}.isPrototypeOf);
511
565
 
512
566
  var getBuiltIn$7 = getBuiltIn$8;
513
567
 
514
568
  var engineUserAgent = getBuiltIn$7('navigator', 'userAgent') || '';
515
569
 
516
- var global$P = global$T;
570
+ var global$N = global$R;
517
571
  var userAgent$3 = engineUserAgent;
518
572
 
519
- var process$4 = global$P.process;
520
- var Deno = global$P.Deno;
573
+ var process$4 = global$N.process;
574
+ var Deno = global$N.Deno;
521
575
  var versions = process$4 && process$4.versions || Deno && Deno.version;
522
576
  var v8 = versions && versions.v8;
523
577
  var match, version;
@@ -544,10 +598,10 @@ var engineV8Version = version;
544
598
  /* eslint-disable es/no-symbol -- required for testing */
545
599
 
546
600
  var V8_VERSION$3 = engineV8Version;
547
- var fails$m = fails$q;
601
+ var fails$l = fails$p;
548
602
 
549
603
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
550
- var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$m(function () {
604
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$l(function () {
551
605
  var symbol = Symbol();
552
606
  // Chrome 38 Symbol has incorrect toString conversion
553
607
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -564,13 +618,13 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
564
618
  && !Symbol.sham
565
619
  && typeof Symbol.iterator == 'symbol';
566
620
 
567
- var global$O = global$T;
621
+ var global$M = global$R;
568
622
  var getBuiltIn$6 = getBuiltIn$8;
569
623
  var isCallable$h = isCallable$k;
570
624
  var isPrototypeOf$4 = objectIsPrototypeOf;
571
625
  var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
572
626
 
573
- var Object$4 = global$O.Object;
627
+ var Object$4 = global$M.Object;
574
628
 
575
629
  var isSymbol$3 = USE_SYMBOL_AS_UID$1 ? function (it) {
576
630
  return typeof it == 'symbol';
@@ -579,9 +633,9 @@ var isSymbol$3 = USE_SYMBOL_AS_UID$1 ? function (it) {
579
633
  return isCallable$h($Symbol) && isPrototypeOf$4($Symbol.prototype, Object$4(it));
580
634
  };
581
635
 
582
- var global$N = global$T;
636
+ var global$L = global$R;
583
637
 
584
- var String$5 = global$N.String;
638
+ var String$5 = global$L.String;
585
639
 
586
640
  var tryToString$4 = function (argument) {
587
641
  try {
@@ -591,33 +645,33 @@ var tryToString$4 = function (argument) {
591
645
  }
592
646
  };
593
647
 
594
- var global$M = global$T;
648
+ var global$K = global$R;
595
649
  var isCallable$g = isCallable$k;
596
650
  var tryToString$3 = tryToString$4;
597
651
 
598
- var TypeError$l = global$M.TypeError;
652
+ var TypeError$k = global$K.TypeError;
599
653
 
600
654
  // `Assert: IsCallable(argument) is true`
601
- var aCallable$7 = function (argument) {
655
+ var aCallable$6 = function (argument) {
602
656
  if (isCallable$g(argument)) return argument;
603
- throw TypeError$l(tryToString$3(argument) + ' is not a function');
657
+ throw TypeError$k(tryToString$3(argument) + ' is not a function');
604
658
  };
605
659
 
606
- var aCallable$6 = aCallable$7;
660
+ var aCallable$5 = aCallable$6;
607
661
 
608
662
  // `GetMethod` abstract operation
609
663
  // https://tc39.es/ecma262/#sec-getmethod
610
664
  var getMethod$5 = function (V, P) {
611
665
  var func = V[P];
612
- return func == null ? undefined : aCallable$6(func);
666
+ return func == null ? undefined : aCallable$5(func);
613
667
  };
614
668
 
615
- var global$L = global$T;
669
+ var global$J = global$R;
616
670
  var call$f = functionCall;
617
671
  var isCallable$f = isCallable$k;
618
672
  var isObject$c = isObject$d;
619
673
 
620
- var TypeError$k = global$L.TypeError;
674
+ var TypeError$j = global$J.TypeError;
621
675
 
622
676
  // `OrdinaryToPrimitive` abstract operation
623
677
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
@@ -626,31 +680,31 @@ var ordinaryToPrimitive$1 = function (input, pref) {
626
680
  if (pref === 'string' && isCallable$f(fn = input.toString) && !isObject$c(val = call$f(fn, input))) return val;
627
681
  if (isCallable$f(fn = input.valueOf) && !isObject$c(val = call$f(fn, input))) return val;
628
682
  if (pref !== 'string' && isCallable$f(fn = input.toString) && !isObject$c(val = call$f(fn, input))) return val;
629
- throw TypeError$k("Can't convert object to primitive value");
683
+ throw TypeError$j("Can't convert object to primitive value");
630
684
  };
631
685
 
632
686
  var shared$4 = {exports: {}};
633
687
 
634
688
  var isPure = false;
635
689
 
636
- var global$K = global$T;
690
+ var global$I = global$R;
637
691
 
638
692
  // eslint-disable-next-line es/no-object-defineproperty -- safe
639
693
  var defineProperty$5 = Object.defineProperty;
640
694
 
641
695
  var setGlobal$3 = function (key, value) {
642
696
  try {
643
- defineProperty$5(global$K, key, { value: value, configurable: true, writable: true });
697
+ defineProperty$5(global$I, key, { value: value, configurable: true, writable: true });
644
698
  } catch (error) {
645
- global$K[key] = value;
699
+ global$I[key] = value;
646
700
  } return value;
647
701
  };
648
702
 
649
- var global$J = global$T;
703
+ var global$H = global$R;
650
704
  var setGlobal$2 = setGlobal$3;
651
705
 
652
706
  var SHARED = '__core-js_shared__';
653
- var store$4 = global$J[SHARED] || setGlobal$2(SHARED, {});
707
+ var store$4 = global$H[SHARED] || setGlobal$2(SHARED, {});
654
708
 
655
709
  var sharedStore = store$4;
656
710
 
@@ -666,39 +720,39 @@ var store$3 = sharedStore;
666
720
  source: 'https://github.com/zloirock/core-js'
667
721
  });
668
722
 
669
- var global$I = global$T;
723
+ var global$G = global$R;
670
724
  var requireObjectCoercible$6 = requireObjectCoercible$8;
671
725
 
672
- var Object$3 = global$I.Object;
726
+ var Object$3 = global$G.Object;
673
727
 
674
728
  // `ToObject` abstract operation
675
729
  // https://tc39.es/ecma262/#sec-toobject
676
- var toObject$9 = function (argument) {
730
+ var toObject$8 = function (argument) {
677
731
  return Object$3(requireObjectCoercible$6(argument));
678
732
  };
679
733
 
680
- var uncurryThis$r = functionUncurryThis;
681
- var toObject$8 = toObject$9;
734
+ var uncurryThis$p = functionUncurryThis;
735
+ var toObject$7 = toObject$8;
682
736
 
683
- var hasOwnProperty = uncurryThis$r({}.hasOwnProperty);
737
+ var hasOwnProperty = uncurryThis$p({}.hasOwnProperty);
684
738
 
685
739
  // `HasOwnProperty` abstract operation
686
740
  // https://tc39.es/ecma262/#sec-hasownproperty
687
741
  var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
688
- return hasOwnProperty(toObject$8(it), key);
742
+ return hasOwnProperty(toObject$7(it), key);
689
743
  };
690
744
 
691
- var uncurryThis$q = functionUncurryThis;
745
+ var uncurryThis$o = functionUncurryThis;
692
746
 
693
- var id = 0;
747
+ var id$1 = 0;
694
748
  var postfix = Math.random();
695
- var toString$b = uncurryThis$q(1.0.toString);
749
+ var toString$a = uncurryThis$o(1.0.toString);
696
750
 
697
751
  var uid$2 = function (key) {
698
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$b(++id + postfix, 36);
752
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$a(++id$1 + postfix, 36);
699
753
  };
700
754
 
701
- var global$H = global$T;
755
+ var global$F = global$R;
702
756
  var shared$3 = shared$4.exports;
703
757
  var hasOwn$c = hasOwnProperty_1;
704
758
  var uid$1 = uid$2;
@@ -706,15 +760,15 @@ var NATIVE_SYMBOL = nativeSymbol;
706
760
  var USE_SYMBOL_AS_UID = useSymbolAsUid;
707
761
 
708
762
  var WellKnownSymbolsStore = shared$3('wks');
709
- var Symbol$2 = global$H.Symbol;
710
- var symbolFor = Symbol$2 && Symbol$2['for'];
711
- var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$2 : Symbol$2 && Symbol$2.withoutSetter || uid$1;
763
+ var Symbol$1 = global$F.Symbol;
764
+ var symbolFor = Symbol$1 && Symbol$1['for'];
765
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
712
766
 
713
767
  var wellKnownSymbol$m = function (name) {
714
768
  if (!hasOwn$c(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
715
769
  var description = 'Symbol.' + name;
716
- if (NATIVE_SYMBOL && hasOwn$c(Symbol$2, name)) {
717
- WellKnownSymbolsStore[name] = Symbol$2[name];
770
+ if (NATIVE_SYMBOL && hasOwn$c(Symbol$1, name)) {
771
+ WellKnownSymbolsStore[name] = Symbol$1[name];
718
772
  } else if (USE_SYMBOL_AS_UID && symbolFor) {
719
773
  WellKnownSymbolsStore[name] = symbolFor(description);
720
774
  } else {
@@ -723,7 +777,7 @@ var wellKnownSymbol$m = function (name) {
723
777
  } return WellKnownSymbolsStore[name];
724
778
  };
725
779
 
726
- var global$G = global$T;
780
+ var global$E = global$R;
727
781
  var call$e = functionCall;
728
782
  var isObject$b = isObject$d;
729
783
  var isSymbol$2 = isSymbol$3;
@@ -731,7 +785,7 @@ var getMethod$4 = getMethod$5;
731
785
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
732
786
  var wellKnownSymbol$l = wellKnownSymbol$m;
733
787
 
734
- var TypeError$j = global$G.TypeError;
788
+ var TypeError$i = global$E.TypeError;
735
789
  var TO_PRIMITIVE = wellKnownSymbol$l('toPrimitive');
736
790
 
737
791
  // `ToPrimitive` abstract operation
@@ -744,7 +798,7 @@ var toPrimitive$2 = function (input, pref) {
744
798
  if (pref === undefined) pref = 'default';
745
799
  result = call$e(exoticToPrim, input, pref);
746
800
  if (!isObject$b(result) || isSymbol$2(result)) return result;
747
- throw TypeError$j("Can't convert object to primitive value");
801
+ throw TypeError$i("Can't convert object to primitive value");
748
802
  }
749
803
  if (pref === undefined) pref = 'number';
750
804
  return ordinaryToPrimitive(input, pref);
@@ -760,10 +814,10 @@ var toPropertyKey$3 = function (argument) {
760
814
  return isSymbol$1(key) ? key : key + '';
761
815
  };
762
816
 
763
- var global$F = global$T;
817
+ var global$D = global$R;
764
818
  var isObject$a = isObject$d;
765
819
 
766
- var document$3 = global$F.document;
820
+ var document$3 = global$D.document;
767
821
  // typeof document.createElement is 'object' in old IE
768
822
  var EXISTS$1 = isObject$a(document$3) && isObject$a(document$3.createElement);
769
823
 
@@ -772,11 +826,11 @@ var documentCreateElement$2 = function (it) {
772
826
  };
773
827
 
774
828
  var DESCRIPTORS$c = descriptors;
775
- var fails$l = fails$q;
829
+ var fails$k = fails$p;
776
830
  var createElement$1 = documentCreateElement$2;
777
831
 
778
832
  // Thanks to IE8 for its funny defineProperty
779
- var ie8DomDefine = !DESCRIPTORS$c && !fails$l(function () {
833
+ var ie8DomDefine = !DESCRIPTORS$c && !fails$k(function () {
780
834
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
781
835
  return Object.defineProperty(createElement$1('div'), 'a', {
782
836
  get: function () { return 7; }
@@ -809,11 +863,11 @@ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$b ? $getOwnPropertyDescriptor$1 :
809
863
  var objectDefineProperty = {};
810
864
 
811
865
  var DESCRIPTORS$a = descriptors;
812
- var fails$k = fails$q;
866
+ var fails$j = fails$p;
813
867
 
814
868
  // V8 ~ Chrome 36-
815
869
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
816
- var v8PrototypeDefineBug = DESCRIPTORS$a && fails$k(function () {
870
+ var v8PrototypeDefineBug = DESCRIPTORS$a && fails$j(function () {
817
871
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
818
872
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
819
873
  value: 42,
@@ -821,26 +875,26 @@ var v8PrototypeDefineBug = DESCRIPTORS$a && fails$k(function () {
821
875
  }).prototype != 42;
822
876
  });
823
877
 
824
- var global$E = global$T;
878
+ var global$C = global$R;
825
879
  var isObject$9 = isObject$d;
826
880
 
827
- var String$4 = global$E.String;
828
- var TypeError$i = global$E.TypeError;
881
+ var String$4 = global$C.String;
882
+ var TypeError$h = global$C.TypeError;
829
883
 
830
884
  // `Assert: Type(argument) is Object`
831
885
  var anObject$h = function (argument) {
832
886
  if (isObject$9(argument)) return argument;
833
- throw TypeError$i(String$4(argument) + ' is not an object');
887
+ throw TypeError$h(String$4(argument) + ' is not an object');
834
888
  };
835
889
 
836
- var global$D = global$T;
890
+ var global$B = global$R;
837
891
  var DESCRIPTORS$9 = descriptors;
838
892
  var IE8_DOM_DEFINE = ie8DomDefine;
839
893
  var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
840
894
  var anObject$g = anObject$h;
841
895
  var toPropertyKey$1 = toPropertyKey$3;
842
896
 
843
- var TypeError$h = global$D.TypeError;
897
+ var TypeError$g = global$B.TypeError;
844
898
  // eslint-disable-next-line es/no-object-defineproperty -- safe
845
899
  var $defineProperty = Object.defineProperty;
846
900
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
@@ -873,7 +927,7 @@ objectDefineProperty.f = DESCRIPTORS$9 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
873
927
  if (IE8_DOM_DEFINE) try {
874
928
  return $defineProperty(O, P, Attributes);
875
929
  } catch (error) { /* empty */ }
876
- if ('get' in Attributes || 'set' in Attributes) throw TypeError$h('Accessors not supported');
930
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError$g('Accessors not supported');
877
931
  if ('value' in Attributes) O[P] = Attributes.value;
878
932
  return O;
879
933
  };
@@ -891,11 +945,11 @@ var createNonEnumerableProperty$7 = DESCRIPTORS$8 ? function (object, key, value
891
945
 
892
946
  var redefine$b = {exports: {}};
893
947
 
894
- var uncurryThis$p = functionUncurryThis;
948
+ var uncurryThis$n = functionUncurryThis;
895
949
  var isCallable$e = isCallable$k;
896
950
  var store$2 = sharedStore;
897
951
 
898
- var functionToString$1 = uncurryThis$p(Function.toString);
952
+ var functionToString$1 = uncurryThis$n(Function.toString);
899
953
 
900
954
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
901
955
  if (!isCallable$e(store$2.inspectSource)) {
@@ -906,11 +960,11 @@ if (!isCallable$e(store$2.inspectSource)) {
906
960
 
907
961
  var inspectSource$4 = store$2.inspectSource;
908
962
 
909
- var global$C = global$T;
963
+ var global$A = global$R;
910
964
  var isCallable$d = isCallable$k;
911
965
  var inspectSource$3 = inspectSource$4;
912
966
 
913
- var WeakMap$1 = global$C.WeakMap;
967
+ var WeakMap$1 = global$A.WeakMap;
914
968
 
915
969
  var nativeWeakMap = isCallable$d(WeakMap$1) && /native code/.test(inspectSource$3(WeakMap$1));
916
970
 
@@ -926,8 +980,8 @@ var sharedKey$3 = function (key) {
926
980
  var hiddenKeys$4 = {};
927
981
 
928
982
  var NATIVE_WEAK_MAP = nativeWeakMap;
929
- var global$B = global$T;
930
- var uncurryThis$o = functionUncurryThis;
983
+ var global$z = global$R;
984
+ var uncurryThis$m = functionUncurryThis;
931
985
  var isObject$8 = isObject$d;
932
986
  var createNonEnumerableProperty$6 = createNonEnumerableProperty$7;
933
987
  var hasOwn$a = hasOwnProperty_1;
@@ -936,8 +990,8 @@ var sharedKey$2 = sharedKey$3;
936
990
  var hiddenKeys$3 = hiddenKeys$4;
937
991
 
938
992
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
939
- var TypeError$g = global$B.TypeError;
940
- var WeakMap = global$B.WeakMap;
993
+ var TypeError$f = global$z.TypeError;
994
+ var WeakMap = global$z.WeakMap;
941
995
  var set$1, get, has;
942
996
 
943
997
  var enforce = function (it) {
@@ -948,18 +1002,18 @@ var getterFor = function (TYPE) {
948
1002
  return function (it) {
949
1003
  var state;
950
1004
  if (!isObject$8(it) || (state = get(it)).type !== TYPE) {
951
- throw TypeError$g('Incompatible receiver, ' + TYPE + ' required');
1005
+ throw TypeError$f('Incompatible receiver, ' + TYPE + ' required');
952
1006
  } return state;
953
1007
  };
954
1008
  };
955
1009
 
956
1010
  if (NATIVE_WEAK_MAP || shared$1.state) {
957
1011
  var store$1 = shared$1.state || (shared$1.state = new WeakMap());
958
- var wmget = uncurryThis$o(store$1.get);
959
- var wmhas = uncurryThis$o(store$1.has);
960
- var wmset = uncurryThis$o(store$1.set);
1012
+ var wmget = uncurryThis$m(store$1.get);
1013
+ var wmhas = uncurryThis$m(store$1.has);
1014
+ var wmset = uncurryThis$m(store$1.set);
961
1015
  set$1 = function (it, metadata) {
962
- if (wmhas(store$1, it)) throw new TypeError$g(OBJECT_ALREADY_INITIALIZED);
1016
+ if (wmhas(store$1, it)) throw new TypeError$f(OBJECT_ALREADY_INITIALIZED);
963
1017
  metadata.facade = it;
964
1018
  wmset(store$1, it, metadata);
965
1019
  return metadata;
@@ -974,7 +1028,7 @@ if (NATIVE_WEAK_MAP || shared$1.state) {
974
1028
  var STATE = sharedKey$2('state');
975
1029
  hiddenKeys$3[STATE] = true;
976
1030
  set$1 = function (it, metadata) {
977
- if (hasOwn$a(it, STATE)) throw new TypeError$g(OBJECT_ALREADY_INITIALIZED);
1031
+ if (hasOwn$a(it, STATE)) throw new TypeError$f(OBJECT_ALREADY_INITIALIZED);
978
1032
  metadata.facade = it;
979
1033
  createNonEnumerableProperty$6(it, STATE, metadata);
980
1034
  return metadata;
@@ -1013,7 +1067,7 @@ var functionName = {
1013
1067
  CONFIGURABLE: CONFIGURABLE
1014
1068
  };
1015
1069
 
1016
- var global$A = global$T;
1070
+ var global$y = global$R;
1017
1071
  var isCallable$c = isCallable$k;
1018
1072
  var hasOwn$8 = hasOwnProperty_1;
1019
1073
  var createNonEnumerableProperty$5 = createNonEnumerableProperty$7;
@@ -1044,7 +1098,7 @@ var TEMPLATE = String(String).split('String');
1044
1098
  state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
1045
1099
  }
1046
1100
  }
1047
- if (O === global$A) {
1101
+ if (O === global$y) {
1048
1102
  if (simple) O[key] = value;
1049
1103
  else setGlobal$1(key, value);
1050
1104
  return;
@@ -1100,19 +1154,19 @@ var toLength$2 = toLength$3;
1100
1154
 
1101
1155
  // `LengthOfArrayLike` abstract operation
1102
1156
  // https://tc39.es/ecma262/#sec-lengthofarraylike
1103
- var lengthOfArrayLike$9 = function (obj) {
1157
+ var lengthOfArrayLike$8 = function (obj) {
1104
1158
  return toLength$2(obj.length);
1105
1159
  };
1106
1160
 
1107
1161
  var toIndexedObject$3 = toIndexedObject$5;
1108
1162
  var toAbsoluteIndex$1 = toAbsoluteIndex$2;
1109
- var lengthOfArrayLike$8 = lengthOfArrayLike$9;
1163
+ var lengthOfArrayLike$7 = lengthOfArrayLike$8;
1110
1164
 
1111
1165
  // `Array.prototype.{ indexOf, includes }` methods implementation
1112
- var createMethod$4 = function (IS_INCLUDES) {
1166
+ var createMethod$3 = function (IS_INCLUDES) {
1113
1167
  return function ($this, el, fromIndex) {
1114
1168
  var O = toIndexedObject$3($this);
1115
- var length = lengthOfArrayLike$8(O);
1169
+ var length = lengthOfArrayLike$7(O);
1116
1170
  var index = toAbsoluteIndex$1(fromIndex, length);
1117
1171
  var value;
1118
1172
  // Array#includes uses SameValueZero equality algorithm
@@ -1131,19 +1185,19 @@ var createMethod$4 = function (IS_INCLUDES) {
1131
1185
  var arrayIncludes = {
1132
1186
  // `Array.prototype.includes` method
1133
1187
  // https://tc39.es/ecma262/#sec-array.prototype.includes
1134
- includes: createMethod$4(true),
1188
+ includes: createMethod$3(true),
1135
1189
  // `Array.prototype.indexOf` method
1136
1190
  // https://tc39.es/ecma262/#sec-array.prototype.indexof
1137
- indexOf: createMethod$4(false)
1191
+ indexOf: createMethod$3(false)
1138
1192
  };
1139
1193
 
1140
- var uncurryThis$n = functionUncurryThis;
1194
+ var uncurryThis$l = functionUncurryThis;
1141
1195
  var hasOwn$7 = hasOwnProperty_1;
1142
1196
  var toIndexedObject$2 = toIndexedObject$5;
1143
1197
  var indexOf$1 = arrayIncludes.indexOf;
1144
1198
  var hiddenKeys$2 = hiddenKeys$4;
1145
1199
 
1146
- var push$5 = uncurryThis$n([].push);
1200
+ var push$5 = uncurryThis$l([].push);
1147
1201
 
1148
1202
  var objectKeysInternal = function (object, names) {
1149
1203
  var O = toIndexedObject$2(object);
@@ -1187,12 +1241,12 @@ var objectGetOwnPropertySymbols = {};
1187
1241
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
1188
1242
 
1189
1243
  var getBuiltIn$5 = getBuiltIn$8;
1190
- var uncurryThis$m = functionUncurryThis;
1244
+ var uncurryThis$k = functionUncurryThis;
1191
1245
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
1192
1246
  var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
1193
1247
  var anObject$f = anObject$h;
1194
1248
 
1195
- var concat$1 = uncurryThis$m([].concat);
1249
+ var concat$1 = uncurryThis$k([].concat);
1196
1250
 
1197
1251
  // all object keys, includes non-enumerable and symbols
1198
1252
  var ownKeys$1 = getBuiltIn$5('Reflect', 'ownKeys') || function ownKeys(it) {
@@ -1218,7 +1272,7 @@ var copyConstructorProperties$1 = function (target, source, exceptions) {
1218
1272
  }
1219
1273
  };
1220
1274
 
1221
- var fails$j = fails$q;
1275
+ var fails$i = fails$p;
1222
1276
  var isCallable$b = isCallable$k;
1223
1277
 
1224
1278
  var replacement = /#|\.prototype\./;
@@ -1227,7 +1281,7 @@ var isForced$3 = function (feature, detection) {
1227
1281
  var value = data[normalize(feature)];
1228
1282
  return value == POLYFILL ? true
1229
1283
  : value == NATIVE ? false
1230
- : isCallable$b(detection) ? fails$j(detection)
1284
+ : isCallable$b(detection) ? fails$i(detection)
1231
1285
  : !!detection;
1232
1286
  };
1233
1287
 
@@ -1241,7 +1295,7 @@ var POLYFILL = isForced$3.POLYFILL = 'P';
1241
1295
 
1242
1296
  var isForced_1 = isForced$3;
1243
1297
 
1244
- var global$z = global$T;
1298
+ var global$x = global$R;
1245
1299
  var getOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f;
1246
1300
  var createNonEnumerableProperty$4 = createNonEnumerableProperty$7;
1247
1301
  var redefine$a = redefine$b.exports;
@@ -1270,11 +1324,11 @@ var _export = function (options, source) {
1270
1324
  var STATIC = options.stat;
1271
1325
  var FORCED, target, key, targetProperty, sourceProperty, descriptor;
1272
1326
  if (GLOBAL) {
1273
- target = global$z;
1327
+ target = global$x;
1274
1328
  } else if (STATIC) {
1275
- target = global$z[TARGET] || setGlobal(TARGET, {});
1329
+ target = global$x[TARGET] || setGlobal(TARGET, {});
1276
1330
  } else {
1277
- target = (global$z[TARGET] || {}).prototype;
1331
+ target = (global$x[TARGET] || {}).prototype;
1278
1332
  }
1279
1333
  if (target) for (key in source) {
1280
1334
  sourceProperty = source[key];
@@ -1325,14 +1379,14 @@ test[TO_STRING_TAG$3] = 'z';
1325
1379
 
1326
1380
  var toStringTagSupport = String(test) === '[object z]';
1327
1381
 
1328
- var global$y = global$T;
1382
+ var global$w = global$R;
1329
1383
  var TO_STRING_TAG_SUPPORT$2 = toStringTagSupport;
1330
1384
  var isCallable$a = isCallable$k;
1331
1385
  var classofRaw = classofRaw$1;
1332
1386
  var wellKnownSymbol$j = wellKnownSymbol$m;
1333
1387
 
1334
1388
  var TO_STRING_TAG$2 = wellKnownSymbol$j('toStringTag');
1335
- var Object$2 = global$y.Object;
1389
+ var Object$2 = global$w.Object;
1336
1390
 
1337
1391
  // ES3 wrong here
1338
1392
  var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
@@ -1356,8 +1410,8 @@ var classof$8 = TO_STRING_TAG_SUPPORT$2 ? classofRaw : function (it) {
1356
1410
  : (result = classofRaw(O)) == 'Object' && isCallable$a(O.callee) ? 'Arguments' : result;
1357
1411
  };
1358
1412
 
1359
- var uncurryThis$l = functionUncurryThis;
1360
- var fails$i = fails$q;
1413
+ var uncurryThis$j = functionUncurryThis;
1414
+ var fails$h = fails$p;
1361
1415
  var isCallable$9 = isCallable$k;
1362
1416
  var classof$7 = classof$8;
1363
1417
  var getBuiltIn$4 = getBuiltIn$8;
@@ -1367,7 +1421,7 @@ var noop$1 = function () { /* empty */ };
1367
1421
  var empty = [];
1368
1422
  var construct = getBuiltIn$4('Reflect', 'construct');
1369
1423
  var constructorRegExp = /^\s*(?:class|function)\b/;
1370
- var exec$5 = uncurryThis$l(constructorRegExp.exec);
1424
+ var exec$4 = uncurryThis$j(constructorRegExp.exec);
1371
1425
  var INCORRECT_TO_STRING = !constructorRegExp.exec(noop$1);
1372
1426
 
1373
1427
  var isConstructorModern = function isConstructor(argument) {
@@ -1391,7 +1445,7 @@ var isConstructorLegacy = function isConstructor(argument) {
1391
1445
  // we can't check .prototype since constructors produced by .bind haven't it
1392
1446
  // `Function#toString` throws on some built-it function in some legacy engines
1393
1447
  // (for example, `DOMQuad` and similar in FF41-)
1394
- return INCORRECT_TO_STRING || !!exec$5(constructorRegExp, inspectSource$1(argument));
1448
+ return INCORRECT_TO_STRING || !!exec$4(constructorRegExp, inspectSource$1(argument));
1395
1449
  } catch (error) {
1396
1450
  return true;
1397
1451
  }
@@ -1401,7 +1455,7 @@ isConstructorLegacy.sham = true;
1401
1455
 
1402
1456
  // `IsConstructor` abstract operation
1403
1457
  // https://tc39.es/ecma262/#sec-isconstructor
1404
- var isConstructor$3 = !construct || fails$i(function () {
1458
+ var isConstructor$3 = !construct || fails$h(function () {
1405
1459
  var called;
1406
1460
  return isConstructorModern(isConstructorModern.call)
1407
1461
  || !isConstructorModern(Object)
@@ -1409,14 +1463,14 @@ var isConstructor$3 = !construct || fails$i(function () {
1409
1463
  || called;
1410
1464
  }) ? isConstructorLegacy : isConstructorModern;
1411
1465
 
1412
- var global$x = global$T;
1466
+ var global$v = global$R;
1413
1467
  var isArray$2 = isArray$3;
1414
1468
  var isConstructor$2 = isConstructor$3;
1415
1469
  var isObject$7 = isObject$d;
1416
1470
  var wellKnownSymbol$i = wellKnownSymbol$m;
1417
1471
 
1418
1472
  var SPECIES$5 = wellKnownSymbol$i('species');
1419
- var Array$3 = global$x.Array;
1473
+ var Array$3 = global$v.Array;
1420
1474
 
1421
1475
  // a part of `ArraySpeciesCreate` abstract operation
1422
1476
  // https://tc39.es/ecma262/#sec-arrayspeciescreate
@@ -1441,7 +1495,7 @@ var arraySpeciesCreate$3 = function (originalArray, length) {
1441
1495
  return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
1442
1496
  };
1443
1497
 
1444
- var fails$h = fails$q;
1498
+ var fails$g = fails$p;
1445
1499
  var wellKnownSymbol$h = wellKnownSymbol$m;
1446
1500
  var V8_VERSION$2 = engineV8Version;
1447
1501
 
@@ -1451,7 +1505,7 @@ var arrayMethodHasSpeciesSupport$2 = function (METHOD_NAME) {
1451
1505
  // We can't use this feature detection in V8 since it causes
1452
1506
  // deoptimization and serious performance degradation
1453
1507
  // https://github.com/zloirock/core-js/issues/677
1454
- return V8_VERSION$2 >= 51 || !fails$h(function () {
1508
+ return V8_VERSION$2 >= 51 || !fails$g(function () {
1455
1509
  var array = [];
1456
1510
  var constructor = array.constructor = {};
1457
1511
  constructor[SPECIES$4] = function () {
@@ -1461,13 +1515,13 @@ var arrayMethodHasSpeciesSupport$2 = function (METHOD_NAME) {
1461
1515
  });
1462
1516
  };
1463
1517
 
1464
- var $$i = _export;
1465
- var global$w = global$T;
1466
- var fails$g = fails$q;
1518
+ var $$f = _export;
1519
+ var global$u = global$R;
1520
+ var fails$f = fails$p;
1467
1521
  var isArray$1 = isArray$3;
1468
1522
  var isObject$6 = isObject$d;
1469
- var toObject$7 = toObject$9;
1470
- var lengthOfArrayLike$7 = lengthOfArrayLike$9;
1523
+ var toObject$6 = toObject$8;
1524
+ var lengthOfArrayLike$6 = lengthOfArrayLike$8;
1471
1525
  var createProperty$2 = createProperty$3;
1472
1526
  var arraySpeciesCreate$2 = arraySpeciesCreate$3;
1473
1527
  var arrayMethodHasSpeciesSupport$1 = arrayMethodHasSpeciesSupport$2;
@@ -1477,12 +1531,12 @@ var V8_VERSION$1 = engineV8Version;
1477
1531
  var IS_CONCAT_SPREADABLE = wellKnownSymbol$g('isConcatSpreadable');
1478
1532
  var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
1479
1533
  var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
1480
- var TypeError$f = global$w.TypeError;
1534
+ var TypeError$e = global$u.TypeError;
1481
1535
 
1482
1536
  // We can't use this feature detection in V8 since it causes
1483
1537
  // deoptimization and serious performance degradation
1484
1538
  // https://github.com/zloirock/core-js/issues/679
1485
- var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION$1 >= 51 || !fails$g(function () {
1539
+ var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION$1 >= 51 || !fails$f(function () {
1486
1540
  var array = [];
1487
1541
  array[IS_CONCAT_SPREADABLE] = false;
1488
1542
  return array.concat()[0] !== array;
@@ -1496,26 +1550,26 @@ var isConcatSpreadable = function (O) {
1496
1550
  return spreadable !== undefined ? !!spreadable : isArray$1(O);
1497
1551
  };
1498
1552
 
1499
- var FORCED$2 = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
1553
+ var FORCED$1 = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
1500
1554
 
1501
1555
  // `Array.prototype.concat` method
1502
1556
  // https://tc39.es/ecma262/#sec-array.prototype.concat
1503
1557
  // with adding support of @@isConcatSpreadable and @@species
1504
- $$i({ target: 'Array', proto: true, forced: FORCED$2 }, {
1558
+ $$f({ target: 'Array', proto: true, forced: FORCED$1 }, {
1505
1559
  // eslint-disable-next-line no-unused-vars -- required for `.length`
1506
1560
  concat: function concat(arg) {
1507
- var O = toObject$7(this);
1561
+ var O = toObject$6(this);
1508
1562
  var A = arraySpeciesCreate$2(O, 0);
1509
1563
  var n = 0;
1510
1564
  var i, k, length, len, E;
1511
1565
  for (i = -1, length = arguments.length; i < length; i++) {
1512
1566
  E = i === -1 ? O : arguments[i];
1513
1567
  if (isConcatSpreadable(E)) {
1514
- len = lengthOfArrayLike$7(E);
1515
- if (n + len > MAX_SAFE_INTEGER) throw TypeError$f(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
1568
+ len = lengthOfArrayLike$6(E);
1569
+ if (n + len > MAX_SAFE_INTEGER) throw TypeError$e(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
1516
1570
  for (k = 0; k < len; k++, n++) if (k in E) createProperty$2(A, n, E[k]);
1517
1571
  } else {
1518
- if (n >= MAX_SAFE_INTEGER) throw TypeError$f(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
1572
+ if (n >= MAX_SAFE_INTEGER) throw TypeError$e(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
1519
1573
  createProperty$2(A, n++, E);
1520
1574
  }
1521
1575
  }
@@ -1758,30 +1812,30 @@ var addToUnscopables$4 = function (key) {
1758
1812
 
1759
1813
  var iterators = {};
1760
1814
 
1761
- var fails$f = fails$q;
1815
+ var fails$e = fails$p;
1762
1816
 
1763
- var correctPrototypeGetter = !fails$f(function () {
1817
+ var correctPrototypeGetter = !fails$e(function () {
1764
1818
  function F() { /* empty */ }
1765
1819
  F.prototype.constructor = null;
1766
1820
  // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
1767
1821
  return Object.getPrototypeOf(new F()) !== F.prototype;
1768
1822
  });
1769
1823
 
1770
- var global$v = global$T;
1824
+ var global$t = global$R;
1771
1825
  var hasOwn$5 = hasOwnProperty_1;
1772
1826
  var isCallable$8 = isCallable$k;
1773
- var toObject$6 = toObject$9;
1827
+ var toObject$5 = toObject$8;
1774
1828
  var sharedKey = sharedKey$3;
1775
1829
  var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
1776
1830
 
1777
1831
  var IE_PROTO = sharedKey('IE_PROTO');
1778
- var Object$1 = global$v.Object;
1832
+ var Object$1 = global$t.Object;
1779
1833
  var ObjectPrototype = Object$1.prototype;
1780
1834
 
1781
1835
  // `Object.getPrototypeOf` method
1782
1836
  // https://tc39.es/ecma262/#sec-object.getprototypeof
1783
1837
  var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? Object$1.getPrototypeOf : function (O) {
1784
- var object = toObject$6(O);
1838
+ var object = toObject$5(O);
1785
1839
  if (hasOwn$5(object, IE_PROTO)) return object[IE_PROTO];
1786
1840
  var constructor = object.constructor;
1787
1841
  if (isCallable$8(constructor) && object instanceof constructor) {
@@ -1789,13 +1843,13 @@ var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? Object$1.getPrototypeOf :
1789
1843
  } return object instanceof Object$1 ? ObjectPrototype : null;
1790
1844
  };
1791
1845
 
1792
- var fails$e = fails$q;
1846
+ var fails$d = fails$p;
1793
1847
  var isCallable$7 = isCallable$k;
1794
1848
  var getPrototypeOf$1 = objectGetPrototypeOf;
1795
1849
  var redefine$9 = redefine$b.exports;
1796
1850
  var wellKnownSymbol$e = wellKnownSymbol$m;
1797
1851
 
1798
- var ITERATOR$8 = wellKnownSymbol$e('iterator');
1852
+ var ITERATOR$7 = wellKnownSymbol$e('iterator');
1799
1853
  var BUGGY_SAFARI_ITERATORS$1 = false;
1800
1854
 
1801
1855
  // `%IteratorPrototype%` object
@@ -1813,18 +1867,18 @@ if ([].keys) {
1813
1867
  }
1814
1868
  }
1815
1869
 
1816
- var NEW_ITERATOR_PROTOTYPE = IteratorPrototype$2 == undefined || fails$e(function () {
1870
+ var NEW_ITERATOR_PROTOTYPE = IteratorPrototype$2 == undefined || fails$d(function () {
1817
1871
  var test = {};
1818
1872
  // FF44- legacy iterators case
1819
- return IteratorPrototype$2[ITERATOR$8].call(test) !== test;
1873
+ return IteratorPrototype$2[ITERATOR$7].call(test) !== test;
1820
1874
  });
1821
1875
 
1822
1876
  if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype$2 = {};
1823
1877
 
1824
1878
  // `%IteratorPrototype%[@@iterator]()` method
1825
1879
  // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1826
- if (!isCallable$7(IteratorPrototype$2[ITERATOR$8])) {
1827
- redefine$9(IteratorPrototype$2, ITERATOR$8, function () {
1880
+ if (!isCallable$7(IteratorPrototype$2[ITERATOR$7])) {
1881
+ redefine$9(IteratorPrototype$2, ITERATOR$7, function () {
1828
1882
  return this;
1829
1883
  });
1830
1884
  }
@@ -1863,20 +1917,20 @@ var createIteratorConstructor$2 = function (IteratorConstructor, NAME, next, ENU
1863
1917
  return IteratorConstructor;
1864
1918
  };
1865
1919
 
1866
- var global$u = global$T;
1920
+ var global$s = global$R;
1867
1921
  var isCallable$6 = isCallable$k;
1868
1922
 
1869
- var String$3 = global$u.String;
1870
- var TypeError$e = global$u.TypeError;
1923
+ var String$3 = global$s.String;
1924
+ var TypeError$d = global$s.TypeError;
1871
1925
 
1872
1926
  var aPossiblePrototype$1 = function (argument) {
1873
1927
  if (typeof argument == 'object' || isCallable$6(argument)) return argument;
1874
- throw TypeError$e("Can't set " + String$3(argument) + ' as a prototype');
1928
+ throw TypeError$d("Can't set " + String$3(argument) + ' as a prototype');
1875
1929
  };
1876
1930
 
1877
1931
  /* eslint-disable no-proto -- safe */
1878
1932
 
1879
- var uncurryThis$k = functionUncurryThis;
1933
+ var uncurryThis$i = functionUncurryThis;
1880
1934
  var anObject$c = anObject$h;
1881
1935
  var aPossiblePrototype = aPossiblePrototype$1;
1882
1936
 
@@ -1890,7 +1944,7 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
1890
1944
  var setter;
1891
1945
  try {
1892
1946
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1893
- setter = uncurryThis$k(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
1947
+ setter = uncurryThis$i(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
1894
1948
  setter(test, []);
1895
1949
  CORRECT_SETTER = test instanceof Array;
1896
1950
  } catch (error) { /* empty */ }
@@ -1903,7 +1957,7 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
1903
1957
  };
1904
1958
  }() : undefined);
1905
1959
 
1906
- var $$h = _export;
1960
+ var $$e = _export;
1907
1961
  var call$c = functionCall;
1908
1962
  var FunctionName = functionName;
1909
1963
  var isCallable$5 = isCallable$k;
@@ -1921,7 +1975,7 @@ var PROPER_FUNCTION_NAME$1 = FunctionName.PROPER;
1921
1975
  var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
1922
1976
  var IteratorPrototype = IteratorsCore.IteratorPrototype;
1923
1977
  var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
1924
- var ITERATOR$7 = wellKnownSymbol$c('iterator');
1978
+ var ITERATOR$6 = wellKnownSymbol$c('iterator');
1925
1979
  var KEYS = 'keys';
1926
1980
  var VALUES = 'values';
1927
1981
  var ENTRIES = 'entries';
@@ -1944,7 +1998,7 @@ var defineIterator$2 = function (Iterable, NAME, IteratorConstructor, next, DEFA
1944
1998
  var TO_STRING_TAG = NAME + ' Iterator';
1945
1999
  var INCORRECT_VALUES_NAME = false;
1946
2000
  var IterablePrototype = Iterable.prototype;
1947
- var nativeIterator = IterablePrototype[ITERATOR$7]
2001
+ var nativeIterator = IterablePrototype[ITERATOR$6]
1948
2002
  || IterablePrototype['@@iterator']
1949
2003
  || DEFAULT && IterablePrototype[DEFAULT];
1950
2004
  var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
@@ -1958,8 +2012,8 @@ var defineIterator$2 = function (Iterable, NAME, IteratorConstructor, next, DEFA
1958
2012
  if (getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
1959
2013
  if (setPrototypeOf$2) {
1960
2014
  setPrototypeOf$2(CurrentIteratorPrototype, IteratorPrototype);
1961
- } else if (!isCallable$5(CurrentIteratorPrototype[ITERATOR$7])) {
1962
- redefine$8(CurrentIteratorPrototype, ITERATOR$7, returnThis);
2015
+ } else if (!isCallable$5(CurrentIteratorPrototype[ITERATOR$6])) {
2016
+ redefine$8(CurrentIteratorPrototype, ITERATOR$6, returnThis);
1963
2017
  }
1964
2018
  }
1965
2019
  // Set @@toStringTag to native iterators
@@ -1988,12 +2042,12 @@ var defineIterator$2 = function (Iterable, NAME, IteratorConstructor, next, DEFA
1988
2042
  if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
1989
2043
  redefine$8(IterablePrototype, KEY, methods[KEY]);
1990
2044
  }
1991
- } else $$h({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
2045
+ } else $$e({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1992
2046
  }
1993
2047
 
1994
2048
  // define iterator
1995
- if (IterablePrototype[ITERATOR$7] !== defaultIterator) {
1996
- redefine$8(IterablePrototype, ITERATOR$7, defaultIterator, { name: DEFAULT });
2049
+ if (IterablePrototype[ITERATOR$6] !== defaultIterator) {
2050
+ redefine$8(IterablePrototype, ITERATOR$6, defaultIterator, { name: DEFAULT });
1997
2051
  }
1998
2052
  Iterators$3[NAME] = defaultIterator;
1999
2053
 
@@ -2071,12 +2125,12 @@ var objectToString = TO_STRING_TAG_SUPPORT$1 ? {}.toString : function toString()
2071
2125
 
2072
2126
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
2073
2127
  var redefine$7 = redefine$b.exports;
2074
- var toString$a = objectToString;
2128
+ var toString$9 = objectToString;
2075
2129
 
2076
2130
  // `Object.prototype.toString` method
2077
2131
  // https://tc39.es/ecma262/#sec-object.prototype.tostring
2078
2132
  if (!TO_STRING_TAG_SUPPORT) {
2079
- redefine$7(Object.prototype, 'toString', toString$a, { unsafe: true });
2133
+ redefine$7(Object.prototype, 'toString', toString$9, { unsafe: true });
2080
2134
  }
2081
2135
 
2082
2136
  // iterable DOM collections
@@ -2123,24 +2177,24 @@ var DOMTokenListPrototype$2 = classList && classList.constructor && classList.co
2123
2177
 
2124
2178
  var domTokenListPrototype = DOMTokenListPrototype$2 === Object.prototype ? undefined : DOMTokenListPrototype$2;
2125
2179
 
2126
- var global$t = global$T;
2180
+ var global$r = global$R;
2127
2181
  var DOMIterables$1 = domIterables;
2128
2182
  var DOMTokenListPrototype$1 = domTokenListPrototype;
2129
2183
  var ArrayIteratorMethods = es_array_iterator;
2130
2184
  var createNonEnumerableProperty$2 = createNonEnumerableProperty$7;
2131
2185
  var wellKnownSymbol$b = wellKnownSymbol$m;
2132
2186
 
2133
- var ITERATOR$6 = wellKnownSymbol$b('iterator');
2187
+ var ITERATOR$5 = wellKnownSymbol$b('iterator');
2134
2188
  var TO_STRING_TAG = wellKnownSymbol$b('toStringTag');
2135
2189
  var ArrayValues = ArrayIteratorMethods.values;
2136
2190
 
2137
2191
  var handlePrototype$1 = function (CollectionPrototype, COLLECTION_NAME) {
2138
2192
  if (CollectionPrototype) {
2139
2193
  // some Chrome versions have non-configurable methods on DOMTokenList
2140
- if (CollectionPrototype[ITERATOR$6] !== ArrayValues) try {
2141
- createNonEnumerableProperty$2(CollectionPrototype, ITERATOR$6, ArrayValues);
2194
+ if (CollectionPrototype[ITERATOR$5] !== ArrayValues) try {
2195
+ createNonEnumerableProperty$2(CollectionPrototype, ITERATOR$5, ArrayValues);
2142
2196
  } catch (error) {
2143
- CollectionPrototype[ITERATOR$6] = ArrayValues;
2197
+ CollectionPrototype[ITERATOR$5] = ArrayValues;
2144
2198
  }
2145
2199
  if (!CollectionPrototype[TO_STRING_TAG]) {
2146
2200
  createNonEnumerableProperty$2(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);
@@ -2157,17 +2211,17 @@ var handlePrototype$1 = function (CollectionPrototype, COLLECTION_NAME) {
2157
2211
  };
2158
2212
 
2159
2213
  for (var COLLECTION_NAME$1 in DOMIterables$1) {
2160
- handlePrototype$1(global$t[COLLECTION_NAME$1] && global$t[COLLECTION_NAME$1].prototype, COLLECTION_NAME$1);
2214
+ handlePrototype$1(global$r[COLLECTION_NAME$1] && global$r[COLLECTION_NAME$1].prototype, COLLECTION_NAME$1);
2161
2215
  }
2162
2216
 
2163
2217
  handlePrototype$1(DOMTokenListPrototype$1, 'DOMTokenList');
2164
2218
 
2165
- var global$s = global$T;
2219
+ var global$q = global$R;
2166
2220
  var classof$5 = classof$8;
2167
2221
 
2168
- var String$2 = global$s.String;
2222
+ var String$2 = global$q.String;
2169
2223
 
2170
- var toString$9 = function (argument) {
2224
+ var toString$8 = function (argument) {
2171
2225
  if (classof$5(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
2172
2226
  return String$2(argument);
2173
2227
  };
@@ -2188,13 +2242,13 @@ var regexpFlags$1 = function () {
2188
2242
  return result;
2189
2243
  };
2190
2244
 
2191
- var fails$d = fails$q;
2192
- var global$r = global$T;
2245
+ var fails$c = fails$p;
2246
+ var global$p = global$R;
2193
2247
 
2194
2248
  // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
2195
- var $RegExp$2 = global$r.RegExp;
2249
+ var $RegExp$2 = global$p.RegExp;
2196
2250
 
2197
- var UNSUPPORTED_Y$2 = fails$d(function () {
2251
+ var UNSUPPORTED_Y$2 = fails$c(function () {
2198
2252
  var re = $RegExp$2('a', 'y');
2199
2253
  re.lastIndex = 2;
2200
2254
  return re.exec('abcd') != null;
@@ -2202,11 +2256,11 @@ var UNSUPPORTED_Y$2 = fails$d(function () {
2202
2256
 
2203
2257
  // UC Browser bug
2204
2258
  // https://github.com/zloirock/core-js/issues/1008
2205
- var MISSED_STICKY = UNSUPPORTED_Y$2 || fails$d(function () {
2259
+ var MISSED_STICKY = UNSUPPORTED_Y$2 || fails$c(function () {
2206
2260
  return !$RegExp$2('a', 'y').sticky;
2207
2261
  });
2208
2262
 
2209
- var BROKEN_CARET = UNSUPPORTED_Y$2 || fails$d(function () {
2263
+ var BROKEN_CARET = UNSUPPORTED_Y$2 || fails$c(function () {
2210
2264
  // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
2211
2265
  var re = $RegExp$2('^r', 'gy');
2212
2266
  re.lastIndex = 2;
@@ -2219,24 +2273,24 @@ var regexpStickyHelpers = {
2219
2273
  UNSUPPORTED_Y: UNSUPPORTED_Y$2
2220
2274
  };
2221
2275
 
2222
- var fails$c = fails$q;
2223
- var global$q = global$T;
2276
+ var fails$b = fails$p;
2277
+ var global$o = global$R;
2224
2278
 
2225
2279
  // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
2226
- var $RegExp$1 = global$q.RegExp;
2280
+ var $RegExp$1 = global$o.RegExp;
2227
2281
 
2228
- var regexpUnsupportedDotAll = fails$c(function () {
2282
+ var regexpUnsupportedDotAll = fails$b(function () {
2229
2283
  var re = $RegExp$1('.', 's');
2230
2284
  return !(re.dotAll && re.exec('\n') && re.flags === 's');
2231
2285
  });
2232
2286
 
2233
- var fails$b = fails$q;
2234
- var global$p = global$T;
2287
+ var fails$a = fails$p;
2288
+ var global$n = global$R;
2235
2289
 
2236
2290
  // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
2237
- var $RegExp = global$p.RegExp;
2291
+ var $RegExp = global$n.RegExp;
2238
2292
 
2239
- var regexpUnsupportedNcg = fails$b(function () {
2293
+ var regexpUnsupportedNcg = fails$a(function () {
2240
2294
  var re = $RegExp('(?<a>b)', 'g');
2241
2295
  return re.exec('b').groups.a !== 'b' ||
2242
2296
  'b'.replace(re, '$<a>c') !== 'bc';
@@ -2245,8 +2299,8 @@ var regexpUnsupportedNcg = fails$b(function () {
2245
2299
  /* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
2246
2300
  /* eslint-disable regexp/no-useless-quantifier -- testing */
2247
2301
  var call$b = functionCall;
2248
- var uncurryThis$j = functionUncurryThis;
2249
- var toString$8 = toString$9;
2302
+ var uncurryThis$h = functionUncurryThis;
2303
+ var toString$7 = toString$8;
2250
2304
  var regexpFlags = regexpFlags$1;
2251
2305
  var stickyHelpers$1 = regexpStickyHelpers;
2252
2306
  var shared = shared$4.exports;
@@ -2258,10 +2312,10 @@ var UNSUPPORTED_NCG = regexpUnsupportedNcg;
2258
2312
  var nativeReplace = shared('native-string-replace', String.prototype.replace);
2259
2313
  var nativeExec = RegExp.prototype.exec;
2260
2314
  var patchedExec = nativeExec;
2261
- var charAt$5 = uncurryThis$j(''.charAt);
2262
- var indexOf = uncurryThis$j(''.indexOf);
2263
- var replace$5 = uncurryThis$j(''.replace);
2264
- var stringSlice$4 = uncurryThis$j(''.slice);
2315
+ var charAt$5 = uncurryThis$h(''.charAt);
2316
+ var indexOf = uncurryThis$h(''.indexOf);
2317
+ var replace$5 = uncurryThis$h(''.replace);
2318
+ var stringSlice$4 = uncurryThis$h(''.slice);
2265
2319
 
2266
2320
  var UPDATES_LAST_INDEX_WRONG = (function () {
2267
2321
  var re1 = /a/;
@@ -2282,7 +2336,7 @@ if (PATCH) {
2282
2336
  patchedExec = function exec(string) {
2283
2337
  var re = this;
2284
2338
  var state = getInternalState$2(re);
2285
- var str = toString$8(string);
2339
+ var str = toString$7(string);
2286
2340
  var raw = state.raw;
2287
2341
  var result, reCopy, lastIndex, match, i, object, group;
2288
2342
 
@@ -2359,21 +2413,21 @@ if (PATCH) {
2359
2413
 
2360
2414
  var regexpExec$3 = patchedExec;
2361
2415
 
2362
- var $$g = _export;
2363
- var exec$4 = regexpExec$3;
2416
+ var $$d = _export;
2417
+ var exec$3 = regexpExec$3;
2364
2418
 
2365
2419
  // `RegExp.prototype.exec` method
2366
2420
  // https://tc39.es/ecma262/#sec-regexp.prototype.exec
2367
- $$g({ target: 'RegExp', proto: true, forced: /./.exec !== exec$4 }, {
2368
- exec: exec$4
2421
+ $$d({ target: 'RegExp', proto: true, forced: /./.exec !== exec$3 }, {
2422
+ exec: exec$3
2369
2423
  });
2370
2424
 
2371
2425
  // TODO: Remove from `core-js@4` since it's moved to entry points
2372
2426
 
2373
- var uncurryThis$i = functionUncurryThis;
2427
+ var uncurryThis$g = functionUncurryThis;
2374
2428
  var redefine$6 = redefine$b.exports;
2375
2429
  var regexpExec$2 = regexpExec$3;
2376
- var fails$a = fails$q;
2430
+ var fails$9 = fails$p;
2377
2431
  var wellKnownSymbol$a = wellKnownSymbol$m;
2378
2432
  var createNonEnumerableProperty$1 = createNonEnumerableProperty$7;
2379
2433
 
@@ -2383,14 +2437,14 @@ var RegExpPrototype$1 = RegExp.prototype;
2383
2437
  var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
2384
2438
  var SYMBOL = wellKnownSymbol$a(KEY);
2385
2439
 
2386
- var DELEGATES_TO_SYMBOL = !fails$a(function () {
2440
+ var DELEGATES_TO_SYMBOL = !fails$9(function () {
2387
2441
  // String methods call symbol-named RegEp methods
2388
2442
  var O = {};
2389
2443
  O[SYMBOL] = function () { return 7; };
2390
2444
  return ''[KEY](O) != 7;
2391
2445
  });
2392
2446
 
2393
- var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails$a(function () {
2447
+ var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails$9(function () {
2394
2448
  // Symbol-named RegExp methods call .exec
2395
2449
  var execCalled = false;
2396
2450
  var re = /a/;
@@ -2419,9 +2473,9 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
2419
2473
  !DELEGATES_TO_EXEC ||
2420
2474
  FORCED
2421
2475
  ) {
2422
- var uncurriedNativeRegExpMethod = uncurryThis$i(/./[SYMBOL]);
2476
+ var uncurriedNativeRegExpMethod = uncurryThis$g(/./[SYMBOL]);
2423
2477
  var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
2424
- var uncurriedNativeMethod = uncurryThis$i(nativeMethod);
2478
+ var uncurriedNativeMethod = uncurryThis$g(nativeMethod);
2425
2479
  var $exec = regexp.exec;
2426
2480
  if ($exec === regexpExec$2 || $exec === RegExpPrototype$1.exec) {
2427
2481
  if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
@@ -2442,18 +2496,18 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
2442
2496
  if (SHAM) createNonEnumerableProperty$1(RegExpPrototype$1[SYMBOL], 'sham', true);
2443
2497
  };
2444
2498
 
2445
- var uncurryThis$h = functionUncurryThis;
2499
+ var uncurryThis$f = functionUncurryThis;
2446
2500
  var toIntegerOrInfinity = toIntegerOrInfinity$3;
2447
- var toString$7 = toString$9;
2501
+ var toString$6 = toString$8;
2448
2502
  var requireObjectCoercible$5 = requireObjectCoercible$8;
2449
2503
 
2450
- var charAt$4 = uncurryThis$h(''.charAt);
2451
- var charCodeAt$2 = uncurryThis$h(''.charCodeAt);
2452
- var stringSlice$3 = uncurryThis$h(''.slice);
2504
+ var charAt$4 = uncurryThis$f(''.charAt);
2505
+ var charCodeAt$2 = uncurryThis$f(''.charCodeAt);
2506
+ var stringSlice$3 = uncurryThis$f(''.slice);
2453
2507
 
2454
- var createMethod$3 = function (CONVERT_TO_STRING) {
2508
+ var createMethod$2 = function (CONVERT_TO_STRING) {
2455
2509
  return function ($this, pos) {
2456
- var S = toString$7(requireObjectCoercible$5($this));
2510
+ var S = toString$6(requireObjectCoercible$5($this));
2457
2511
  var position = toIntegerOrInfinity(pos);
2458
2512
  var size = S.length;
2459
2513
  var first, second;
@@ -2473,10 +2527,10 @@ var createMethod$3 = function (CONVERT_TO_STRING) {
2473
2527
  var stringMultibyte = {
2474
2528
  // `String.prototype.codePointAt` method
2475
2529
  // https://tc39.es/ecma262/#sec-string.prototype.codepointat
2476
- codeAt: createMethod$3(false),
2530
+ codeAt: createMethod$2(false),
2477
2531
  // `String.prototype.at` method
2478
2532
  // https://github.com/mathiasbynens/String.prototype.at
2479
- charAt: createMethod$3(true)
2533
+ charAt: createMethod$2(true)
2480
2534
  };
2481
2535
 
2482
2536
  var charAt$3 = stringMultibyte.charAt;
@@ -2487,14 +2541,14 @@ var advanceStringIndex$2 = function (S, index, unicode) {
2487
2541
  return index + (unicode ? charAt$3(S, index).length : 1);
2488
2542
  };
2489
2543
 
2490
- var global$o = global$T;
2544
+ var global$m = global$R;
2491
2545
  var call$a = functionCall;
2492
2546
  var anObject$a = anObject$h;
2493
2547
  var isCallable$4 = isCallable$k;
2494
2548
  var classof$4 = classofRaw$1;
2495
2549
  var regexpExec$1 = regexpExec$3;
2496
2550
 
2497
- var TypeError$d = global$o.TypeError;
2551
+ var TypeError$c = global$m.TypeError;
2498
2552
 
2499
2553
  // `RegExpExec` abstract operation
2500
2554
  // https://tc39.es/ecma262/#sec-regexpexec
@@ -2506,14 +2560,14 @@ var regexpExecAbstract = function (R, S) {
2506
2560
  return result;
2507
2561
  }
2508
2562
  if (classof$4(R) === 'RegExp') return call$a(regexpExec$1, R, S);
2509
- throw TypeError$d('RegExp#exec called on incompatible receiver');
2563
+ throw TypeError$c('RegExp#exec called on incompatible receiver');
2510
2564
  };
2511
2565
 
2512
2566
  var call$9 = functionCall;
2513
2567
  var fixRegExpWellKnownSymbolLogic$1 = fixRegexpWellKnownSymbolLogic;
2514
2568
  var anObject$9 = anObject$h;
2515
2569
  var toLength$1 = toLength$3;
2516
- var toString$6 = toString$9;
2570
+ var toString$5 = toString$8;
2517
2571
  var requireObjectCoercible$4 = requireObjectCoercible$8;
2518
2572
  var getMethod$3 = getMethod$5;
2519
2573
  var advanceStringIndex$1 = advanceStringIndex$2;
@@ -2527,13 +2581,13 @@ fixRegExpWellKnownSymbolLogic$1('match', function (MATCH, nativeMatch, maybeCall
2527
2581
  function match(regexp) {
2528
2582
  var O = requireObjectCoercible$4(this);
2529
2583
  var matcher = regexp == undefined ? undefined : getMethod$3(regexp, MATCH);
2530
- return matcher ? call$9(matcher, regexp, O) : new RegExp(regexp)[MATCH](toString$6(O));
2584
+ return matcher ? call$9(matcher, regexp, O) : new RegExp(regexp)[MATCH](toString$5(O));
2531
2585
  },
2532
2586
  // `RegExp.prototype[@@match]` method
2533
2587
  // https://tc39.es/ecma262/#sec-regexp.prototype-@@match
2534
2588
  function (string) {
2535
2589
  var rx = anObject$9(this);
2536
- var S = toString$6(string);
2590
+ var S = toString$5(string);
2537
2591
  var res = maybeCallNative(nativeMatch, rx, S);
2538
2592
 
2539
2593
  if (res.done) return res.value;
@@ -2546,7 +2600,7 @@ fixRegExpWellKnownSymbolLogic$1('match', function (MATCH, nativeMatch, maybeCall
2546
2600
  var n = 0;
2547
2601
  var result;
2548
2602
  while ((result = regExpExec$1(rx, S)) !== null) {
2549
- var matchStr = toString$6(result[0]);
2603
+ var matchStr = toString$5(result[0]);
2550
2604
  A[n] = matchStr;
2551
2605
  if (matchStr === '') rx.lastIndex = advanceStringIndex$1(S, toLength$1(rx.lastIndex), fullUnicode);
2552
2606
  n++;
@@ -2557,7 +2611,7 @@ fixRegExpWellKnownSymbolLogic$1('match', function (MATCH, nativeMatch, maybeCall
2557
2611
  });
2558
2612
 
2559
2613
  var charAt$2 = stringMultibyte.charAt;
2560
- var toString$5 = toString$9;
2614
+ var toString$4 = toString$8;
2561
2615
  var InternalStateModule$3 = internalState;
2562
2616
  var defineIterator = defineIterator$2;
2563
2617
 
@@ -2570,7 +2624,7 @@ var getInternalState$1 = InternalStateModule$3.getterFor(STRING_ITERATOR);
2570
2624
  defineIterator(String, 'String', function (iterated) {
2571
2625
  setInternalState$3(this, {
2572
2626
  type: STRING_ITERATOR,
2573
- string: toString$5(iterated),
2627
+ string: toString$4(iterated),
2574
2628
  index: 0
2575
2629
  });
2576
2630
  // `%StringIteratorPrototype%.next` method
@@ -2586,13 +2640,13 @@ defineIterator(String, 'String', function (iterated) {
2586
2640
  return { value: point, done: false };
2587
2641
  });
2588
2642
 
2589
- var fails$9 = fails$q;
2643
+ var fails$8 = fails$p;
2590
2644
  var wellKnownSymbol$9 = wellKnownSymbol$m;
2591
2645
  var IS_PURE = isPure;
2592
2646
 
2593
- var ITERATOR$5 = wellKnownSymbol$9('iterator');
2647
+ var ITERATOR$4 = wellKnownSymbol$9('iterator');
2594
2648
 
2595
- var nativeUrl = !fails$9(function () {
2649
+ var nativeUrl = !fails$8(function () {
2596
2650
  // eslint-disable-next-line unicorn/relative-url-style -- required for testing
2597
2651
  var url = new URL('b?a=1&b=2&c=3', 'http://a');
2598
2652
  var searchParams = url.searchParams;
@@ -2607,7 +2661,7 @@ var nativeUrl = !fails$9(function () {
2607
2661
  || url.href !== 'http://a/c%20d?a=1&c=3'
2608
2662
  || searchParams.get('c') !== '3'
2609
2663
  || String(new URLSearchParams('?a=1')) !== 'a=1'
2610
- || !searchParams[ITERATOR$5]
2664
+ || !searchParams[ITERATOR$4]
2611
2665
  // throws in Edge
2612
2666
  || new URL('https://a@b').username !== 'a'
2613
2667
  || new URLSearchParams(new URLSearchParams('a=b')).get('a') !== 'b'
@@ -2621,49 +2675,49 @@ var nativeUrl = !fails$9(function () {
2621
2675
  || new URL('http://x', undefined).host !== 'x';
2622
2676
  });
2623
2677
 
2624
- var uncurryThis$g = functionUncurryThis;
2625
- var aCallable$5 = aCallable$7;
2678
+ var uncurryThis$e = functionUncurryThis;
2679
+ var aCallable$4 = aCallable$6;
2626
2680
  var NATIVE_BIND$1 = functionBindNative;
2627
2681
 
2628
- var bind$9 = uncurryThis$g(uncurryThis$g.bind);
2682
+ var bind$9 = uncurryThis$e(uncurryThis$e.bind);
2629
2683
 
2630
2684
  // optional / simple context binding
2631
2685
  var functionBindContext = function (fn, that) {
2632
- aCallable$5(fn);
2686
+ aCallable$4(fn);
2633
2687
  return that === undefined ? fn : NATIVE_BIND$1 ? bind$9(fn, that) : function (/* ...args */) {
2634
2688
  return fn.apply(that, arguments);
2635
2689
  };
2636
2690
  };
2637
2691
 
2638
- var global$n = global$T;
2692
+ var global$l = global$R;
2639
2693
  var isPrototypeOf$3 = objectIsPrototypeOf;
2640
2694
 
2641
- var TypeError$c = global$n.TypeError;
2695
+ var TypeError$b = global$l.TypeError;
2642
2696
 
2643
2697
  var anInstance$3 = function (it, Prototype) {
2644
2698
  if (isPrototypeOf$3(Prototype, it)) return it;
2645
- throw TypeError$c('Incorrect invocation');
2699
+ throw TypeError$b('Incorrect invocation');
2646
2700
  };
2647
2701
 
2648
2702
  var DESCRIPTORS$4 = descriptors;
2649
- var uncurryThis$f = functionUncurryThis;
2703
+ var uncurryThis$d = functionUncurryThis;
2650
2704
  var call$8 = functionCall;
2651
- var fails$8 = fails$q;
2705
+ var fails$7 = fails$p;
2652
2706
  var objectKeys = objectKeys$2;
2653
2707
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
2654
2708
  var propertyIsEnumerableModule = objectPropertyIsEnumerable;
2655
- var toObject$5 = toObject$9;
2656
- var IndexedObject$2 = indexedObject;
2709
+ var toObject$4 = toObject$8;
2710
+ var IndexedObject$1 = indexedObject;
2657
2711
 
2658
2712
  // eslint-disable-next-line es/no-object-assign -- safe
2659
2713
  var $assign = Object.assign;
2660
2714
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2661
2715
  var defineProperty$2 = Object.defineProperty;
2662
- var concat = uncurryThis$f([].concat);
2716
+ var concat = uncurryThis$d([].concat);
2663
2717
 
2664
2718
  // `Object.assign` method
2665
2719
  // https://tc39.es/ecma262/#sec-object.assign
2666
- var objectAssign = !$assign || fails$8(function () {
2720
+ var objectAssign = !$assign || fails$7(function () {
2667
2721
  // should have correct order of operations (Edge bug)
2668
2722
  if (DESCRIPTORS$4 && $assign({ b: 1 }, $assign(defineProperty$2({}, 'a', {
2669
2723
  enumerable: true,
@@ -2684,13 +2738,13 @@ var objectAssign = !$assign || fails$8(function () {
2684
2738
  alphabet.split('').forEach(function (chr) { B[chr] = chr; });
2685
2739
  return $assign({}, A)[symbol] != 7 || objectKeys($assign({}, B)).join('') != alphabet;
2686
2740
  }) ? function assign(target, source) { // eslint-disable-line no-unused-vars -- required for `.length`
2687
- var T = toObject$5(target);
2741
+ var T = toObject$4(target);
2688
2742
  var argumentsLength = arguments.length;
2689
2743
  var index = 1;
2690
2744
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
2691
2745
  var propertyIsEnumerable = propertyIsEnumerableModule.f;
2692
2746
  while (argumentsLength > index) {
2693
- var S = IndexedObject$2(arguments[index++]);
2747
+ var S = IndexedObject$1(arguments[index++]);
2694
2748
  var keys = getOwnPropertySymbols ? concat(objectKeys(S), getOwnPropertySymbols(S)) : objectKeys(S);
2695
2749
  var length = keys.length;
2696
2750
  var j = 0;
@@ -2741,12 +2795,12 @@ var callWithSafeIterationClosing$1 = function (iterator, fn, value, ENTRIES) {
2741
2795
  var wellKnownSymbol$8 = wellKnownSymbol$m;
2742
2796
  var Iterators$1 = iterators;
2743
2797
 
2744
- var ITERATOR$4 = wellKnownSymbol$8('iterator');
2798
+ var ITERATOR$3 = wellKnownSymbol$8('iterator');
2745
2799
  var ArrayPrototype = Array.prototype;
2746
2800
 
2747
2801
  // check on default Array iterator
2748
2802
  var isArrayIteratorMethod$2 = function (it) {
2749
- return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$4] === it);
2803
+ return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$3] === it);
2750
2804
  };
2751
2805
 
2752
2806
  var classof$3 = classof$8;
@@ -2754,47 +2808,47 @@ var getMethod$1 = getMethod$5;
2754
2808
  var Iterators = iterators;
2755
2809
  var wellKnownSymbol$7 = wellKnownSymbol$m;
2756
2810
 
2757
- var ITERATOR$3 = wellKnownSymbol$7('iterator');
2811
+ var ITERATOR$2 = wellKnownSymbol$7('iterator');
2758
2812
 
2759
2813
  var getIteratorMethod$4 = function (it) {
2760
- if (it != undefined) return getMethod$1(it, ITERATOR$3)
2814
+ if (it != undefined) return getMethod$1(it, ITERATOR$2)
2761
2815
  || getMethod$1(it, '@@iterator')
2762
2816
  || Iterators[classof$3(it)];
2763
2817
  };
2764
2818
 
2765
- var global$m = global$T;
2819
+ var global$k = global$R;
2766
2820
  var call$6 = functionCall;
2767
- var aCallable$4 = aCallable$7;
2821
+ var aCallable$3 = aCallable$6;
2768
2822
  var anObject$6 = anObject$h;
2769
2823
  var tryToString$2 = tryToString$4;
2770
2824
  var getIteratorMethod$3 = getIteratorMethod$4;
2771
2825
 
2772
- var TypeError$b = global$m.TypeError;
2826
+ var TypeError$a = global$k.TypeError;
2773
2827
 
2774
2828
  var getIterator$3 = function (argument, usingIterator) {
2775
2829
  var iteratorMethod = arguments.length < 2 ? getIteratorMethod$3(argument) : usingIterator;
2776
- if (aCallable$4(iteratorMethod)) return anObject$6(call$6(iteratorMethod, argument));
2777
- throw TypeError$b(tryToString$2(argument) + ' is not iterable');
2830
+ if (aCallable$3(iteratorMethod)) return anObject$6(call$6(iteratorMethod, argument));
2831
+ throw TypeError$a(tryToString$2(argument) + ' is not iterable');
2778
2832
  };
2779
2833
 
2780
- var global$l = global$T;
2834
+ var global$j = global$R;
2781
2835
  var bind$8 = functionBindContext;
2782
2836
  var call$5 = functionCall;
2783
- var toObject$4 = toObject$9;
2837
+ var toObject$3 = toObject$8;
2784
2838
  var callWithSafeIterationClosing = callWithSafeIterationClosing$1;
2785
2839
  var isArrayIteratorMethod$1 = isArrayIteratorMethod$2;
2786
2840
  var isConstructor$1 = isConstructor$3;
2787
- var lengthOfArrayLike$6 = lengthOfArrayLike$9;
2841
+ var lengthOfArrayLike$5 = lengthOfArrayLike$8;
2788
2842
  var createProperty$1 = createProperty$3;
2789
2843
  var getIterator$2 = getIterator$3;
2790
2844
  var getIteratorMethod$2 = getIteratorMethod$4;
2791
2845
 
2792
- var Array$2 = global$l.Array;
2846
+ var Array$2 = global$j.Array;
2793
2847
 
2794
2848
  // `Array.from` method implementation
2795
2849
  // https://tc39.es/ecma262/#sec-array.from
2796
2850
  var arrayFrom$1 = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {
2797
- var O = toObject$4(arrayLike);
2851
+ var O = toObject$3(arrayLike);
2798
2852
  var IS_CONSTRUCTOR = isConstructor$1(this);
2799
2853
  var argumentsLength = arguments.length;
2800
2854
  var mapfn = argumentsLength > 1 ? arguments[1] : undefined;
@@ -2813,7 +2867,7 @@ var arrayFrom$1 = function from(arrayLike /* , mapfn = undefined, thisArg = unde
2813
2867
  createProperty$1(result, index, value);
2814
2868
  }
2815
2869
  } else {
2816
- length = lengthOfArrayLike$6(O);
2870
+ length = lengthOfArrayLike$5(O);
2817
2871
  result = IS_CONSTRUCTOR ? new this(length) : Array$2(length);
2818
2872
  for (;length > index; index++) {
2819
2873
  value = mapping ? mapfn(O[index], index) : O[index];
@@ -2824,16 +2878,16 @@ var arrayFrom$1 = function from(arrayLike /* , mapfn = undefined, thisArg = unde
2824
2878
  return result;
2825
2879
  };
2826
2880
 
2827
- var global$k = global$T;
2881
+ var global$i = global$R;
2828
2882
  var toAbsoluteIndex = toAbsoluteIndex$2;
2829
- var lengthOfArrayLike$5 = lengthOfArrayLike$9;
2883
+ var lengthOfArrayLike$4 = lengthOfArrayLike$8;
2830
2884
  var createProperty = createProperty$3;
2831
2885
 
2832
- var Array$1 = global$k.Array;
2886
+ var Array$1 = global$i.Array;
2833
2887
  var max = Math.max;
2834
2888
 
2835
2889
  var arraySliceSimple = function (O, start, end) {
2836
- var length = lengthOfArrayLike$5(O);
2890
+ var length = lengthOfArrayLike$4(O);
2837
2891
  var k = toAbsoluteIndex(start, length);
2838
2892
  var fin = toAbsoluteIndex(end === undefined ? length : end, length);
2839
2893
  var result = Array$1(max(fin - k, 0));
@@ -2843,8 +2897,8 @@ var arraySliceSimple = function (O, start, end) {
2843
2897
  };
2844
2898
 
2845
2899
  // based on https://github.com/bestiejs/punycode.js/blob/master/punycode.js
2846
- var global$j = global$T;
2847
- var uncurryThis$e = functionUncurryThis;
2900
+ var global$h = global$R;
2901
+ var uncurryThis$c = functionUncurryThis;
2848
2902
 
2849
2903
  var maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1
2850
2904
  var base = 36;
@@ -2860,16 +2914,16 @@ var regexSeparators = /[.\u3002\uFF0E\uFF61]/g; // RFC 3490 separators
2860
2914
  var OVERFLOW_ERROR = 'Overflow: input needs wider integers to process';
2861
2915
  var baseMinusTMin = base - tMin;
2862
2916
 
2863
- var RangeError$1 = global$j.RangeError;
2864
- var exec$3 = uncurryThis$e(regexSeparators.exec);
2917
+ var RangeError$1 = global$h.RangeError;
2918
+ var exec$2 = uncurryThis$c(regexSeparators.exec);
2865
2919
  var floor$2 = Math.floor;
2866
2920
  var fromCharCode = String.fromCharCode;
2867
- var charCodeAt$1 = uncurryThis$e(''.charCodeAt);
2868
- var join$2 = uncurryThis$e([].join);
2869
- var push$4 = uncurryThis$e([].push);
2870
- var replace$4 = uncurryThis$e(''.replace);
2871
- var split$2 = uncurryThis$e(''.split);
2872
- var toLowerCase$1 = uncurryThis$e(''.toLowerCase);
2921
+ var charCodeAt$1 = uncurryThis$c(''.charCodeAt);
2922
+ var join$2 = uncurryThis$c([].join);
2923
+ var push$4 = uncurryThis$c([].push);
2924
+ var replace$4 = uncurryThis$c(''.replace);
2925
+ var split$2 = uncurryThis$c(''.split);
2926
+ var toLowerCase$1 = uncurryThis$c(''.toLowerCase);
2873
2927
 
2874
2928
  /**
2875
2929
  * Creates an array containing the numeric code points of each Unicode
@@ -3019,17 +3073,17 @@ var stringPunycodeToAscii = function (input) {
3019
3073
  var i, label;
3020
3074
  for (i = 0; i < labels.length; i++) {
3021
3075
  label = labels[i];
3022
- push$4(encoded, exec$3(regexNonASCII, label) ? 'xn--' + encode(label) : label);
3076
+ push$4(encoded, exec$2(regexNonASCII, label) ? 'xn--' + encode(label) : label);
3023
3077
  }
3024
3078
  return join$2(encoded, '.');
3025
3079
  };
3026
3080
 
3027
- var global$i = global$T;
3081
+ var global$g = global$R;
3028
3082
 
3029
- var TypeError$a = global$i.TypeError;
3083
+ var TypeError$9 = global$g.TypeError;
3030
3084
 
3031
3085
  var validateArgumentsLength$3 = function (passed, required) {
3032
- if (passed < required) throw TypeError$a('Not enough arguments');
3086
+ if (passed < required) throw TypeError$9('Not enough arguments');
3033
3087
  return passed;
3034
3088
  };
3035
3089
 
@@ -3087,11 +3141,11 @@ var arraySort$1 = mergeSort;
3087
3141
 
3088
3142
  // TODO: in core-js@4, move /modules/ dependencies to public entries for better optimization by tools like `preset-env`
3089
3143
 
3090
- var $$f = _export;
3091
- var global$h = global$T;
3144
+ var $$c = _export;
3145
+ var global$f = global$R;
3092
3146
  var getBuiltIn$2 = getBuiltIn$8;
3093
3147
  var call$4 = functionCall;
3094
- var uncurryThis$d = functionUncurryThis;
3148
+ var uncurryThis$b = functionUncurryThis;
3095
3149
  var USE_NATIVE_URL$1 = nativeUrl;
3096
3150
  var redefine$4 = redefine$b.exports;
3097
3151
  var redefineAll$1 = redefineAll$2;
@@ -3105,7 +3159,7 @@ var bind$7 = functionBindContext;
3105
3159
  var classof$2 = classof$8;
3106
3160
  var anObject$5 = anObject$h;
3107
3161
  var isObject$5 = isObject$d;
3108
- var $toString$2 = toString$9;
3162
+ var $toString$2 = toString$8;
3109
3163
  var create = objectCreate;
3110
3164
  var createPropertyDescriptor = createPropertyDescriptor$5;
3111
3165
  var getIterator$1 = getIterator$3;
@@ -3114,7 +3168,7 @@ var validateArgumentsLength$2 = validateArgumentsLength$3;
3114
3168
  var wellKnownSymbol$6 = wellKnownSymbol$m;
3115
3169
  var arraySort = arraySort$1;
3116
3170
 
3117
- var ITERATOR$2 = wellKnownSymbol$6('iterator');
3171
+ var ITERATOR$1 = wellKnownSymbol$6('iterator');
3118
3172
  var URL_SEARCH_PARAMS = 'URLSearchParams';
3119
3173
  var URL_SEARCH_PARAMS_ITERATOR = URL_SEARCH_PARAMS + 'Iterator';
3120
3174
  var setInternalState$2 = InternalStateModule$2.set;
@@ -3126,18 +3180,18 @@ var N$Request = getBuiltIn$2('Request');
3126
3180
  var Headers = getBuiltIn$2('Headers');
3127
3181
  var RequestPrototype = N$Request && N$Request.prototype;
3128
3182
  var HeadersPrototype = Headers && Headers.prototype;
3129
- var RegExp$1 = global$h.RegExp;
3130
- var TypeError$9 = global$h.TypeError;
3131
- var decodeURIComponent = global$h.decodeURIComponent;
3132
- var encodeURIComponent$1 = global$h.encodeURIComponent;
3133
- var charAt$1 = uncurryThis$d(''.charAt);
3134
- var join$1 = uncurryThis$d([].join);
3135
- var push$3 = uncurryThis$d([].push);
3136
- var replace$3 = uncurryThis$d(''.replace);
3137
- var shift$1 = uncurryThis$d([].shift);
3138
- var splice = uncurryThis$d([].splice);
3139
- var split$1 = uncurryThis$d(''.split);
3140
- var stringSlice$2 = uncurryThis$d(''.slice);
3183
+ var RegExp$1 = global$f.RegExp;
3184
+ var TypeError$8 = global$f.TypeError;
3185
+ var decodeURIComponent = global$f.decodeURIComponent;
3186
+ var encodeURIComponent$1 = global$f.encodeURIComponent;
3187
+ var charAt$1 = uncurryThis$b(''.charAt);
3188
+ var join$1 = uncurryThis$b([].join);
3189
+ var push$3 = uncurryThis$b([].push);
3190
+ var replace$3 = uncurryThis$b(''.replace);
3191
+ var shift$1 = uncurryThis$b([].shift);
3192
+ var splice = uncurryThis$b([].splice);
3193
+ var split$1 = uncurryThis$b(''.split);
3194
+ var stringSlice$2 = uncurryThis$b(''.slice);
3141
3195
 
3142
3196
  var plus = /\+/g;
3143
3197
  var sequences = Array(4);
@@ -3232,7 +3286,7 @@ URLSearchParamsState.prototype = {
3232
3286
  (first = call$4(entryNext, entryIterator)).done ||
3233
3287
  (second = call$4(entryNext, entryIterator)).done ||
3234
3288
  !call$4(entryNext, entryIterator).done
3235
- ) throw TypeError$9('Expected sequence with length 2');
3289
+ ) throw TypeError$8('Expected sequence with length 2');
3236
3290
  push$3(this.entries, { key: $toString$2(first.value), value: $toString$2(second.value) });
3237
3291
  }
3238
3292
  } else for (var key in object) if (hasOwn$3(object, key)) {
@@ -3404,7 +3458,7 @@ redefineAll$1(URLSearchParamsPrototype, {
3404
3458
  }, { enumerable: true });
3405
3459
 
3406
3460
  // `URLSearchParams.prototype[@@iterator]` method
3407
- redefine$4(URLSearchParamsPrototype, ITERATOR$2, URLSearchParamsPrototype.entries, { name: 'entries' });
3461
+ redefine$4(URLSearchParamsPrototype, ITERATOR$1, URLSearchParamsPrototype.entries, { name: 'entries' });
3408
3462
 
3409
3463
  // `URLSearchParams.prototype.toString` method
3410
3464
  // https://url.spec.whatwg.org/#urlsearchparams-stringification-behavior
@@ -3414,14 +3468,14 @@ redefine$4(URLSearchParamsPrototype, 'toString', function toString() {
3414
3468
 
3415
3469
  setToStringTag$2(URLSearchParamsConstructor, URL_SEARCH_PARAMS);
3416
3470
 
3417
- $$f({ global: true, forced: !USE_NATIVE_URL$1 }, {
3471
+ $$c({ global: true, forced: !USE_NATIVE_URL$1 }, {
3418
3472
  URLSearchParams: URLSearchParamsConstructor
3419
3473
  });
3420
3474
 
3421
3475
  // Wrap `fetch` and `Request` for correct work with polyfilled `URLSearchParams`
3422
3476
  if (!USE_NATIVE_URL$1 && isCallable$3(Headers)) {
3423
- var headersHas = uncurryThis$d(HeadersPrototype.has);
3424
- var headersSet = uncurryThis$d(HeadersPrototype.set);
3477
+ var headersHas = uncurryThis$b(HeadersPrototype.has);
3478
+ var headersSet = uncurryThis$b(HeadersPrototype.set);
3425
3479
 
3426
3480
  var wrapRequestOptions = function (init) {
3427
3481
  if (isObject$5(init)) {
@@ -3441,7 +3495,7 @@ if (!USE_NATIVE_URL$1 && isCallable$3(Headers)) {
3441
3495
  };
3442
3496
 
3443
3497
  if (isCallable$3(n$Fetch)) {
3444
- $$f({ global: true, enumerable: true, forced: true }, {
3498
+ $$c({ global: true, enumerable: true, forced: true }, {
3445
3499
  fetch: function fetch(input /* , init */) {
3446
3500
  return n$Fetch(input, arguments.length > 1 ? wrapRequestOptions(arguments[1]) : {});
3447
3501
  }
@@ -3457,7 +3511,7 @@ if (!USE_NATIVE_URL$1 && isCallable$3(Headers)) {
3457
3511
  RequestPrototype.constructor = RequestConstructor;
3458
3512
  RequestConstructor.prototype = RequestPrototype;
3459
3513
 
3460
- $$f({ global: true, forced: true }, {
3514
+ $$c({ global: true, forced: true }, {
3461
3515
  Request: RequestConstructor
3462
3516
  });
3463
3517
  }
@@ -3470,12 +3524,12 @@ var web_urlSearchParams = {
3470
3524
 
3471
3525
  // TODO: in core-js@4, move /modules/ dependencies to public entries for better optimization by tools like `preset-env`
3472
3526
 
3473
- var $$e = _export;
3527
+ var $$b = _export;
3474
3528
  var DESCRIPTORS$3 = descriptors;
3475
3529
  var USE_NATIVE_URL = nativeUrl;
3476
- var global$g = global$T;
3530
+ var global$e = global$R;
3477
3531
  var bind$6 = functionBindContext;
3478
- var uncurryThis$c = functionUncurryThis;
3532
+ var uncurryThis$a = functionUncurryThis;
3479
3533
  var defineProperties = objectDefineProperties.f;
3480
3534
  var redefine$3 = redefine$b.exports;
3481
3535
  var anInstance$1 = anInstance$3;
@@ -3485,7 +3539,7 @@ var arrayFrom = arrayFrom$1;
3485
3539
  var arraySlice$4 = arraySliceSimple;
3486
3540
  var codeAt = stringMultibyte.codeAt;
3487
3541
  var toASCII = stringPunycodeToAscii;
3488
- var $toString$1 = toString$9;
3542
+ var $toString$1 = toString$8;
3489
3543
  var setToStringTag$1 = setToStringTag$5;
3490
3544
  var validateArgumentsLength$1 = validateArgumentsLength$3;
3491
3545
  var URLSearchParamsModule = web_urlSearchParams;
@@ -3496,23 +3550,23 @@ var getInternalURLState = InternalStateModule$1.getterFor('URL');
3496
3550
  var URLSearchParams$1 = URLSearchParamsModule.URLSearchParams;
3497
3551
  var getInternalSearchParamsState = URLSearchParamsModule.getState;
3498
3552
 
3499
- var NativeURL = global$g.URL;
3500
- var TypeError$8 = global$g.TypeError;
3501
- var parseInt$1 = global$g.parseInt;
3553
+ var NativeURL = global$e.URL;
3554
+ var TypeError$7 = global$e.TypeError;
3555
+ var parseInt$1 = global$e.parseInt;
3502
3556
  var floor = Math.floor;
3503
3557
  var pow = Math.pow;
3504
- var charAt = uncurryThis$c(''.charAt);
3505
- var exec$2 = uncurryThis$c(/./.exec);
3506
- var join = uncurryThis$c([].join);
3507
- var numberToString = uncurryThis$c(1.0.toString);
3508
- var pop = uncurryThis$c([].pop);
3509
- var push$2 = uncurryThis$c([].push);
3510
- var replace$2 = uncurryThis$c(''.replace);
3511
- var shift = uncurryThis$c([].shift);
3512
- var split = uncurryThis$c(''.split);
3513
- var stringSlice$1 = uncurryThis$c(''.slice);
3514
- var toLowerCase = uncurryThis$c(''.toLowerCase);
3515
- var unshift = uncurryThis$c([].unshift);
3558
+ var charAt = uncurryThis$a(''.charAt);
3559
+ var exec$1 = uncurryThis$a(/./.exec);
3560
+ var join = uncurryThis$a([].join);
3561
+ var numberToString = uncurryThis$a(1.0.toString);
3562
+ var pop = uncurryThis$a([].pop);
3563
+ var push$2 = uncurryThis$a([].push);
3564
+ var replace$2 = uncurryThis$a(''.replace);
3565
+ var shift = uncurryThis$a([].shift);
3566
+ var split = uncurryThis$a(''.split);
3567
+ var stringSlice$1 = uncurryThis$a(''.slice);
3568
+ var toLowerCase = uncurryThis$a(''.toLowerCase);
3569
+ var unshift = uncurryThis$a([].unshift);
3516
3570
 
3517
3571
  var INVALID_AUTHORITY = 'Invalid authority';
3518
3572
  var INVALID_SCHEME = 'Invalid scheme';
@@ -3550,13 +3604,13 @@ var parseIPv4 = function (input) {
3550
3604
  if (part == '') return input;
3551
3605
  radix = 10;
3552
3606
  if (part.length > 1 && charAt(part, 0) == '0') {
3553
- radix = exec$2(HEX_START, part) ? 16 : 8;
3607
+ radix = exec$1(HEX_START, part) ? 16 : 8;
3554
3608
  part = stringSlice$1(part, radix == 8 ? 1 : 2);
3555
3609
  }
3556
3610
  if (part === '') {
3557
3611
  number = 0;
3558
3612
  } else {
3559
- if (!exec$2(radix == 10 ? DEC : radix == 8 ? OCT : HEX, part)) return input;
3613
+ if (!exec$1(radix == 10 ? DEC : radix == 8 ? OCT : HEX, part)) return input;
3560
3614
  number = parseInt$1(part, radix);
3561
3615
  }
3562
3616
  push$2(numbers, number);
@@ -3603,7 +3657,7 @@ var parseIPv6 = function (input) {
3603
3657
  continue;
3604
3658
  }
3605
3659
  value = length = 0;
3606
- while (length < 4 && exec$2(HEX, chr())) {
3660
+ while (length < 4 && exec$1(HEX, chr())) {
3607
3661
  value = value * 16 + parseInt$1(chr(), 16);
3608
3662
  pointer++;
3609
3663
  length++;
@@ -3619,8 +3673,8 @@ var parseIPv6 = function (input) {
3619
3673
  if (chr() == '.' && numbersSeen < 4) pointer++;
3620
3674
  else return;
3621
3675
  }
3622
- if (!exec$2(DIGIT, chr())) return;
3623
- while (exec$2(DIGIT, chr())) {
3676
+ if (!exec$1(DIGIT, chr())) return;
3677
+ while (exec$1(DIGIT, chr())) {
3624
3678
  number = parseInt$1(chr(), 10);
3625
3679
  if (ipv4Piece === null) ipv4Piece = number;
3626
3680
  else if (ipv4Piece == 0) return;
@@ -3736,7 +3790,7 @@ var specialSchemes = {
3736
3790
  // https://url.spec.whatwg.org/#windows-drive-letter
3737
3791
  var isWindowsDriveLetter = function (string, normalized) {
3738
3792
  var second;
3739
- return string.length == 2 && exec$2(ALPHA, charAt(string, 0))
3793
+ return string.length == 2 && exec$1(ALPHA, charAt(string, 0))
3740
3794
  && ((second = charAt(string, 1)) == ':' || (!normalized && second == '|'));
3741
3795
  };
3742
3796
 
@@ -3780,7 +3834,7 @@ var FILE_HOST = {};
3780
3834
  var PATH_START = {};
3781
3835
  var PATH = {};
3782
3836
  var CANNOT_BE_A_BASE_URL_PATH = {};
3783
- var QUERY = {};
3837
+ var QUERY$1 = {};
3784
3838
  var FRAGMENT = {};
3785
3839
 
3786
3840
  var URLState = function (url, isBase, base) {
@@ -3788,12 +3842,12 @@ var URLState = function (url, isBase, base) {
3788
3842
  var baseState, failure, searchParams;
3789
3843
  if (isBase) {
3790
3844
  failure = this.parse(urlString);
3791
- if (failure) throw TypeError$8(failure);
3845
+ if (failure) throw TypeError$7(failure);
3792
3846
  this.searchParams = null;
3793
3847
  } else {
3794
3848
  if (base !== undefined) baseState = new URLState(base, true);
3795
3849
  failure = this.parse(urlString, null, baseState);
3796
- if (failure) throw TypeError$8(failure);
3850
+ if (failure) throw TypeError$7(failure);
3797
3851
  searchParams = getInternalSearchParamsState(new URLSearchParams$1());
3798
3852
  searchParams.bindURL(this);
3799
3853
  this.searchParams = searchParams;
@@ -3837,7 +3891,7 @@ URLState.prototype = {
3837
3891
  chr = codePoints[pointer];
3838
3892
  switch (state) {
3839
3893
  case SCHEME_START:
3840
- if (chr && exec$2(ALPHA, chr)) {
3894
+ if (chr && exec$1(ALPHA, chr)) {
3841
3895
  buffer += toLowerCase(chr);
3842
3896
  state = SCHEME;
3843
3897
  } else if (!stateOverride) {
@@ -3847,7 +3901,7 @@ URLState.prototype = {
3847
3901
  break;
3848
3902
 
3849
3903
  case SCHEME:
3850
- if (chr && (exec$2(ALPHANUMERIC, chr) || chr == '+' || chr == '-' || chr == '.')) {
3904
+ if (chr && (exec$1(ALPHANUMERIC, chr) || chr == '+' || chr == '-' || chr == '.')) {
3851
3905
  buffer += toLowerCase(chr);
3852
3906
  } else if (chr == ':') {
3853
3907
  if (stateOverride && (
@@ -3933,7 +3987,7 @@ URLState.prototype = {
3933
3987
  url.port = base.port;
3934
3988
  url.path = arraySlice$4(base.path);
3935
3989
  url.query = '';
3936
- state = QUERY;
3990
+ state = QUERY$1;
3937
3991
  } else if (chr == '#') {
3938
3992
  url.username = base.username;
3939
3993
  url.password = base.password;
@@ -4038,7 +4092,7 @@ URLState.prototype = {
4038
4092
  } break;
4039
4093
 
4040
4094
  case PORT:
4041
- if (exec$2(DIGIT, chr)) {
4095
+ if (exec$1(DIGIT, chr)) {
4042
4096
  buffer += chr;
4043
4097
  } else if (
4044
4098
  chr == EOF || chr == '/' || chr == '?' || chr == '#' ||
@@ -4069,7 +4123,7 @@ URLState.prototype = {
4069
4123
  url.host = base.host;
4070
4124
  url.path = arraySlice$4(base.path);
4071
4125
  url.query = '';
4072
- state = QUERY;
4126
+ state = QUERY$1;
4073
4127
  } else if (chr == '#') {
4074
4128
  url.host = base.host;
4075
4129
  url.path = arraySlice$4(base.path);
@@ -4127,7 +4181,7 @@ URLState.prototype = {
4127
4181
  if (chr != '/' && chr != '\\') continue;
4128
4182
  } else if (!stateOverride && chr == '?') {
4129
4183
  url.query = '';
4130
- state = QUERY;
4184
+ state = QUERY$1;
4131
4185
  } else if (!stateOverride && chr == '#') {
4132
4186
  url.fragment = '';
4133
4187
  state = FRAGMENT;
@@ -4166,7 +4220,7 @@ URLState.prototype = {
4166
4220
  }
4167
4221
  if (chr == '?') {
4168
4222
  url.query = '';
4169
- state = QUERY;
4223
+ state = QUERY$1;
4170
4224
  } else if (chr == '#') {
4171
4225
  url.fragment = '';
4172
4226
  state = FRAGMENT;
@@ -4178,7 +4232,7 @@ URLState.prototype = {
4178
4232
  case CANNOT_BE_A_BASE_URL_PATH:
4179
4233
  if (chr == '?') {
4180
4234
  url.query = '';
4181
- state = QUERY;
4235
+ state = QUERY$1;
4182
4236
  } else if (chr == '#') {
4183
4237
  url.fragment = '';
4184
4238
  state = FRAGMENT;
@@ -4186,7 +4240,7 @@ URLState.prototype = {
4186
4240
  url.path[0] += percentEncode(chr, C0ControlPercentEncodeSet);
4187
4241
  } break;
4188
4242
 
4189
- case QUERY:
4243
+ case QUERY$1:
4190
4244
  if (!stateOverride && chr == '#') {
4191
4245
  url.fragment = '';
4192
4246
  state = FRAGMENT;
@@ -4214,7 +4268,7 @@ URLState.prototype = {
4214
4268
  this.host = result;
4215
4269
  // opaque host
4216
4270
  } else if (!this.isSpecial()) {
4217
- if (exec$2(FORBIDDEN_HOST_CODE_POINT_EXCLUDING_PERCENT, input)) return INVALID_HOST;
4271
+ if (exec$1(FORBIDDEN_HOST_CODE_POINT_EXCLUDING_PERCENT, input)) return INVALID_HOST;
4218
4272
  result = '';
4219
4273
  codePoints = arrayFrom(input);
4220
4274
  for (index = 0; index < codePoints.length; index++) {
@@ -4223,7 +4277,7 @@ URLState.prototype = {
4223
4277
  this.host = result;
4224
4278
  } else {
4225
4279
  input = toASCII(input);
4226
- if (exec$2(FORBIDDEN_HOST_CODE_POINT, input)) return INVALID_HOST;
4280
+ if (exec$1(FORBIDDEN_HOST_CODE_POINT, input)) return INVALID_HOST;
4227
4281
  result = parseIPv4(input);
4228
4282
  if (result === null) return INVALID_HOST;
4229
4283
  this.host = result;
@@ -4277,7 +4331,7 @@ URLState.prototype = {
4277
4331
  // https://url.spec.whatwg.org/#dom-url-href
4278
4332
  setHref: function (href) {
4279
4333
  var failure = this.parse(href);
4280
- if (failure) throw TypeError$8(failure);
4334
+ if (failure) throw TypeError$7(failure);
4281
4335
  this.searchParams.update();
4282
4336
  },
4283
4337
  // https://url.spec.whatwg.org/#dom-url-origin
@@ -4377,7 +4431,7 @@ URLState.prototype = {
4377
4431
  } else {
4378
4432
  if ('?' == charAt(search, 0)) search = stringSlice$1(search, 1);
4379
4433
  this.query = '';
4380
- this.parse(search, QUERY);
4434
+ this.parse(search, QUERY$1);
4381
4435
  }
4382
4436
  this.searchParams.update();
4383
4437
  },
@@ -4508,7 +4562,7 @@ if (NativeURL) {
4508
4562
 
4509
4563
  setToStringTag$1(URLConstructor, 'URL');
4510
4564
 
4511
- $$e({ global: true, forced: !USE_NATIVE_URL, sham: !DESCRIPTORS$3 }, {
4565
+ $$b({ global: true, forced: !USE_NATIVE_URL, sham: !DESCRIPTORS$3 }, {
4512
4566
  URL: URLConstructor
4513
4567
  });
4514
4568
 
@@ -4536,16 +4590,16 @@ var isRegexp = function (it) {
4536
4590
  return isObject$4(it) && ((isRegExp = it[MATCH$1]) !== undefined ? !!isRegExp : classof$1(it) == 'RegExp');
4537
4591
  };
4538
4592
 
4539
- var global$f = global$T;
4593
+ var global$d = global$R;
4540
4594
  var isConstructor = isConstructor$3;
4541
4595
  var tryToString$1 = tryToString$4;
4542
4596
 
4543
- var TypeError$7 = global$f.TypeError;
4597
+ var TypeError$6 = global$d.TypeError;
4544
4598
 
4545
4599
  // `Assert: IsConstructor(argument) is true`
4546
4600
  var aConstructor$1 = function (argument) {
4547
4601
  if (isConstructor(argument)) return argument;
4548
- throw TypeError$7(tryToString$1(argument) + ' is not a constructor');
4602
+ throw TypeError$6(tryToString$1(argument) + ' is not a constructor');
4549
4603
  };
4550
4604
 
4551
4605
  var anObject$4 = anObject$h;
@@ -4564,7 +4618,7 @@ var speciesConstructor$2 = function (O, defaultConstructor) {
4564
4618
 
4565
4619
  var apply$1 = functionApply;
4566
4620
  var call$2 = functionCall;
4567
- var uncurryThis$b = functionUncurryThis;
4621
+ var uncurryThis$9 = functionUncurryThis;
4568
4622
  var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
4569
4623
  var isRegExp$1 = isRegexp;
4570
4624
  var anObject$3 = anObject$h;
@@ -4572,25 +4626,25 @@ var requireObjectCoercible$3 = requireObjectCoercible$8;
4572
4626
  var speciesConstructor$1 = speciesConstructor$2;
4573
4627
  var advanceStringIndex = advanceStringIndex$2;
4574
4628
  var toLength = toLength$3;
4575
- var toString$4 = toString$9;
4629
+ var toString$3 = toString$8;
4576
4630
  var getMethod = getMethod$5;
4577
4631
  var arraySlice$3 = arraySliceSimple;
4578
4632
  var callRegExpExec = regexpExecAbstract;
4579
4633
  var regexpExec = regexpExec$3;
4580
4634
  var stickyHelpers = regexpStickyHelpers;
4581
- var fails$7 = fails$q;
4635
+ var fails$6 = fails$p;
4582
4636
 
4583
4637
  var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
4584
4638
  var MAX_UINT32 = 0xFFFFFFFF;
4585
4639
  var min = Math.min;
4586
4640
  var $push = [].push;
4587
- var exec$1 = uncurryThis$b(/./.exec);
4588
- var push$1 = uncurryThis$b($push);
4589
- var stringSlice = uncurryThis$b(''.slice);
4641
+ var exec = uncurryThis$9(/./.exec);
4642
+ var push$1 = uncurryThis$9($push);
4643
+ var stringSlice = uncurryThis$9(''.slice);
4590
4644
 
4591
4645
  // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
4592
4646
  // Weex JS has frozen built-in prototypes, so use try / catch wrapper
4593
- var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails$7(function () {
4647
+ var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails$6(function () {
4594
4648
  // eslint-disable-next-line regexp/no-empty-group -- required for testing
4595
4649
  var re = /(?:)/;
4596
4650
  var originalExec = re.exec;
@@ -4614,7 +4668,7 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
4614
4668
  ) {
4615
4669
  // based on es5-shim implementation, need to rework it
4616
4670
  internalSplit = function (separator, limit) {
4617
- var string = toString$4(requireObjectCoercible$3(this));
4671
+ var string = toString$3(requireObjectCoercible$3(this));
4618
4672
  var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
4619
4673
  if (lim === 0) return [];
4620
4674
  if (separator === undefined) return [string];
@@ -4643,7 +4697,7 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
4643
4697
  if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop
4644
4698
  }
4645
4699
  if (lastLastIndex === string.length) {
4646
- if (lastLength || !exec$1(separatorCopy, '')) push$1(output, '');
4700
+ if (lastLength || !exec(separatorCopy, '')) push$1(output, '');
4647
4701
  } else push$1(output, stringSlice(string, lastLastIndex));
4648
4702
  return output.length > lim ? arraySlice$3(output, 0, lim) : output;
4649
4703
  };
@@ -4662,7 +4716,7 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
4662
4716
  var splitter = separator == undefined ? undefined : getMethod(separator, SPLIT);
4663
4717
  return splitter
4664
4718
  ? call$2(splitter, separator, O, limit)
4665
- : call$2(internalSplit, toString$4(O), separator, limit);
4719
+ : call$2(internalSplit, toString$3(O), separator, limit);
4666
4720
  },
4667
4721
  // `RegExp.prototype[@@split]` method
4668
4722
  // https://tc39.es/ecma262/#sec-regexp.prototype-@@split
@@ -4671,7 +4725,7 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
4671
4725
  // the 'y' flag.
4672
4726
  function (string, limit) {
4673
4727
  var rx = anObject$3(this);
4674
- var S = toString$4(string);
4728
+ var S = toString$3(string);
4675
4729
  var res = maybeCallNative(internalSplit, rx, S, limit, internalSplit !== nativeSplit);
4676
4730
 
4677
4731
  if (res.done) return res.value;
@@ -4718,11 +4772,11 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
4718
4772
  ];
4719
4773
  }, !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
4720
4774
 
4721
- var $$d = _export;
4775
+ var $$a = _export;
4722
4776
 
4723
4777
  // `Number.isNaN` method
4724
4778
  // https://tc39.es/ecma262/#sec-number.isnan
4725
- $$d({ target: 'Number', stat: true }, {
4779
+ $$a({ target: 'Number', stat: true }, {
4726
4780
  isNaN: function isNaN(number) {
4727
4781
  // eslint-disable-next-line no-self-compare -- NaN check
4728
4782
  return number != number;
@@ -4748,30 +4802,30 @@ var inheritIfRequired$1 = function ($this, dummy, Wrapper) {
4748
4802
  return $this;
4749
4803
  };
4750
4804
 
4751
- var uncurryThis$a = functionUncurryThis;
4805
+ var uncurryThis$8 = functionUncurryThis;
4752
4806
 
4753
4807
  // `thisNumberValue` abstract operation
4754
4808
  // https://tc39.es/ecma262/#sec-thisnumbervalue
4755
- var thisNumberValue$1 = uncurryThis$a(1.0.valueOf);
4809
+ var thisNumberValue$1 = uncurryThis$8(1.0.valueOf);
4756
4810
 
4757
4811
  // a string of all valid unicode whitespaces
4758
- var whitespaces$2 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
4812
+ var whitespaces$1 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
4759
4813
  '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
4760
4814
 
4761
- var uncurryThis$9 = functionUncurryThis;
4815
+ var uncurryThis$7 = functionUncurryThis;
4762
4816
  var requireObjectCoercible$2 = requireObjectCoercible$8;
4763
- var toString$3 = toString$9;
4764
- var whitespaces$1 = whitespaces$2;
4817
+ var toString$2 = toString$8;
4818
+ var whitespaces = whitespaces$1;
4765
4819
 
4766
- var replace$1 = uncurryThis$9(''.replace);
4767
- var whitespace = '[' + whitespaces$1 + ']';
4820
+ var replace$1 = uncurryThis$7(''.replace);
4821
+ var whitespace = '[' + whitespaces + ']';
4768
4822
  var ltrim = RegExp('^' + whitespace + whitespace + '*');
4769
4823
  var rtrim = RegExp(whitespace + whitespace + '*$');
4770
4824
 
4771
4825
  // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
4772
- var createMethod$2 = function (TYPE) {
4826
+ var createMethod$1 = function (TYPE) {
4773
4827
  return function ($this) {
4774
- var string = toString$3(requireObjectCoercible$2($this));
4828
+ var string = toString$2(requireObjectCoercible$2($this));
4775
4829
  if (TYPE & 1) string = replace$1(string, ltrim, '');
4776
4830
  if (TYPE & 2) string = replace$1(string, rtrim, '');
4777
4831
  return string;
@@ -4781,18 +4835,18 @@ var createMethod$2 = function (TYPE) {
4781
4835
  var stringTrim = {
4782
4836
  // `String.prototype.{ trimLeft, trimStart }` methods
4783
4837
  // https://tc39.es/ecma262/#sec-string.prototype.trimstart
4784
- start: createMethod$2(1),
4838
+ start: createMethod$1(1),
4785
4839
  // `String.prototype.{ trimRight, trimEnd }` methods
4786
4840
  // https://tc39.es/ecma262/#sec-string.prototype.trimend
4787
- end: createMethod$2(2),
4841
+ end: createMethod$1(2),
4788
4842
  // `String.prototype.trim` method
4789
4843
  // https://tc39.es/ecma262/#sec-string.prototype.trim
4790
- trim: createMethod$2(3)
4844
+ trim: createMethod$1(3)
4791
4845
  };
4792
4846
 
4793
4847
  var DESCRIPTORS$2 = descriptors;
4794
- var global$e = global$T;
4795
- var uncurryThis$8 = functionUncurryThis;
4848
+ var global$c = global$R;
4849
+ var uncurryThis$6 = functionUncurryThis;
4796
4850
  var isForced$1 = isForced_1;
4797
4851
  var redefine$2 = redefine$b.exports;
4798
4852
  var hasOwn$1 = hasOwnProperty_1;
@@ -4800,19 +4854,19 @@ var inheritIfRequired = inheritIfRequired$1;
4800
4854
  var isPrototypeOf$2 = objectIsPrototypeOf;
4801
4855
  var isSymbol = isSymbol$3;
4802
4856
  var toPrimitive = toPrimitive$2;
4803
- var fails$6 = fails$q;
4857
+ var fails$5 = fails$p;
4804
4858
  var getOwnPropertyNames = objectGetOwnPropertyNames.f;
4805
4859
  var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
4806
4860
  var defineProperty$1 = objectDefineProperty.f;
4807
4861
  var thisNumberValue = thisNumberValue$1;
4808
- var trim$1 = stringTrim.trim;
4862
+ var trim = stringTrim.trim;
4809
4863
 
4810
4864
  var NUMBER = 'Number';
4811
- var NativeNumber = global$e[NUMBER];
4865
+ var NativeNumber = global$c[NUMBER];
4812
4866
  var NumberPrototype = NativeNumber.prototype;
4813
- var TypeError$6 = global$e.TypeError;
4814
- var arraySlice$2 = uncurryThis$8(''.slice);
4815
- var charCodeAt = uncurryThis$8(''.charCodeAt);
4867
+ var TypeError$5 = global$c.TypeError;
4868
+ var arraySlice$2 = uncurryThis$6(''.slice);
4869
+ var charCodeAt = uncurryThis$6(''.charCodeAt);
4816
4870
 
4817
4871
  // `ToNumeric` abstract operation
4818
4872
  // https://tc39.es/ecma262/#sec-tonumeric
@@ -4826,9 +4880,9 @@ var toNumeric = function (value) {
4826
4880
  var toNumber = function (argument) {
4827
4881
  var it = toPrimitive(argument, 'number');
4828
4882
  var first, third, radix, maxCode, digits, length, index, code;
4829
- if (isSymbol(it)) throw TypeError$6('Cannot convert a Symbol value to a number');
4883
+ if (isSymbol(it)) throw TypeError$5('Cannot convert a Symbol value to a number');
4830
4884
  if (typeof it == 'string' && it.length > 2) {
4831
- it = trim$1(it);
4885
+ it = trim(it);
4832
4886
  first = charCodeAt(it, 0);
4833
4887
  if (first === 43 || first === 45) {
4834
4888
  third = charCodeAt(it, 2);
@@ -4858,7 +4912,7 @@ if (isForced$1(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNu
4858
4912
  var n = arguments.length < 1 ? 0 : NativeNumber(toNumeric(value));
4859
4913
  var dummy = this;
4860
4914
  // check on 1..constructor(foo) case
4861
- return isPrototypeOf$2(NumberPrototype, dummy) && fails$6(function () { thisNumberValue(dummy); })
4915
+ return isPrototypeOf$2(NumberPrototype, dummy) && fails$5(function () { thisNumberValue(dummy); })
4862
4916
  ? inheritIfRequired(Object(n), dummy, NumberWrapper) : n;
4863
4917
  };
4864
4918
  for (var keys = DESCRIPTORS$2 ? getOwnPropertyNames(NativeNumber) : (
@@ -4875,7 +4929,7 @@ if (isForced$1(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNu
4875
4929
  }
4876
4930
  NumberWrapper.prototype = NumberPrototype;
4877
4931
  NumberPrototype.constructor = NumberWrapper;
4878
- redefine$2(global$e, NUMBER, NumberWrapper);
4932
+ redefine$2(global$c, NUMBER, NumberWrapper);
4879
4933
  }
4880
4934
 
4881
4935
  /**
@@ -5117,40 +5171,40 @@ var palette = {
5117
5171
  yellowPressed: '#FFBA0C'
5118
5172
  };
5119
5173
 
5120
- var uncurryThis$7 = functionUncurryThis;
5174
+ var uncurryThis$5 = functionUncurryThis;
5121
5175
  var requireObjectCoercible$1 = requireObjectCoercible$8;
5122
- var toString$2 = toString$9;
5176
+ var toString$1 = toString$8;
5123
5177
 
5124
5178
  var quot = /"/g;
5125
- var replace = uncurryThis$7(''.replace);
5179
+ var replace = uncurryThis$5(''.replace);
5126
5180
 
5127
5181
  // `CreateHTML` abstract operation
5128
5182
  // https://tc39.es/ecma262/#sec-createhtml
5129
5183
  var createHtml = function (string, tag, attribute, value) {
5130
- var S = toString$2(requireObjectCoercible$1(string));
5184
+ var S = toString$1(requireObjectCoercible$1(string));
5131
5185
  var p1 = '<' + tag;
5132
- if (attribute !== '') p1 += ' ' + attribute + '="' + replace(toString$2(value), quot, '&quot;') + '"';
5186
+ if (attribute !== '') p1 += ' ' + attribute + '="' + replace(toString$1(value), quot, '&quot;') + '"';
5133
5187
  return p1 + '>' + S + '</' + tag + '>';
5134
5188
  };
5135
5189
 
5136
- var fails$5 = fails$q;
5190
+ var fails$4 = fails$p;
5137
5191
 
5138
5192
  // check the existence of a method, lowercase
5139
5193
  // of a tag and escaping quotes in arguments
5140
5194
  var stringHtmlForced = function (METHOD_NAME) {
5141
- return fails$5(function () {
5195
+ return fails$4(function () {
5142
5196
  var test = ''[METHOD_NAME]('"');
5143
5197
  return test !== test.toLowerCase() || test.split('"').length > 3;
5144
5198
  });
5145
5199
  };
5146
5200
 
5147
- var $$c = _export;
5201
+ var $$9 = _export;
5148
5202
  var createHTML = createHtml;
5149
5203
  var forcedStringHTMLMethod = stringHtmlForced;
5150
5204
 
5151
5205
  // `String.prototype.small` method
5152
5206
  // https://tc39.es/ecma262/#sec-string.prototype.small
5153
- $$c({ target: 'String', proto: true, forced: forcedStringHTMLMethod('small') }, {
5207
+ $$9({ target: 'String', proto: true, forced: forcedStringHTMLMethod('small') }, {
5154
5208
  small: function small() {
5155
5209
  return createHTML(this, 'small', '', '');
5156
5210
  }
@@ -5198,7 +5252,7 @@ var getImageMeasurements = function getImageMeasurements(size, isDesktop) {
5198
5252
 
5199
5253
  var wellKnownSymbol$3 = wellKnownSymbol$m;
5200
5254
 
5201
- var ITERATOR$1 = wellKnownSymbol$3('iterator');
5255
+ var ITERATOR = wellKnownSymbol$3('iterator');
5202
5256
  var SAFE_CLOSING = false;
5203
5257
 
5204
5258
  try {
@@ -5211,7 +5265,7 @@ try {
5211
5265
  SAFE_CLOSING = true;
5212
5266
  }
5213
5267
  };
5214
- iteratorWithReturn[ITERATOR$1] = function () {
5268
+ iteratorWithReturn[ITERATOR] = function () {
5215
5269
  return this;
5216
5270
  };
5217
5271
  // eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
@@ -5223,7 +5277,7 @@ var checkCorrectnessOfIteration$2 = function (exec, SKIP_CLOSING) {
5223
5277
  var ITERATION_SUPPORT = false;
5224
5278
  try {
5225
5279
  var object = {};
5226
- object[ITERATOR$1] = function () {
5280
+ object[ITERATOR] = function () {
5227
5281
  return {
5228
5282
  next: function () {
5229
5283
  return { done: ITERATION_SUPPORT = true };
@@ -5235,7 +5289,7 @@ var checkCorrectnessOfIteration$2 = function (exec, SKIP_CLOSING) {
5235
5289
  return ITERATION_SUPPORT;
5236
5290
  };
5237
5291
 
5238
- var $$b = _export;
5292
+ var $$8 = _export;
5239
5293
  var from = arrayFrom$1;
5240
5294
  var checkCorrectnessOfIteration$1 = checkCorrectnessOfIteration$2;
5241
5295
 
@@ -5246,7 +5300,7 @@ var INCORRECT_ITERATION$1 = !checkCorrectnessOfIteration$1(function (iterable) {
5246
5300
 
5247
5301
  // `Array.from` method
5248
5302
  // https://tc39.es/ecma262/#sec-array.from
5249
- $$b({ target: 'Array', stat: true, forced: INCORRECT_ITERATION$1 }, {
5303
+ $$8({ target: 'Array', stat: true, forced: INCORRECT_ITERATION$1 }, {
5250
5304
  from: from
5251
5305
  });
5252
5306
 
@@ -5314,13 +5368,13 @@ var styled$i = {
5314
5368
  })
5315
5369
  };
5316
5370
 
5317
- var $$a = _export;
5371
+ var $$7 = _export;
5318
5372
  var $includes = arrayIncludes.includes;
5319
5373
  var addToUnscopables$2 = addToUnscopables$4;
5320
5374
 
5321
5375
  // `Array.prototype.includes` method
5322
5376
  // https://tc39.es/ecma262/#sec-array.prototype.includes
5323
- $$a({ target: 'Array', proto: true }, {
5377
+ $$7({ target: 'Array', proto: true }, {
5324
5378
  includes: function includes(el /* , fromIndex = 0 */) {
5325
5379
  return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
5326
5380
  }
@@ -5329,14 +5383,14 @@ $$a({ target: 'Array', proto: true }, {
5329
5383
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
5330
5384
  addToUnscopables$2('includes');
5331
5385
 
5332
- var global$d = global$T;
5386
+ var global$b = global$R;
5333
5387
  var isRegExp = isRegexp;
5334
5388
 
5335
- var TypeError$5 = global$d.TypeError;
5389
+ var TypeError$4 = global$b.TypeError;
5336
5390
 
5337
5391
  var notARegexp = function (it) {
5338
5392
  if (isRegExp(it)) {
5339
- throw TypeError$5("The method doesn't accept regular expressions");
5393
+ throw TypeError$4("The method doesn't accept regular expressions");
5340
5394
  } return it;
5341
5395
  };
5342
5396
 
@@ -5356,22 +5410,22 @@ var correctIsRegexpLogic = function (METHOD_NAME) {
5356
5410
  } return false;
5357
5411
  };
5358
5412
 
5359
- var $$9 = _export;
5360
- var uncurryThis$6 = functionUncurryThis;
5413
+ var $$6 = _export;
5414
+ var uncurryThis$4 = functionUncurryThis;
5361
5415
  var notARegExp = notARegexp;
5362
5416
  var requireObjectCoercible = requireObjectCoercible$8;
5363
- var toString$1 = toString$9;
5417
+ var toString = toString$8;
5364
5418
  var correctIsRegExpLogic = correctIsRegexpLogic;
5365
5419
 
5366
- var stringIndexOf = uncurryThis$6(''.indexOf);
5420
+ var stringIndexOf = uncurryThis$4(''.indexOf);
5367
5421
 
5368
5422
  // `String.prototype.includes` method
5369
5423
  // https://tc39.es/ecma262/#sec-string.prototype.includes
5370
- $$9({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, {
5424
+ $$6({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, {
5371
5425
  includes: function includes(searchString /* , position = 0 */) {
5372
5426
  return !!~stringIndexOf(
5373
- toString$1(requireObjectCoercible(this)),
5374
- toString$1(notARegExp(searchString)),
5427
+ toString(requireObjectCoercible(this)),
5428
+ toString(notARegExp(searchString)),
5375
5429
  arguments.length > 1 ? arguments[1] : undefined
5376
5430
  );
5377
5431
  }
@@ -5431,85 +5485,6 @@ var InitialsAvatar = function InitialsAvatar(_ref) {
5431
5485
  }, initials);
5432
5486
  };
5433
5487
 
5434
- var global$c = global$T;
5435
- var aCallable$3 = aCallable$7;
5436
- var toObject$3 = toObject$9;
5437
- var IndexedObject$1 = indexedObject;
5438
- var lengthOfArrayLike$4 = lengthOfArrayLike$9;
5439
-
5440
- var TypeError$4 = global$c.TypeError;
5441
-
5442
- // `Array.prototype.{ reduce, reduceRight }` methods implementation
5443
- var createMethod$1 = function (IS_RIGHT) {
5444
- return function (that, callbackfn, argumentsLength, memo) {
5445
- aCallable$3(callbackfn);
5446
- var O = toObject$3(that);
5447
- var self = IndexedObject$1(O);
5448
- var length = lengthOfArrayLike$4(O);
5449
- var index = IS_RIGHT ? length - 1 : 0;
5450
- var i = IS_RIGHT ? -1 : 1;
5451
- if (argumentsLength < 2) while (true) {
5452
- if (index in self) {
5453
- memo = self[index];
5454
- index += i;
5455
- break;
5456
- }
5457
- index += i;
5458
- if (IS_RIGHT ? index < 0 : length <= index) {
5459
- throw TypeError$4('Reduce of empty array with no initial value');
5460
- }
5461
- }
5462
- for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) {
5463
- memo = callbackfn(memo, self[index], index, O);
5464
- }
5465
- return memo;
5466
- };
5467
- };
5468
-
5469
- var arrayReduce = {
5470
- // `Array.prototype.reduce` method
5471
- // https://tc39.es/ecma262/#sec-array.prototype.reduce
5472
- left: createMethod$1(false),
5473
- // `Array.prototype.reduceRight` method
5474
- // https://tc39.es/ecma262/#sec-array.prototype.reduceright
5475
- right: createMethod$1(true)
5476
- };
5477
-
5478
- var fails$4 = fails$q;
5479
-
5480
- var arrayMethodIsStrict$3 = function (METHOD_NAME, argument) {
5481
- var method = [][METHOD_NAME];
5482
- return !!method && fails$4(function () {
5483
- // eslint-disable-next-line no-useless-call -- required for testing
5484
- method.call(null, argument || function () { return 1; }, 1);
5485
- });
5486
- };
5487
-
5488
- var classof = classofRaw$1;
5489
- var global$b = global$T;
5490
-
5491
- var engineIsNode = classof(global$b.process) == 'process';
5492
-
5493
- var $$8 = _export;
5494
- var $reduce = arrayReduce.left;
5495
- var arrayMethodIsStrict$2 = arrayMethodIsStrict$3;
5496
- var CHROME_VERSION = engineV8Version;
5497
- var IS_NODE$3 = engineIsNode;
5498
-
5499
- var STRICT_METHOD$2 = arrayMethodIsStrict$2('reduce');
5500
- // Chrome 80-82 has a critical bug
5501
- // https://bugs.chromium.org/p/chromium/issues/detail?id=1049982
5502
- var CHROME_BUG = !IS_NODE$3 && CHROME_VERSION > 79 && CHROME_VERSION < 83;
5503
-
5504
- // `Array.prototype.reduce` method
5505
- // https://tc39.es/ecma262/#sec-array.prototype.reduce
5506
- $$8({ target: 'Array', proto: true, forced: !STRICT_METHOD$2 || CHROME_BUG }, {
5507
- reduce: function reduce(callbackfn /* , initialValue */) {
5508
- var length = arguments.length;
5509
- return $reduce(this, callbackfn, length, length > 1 ? arguments[1] : undefined);
5510
- }
5511
- });
5512
-
5513
5488
  /**
5514
5489
  * Checks if the name provided is single or compound and returns either the first two letters,
5515
5490
  * or the initials of the two first names.
@@ -5617,16 +5592,16 @@ Avatar.defaultProps = {
5617
5592
  mainColor: palette.grey
5618
5593
  };
5619
5594
 
5620
- var $$7 = _export;
5621
- var toObject$2 = toObject$9;
5595
+ var $$5 = _export;
5596
+ var toObject$2 = toObject$8;
5622
5597
  var nativeKeys = objectKeys$2;
5623
- var fails$3 = fails$q;
5598
+ var fails$3 = fails$p;
5624
5599
 
5625
5600
  var FAILS_ON_PRIMITIVES = fails$3(function () { nativeKeys(1); });
5626
5601
 
5627
5602
  // `Object.keys` method
5628
5603
  // https://tc39.es/ecma262/#sec-object.keys
5629
- $$7({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {
5604
+ $$5({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {
5630
5605
  keys: function keys(it) {
5631
5606
  return nativeKeys(toObject$2(it));
5632
5607
  }
@@ -7039,13 +7014,13 @@ var icons = {
7039
7014
 
7040
7015
  var DESCRIPTORS$1 = descriptors;
7041
7016
  var FUNCTION_NAME_EXISTS = functionName.EXISTS;
7042
- var uncurryThis$5 = functionUncurryThis;
7017
+ var uncurryThis$3 = functionUncurryThis;
7043
7018
  var defineProperty = objectDefineProperty.f;
7044
7019
 
7045
7020
  var FunctionPrototype = Function.prototype;
7046
- var functionToString = uncurryThis$5(FunctionPrototype.toString);
7021
+ var functionToString = uncurryThis$3(FunctionPrototype.toString);
7047
7022
  var nameRE = /function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/;
7048
- var regExpExec = uncurryThis$5(nameRE.exec);
7023
+ var regExpExec = uncurryThis$3(nameRE.exec);
7049
7024
  var NAME = 'name';
7050
7025
 
7051
7026
  // Function instances `.name` property
@@ -7063,7 +7038,7 @@ if (DESCRIPTORS$1 && !FUNCTION_NAME_EXISTS) {
7063
7038
  });
7064
7039
  }
7065
7040
 
7066
- var _excluded$a = ["color", "name", "size", "styles", "pathStyles", "width", "height", "viewBox"];
7041
+ var _excluded$b = ["color", "name", "size", "styles", "pathStyles", "width", "height", "viewBox"];
7067
7042
 
7068
7043
  var Icon = function Icon(_ref) {
7069
7044
  var color = _ref.color,
@@ -7074,7 +7049,7 @@ var Icon = function Icon(_ref) {
7074
7049
  width = _ref.width,
7075
7050
  height = _ref.height,
7076
7051
  viewBox = _ref.viewBox,
7077
- props = _objectWithoutProperties(_ref, _excluded$a);
7052
+ props = _objectWithoutProperties(_ref, _excluded$b);
7078
7053
 
7079
7054
  if (!icons[name]) return null;
7080
7055
  var _icons$name = icons[name],
@@ -7160,7 +7135,7 @@ var styled$g = {
7160
7135
  })(["text-overflow:ellipsis;overflow:hidden;"])
7161
7136
  };
7162
7137
 
7163
- var _excluded$9 = ["backgroundColor", "borderColor", "children", "disabled", "icon", "iconColor", "iconSize", "onClick", "onDelete", "selected", "textColor", "variant", "hasLink"];
7138
+ var _excluded$a = ["backgroundColor", "borderColor", "children", "disabled", "icon", "iconColor", "iconSize", "onClick", "onDelete", "selected", "textColor", "variant", "hasLink"];
7164
7139
 
7165
7140
  var Chip = function Chip(_ref) {
7166
7141
  var backgroundColor = _ref.backgroundColor,
@@ -7176,7 +7151,7 @@ var Chip = function Chip(_ref) {
7176
7151
  textColor = _ref.textColor,
7177
7152
  variant = _ref.variant,
7178
7153
  hasLink = _ref.hasLink,
7179
- props = _objectWithoutProperties(_ref, _excluded$9);
7154
+ props = _objectWithoutProperties(_ref, _excluded$a);
7180
7155
 
7181
7156
  if (!children && !icon) return null;
7182
7157
  return /*#__PURE__*/React__default.createElement(styled$g.Chip, _extends$1({
@@ -7237,13 +7212,13 @@ var styled$f = {
7237
7212
  };
7238
7213
 
7239
7214
  var bind$5 = functionBindContext;
7240
- var uncurryThis$4 = functionUncurryThis;
7215
+ var uncurryThis$2 = functionUncurryThis;
7241
7216
  var IndexedObject = indexedObject;
7242
- var toObject$1 = toObject$9;
7243
- var lengthOfArrayLike$3 = lengthOfArrayLike$9;
7217
+ var toObject$1 = toObject$8;
7218
+ var lengthOfArrayLike$3 = lengthOfArrayLike$8;
7244
7219
  var arraySpeciesCreate$1 = arraySpeciesCreate$3;
7245
7220
 
7246
- var push = uncurryThis$4([].push);
7221
+ var push = uncurryThis$2([].push);
7247
7222
 
7248
7223
  // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
7249
7224
  var createMethod = function (TYPE) {
@@ -7310,7 +7285,7 @@ var arrayIteration = {
7310
7285
  filterReject: createMethod(7)
7311
7286
  };
7312
7287
 
7313
- var $$6 = _export;
7288
+ var $$4 = _export;
7314
7289
  var $map = arrayIteration.map;
7315
7290
  var arrayMethodHasSpeciesSupport = arrayMethodHasSpeciesSupport$2;
7316
7291
 
@@ -7319,7 +7294,7 @@ var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('map');
7319
7294
  // `Array.prototype.map` method
7320
7295
  // https://tc39.es/ecma262/#sec-array.prototype.map
7321
7296
  // with adding support of @@species
7322
- $$6({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
7297
+ $$4({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
7323
7298
  map: function map(callbackfn /* , thisArg */) {
7324
7299
  return $map(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
7325
7300
  }
@@ -7479,7 +7454,7 @@ var styled$e = {
7479
7454
  })
7480
7455
  };
7481
7456
 
7482
- var _excluded$8 = ["children", "color", "hideLabel", "icon", "iconColor", "iconSize", "fontColor", "rounded", "styles", "variant", "disabled"];
7457
+ var _excluded$9 = ["children", "color", "hideLabel", "icon", "iconColor", "iconSize", "fontColor", "rounded", "styles", "variant", "disabled"];
7483
7458
 
7484
7459
  var Button = function Button(_ref) {
7485
7460
  var children = _ref.children,
@@ -7493,7 +7468,7 @@ var Button = function Button(_ref) {
7493
7468
  styles = _ref.styles,
7494
7469
  variant = _ref.variant,
7495
7470
  disabled = _ref.disabled,
7496
- props = _objectWithoutProperties(_ref, _excluded$8);
7471
+ props = _objectWithoutProperties(_ref, _excluded$9);
7497
7472
 
7498
7473
  return /*#__PURE__*/React__default.createElement(styled$e.Button, _extends$1({
7499
7474
  color: color,
@@ -7542,7 +7517,7 @@ var styled$d = {
7542
7517
  })
7543
7518
  };
7544
7519
 
7545
- var _excluded$7 = ["autoComplete", "disabled", "defaultChecked", "onChange", "rounded", "styles", "value"];
7520
+ var _excluded$8 = ["autoComplete", "disabled", "defaultChecked", "onChange", "rounded", "styles", "value"];
7546
7521
 
7547
7522
  var Checkbox = function Checkbox(_ref) {
7548
7523
  var autoComplete = _ref.autoComplete,
@@ -7552,7 +7527,7 @@ var Checkbox = function Checkbox(_ref) {
7552
7527
  rounded = _ref.rounded,
7553
7528
  styles = _ref.styles,
7554
7529
  value = _ref.value,
7555
- props = _objectWithoutProperties(_ref, _excluded$7);
7530
+ props = _objectWithoutProperties(_ref, _excluded$8);
7556
7531
 
7557
7532
  var _useState = useState(!!value || defaultChecked),
7558
7533
  _useState2 = _slicedToArray(_useState, 2),
@@ -7668,7 +7643,7 @@ var styled$b = {
7668
7643
  iconCheckStyles: iconCheckStyles
7669
7644
  };
7670
7645
 
7671
- var _excluded$6 = ["autoComplete", "defaultChecked", "disabled", "id", "name", "onChange", "value"];
7646
+ var _excluded$7 = ["autoComplete", "defaultChecked", "disabled", "id", "name", "onChange", "value"];
7672
7647
 
7673
7648
  var Switch = function Switch(_ref) {
7674
7649
  var autoComplete = _ref.autoComplete,
@@ -7678,7 +7653,7 @@ var Switch = function Switch(_ref) {
7678
7653
  name = _ref.name,
7679
7654
  onChange = _ref.onChange,
7680
7655
  value = _ref.value,
7681
- props = _objectWithoutProperties(_ref, _excluded$6);
7656
+ props = _objectWithoutProperties(_ref, _excluded$7);
7682
7657
 
7683
7658
  var _useState = useState(!!value || defaultChecked),
7684
7659
  _useState2 = _slicedToArray(_useState, 2),
@@ -7728,19 +7703,19 @@ Switch.defaultProps = {
7728
7703
  }
7729
7704
  };
7730
7705
 
7731
- var uncurryThis$3 = functionUncurryThis;
7706
+ var uncurryThis$1 = functionUncurryThis;
7732
7707
  var PROPER_FUNCTION_NAME = functionName.PROPER;
7733
7708
  var redefine$1 = redefine$b.exports;
7734
7709
  var anObject$2 = anObject$h;
7735
7710
  var isPrototypeOf$1 = objectIsPrototypeOf;
7736
- var $toString = toString$9;
7737
- var fails$2 = fails$q;
7711
+ var $toString = toString$8;
7712
+ var fails$2 = fails$p;
7738
7713
  var regExpFlags = regexpFlags$1;
7739
7714
 
7740
7715
  var TO_STRING = 'toString';
7741
7716
  var RegExpPrototype = RegExp.prototype;
7742
7717
  var n$ToString = RegExpPrototype[TO_STRING];
7743
- var getFlags = uncurryThis$3(regExpFlags);
7718
+ var getFlags = uncurryThis$1(regExpFlags);
7744
7719
 
7745
7720
  var NOT_GENERIC = fails$2(function () { return n$ToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });
7746
7721
  // FF44- RegExp#toString has a wrong name
@@ -7850,7 +7825,7 @@ var styled$a = {
7850
7825
  })(["position:absolute;flex-shrink:0;flex-grow:0;margin-right:8px;height:100%;"])
7851
7826
  };
7852
7827
 
7853
- var _excluded$5 = ["icon", "error", "disabled", "placeholder", "errorMessage", "autoComplete", "hasFloatingLabel", "value", "isTranslateActive", "defaultValue"];
7828
+ var _excluded$6 = ["icon", "error", "disabled", "placeholder", "errorMessage", "autoComplete", "hasFloatingLabel", "value", "isTranslateActive", "defaultValue"];
7854
7829
 
7855
7830
  var Input = /*#__PURE__*/function (_PureComponent) {
7856
7831
  _inherits$2(Input, _PureComponent);
@@ -7946,7 +7921,7 @@ var Input = /*#__PURE__*/function (_PureComponent) {
7946
7921
  value = _this$props$value === void 0 ? stateValue : _this$props$value,
7947
7922
  isTranslateActive = _this$props.isTranslateActive;
7948
7923
  _this$props.defaultValue;
7949
- var props = _objectWithoutProperties(_this$props, _excluded$5);
7924
+ var props = _objectWithoutProperties(_this$props, _excluded$6);
7950
7925
 
7951
7926
  var autoCompleteOff = props.type === 'password' ? 'new-password' : 'off';
7952
7927
  var isFloating = isFocused || !!value.toString();
@@ -8059,7 +8034,7 @@ var styled$9 = {
8059
8034
  })(["color:", ";font-size:12px;line-height:14px;display:block;word-break:break-word;"], palette.statusRed)
8060
8035
  };
8061
8036
 
8062
- var _excluded$4 = ["label", "error", "disabled", "placeholder", "autoComplete", "errorMessage", "hasFloatingLabel", "isTranslateActive", "value", "defaultValue"];
8037
+ var _excluded$5 = ["label", "error", "disabled", "placeholder", "autoComplete", "errorMessage", "hasFloatingLabel", "isTranslateActive", "value", "defaultValue"];
8063
8038
 
8064
8039
  var Textarea = /*#__PURE__*/function (_PureComponent) {
8065
8040
  _inherits$2(Textarea, _PureComponent);
@@ -8161,7 +8136,7 @@ var Textarea = /*#__PURE__*/function (_PureComponent) {
8161
8136
  _this$props$value = _this$props.value,
8162
8137
  value = _this$props$value === void 0 ? stateValue : _this$props$value;
8163
8138
  _this$props.defaultValue;
8164
- var props = _objectWithoutProperties(_this$props, _excluded$4);
8139
+ var props = _objectWithoutProperties(_this$props, _excluded$5);
8165
8140
 
8166
8141
  var isFloating = isFocused || !!value;
8167
8142
  return /*#__PURE__*/React__default.createElement(styled$9.Container, {
@@ -8212,38 +8187,6 @@ Textarea.defaultProps = {
8212
8187
  hasFloatingLabel: false
8213
8188
  };
8214
8189
 
8215
- var global$a = global$T;
8216
- var fails$1 = fails$q;
8217
- var uncurryThis$2 = functionUncurryThis;
8218
- var toString = toString$9;
8219
- var trim = stringTrim.trim;
8220
- var whitespaces = whitespaces$2;
8221
-
8222
- var $parseInt$1 = global$a.parseInt;
8223
- var Symbol$1 = global$a.Symbol;
8224
- var ITERATOR = Symbol$1 && Symbol$1.iterator;
8225
- var hex = /^[+-]?0x/i;
8226
- var exec = uncurryThis$2(hex.exec);
8227
- var FORCED$1 = $parseInt$1(whitespaces + '08') !== 8 || $parseInt$1(whitespaces + '0x16') !== 22
8228
- // MS Edge 18- broken with boxed symbols
8229
- || (ITERATOR && !fails$1(function () { $parseInt$1(Object(ITERATOR)); }));
8230
-
8231
- // `parseInt` method
8232
- // https://tc39.es/ecma262/#sec-parseint-string-radix
8233
- var numberParseInt = FORCED$1 ? function parseInt(string, radix) {
8234
- var S = trim(toString(string));
8235
- return $parseInt$1(S, (radix >>> 0) || (exec(hex, S) ? 16 : 10));
8236
- } : $parseInt$1;
8237
-
8238
- var $$5 = _export;
8239
- var $parseInt = numberParseInt;
8240
-
8241
- // `parseInt` method
8242
- // https://tc39.es/ecma262/#sec-parseint-string-radix
8243
- $$5({ global: true, forced: parseInt != $parseInt }, {
8244
- parseInt: $parseInt
8245
- });
8246
-
8247
8190
  var setSize = function setSize(value) {
8248
8191
  return value && !Number.isNaN(parseInt(value, 10)) ? "".concat(value, "px") : 'auto';
8249
8192
  };
@@ -9105,7 +9048,7 @@ QRCode.defaultProps = {
9105
9048
  size: 100
9106
9049
  };
9107
9050
 
9108
- function u(){return (u=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);}return e}).apply(this,arguments)}function c(e,r){if(null==e)return {};var t,n,o={},a=Object.keys(e);for(n=0;n<a.length;n++)r.indexOf(t=a[n])>=0||(o[t]=e[t]);return o}function i(e){var t=useRef(e),n=useRef(function(e){t.current&&t.current(e);});return t.current=e,n.current}var s=function(e,r,t){return void 0===r&&(r=0),void 0===t&&(t=1),e>t?t:e<r?r:e},f=function(e){return "touches"in e},v=function(e){return e&&e.ownerDocument.defaultView||self},d=function(e,r,t){var n=e.getBoundingClientRect(),o=f(r)?function(e,r){for(var t=0;t<e.length;t++)if(e[t].identifier===r)return e[t];return e[0]}(r.touches,t):r;return {left:s((o.pageX-(n.left+v(e).pageXOffset))/n.width),top:s((o.pageY-(n.top+v(e).pageYOffset))/n.height)}},h=function(e){!f(e)&&e.preventDefault();},m=React__default.memo(function(o){var a=o.onMove,l=o.onKey,s=c(o,["onMove","onKey"]),m=useRef(null),g=i(a),p=i(l),b=useRef(null),_=useRef(!1),x=useMemo(function(){var e=function(e){h(e),(f(e)?e.touches.length>0:e.buttons>0)&&m.current?g(d(m.current,e,b.current)):t(!1);},r=function(){return t(!1)};function t(t){var n=_.current,o=v(m.current),a=t?o.addEventListener:o.removeEventListener;a(n?"touchmove":"mousemove",e),a(n?"touchend":"mouseup",r);}return [function(e){var r=e.nativeEvent,n=m.current;if(n&&(h(r),!function(e,r){return r&&!f(e)}(r,_.current)&&n)){if(f(r)){_.current=!0;var o=r.changedTouches||[];o.length&&(b.current=o[0].identifier);}n.focus(),g(d(n,r,b.current)),t(!0);}},function(e){var r=e.which||e.keyCode;r<37||r>40||(e.preventDefault(),p({left:39===r?.05:37===r?-.05:0,top:40===r?.05:38===r?-.05:0}));},t]},[p,g]),C=x[0],E=x[1],H=x[2];return useEffect(function(){return H},[H]),React__default.createElement("div",u({},s,{onTouchStart:C,onMouseDown:C,className:"react-colorful__interactive",ref:m,onKeyDown:E,tabIndex:0,role:"slider"}))}),g=function(e){return e.filter(Boolean).join(" ")},p=function(r){var t=r.color,n=r.left,o=r.top,a=void 0===o?.5:o,l=g(["react-colorful__pointer",r.className]);return React__default.createElement("div",{className:l,style:{top:100*a+"%",left:100*n+"%"}},React__default.createElement("div",{className:"react-colorful__pointer-fill",style:{backgroundColor:t}}))},b=function(e,r,t){return void 0===r&&(r=0),void 0===t&&(t=Math.pow(10,r)),Math.round(t*e)/t},x=function(e){return "#"===e[0]&&(e=e.substr(1)),e.length<6?{r:parseInt(e[0]+e[0],16),g:parseInt(e[1]+e[1],16),b:parseInt(e[2]+e[2],16),a:1}:{r:parseInt(e.substr(0,2),16),g:parseInt(e.substr(2,2),16),b:parseInt(e.substr(4,2),16),a:1}},N=function(e){var r=e.s,t=e.v,n=e.a,o=(200-r)*t/100;return {h:b(e.h),s:b(o>0&&o<200?r*t/100/(o<=100?o:200-o)*100:0),l:b(o/2),a:b(n,2)}},w=function(e){var r=N(e);return "hsl("+r.h+", "+r.s+"%, "+r.l+"%)"},q=function(e){var r=e.h,t=e.s,n=e.v,o=e.a;r=r/360*6,t/=100,n/=100;var a=Math.floor(r),l=n*(1-t),u=n*(1-(r-a)*t),c=n*(1-(1-r+a)*t),i=a%6;return {r:b(255*[n,u,l,l,c,n][i]),g:b(255*[c,n,n,u,l,l][i]),b:b(255*[l,l,c,n,n,u][i]),a:b(o,2)}},z=function(e){var r=e.toString(16);return r.length<2?"0"+r:r},B=function(e){var r=e.r,t=e.g,n=e.b,o=e.a,a=Math.max(r,t,n),l=a-Math.min(r,t,n),u=l?a===r?(t-n)/l:a===t?2+(n-r)/l:4+(r-t)/l:0;return {h:b(60*(u<0?u+6:u)),s:b(a?l/a*100:0),v:b(a/255*100),a:o}},K=React__default.memo(function(r){var t=r.hue,n=r.onChange,o=g(["react-colorful__hue",r.className]);return React__default.createElement("div",{className:o},React__default.createElement(m,{onMove:function(e){n({h:360*e.left});},onKey:function(e){n({h:s(t+360*e.left,0,360)});},"aria-label":"Hue","aria-valuetext":b(t)},React__default.createElement(p,{className:"react-colorful__hue-pointer",left:t/360,color:w({h:t,s:100,v:100,a:1})})))}),L=React__default.memo(function(r){var t=r.hsva,n=r.onChange,o={backgroundColor:w({h:t.h,s:100,v:100,a:1})};return React__default.createElement("div",{className:"react-colorful__saturation",style:o},React__default.createElement(m,{onMove:function(e){n({s:100*e.left,v:100-100*e.top});},onKey:function(e){n({s:s(t.s+100*e.left,0,100),v:s(t.v-100*e.top,0,100)});},"aria-label":"Color","aria-valuetext":"Saturation "+b(t.s)+"%, Brightness "+b(t.v)+"%"},React__default.createElement(p,{className:"react-colorful__saturation-pointer",top:1-t.v/100,left:t.s/100,color:w(t)})))}),A=function(e,r){if(e===r)return !0;for(var t in e)if(e[t]!==r[t])return !1;return !0};function T(e,t,l){var u=i(l),c=useState(function(){return e.toHsva(t)}),s=c[0],f=c[1],v=useRef({color:t,hsva:s});useEffect(function(){if(!e.equal(t,v.current.color)){var r=e.toHsva(t);v.current={hsva:r,color:t},f(r);}},[t,e]),useEffect(function(){var r;A(s,v.current.hsva)||e.equal(r=e.fromHsva(s),v.current.color)||(v.current={hsva:s,color:r},u(r));},[s,e,u]);var d=useCallback(function(e){f(function(r){return Object.assign({},r,e)});},[]);return [s,d]}var P="undefined"!=typeof window?useLayoutEffect:useEffect,X=function(){return ("undefined"!=typeof __webpack_nonce__?__webpack_nonce__:void 0)},R=new Map,V=function(e){P(function(){var r=e.current?e.current.ownerDocument:document;if(void 0!==r&&!R.has(r)){var t=r.createElement("style");t.innerHTML='.react-colorful{position:relative;display:flex;flex-direction:column;width:200px;height:200px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.react-colorful__saturation{position:relative;flex-grow:1;border-color:transparent;border-bottom:12px solid #000;border-radius:8px 8px 0 0;background-image:linear-gradient(0deg,#000,transparent),linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.react-colorful__alpha-gradient,.react-colorful__pointer-fill{content:"";position:absolute;left:0;top:0;right:0;bottom:0;pointer-events:none;border-radius:inherit}.react-colorful__alpha-gradient,.react-colorful__saturation{box-shadow:inset 0 0 0 1px rgba(0,0,0,.05)}.react-colorful__alpha,.react-colorful__hue{position:relative;height:24px}.react-colorful__hue{background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.react-colorful__last-control{border-radius:0 0 8px 8px}.react-colorful__interactive{position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;outline:none;touch-action:none}.react-colorful__pointer{position:absolute;z-index:1;box-sizing:border-box;width:28px;height:28px;transform:translate(-50%,-50%);background-color:#fff;border:2px solid #fff;border-radius:50%;box-shadow:0 2px 4px rgba(0,0,0,.2)}.react-colorful__interactive:focus .react-colorful__pointer{transform:translate(-50%,-50%) scale(1.1)}.react-colorful__alpha,.react-colorful__alpha-pointer{background-color:#fff;background-image:url(\'data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill-opacity=".05"><path d="M8 0h8v8H8zM0 8h8v8H0z"/></svg>\')}.react-colorful__saturation-pointer{z-index:3}.react-colorful__hue-pointer{z-index:2}',R.set(r,t);var n=X();n&&t.setAttribute("nonce",n),r.head.appendChild(t);}},[]);},$$4=function(t){var n=t.className,o=t.colorModel,a=t.color,l=void 0===a?o.defaultColor:a,i=t.onChange,s=c(t,["className","colorModel","color","onChange"]),f=useRef(null);V(f);var v=T(o,l,i),d=v[0],h=v[1],m=g(["react-colorful",n]);return React__default.createElement("div",u({},s,{ref:f,className:m}),React__default.createElement(L,{hsva:d,onChange:h}),React__default.createElement(K,{hue:d.h,onChange:h,className:"react-colorful__last-control"}))},G={defaultColor:"000",toHsva:function(e){return B(x(e))},fromHsva:function(e){return t=(r=q(e)).g,n=r.b,"#"+z(r.r)+z(t)+z(n);var r,t,n;},equal:function(e,r){return e.toLowerCase()===r.toLowerCase()||A(x(e),x(r))}},J=function(r){return React__default.createElement($$4,u({},r,{colorModel:G}))};
9051
+ function u(){return (u=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);}return e}).apply(this,arguments)}function c(e,r){if(null==e)return {};var t,n,o={},a=Object.keys(e);for(n=0;n<a.length;n++)r.indexOf(t=a[n])>=0||(o[t]=e[t]);return o}function i(e){var t=useRef(e),n=useRef(function(e){t.current&&t.current(e);});return t.current=e,n.current}var s=function(e,r,t){return void 0===r&&(r=0),void 0===t&&(t=1),e>t?t:e<r?r:e},f=function(e){return "touches"in e},v=function(e){return e&&e.ownerDocument.defaultView||self},d=function(e,r,t){var n=e.getBoundingClientRect(),o=f(r)?function(e,r){for(var t=0;t<e.length;t++)if(e[t].identifier===r)return e[t];return e[0]}(r.touches,t):r;return {left:s((o.pageX-(n.left+v(e).pageXOffset))/n.width),top:s((o.pageY-(n.top+v(e).pageYOffset))/n.height)}},h=function(e){!f(e)&&e.preventDefault();},m=React__default.memo(function(o){var a=o.onMove,l=o.onKey,s=c(o,["onMove","onKey"]),m=useRef(null),g=i(a),p=i(l),b=useRef(null),_=useRef(!1),x=useMemo(function(){var e=function(e){h(e),(f(e)?e.touches.length>0:e.buttons>0)&&m.current?g(d(m.current,e,b.current)):t(!1);},r=function(){return t(!1)};function t(t){var n=_.current,o=v(m.current),a=t?o.addEventListener:o.removeEventListener;a(n?"touchmove":"mousemove",e),a(n?"touchend":"mouseup",r);}return [function(e){var r=e.nativeEvent,n=m.current;if(n&&(h(r),!function(e,r){return r&&!f(e)}(r,_.current)&&n)){if(f(r)){_.current=!0;var o=r.changedTouches||[];o.length&&(b.current=o[0].identifier);}n.focus(),g(d(n,r,b.current)),t(!0);}},function(e){var r=e.which||e.keyCode;r<37||r>40||(e.preventDefault(),p({left:39===r?.05:37===r?-.05:0,top:40===r?.05:38===r?-.05:0}));},t]},[p,g]),C=x[0],E=x[1],H=x[2];return useEffect(function(){return H},[H]),React__default.createElement("div",u({},s,{onTouchStart:C,onMouseDown:C,className:"react-colorful__interactive",ref:m,onKeyDown:E,tabIndex:0,role:"slider"}))}),g=function(e){return e.filter(Boolean).join(" ")},p=function(r){var t=r.color,n=r.left,o=r.top,a=void 0===o?.5:o,l=g(["react-colorful__pointer",r.className]);return React__default.createElement("div",{className:l,style:{top:100*a+"%",left:100*n+"%"}},React__default.createElement("div",{className:"react-colorful__pointer-fill",style:{backgroundColor:t}}))},b=function(e,r,t){return void 0===r&&(r=0),void 0===t&&(t=Math.pow(10,r)),Math.round(t*e)/t},x=function(e){return "#"===e[0]&&(e=e.substr(1)),e.length<6?{r:parseInt(e[0]+e[0],16),g:parseInt(e[1]+e[1],16),b:parseInt(e[2]+e[2],16),a:1}:{r:parseInt(e.substr(0,2),16),g:parseInt(e.substr(2,2),16),b:parseInt(e.substr(4,2),16),a:1}},N=function(e){var r=e.s,t=e.v,n=e.a,o=(200-r)*t/100;return {h:b(e.h),s:b(o>0&&o<200?r*t/100/(o<=100?o:200-o)*100:0),l:b(o/2),a:b(n,2)}},w=function(e){var r=N(e);return "hsl("+r.h+", "+r.s+"%, "+r.l+"%)"},q=function(e){var r=e.h,t=e.s,n=e.v,o=e.a;r=r/360*6,t/=100,n/=100;var a=Math.floor(r),l=n*(1-t),u=n*(1-(r-a)*t),c=n*(1-(1-r+a)*t),i=a%6;return {r:b(255*[n,u,l,l,c,n][i]),g:b(255*[c,n,n,u,l,l][i]),b:b(255*[l,l,c,n,n,u][i]),a:b(o,2)}},z=function(e){var r=e.toString(16);return r.length<2?"0"+r:r},B=function(e){var r=e.r,t=e.g,n=e.b,o=e.a,a=Math.max(r,t,n),l=a-Math.min(r,t,n),u=l?a===r?(t-n)/l:a===t?2+(n-r)/l:4+(r-t)/l:0;return {h:b(60*(u<0?u+6:u)),s:b(a?l/a*100:0),v:b(a/255*100),a:o}},K=React__default.memo(function(r){var t=r.hue,n=r.onChange,o=g(["react-colorful__hue",r.className]);return React__default.createElement("div",{className:o},React__default.createElement(m,{onMove:function(e){n({h:360*e.left});},onKey:function(e){n({h:s(t+360*e.left,0,360)});},"aria-label":"Hue","aria-valuetext":b(t)},React__default.createElement(p,{className:"react-colorful__hue-pointer",left:t/360,color:w({h:t,s:100,v:100,a:1})})))}),L=React__default.memo(function(r){var t=r.hsva,n=r.onChange,o={backgroundColor:w({h:t.h,s:100,v:100,a:1})};return React__default.createElement("div",{className:"react-colorful__saturation",style:o},React__default.createElement(m,{onMove:function(e){n({s:100*e.left,v:100-100*e.top});},onKey:function(e){n({s:s(t.s+100*e.left,0,100),v:s(t.v-100*e.top,0,100)});},"aria-label":"Color","aria-valuetext":"Saturation "+b(t.s)+"%, Brightness "+b(t.v)+"%"},React__default.createElement(p,{className:"react-colorful__saturation-pointer",top:1-t.v/100,left:t.s/100,color:w(t)})))}),A=function(e,r){if(e===r)return !0;for(var t in e)if(e[t]!==r[t])return !1;return !0};function T(e,t,l){var u=i(l),c=useState(function(){return e.toHsva(t)}),s=c[0],f=c[1],v=useRef({color:t,hsva:s});useEffect(function(){if(!e.equal(t,v.current.color)){var r=e.toHsva(t);v.current={hsva:r,color:t},f(r);}},[t,e]),useEffect(function(){var r;A(s,v.current.hsva)||e.equal(r=e.fromHsva(s),v.current.color)||(v.current={hsva:s,color:r},u(r));},[s,e,u]);var d=useCallback(function(e){f(function(r){return Object.assign({},r,e)});},[]);return [s,d]}var P="undefined"!=typeof window?useLayoutEffect:useEffect,X=function(){return ("undefined"!=typeof __webpack_nonce__?__webpack_nonce__:void 0)},R=new Map,V=function(e){P(function(){var r=e.current?e.current.ownerDocument:document;if(void 0!==r&&!R.has(r)){var t=r.createElement("style");t.innerHTML='.react-colorful{position:relative;display:flex;flex-direction:column;width:200px;height:200px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.react-colorful__saturation{position:relative;flex-grow:1;border-color:transparent;border-bottom:12px solid #000;border-radius:8px 8px 0 0;background-image:linear-gradient(0deg,#000,transparent),linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.react-colorful__alpha-gradient,.react-colorful__pointer-fill{content:"";position:absolute;left:0;top:0;right:0;bottom:0;pointer-events:none;border-radius:inherit}.react-colorful__alpha-gradient,.react-colorful__saturation{box-shadow:inset 0 0 0 1px rgba(0,0,0,.05)}.react-colorful__alpha,.react-colorful__hue{position:relative;height:24px}.react-colorful__hue{background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.react-colorful__last-control{border-radius:0 0 8px 8px}.react-colorful__interactive{position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;outline:none;touch-action:none}.react-colorful__pointer{position:absolute;z-index:1;box-sizing:border-box;width:28px;height:28px;transform:translate(-50%,-50%);background-color:#fff;border:2px solid #fff;border-radius:50%;box-shadow:0 2px 4px rgba(0,0,0,.2)}.react-colorful__interactive:focus .react-colorful__pointer{transform:translate(-50%,-50%) scale(1.1)}.react-colorful__alpha,.react-colorful__alpha-pointer{background-color:#fff;background-image:url(\'data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill-opacity=".05"><path d="M8 0h8v8H8zM0 8h8v8H0z"/></svg>\')}.react-colorful__saturation-pointer{z-index:3}.react-colorful__hue-pointer{z-index:2}',R.set(r,t);var n=X();n&&t.setAttribute("nonce",n),r.head.appendChild(t);}},[]);},$$3=function(t){var n=t.className,o=t.colorModel,a=t.color,l=void 0===a?o.defaultColor:a,i=t.onChange,s=c(t,["className","colorModel","color","onChange"]),f=useRef(null);V(f);var v=T(o,l,i),d=v[0],h=v[1],m=g(["react-colorful",n]);return React__default.createElement("div",u({},s,{ref:f,className:m}),React__default.createElement(L,{hsva:d,onChange:h}),React__default.createElement(K,{hue:d.h,onChange:h,className:"react-colorful__last-control"}))},G={defaultColor:"000",toHsva:function(e){return B(x(e))},fromHsva:function(e){return t=(r=q(e)).g,n=r.b,"#"+z(r.r)+z(t)+z(n);var r,t,n;},equal:function(e,r){return e.toLowerCase()===r.toLowerCase()||A(x(e),x(r))}},J=function(r){return React__default.createElement($$3,u({},r,{colorModel:G}))};
9109
9052
 
9110
9053
  var styled$7 = {
9111
9054
  ClickableWrapper: styled$j.div.withConfig({
@@ -9690,14 +9633,14 @@ var styled$5 = {
9690
9633
  })(["margin-right:8px;"])
9691
9634
  };
9692
9635
 
9693
- var _excluded$3 = ["href", "children", "target", "icon"];
9636
+ var _excluded$4 = ["href", "children", "target", "icon"];
9694
9637
 
9695
9638
  var Link = function Link(_ref) {
9696
9639
  var href = _ref.href,
9697
9640
  children = _ref.children,
9698
9641
  target = _ref.target,
9699
9642
  icon = _ref.icon,
9700
- props = _objectWithoutProperties(_ref, _excluded$3);
9643
+ props = _objectWithoutProperties(_ref, _excluded$4);
9701
9644
 
9702
9645
  var renderIcon = function renderIcon() {
9703
9646
  return icon ? /*#__PURE__*/React__default.createElement(styled$5.StyledIcon, {
@@ -9821,7 +9764,7 @@ var styled$4 = {
9821
9764
  Overlay: Overlay
9822
9765
  };
9823
9766
 
9824
- var _excluded$2 = ["open", "position", "handleClose", "transitionDuration", "fullScreen", "closeOnClickAway", "children"];
9767
+ var _excluded$3 = ["open", "position", "handleClose", "transitionDuration", "fullScreen", "closeOnClickAway", "children"];
9825
9768
 
9826
9769
  var Drawer = function Drawer(_ref) {
9827
9770
  var open = _ref.open,
@@ -9831,7 +9774,7 @@ var Drawer = function Drawer(_ref) {
9831
9774
  fullScreen = _ref.fullScreen,
9832
9775
  closeOnClickAway = _ref.closeOnClickAway,
9833
9776
  children = _ref.children,
9834
- props = _objectWithoutProperties(_ref, _excluded$2);
9777
+ props = _objectWithoutProperties(_ref, _excluded$3);
9835
9778
 
9836
9779
  var drawerRef = useRef(null);
9837
9780
  return /*#__PURE__*/React__default.createElement(ClickAwayListener, {
@@ -15972,10 +15915,10 @@ var markerHasEqualPosition = function markerHasEqualPosition() {
15972
15915
  return hasEqualLat && hasEqualLng;
15973
15916
  };
15974
15917
  var isValidAnimation = function isValidAnimation() {
15975
- var _window$google, _window$google$maps;
15918
+ var _window$google;
15976
15919
 
15977
15920
  var animation = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
15978
- var validAnimations = (_window$google = window.google) === null || _window$google === void 0 ? void 0 : (_window$google$maps = _window$google.maps) === null || _window$google$maps === void 0 ? void 0 : _window$google$maps.Animation;
15921
+ var validAnimations = (_window$google = window.google) === null || _window$google === void 0 || (_window$google = _window$google.maps) === null || _window$google === void 0 ? void 0 : _window$google.Animation;
15979
15922
  if (!animation || !isObject$2(animation)) return false;
15980
15923
  return (animation === null || animation === void 0 ? void 0 : animation.name) && validAnimations && validAnimations[animation === null || animation === void 0 ? void 0 : animation.name] !== undefined;
15981
15924
  };
@@ -16206,7 +16149,7 @@ var Markers = function Markers(_ref) {
16206
16149
  return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, markers.map(function (marker, idx) {
16207
16150
  var _marker$position, _marker$position2;
16208
16151
 
16209
- var uniqueId = "".concat(marker === null || marker === void 0 ? void 0 : (_marker$position = marker.position) === null || _marker$position === void 0 ? void 0 : _marker$position.lat, "-").concat(marker === null || marker === void 0 ? void 0 : (_marker$position2 = marker.position) === null || _marker$position2 === void 0 ? void 0 : _marker$position2.lng, "/").concat(idx.toString());
16152
+ var uniqueId = "".concat(marker === null || marker === void 0 || (_marker$position = marker.position) === null || _marker$position === void 0 ? void 0 : _marker$position.lat, "-").concat(marker === null || marker === void 0 || (_marker$position2 = marker.position) === null || _marker$position2 === void 0 ? void 0 : _marker$position2.lng, "/").concat(idx.toString());
16210
16153
  return /*#__PURE__*/React__default.createElement(Marker$1, {
16211
16154
  markerData: _objectSpread2(_objectSpread2({}, marker), {}, {
16212
16155
  infoWindowOpen: (marker === null || marker === void 0 ? void 0 : marker.showInfoWindow) || activeMarkerId === uniqueId
@@ -17039,29 +16982,6 @@ try {
17039
16982
  }
17040
16983
  }(runtime));
17041
16984
 
17042
- /* eslint-disable es/no-array-prototype-indexof -- required for testing */
17043
- var $$3 = _export;
17044
- var uncurryThis$1 = functionUncurryThis;
17045
- var $IndexOf = arrayIncludes.indexOf;
17046
- var arrayMethodIsStrict$1 = arrayMethodIsStrict$3;
17047
-
17048
- var un$IndexOf = uncurryThis$1([].indexOf);
17049
-
17050
- var NEGATIVE_ZERO = !!un$IndexOf && 1 / un$IndexOf([1], 1, -0) < 0;
17051
- var STRICT_METHOD$1 = arrayMethodIsStrict$1('indexOf');
17052
-
17053
- // `Array.prototype.indexOf` method
17054
- // https://tc39.es/ecma262/#sec-array.prototype.indexof
17055
- $$3({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || !STRICT_METHOD$1 }, {
17056
- indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
17057
- var fromIndex = arguments.length > 1 ? arguments[1] : undefined;
17058
- return NEGATIVE_ZERO
17059
- // convert -0 to +0
17060
- ? un$IndexOf(this, searchElement, fromIndex) || 0
17061
- : $IndexOf(this, searchElement, fromIndex);
17062
- }
17063
- });
17064
-
17065
16985
  /**
17066
16986
  * Maps every marker to extend the map's bounds so they can all be initially shown
17067
16987
  * @param {Array} markers Array of markers
@@ -17078,12 +16998,12 @@ var getBounds = (function () {
17078
16998
  return bounds;
17079
16999
  });
17080
17000
 
17081
- var global$9 = global$T;
17001
+ var global$a = global$R;
17082
17002
  var isArray = isArray$3;
17083
- var lengthOfArrayLike$2 = lengthOfArrayLike$9;
17003
+ var lengthOfArrayLike$2 = lengthOfArrayLike$8;
17084
17004
  var bind$4 = functionBindContext;
17085
17005
 
17086
- var TypeError$3 = global$9.TypeError;
17006
+ var TypeError$3 = global$a.TypeError;
17087
17007
 
17088
17008
  // `FlattenIntoArray` abstract operation
17089
17009
  // https://tc39.github.io/proposal-flatMap/#sec-FlattenIntoArray
@@ -17116,9 +17036,9 @@ var flattenIntoArray_1 = flattenIntoArray$1;
17116
17036
 
17117
17037
  var $$2 = _export;
17118
17038
  var flattenIntoArray = flattenIntoArray_1;
17119
- var aCallable$2 = aCallable$7;
17120
- var toObject = toObject$9;
17121
- var lengthOfArrayLike$1 = lengthOfArrayLike$9;
17039
+ var aCallable$2 = aCallable$6;
17040
+ var toObject = toObject$8;
17041
+ var lengthOfArrayLike$1 = lengthOfArrayLike$8;
17122
17042
  var arraySpeciesCreate = arraySpeciesCreate$3;
17123
17043
 
17124
17044
  // `Array.prototype.flatMap` method
@@ -17221,8 +17141,18 @@ var getMapOptions = (function (options) {
17221
17141
  });
17222
17142
  });
17223
17143
 
17144
+ var fails$1 = fails$p;
17145
+
17146
+ var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
17147
+ var method = [][METHOD_NAME];
17148
+ return !!method && fails$1(function () {
17149
+ // eslint-disable-next-line no-useless-call -- required for testing
17150
+ method.call(null, argument || function () { return 1; }, 1);
17151
+ });
17152
+ };
17153
+
17224
17154
  var $forEach = arrayIteration.forEach;
17225
- var arrayMethodIsStrict = arrayMethodIsStrict$3;
17155
+ var arrayMethodIsStrict = arrayMethodIsStrict$1;
17226
17156
 
17227
17157
  var STRICT_METHOD = arrayMethodIsStrict('forEach');
17228
17158
 
@@ -17233,7 +17163,7 @@ var arrayForEach = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */)
17233
17163
  // eslint-disable-next-line es/no-array-prototype-foreach -- safe
17234
17164
  } : [].forEach;
17235
17165
 
17236
- var global$8 = global$T;
17166
+ var global$9 = global$R;
17237
17167
  var DOMIterables = domIterables;
17238
17168
  var DOMTokenListPrototype = domTokenListPrototype;
17239
17169
  var forEach = arrayForEach;
@@ -17250,7 +17180,7 @@ var handlePrototype = function (CollectionPrototype) {
17250
17180
 
17251
17181
  for (var COLLECTION_NAME in DOMIterables) {
17252
17182
  if (DOMIterables[COLLECTION_NAME]) {
17253
- handlePrototype(global$8[COLLECTION_NAME] && global$8[COLLECTION_NAME].prototype);
17183
+ handlePrototype(global$9[COLLECTION_NAME] && global$9[COLLECTION_NAME].prototype);
17254
17184
  }
17255
17185
  }
17256
17186
 
@@ -17336,9 +17266,9 @@ var getParsedComponents = (function () {
17336
17266
  });
17337
17267
  });
17338
17268
 
17339
- var global$7 = global$T;
17269
+ var global$8 = global$R;
17340
17270
 
17341
- var nativePromiseConstructor = global$7.Promise;
17271
+ var nativePromiseConstructor = global$8.Promise;
17342
17272
 
17343
17273
  var getBuiltIn$1 = getBuiltIn$8;
17344
17274
  var definePropertyModule = objectDefineProperty;
@@ -17359,19 +17289,19 @@ var setSpecies$1 = function (CONSTRUCTOR_NAME) {
17359
17289
  }
17360
17290
  };
17361
17291
 
17362
- var global$6 = global$T;
17292
+ var global$7 = global$R;
17363
17293
  var bind$3 = functionBindContext;
17364
17294
  var call$1 = functionCall;
17365
17295
  var anObject$1 = anObject$h;
17366
17296
  var tryToString = tryToString$4;
17367
17297
  var isArrayIteratorMethod = isArrayIteratorMethod$2;
17368
- var lengthOfArrayLike = lengthOfArrayLike$9;
17298
+ var lengthOfArrayLike = lengthOfArrayLike$8;
17369
17299
  var isPrototypeOf = objectIsPrototypeOf;
17370
17300
  var getIterator = getIterator$3;
17371
17301
  var getIteratorMethod = getIteratorMethod$4;
17372
17302
  var iteratorClose = iteratorClose$2;
17373
17303
 
17374
- var TypeError$2 = global$6.TypeError;
17304
+ var TypeError$2 = global$7.TypeError;
17375
17305
 
17376
17306
  var Result = function (stopped, result) {
17377
17307
  this.stopped = stopped;
@@ -17434,12 +17364,17 @@ var userAgent$2 = engineUserAgent;
17434
17364
 
17435
17365
  var engineIsIos = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent$2);
17436
17366
 
17437
- var global$5 = global$T;
17367
+ var classof = classofRaw$1;
17368
+ var global$6 = global$R;
17369
+
17370
+ var engineIsNode = classof(global$6.process) == 'process';
17371
+
17372
+ var global$5 = global$R;
17438
17373
  var apply = functionApply;
17439
17374
  var bind$2 = functionBindContext;
17440
17375
  var isCallable$1 = isCallable$k;
17441
17376
  var hasOwn = hasOwnProperty_1;
17442
- var fails = fails$q;
17377
+ var fails = fails$p;
17443
17378
  var html = html$2;
17444
17379
  var arraySlice = arraySlice$1;
17445
17380
  var createElement = documentCreateElement$2;
@@ -17552,7 +17487,7 @@ var task$1 = {
17552
17487
  };
17553
17488
 
17554
17489
  var userAgent$1 = engineUserAgent;
17555
- var global$4 = global$T;
17490
+ var global$4 = global$R;
17556
17491
 
17557
17492
  var engineIsIosPebble = /ipad|iphone|ipod/i.test(userAgent$1) && global$4.Pebble !== undefined;
17558
17493
 
@@ -17560,7 +17495,7 @@ var userAgent = engineUserAgent;
17560
17495
 
17561
17496
  var engineIsWebosWebkit = /web0s(?!.*chrome)/i.test(userAgent);
17562
17497
 
17563
- var global$3 = global$T;
17498
+ var global$3 = global$R;
17564
17499
  var bind$1 = functionBindContext;
17565
17500
  var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
17566
17501
  var macrotask = task$1.set;
@@ -17648,7 +17583,7 @@ var microtask$1 = queueMicrotask || function (fn) {
17648
17583
 
17649
17584
  var newPromiseCapability$2 = {};
17650
17585
 
17651
- var aCallable$1 = aCallable$7;
17586
+ var aCallable$1 = aCallable$6;
17652
17587
 
17653
17588
  var PromiseCapability = function (C) {
17654
17589
  var resolve, reject;
@@ -17680,7 +17615,7 @@ var promiseResolve$1 = function (C, x) {
17680
17615
  return promiseCapability.promise;
17681
17616
  };
17682
17617
 
17683
- var global$2 = global$T;
17618
+ var global$2 = global$R;
17684
17619
 
17685
17620
  var hostReportErrors$1 = function (a, b) {
17686
17621
  var console = global$2.console;
@@ -17724,7 +17659,7 @@ var queue = Queue$1;
17724
17659
  var engineIsBrowser = typeof window == 'object';
17725
17660
 
17726
17661
  var $$1 = _export;
17727
- var global$1 = global$T;
17662
+ var global$1 = global$R;
17728
17663
  var getBuiltIn = getBuiltIn$8;
17729
17664
  var call = functionCall;
17730
17665
  var NativePromise = nativePromiseConstructor;
@@ -17733,7 +17668,7 @@ var redefineAll = redefineAll$2;
17733
17668
  var setPrototypeOf = objectSetPrototypeOf;
17734
17669
  var setToStringTag = setToStringTag$5;
17735
17670
  var setSpecies = setSpecies$1;
17736
- var aCallable = aCallable$7;
17671
+ var aCallable = aCallable$6;
17737
17672
  var isCallable = isCallable$k;
17738
17673
  var isObject = isObject$d;
17739
17674
  var anInstance = anInstance$3;
@@ -35467,7 +35402,7 @@ var styled$2 = {
35467
35402
  })(["z-index:0;position:relative;right:0px;top:0px;background:", ";margin:10px;padding:4px 8px 6px;border-radius:2px;width:auto;box-shadow:rgba(0,0,0,0.3) 0px 1px 4px -1px;"], palette.white)
35468
35403
  };
35469
35404
 
35470
- var _excluded$1 = ["formattedAddress"];
35405
+ var _excluded$2 = ["formattedAddress"];
35471
35406
 
35472
35407
  var SearchBox = function SearchBox(_ref) {
35473
35408
  var updateMarker = _ref.updateMarker;
@@ -35488,7 +35423,7 @@ var SearchBox = function SearchBox(_ref) {
35488
35423
 
35489
35424
  case 4:
35490
35425
  addressData = _context.sent;
35491
- formattedAddress = addressData.formattedAddress, addressComponents = _objectWithoutProperties(addressData, _excluded$1);
35426
+ formattedAddress = addressData.formattedAddress, addressComponents = _objectWithoutProperties(addressData, _excluded$2);
35492
35427
  if (updateMarker) updateMarker({
35493
35428
  lat: newLat(),
35494
35429
  lng: newLng(),
@@ -35522,7 +35457,7 @@ var SearchBox = function SearchBox(_ref) {
35522
35457
  })));
35523
35458
  };
35524
35459
 
35525
- var _excluded = ["googleMapsApiKey", "width", "height", "center", "zoom", "markers", "markerOptions", "options", "callbackOnSuccessDirections", "callbackOnErrorDirections"];
35460
+ var _excluded$1 = ["googleMapsApiKey", "width", "height", "center", "zoom", "markers", "markerOptions", "options", "callbackOnSuccessDirections", "callbackOnErrorDirections"];
35526
35461
  var Map$1 = /*#__PURE__*/forwardRef(function (_ref, ref) {
35527
35462
  var _mapRef$current;
35528
35463
 
@@ -35545,7 +35480,7 @@ var Map$1 = /*#__PURE__*/forwardRef(function (_ref, ref) {
35545
35480
  callbackOnSuccessDirections = _ref$callbackOnSucces === void 0 ? function () {} : _ref$callbackOnSucces,
35546
35481
  _ref$callbackOnErrorD = _ref.callbackOnErrorDirections,
35547
35482
  callbackOnErrorDirections = _ref$callbackOnErrorD === void 0 ? function () {} : _ref$callbackOnErrorD,
35548
- props = _objectWithoutProperties(_ref, _excluded);
35483
+ props = _objectWithoutProperties(_ref, _excluded$1);
35549
35484
 
35550
35485
  var _useJsApiLoader = useJsApiLoader({
35551
35486
  googleMapsApiKey: googleMapsApiKey,
@@ -35800,6 +35735,502 @@ var ProgressBar = function ProgressBar(_ref) {
35800
35735
  }));
35801
35736
  };
35802
35737
 
35738
+ var isProduction = "production" === 'production';
35739
+ function warning(condition, message) {
35740
+ if (!isProduction) {
35741
+ if (condition) {
35742
+ return;
35743
+ }
35744
+
35745
+ var text = "Warning: " + message;
35746
+
35747
+ if (typeof console !== 'undefined') {
35748
+ console.warn(text);
35749
+ }
35750
+
35751
+ try {
35752
+ throw Error(text);
35753
+ } catch (x) {}
35754
+ }
35755
+ }
35756
+
35757
+ var _excluded = ["duration", "easing", "onTransitionStateChange", "isExpanded", "defaultExpanded", "hasDisabledAnimation", "id"],
35758
+ _excluded2 = ["disabled", "onClick", "refKey"];
35759
+
35760
+ var CollapseError = /*#__PURE__*/function (_Error) {
35761
+ _inherits$2(CollapseError, _Error);
35762
+
35763
+ var _super = _createSuper(CollapseError);
35764
+
35765
+ function CollapseError(message) {
35766
+ _classCallCheck$2(this, CollapseError);
35767
+
35768
+ return _super.call(this, "react-collapsed: ".concat(message));
35769
+ }
35770
+
35771
+ return _createClass$2(CollapseError);
35772
+ }( /*#__PURE__*/_wrapNativeSuper(Error));
35773
+
35774
+ var collapseWarning = function collapseWarning() {
35775
+ return warning(arguments.length <= 0 ? undefined : arguments[0], "[react-collapsed] -- ".concat(arguments.length <= 1 ? undefined : arguments[1]));
35776
+ }; // src/utils/useEvent.ts
35777
+
35778
+ function useEvent(callback) {
35779
+ var ref = useRef(callback);
35780
+ useEffect(function () {
35781
+ ref.current = callback;
35782
+ });
35783
+ return useCallback(function () {
35784
+ var _ref$current;
35785
+
35786
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
35787
+ args[_key] = arguments[_key];
35788
+ }
35789
+
35790
+ return (_ref$current = ref.current) === null || _ref$current === void 0 ? void 0 : _ref$current.call.apply(_ref$current, [ref].concat(args));
35791
+ }, []);
35792
+ } // src/utils/useControlledState.ts
35793
+
35794
+ function useControlledState(value, defaultValue, callback) {
35795
+ var _useState = useState(defaultValue),
35796
+ _useState2 = _slicedToArray(_useState, 2),
35797
+ state = _useState2[0],
35798
+ setState = _useState2[1];
35799
+
35800
+ var initiallyControlled = useRef(typeof value !== "undefined");
35801
+ var effectiveValue = initiallyControlled.current ? value : state;
35802
+ var cb = useEvent(callback);
35803
+ var onChange = useCallback(function (update) {
35804
+ var setter = update;
35805
+ var newValue = typeof update === "function" ? setter(effectiveValue) : update;
35806
+
35807
+ if (!initiallyControlled.current) {
35808
+ setState(newValue);
35809
+ }
35810
+
35811
+ cb === null || cb === void 0 || cb(newValue);
35812
+ }, [cb, effectiveValue]);
35813
+ useEffect(function () {
35814
+ collapseWarning(!(initiallyControlled.current && value == null), "`isExpanded` state is changing from controlled to uncontrolled. useCollapse should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled collapse for the lifetime of the component. Check the `isExpanded` prop.");
35815
+ collapseWarning(!(!initiallyControlled.current && value != null), "`isExpanded` state is changing from uncontrolled to controlled. useCollapse should not switch from uncontrolled to controlled (or vice versa). Decide between using a controlled or uncontrolled collapse for the lifetime of the component. Check the `isExpanded` prop.");
35816
+ }, [value]);
35817
+ return [effectiveValue, onChange];
35818
+ } // src/utils/usePrefersReducedMotion.ts
35819
+ var QUERY = "(prefers-reduced-motion: reduce)";
35820
+
35821
+ function usePrefersReducedMotion() {
35822
+ var _useState3 = useState(false),
35823
+ _useState4 = _slicedToArray(_useState3, 2),
35824
+ prefersReducedMotion = _useState4[0],
35825
+ setPrefersReducedMotion = _useState4[1];
35826
+
35827
+ useEffect(function () {
35828
+ if (typeof window === "undefined" || typeof window.matchMedia !== "function") {
35829
+ return;
35830
+ }
35831
+
35832
+ var mediaQueryList = window.matchMedia(QUERY);
35833
+ setPrefersReducedMotion(mediaQueryList.matches);
35834
+
35835
+ var listener = function listener(event) {
35836
+ setPrefersReducedMotion(event.matches);
35837
+ };
35838
+
35839
+ if (mediaQueryList.addEventListener) {
35840
+ mediaQueryList.addEventListener("change", listener);
35841
+ return function () {
35842
+ mediaQueryList.removeEventListener("change", listener);
35843
+ };
35844
+ } else if (mediaQueryList.addListener) {
35845
+ mediaQueryList.addListener(listener);
35846
+ return function () {
35847
+ mediaQueryList.removeListener(listener);
35848
+ };
35849
+ }
35850
+
35851
+ return void 0;
35852
+ }, []);
35853
+ return prefersReducedMotion;
35854
+ } // src/utils/useId.ts
35855
+
35856
+ var __useId = React["useId".toString()] || function () {
35857
+ return void 0;
35858
+ };
35859
+
35860
+ function useReactId() {
35861
+ var id2 = __useId();
35862
+
35863
+ return id2 !== null && id2 !== void 0 ? id2 : "";
35864
+ }
35865
+
35866
+ var useIsomorphicLayoutEffect = typeof window !== "undefined" ? React.useLayoutEffect : React.useEffect;
35867
+ var serverHandoffComplete = false;
35868
+ var id = 0;
35869
+
35870
+ var genId = function genId() {
35871
+ return ++id;
35872
+ };
35873
+
35874
+ function useUniqueId(idFromProps) {
35875
+ var initialId = idFromProps || (serverHandoffComplete ? genId() : null);
35876
+
35877
+ var _React$useState = React.useState(initialId),
35878
+ _React$useState2 = _slicedToArray(_React$useState, 2),
35879
+ id2 = _React$useState2[0],
35880
+ setId = _React$useState2[1];
35881
+
35882
+ useIsomorphicLayoutEffect(function () {
35883
+ if (id2 === null) {
35884
+ setId(genId());
35885
+ }
35886
+ }, []);
35887
+ React.useEffect(function () {
35888
+ if (serverHandoffComplete === false) {
35889
+ serverHandoffComplete = true;
35890
+ }
35891
+ }, []);
35892
+ return id2 != null ? String(id2) : void 0;
35893
+ }
35894
+
35895
+ function useId(idOverride) {
35896
+ var reactId = useReactId();
35897
+ var uniqueId = useUniqueId(idOverride);
35898
+
35899
+ if (typeof idOverride === "string") {
35900
+ return idOverride;
35901
+ }
35902
+
35903
+ if (typeof reactId === "string") {
35904
+ return reactId;
35905
+ }
35906
+
35907
+ return uniqueId;
35908
+ } // src/utils/setAnimationTimeout.ts
35909
+
35910
+
35911
+ function setAnimationTimeout(callback, timeout) {
35912
+ var startTime = performance.now();
35913
+ var frame = {};
35914
+
35915
+ function call() {
35916
+ frame.id = requestAnimationFrame(function (now) {
35917
+ if (now - startTime > timeout) {
35918
+ callback();
35919
+ } else {
35920
+ call();
35921
+ }
35922
+ });
35923
+ }
35924
+
35925
+ call();
35926
+ return frame;
35927
+ }
35928
+
35929
+ function clearAnimationTimeout(frame) {
35930
+ if (frame.id) cancelAnimationFrame(frame.id);
35931
+ } // src/utils/index.ts
35932
+
35933
+
35934
+ function getElementHeight(el) {
35935
+ if (!(el !== null && el !== void 0 && el.current)) {
35936
+ collapseWarning(true, "Was not able to find a ref to the collapse element via `getCollapseProps`. Ensure that the element exposes its `ref` prop. If it exposes the ref prop under a different name (like `innerRef`), use the `refKey` property to change it. Example:\n\nconst collapseProps = getCollapseProps({refKey: 'innerRef'})");
35937
+ return 0;
35938
+ }
35939
+
35940
+ return el.current.scrollHeight;
35941
+ }
35942
+
35943
+ function getAutoHeightDuration(height) {
35944
+ if (!height || typeof height === "string") {
35945
+ return 0;
35946
+ }
35947
+
35948
+ var constant = height / 36;
35949
+ return Math.round((4 + 15 * Math.pow(constant, 0.25) + constant / 5) * 10);
35950
+ }
35951
+
35952
+ function assignRef(ref, value) {
35953
+ if (ref == null) return;
35954
+
35955
+ if (typeof ref === "function") {
35956
+ ref(value);
35957
+ } else {
35958
+ try {
35959
+ ref.current = value;
35960
+ } catch (error) {
35961
+ throw new CollapseError("Cannot assign value \"".concat(value, "\" to ref \"").concat(ref, "\""));
35962
+ }
35963
+ }
35964
+ }
35965
+
35966
+ function mergeRefs() {
35967
+ for (var _len2 = arguments.length, refs = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
35968
+ refs[_key2] = arguments[_key2];
35969
+ }
35970
+
35971
+ if (refs.every(function (ref) {
35972
+ return ref == null;
35973
+ })) {
35974
+ return null;
35975
+ }
35976
+
35977
+ return function (node) {
35978
+ refs.forEach(function (ref) {
35979
+ assignRef(ref, node);
35980
+ });
35981
+ };
35982
+ }
35983
+
35984
+ function usePaddingWarning(element) {
35985
+ var warn = function warn(el) {};
35986
+
35987
+ {
35988
+ warn = function warn(el) {
35989
+ if (!(el !== null && el !== void 0 && el.current)) {
35990
+ return;
35991
+ }
35992
+
35993
+ var _window$getComputedSt = window.getComputedStyle(el.current),
35994
+ paddingTop = _window$getComputedSt.paddingTop,
35995
+ paddingBottom = _window$getComputedSt.paddingBottom;
35996
+
35997
+ var hasPadding = paddingTop && paddingTop !== "0px" || paddingBottom && paddingBottom !== "0px";
35998
+ collapseWarning(!hasPadding, "Padding applied to the collapse element will cause the animation to break and not perform as expected. To fix, apply equivalent padding to the direct descendent of the collapse element. Example:\n\nBefore: <div {...getCollapseProps({style: {padding: 10}})}>{children}</div>\n\nAfter: <div {...getCollapseProps()}>\n <div style={{padding: 10}}>\n {children}\n </div>\n </div>");
35999
+ };
36000
+ }
36001
+
36002
+ useEffect(function () {
36003
+ warn(element);
36004
+ }, [element]);
36005
+ } // src/index.ts
36006
+
36007
+
36008
+ var useLayoutEffect2 = typeof window === "undefined" ? useEffect : useLayoutEffect;
36009
+
36010
+ function useCollapse() {
36011
+ var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
36012
+ duration = _ref.duration,
36013
+ _ref$easing = _ref.easing,
36014
+ easing = _ref$easing === void 0 ? "cubic-bezier(0.4, 0, 0.2, 1)" : _ref$easing,
36015
+ _ref$onTransitionStat = _ref.onTransitionStateChange,
36016
+ propOnTransitionStateChange = _ref$onTransitionStat === void 0 ? function () {} : _ref$onTransitionStat,
36017
+ configIsExpanded = _ref.isExpanded,
36018
+ _ref$defaultExpanded = _ref.defaultExpanded,
36019
+ defaultExpanded = _ref$defaultExpanded === void 0 ? false : _ref$defaultExpanded,
36020
+ hasDisabledAnimation = _ref.hasDisabledAnimation,
36021
+ id2 = _ref.id,
36022
+ initialConfig = _objectWithoutProperties(_ref, _excluded);
36023
+
36024
+ var onTransitionStateChange = useEvent(propOnTransitionStateChange);
36025
+ var uniqueId = useId(id2 ? "".concat(id2) : void 0);
36026
+
36027
+ var _useControlledState = useControlledState(configIsExpanded, defaultExpanded),
36028
+ _useControlledState2 = _slicedToArray(_useControlledState, 2),
36029
+ isExpanded = _useControlledState2[0],
36030
+ setExpanded = _useControlledState2[1];
36031
+
36032
+ var prevExpanded = useRef(isExpanded);
36033
+
36034
+ var _useState5 = useState(false),
36035
+ _useState6 = _slicedToArray(_useState5, 2),
36036
+ isAnimating = _useState6[0],
36037
+ setIsAnimating = _useState6[1];
36038
+
36039
+ var prefersReducedMotion = usePrefersReducedMotion();
36040
+ var disableAnimation = hasDisabledAnimation !== null && hasDisabledAnimation !== void 0 ? hasDisabledAnimation : prefersReducedMotion;
36041
+ var frameId = useRef();
36042
+ var endFrameId = useRef();
36043
+ var collapseElRef = useRef(null);
36044
+
36045
+ var _useState7 = useState(null),
36046
+ _useState8 = _slicedToArray(_useState7, 2),
36047
+ toggleEl = _useState8[0],
36048
+ setToggleEl = _useState8[1];
36049
+
36050
+ usePaddingWarning(collapseElRef);
36051
+ var collapsedHeight = "".concat(initialConfig.collapsedHeight || 0, "px");
36052
+
36053
+ function setStyles(newStyles) {
36054
+ if (!collapseElRef.current) return;
36055
+ var target = collapseElRef.current;
36056
+
36057
+ for (var property in newStyles) {
36058
+ var value = newStyles[property];
36059
+
36060
+ if (value) {
36061
+ target.style[property] = value;
36062
+ } else {
36063
+ target.style.removeProperty(property);
36064
+ }
36065
+ }
36066
+ }
36067
+
36068
+ useLayoutEffect2(function () {
36069
+ var collapse = collapseElRef.current;
36070
+ if (!collapse) return;
36071
+ if (isExpanded === prevExpanded.current) return;
36072
+ prevExpanded.current = isExpanded;
36073
+
36074
+ function getDuration(height) {
36075
+ if (disableAnimation) {
36076
+ return 0;
36077
+ }
36078
+
36079
+ return duration !== null && duration !== void 0 ? duration : getAutoHeightDuration(height);
36080
+ }
36081
+
36082
+ var getTransitionStyles = function getTransitionStyles(height) {
36083
+ return "height ".concat(getDuration(height), "ms ").concat(easing);
36084
+ };
36085
+
36086
+ var setTransitionEndTimeout = function setTransitionEndTimeout(duration2) {
36087
+ function endTransition() {
36088
+ if (isExpanded) {
36089
+ setStyles({
36090
+ height: "",
36091
+ overflow: "",
36092
+ transition: "",
36093
+ display: ""
36094
+ });
36095
+ onTransitionStateChange("expandEnd");
36096
+ } else {
36097
+ setStyles({
36098
+ transition: ""
36099
+ });
36100
+ onTransitionStateChange("collapseEnd");
36101
+ }
36102
+
36103
+ setIsAnimating(false);
36104
+ }
36105
+
36106
+ if (endFrameId.current) {
36107
+ clearAnimationTimeout(endFrameId.current);
36108
+ }
36109
+
36110
+ endFrameId.current = setAnimationTimeout(endTransition, duration2);
36111
+ };
36112
+
36113
+ setIsAnimating(true);
36114
+
36115
+ if (isExpanded) {
36116
+ frameId.current = requestAnimationFrame(function () {
36117
+ onTransitionStateChange("expandStart");
36118
+ setStyles({
36119
+ display: "block",
36120
+ overflow: "hidden",
36121
+ height: collapsedHeight
36122
+ });
36123
+ frameId.current = requestAnimationFrame(function () {
36124
+ onTransitionStateChange("expanding");
36125
+ var height = getElementHeight(collapseElRef);
36126
+ setTransitionEndTimeout(getDuration(height));
36127
+
36128
+ if (collapseElRef.current) {
36129
+ collapseElRef.current.style.transition = getTransitionStyles(height);
36130
+ collapseElRef.current.style.height = "".concat(height, "px");
36131
+ }
36132
+ });
36133
+ });
36134
+ } else {
36135
+ frameId.current = requestAnimationFrame(function () {
36136
+ onTransitionStateChange("collapseStart");
36137
+ var height = getElementHeight(collapseElRef);
36138
+ setTransitionEndTimeout(getDuration(height));
36139
+ setStyles({
36140
+ transition: getTransitionStyles(height),
36141
+ height: "".concat(height, "px")
36142
+ });
36143
+ frameId.current = requestAnimationFrame(function () {
36144
+ onTransitionStateChange("collapsing");
36145
+ setStyles({
36146
+ height: collapsedHeight,
36147
+ overflow: "hidden"
36148
+ });
36149
+ });
36150
+ });
36151
+ }
36152
+
36153
+ return function () {
36154
+ if (frameId.current) cancelAnimationFrame(frameId.current);
36155
+ if (endFrameId.current) clearAnimationTimeout(endFrameId.current);
36156
+ };
36157
+ }, [isExpanded, collapsedHeight, disableAnimation, duration, easing, onTransitionStateChange]);
36158
+ return {
36159
+ isExpanded: isExpanded,
36160
+ setExpanded: setExpanded,
36161
+ getToggleProps: function getToggleProps(args) {
36162
+ var _refKey$onClick$disab = _objectSpread2({
36163
+ refKey: "ref",
36164
+ onClick: function onClick() {},
36165
+ disabled: false
36166
+ }, args),
36167
+ disabled = _refKey$onClick$disab.disabled,
36168
+ _onClick = _refKey$onClick$disab.onClick,
36169
+ refKey = _refKey$onClick$disab.refKey,
36170
+ rest = _objectWithoutProperties(_refKey$onClick$disab, _excluded2);
36171
+
36172
+ var isButton = toggleEl ? toggleEl.tagName === "BUTTON" : void 0;
36173
+ var theirRef = args === null || args === void 0 ? void 0 : args[refKey || "ref"];
36174
+
36175
+ var props = _defineProperty({
36176
+ id: "react-collapsed-toggle-".concat(uniqueId),
36177
+ "aria-controls": "react-collapsed-panel-".concat(uniqueId),
36178
+ "aria-expanded": isExpanded,
36179
+ onClick: function onClick(evt) {
36180
+ if (disabled) return;
36181
+ _onClick === null || _onClick === void 0 || _onClick(evt);
36182
+ setExpanded(function (n) {
36183
+ return !n;
36184
+ });
36185
+ }
36186
+ }, refKey || "ref", mergeRefs(theirRef, setToggleEl));
36187
+
36188
+ var buttonProps = {
36189
+ type: "button",
36190
+ disabled: disabled ? true : void 0
36191
+ };
36192
+ var fakeButtonProps = {
36193
+ "aria-disabled": disabled ? true : void 0,
36194
+ role: "button",
36195
+ tabIndex: disabled ? -1 : 0
36196
+ };
36197
+
36198
+ if (isButton === false) {
36199
+ return _objectSpread2(_objectSpread2(_objectSpread2({}, props), fakeButtonProps), rest);
36200
+ } else if (isButton === true) {
36201
+ return _objectSpread2(_objectSpread2(_objectSpread2({}, props), buttonProps), rest);
36202
+ } else {
36203
+ return _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({}, props), buttonProps), fakeButtonProps), rest);
36204
+ }
36205
+ },
36206
+ getCollapseProps: function getCollapseProps(args) {
36207
+ var _objectSpread2$1;
36208
+
36209
+ var _refKey$style$args = _objectSpread2({
36210
+ refKey: "ref",
36211
+ style: {}
36212
+ }, args),
36213
+ style = _refKey$style$args.style,
36214
+ refKey = _refKey$style$args.refKey;
36215
+
36216
+ var theirRef = args === null || args === void 0 ? void 0 : args[refKey || "ref"];
36217
+ return _objectSpread2(_objectSpread2({
36218
+ id: "react-collapsed-panel-".concat(uniqueId),
36219
+ "aria-hidden": !isExpanded,
36220
+ "aria-labelledby": "react-collapsed-toggle-".concat(uniqueId),
36221
+ role: "region"
36222
+ }, args), {}, (_objectSpread2$1 = {}, _defineProperty(_objectSpread2$1, refKey || "ref", mergeRefs(collapseElRef, theirRef)), _defineProperty(_objectSpread2$1, "style", _objectSpread2(_objectSpread2({
36223
+ boxSizing: "border-box"
36224
+ }, !isAnimating && !isExpanded ? {
36225
+ // collapsed and not animating
36226
+ display: collapsedHeight === "0px" ? "none" : "block",
36227
+ height: collapsedHeight,
36228
+ overflow: "hidden"
36229
+ } : {}), style)), _objectSpread2$1));
36230
+ }
36231
+ };
36232
+ }
36233
+
35803
36234
  var Wrapper = styled$j.div.withConfig({
35804
36235
  displayName: "styles__Wrapper",
35805
36236
  componentId: "sc-mlx2bu-0"