@thecb/components 7.13.3-beta.9 → 7.13.3

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.d.ts CHANGED
@@ -499,6 +499,7 @@ interface CollapsibleSectionProps {
499
499
  sectionGap?: string;
500
500
  name?: string;
501
501
  index?: number;
502
+ extraStyles?: string;
502
503
  }
503
504
 
504
505
  declare const CollapsibleSection: React.FC<Expand<CollapsibleSectionProps> &
package/dist/index.esm.js CHANGED
@@ -18754,12 +18754,14 @@ function _extends$1() {
18754
18754
  _extends$1 = Object.assign ? Object.assign.bind() : function (target) {
18755
18755
  for (var i = 1; i < arguments.length; i++) {
18756
18756
  var source = arguments[i];
18757
+
18757
18758
  for (var key in source) {
18758
18759
  if (Object.prototype.hasOwnProperty.call(source, key)) {
18759
18760
  target[key] = source[key];
18760
18761
  }
18761
18762
  }
18762
18763
  }
18764
+
18763
18765
  return target;
18764
18766
  };
18765
18767
  return _extends$1.apply(this, arguments);
@@ -18769,6 +18771,7 @@ function _assertThisInitialized(self) {
18769
18771
  if (self === void 0) {
18770
18772
  throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
18771
18773
  }
18774
+
18772
18775
  return self;
18773
18776
  }
18774
18777
 
@@ -18801,6 +18804,7 @@ function _isNativeReflectConstruct() {
18801
18804
  if (typeof Reflect === "undefined" || !Reflect.construct) return false;
18802
18805
  if (Reflect.construct.sham) return false;
18803
18806
  if (typeof Proxy === "function") return true;
18807
+
18804
18808
  try {
18805
18809
  Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
18806
18810
  return true;
@@ -18822,23 +18826,30 @@ function _construct(Parent, args, Class) {
18822
18826
  return instance;
18823
18827
  };
18824
18828
  }
18829
+
18825
18830
  return _construct.apply(null, arguments);
18826
18831
  }
18827
18832
 
18828
18833
  function _wrapNativeSuper(Class) {
18829
18834
  var _cache = typeof Map === "function" ? new Map() : undefined;
18835
+
18830
18836
  _wrapNativeSuper = function _wrapNativeSuper(Class) {
18831
18837
  if (Class === null || !_isNativeFunction(Class)) return Class;
18838
+
18832
18839
  if (typeof Class !== "function") {
18833
18840
  throw new TypeError("Super expression must either be null or a function");
18834
18841
  }
18842
+
18835
18843
  if (typeof _cache !== "undefined") {
18836
18844
  if (_cache.has(Class)) return _cache.get(Class);
18845
+
18837
18846
  _cache.set(Class, Wrapper);
18838
18847
  }
18848
+
18839
18849
  function Wrapper() {
18840
18850
  return _construct(Class, arguments, _getPrototypeOf(this).constructor);
18841
18851
  }
18852
+
18842
18853
  Wrapper.prototype = Object.create(Class.prototype, {
18843
18854
  constructor: {
18844
18855
  value: Wrapper,
@@ -18849,6 +18860,7 @@ function _wrapNativeSuper(Class) {
18849
18860
  });
18850
18861
  return _setPrototypeOf(Wrapper, Class);
18851
18862
  };
18863
+
18852
18864
  return _wrapNativeSuper(Class);
18853
18865
  }
18854
18866
 
@@ -22131,7 +22143,7 @@ var check = function (it) {
22131
22143
 
22132
22144
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
22133
22145
  var global_1 =
22134
- // eslint-disable-next-line es/no-global-this -- safe
22146
+ // eslint-disable-next-line es-x/no-global-this -- safe
22135
22147
  check(typeof globalThis == 'object' && globalThis) ||
22136
22148
  check(typeof window == 'object' && window) ||
22137
22149
  // eslint-disable-next-line no-restricted-globals -- safe
@@ -22150,12 +22162,12 @@ var fails = function (exec) {
22150
22162
 
22151
22163
  // Detect IE8's incomplete defineProperty implementation
22152
22164
  var descriptors = !fails(function () {
22153
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
22165
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
22154
22166
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
22155
22167
  });
22156
22168
 
22157
22169
  var functionBindNative = !fails(function () {
22158
- // eslint-disable-next-line es/no-function-prototype-bind -- safe
22170
+ // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
22159
22171
  var test = (function () { /* empty */ }).bind();
22160
22172
  // eslint-disable-next-line no-prototype-builtins -- safe
22161
22173
  return typeof test != 'function' || test.hasOwnProperty('prototype');
@@ -22168,7 +22180,7 @@ var functionCall = functionBindNative ? call.bind(call) : function () {
22168
22180
  };
22169
22181
 
22170
22182
  var $propertyIsEnumerable = {}.propertyIsEnumerable;
22171
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22183
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22172
22184
  var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
22173
22185
 
22174
22186
  // Nashorn ~ JDK8 bug
@@ -22195,11 +22207,14 @@ var createPropertyDescriptor = function (bitmap, value) {
22195
22207
  };
22196
22208
 
22197
22209
  var FunctionPrototype = Function.prototype;
22210
+ var bind$1 = FunctionPrototype.bind;
22198
22211
  var call$1 = FunctionPrototype.call;
22199
- var uncurryThisWithBind = functionBindNative && FunctionPrototype.bind.bind(call$1, call$1);
22212
+ var uncurryThis = functionBindNative && bind$1.bind(call$1, call$1);
22200
22213
 
22201
- var functionUncurryThis = functionBindNative ? uncurryThisWithBind : function (fn) {
22202
- return function () {
22214
+ var functionUncurryThis = functionBindNative ? function (fn) {
22215
+ return fn && uncurryThis(fn);
22216
+ } : function (fn) {
22217
+ return fn && function () {
22203
22218
  return call$1.apply(fn, arguments);
22204
22219
  };
22205
22220
  };
@@ -22223,18 +22238,12 @@ var indexedObject = fails(function () {
22223
22238
  return classofRaw(it) == 'String' ? split(it, '') : $Object(it);
22224
22239
  } : $Object;
22225
22240
 
22226
- // we can't use just `it == null` since of `document.all` special case
22227
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
22228
- var isNullOrUndefined = function (it) {
22229
- return it === null || it === undefined;
22230
- };
22231
-
22232
22241
  var $TypeError = TypeError;
22233
22242
 
22234
22243
  // `RequireObjectCoercible` abstract operation
22235
22244
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
22236
22245
  var requireObjectCoercible = function (it) {
22237
- if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it);
22246
+ if (it == undefined) throw $TypeError("Can't call method on " + it);
22238
22247
  return it;
22239
22248
  };
22240
22249
 
@@ -22246,32 +22255,13 @@ var toIndexedObject = function (it) {
22246
22255
  return indexedObject(requireObjectCoercible(it));
22247
22256
  };
22248
22257
 
22249
- var documentAll = typeof document == 'object' && document.all;
22250
-
22251
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
22252
- // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
22253
- var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
22254
-
22255
- var documentAll_1 = {
22256
- all: documentAll,
22257
- IS_HTMLDDA: IS_HTMLDDA
22258
- };
22259
-
22260
- var documentAll$1 = documentAll_1.all;
22261
-
22262
22258
  // `IsCallable` abstract operation
22263
22259
  // https://tc39.es/ecma262/#sec-iscallable
22264
- var isCallable = documentAll_1.IS_HTMLDDA ? function (argument) {
22265
- return typeof argument == 'function' || argument === documentAll$1;
22266
- } : function (argument) {
22260
+ var isCallable = function (argument) {
22267
22261
  return typeof argument == 'function';
22268
22262
  };
22269
22263
 
22270
- var documentAll$2 = documentAll_1.all;
22271
-
22272
- var isObject = documentAll_1.IS_HTMLDDA ? function (it) {
22273
- return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll$2;
22274
- } : function (it) {
22264
+ var isObject = function (it) {
22275
22265
  return typeof it == 'object' ? it !== null : isCallable(it);
22276
22266
  };
22277
22267
 
@@ -22285,7 +22275,7 @@ var getBuiltIn = function (namespace, method) {
22285
22275
 
22286
22276
  var objectIsPrototypeOf = functionUncurryThis({}.isPrototypeOf);
22287
22277
 
22288
- var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
22278
+ var engineUserAgent = getBuiltIn('navigator', 'userAgent') || '';
22289
22279
 
22290
22280
  var process$1 = global_1.process;
22291
22281
  var Deno = global_1.Deno;
@@ -22312,12 +22302,12 @@ if (!version && engineUserAgent) {
22312
22302
 
22313
22303
  var engineV8Version = version;
22314
22304
 
22315
- /* eslint-disable es/no-symbol -- required for testing */
22305
+ /* eslint-disable es-x/no-symbol -- required for testing */
22316
22306
 
22317
22307
 
22318
22308
 
22319
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
22320
- var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails(function () {
22309
+ // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
22310
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
22321
22311
  var symbol = Symbol();
22322
22312
  // Chrome 38 Symbol has incorrect toString conversion
22323
22313
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -22326,10 +22316,10 @@ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails(functi
22326
22316
  !Symbol.sham && engineV8Version && engineV8Version < 41;
22327
22317
  });
22328
22318
 
22329
- /* eslint-disable es/no-symbol -- required for testing */
22319
+ /* eslint-disable es-x/no-symbol -- required for testing */
22330
22320
 
22331
22321
 
22332
- var useSymbolAsUid = symbolConstructorDetection
22322
+ var useSymbolAsUid = nativeSymbol
22333
22323
  && !Symbol.sham
22334
22324
  && typeof Symbol.iterator == 'symbol';
22335
22325
 
@@ -22364,7 +22354,7 @@ var aCallable = function (argument) {
22364
22354
  // https://tc39.es/ecma262/#sec-getmethod
22365
22355
  var getMethod = function (V, P) {
22366
22356
  var func = V[P];
22367
- return isNullOrUndefined(func) ? undefined : aCallable(func);
22357
+ return func == null ? undefined : aCallable(func);
22368
22358
  };
22369
22359
 
22370
22360
  var $TypeError$2 = TypeError;
@@ -22379,7 +22369,7 @@ var ordinaryToPrimitive = function (input, pref) {
22379
22369
  throw $TypeError$2("Can't convert object to primitive value");
22380
22370
  };
22381
22371
 
22382
- // eslint-disable-next-line es/no-object-defineproperty -- safe
22372
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
22383
22373
  var defineProperty = Object.defineProperty;
22384
22374
 
22385
22375
  var defineGlobalProperty = function (key, value) {
@@ -22399,10 +22389,10 @@ var shared = createCommonjsModule(function (module) {
22399
22389
  (module.exports = function (key, value) {
22400
22390
  return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
22401
22391
  })('versions', []).push({
22402
- version: '3.29.0',
22392
+ version: '3.24.1',
22403
22393
  mode: 'global',
22404
- copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
22405
- license: 'https://github.com/zloirock/core-js/blob/v3.29.0/LICENSE',
22394
+ copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
22395
+ license: 'https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE',
22406
22396
  source: 'https://github.com/zloirock/core-js'
22407
22397
  });
22408
22398
  });
@@ -22419,7 +22409,7 @@ var hasOwnProperty = functionUncurryThis({}.hasOwnProperty);
22419
22409
 
22420
22410
  // `HasOwnProperty` abstract operation
22421
22411
  // https://tc39.es/ecma262/#sec-hasownproperty
22422
- // eslint-disable-next-line es/no-object-hasown -- safe
22412
+ // eslint-disable-next-line es-x/no-object-hasown -- safe
22423
22413
  var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
22424
22414
  return hasOwnProperty(toObject(it), key);
22425
22415
  };
@@ -22432,15 +22422,21 @@ var uid = function (key) {
22432
22422
  return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$3(++id + postfix, 36);
22433
22423
  };
22434
22424
 
22435
- var Symbol$1 = global_1.Symbol;
22436
22425
  var WellKnownSymbolsStore = shared('wks');
22437
- var createWellKnownSymbol = useSymbolAsUid ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
22426
+ var Symbol$1 = global_1.Symbol;
22427
+ var symbolFor = Symbol$1 && Symbol$1['for'];
22428
+ var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
22438
22429
 
22439
22430
  var wellKnownSymbol = function (name) {
22440
- if (!hasOwnProperty_1(WellKnownSymbolsStore, name)) {
22441
- WellKnownSymbolsStore[name] = symbolConstructorDetection && hasOwnProperty_1(Symbol$1, name)
22442
- ? Symbol$1[name]
22443
- : createWellKnownSymbol('Symbol.' + name);
22431
+ if (!hasOwnProperty_1(WellKnownSymbolsStore, name) || !(nativeSymbol || typeof WellKnownSymbolsStore[name] == 'string')) {
22432
+ var description = 'Symbol.' + name;
22433
+ if (nativeSymbol && hasOwnProperty_1(Symbol$1, name)) {
22434
+ WellKnownSymbolsStore[name] = Symbol$1[name];
22435
+ } else if (useSymbolAsUid && symbolFor) {
22436
+ WellKnownSymbolsStore[name] = symbolFor(description);
22437
+ } else {
22438
+ WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
22439
+ }
22444
22440
  } return WellKnownSymbolsStore[name];
22445
22441
  };
22446
22442
 
@@ -22480,13 +22476,13 @@ var documentCreateElement = function (it) {
22480
22476
 
22481
22477
  // Thanks to IE8 for its funny defineProperty
22482
22478
  var ie8DomDefine = !descriptors && !fails(function () {
22483
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
22479
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
22484
22480
  return Object.defineProperty(documentCreateElement('div'), 'a', {
22485
22481
  get: function () { return 7; }
22486
22482
  }).a != 7;
22487
22483
  });
22488
22484
 
22489
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22485
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22490
22486
  var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
22491
22487
 
22492
22488
  // `Object.getOwnPropertyDescriptor` method
@@ -22507,7 +22503,7 @@ var objectGetOwnPropertyDescriptor = {
22507
22503
  // V8 ~ Chrome 36-
22508
22504
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
22509
22505
  var v8PrototypeDefineBug = descriptors && fails(function () {
22510
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
22506
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
22511
22507
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
22512
22508
  value: 42,
22513
22509
  writable: false
@@ -22524,9 +22520,9 @@ var anObject = function (argument) {
22524
22520
  };
22525
22521
 
22526
22522
  var $TypeError$5 = TypeError;
22527
- // eslint-disable-next-line es/no-object-defineproperty -- safe
22523
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
22528
22524
  var $defineProperty = Object.defineProperty;
22529
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22525
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22530
22526
  var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
22531
22527
  var ENUMERABLE = 'enumerable';
22532
22528
  var CONFIGURABLE = 'configurable';
@@ -22573,7 +22569,7 @@ var createNonEnumerableProperty = descriptors ? function (object, key, value) {
22573
22569
  };
22574
22570
 
22575
22571
  var FunctionPrototype$1 = Function.prototype;
22576
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22572
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22577
22573
  var getDescriptor = descriptors && Object.getOwnPropertyDescriptor;
22578
22574
 
22579
22575
  var EXISTS$1 = hasOwnProperty_1(FunctionPrototype$1, 'name');
@@ -22600,7 +22596,7 @@ var inspectSource = sharedStore.inspectSource;
22600
22596
 
22601
22597
  var WeakMap$1 = global_1.WeakMap;
22602
22598
 
22603
- var weakMapBasicDetection = isCallable(WeakMap$1) && /native code/.test(String(WeakMap$1));
22599
+ var nativeWeakMap = isCallable(WeakMap$1) && /native code/.test(inspectSource(WeakMap$1));
22604
22600
 
22605
22601
  var keys$1 = shared('keys');
22606
22602
 
@@ -22628,30 +22624,28 @@ var getterFor = function (TYPE) {
22628
22624
  };
22629
22625
  };
22630
22626
 
22631
- if (weakMapBasicDetection || sharedStore.state) {
22627
+ if (nativeWeakMap || sharedStore.state) {
22632
22628
  var store$1 = sharedStore.state || (sharedStore.state = new WeakMap$2());
22633
- /* eslint-disable no-self-assign -- prototype methods protection */
22634
- store$1.get = store$1.get;
22635
- store$1.has = store$1.has;
22636
- store$1.set = store$1.set;
22637
- /* eslint-enable no-self-assign -- prototype methods protection */
22629
+ var wmget = functionUncurryThis(store$1.get);
22630
+ var wmhas = functionUncurryThis(store$1.has);
22631
+ var wmset = functionUncurryThis(store$1.set);
22638
22632
  set = function (it, metadata) {
22639
- if (store$1.has(it)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
22633
+ if (wmhas(store$1, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
22640
22634
  metadata.facade = it;
22641
- store$1.set(it, metadata);
22635
+ wmset(store$1, it, metadata);
22642
22636
  return metadata;
22643
22637
  };
22644
22638
  get = function (it) {
22645
- return store$1.get(it) || {};
22639
+ return wmget(store$1, it) || {};
22646
22640
  };
22647
22641
  has = function (it) {
22648
- return store$1.has(it);
22642
+ return wmhas(store$1, it);
22649
22643
  };
22650
22644
  } else {
22651
22645
  var STATE = sharedKey('state');
22652
22646
  hiddenKeys[STATE] = true;
22653
22647
  set = function (it, metadata) {
22654
- if (hasOwnProperty_1(it, STATE)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
22648
+ if (hasOwnProperty_1(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
22655
22649
  metadata.facade = it;
22656
22650
  createNonEnumerableProperty(it, STATE, metadata);
22657
22651
  return metadata;
@@ -22679,12 +22673,8 @@ var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
22679
22673
 
22680
22674
  var enforceInternalState = internalState.enforce;
22681
22675
  var getInternalState = internalState.get;
22682
- var $String = String;
22683
- // eslint-disable-next-line es/no-object-defineproperty -- safe
22676
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
22684
22677
  var defineProperty = Object.defineProperty;
22685
- var stringSlice = functionUncurryThis(''.slice);
22686
- var replace = functionUncurryThis(''.replace);
22687
- var join = functionUncurryThis([].join);
22688
22678
 
22689
22679
  var CONFIGURABLE_LENGTH = descriptors && !fails(function () {
22690
22680
  return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
@@ -22693,8 +22683,8 @@ var CONFIGURABLE_LENGTH = descriptors && !fails(function () {
22693
22683
  var TEMPLATE = String(String).split('String');
22694
22684
 
22695
22685
  var makeBuiltIn = module.exports = function (value, name, options) {
22696
- if (stringSlice($String(name), 0, 7) === 'Symbol(') {
22697
- name = '[' + replace($String(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
22686
+ if (String(name).slice(0, 7) === 'Symbol(') {
22687
+ name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
22698
22688
  }
22699
22689
  if (options && options.getter) name = 'get ' + name;
22700
22690
  if (options && options.setter) name = 'set ' + name;
@@ -22713,7 +22703,7 @@ var makeBuiltIn = module.exports = function (value, name, options) {
22713
22703
  } catch (error) { /* empty */ }
22714
22704
  var state = enforceInternalState(value);
22715
22705
  if (!hasOwnProperty_1(state, 'source')) {
22716
- state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
22706
+ state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
22717
22707
  } return value;
22718
22708
  };
22719
22709
 
@@ -22752,7 +22742,7 @@ var floor = Math.floor;
22752
22742
 
22753
22743
  // `Math.trunc` method
22754
22744
  // https://tc39.es/ecma262/#sec-math.trunc
22755
- // eslint-disable-next-line es/no-math-trunc -- safe
22745
+ // eslint-disable-next-line es-x/no-math-trunc -- safe
22756
22746
  var mathTrunc = Math.trunc || function trunc(x) {
22757
22747
  var n = +x;
22758
22748
  return (n > 0 ? floor : ceil)(n);
@@ -22853,7 +22843,7 @@ var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
22853
22843
 
22854
22844
  // `Object.getOwnPropertyNames` method
22855
22845
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
22856
- // eslint-disable-next-line es/no-object-getownpropertynames -- safe
22846
+ // eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
22857
22847
  var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
22858
22848
  return objectKeysInternal(O, hiddenKeys$1);
22859
22849
  };
@@ -22862,7 +22852,7 @@ var objectGetOwnPropertyNames = {
22862
22852
  f: f$3
22863
22853
  };
22864
22854
 
22865
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
22855
+ // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
22866
22856
  var f$4 = Object.getOwnPropertySymbols;
22867
22857
 
22868
22858
  var objectGetOwnPropertySymbols = {
@@ -23006,7 +22996,7 @@ var toString_1 = function (argument) {
23006
22996
  var charAt = functionUncurryThis(''.charAt);
23007
22997
 
23008
22998
  var FORCED = fails(function () {
23009
- // eslint-disable-next-line es/no-array-string-prototype-at -- safe
22999
+ // eslint-disable-next-line es-x/no-array-string-prototype-at -- safe
23010
23000
  return '𠮷'.at(-2) !== '\uD842';
23011
23001
  });
23012
23002
 
@@ -23024,14 +23014,14 @@ _export({ target: 'String', proto: true, forced: FORCED }, {
23024
23014
 
23025
23015
  // `Object.keys` method
23026
23016
  // https://tc39.es/ecma262/#sec-object.keys
23027
- // eslint-disable-next-line es/no-object-keys -- safe
23017
+ // eslint-disable-next-line es-x/no-object-keys -- safe
23028
23018
  var objectKeys = Object.keys || function keys(O) {
23029
23019
  return objectKeysInternal(O, enumBugKeys);
23030
23020
  };
23031
23021
 
23032
23022
  // `Object.defineProperties` method
23033
23023
  // https://tc39.es/ecma262/#sec-object.defineproperties
23034
- // eslint-disable-next-line es/no-object-defineproperties -- safe
23024
+ // eslint-disable-next-line es-x/no-object-defineproperties -- safe
23035
23025
  var f$5 = descriptors && !v8PrototypeDefineBug ? Object.defineProperties : function defineProperties(O, Properties) {
23036
23026
  anObject(O);
23037
23027
  var props = toIndexedObject(Properties);
@@ -23120,7 +23110,7 @@ hiddenKeys[IE_PROTO] = true;
23120
23110
 
23121
23111
  // `Object.create` method
23122
23112
  // https://tc39.es/ecma262/#sec-object.create
23123
- // eslint-disable-next-line es/no-object-create -- safe
23113
+ // eslint-disable-next-line es-x/no-object-create -- safe
23124
23114
  var objectCreate = Object.create || function create(O, Properties) {
23125
23115
  var result;
23126
23116
  if (O !== null) {
@@ -23166,19 +23156,13 @@ _export({ target: 'Array', proto: true }, {
23166
23156
 
23167
23157
  addToUnscopables('at');
23168
23158
 
23169
- // eslint-disable-next-line es/no-typed-arrays -- safe
23170
- var arrayBufferBasicDetection = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
23171
-
23172
- var defineBuiltInAccessor = function (target, name, descriptor) {
23173
- if (descriptor.get) makeBuiltIn_1(descriptor.get, name, { getter: true });
23174
- if (descriptor.set) makeBuiltIn_1(descriptor.set, name, { setter: true });
23175
- return objectDefineProperty.f(target, name, descriptor);
23176
- };
23159
+ // eslint-disable-next-line es-x/no-typed-arrays -- safe
23160
+ var arrayBufferNative = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
23177
23161
 
23178
23162
  var correctPrototypeGetter = !fails(function () {
23179
23163
  function F() { /* empty */ }
23180
23164
  F.prototype.constructor = null;
23181
- // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
23165
+ // eslint-disable-next-line es-x/no-object-getprototypeof -- required for testing
23182
23166
  return Object.getPrototypeOf(new F()) !== F.prototype;
23183
23167
  });
23184
23168
 
@@ -23188,7 +23172,7 @@ var ObjectPrototype = $Object$4.prototype;
23188
23172
 
23189
23173
  // `Object.getPrototypeOf` method
23190
23174
  // https://tc39.es/ecma262/#sec-object.getprototypeof
23191
- // eslint-disable-next-line es/no-object-getprototypeof -- safe
23175
+ // eslint-disable-next-line es-x/no-object-getprototypeof -- safe
23192
23176
  var objectGetPrototypeOf = correctPrototypeGetter ? $Object$4.getPrototypeOf : function (O) {
23193
23177
  var object = toObject(O);
23194
23178
  if (hasOwnProperty_1(object, IE_PROTO$1)) return object[IE_PROTO$1];
@@ -23198,13 +23182,6 @@ var objectGetPrototypeOf = correctPrototypeGetter ? $Object$4.getPrototypeOf : f
23198
23182
  } return object instanceof $Object$4 ? ObjectPrototype : null;
23199
23183
  };
23200
23184
 
23201
- var functionUncurryThisAccessor = function (object, key, method) {
23202
- try {
23203
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
23204
- return functionUncurryThis(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));
23205
- } catch (error) { /* empty */ }
23206
- };
23207
-
23208
23185
  var $String$3 = String;
23209
23186
  var $TypeError$6 = TypeError;
23210
23187
 
@@ -23221,13 +23198,14 @@ var aPossiblePrototype = function (argument) {
23221
23198
  // `Object.setPrototypeOf` method
23222
23199
  // https://tc39.es/ecma262/#sec-object.setprototypeof
23223
23200
  // Works with __proto__ only. Old v8 can't work with null proto objects.
23224
- // eslint-disable-next-line es/no-object-setprototypeof -- safe
23201
+ // eslint-disable-next-line es-x/no-object-setprototypeof -- safe
23225
23202
  var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
23226
23203
  var CORRECT_SETTER = false;
23227
23204
  var test = {};
23228
23205
  var setter;
23229
23206
  try {
23230
- setter = functionUncurryThisAccessor(Object.prototype, '__proto__', 'set');
23207
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
23208
+ setter = functionUncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
23231
23209
  setter(test, []);
23232
23210
  CORRECT_SETTER = test instanceof Array;
23233
23211
  } catch (error) { /* empty */ }
@@ -23240,6 +23218,14 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
23240
23218
  };
23241
23219
  }() : undefined);
23242
23220
 
23221
+ var defineProperty$2 = objectDefineProperty.f;
23222
+
23223
+
23224
+
23225
+
23226
+
23227
+
23228
+
23243
23229
  var enforceInternalState = internalState.enforce;
23244
23230
  var getInternalState = internalState.get;
23245
23231
  var Int8Array = global_1.Int8Array;
@@ -23255,7 +23241,7 @@ var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag');
23255
23241
  var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG');
23256
23242
  var TYPED_ARRAY_CONSTRUCTOR = 'TypedArrayConstructor';
23257
23243
  // Fixing native typed arrays in Opera Presto crashes the browser, see #595
23258
- var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferBasicDetection && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
23244
+ var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferNative && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
23259
23245
  var TYPED_ARRAY_TAG_REQUIRED = false;
23260
23246
  var NAME, Constructor, Prototype;
23261
23247
 
@@ -23390,12 +23376,9 @@ if (NATIVE_ARRAY_BUFFER_VIEWS && objectGetPrototypeOf(Uint8ClampedArrayPrototype
23390
23376
 
23391
23377
  if (descriptors && !hasOwnProperty_1(TypedArrayPrototype, TO_STRING_TAG$2)) {
23392
23378
  TYPED_ARRAY_TAG_REQUIRED = true;
23393
- defineBuiltInAccessor(TypedArrayPrototype, TO_STRING_TAG$2, {
23394
- configurable: true,
23395
- get: function () {
23396
- return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined;
23397
- }
23398
- });
23379
+ defineProperty$2(TypedArrayPrototype, TO_STRING_TAG$2, { get: function () {
23380
+ return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined;
23381
+ } });
23399
23382
  for (NAME in TypedArrayConstructorsList) if (global_1[NAME]) {
23400
23383
  createNonEnumerableProperty(global_1[NAME], TYPED_ARRAY_TAG, NAME);
23401
23384
  }
@@ -40393,8 +40376,6 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
40393
40376
  name = _ref$name === void 0 ? "" : _ref$name,
40394
40377
  _ref$index = _ref.index,
40395
40378
  index = _ref$index === void 0 ? 1 : _ref$index,
40396
- _ref$iconColor = _ref.iconColor,
40397
- iconColor = _ref$iconColor === void 0 ? "" : _ref$iconColor,
40398
40379
  _ref$extraStyles = _ref.extraStyles,
40399
40380
  extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles;
40400
40381
 
@@ -40456,7 +40437,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
40456
40437
  hoverStyles: "cursor: pointer;",
40457
40438
  tabIndex: "0",
40458
40439
  onKeyDown: handleKeyDown,
40459
- extraStyles: "z-index: 25;".concat(extraStyles),
40440
+ extraStyles: "z-index: 25; ".concat(extraStyles),
40460
40441
  role: "button",
40461
40442
  "aria-expanded": isOpen.toString(),
40462
40443
  "aria-controls": id,
@@ -40466,7 +40447,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
40466
40447
  align: "center"
40467
40448
  }, customTitle ? /*#__PURE__*/React.createElement(Box, {
40468
40449
  width: "calc(100% - 36px)",
40469
- padding: "0"
40450
+ padding: "0px"
40470
40451
  }, title) : /*#__PURE__*/React.createElement(Title$1, {
40471
40452
  weight: FONT_WEIGHT_SEMIBOLD,
40472
40453
  color: themeValues.titleColor,
@@ -40475,9 +40456,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
40475
40456
  }, title), /*#__PURE__*/React.createElement(Motion, {
40476
40457
  variants: icon,
40477
40458
  extraStyles: "display: flex; align-items: center;"
40478
- }, /*#__PURE__*/React.createElement(ChevronIcon$1, {
40479
- color: iconColor || "inherit"
40480
- }))))), /*#__PURE__*/React.createElement(AnimatePresence, {
40459
+ }, /*#__PURE__*/React.createElement(ChevronIcon$1, null))))), /*#__PURE__*/React.createElement(AnimatePresence, {
40481
40460
  initial: false
40482
40461
  }, isOpen && /*#__PURE__*/React.createElement(Motion, {
40483
40462
  padding: "0",