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