@thecb/components 7.9.1 → 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.cjs.js CHANGED
@@ -21333,7 +21333,7 @@ var check = function (it) {
21333
21333
 
21334
21334
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
21335
21335
  var global_1 =
21336
- // eslint-disable-next-line es/no-global-this -- safe
21336
+ // eslint-disable-next-line es-x/no-global-this -- safe
21337
21337
  check(typeof globalThis == 'object' && globalThis) ||
21338
21338
  check(typeof window == 'object' && window) ||
21339
21339
  // eslint-disable-next-line no-restricted-globals -- safe
@@ -21352,12 +21352,12 @@ var fails = function (exec) {
21352
21352
 
21353
21353
  // Detect IE8's incomplete defineProperty implementation
21354
21354
  var descriptors = !fails(function () {
21355
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
21355
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
21356
21356
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
21357
21357
  });
21358
21358
 
21359
21359
  var functionBindNative = !fails(function () {
21360
- // eslint-disable-next-line es/no-function-prototype-bind -- safe
21360
+ // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
21361
21361
  var test = (function () { /* empty */ }).bind();
21362
21362
  // eslint-disable-next-line no-prototype-builtins -- safe
21363
21363
  return typeof test != 'function' || test.hasOwnProperty('prototype');
@@ -21370,7 +21370,7 @@ var functionCall = functionBindNative ? call.bind(call) : function () {
21370
21370
  };
21371
21371
 
21372
21372
  var $propertyIsEnumerable = {}.propertyIsEnumerable;
21373
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
21373
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
21374
21374
  var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
21375
21375
 
21376
21376
  // Nashorn ~ JDK8 bug
@@ -21397,29 +21397,25 @@ var createPropertyDescriptor = function (bitmap, value) {
21397
21397
  };
21398
21398
 
21399
21399
  var FunctionPrototype = Function.prototype;
21400
+ var bind$1 = FunctionPrototype.bind;
21400
21401
  var call$1 = FunctionPrototype.call;
21401
- var uncurryThisWithBind = functionBindNative && FunctionPrototype.bind.bind(call$1, call$1);
21402
+ var uncurryThis = functionBindNative && bind$1.bind(call$1, call$1);
21402
21403
 
21403
- var functionUncurryThisRaw = function (fn) {
21404
- return functionBindNative ? uncurryThisWithBind(fn) : function () {
21404
+ var functionUncurryThis = functionBindNative ? function (fn) {
21405
+ return fn && uncurryThis(fn);
21406
+ } : function (fn) {
21407
+ return fn && function () {
21405
21408
  return call$1.apply(fn, arguments);
21406
21409
  };
21407
21410
  };
21408
21411
 
21409
- var toString$2 = functionUncurryThisRaw({}.toString);
21410
- var stringSlice = functionUncurryThisRaw(''.slice);
21412
+ var toString$2 = functionUncurryThis({}.toString);
21413
+ var stringSlice = functionUncurryThis(''.slice);
21411
21414
 
21412
21415
  var classofRaw = function (it) {
21413
21416
  return stringSlice(toString$2(it), 8, -1);
21414
21417
  };
21415
21418
 
21416
- var functionUncurryThis = function (fn) {
21417
- // Nashorn bug:
21418
- // https://github.com/zloirock/core-js/issues/1128
21419
- // https://github.com/zloirock/core-js/issues/1130
21420
- if (classofRaw(fn) === 'Function') return functionUncurryThisRaw(fn);
21421
- };
21422
-
21423
21419
  var $Object = Object;
21424
21420
  var split = functionUncurryThis(''.split);
21425
21421
 
@@ -21432,18 +21428,12 @@ var indexedObject = fails(function () {
21432
21428
  return classofRaw(it) == 'String' ? split(it, '') : $Object(it);
21433
21429
  } : $Object;
21434
21430
 
21435
- // we can't use just `it == null` since of `document.all` special case
21436
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
21437
- var isNullOrUndefined = function (it) {
21438
- return it === null || it === undefined;
21439
- };
21440
-
21441
21431
  var $TypeError = TypeError;
21442
21432
 
21443
21433
  // `RequireObjectCoercible` abstract operation
21444
21434
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
21445
21435
  var requireObjectCoercible = function (it) {
21446
- if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it);
21436
+ if (it == undefined) throw $TypeError("Can't call method on " + it);
21447
21437
  return it;
21448
21438
  };
21449
21439
 
@@ -21455,31 +21445,13 @@ var toIndexedObject = function (it) {
21455
21445
  return indexedObject(requireObjectCoercible(it));
21456
21446
  };
21457
21447
 
21458
- var documentAll = typeof document == 'object' && document.all;
21459
-
21460
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
21461
- var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
21462
-
21463
- var documentAll_1 = {
21464
- all: documentAll,
21465
- IS_HTMLDDA: IS_HTMLDDA
21466
- };
21467
-
21468
- var documentAll$1 = documentAll_1.all;
21469
-
21470
21448
  // `IsCallable` abstract operation
21471
21449
  // https://tc39.es/ecma262/#sec-iscallable
21472
- var isCallable = documentAll_1.IS_HTMLDDA ? function (argument) {
21473
- return typeof argument == 'function' || argument === documentAll$1;
21474
- } : function (argument) {
21450
+ var isCallable = function (argument) {
21475
21451
  return typeof argument == 'function';
21476
21452
  };
21477
21453
 
21478
- var documentAll$2 = documentAll_1.all;
21479
-
21480
- var isObject = documentAll_1.IS_HTMLDDA ? function (it) {
21481
- return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll$2;
21482
- } : function (it) {
21454
+ var isObject = function (it) {
21483
21455
  return typeof it == 'object' ? it !== null : isCallable(it);
21484
21456
  };
21485
21457
 
@@ -21520,12 +21492,12 @@ if (!version && engineUserAgent) {
21520
21492
 
21521
21493
  var engineV8Version = version;
21522
21494
 
21523
- /* eslint-disable es/no-symbol -- required for testing */
21495
+ /* eslint-disable es-x/no-symbol -- required for testing */
21524
21496
 
21525
21497
 
21526
21498
 
21527
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
21528
- var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails(function () {
21499
+ // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
21500
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
21529
21501
  var symbol = Symbol();
21530
21502
  // Chrome 38 Symbol has incorrect toString conversion
21531
21503
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -21534,10 +21506,10 @@ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails(functi
21534
21506
  !Symbol.sham && engineV8Version && engineV8Version < 41;
21535
21507
  });
21536
21508
 
21537
- /* eslint-disable es/no-symbol -- required for testing */
21509
+ /* eslint-disable es-x/no-symbol -- required for testing */
21538
21510
 
21539
21511
 
21540
- var useSymbolAsUid = symbolConstructorDetection
21512
+ var useSymbolAsUid = nativeSymbol
21541
21513
  && !Symbol.sham
21542
21514
  && typeof Symbol.iterator == 'symbol';
21543
21515
 
@@ -21572,7 +21544,7 @@ var aCallable = function (argument) {
21572
21544
  // https://tc39.es/ecma262/#sec-getmethod
21573
21545
  var getMethod = function (V, P) {
21574
21546
  var func = V[P];
21575
- return isNullOrUndefined(func) ? undefined : aCallable(func);
21547
+ return func == null ? undefined : aCallable(func);
21576
21548
  };
21577
21549
 
21578
21550
  var $TypeError$2 = TypeError;
@@ -21587,7 +21559,7 @@ var ordinaryToPrimitive = function (input, pref) {
21587
21559
  throw $TypeError$2("Can't convert object to primitive value");
21588
21560
  };
21589
21561
 
21590
- // eslint-disable-next-line es/no-object-defineproperty -- safe
21562
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
21591
21563
  var defineProperty = Object.defineProperty;
21592
21564
 
21593
21565
  var defineGlobalProperty = function (key, value) {
@@ -21607,10 +21579,10 @@ var shared = createCommonjsModule(function (module) {
21607
21579
  (module.exports = function (key, value) {
21608
21580
  return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
21609
21581
  })('versions', []).push({
21610
- version: '3.25.5',
21582
+ version: '3.24.1',
21611
21583
  mode: 'global',
21612
21584
  copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
21613
- license: 'https://github.com/zloirock/core-js/blob/v3.25.5/LICENSE',
21585
+ license: 'https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE',
21614
21586
  source: 'https://github.com/zloirock/core-js'
21615
21587
  });
21616
21588
  });
@@ -21627,7 +21599,7 @@ var hasOwnProperty = functionUncurryThis({}.hasOwnProperty);
21627
21599
 
21628
21600
  // `HasOwnProperty` abstract operation
21629
21601
  // https://tc39.es/ecma262/#sec-hasownproperty
21630
- // eslint-disable-next-line es/no-object-hasown -- safe
21602
+ // eslint-disable-next-line es-x/no-object-hasown -- safe
21631
21603
  var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
21632
21604
  return hasOwnProperty(toObject(it), key);
21633
21605
  };
@@ -21646,9 +21618,9 @@ var symbolFor = Symbol$1 && Symbol$1['for'];
21646
21618
  var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
21647
21619
 
21648
21620
  var wellKnownSymbol = function (name) {
21649
- if (!hasOwnProperty_1(WellKnownSymbolsStore, name) || !(symbolConstructorDetection || typeof WellKnownSymbolsStore[name] == 'string')) {
21621
+ if (!hasOwnProperty_1(WellKnownSymbolsStore, name) || !(nativeSymbol || typeof WellKnownSymbolsStore[name] == 'string')) {
21650
21622
  var description = 'Symbol.' + name;
21651
- if (symbolConstructorDetection && hasOwnProperty_1(Symbol$1, name)) {
21623
+ if (nativeSymbol && hasOwnProperty_1(Symbol$1, name)) {
21652
21624
  WellKnownSymbolsStore[name] = Symbol$1[name];
21653
21625
  } else if (useSymbolAsUid && symbolFor) {
21654
21626
  WellKnownSymbolsStore[name] = symbolFor(description);
@@ -21694,13 +21666,13 @@ var documentCreateElement = function (it) {
21694
21666
 
21695
21667
  // Thanks to IE8 for its funny defineProperty
21696
21668
  var ie8DomDefine = !descriptors && !fails(function () {
21697
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
21669
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
21698
21670
  return Object.defineProperty(documentCreateElement('div'), 'a', {
21699
21671
  get: function () { return 7; }
21700
21672
  }).a != 7;
21701
21673
  });
21702
21674
 
21703
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
21675
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
21704
21676
  var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
21705
21677
 
21706
21678
  // `Object.getOwnPropertyDescriptor` method
@@ -21721,7 +21693,7 @@ var objectGetOwnPropertyDescriptor = {
21721
21693
  // V8 ~ Chrome 36-
21722
21694
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
21723
21695
  var v8PrototypeDefineBug = descriptors && fails(function () {
21724
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
21696
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
21725
21697
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
21726
21698
  value: 42,
21727
21699
  writable: false
@@ -21738,9 +21710,9 @@ var anObject = function (argument) {
21738
21710
  };
21739
21711
 
21740
21712
  var $TypeError$5 = TypeError;
21741
- // eslint-disable-next-line es/no-object-defineproperty -- safe
21713
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
21742
21714
  var $defineProperty = Object.defineProperty;
21743
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
21715
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
21744
21716
  var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
21745
21717
  var ENUMERABLE = 'enumerable';
21746
21718
  var CONFIGURABLE = 'configurable';
@@ -21787,7 +21759,7 @@ var createNonEnumerableProperty = descriptors ? function (object, key, value) {
21787
21759
  };
21788
21760
 
21789
21761
  var FunctionPrototype$1 = Function.prototype;
21790
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
21762
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
21791
21763
  var getDescriptor = descriptors && Object.getOwnPropertyDescriptor;
21792
21764
 
21793
21765
  var EXISTS$1 = hasOwnProperty_1(FunctionPrototype$1, 'name');
@@ -21814,7 +21786,7 @@ var inspectSource = sharedStore.inspectSource;
21814
21786
 
21815
21787
  var WeakMap$1 = global_1.WeakMap;
21816
21788
 
21817
- var weakMapBasicDetection = isCallable(WeakMap$1) && /native code/.test(String(WeakMap$1));
21789
+ var nativeWeakMap = isCallable(WeakMap$1) && /native code/.test(inspectSource(WeakMap$1));
21818
21790
 
21819
21791
  var keys$1 = shared('keys');
21820
21792
 
@@ -21842,30 +21814,28 @@ var getterFor = function (TYPE) {
21842
21814
  };
21843
21815
  };
21844
21816
 
21845
- if (weakMapBasicDetection || sharedStore.state) {
21817
+ if (nativeWeakMap || sharedStore.state) {
21846
21818
  var store$1 = sharedStore.state || (sharedStore.state = new WeakMap$2());
21847
- /* eslint-disable no-self-assign -- prototype methods protection */
21848
- store$1.get = store$1.get;
21849
- store$1.has = store$1.has;
21850
- store$1.set = store$1.set;
21851
- /* eslint-enable no-self-assign -- prototype methods protection */
21819
+ var wmget = functionUncurryThis(store$1.get);
21820
+ var wmhas = functionUncurryThis(store$1.has);
21821
+ var wmset = functionUncurryThis(store$1.set);
21852
21822
  set = function (it, metadata) {
21853
- if (store$1.has(it)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
21823
+ if (wmhas(store$1, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
21854
21824
  metadata.facade = it;
21855
- store$1.set(it, metadata);
21825
+ wmset(store$1, it, metadata);
21856
21826
  return metadata;
21857
21827
  };
21858
21828
  get = function (it) {
21859
- return store$1.get(it) || {};
21829
+ return wmget(store$1, it) || {};
21860
21830
  };
21861
21831
  has = function (it) {
21862
- return store$1.has(it);
21832
+ return wmhas(store$1, it);
21863
21833
  };
21864
21834
  } else {
21865
21835
  var STATE = sharedKey('state');
21866
21836
  hiddenKeys[STATE] = true;
21867
21837
  set = function (it, metadata) {
21868
- if (hasOwnProperty_1(it, STATE)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
21838
+ if (hasOwnProperty_1(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
21869
21839
  metadata.facade = it;
21870
21840
  createNonEnumerableProperty(it, STATE, metadata);
21871
21841
  return metadata;
@@ -21893,7 +21863,7 @@ var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
21893
21863
 
21894
21864
  var enforceInternalState = internalState.enforce;
21895
21865
  var getInternalState = internalState.get;
21896
- // eslint-disable-next-line es/no-object-defineproperty -- safe
21866
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
21897
21867
  var defineProperty = Object.defineProperty;
21898
21868
 
21899
21869
  var CONFIGURABLE_LENGTH = descriptors && !fails(function () {
@@ -21962,7 +21932,7 @@ var floor = Math.floor;
21962
21932
 
21963
21933
  // `Math.trunc` method
21964
21934
  // https://tc39.es/ecma262/#sec-math.trunc
21965
- // eslint-disable-next-line es/no-math-trunc -- safe
21935
+ // eslint-disable-next-line es-x/no-math-trunc -- safe
21966
21936
  var mathTrunc = Math.trunc || function trunc(x) {
21967
21937
  var n = +x;
21968
21938
  return (n > 0 ? floor : ceil)(n);
@@ -22063,7 +22033,7 @@ var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
22063
22033
 
22064
22034
  // `Object.getOwnPropertyNames` method
22065
22035
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
22066
- // eslint-disable-next-line es/no-object-getownpropertynames -- safe
22036
+ // eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
22067
22037
  var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
22068
22038
  return objectKeysInternal(O, hiddenKeys$1);
22069
22039
  };
@@ -22072,7 +22042,7 @@ var objectGetOwnPropertyNames = {
22072
22042
  f: f$3
22073
22043
  };
22074
22044
 
22075
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
22045
+ // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
22076
22046
  var f$4 = Object.getOwnPropertySymbols;
22077
22047
 
22078
22048
  var objectGetOwnPropertySymbols = {
@@ -22216,7 +22186,7 @@ var toString_1 = function (argument) {
22216
22186
  var charAt = functionUncurryThis(''.charAt);
22217
22187
 
22218
22188
  var FORCED = fails(function () {
22219
- // eslint-disable-next-line es/no-array-string-prototype-at -- safe
22189
+ // eslint-disable-next-line es-x/no-array-string-prototype-at -- safe
22220
22190
  return '𠮷'.at(-2) !== '\uD842';
22221
22191
  });
22222
22192
 
@@ -22234,14 +22204,14 @@ _export({ target: 'String', proto: true, forced: FORCED }, {
22234
22204
 
22235
22205
  // `Object.keys` method
22236
22206
  // https://tc39.es/ecma262/#sec-object.keys
22237
- // eslint-disable-next-line es/no-object-keys -- safe
22207
+ // eslint-disable-next-line es-x/no-object-keys -- safe
22238
22208
  var objectKeys = Object.keys || function keys(O) {
22239
22209
  return objectKeysInternal(O, enumBugKeys);
22240
22210
  };
22241
22211
 
22242
22212
  // `Object.defineProperties` method
22243
22213
  // https://tc39.es/ecma262/#sec-object.defineproperties
22244
- // eslint-disable-next-line es/no-object-defineproperties -- safe
22214
+ // eslint-disable-next-line es-x/no-object-defineproperties -- safe
22245
22215
  var f$5 = descriptors && !v8PrototypeDefineBug ? Object.defineProperties : function defineProperties(O, Properties) {
22246
22216
  anObject(O);
22247
22217
  var props = toIndexedObject(Properties);
@@ -22330,7 +22300,7 @@ hiddenKeys[IE_PROTO] = true;
22330
22300
 
22331
22301
  // `Object.create` method
22332
22302
  // https://tc39.es/ecma262/#sec-object.create
22333
- // eslint-disable-next-line es/no-object-create -- safe
22303
+ // eslint-disable-next-line es-x/no-object-create -- safe
22334
22304
  var objectCreate = Object.create || function create(O, Properties) {
22335
22305
  var result;
22336
22306
  if (O !== null) {
@@ -22376,13 +22346,13 @@ _export({ target: 'Array', proto: true }, {
22376
22346
 
22377
22347
  addToUnscopables('at');
22378
22348
 
22379
- // eslint-disable-next-line es/no-typed-arrays -- safe
22380
- var arrayBufferBasicDetection = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
22349
+ // eslint-disable-next-line es-x/no-typed-arrays -- safe
22350
+ var arrayBufferNative = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
22381
22351
 
22382
22352
  var correctPrototypeGetter = !fails(function () {
22383
22353
  function F() { /* empty */ }
22384
22354
  F.prototype.constructor = null;
22385
- // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
22355
+ // eslint-disable-next-line es-x/no-object-getprototypeof -- required for testing
22386
22356
  return Object.getPrototypeOf(new F()) !== F.prototype;
22387
22357
  });
22388
22358
 
@@ -22392,7 +22362,7 @@ var ObjectPrototype = $Object$4.prototype;
22392
22362
 
22393
22363
  // `Object.getPrototypeOf` method
22394
22364
  // https://tc39.es/ecma262/#sec-object.getprototypeof
22395
- // eslint-disable-next-line es/no-object-getprototypeof -- safe
22365
+ // eslint-disable-next-line es-x/no-object-getprototypeof -- safe
22396
22366
  var objectGetPrototypeOf = correctPrototypeGetter ? $Object$4.getPrototypeOf : function (O) {
22397
22367
  var object = toObject(O);
22398
22368
  if (hasOwnProperty_1(object, IE_PROTO$1)) return object[IE_PROTO$1];
@@ -22418,13 +22388,13 @@ var aPossiblePrototype = function (argument) {
22418
22388
  // `Object.setPrototypeOf` method
22419
22389
  // https://tc39.es/ecma262/#sec-object.setprototypeof
22420
22390
  // Works with __proto__ only. Old v8 can't work with null proto objects.
22421
- // eslint-disable-next-line es/no-object-setprototypeof -- safe
22391
+ // eslint-disable-next-line es-x/no-object-setprototypeof -- safe
22422
22392
  var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
22423
22393
  var CORRECT_SETTER = false;
22424
22394
  var test = {};
22425
22395
  var setter;
22426
22396
  try {
22427
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22397
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22428
22398
  setter = functionUncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
22429
22399
  setter(test, []);
22430
22400
  CORRECT_SETTER = test instanceof Array;
@@ -22461,7 +22431,7 @@ var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag');
22461
22431
  var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG');
22462
22432
  var TYPED_ARRAY_CONSTRUCTOR = 'TypedArrayConstructor';
22463
22433
  // Fixing native typed arrays in Opera Presto crashes the browser, see #595
22464
- var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferBasicDetection && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
22434
+ var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferNative && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
22465
22435
  var TYPED_ARRAY_TAG_REQUIRED = false;
22466
22436
  var NAME, Constructor, Prototype;
22467
22437
 
@@ -45707,19 +45677,25 @@ var menu = posed.div({
45707
45677
  var ImposterMenu = styled__default(menu).withConfig({
45708
45678
  displayName: "NavMenuMobile__ImposterMenu",
45709
45679
  componentId: "sc-1pf0qp7-0"
45710
- })(["position:fixed;top:72px;"]);
45680
+ })(["position:fixed;top:", ";"], function (_ref) {
45681
+ var headerSize = _ref.headerSize;
45682
+ return headerSize;
45683
+ });
45711
45684
 
45712
- var NavMenuMobile = function NavMenuMobile(_ref) {
45713
- var id = _ref.id,
45714
- _ref$menuContent = _ref.menuContent,
45715
- menuContent = _ref$menuContent === void 0 ? [] : _ref$menuContent,
45716
- _ref$visible = _ref.visible,
45717
- visible = _ref$visible === void 0 ? false : _ref$visible,
45718
- themeValues = _ref.themeValues;
45685
+ var NavMenuMobile = function NavMenuMobile(_ref2) {
45686
+ var id = _ref2.id,
45687
+ _ref2$menuContent = _ref2.menuContent,
45688
+ menuContent = _ref2$menuContent === void 0 ? [] : _ref2$menuContent,
45689
+ _ref2$visible = _ref2.visible,
45690
+ visible = _ref2$visible === void 0 ? false : _ref2$visible,
45691
+ _ref2$headerSize = _ref2.headerSize,
45692
+ headerSize = _ref2$headerSize === void 0 ? "72px" : _ref2$headerSize,
45693
+ themeValues = _ref2.themeValues;
45719
45694
  return /*#__PURE__*/React__default.createElement(ImposterMenu, {
45720
45695
  id: id,
45721
45696
  initialPose: "invisible",
45722
- pose: visible ? "visible" : "invisible"
45697
+ pose: visible ? "visible" : "invisible",
45698
+ headerSize: headerSize
45723
45699
  }, /*#__PURE__*/React__default.createElement(Box, {
45724
45700
  width: "100vw",
45725
45701
  padding: "1rem 0.5rem",