@thecb/components 7.9.1-beta.0 → 7.9.2-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -21325,7 +21325,7 @@ var check = function (it) {
21325
21325
 
21326
21326
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
21327
21327
  var global_1 =
21328
- // eslint-disable-next-line es/no-global-this -- safe
21328
+ // eslint-disable-next-line es-x/no-global-this -- safe
21329
21329
  check(typeof globalThis == 'object' && globalThis) ||
21330
21330
  check(typeof window == 'object' && window) ||
21331
21331
  // eslint-disable-next-line no-restricted-globals -- safe
@@ -21344,12 +21344,12 @@ var fails = function (exec) {
21344
21344
 
21345
21345
  // Detect IE8's incomplete defineProperty implementation
21346
21346
  var descriptors = !fails(function () {
21347
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
21347
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
21348
21348
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
21349
21349
  });
21350
21350
 
21351
21351
  var functionBindNative = !fails(function () {
21352
- // eslint-disable-next-line es/no-function-prototype-bind -- safe
21352
+ // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
21353
21353
  var test = (function () { /* empty */ }).bind();
21354
21354
  // eslint-disable-next-line no-prototype-builtins -- safe
21355
21355
  return typeof test != 'function' || test.hasOwnProperty('prototype');
@@ -21362,7 +21362,7 @@ var functionCall = functionBindNative ? call.bind(call) : function () {
21362
21362
  };
21363
21363
 
21364
21364
  var $propertyIsEnumerable = {}.propertyIsEnumerable;
21365
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
21365
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
21366
21366
  var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
21367
21367
 
21368
21368
  // Nashorn ~ JDK8 bug
@@ -21389,29 +21389,25 @@ var createPropertyDescriptor = function (bitmap, value) {
21389
21389
  };
21390
21390
 
21391
21391
  var FunctionPrototype = Function.prototype;
21392
+ var bind$1 = FunctionPrototype.bind;
21392
21393
  var call$1 = FunctionPrototype.call;
21393
- var uncurryThisWithBind = functionBindNative && FunctionPrototype.bind.bind(call$1, call$1);
21394
+ var uncurryThis = functionBindNative && bind$1.bind(call$1, call$1);
21394
21395
 
21395
- var functionUncurryThisRaw = function (fn) {
21396
- return functionBindNative ? uncurryThisWithBind(fn) : function () {
21396
+ var functionUncurryThis = functionBindNative ? function (fn) {
21397
+ return fn && uncurryThis(fn);
21398
+ } : function (fn) {
21399
+ return fn && function () {
21397
21400
  return call$1.apply(fn, arguments);
21398
21401
  };
21399
21402
  };
21400
21403
 
21401
- var toString$2 = functionUncurryThisRaw({}.toString);
21402
- var stringSlice = functionUncurryThisRaw(''.slice);
21404
+ var toString$2 = functionUncurryThis({}.toString);
21405
+ var stringSlice = functionUncurryThis(''.slice);
21403
21406
 
21404
21407
  var classofRaw = function (it) {
21405
21408
  return stringSlice(toString$2(it), 8, -1);
21406
21409
  };
21407
21410
 
21408
- var functionUncurryThis = function (fn) {
21409
- // Nashorn bug:
21410
- // https://github.com/zloirock/core-js/issues/1128
21411
- // https://github.com/zloirock/core-js/issues/1130
21412
- if (classofRaw(fn) === 'Function') return functionUncurryThisRaw(fn);
21413
- };
21414
-
21415
21411
  var $Object = Object;
21416
21412
  var split = functionUncurryThis(''.split);
21417
21413
 
@@ -21424,18 +21420,12 @@ var indexedObject = fails(function () {
21424
21420
  return classofRaw(it) == 'String' ? split(it, '') : $Object(it);
21425
21421
  } : $Object;
21426
21422
 
21427
- // we can't use just `it == null` since of `document.all` special case
21428
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
21429
- var isNullOrUndefined = function (it) {
21430
- return it === null || it === undefined;
21431
- };
21432
-
21433
21423
  var $TypeError = TypeError;
21434
21424
 
21435
21425
  // `RequireObjectCoercible` abstract operation
21436
21426
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
21437
21427
  var requireObjectCoercible = function (it) {
21438
- if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it);
21428
+ if (it == undefined) throw $TypeError("Can't call method on " + it);
21439
21429
  return it;
21440
21430
  };
21441
21431
 
@@ -21447,31 +21437,13 @@ var toIndexedObject = function (it) {
21447
21437
  return indexedObject(requireObjectCoercible(it));
21448
21438
  };
21449
21439
 
21450
- var documentAll = typeof document == 'object' && document.all;
21451
-
21452
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
21453
- var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
21454
-
21455
- var documentAll_1 = {
21456
- all: documentAll,
21457
- IS_HTMLDDA: IS_HTMLDDA
21458
- };
21459
-
21460
- var documentAll$1 = documentAll_1.all;
21461
-
21462
21440
  // `IsCallable` abstract operation
21463
21441
  // https://tc39.es/ecma262/#sec-iscallable
21464
- var isCallable = documentAll_1.IS_HTMLDDA ? function (argument) {
21465
- return typeof argument == 'function' || argument === documentAll$1;
21466
- } : function (argument) {
21442
+ var isCallable = function (argument) {
21467
21443
  return typeof argument == 'function';
21468
21444
  };
21469
21445
 
21470
- var documentAll$2 = documentAll_1.all;
21471
-
21472
- var isObject = documentAll_1.IS_HTMLDDA ? function (it) {
21473
- return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll$2;
21474
- } : function (it) {
21446
+ var isObject = function (it) {
21475
21447
  return typeof it == 'object' ? it !== null : isCallable(it);
21476
21448
  };
21477
21449
 
@@ -21512,12 +21484,12 @@ if (!version && engineUserAgent) {
21512
21484
 
21513
21485
  var engineV8Version = version;
21514
21486
 
21515
- /* eslint-disable es/no-symbol -- required for testing */
21487
+ /* eslint-disable es-x/no-symbol -- required for testing */
21516
21488
 
21517
21489
 
21518
21490
 
21519
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
21520
- var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails(function () {
21491
+ // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
21492
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
21521
21493
  var symbol = Symbol();
21522
21494
  // Chrome 38 Symbol has incorrect toString conversion
21523
21495
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -21526,10 +21498,10 @@ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails(functi
21526
21498
  !Symbol.sham && engineV8Version && engineV8Version < 41;
21527
21499
  });
21528
21500
 
21529
- /* eslint-disable es/no-symbol -- required for testing */
21501
+ /* eslint-disable es-x/no-symbol -- required for testing */
21530
21502
 
21531
21503
 
21532
- var useSymbolAsUid = symbolConstructorDetection
21504
+ var useSymbolAsUid = nativeSymbol
21533
21505
  && !Symbol.sham
21534
21506
  && typeof Symbol.iterator == 'symbol';
21535
21507
 
@@ -21564,7 +21536,7 @@ var aCallable = function (argument) {
21564
21536
  // https://tc39.es/ecma262/#sec-getmethod
21565
21537
  var getMethod = function (V, P) {
21566
21538
  var func = V[P];
21567
- return isNullOrUndefined(func) ? undefined : aCallable(func);
21539
+ return func == null ? undefined : aCallable(func);
21568
21540
  };
21569
21541
 
21570
21542
  var $TypeError$2 = TypeError;
@@ -21579,7 +21551,7 @@ var ordinaryToPrimitive = function (input, pref) {
21579
21551
  throw $TypeError$2("Can't convert object to primitive value");
21580
21552
  };
21581
21553
 
21582
- // eslint-disable-next-line es/no-object-defineproperty -- safe
21554
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
21583
21555
  var defineProperty = Object.defineProperty;
21584
21556
 
21585
21557
  var defineGlobalProperty = function (key, value) {
@@ -21599,10 +21571,10 @@ var shared = createCommonjsModule(function (module) {
21599
21571
  (module.exports = function (key, value) {
21600
21572
  return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
21601
21573
  })('versions', []).push({
21602
- version: '3.25.5',
21574
+ version: '3.24.1',
21603
21575
  mode: 'global',
21604
21576
  copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
21605
- license: 'https://github.com/zloirock/core-js/blob/v3.25.5/LICENSE',
21577
+ license: 'https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE',
21606
21578
  source: 'https://github.com/zloirock/core-js'
21607
21579
  });
21608
21580
  });
@@ -21619,7 +21591,7 @@ var hasOwnProperty = functionUncurryThis({}.hasOwnProperty);
21619
21591
 
21620
21592
  // `HasOwnProperty` abstract operation
21621
21593
  // https://tc39.es/ecma262/#sec-hasownproperty
21622
- // eslint-disable-next-line es/no-object-hasown -- safe
21594
+ // eslint-disable-next-line es-x/no-object-hasown -- safe
21623
21595
  var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
21624
21596
  return hasOwnProperty(toObject(it), key);
21625
21597
  };
@@ -21638,9 +21610,9 @@ var symbolFor = Symbol$1 && Symbol$1['for'];
21638
21610
  var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
21639
21611
 
21640
21612
  var wellKnownSymbol = function (name) {
21641
- if (!hasOwnProperty_1(WellKnownSymbolsStore, name) || !(symbolConstructorDetection || typeof WellKnownSymbolsStore[name] == 'string')) {
21613
+ if (!hasOwnProperty_1(WellKnownSymbolsStore, name) || !(nativeSymbol || typeof WellKnownSymbolsStore[name] == 'string')) {
21642
21614
  var description = 'Symbol.' + name;
21643
- if (symbolConstructorDetection && hasOwnProperty_1(Symbol$1, name)) {
21615
+ if (nativeSymbol && hasOwnProperty_1(Symbol$1, name)) {
21644
21616
  WellKnownSymbolsStore[name] = Symbol$1[name];
21645
21617
  } else if (useSymbolAsUid && symbolFor) {
21646
21618
  WellKnownSymbolsStore[name] = symbolFor(description);
@@ -21686,13 +21658,13 @@ var documentCreateElement = function (it) {
21686
21658
 
21687
21659
  // Thanks to IE8 for its funny defineProperty
21688
21660
  var ie8DomDefine = !descriptors && !fails(function () {
21689
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
21661
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
21690
21662
  return Object.defineProperty(documentCreateElement('div'), 'a', {
21691
21663
  get: function () { return 7; }
21692
21664
  }).a != 7;
21693
21665
  });
21694
21666
 
21695
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
21667
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
21696
21668
  var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
21697
21669
 
21698
21670
  // `Object.getOwnPropertyDescriptor` method
@@ -21713,7 +21685,7 @@ var objectGetOwnPropertyDescriptor = {
21713
21685
  // V8 ~ Chrome 36-
21714
21686
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
21715
21687
  var v8PrototypeDefineBug = descriptors && fails(function () {
21716
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
21688
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
21717
21689
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
21718
21690
  value: 42,
21719
21691
  writable: false
@@ -21730,9 +21702,9 @@ var anObject = function (argument) {
21730
21702
  };
21731
21703
 
21732
21704
  var $TypeError$5 = TypeError;
21733
- // eslint-disable-next-line es/no-object-defineproperty -- safe
21705
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
21734
21706
  var $defineProperty = Object.defineProperty;
21735
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
21707
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
21736
21708
  var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
21737
21709
  var ENUMERABLE = 'enumerable';
21738
21710
  var CONFIGURABLE = 'configurable';
@@ -21779,7 +21751,7 @@ var createNonEnumerableProperty = descriptors ? function (object, key, value) {
21779
21751
  };
21780
21752
 
21781
21753
  var FunctionPrototype$1 = Function.prototype;
21782
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
21754
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
21783
21755
  var getDescriptor = descriptors && Object.getOwnPropertyDescriptor;
21784
21756
 
21785
21757
  var EXISTS$1 = hasOwnProperty_1(FunctionPrototype$1, 'name');
@@ -21806,7 +21778,7 @@ var inspectSource = sharedStore.inspectSource;
21806
21778
 
21807
21779
  var WeakMap$1 = global_1.WeakMap;
21808
21780
 
21809
- var weakMapBasicDetection = isCallable(WeakMap$1) && /native code/.test(String(WeakMap$1));
21781
+ var nativeWeakMap = isCallable(WeakMap$1) && /native code/.test(inspectSource(WeakMap$1));
21810
21782
 
21811
21783
  var keys$1 = shared('keys');
21812
21784
 
@@ -21834,30 +21806,28 @@ var getterFor = function (TYPE) {
21834
21806
  };
21835
21807
  };
21836
21808
 
21837
- if (weakMapBasicDetection || sharedStore.state) {
21809
+ if (nativeWeakMap || sharedStore.state) {
21838
21810
  var store$1 = sharedStore.state || (sharedStore.state = new WeakMap$2());
21839
- /* eslint-disable no-self-assign -- prototype methods protection */
21840
- store$1.get = store$1.get;
21841
- store$1.has = store$1.has;
21842
- store$1.set = store$1.set;
21843
- /* eslint-enable no-self-assign -- prototype methods protection */
21811
+ var wmget = functionUncurryThis(store$1.get);
21812
+ var wmhas = functionUncurryThis(store$1.has);
21813
+ var wmset = functionUncurryThis(store$1.set);
21844
21814
  set = function (it, metadata) {
21845
- if (store$1.has(it)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
21815
+ if (wmhas(store$1, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
21846
21816
  metadata.facade = it;
21847
- store$1.set(it, metadata);
21817
+ wmset(store$1, it, metadata);
21848
21818
  return metadata;
21849
21819
  };
21850
21820
  get = function (it) {
21851
- return store$1.get(it) || {};
21821
+ return wmget(store$1, it) || {};
21852
21822
  };
21853
21823
  has = function (it) {
21854
- return store$1.has(it);
21824
+ return wmhas(store$1, it);
21855
21825
  };
21856
21826
  } else {
21857
21827
  var STATE = sharedKey('state');
21858
21828
  hiddenKeys[STATE] = true;
21859
21829
  set = function (it, metadata) {
21860
- if (hasOwnProperty_1(it, STATE)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
21830
+ if (hasOwnProperty_1(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
21861
21831
  metadata.facade = it;
21862
21832
  createNonEnumerableProperty(it, STATE, metadata);
21863
21833
  return metadata;
@@ -21885,7 +21855,7 @@ var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
21885
21855
 
21886
21856
  var enforceInternalState = internalState.enforce;
21887
21857
  var getInternalState = internalState.get;
21888
- // eslint-disable-next-line es/no-object-defineproperty -- safe
21858
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
21889
21859
  var defineProperty = Object.defineProperty;
21890
21860
 
21891
21861
  var CONFIGURABLE_LENGTH = descriptors && !fails(function () {
@@ -21954,7 +21924,7 @@ var floor = Math.floor;
21954
21924
 
21955
21925
  // `Math.trunc` method
21956
21926
  // https://tc39.es/ecma262/#sec-math.trunc
21957
- // eslint-disable-next-line es/no-math-trunc -- safe
21927
+ // eslint-disable-next-line es-x/no-math-trunc -- safe
21958
21928
  var mathTrunc = Math.trunc || function trunc(x) {
21959
21929
  var n = +x;
21960
21930
  return (n > 0 ? floor : ceil)(n);
@@ -22055,7 +22025,7 @@ var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
22055
22025
 
22056
22026
  // `Object.getOwnPropertyNames` method
22057
22027
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
22058
- // eslint-disable-next-line es/no-object-getownpropertynames -- safe
22028
+ // eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
22059
22029
  var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
22060
22030
  return objectKeysInternal(O, hiddenKeys$1);
22061
22031
  };
@@ -22064,7 +22034,7 @@ var objectGetOwnPropertyNames = {
22064
22034
  f: f$3
22065
22035
  };
22066
22036
 
22067
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
22037
+ // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
22068
22038
  var f$4 = Object.getOwnPropertySymbols;
22069
22039
 
22070
22040
  var objectGetOwnPropertySymbols = {
@@ -22208,7 +22178,7 @@ var toString_1 = function (argument) {
22208
22178
  var charAt = functionUncurryThis(''.charAt);
22209
22179
 
22210
22180
  var FORCED = fails(function () {
22211
- // eslint-disable-next-line es/no-array-string-prototype-at -- safe
22181
+ // eslint-disable-next-line es-x/no-array-string-prototype-at -- safe
22212
22182
  return '𠮷'.at(-2) !== '\uD842';
22213
22183
  });
22214
22184
 
@@ -22226,14 +22196,14 @@ _export({ target: 'String', proto: true, forced: FORCED }, {
22226
22196
 
22227
22197
  // `Object.keys` method
22228
22198
  // https://tc39.es/ecma262/#sec-object.keys
22229
- // eslint-disable-next-line es/no-object-keys -- safe
22199
+ // eslint-disable-next-line es-x/no-object-keys -- safe
22230
22200
  var objectKeys = Object.keys || function keys(O) {
22231
22201
  return objectKeysInternal(O, enumBugKeys);
22232
22202
  };
22233
22203
 
22234
22204
  // `Object.defineProperties` method
22235
22205
  // https://tc39.es/ecma262/#sec-object.defineproperties
22236
- // eslint-disable-next-line es/no-object-defineproperties -- safe
22206
+ // eslint-disable-next-line es-x/no-object-defineproperties -- safe
22237
22207
  var f$5 = descriptors && !v8PrototypeDefineBug ? Object.defineProperties : function defineProperties(O, Properties) {
22238
22208
  anObject(O);
22239
22209
  var props = toIndexedObject(Properties);
@@ -22322,7 +22292,7 @@ hiddenKeys[IE_PROTO] = true;
22322
22292
 
22323
22293
  // `Object.create` method
22324
22294
  // https://tc39.es/ecma262/#sec-object.create
22325
- // eslint-disable-next-line es/no-object-create -- safe
22295
+ // eslint-disable-next-line es-x/no-object-create -- safe
22326
22296
  var objectCreate = Object.create || function create(O, Properties) {
22327
22297
  var result;
22328
22298
  if (O !== null) {
@@ -22368,13 +22338,13 @@ _export({ target: 'Array', proto: true }, {
22368
22338
 
22369
22339
  addToUnscopables('at');
22370
22340
 
22371
- // eslint-disable-next-line es/no-typed-arrays -- safe
22372
- var arrayBufferBasicDetection = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
22341
+ // eslint-disable-next-line es-x/no-typed-arrays -- safe
22342
+ var arrayBufferNative = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
22373
22343
 
22374
22344
  var correctPrototypeGetter = !fails(function () {
22375
22345
  function F() { /* empty */ }
22376
22346
  F.prototype.constructor = null;
22377
- // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
22347
+ // eslint-disable-next-line es-x/no-object-getprototypeof -- required for testing
22378
22348
  return Object.getPrototypeOf(new F()) !== F.prototype;
22379
22349
  });
22380
22350
 
@@ -22384,7 +22354,7 @@ var ObjectPrototype = $Object$4.prototype;
22384
22354
 
22385
22355
  // `Object.getPrototypeOf` method
22386
22356
  // https://tc39.es/ecma262/#sec-object.getprototypeof
22387
- // eslint-disable-next-line es/no-object-getprototypeof -- safe
22357
+ // eslint-disable-next-line es-x/no-object-getprototypeof -- safe
22388
22358
  var objectGetPrototypeOf = correctPrototypeGetter ? $Object$4.getPrototypeOf : function (O) {
22389
22359
  var object = toObject(O);
22390
22360
  if (hasOwnProperty_1(object, IE_PROTO$1)) return object[IE_PROTO$1];
@@ -22410,13 +22380,13 @@ var aPossiblePrototype = function (argument) {
22410
22380
  // `Object.setPrototypeOf` method
22411
22381
  // https://tc39.es/ecma262/#sec-object.setprototypeof
22412
22382
  // Works with __proto__ only. Old v8 can't work with null proto objects.
22413
- // eslint-disable-next-line es/no-object-setprototypeof -- safe
22383
+ // eslint-disable-next-line es-x/no-object-setprototypeof -- safe
22414
22384
  var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
22415
22385
  var CORRECT_SETTER = false;
22416
22386
  var test = {};
22417
22387
  var setter;
22418
22388
  try {
22419
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22389
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22420
22390
  setter = functionUncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
22421
22391
  setter(test, []);
22422
22392
  CORRECT_SETTER = test instanceof Array;
@@ -22453,7 +22423,7 @@ var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag');
22453
22423
  var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG');
22454
22424
  var TYPED_ARRAY_CONSTRUCTOR = 'TypedArrayConstructor';
22455
22425
  // Fixing native typed arrays in Opera Presto crashes the browser, see #595
22456
- var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferBasicDetection && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
22426
+ var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferNative && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
22457
22427
  var TYPED_ARRAY_TAG_REQUIRED = false;
22458
22428
  var NAME, Constructor, Prototype;
22459
22429
 
@@ -45699,19 +45669,25 @@ var menu = posed.div({
45699
45669
  var ImposterMenu = styled(menu).withConfig({
45700
45670
  displayName: "NavMenuMobile__ImposterMenu",
45701
45671
  componentId: "sc-1pf0qp7-0"
45702
- })(["position:fixed;top:72px;"]);
45672
+ })(["position:fixed;top:", ";"], function (_ref) {
45673
+ var headerSize = _ref.headerSize;
45674
+ return headerSize;
45675
+ });
45703
45676
 
45704
- var NavMenuMobile = function NavMenuMobile(_ref) {
45705
- var id = _ref.id,
45706
- _ref$menuContent = _ref.menuContent,
45707
- menuContent = _ref$menuContent === void 0 ? [] : _ref$menuContent,
45708
- _ref$visible = _ref.visible,
45709
- visible = _ref$visible === void 0 ? false : _ref$visible,
45710
- themeValues = _ref.themeValues;
45677
+ var NavMenuMobile = function NavMenuMobile(_ref2) {
45678
+ var id = _ref2.id,
45679
+ _ref2$menuContent = _ref2.menuContent,
45680
+ menuContent = _ref2$menuContent === void 0 ? [] : _ref2$menuContent,
45681
+ _ref2$visible = _ref2.visible,
45682
+ visible = _ref2$visible === void 0 ? false : _ref2$visible,
45683
+ _ref2$headerSize = _ref2.headerSize,
45684
+ headerSize = _ref2$headerSize === void 0 ? "72px" : _ref2$headerSize,
45685
+ themeValues = _ref2.themeValues;
45711
45686
  return /*#__PURE__*/React.createElement(ImposterMenu, {
45712
45687
  id: id,
45713
45688
  initialPose: "invisible",
45714
- pose: visible ? "visible" : "invisible"
45689
+ pose: visible ? "visible" : "invisible",
45690
+ headerSize: headerSize
45715
45691
  }, /*#__PURE__*/React.createElement(Box, {
45716
45692
  width: "100vw",
45717
45693
  padding: "1rem 0.5rem",