@spothero/ui 14.7.2 → 14.7.4

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.
@@ -32231,10 +32231,10 @@ var createPropertyDescriptor = function (bitmap, value) {
32231
32231
  };
32232
32232
 
32233
32233
  var toString$1 = functionUncurryThis({}.toString);
32234
- var stringSlice = functionUncurryThis(''.slice);
32234
+ var stringSlice$1 = functionUncurryThis(''.slice);
32235
32235
 
32236
32236
  var classofRaw = function (it) {
32237
- return stringSlice(toString$1(it), 8, -1);
32237
+ return stringSlice$1(toString$1(it), 8, -1);
32238
32238
  };
32239
32239
 
32240
32240
  var Object$5 = global_1.Object;
@@ -32249,12 +32249,12 @@ var indexedObject = fails(function () {
32249
32249
  return classofRaw(it) == 'String' ? split(it, '') : Object$5(it);
32250
32250
  } : Object$5;
32251
32251
 
32252
- var TypeError$a = global_1.TypeError;
32252
+ var TypeError$d = global_1.TypeError;
32253
32253
 
32254
32254
  // `RequireObjectCoercible` abstract operation
32255
32255
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
32256
32256
  var requireObjectCoercible = function (it) {
32257
- if (it == undefined) throw TypeError$a("Can't call method on " + it);
32257
+ if (it == undefined) throw TypeError$d("Can't call method on " + it);
32258
32258
  return it;
32259
32259
  };
32260
32260
 
@@ -32350,12 +32350,12 @@ var tryToString = function (argument) {
32350
32350
  }
32351
32351
  };
32352
32352
 
32353
- var TypeError$9 = global_1.TypeError;
32353
+ var TypeError$c = global_1.TypeError;
32354
32354
 
32355
32355
  // `Assert: IsCallable(argument) is true`
32356
32356
  var aCallable = function (argument) {
32357
32357
  if (isCallable(argument)) return argument;
32358
- throw TypeError$9(tryToString(argument) + ' is not a function');
32358
+ throw TypeError$c(tryToString(argument) + ' is not a function');
32359
32359
  };
32360
32360
 
32361
32361
  // `GetMethod` abstract operation
@@ -32365,7 +32365,7 @@ var getMethod = function (V, P) {
32365
32365
  return func == null ? undefined : aCallable(func);
32366
32366
  };
32367
32367
 
32368
- var TypeError$8 = global_1.TypeError;
32368
+ var TypeError$b = global_1.TypeError;
32369
32369
 
32370
32370
  // `OrdinaryToPrimitive` abstract operation
32371
32371
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
@@ -32374,15 +32374,15 @@ var ordinaryToPrimitive = function (input, pref) {
32374
32374
  if (pref === 'string' && isCallable(fn = input.toString) && !isObject$1(val = functionCall(fn, input))) return val;
32375
32375
  if (isCallable(fn = input.valueOf) && !isObject$1(val = functionCall(fn, input))) return val;
32376
32376
  if (pref !== 'string' && isCallable(fn = input.toString) && !isObject$1(val = functionCall(fn, input))) return val;
32377
- throw TypeError$8("Can't convert object to primitive value");
32377
+ throw TypeError$b("Can't convert object to primitive value");
32378
32378
  };
32379
32379
 
32380
32380
  // eslint-disable-next-line es-x/no-object-defineproperty -- safe
32381
- var defineProperty$a = Object.defineProperty;
32381
+ var defineProperty$b = Object.defineProperty;
32382
32382
 
32383
32383
  var setGlobal = function (key, value) {
32384
32384
  try {
32385
- defineProperty$a(global_1, key, { value: value, configurable: true, writable: true });
32385
+ defineProperty$b(global_1, key, { value: value, configurable: true, writable: true });
32386
32386
  } catch (error) {
32387
32387
  global_1[key] = value;
32388
32388
  } return value;
@@ -32422,12 +32422,12 @@ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
32422
32422
  return hasOwnProperty(toObject(it), key);
32423
32423
  };
32424
32424
 
32425
- var id = 0;
32425
+ var id$1 = 0;
32426
32426
  var postfix = Math.random();
32427
32427
  var toString = functionUncurryThis(1.0.toString);
32428
32428
 
32429
32429
  var uid = function (key) {
32430
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
32430
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id$1 + postfix, 36);
32431
32431
  };
32432
32432
 
32433
32433
  var WellKnownSymbolsStore$1 = shared('wks');
@@ -32448,7 +32448,7 @@ var wellKnownSymbol = function (name) {
32448
32448
  } return WellKnownSymbolsStore$1[name];
32449
32449
  };
32450
32450
 
32451
- var TypeError$7 = global_1.TypeError;
32451
+ var TypeError$a = global_1.TypeError;
32452
32452
  var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
32453
32453
 
32454
32454
  // `ToPrimitive` abstract operation
@@ -32461,7 +32461,7 @@ var toPrimitive = function (input, pref) {
32461
32461
  if (pref === undefined) pref = 'default';
32462
32462
  result = functionCall(exoticToPrim, input, pref);
32463
32463
  if (!isObject$1(result) || isSymbol(result)) return result;
32464
- throw TypeError$7("Can't convert object to primitive value");
32464
+ throw TypeError$a("Can't convert object to primitive value");
32465
32465
  }
32466
32466
  if (pref === undefined) pref = 'number';
32467
32467
  return ordinaryToPrimitive(input, pref);
@@ -32549,15 +32549,15 @@ var v8PrototypeDefineBug = descriptors && fails(function () {
32549
32549
  });
32550
32550
 
32551
32551
  var String$3 = global_1.String;
32552
- var TypeError$6 = global_1.TypeError;
32552
+ var TypeError$9 = global_1.TypeError;
32553
32553
 
32554
32554
  // `Assert: Type(argument) is Object`
32555
32555
  var anObject = function (argument) {
32556
32556
  if (isObject$1(argument)) return argument;
32557
- throw TypeError$6(String$3(argument) + ' is not an object');
32557
+ throw TypeError$9(String$3(argument) + ' is not an object');
32558
32558
  };
32559
32559
 
32560
- var TypeError$5 = global_1.TypeError;
32560
+ var TypeError$8 = global_1.TypeError;
32561
32561
  // eslint-disable-next-line es-x/no-object-defineproperty -- safe
32562
32562
  var $defineProperty$1 = Object.defineProperty;
32563
32563
  // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
@@ -32590,7 +32590,7 @@ var f$5 = descriptors ? v8PrototypeDefineBug ? function defineProperty(O, P, Att
32590
32590
  if (ie8DomDefine) try {
32591
32591
  return $defineProperty$1(O, P, Attributes);
32592
32592
  } catch (error) { /* empty */ }
32593
- if ('get' in Attributes || 'set' in Attributes) throw TypeError$5('Accessors not supported');
32593
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError$8('Accessors not supported');
32594
32594
  if ('value' in Attributes) O[P] = Attributes.value;
32595
32595
  return O;
32596
32596
  };
@@ -32704,13 +32704,13 @@ var _export = function (options, source) {
32704
32704
  }
32705
32705
  };
32706
32706
 
32707
- var defineProperty$9 = objectDefineProperty.f;
32707
+ var defineProperty$a = objectDefineProperty.f;
32708
32708
 
32709
32709
  // `Object.defineProperty` method
32710
32710
  // https://tc39.es/ecma262/#sec-object.defineproperty
32711
32711
  // eslint-disable-next-line es-x/no-object-defineproperty -- safe
32712
- _export({ target: 'Object', stat: true, forced: Object.defineProperty !== defineProperty$9, sham: !descriptors }, {
32713
- defineProperty: defineProperty$9
32712
+ _export({ target: 'Object', stat: true, forced: Object.defineProperty !== defineProperty$a, sham: !descriptors }, {
32713
+ defineProperty: defineProperty$a
32714
32714
  });
32715
32715
 
32716
32716
  var defineProperty_1 = createCommonjsModule(function (module) {
@@ -32723,9 +32723,9 @@ var defineProperty = module.exports = function defineProperty(it, key, desc) {
32723
32723
  if (Object.defineProperty.sham) defineProperty.sham = true;
32724
32724
  });
32725
32725
 
32726
- var defineProperty$8 = defineProperty_1;
32726
+ var defineProperty$9 = defineProperty_1;
32727
32727
 
32728
- var defineProperty$7 = defineProperty$8;
32728
+ var defineProperty$8 = defineProperty$9;
32729
32729
 
32730
32730
  var ceil = Math.ceil;
32731
32731
  var floor = Math.floor;
@@ -32764,7 +32764,7 @@ var lengthOfArrayLike = function (obj) {
32764
32764
  };
32765
32765
 
32766
32766
  // `Array.prototype.{ indexOf, includes }` methods implementation
32767
- var createMethod$1 = function (IS_INCLUDES) {
32767
+ var createMethod$2 = function (IS_INCLUDES) {
32768
32768
  return function ($this, el, fromIndex) {
32769
32769
  var O = toIndexedObject($this);
32770
32770
  var length = lengthOfArrayLike(O);
@@ -32786,10 +32786,10 @@ var createMethod$1 = function (IS_INCLUDES) {
32786
32786
  var arrayIncludes = {
32787
32787
  // `Array.prototype.includes` method
32788
32788
  // https://tc39.es/ecma262/#sec-array.prototype.includes
32789
- includes: createMethod$1(true),
32789
+ includes: createMethod$2(true),
32790
32790
  // `Array.prototype.indexOf` method
32791
32791
  // https://tc39.es/ecma262/#sec-array.prototype.indexof
32792
- indexOf: createMethod$1(false)
32792
+ indexOf: createMethod$2(false)
32793
32793
  };
32794
32794
 
32795
32795
  var hiddenKeys$1 = {};
@@ -32930,6 +32930,8 @@ var getOwnPropertyDescriptors$1 = getOwnPropertyDescriptors$2;
32930
32930
 
32931
32931
  var getOwnPropertyDescriptors = getOwnPropertyDescriptors$1;
32932
32932
 
32933
+ var iterators = {};
32934
+
32933
32935
  var functionToString = functionUncurryThis(Function.toString);
32934
32936
 
32935
32937
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
@@ -32952,7 +32954,7 @@ var sharedKey = function (key) {
32952
32954
  };
32953
32955
 
32954
32956
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
32955
- var TypeError$4 = global_1.TypeError;
32957
+ var TypeError$7 = global_1.TypeError;
32956
32958
  var WeakMap$1 = global_1.WeakMap;
32957
32959
  var set, get, has;
32958
32960
 
@@ -32964,7 +32966,7 @@ var getterFor = function (TYPE) {
32964
32966
  return function (it) {
32965
32967
  var state;
32966
32968
  if (!isObject$1(it) || (state = get(it)).type !== TYPE) {
32967
- throw TypeError$4('Incompatible receiver, ' + TYPE + ' required');
32969
+ throw TypeError$7('Incompatible receiver, ' + TYPE + ' required');
32968
32970
  } return state;
32969
32971
  };
32970
32972
  };
@@ -32975,7 +32977,7 @@ if (nativeWeakMap || sharedStore.state) {
32975
32977
  var wmhas = functionUncurryThis(store.has);
32976
32978
  var wmset = functionUncurryThis(store.set);
32977
32979
  set = function (it, metadata) {
32978
- if (wmhas(store, it)) throw new TypeError$4(OBJECT_ALREADY_INITIALIZED);
32980
+ if (wmhas(store, it)) throw new TypeError$7(OBJECT_ALREADY_INITIALIZED);
32979
32981
  metadata.facade = it;
32980
32982
  wmset(store, it, metadata);
32981
32983
  return metadata;
@@ -32990,7 +32992,7 @@ if (nativeWeakMap || sharedStore.state) {
32990
32992
  var STATE = sharedKey('state');
32991
32993
  hiddenKeys$1[STATE] = true;
32992
32994
  set = function (it, metadata) {
32993
- if (hasOwnProperty_1(it, STATE)) throw new TypeError$4(OBJECT_ALREADY_INITIALIZED);
32995
+ if (hasOwnProperty_1(it, STATE)) throw new TypeError$7(OBJECT_ALREADY_INITIALIZED);
32994
32996
  metadata.facade = it;
32995
32997
  createNonEnumerableProperty(it, STATE, metadata);
32996
32998
  return metadata;
@@ -33139,7 +33141,7 @@ var redefine = function (target, key, value, options) {
33139
33141
  else createNonEnumerableProperty(target, key, value);
33140
33142
  };
33141
33143
 
33142
- var ITERATOR$1 = wellKnownSymbol('iterator');
33144
+ var ITERATOR$3 = wellKnownSymbol('iterator');
33143
33145
  var BUGGY_SAFARI_ITERATORS$1 = false;
33144
33146
 
33145
33147
  // `%IteratorPrototype%` object
@@ -33160,7 +33162,7 @@ if ([].keys) {
33160
33162
  var NEW_ITERATOR_PROTOTYPE = IteratorPrototype$1 == undefined || fails(function () {
33161
33163
  var test = {};
33162
33164
  // FF44- legacy iterators case
33163
- return IteratorPrototype$1[ITERATOR$1].call(test) !== test;
33165
+ return IteratorPrototype$1[ITERATOR$3].call(test) !== test;
33164
33166
  });
33165
33167
 
33166
33168
  if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype$1 = {};
@@ -33168,8 +33170,8 @@ else IteratorPrototype$1 = objectCreate(IteratorPrototype$1);
33168
33170
 
33169
33171
  // `%IteratorPrototype%[@@iterator]()` method
33170
33172
  // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
33171
- if (!isCallable(IteratorPrototype$1[ITERATOR$1])) {
33172
- redefine(IteratorPrototype$1, ITERATOR$1, function () {
33173
+ if (!isCallable(IteratorPrototype$1[ITERATOR$3])) {
33174
+ redefine(IteratorPrototype$1, ITERATOR$3, function () {
33173
33175
  return this;
33174
33176
  });
33175
33177
  }
@@ -33217,7 +33219,7 @@ var objectToString = toStringTagSupport ? {}.toString : function toString() {
33217
33219
  return '[object ' + classof(this) + ']';
33218
33220
  };
33219
33221
 
33220
- var defineProperty$6 = objectDefineProperty.f;
33222
+ var defineProperty$7 = objectDefineProperty.f;
33221
33223
 
33222
33224
 
33223
33225
 
@@ -33229,7 +33231,7 @@ var setToStringTag = function (it, TAG, STATIC, SET_METHOD) {
33229
33231
  if (it) {
33230
33232
  var target = STATIC ? it : it.prototype;
33231
33233
  if (!hasOwnProperty_1(target, TO_STRING_TAG$1)) {
33232
- defineProperty$6(target, TO_STRING_TAG$1, { configurable: true, value: TAG });
33234
+ defineProperty$7(target, TO_STRING_TAG$1, { configurable: true, value: TAG });
33233
33235
  }
33234
33236
  if (SET_METHOD && !toStringTagSupport) {
33235
33237
  createNonEnumerableProperty(target, 'toString', objectToString);
@@ -33239,19 +33241,26 @@ var setToStringTag = function (it, TAG, STATIC, SET_METHOD) {
33239
33241
 
33240
33242
  var IteratorPrototype = iteratorsCore.IteratorPrototype;
33241
33243
 
33244
+
33245
+
33246
+
33247
+
33248
+ var returnThis$1 = function () { return this; };
33249
+
33242
33250
  var createIteratorConstructor = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
33243
33251
  var TO_STRING_TAG = NAME + ' Iterator';
33244
33252
  IteratorConstructor.prototype = objectCreate(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
33245
33253
  setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
33254
+ iterators[TO_STRING_TAG] = returnThis$1;
33246
33255
  return IteratorConstructor;
33247
33256
  };
33248
33257
 
33249
33258
  var String$2 = global_1.String;
33250
- var TypeError$3 = global_1.TypeError;
33259
+ var TypeError$6 = global_1.TypeError;
33251
33260
 
33252
33261
  var aPossiblePrototype = function (argument) {
33253
33262
  if (typeof argument == 'object' || isCallable(argument)) return argument;
33254
- throw TypeError$3("Can't set " + String$2(argument) + ' as a prototype');
33263
+ throw TypeError$6("Can't set " + String$2(argument) + ' as a prototype');
33255
33264
  };
33256
33265
 
33257
33266
  /* eslint-disable no-proto -- safe */
@@ -33284,11 +33293,13 @@ Object.setPrototypeOf || ('__proto__' in {} ? function () {
33284
33293
 
33285
33294
  var PROPER_FUNCTION_NAME = functionName.PROPER;
33286
33295
  var BUGGY_SAFARI_ITERATORS = iteratorsCore.BUGGY_SAFARI_ITERATORS;
33287
- var ITERATOR = wellKnownSymbol('iterator');
33296
+ var ITERATOR$2 = wellKnownSymbol('iterator');
33288
33297
  var KEYS = 'keys';
33289
33298
  var VALUES = 'values';
33290
33299
  var ENTRIES = 'entries';
33291
33300
 
33301
+ var returnThis = function () { return this; };
33302
+
33292
33303
  var defineIterator = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
33293
33304
  createIteratorConstructor(IteratorConstructor, NAME, next);
33294
33305
 
@@ -33305,7 +33316,7 @@ var defineIterator = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
33305
33316
  var TO_STRING_TAG = NAME + ' Iterator';
33306
33317
  var INCORRECT_VALUES_NAME = false;
33307
33318
  var IterablePrototype = Iterable.prototype;
33308
- var nativeIterator = IterablePrototype[ITERATOR]
33319
+ var nativeIterator = IterablePrototype[ITERATOR$2]
33309
33320
  || IterablePrototype['@@iterator']
33310
33321
  || DEFAULT && IterablePrototype[DEFAULT];
33311
33322
  var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
@@ -33318,6 +33329,7 @@ var defineIterator = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
33318
33329
  if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
33319
33330
  // Set @@toStringTag to native iterators
33320
33331
  setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);
33332
+ iterators[TO_STRING_TAG] = returnThis;
33321
33333
  }
33322
33334
  }
33323
33335
 
@@ -33344,16 +33356,17 @@ var defineIterator = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
33344
33356
  }
33345
33357
 
33346
33358
  // define iterator
33347
- if ((FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {
33348
- redefine(IterablePrototype, ITERATOR, defaultIterator, { name: DEFAULT });
33359
+ if ((FORCED) && IterablePrototype[ITERATOR$2] !== defaultIterator) {
33360
+ redefine(IterablePrototype, ITERATOR$2, defaultIterator, { name: DEFAULT });
33349
33361
  }
33362
+ iterators[NAME] = defaultIterator;
33350
33363
 
33351
33364
  return methods;
33352
33365
  };
33353
33366
 
33354
33367
  var ARRAY_ITERATOR = 'Array Iterator';
33355
- var setInternalState$1 = internalState.set;
33356
- var getInternalState$1 = internalState.getterFor(ARRAY_ITERATOR);
33368
+ var setInternalState$4 = internalState.set;
33369
+ var getInternalState$2 = internalState.getterFor(ARRAY_ITERATOR);
33357
33370
 
33358
33371
  // `Array.prototype.entries` method
33359
33372
  // https://tc39.es/ecma262/#sec-array.prototype.entries
@@ -33366,7 +33379,7 @@ var getInternalState$1 = internalState.getterFor(ARRAY_ITERATOR);
33366
33379
  // `CreateArrayIterator` internal method
33367
33380
  // https://tc39.es/ecma262/#sec-createarrayiterator
33368
33381
  defineIterator(Array, 'Array', function (iterated, kind) {
33369
- setInternalState$1(this, {
33382
+ setInternalState$4(this, {
33370
33383
  type: ARRAY_ITERATOR,
33371
33384
  target: toIndexedObject(iterated), // target
33372
33385
  index: 0, // next index
@@ -33375,7 +33388,7 @@ defineIterator(Array, 'Array', function (iterated, kind) {
33375
33388
  // `%ArrayIteratorPrototype%.next` method
33376
33389
  // https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next
33377
33390
  }, function () {
33378
- var state = getInternalState$1(this);
33391
+ var state = getInternalState$2(this);
33379
33392
  var target = state.target;
33380
33393
  var kind = state.kind;
33381
33394
  var index = state.index++;
@@ -33388,6 +33401,11 @@ defineIterator(Array, 'Array', function (iterated, kind) {
33388
33401
  return { value: [index, target[index]], done: false };
33389
33402
  }, 'values');
33390
33403
 
33404
+ // argumentsList[@@iterator] is %ArrayProto_values%
33405
+ // https://tc39.es/ecma262/#sec-createunmappedargumentsobject
33406
+ // https://tc39.es/ecma262/#sec-createmappedargumentsobject
33407
+ iterators.Arguments = iterators.Array;
33408
+
33391
33409
  // iterable DOM collections
33392
33410
  // flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
33393
33411
  var domIterables = {
@@ -33432,6 +33450,7 @@ for (var COLLECTION_NAME in domIterables) {
33432
33450
  if (CollectionPrototype && classof(CollectionPrototype) !== TO_STRING_TAG) {
33433
33451
  createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);
33434
33452
  }
33453
+ iterators[COLLECTION_NAME] = iterators.Array;
33435
33454
  }
33436
33455
 
33437
33456
  // `IsArray` abstract operation
@@ -33514,7 +33533,7 @@ var arraySpeciesCreate = function (originalArray, length) {
33514
33533
  var push$1 = functionUncurryThis([].push);
33515
33534
 
33516
33535
  // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
33517
- var createMethod = function (TYPE) {
33536
+ var createMethod$1 = function (TYPE) {
33518
33537
  var IS_MAP = TYPE == 1;
33519
33538
  var IS_FILTER = TYPE == 2;
33520
33539
  var IS_SOME = TYPE == 3;
@@ -33554,28 +33573,28 @@ var createMethod = function (TYPE) {
33554
33573
  var arrayIteration = {
33555
33574
  // `Array.prototype.forEach` method
33556
33575
  // https://tc39.es/ecma262/#sec-array.prototype.foreach
33557
- forEach: createMethod(0),
33576
+ forEach: createMethod$1(0),
33558
33577
  // `Array.prototype.map` method
33559
33578
  // https://tc39.es/ecma262/#sec-array.prototype.map
33560
- map: createMethod(1),
33579
+ map: createMethod$1(1),
33561
33580
  // `Array.prototype.filter` method
33562
33581
  // https://tc39.es/ecma262/#sec-array.prototype.filter
33563
- filter: createMethod(2),
33582
+ filter: createMethod$1(2),
33564
33583
  // `Array.prototype.some` method
33565
33584
  // https://tc39.es/ecma262/#sec-array.prototype.some
33566
- some: createMethod(3),
33585
+ some: createMethod$1(3),
33567
33586
  // `Array.prototype.every` method
33568
33587
  // https://tc39.es/ecma262/#sec-array.prototype.every
33569
- every: createMethod(4),
33588
+ every: createMethod$1(4),
33570
33589
  // `Array.prototype.find` method
33571
33590
  // https://tc39.es/ecma262/#sec-array.prototype.find
33572
- find: createMethod(5),
33591
+ find: createMethod$1(5),
33573
33592
  // `Array.prototype.findIndex` method
33574
33593
  // https://tc39.es/ecma262/#sec-array.prototype.findIndex
33575
- findIndex: createMethod(6),
33594
+ findIndex: createMethod$1(6),
33576
33595
  // `Array.prototype.filterReject` method
33577
33596
  // https://github.com/tc39/proposal-array-filtering
33578
- filterReject: createMethod(7)
33597
+ filterReject: createMethod$1(7)
33579
33598
  };
33580
33599
 
33581
33600
  var arrayMethodIsStrict = function (METHOD_NAME, argument) {
@@ -33609,24 +33628,24 @@ var entryVirtual = function (CONSTRUCTOR) {
33609
33628
  return path[CONSTRUCTOR + 'Prototype'];
33610
33629
  };
33611
33630
 
33612
- var forEach$3 = entryVirtual('Array').forEach;
33631
+ var forEach$4 = entryVirtual('Array').forEach;
33613
33632
 
33614
- var forEach$2 = forEach$3;
33633
+ var forEach$3 = forEach$4;
33615
33634
 
33616
- var ArrayPrototype$4 = Array.prototype;
33635
+ var ArrayPrototype$5 = Array.prototype;
33617
33636
 
33618
33637
  var DOMIterables = {
33619
33638
  DOMTokenList: true,
33620
33639
  NodeList: true
33621
33640
  };
33622
33641
 
33623
- var forEach$1 = function (it) {
33642
+ var forEach$2 = function (it) {
33624
33643
  var own = it.forEach;
33625
- return it === ArrayPrototype$4 || (objectIsPrototypeOf(ArrayPrototype$4, it) && own === ArrayPrototype$4.forEach)
33626
- || hasOwnProperty_1(DOMIterables, classof(it)) ? forEach$2 : own;
33644
+ return it === ArrayPrototype$5 || (objectIsPrototypeOf(ArrayPrototype$5, it) && own === ArrayPrototype$5.forEach)
33645
+ || hasOwnProperty_1(DOMIterables, classof(it)) ? forEach$3 : own;
33627
33646
  };
33628
33647
 
33629
- var forEach = forEach$1;
33648
+ var forEach$1 = forEach$2;
33630
33649
 
33631
33650
  var nativeGetOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
33632
33651
 
@@ -33688,11 +33707,11 @@ _export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$1 }, {
33688
33707
 
33689
33708
  var filter$3 = entryVirtual('Array').filter;
33690
33709
 
33691
- var ArrayPrototype$3 = Array.prototype;
33710
+ var ArrayPrototype$4 = Array.prototype;
33692
33711
 
33693
33712
  var filter$2 = function (it) {
33694
33713
  var own = it.filter;
33695
- return it === ArrayPrototype$3 || (objectIsPrototypeOf(ArrayPrototype$3, it) && own === ArrayPrototype$3.filter) ? filter$3 : own;
33714
+ return it === ArrayPrototype$4 || (objectIsPrototypeOf(ArrayPrototype$4, it) && own === ArrayPrototype$4.filter) ? filter$3 : own;
33696
33715
  };
33697
33716
 
33698
33717
  var filter$1 = filter$2;
@@ -33753,11 +33772,11 @@ var wellKnownSymbolWrapped = {
33753
33772
  f: f
33754
33773
  };
33755
33774
 
33756
- var defineProperty$5 = objectDefineProperty.f;
33775
+ var defineProperty$6 = objectDefineProperty.f;
33757
33776
 
33758
33777
  var defineWellKnownSymbol = function (NAME) {
33759
33778
  var Symbol = path.Symbol || (path.Symbol = {});
33760
- if (!hasOwnProperty_1(Symbol, NAME)) defineProperty$5(Symbol, NAME, {
33779
+ if (!hasOwnProperty_1(Symbol, NAME)) defineProperty$6(Symbol, NAME, {
33761
33780
  value: wellKnownSymbolWrapped.f(NAME)
33762
33781
  });
33763
33782
  };
@@ -33784,13 +33803,13 @@ var HIDDEN = sharedKey('hidden');
33784
33803
  var SYMBOL = 'Symbol';
33785
33804
  var PROTOTYPE = 'prototype';
33786
33805
 
33787
- var setInternalState = internalState.set;
33788
- var getInternalState = internalState.getterFor(SYMBOL);
33806
+ var setInternalState$3 = internalState.set;
33807
+ var getInternalState$1 = internalState.getterFor(SYMBOL);
33789
33808
 
33790
33809
  var ObjectPrototype = Object[PROTOTYPE];
33791
33810
  var $Symbol = global_1.Symbol;
33792
33811
  var SymbolPrototype = $Symbol && $Symbol[PROTOTYPE];
33793
- var TypeError$2 = global_1.TypeError;
33812
+ var TypeError$5 = global_1.TypeError;
33794
33813
  var QObject = global_1.QObject;
33795
33814
  var nativeGetOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
33796
33815
  var nativeDefineProperty = objectDefineProperty.f;
@@ -33821,7 +33840,7 @@ var setSymbolDescriptor = descriptors && fails(function () {
33821
33840
 
33822
33841
  var wrap = function (tag, description) {
33823
33842
  var symbol = AllSymbols[tag] = objectCreate(SymbolPrototype);
33824
- setInternalState(symbol, {
33843
+ setInternalState$3(symbol, {
33825
33844
  type: SYMBOL,
33826
33845
  tag: tag,
33827
33846
  description: description
@@ -33904,7 +33923,7 @@ var $getOwnPropertySymbols = function (O) {
33904
33923
  // https://tc39.es/ecma262/#sec-symbol-constructor
33905
33924
  if (!nativeSymbol) {
33906
33925
  $Symbol = function Symbol() {
33907
- if (objectIsPrototypeOf(SymbolPrototype, this)) throw TypeError$2('Symbol is not a constructor');
33926
+ if (objectIsPrototypeOf(SymbolPrototype, this)) throw TypeError$5('Symbol is not a constructor');
33908
33927
  var description = !arguments.length || arguments[0] === undefined ? undefined : toString_1(arguments[0]);
33909
33928
  var tag = uid(description);
33910
33929
  var setter = function (value) {
@@ -33919,7 +33938,7 @@ if (!nativeSymbol) {
33919
33938
  SymbolPrototype = $Symbol[PROTOTYPE];
33920
33939
 
33921
33940
  redefine(SymbolPrototype, 'toString', function toString() {
33922
- return getInternalState(this).tag;
33941
+ return getInternalState$1(this).tag;
33923
33942
  });
33924
33943
 
33925
33944
  redefine($Symbol, 'withoutSetter', function (description) {
@@ -33942,7 +33961,7 @@ if (!nativeSymbol) {
33942
33961
  nativeDefineProperty(SymbolPrototype, 'description', {
33943
33962
  configurable: true,
33944
33963
  get: function description() {
33945
- return getInternalState(this).description;
33964
+ return getInternalState$1(this).description;
33946
33965
  }
33947
33966
  });
33948
33967
  }
@@ -34026,8 +34045,8 @@ var arraySlice = functionUncurryThis([].slice);
34026
34045
 
34027
34046
  var $stringify = getBuiltIn('JSON', 'stringify');
34028
34047
  var exec = functionUncurryThis(/./.exec);
34029
- var charAt = functionUncurryThis(''.charAt);
34030
- var charCodeAt = functionUncurryThis(''.charCodeAt);
34048
+ var charAt$2 = functionUncurryThis(''.charAt);
34049
+ var charCodeAt$1 = functionUncurryThis(''.charCodeAt);
34031
34050
  var replace = functionUncurryThis(''.replace);
34032
34051
  var numberToString = functionUncurryThis(1.0.toString);
34033
34052
 
@@ -34064,10 +34083,10 @@ var stringifyWithSymbolsFix = function (it, replacer) {
34064
34083
  };
34065
34084
 
34066
34085
  var fixIllFormed = function (match, offset, string) {
34067
- var prev = charAt(string, offset - 1);
34068
- var next = charAt(string, offset + 1);
34086
+ var prev = charAt$2(string, offset - 1);
34087
+ var next = charAt$2(string, offset + 1);
34069
34088
  if ((exec(low, match) && !exec(hi, next)) || (exec(hi, match) && !exec(low, prev))) {
34070
- return '\\u' + numberToString(charCodeAt(match, 0), 16);
34089
+ return '\\u' + numberToString(charCodeAt$1(match, 0), 16);
34071
34090
  } return match;
34072
34091
  };
34073
34092
 
@@ -34122,17 +34141,17 @@ var keys$4 = keys$5;
34122
34141
  // eslint-disable-next-line es-x/no-object-assign -- safe
34123
34142
  var $assign = Object.assign;
34124
34143
  // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
34125
- var defineProperty$4 = Object.defineProperty;
34144
+ var defineProperty$5 = Object.defineProperty;
34126
34145
  var concat$4 = functionUncurryThis([].concat);
34127
34146
 
34128
34147
  // `Object.assign` method
34129
34148
  // https://tc39.es/ecma262/#sec-object.assign
34130
34149
  var objectAssign = !$assign || fails(function () {
34131
34150
  // should have correct order of operations (Edge bug)
34132
- if (descriptors && $assign({ b: 1 }, $assign(defineProperty$4({}, 'a', {
34151
+ if (descriptors && $assign({ b: 1 }, $assign(defineProperty$5({}, 'a', {
34133
34152
  enumerable: true,
34134
34153
  get: function () {
34135
- defineProperty$4(this, 'b', {
34154
+ defineProperty$5(this, 'b', {
34136
34155
  value: 3,
34137
34156
  enumerable: false
34138
34157
  });
@@ -34236,11 +34255,11 @@ _export({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || !STRICT_METHOD
34236
34255
 
34237
34256
  var indexOf$6 = entryVirtual('Array').indexOf;
34238
34257
 
34239
- var ArrayPrototype$2 = Array.prototype;
34258
+ var ArrayPrototype$3 = Array.prototype;
34240
34259
 
34241
34260
  var indexOf$5 = function (it) {
34242
34261
  var own = it.indexOf;
34243
- return it === ArrayPrototype$2 || (objectIsPrototypeOf(ArrayPrototype$2, it) && own === ArrayPrototype$2.indexOf) ? indexOf$6 : own;
34262
+ return it === ArrayPrototype$3 || (objectIsPrototypeOf(ArrayPrototype$3, it) && own === ArrayPrototype$3.indexOf) ? indexOf$6 : own;
34244
34263
  };
34245
34264
 
34246
34265
  var indexOf$4 = indexOf$5;
@@ -34297,17 +34316,17 @@ function _objectWithoutProperties(source, excluded) {
34297
34316
  return target;
34298
34317
  }
34299
34318
 
34300
- var defineProperty$3 = defineProperty$8;
34319
+ var defineProperty$4 = defineProperty$9;
34320
+
34321
+ var defineProperty$3 = defineProperty$4;
34301
34322
 
34302
34323
  var defineProperty$2 = defineProperty$3;
34303
34324
 
34304
34325
  var defineProperty$1 = defineProperty$2;
34305
34326
 
34306
- var defineProperty = defineProperty$1;
34307
-
34308
34327
  function _defineProperty(obj, key, value) {
34309
34328
  if (key in obj) {
34310
- defineProperty(obj, key, {
34329
+ defineProperty$1(obj, key, {
34311
34330
  value: value,
34312
34331
  enumerable: true,
34313
34332
  configurable: true,
@@ -34327,7 +34346,7 @@ function _defineProperty(obj, key, value) {
34327
34346
 
34328
34347
  function ownKeys$8(object, enumerableOnly) { var keys = keys$4(object); if (getOwnPropertySymbols$4) { var symbols = getOwnPropertySymbols$4(object); enumerableOnly && (symbols = filter(symbols).call(symbols, function (sym) { return getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
34329
34348
 
34330
- function _objectSpread$8(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach(_context = ownKeys$8(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach(_context2 = ownKeys$8(Object(source))).call(_context2, function (key) { defineProperty$7(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
34349
+ function _objectSpread$8(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach$1(_context = ownKeys$8(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach$1(_context2 = ownKeys$8(Object(source))).call(_context2, function (key) { defineProperty$8(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
34331
34350
 
34332
34351
  typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34333
34352
  return a;
@@ -34626,99 +34645,897 @@ var _default$P = props;
34626
34645
  (function () {
34627
34646
  var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined;
34628
34647
 
34629
- if (!reactHotLoader) {
34630
- return;
34631
- }
34648
+ if (!reactHotLoader) {
34649
+ return;
34650
+ }
34651
+
34652
+ reactHotLoader.register(props, "props", "/tmp/build/44cb8d9a/src/src/v2/components/Button/button-props.js");
34653
+ reactHotLoader.register(_default$P, "default", "/tmp/build/44cb8d9a/src/src/v2/components/Button/button-props.js");
34654
+ })();
34655
+
34656
+ (function () {
34657
+ var leaveModule = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.leaveModule : undefined;
34658
+ leaveModule && leaveModule(module);
34659
+ })();
34660
+
34661
+ var _excluded$c = ["asAnchor", "isExternal"];
34662
+
34663
+ (function () {
34664
+ var enterModule = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.enterModule : undefined;
34665
+ enterModule && enterModule(module);
34666
+ })();
34667
+
34668
+ function ownKeys$7(object, enumerableOnly) { var keys = keys$4(object); if (getOwnPropertySymbols$4) { var symbols = getOwnPropertySymbols$4(object); enumerableOnly && (symbols = filter(symbols).call(symbols, function (sym) { return getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
34669
+
34670
+ function _objectSpread$7(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach$1(_context = ownKeys$7(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach$1(_context2 = ownKeys$7(Object(source))).call(_context2, function (key) { defineProperty$8(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
34671
+
34672
+ typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34673
+ return a;
34674
+ };
34675
+
34676
+ var anchorProps = function anchorProps() {
34677
+ var isExternal = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
34678
+ return _objectSpread$7({
34679
+ as: 'a',
34680
+ type: null
34681
+ }, isExternal && {
34682
+ target: '_blank',
34683
+ rel: 'noopener noreferrer'
34684
+ });
34685
+ };
34686
+
34687
+ var Button = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
34688
+ var asAnchor = _ref.asAnchor,
34689
+ isExternal = _ref.isExternal,
34690
+ props = _objectWithoutProperties(_ref, _excluded$c);
34691
+
34692
+ return /*#__PURE__*/React__default['default'].createElement(Button$1, _extends({
34693
+ iconSpacing: 2
34694
+ }, props, (asAnchor || props.as === 'a') && anchorProps(isExternal), {
34695
+ ref: ref
34696
+ }));
34697
+ });
34698
+ Button.propTypes = _default$P;
34699
+ Button.defaultProps = {
34700
+ variant: 'primary',
34701
+ type: 'button'
34702
+ };
34703
+ var _default$O = Button;
34704
+
34705
+ (function () {
34706
+ var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined;
34707
+
34708
+ if (!reactHotLoader) {
34709
+ return;
34710
+ }
34711
+
34712
+ reactHotLoader.register(anchorProps, "anchorProps", "/tmp/build/44cb8d9a/src/src/v2/components/Button/Button.jsx");
34713
+ reactHotLoader.register(Button, "Button", "/tmp/build/44cb8d9a/src/src/v2/components/Button/Button.jsx");
34714
+ reactHotLoader.register(_default$O, "default", "/tmp/build/44cb8d9a/src/src/v2/components/Button/Button.jsx");
34715
+ })();
34716
+
34717
+ (function () {
34718
+ var leaveModule = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.leaveModule : undefined;
34719
+ leaveModule && leaveModule(module);
34720
+ })();
34721
+
34722
+ typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34723
+ return a;
34724
+ };
34725
+
34726
+ typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34727
+ return a;
34728
+ };
34729
+
34730
+ typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34731
+ return a;
34732
+ };
34733
+
34734
+ typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34735
+ return a;
34736
+ };
34737
+
34738
+ typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34739
+ return a;
34740
+ };
34741
+
34742
+ var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
34743
+ var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
34744
+ var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
34745
+ var TypeError$4 = global_1.TypeError;
34746
+
34747
+ // We can't use this feature detection in V8 since it causes
34748
+ // deoptimization and serious performance degradation
34749
+ // https://github.com/zloirock/core-js/issues/679
34750
+ var IS_CONCAT_SPREADABLE_SUPPORT = engineV8Version >= 51 || !fails(function () {
34751
+ var array = [];
34752
+ array[IS_CONCAT_SPREADABLE] = false;
34753
+ return array.concat()[0] !== array;
34754
+ });
34755
+
34756
+ var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
34757
+
34758
+ var isConcatSpreadable = function (O) {
34759
+ if (!isObject$1(O)) return false;
34760
+ var spreadable = O[IS_CONCAT_SPREADABLE];
34761
+ return spreadable !== undefined ? !!spreadable : isArray(O);
34762
+ };
34763
+
34764
+ var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
34765
+
34766
+ // `Array.prototype.concat` method
34767
+ // https://tc39.es/ecma262/#sec-array.prototype.concat
34768
+ // with adding support of @@isConcatSpreadable and @@species
34769
+ _export({ target: 'Array', proto: true, forced: FORCED }, {
34770
+ // eslint-disable-next-line no-unused-vars -- required for `.length`
34771
+ concat: function concat(arg) {
34772
+ var O = toObject(this);
34773
+ var A = arraySpeciesCreate(O, 0);
34774
+ var n = 0;
34775
+ var i, k, length, len, E;
34776
+ for (i = -1, length = arguments.length; i < length; i++) {
34777
+ E = i === -1 ? O : arguments[i];
34778
+ if (isConcatSpreadable(E)) {
34779
+ len = lengthOfArrayLike(E);
34780
+ if (n + len > MAX_SAFE_INTEGER) throw TypeError$4(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
34781
+ for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
34782
+ } else {
34783
+ if (n >= MAX_SAFE_INTEGER) throw TypeError$4(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
34784
+ createProperty(A, n++, E);
34785
+ }
34786
+ }
34787
+ A.length = n;
34788
+ return A;
34789
+ }
34790
+ });
34791
+
34792
+ // `Symbol.asyncIterator` well-known symbol
34793
+ // https://tc39.es/ecma262/#sec-symbol.asynciterator
34794
+ defineWellKnownSymbol('asyncIterator');
34795
+
34796
+ // `Symbol.hasInstance` well-known symbol
34797
+ // https://tc39.es/ecma262/#sec-symbol.hasinstance
34798
+ defineWellKnownSymbol('hasInstance');
34799
+
34800
+ // `Symbol.isConcatSpreadable` well-known symbol
34801
+ // https://tc39.es/ecma262/#sec-symbol.isconcatspreadable
34802
+ defineWellKnownSymbol('isConcatSpreadable');
34803
+
34804
+ // `Symbol.iterator` well-known symbol
34805
+ // https://tc39.es/ecma262/#sec-symbol.iterator
34806
+ defineWellKnownSymbol('iterator');
34807
+
34808
+ // `Symbol.match` well-known symbol
34809
+ // https://tc39.es/ecma262/#sec-symbol.match
34810
+ defineWellKnownSymbol('match');
34811
+
34812
+ // `Symbol.matchAll` well-known symbol
34813
+ // https://tc39.es/ecma262/#sec-symbol.matchall
34814
+ defineWellKnownSymbol('matchAll');
34815
+
34816
+ // `Symbol.replace` well-known symbol
34817
+ // https://tc39.es/ecma262/#sec-symbol.replace
34818
+ defineWellKnownSymbol('replace');
34819
+
34820
+ // `Symbol.search` well-known symbol
34821
+ // https://tc39.es/ecma262/#sec-symbol.search
34822
+ defineWellKnownSymbol('search');
34823
+
34824
+ // `Symbol.species` well-known symbol
34825
+ // https://tc39.es/ecma262/#sec-symbol.species
34826
+ defineWellKnownSymbol('species');
34827
+
34828
+ // `Symbol.split` well-known symbol
34829
+ // https://tc39.es/ecma262/#sec-symbol.split
34830
+ defineWellKnownSymbol('split');
34831
+
34832
+ // `Symbol.toPrimitive` well-known symbol
34833
+ // https://tc39.es/ecma262/#sec-symbol.toprimitive
34834
+ defineWellKnownSymbol('toPrimitive');
34835
+
34836
+ // `Symbol.prototype[@@toPrimitive]` method
34837
+ // https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive
34838
+ symbolDefineToPrimitive();
34839
+
34840
+ // `Symbol.toStringTag` well-known symbol
34841
+ // https://tc39.es/ecma262/#sec-symbol.tostringtag
34842
+ defineWellKnownSymbol('toStringTag');
34843
+
34844
+ // `Symbol.prototype[@@toStringTag]` property
34845
+ // https://tc39.es/ecma262/#sec-symbol.prototype-@@tostringtag
34846
+ setToStringTag(getBuiltIn('Symbol'), 'Symbol');
34847
+
34848
+ // `Symbol.unscopables` well-known symbol
34849
+ // https://tc39.es/ecma262/#sec-symbol.unscopables
34850
+ defineWellKnownSymbol('unscopables');
34851
+
34852
+ // JSON[@@toStringTag] property
34853
+ // https://tc39.es/ecma262/#sec-json-@@tostringtag
34854
+ setToStringTag(global_1.JSON, 'JSON', true);
34855
+
34856
+ var symbol$5 = path.Symbol;
34857
+
34858
+ var symbol$4 = symbol$5;
34859
+
34860
+ var symbol$3 = symbol$4;
34861
+
34862
+ // `Symbol.asyncDispose` well-known symbol
34863
+ // https://github.com/tc39/proposal-using-statement
34864
+ defineWellKnownSymbol('asyncDispose');
34865
+
34866
+ // `Symbol.dispose` well-known symbol
34867
+ // https://github.com/tc39/proposal-using-statement
34868
+ defineWellKnownSymbol('dispose');
34869
+
34870
+ // `Symbol.matcher` well-known symbol
34871
+ // https://github.com/tc39/proposal-pattern-matching
34872
+ defineWellKnownSymbol('matcher');
34873
+
34874
+ // `Symbol.metadata` well-known symbol
34875
+ // https://github.com/tc39/proposal-decorators
34876
+ defineWellKnownSymbol('metadata');
34877
+
34878
+ // `Symbol.observable` well-known symbol
34879
+ // https://github.com/tc39/proposal-observable
34880
+ defineWellKnownSymbol('observable');
34881
+
34882
+ // TODO: remove from `core-js@4`
34883
+
34884
+
34885
+ // `Symbol.patternMatch` well-known symbol
34886
+ // https://github.com/tc39/proposal-pattern-matching
34887
+ defineWellKnownSymbol('patternMatch');
34888
+
34889
+ // TODO: remove from `core-js@4`
34890
+
34891
+
34892
+ defineWellKnownSymbol('replaceAll');
34893
+
34894
+ // TODO: Remove from `core-js@4`
34895
+
34896
+ // TODO: Remove from `core-js@4`
34897
+
34898
+
34899
+ var symbol$2 = symbol$3;
34900
+
34901
+ var symbol$1 = symbol$2;
34902
+
34903
+ var symbol = symbol$1;
34904
+
34905
+ var charAt$1 = functionUncurryThis(''.charAt);
34906
+ var charCodeAt = functionUncurryThis(''.charCodeAt);
34907
+ var stringSlice = functionUncurryThis(''.slice);
34908
+
34909
+ var createMethod = function (CONVERT_TO_STRING) {
34910
+ return function ($this, pos) {
34911
+ var S = toString_1(requireObjectCoercible($this));
34912
+ var position = toIntegerOrInfinity(pos);
34913
+ var size = S.length;
34914
+ var first, second;
34915
+ if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
34916
+ first = charCodeAt(S, position);
34917
+ return first < 0xD800 || first > 0xDBFF || position + 1 === size
34918
+ || (second = charCodeAt(S, position + 1)) < 0xDC00 || second > 0xDFFF
34919
+ ? CONVERT_TO_STRING
34920
+ ? charAt$1(S, position)
34921
+ : first
34922
+ : CONVERT_TO_STRING
34923
+ ? stringSlice(S, position, position + 2)
34924
+ : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
34925
+ };
34926
+ };
34927
+
34928
+ var stringMultibyte = {
34929
+ // `String.prototype.codePointAt` method
34930
+ // https://tc39.es/ecma262/#sec-string.prototype.codepointat
34931
+ codeAt: createMethod(false),
34932
+ // `String.prototype.at` method
34933
+ // https://github.com/mathiasbynens/String.prototype.at
34934
+ charAt: createMethod(true)
34935
+ };
34936
+
34937
+ var charAt = stringMultibyte.charAt;
34938
+
34939
+
34940
+
34941
+
34942
+ var STRING_ITERATOR = 'String Iterator';
34943
+ var setInternalState$2 = internalState.set;
34944
+ var getInternalState = internalState.getterFor(STRING_ITERATOR);
34945
+
34946
+ // `String.prototype[@@iterator]` method
34947
+ // https://tc39.es/ecma262/#sec-string.prototype-@@iterator
34948
+ defineIterator(String, 'String', function (iterated) {
34949
+ setInternalState$2(this, {
34950
+ type: STRING_ITERATOR,
34951
+ string: toString_1(iterated),
34952
+ index: 0
34953
+ });
34954
+ // `%StringIteratorPrototype%.next` method
34955
+ // https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next
34956
+ }, function next() {
34957
+ var state = getInternalState(this);
34958
+ var string = state.string;
34959
+ var index = state.index;
34960
+ var point;
34961
+ if (index >= string.length) return { value: undefined, done: true };
34962
+ point = charAt(string, index);
34963
+ state.index += point.length;
34964
+ return { value: point, done: false };
34965
+ });
34966
+
34967
+ var iterator$5 = wellKnownSymbolWrapped.f('iterator');
34968
+
34969
+ var iterator$4 = iterator$5;
34970
+
34971
+ var iterator$3 = iterator$4;
34972
+
34973
+ var iterator$2 = iterator$3;
34974
+
34975
+ var iterator$1 = iterator$2;
34976
+
34977
+ var iterator = iterator$1;
34978
+
34979
+ function _typeof(obj) {
34980
+ "@babel/helpers - typeof";
34981
+
34982
+ if (typeof symbol === "function" && typeof iterator === "symbol") {
34983
+ _typeof = function _typeof(obj) {
34984
+ return typeof obj;
34985
+ };
34986
+ } else {
34987
+ _typeof = function _typeof(obj) {
34988
+ return obj && typeof symbol === "function" && obj.constructor === symbol && obj !== symbol.prototype ? "symbol" : typeof obj;
34989
+ };
34990
+ }
34991
+
34992
+ return _typeof(obj);
34993
+ }
34994
+
34995
+ var redefineAll = function (target, src, options) {
34996
+ for (var key in src) {
34997
+ if (options && options.unsafe && target[key]) target[key] = src[key];
34998
+ else redefine(target, key, src[key], options);
34999
+ } return target;
35000
+ };
35001
+
35002
+ // FF26- bug: ArrayBuffers are non-extensible, but Object.isExtensible does not report it
35003
+
35004
+
35005
+ var arrayBufferNonExtensible = fails(function () {
35006
+ if (typeof ArrayBuffer == 'function') {
35007
+ var buffer = new ArrayBuffer(8);
35008
+ // eslint-disable-next-line es-x/no-object-isextensible, es-x/no-object-defineproperty -- safe
35009
+ if (Object.isExtensible(buffer)) Object.defineProperty(buffer, 'a', { value: 8 });
35010
+ }
35011
+ });
35012
+
35013
+ // eslint-disable-next-line es-x/no-object-isextensible -- safe
35014
+ var $isExtensible = Object.isExtensible;
35015
+ var FAILS_ON_PRIMITIVES$1 = fails(function () { $isExtensible(1); });
35016
+
35017
+ // `Object.isExtensible` method
35018
+ // https://tc39.es/ecma262/#sec-object.isextensible
35019
+ var objectIsExtensible = (FAILS_ON_PRIMITIVES$1 || arrayBufferNonExtensible) ? function isExtensible(it) {
35020
+ if (!isObject$1(it)) return false;
35021
+ if (arrayBufferNonExtensible && classofRaw(it) == 'ArrayBuffer') return false;
35022
+ return $isExtensible ? $isExtensible(it) : true;
35023
+ } : $isExtensible;
35024
+
35025
+ var freezing = !fails(function () {
35026
+ // eslint-disable-next-line es-x/no-object-isextensible, es-x/no-object-preventextensions -- required for testing
35027
+ return Object.isExtensible(Object.preventExtensions({}));
35028
+ });
35029
+
35030
+ var internalMetadata = createCommonjsModule(function (module) {
35031
+ var defineProperty = objectDefineProperty.f;
35032
+
35033
+
35034
+
35035
+
35036
+
35037
+
35038
+ var REQUIRED = false;
35039
+ var METADATA = uid('meta');
35040
+ var id = 0;
35041
+
35042
+ var setMetadata = function (it) {
35043
+ defineProperty(it, METADATA, { value: {
35044
+ objectID: 'O' + id++, // object ID
35045
+ weakData: {} // weak collections IDs
35046
+ } });
35047
+ };
35048
+
35049
+ var fastKey = function (it, create) {
35050
+ // return a primitive with prefix
35051
+ if (!isObject$1(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;
35052
+ if (!hasOwnProperty_1(it, METADATA)) {
35053
+ // can't set metadata to uncaught frozen object
35054
+ if (!objectIsExtensible(it)) return 'F';
35055
+ // not necessary to add metadata
35056
+ if (!create) return 'E';
35057
+ // add missing metadata
35058
+ setMetadata(it);
35059
+ // return object ID
35060
+ } return it[METADATA].objectID;
35061
+ };
35062
+
35063
+ var getWeakData = function (it, create) {
35064
+ if (!hasOwnProperty_1(it, METADATA)) {
35065
+ // can't set metadata to uncaught frozen object
35066
+ if (!objectIsExtensible(it)) return true;
35067
+ // not necessary to add metadata
35068
+ if (!create) return false;
35069
+ // add missing metadata
35070
+ setMetadata(it);
35071
+ // return the store of weak collections IDs
35072
+ } return it[METADATA].weakData;
35073
+ };
35074
+
35075
+ // add metadata on freeze-family methods calling
35076
+ var onFreeze = function (it) {
35077
+ if (freezing && REQUIRED && objectIsExtensible(it) && !hasOwnProperty_1(it, METADATA)) setMetadata(it);
35078
+ return it;
35079
+ };
35080
+
35081
+ var enable = function () {
35082
+ meta.enable = function () { /* empty */ };
35083
+ REQUIRED = true;
35084
+ var getOwnPropertyNames = objectGetOwnPropertyNames.f;
35085
+ var splice = functionUncurryThis([].splice);
35086
+ var test = {};
35087
+ test[METADATA] = 1;
35088
+
35089
+ // prevent exposing of metadata key
35090
+ if (getOwnPropertyNames(test).length) {
35091
+ objectGetOwnPropertyNames.f = function (it) {
35092
+ var result = getOwnPropertyNames(it);
35093
+ for (var i = 0, length = result.length; i < length; i++) {
35094
+ if (result[i] === METADATA) {
35095
+ splice(result, i, 1);
35096
+ break;
35097
+ }
35098
+ } return result;
35099
+ };
35100
+
35101
+ _export({ target: 'Object', stat: true, forced: true }, {
35102
+ getOwnPropertyNames: objectGetOwnPropertyNamesExternal.f
35103
+ });
35104
+ }
35105
+ };
35106
+
35107
+ var meta = module.exports = {
35108
+ enable: enable,
35109
+ fastKey: fastKey,
35110
+ getWeakData: getWeakData,
35111
+ onFreeze: onFreeze
35112
+ };
35113
+
35114
+ hiddenKeys$1[METADATA] = true;
35115
+ });
35116
+ internalMetadata.enable;
35117
+ internalMetadata.fastKey;
35118
+ internalMetadata.getWeakData;
35119
+ internalMetadata.onFreeze;
35120
+
35121
+ var ITERATOR$1 = wellKnownSymbol('iterator');
35122
+ var ArrayPrototype$2 = Array.prototype;
35123
+
35124
+ // check on default Array iterator
35125
+ var isArrayIteratorMethod = function (it) {
35126
+ return it !== undefined && (iterators.Array === it || ArrayPrototype$2[ITERATOR$1] === it);
35127
+ };
35128
+
35129
+ var ITERATOR = wellKnownSymbol('iterator');
35130
+
35131
+ var getIteratorMethod = function (it) {
35132
+ if (it != undefined) return getMethod(it, ITERATOR)
35133
+ || getMethod(it, '@@iterator')
35134
+ || iterators[classof(it)];
35135
+ };
35136
+
35137
+ var TypeError$3 = global_1.TypeError;
35138
+
35139
+ var getIterator = function (argument, usingIterator) {
35140
+ var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
35141
+ if (aCallable(iteratorMethod)) return anObject(functionCall(iteratorMethod, argument));
35142
+ throw TypeError$3(tryToString(argument) + ' is not iterable');
35143
+ };
35144
+
35145
+ var iteratorClose = function (iterator, kind, value) {
35146
+ var innerResult, innerError;
35147
+ anObject(iterator);
35148
+ try {
35149
+ innerResult = getMethod(iterator, 'return');
35150
+ if (!innerResult) {
35151
+ if (kind === 'throw') throw value;
35152
+ return value;
35153
+ }
35154
+ innerResult = functionCall(innerResult, iterator);
35155
+ } catch (error) {
35156
+ innerError = true;
35157
+ innerResult = error;
35158
+ }
35159
+ if (kind === 'throw') throw value;
35160
+ if (innerError) throw innerResult;
35161
+ anObject(innerResult);
35162
+ return value;
35163
+ };
35164
+
35165
+ var TypeError$2 = global_1.TypeError;
35166
+
35167
+ var Result = function (stopped, result) {
35168
+ this.stopped = stopped;
35169
+ this.result = result;
35170
+ };
35171
+
35172
+ var ResultPrototype = Result.prototype;
35173
+
35174
+ var iterate = function (iterable, unboundFunction, options) {
35175
+ var that = options && options.that;
35176
+ var AS_ENTRIES = !!(options && options.AS_ENTRIES);
35177
+ var IS_ITERATOR = !!(options && options.IS_ITERATOR);
35178
+ var INTERRUPTED = !!(options && options.INTERRUPTED);
35179
+ var fn = functionBindContext(unboundFunction, that);
35180
+ var iterator, iterFn, index, length, result, next, step;
35181
+
35182
+ var stop = function (condition) {
35183
+ if (iterator) iteratorClose(iterator, 'normal', condition);
35184
+ return new Result(true, condition);
35185
+ };
35186
+
35187
+ var callFn = function (value) {
35188
+ if (AS_ENTRIES) {
35189
+ anObject(value);
35190
+ return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
35191
+ } return INTERRUPTED ? fn(value, stop) : fn(value);
35192
+ };
35193
+
35194
+ if (IS_ITERATOR) {
35195
+ iterator = iterable;
35196
+ } else {
35197
+ iterFn = getIteratorMethod(iterable);
35198
+ if (!iterFn) throw TypeError$2(tryToString(iterable) + ' is not iterable');
35199
+ // optimisation for array iterators
35200
+ if (isArrayIteratorMethod(iterFn)) {
35201
+ for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
35202
+ result = callFn(iterable[index]);
35203
+ if (result && objectIsPrototypeOf(ResultPrototype, result)) return result;
35204
+ } return new Result(false);
35205
+ }
35206
+ iterator = getIterator(iterable, iterFn);
35207
+ }
35208
+
35209
+ next = iterator.next;
35210
+ while (!(step = functionCall(next, iterator)).done) {
35211
+ try {
35212
+ result = callFn(step.value);
35213
+ } catch (error) {
35214
+ iteratorClose(iterator, 'throw', error);
35215
+ }
35216
+ if (typeof result == 'object' && result && objectIsPrototypeOf(ResultPrototype, result)) return result;
35217
+ } return new Result(false);
35218
+ };
35219
+
35220
+ var TypeError$1 = global_1.TypeError;
35221
+
35222
+ var anInstance = function (it, Prototype) {
35223
+ if (objectIsPrototypeOf(Prototype, it)) return it;
35224
+ throw TypeError$1('Incorrect invocation');
35225
+ };
35226
+
35227
+ var defineProperty = objectDefineProperty.f;
35228
+ var forEach = arrayIteration.forEach;
35229
+
35230
+
35231
+
35232
+ var setInternalState$1 = internalState.set;
35233
+ var internalStateGetterFor$1 = internalState.getterFor;
35234
+
35235
+ var collection = function (CONSTRUCTOR_NAME, wrapper, common) {
35236
+ var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;
35237
+ var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;
35238
+ var ADDER = IS_MAP ? 'set' : 'add';
35239
+ var NativeConstructor = global_1[CONSTRUCTOR_NAME];
35240
+ var NativePrototype = NativeConstructor && NativeConstructor.prototype;
35241
+ var exported = {};
35242
+ var Constructor;
35243
+
35244
+ if (!descriptors || !isCallable(NativeConstructor)
35245
+ || !(IS_WEAK || NativePrototype.forEach && !fails(function () { new NativeConstructor().entries().next(); }))
35246
+ ) {
35247
+ // create collection constructor
35248
+ Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);
35249
+ internalMetadata.enable();
35250
+ } else {
35251
+ Constructor = wrapper(function (target, iterable) {
35252
+ setInternalState$1(anInstance(target, Prototype), {
35253
+ type: CONSTRUCTOR_NAME,
35254
+ collection: new NativeConstructor()
35255
+ });
35256
+ if (iterable != undefined) iterate(iterable, target[ADDER], { that: target, AS_ENTRIES: IS_MAP });
35257
+ });
35258
+
35259
+ var Prototype = Constructor.prototype;
35260
+
35261
+ var getInternalState = internalStateGetterFor$1(CONSTRUCTOR_NAME);
35262
+
35263
+ forEach(['add', 'clear', 'delete', 'forEach', 'get', 'has', 'set', 'keys', 'values', 'entries'], function (KEY) {
35264
+ var IS_ADDER = KEY == 'add' || KEY == 'set';
35265
+ if (KEY in NativePrototype && !(IS_WEAK && KEY == 'clear')) {
35266
+ createNonEnumerableProperty(Prototype, KEY, function (a, b) {
35267
+ var collection = getInternalState(this).collection;
35268
+ if (!IS_ADDER && IS_WEAK && !isObject$1(a)) return KEY == 'get' ? undefined : false;
35269
+ var result = collection[KEY](a === 0 ? 0 : a, b);
35270
+ return IS_ADDER ? this : result;
35271
+ });
35272
+ }
35273
+ });
35274
+
35275
+ IS_WEAK || defineProperty(Prototype, 'size', {
35276
+ configurable: true,
35277
+ get: function () {
35278
+ return getInternalState(this).collection.size;
35279
+ }
35280
+ });
35281
+ }
35282
+
35283
+ setToStringTag(Constructor, CONSTRUCTOR_NAME, false, true);
35284
+
35285
+ exported[CONSTRUCTOR_NAME] = Constructor;
35286
+ _export({ global: true, forced: true }, exported);
35287
+
35288
+ if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);
35289
+
35290
+ return Constructor;
35291
+ };
35292
+
35293
+ var getWeakData = internalMetadata.getWeakData;
35294
+
35295
+
35296
+
35297
+
35298
+
35299
+
35300
+
35301
+
35302
+ var setInternalState = internalState.set;
35303
+ var internalStateGetterFor = internalState.getterFor;
35304
+ var find = arrayIteration.find;
35305
+ var findIndex = arrayIteration.findIndex;
35306
+ var splice = functionUncurryThis([].splice);
35307
+ var id = 0;
35308
+
35309
+ // fallback for uncaught frozen keys
35310
+ var uncaughtFrozenStore = function (store) {
35311
+ return store.frozen || (store.frozen = new UncaughtFrozenStore());
35312
+ };
35313
+
35314
+ var UncaughtFrozenStore = function () {
35315
+ this.entries = [];
35316
+ };
35317
+
35318
+ var findUncaughtFrozen = function (store, key) {
35319
+ return find(store.entries, function (it) {
35320
+ return it[0] === key;
35321
+ });
35322
+ };
35323
+
35324
+ UncaughtFrozenStore.prototype = {
35325
+ get: function (key) {
35326
+ var entry = findUncaughtFrozen(this, key);
35327
+ if (entry) return entry[1];
35328
+ },
35329
+ has: function (key) {
35330
+ return !!findUncaughtFrozen(this, key);
35331
+ },
35332
+ set: function (key, value) {
35333
+ var entry = findUncaughtFrozen(this, key);
35334
+ if (entry) entry[1] = value;
35335
+ else this.entries.push([key, value]);
35336
+ },
35337
+ 'delete': function (key) {
35338
+ var index = findIndex(this.entries, function (it) {
35339
+ return it[0] === key;
35340
+ });
35341
+ if (~index) splice(this.entries, index, 1);
35342
+ return !!~index;
35343
+ }
35344
+ };
35345
+
35346
+ var collectionWeak = {
35347
+ getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {
35348
+ var Constructor = wrapper(function (that, iterable) {
35349
+ anInstance(that, Prototype);
35350
+ setInternalState(that, {
35351
+ type: CONSTRUCTOR_NAME,
35352
+ id: id++,
35353
+ frozen: undefined
35354
+ });
35355
+ if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
35356
+ });
35357
+
35358
+ var Prototype = Constructor.prototype;
35359
+
35360
+ var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);
35361
+
35362
+ var define = function (that, key, value) {
35363
+ var state = getInternalState(that);
35364
+ var data = getWeakData(anObject(key), true);
35365
+ if (data === true) uncaughtFrozenStore(state).set(key, value);
35366
+ else data[state.id] = value;
35367
+ return that;
35368
+ };
35369
+
35370
+ redefineAll(Prototype, {
35371
+ // `{ WeakMap, WeakSet }.prototype.delete(key)` methods
35372
+ // https://tc39.es/ecma262/#sec-weakmap.prototype.delete
35373
+ // https://tc39.es/ecma262/#sec-weakset.prototype.delete
35374
+ 'delete': function (key) {
35375
+ var state = getInternalState(this);
35376
+ if (!isObject$1(key)) return false;
35377
+ var data = getWeakData(key);
35378
+ if (data === true) return uncaughtFrozenStore(state)['delete'](key);
35379
+ return data && hasOwnProperty_1(data, state.id) && delete data[state.id];
35380
+ },
35381
+ // `{ WeakMap, WeakSet }.prototype.has(key)` methods
35382
+ // https://tc39.es/ecma262/#sec-weakmap.prototype.has
35383
+ // https://tc39.es/ecma262/#sec-weakset.prototype.has
35384
+ has: function has(key) {
35385
+ var state = getInternalState(this);
35386
+ if (!isObject$1(key)) return false;
35387
+ var data = getWeakData(key);
35388
+ if (data === true) return uncaughtFrozenStore(state).has(key);
35389
+ return data && hasOwnProperty_1(data, state.id);
35390
+ }
35391
+ });
35392
+
35393
+ redefineAll(Prototype, IS_MAP ? {
35394
+ // `WeakMap.prototype.get(key)` method
35395
+ // https://tc39.es/ecma262/#sec-weakmap.prototype.get
35396
+ get: function get(key) {
35397
+ var state = getInternalState(this);
35398
+ if (isObject$1(key)) {
35399
+ var data = getWeakData(key);
35400
+ if (data === true) return uncaughtFrozenStore(state).get(key);
35401
+ return data ? data[state.id] : undefined;
35402
+ }
35403
+ },
35404
+ // `WeakMap.prototype.set(key, value)` method
35405
+ // https://tc39.es/ecma262/#sec-weakmap.prototype.set
35406
+ set: function set(key, value) {
35407
+ return define(this, key, value);
35408
+ }
35409
+ } : {
35410
+ // `WeakSet.prototype.add(value)` method
35411
+ // https://tc39.es/ecma262/#sec-weakset.prototype.add
35412
+ add: function add(value) {
35413
+ return define(this, value, true);
35414
+ }
35415
+ });
35416
+
35417
+ return Constructor;
35418
+ }
35419
+ };
35420
+
35421
+ var enforceInternalState = internalState.enforce;
35422
+
35423
+
35424
+ var IS_IE11 = !global_1.ActiveXObject && 'ActiveXObject' in global_1;
35425
+ var InternalWeakMap;
35426
+
35427
+ var wrapper = function (init) {
35428
+ return function WeakMap() {
35429
+ return init(this, arguments.length ? arguments[0] : undefined);
35430
+ };
35431
+ };
35432
+
35433
+ // `WeakMap` constructor
35434
+ // https://tc39.es/ecma262/#sec-weakmap-constructor
35435
+ var $WeakMap = collection('WeakMap', wrapper, collectionWeak);
35436
+
35437
+ // IE11 WeakMap frozen keys fix
35438
+ // We can't use feature detection because it crash some old IE builds
35439
+ // https://github.com/zloirock/core-js/issues/485
35440
+ if (nativeWeakMap && IS_IE11) {
35441
+ InternalWeakMap = collectionWeak.getConstructor(wrapper, 'WeakMap', true);
35442
+ internalMetadata.enable();
35443
+ var WeakMapPrototype = $WeakMap.prototype;
35444
+ var nativeDelete = functionUncurryThis(WeakMapPrototype['delete']);
35445
+ var nativeHas = functionUncurryThis(WeakMapPrototype.has);
35446
+ var nativeGet = functionUncurryThis(WeakMapPrototype.get);
35447
+ var nativeSet = functionUncurryThis(WeakMapPrototype.set);
35448
+ redefineAll(WeakMapPrototype, {
35449
+ 'delete': function (key) {
35450
+ if (isObject$1(key) && !objectIsExtensible(key)) {
35451
+ var state = enforceInternalState(this);
35452
+ if (!state.frozen) state.frozen = new InternalWeakMap();
35453
+ return nativeDelete(this, key) || state.frozen['delete'](key);
35454
+ } return nativeDelete(this, key);
35455
+ },
35456
+ has: function has(key) {
35457
+ if (isObject$1(key) && !objectIsExtensible(key)) {
35458
+ var state = enforceInternalState(this);
35459
+ if (!state.frozen) state.frozen = new InternalWeakMap();
35460
+ return nativeHas(this, key) || state.frozen.has(key);
35461
+ } return nativeHas(this, key);
35462
+ },
35463
+ get: function get(key) {
35464
+ if (isObject$1(key) && !objectIsExtensible(key)) {
35465
+ var state = enforceInternalState(this);
35466
+ if (!state.frozen) state.frozen = new InternalWeakMap();
35467
+ return nativeHas(this, key) ? nativeGet(this, key) : state.frozen.get(key);
35468
+ } return nativeGet(this, key);
35469
+ },
35470
+ set: function set(key, value) {
35471
+ if (isObject$1(key) && !objectIsExtensible(key)) {
35472
+ var state = enforceInternalState(this);
35473
+ if (!state.frozen) state.frozen = new InternalWeakMap();
35474
+ nativeHas(this, key) ? nativeSet(this, key, value) : state.frozen.set(key, value);
35475
+ } else nativeSet(this, key, value);
35476
+ return this;
35477
+ }
35478
+ });
35479
+ }
35480
+
35481
+ var weakMap$2 = path.WeakMap;
35482
+
35483
+ var weakMap$1 = weakMap$2;
35484
+
35485
+ var weakMap = weakMap$1;
35486
+
35487
+ function _interopRequireDefault(obj) {
35488
+ return obj && obj.__esModule ? obj : {
35489
+ "default": obj
35490
+ };
35491
+ }
35492
+
35493
+ var ChevronDown = createCommonjsModule(function (module, exports) {
34632
35494
 
34633
- reactHotLoader.register(props, "props", "/tmp/build/44cb8d9a/src/src/v2/components/Button/button-props.js");
34634
- reactHotLoader.register(_default$P, "default", "/tmp/build/44cb8d9a/src/src/v2/components/Button/button-props.js");
34635
- })();
34636
35495
 
34637
- (function () {
34638
- var leaveModule = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.leaveModule : undefined;
34639
- leaveModule && leaveModule(module);
34640
- })();
34641
35496
 
34642
- var _excluded$c = ["asAnchor", "isExternal"];
34643
35497
 
34644
- (function () {
34645
- var enterModule = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.enterModule : undefined;
34646
- enterModule && enterModule(module);
34647
- })();
34648
35498
 
34649
- function ownKeys$7(object, enumerableOnly) { var keys = keys$4(object); if (getOwnPropertySymbols$4) { var symbols = getOwnPropertySymbols$4(object); enumerableOnly && (symbols = filter(symbols).call(symbols, function (sym) { return getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
34650
35499
 
34651
- function _objectSpread$7(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach(_context = ownKeys$7(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach(_context2 = ownKeys$7(Object(source))).call(_context2, function (key) { defineProperty$7(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
34652
35500
 
34653
- typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34654
- return a;
34655
- };
34656
35501
 
34657
- var anchorProps = function anchorProps() {
34658
- var isExternal = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
34659
- return _objectSpread$7({
34660
- as: 'a',
34661
- type: null
34662
- }, isExternal && {
34663
- target: '_blank',
34664
- rel: 'noopener noreferrer'
34665
- });
34666
- };
34667
35502
 
34668
- var Button = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
34669
- var asAnchor = _ref.asAnchor,
34670
- isExternal = _ref.isExternal,
34671
- props = _objectWithoutProperties(_ref, _excluded$c);
34672
35503
 
34673
- return /*#__PURE__*/React__default['default'].createElement(Button$1, _extends({
34674
- iconSpacing: 2
34675
- }, props, (asAnchor || props.as === 'a') && anchorProps(isExternal), {
34676
- ref: ref
34677
- }));
35504
+
35505
+ defineProperty$8(exports, "__esModule", {
35506
+ value: true
34678
35507
  });
34679
- Button.propTypes = _default$P;
34680
- Button.defaultProps = {
34681
- variant: 'primary',
34682
- type: 'button'
34683
- };
34684
- var _default$O = Button;
34685
35508
 
34686
- (function () {
34687
- var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined;
35509
+ exports["default"] = void 0;
34688
35510
 
34689
- if (!reactHotLoader) {
34690
- return;
34691
- }
35511
+ var _extends2 = _interopRequireDefault(_extends);
34692
35512
 
34693
- reactHotLoader.register(anchorProps, "anchorProps", "/tmp/build/44cb8d9a/src/src/v2/components/Button/Button.jsx");
34694
- reactHotLoader.register(Button, "Button", "/tmp/build/44cb8d9a/src/src/v2/components/Button/Button.jsx");
34695
- reactHotLoader.register(_default$O, "default", "/tmp/build/44cb8d9a/src/src/v2/components/Button/Button.jsx");
34696
- })();
35513
+ var React = _interopRequireWildcard(React__default['default']);
34697
35514
 
34698
- (function () {
34699
- var leaveModule = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.leaveModule : undefined;
34700
- leaveModule && leaveModule(module);
34701
- })();
35515
+ function _getRequireWildcardCache(nodeInterop) { if (typeof weakMap !== "function") return null; var cacheBabelInterop = new weakMap(); var cacheNodeInterop = new weakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
34702
35516
 
34703
- typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34704
- return a;
34705
- };
35517
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = defineProperty$8 && getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { defineProperty$8(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
34706
35518
 
34707
- typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34708
- return a;
34709
- };
35519
+ function SvgChevronDown(props, svgRef) {
35520
+ return /*#__PURE__*/React.createElement("svg", (0, _extends2["default"])({}, props, {
35521
+ xmlns: "http://www.w3.org/2000/svg",
35522
+ viewBox: "0 0 1024 1024",
35523
+ fill: "currentColor",
35524
+ className: "Icon ".concat(props.className ? props.className : ''),
35525
+ ref: svgRef
35526
+ }), /*#__PURE__*/React.createElement("path", {
35527
+ d: "M480 824.5L10.5 261.2c-17.1-21.3-12.8-51.2 8.5-64 25.6-17.1 55.5-12.8 68.3 8.5l426.8 512.1 426.8-516.4c17.1-21.3 42.7-25.6 64-8.5 21.3 17.1 25.6 42.7 8.5 64L556.8 824.5c-8.5 12.8-21.3 17.1-38.4 17.1-17.1 0-29.9-4.2-38.4-17.1z"
35528
+ }));
35529
+ }
34710
35530
 
34711
- typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34712
- return a;
34713
- };
35531
+ var ForwardRef = /*#__PURE__*/React.forwardRef(SvgChevronDown);
35532
+ var _default = ForwardRef;
35533
+ exports["default"] = _default;
35534
+ });
34714
35535
 
34715
- typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34716
- return a;
34717
- };
35536
+ unwrapExports(ChevronDown);
34718
35537
 
34719
- typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34720
- return a;
34721
- };
35538
+ var chevronDown = ChevronDown;
34722
35539
 
34723
35540
  var _excluded$b = ["children", "label", "inputId", "helperText", "errorMessage"];
34724
35541
 
@@ -34781,6 +35598,10 @@ var _default$N = FormControl;
34781
35598
  leaveModule && leaveModule(module);
34782
35599
  })();
34783
35600
 
35601
+ typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
35602
+ return a;
35603
+ };
35604
+
34784
35605
  var _excluded$a = ["label", "helperText", "errorMessage", "isInvalid", "isDisabled", "isRequired"];
34785
35606
 
34786
35607
  (function () {
@@ -34812,6 +35633,10 @@ var Select = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
34812
35633
  label: label,
34813
35634
  inputId: props.id
34814
35635
  }, /*#__PURE__*/React__default['default'].createElement(Select$1, _extends({
35636
+ icon: /*#__PURE__*/React__default['default'].createElement(Icon, {
35637
+ as: chevronDown
35638
+ }),
35639
+ iconSize: 12,
34815
35640
  fontWeight: "regular",
34816
35641
  fontSize: "sm",
34817
35642
  ref: ref,
@@ -34947,7 +35772,7 @@ var fontWeights = {
34947
35772
 
34948
35773
  function ownKeys$6(object, enumerableOnly) { var keys = keys$4(object); if (getOwnPropertySymbols$4) { var symbols = getOwnPropertySymbols$4(object); enumerableOnly && (symbols = filter(symbols).call(symbols, function (sym) { return getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
34949
35774
 
34950
- function _objectSpread$6(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach(_context = ownKeys$6(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach(_context2 = ownKeys$6(Object(source))).call(_context2, function (key) { defineProperty$7(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
35775
+ function _objectSpread$6(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach$1(_context = ownKeys$6(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach$1(_context2 = ownKeys$6(Object(source))).call(_context2, function (key) { defineProperty$8(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
34951
35776
 
34952
35777
  typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
34953
35778
  return a;
@@ -35004,125 +35829,6 @@ var _default$K = merge__default['default'](theme.components.Text, {
35004
35829
  leaveModule && leaveModule(module);
35005
35830
  })();
35006
35831
 
35007
- var freezing = !fails(function () {
35008
- // eslint-disable-next-line es-x/no-object-isextensible, es-x/no-object-preventextensions -- required for testing
35009
- return Object.isExtensible(Object.preventExtensions({}));
35010
- });
35011
-
35012
- // FF26- bug: ArrayBuffers are non-extensible, but Object.isExtensible does not report it
35013
-
35014
-
35015
- var arrayBufferNonExtensible = fails(function () {
35016
- if (typeof ArrayBuffer == 'function') {
35017
- var buffer = new ArrayBuffer(8);
35018
- // eslint-disable-next-line es-x/no-object-isextensible, es-x/no-object-defineproperty -- safe
35019
- if (Object.isExtensible(buffer)) Object.defineProperty(buffer, 'a', { value: 8 });
35020
- }
35021
- });
35022
-
35023
- // eslint-disable-next-line es-x/no-object-isextensible -- safe
35024
- var $isExtensible = Object.isExtensible;
35025
- var FAILS_ON_PRIMITIVES$1 = fails(function () { $isExtensible(1); });
35026
-
35027
- // `Object.isExtensible` method
35028
- // https://tc39.es/ecma262/#sec-object.isextensible
35029
- var objectIsExtensible = (FAILS_ON_PRIMITIVES$1 || arrayBufferNonExtensible) ? function isExtensible(it) {
35030
- if (!isObject$1(it)) return false;
35031
- if (arrayBufferNonExtensible && classofRaw(it) == 'ArrayBuffer') return false;
35032
- return $isExtensible ? $isExtensible(it) : true;
35033
- } : $isExtensible;
35034
-
35035
- var internalMetadata = createCommonjsModule(function (module) {
35036
- var defineProperty = objectDefineProperty.f;
35037
-
35038
-
35039
-
35040
-
35041
-
35042
-
35043
- var REQUIRED = false;
35044
- var METADATA = uid('meta');
35045
- var id = 0;
35046
-
35047
- var setMetadata = function (it) {
35048
- defineProperty(it, METADATA, { value: {
35049
- objectID: 'O' + id++, // object ID
35050
- weakData: {} // weak collections IDs
35051
- } });
35052
- };
35053
-
35054
- var fastKey = function (it, create) {
35055
- // return a primitive with prefix
35056
- if (!isObject$1(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;
35057
- if (!hasOwnProperty_1(it, METADATA)) {
35058
- // can't set metadata to uncaught frozen object
35059
- if (!objectIsExtensible(it)) return 'F';
35060
- // not necessary to add metadata
35061
- if (!create) return 'E';
35062
- // add missing metadata
35063
- setMetadata(it);
35064
- // return object ID
35065
- } return it[METADATA].objectID;
35066
- };
35067
-
35068
- var getWeakData = function (it, create) {
35069
- if (!hasOwnProperty_1(it, METADATA)) {
35070
- // can't set metadata to uncaught frozen object
35071
- if (!objectIsExtensible(it)) return true;
35072
- // not necessary to add metadata
35073
- if (!create) return false;
35074
- // add missing metadata
35075
- setMetadata(it);
35076
- // return the store of weak collections IDs
35077
- } return it[METADATA].weakData;
35078
- };
35079
-
35080
- // add metadata on freeze-family methods calling
35081
- var onFreeze = function (it) {
35082
- if (freezing && REQUIRED && objectIsExtensible(it) && !hasOwnProperty_1(it, METADATA)) setMetadata(it);
35083
- return it;
35084
- };
35085
-
35086
- var enable = function () {
35087
- meta.enable = function () { /* empty */ };
35088
- REQUIRED = true;
35089
- var getOwnPropertyNames = objectGetOwnPropertyNames.f;
35090
- var splice = functionUncurryThis([].splice);
35091
- var test = {};
35092
- test[METADATA] = 1;
35093
-
35094
- // prevent exposing of metadata key
35095
- if (getOwnPropertyNames(test).length) {
35096
- objectGetOwnPropertyNames.f = function (it) {
35097
- var result = getOwnPropertyNames(it);
35098
- for (var i = 0, length = result.length; i < length; i++) {
35099
- if (result[i] === METADATA) {
35100
- splice(result, i, 1);
35101
- break;
35102
- }
35103
- } return result;
35104
- };
35105
-
35106
- _export({ target: 'Object', stat: true, forced: true }, {
35107
- getOwnPropertyNames: objectGetOwnPropertyNamesExternal.f
35108
- });
35109
- }
35110
- };
35111
-
35112
- var meta = module.exports = {
35113
- enable: enable,
35114
- fastKey: fastKey,
35115
- getWeakData: getWeakData,
35116
- onFreeze: onFreeze
35117
- };
35118
-
35119
- hiddenKeys$1[METADATA] = true;
35120
- });
35121
- internalMetadata.enable;
35122
- internalMetadata.fastKey;
35123
- internalMetadata.getWeakData;
35124
- internalMetadata.onFreeze;
35125
-
35126
35832
  var onFreeze = internalMetadata.onFreeze;
35127
35833
 
35128
35834
  // eslint-disable-next-line es-x/no-object-freeze -- safe
@@ -35150,7 +35856,7 @@ var freeze = freeze$1;
35150
35856
 
35151
35857
  function ownKeys$5(object, enumerableOnly) { var keys = keys$4(object); if (getOwnPropertySymbols$4) { var symbols = getOwnPropertySymbols$4(object); enumerableOnly && (symbols = filter(symbols).call(symbols, function (sym) { return getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
35152
35858
 
35153
- function _objectSpread$5(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach(_context = ownKeys$5(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach(_context2 = ownKeys$5(Object(source))).call(_context2, function (key) { defineProperty$7(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
35859
+ function _objectSpread$5(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach$1(_context = ownKeys$5(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach$1(_context2 = ownKeys$5(Object(source))).call(_context2, function (key) { defineProperty$8(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
35154
35860
 
35155
35861
  typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
35156
35862
  return a;
@@ -35712,7 +36418,7 @@ var _default$C = Spinner;
35712
36418
 
35713
36419
  function ownKeys$4(object, enumerableOnly) { var keys = keys$4(object); if (getOwnPropertySymbols$4) { var symbols = getOwnPropertySymbols$4(object); enumerableOnly && (symbols = filter(symbols).call(symbols, function (sym) { return getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
35714
36420
 
35715
- function _objectSpread$4(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach(_context = ownKeys$4(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach(_context2 = ownKeys$4(Object(source))).call(_context2, function (key) { defineProperty$7(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
36421
+ function _objectSpread$4(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach$1(_context = ownKeys$4(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach$1(_context2 = ownKeys$4(Object(source))).call(_context2, function (key) { defineProperty$8(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
35716
36422
 
35717
36423
  typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
35718
36424
  return a;
@@ -35895,56 +36601,6 @@ var _default$y = Container;
35895
36601
  leaveModule && leaveModule(module);
35896
36602
  })();
35897
36603
 
35898
- var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
35899
- var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
35900
- var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
35901
- var TypeError$1 = global_1.TypeError;
35902
-
35903
- // We can't use this feature detection in V8 since it causes
35904
- // deoptimization and serious performance degradation
35905
- // https://github.com/zloirock/core-js/issues/679
35906
- var IS_CONCAT_SPREADABLE_SUPPORT = engineV8Version >= 51 || !fails(function () {
35907
- var array = [];
35908
- array[IS_CONCAT_SPREADABLE] = false;
35909
- return array.concat()[0] !== array;
35910
- });
35911
-
35912
- var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
35913
-
35914
- var isConcatSpreadable = function (O) {
35915
- if (!isObject$1(O)) return false;
35916
- var spreadable = O[IS_CONCAT_SPREADABLE];
35917
- return spreadable !== undefined ? !!spreadable : isArray(O);
35918
- };
35919
-
35920
- var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
35921
-
35922
- // `Array.prototype.concat` method
35923
- // https://tc39.es/ecma262/#sec-array.prototype.concat
35924
- // with adding support of @@isConcatSpreadable and @@species
35925
- _export({ target: 'Array', proto: true, forced: FORCED }, {
35926
- // eslint-disable-next-line no-unused-vars -- required for `.length`
35927
- concat: function concat(arg) {
35928
- var O = toObject(this);
35929
- var A = arraySpeciesCreate(O, 0);
35930
- var n = 0;
35931
- var i, k, length, len, E;
35932
- for (i = -1, length = arguments.length; i < length; i++) {
35933
- E = i === -1 ? O : arguments[i];
35934
- if (isConcatSpreadable(E)) {
35935
- len = lengthOfArrayLike(E);
35936
- if (n + len > MAX_SAFE_INTEGER) throw TypeError$1(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
35937
- for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
35938
- } else {
35939
- if (n >= MAX_SAFE_INTEGER) throw TypeError$1(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
35940
- createProperty(A, n++, E);
35941
- }
35942
- }
35943
- A.length = n;
35944
- return A;
35945
- }
35946
- });
35947
-
35948
36604
  var concat$3 = entryVirtual('Array').concat;
35949
36605
 
35950
36606
  var ArrayPrototype$1 = Array.prototype;
@@ -36073,7 +36729,7 @@ var _default$x = sizes;
36073
36729
 
36074
36730
  function ownKeys$3(object, enumerableOnly) { var keys = keys$4(object); if (getOwnPropertySymbols$4) { var symbols = getOwnPropertySymbols$4(object); enumerableOnly && (symbols = filter(symbols).call(symbols, function (sym) { return getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
36075
36731
 
36076
- function _objectSpread$3(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach(_context = ownKeys$3(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach(_context2 = ownKeys$3(Object(source))).call(_context2, function (key) { defineProperty$7(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
36732
+ function _objectSpread$3(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach$1(_context = ownKeys$3(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach$1(_context2 = ownKeys$3(Object(source))).call(_context2, function (key) { defineProperty$8(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
36077
36733
 
36078
36734
  typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
36079
36735
  return a;
@@ -36467,7 +37123,7 @@ var _default$r = merge__default['default'](theme.components.List, {
36467
37123
 
36468
37124
  function ownKeys$2(object, enumerableOnly) { var keys = keys$4(object); if (getOwnPropertySymbols$4) { var symbols = getOwnPropertySymbols$4(object); enumerableOnly && (symbols = filter(symbols).call(symbols, function (sym) { return getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
36469
37125
 
36470
- function _objectSpread$2(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach(_context = ownKeys$2(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach(_context2 = ownKeys$2(Object(source))).call(_context2, function (key) { defineProperty$7(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
37126
+ function _objectSpread$2(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach$1(_context = ownKeys$2(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach$1(_context2 = ownKeys$2(Object(source))).call(_context2, function (key) { defineProperty$8(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
36471
37127
 
36472
37128
  typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
36473
37129
  return a;
@@ -36959,7 +37615,8 @@ var popperStyles = function popperStyles(_ref) {
36959
37615
  return t.colors.gray['100'];
36960
37616
  },
36961
37617
  borderWidth: '1px',
36962
- borderStyle: 'solid'
37618
+ borderStyle: 'solid',
37619
+ zIndex: 'layer10'
36963
37620
  };
36964
37621
  };
36965
37622
 
@@ -37213,7 +37870,7 @@ var components = /*#__PURE__*/Object.freeze({
37213
37870
 
37214
37871
  function ownKeys$1(object, enumerableOnly) { var keys = keys$4(object); if (getOwnPropertySymbols$4) { var symbols = getOwnPropertySymbols$4(object); enumerableOnly && (symbols = filter(symbols).call(symbols, function (sym) { return getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
37215
37872
 
37216
- function _objectSpread$1(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach(_context = ownKeys$1(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach(_context2 = ownKeys$1(Object(source))).call(_context2, function (key) { defineProperty$7(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
37873
+ function _objectSpread$1(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach$1(_context = ownKeys$1(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach$1(_context2 = ownKeys$1(Object(source))).call(_context2, function (key) { defineProperty$8(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
37217
37874
 
37218
37875
  typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
37219
37876
  return a;
@@ -37342,10 +37999,6 @@ var _default$9 = Card;
37342
37999
  leaveModule && leaveModule(module);
37343
38000
  })();
37344
38001
 
37345
- typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
37346
- return a;
37347
- };
37348
-
37349
38002
  /**
37350
38003
  * SSR Window 2.0.0
37351
38004
  * Better handling for window object in SSR environment
@@ -37487,7 +38140,7 @@ var environment$1 = createCommonjsModule(function (module, exports) {
37487
38140
 
37488
38141
 
37489
38142
 
37490
- defineProperty$7(exports, "__esModule", {
38143
+ defineProperty$8(exports, "__esModule", {
37491
38144
  value: true
37492
38145
  });
37493
38146
 
@@ -37894,7 +38547,7 @@ var _excluded$4 = ["isSSR", "cloudinaryImageId", "cloudinaryTemplate", "cloudina
37894
38547
 
37895
38548
  function ownKeys(object, enumerableOnly) { var keys = keys$4(object); if (getOwnPropertySymbols$4) { var symbols = getOwnPropertySymbols$4(object); enumerableOnly && (symbols = filter(symbols).call(symbols, function (sym) { return getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
37896
38549
 
37897
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context3, _context4; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach(_context3 = ownKeys(Object(source), !0)).call(_context3, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach(_context4 = ownKeys(Object(source))).call(_context4, function (key) { defineProperty$7(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
38550
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context3, _context4; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? forEach$1(_context3 = ownKeys(Object(source), !0)).call(_context3, function (key) { _defineProperty(target, key, source[key]); }) : getOwnPropertyDescriptors ? defineProperties(target, getOwnPropertyDescriptors(source)) : forEach$1(_context4 = ownKeys(Object(source))).call(_context4, function (key) { defineProperty$8(target, key, getOwnPropertyDescriptor(source, key)); }); } return target; }
37898
38551
 
37899
38552
  typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default.signature : function (a) {
37900
38553
  return a;