@thecb/components 8.4.8 → 8.4.10-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
@@ -4989,8 +4989,6 @@ var BLACK_SQUEEZE = "#EAF2F7";
4989
4989
  var GREY_CHATEAU = "#959CA8"; // CBS-500
4990
4990
 
4991
4991
  var COOL_GREY_05 = "#fbfcfd"; // CBS-050
4992
-
4993
- var MANATEE_GREY = "#878E9B"; // CB-60 (cool)
4994
4992
  // BLUE
4995
4993
 
4996
4994
  var CLOUDBURST_BLUE = "#26395c";
@@ -5125,7 +5123,6 @@ var colors = /*#__PURE__*/Object.freeze({
5125
5123
  CHARADE_GREY: CHARADE_GREY,
5126
5124
  GRECIAN_GREY: GRECIAN_GREY,
5127
5125
  COOL_GREY_05: COOL_GREY_05,
5128
- MANATEE_GREY: MANATEE_GREY,
5129
5126
  BLACK_SQUEEZE: BLACK_SQUEEZE,
5130
5127
  GREY_CHATEAU: GREY_CHATEAU,
5131
5128
  CLOUDBURST_BLUE: CLOUDBURST_BLUE,
@@ -19008,12 +19005,14 @@ function _extends$1() {
19008
19005
  _extends$1 = Object.assign ? Object.assign.bind() : function (target) {
19009
19006
  for (var i = 1; i < arguments.length; i++) {
19010
19007
  var source = arguments[i];
19008
+
19011
19009
  for (var key in source) {
19012
19010
  if (Object.prototype.hasOwnProperty.call(source, key)) {
19013
19011
  target[key] = source[key];
19014
19012
  }
19015
19013
  }
19016
19014
  }
19015
+
19017
19016
  return target;
19018
19017
  };
19019
19018
  return _extends$1.apply(this, arguments);
@@ -19023,6 +19022,7 @@ function _assertThisInitialized(self) {
19023
19022
  if (self === void 0) {
19024
19023
  throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
19025
19024
  }
19025
+
19026
19026
  return self;
19027
19027
  }
19028
19028
 
@@ -19055,6 +19055,7 @@ function _isNativeReflectConstruct() {
19055
19055
  if (typeof Reflect === "undefined" || !Reflect.construct) return false;
19056
19056
  if (Reflect.construct.sham) return false;
19057
19057
  if (typeof Proxy === "function") return true;
19058
+
19058
19059
  try {
19059
19060
  Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
19060
19061
  return true;
@@ -19076,23 +19077,30 @@ function _construct(Parent, args, Class) {
19076
19077
  return instance;
19077
19078
  };
19078
19079
  }
19080
+
19079
19081
  return _construct.apply(null, arguments);
19080
19082
  }
19081
19083
 
19082
19084
  function _wrapNativeSuper(Class) {
19083
19085
  var _cache = typeof Map === "function" ? new Map() : undefined;
19086
+
19084
19087
  _wrapNativeSuper = function _wrapNativeSuper(Class) {
19085
19088
  if (Class === null || !_isNativeFunction(Class)) return Class;
19089
+
19086
19090
  if (typeof Class !== "function") {
19087
19091
  throw new TypeError("Super expression must either be null or a function");
19088
19092
  }
19093
+
19089
19094
  if (typeof _cache !== "undefined") {
19090
19095
  if (_cache.has(Class)) return _cache.get(Class);
19096
+
19091
19097
  _cache.set(Class, Wrapper);
19092
19098
  }
19099
+
19093
19100
  function Wrapper() {
19094
19101
  return _construct(Class, arguments, _getPrototypeOf(this).constructor);
19095
19102
  }
19103
+
19096
19104
  Wrapper.prototype = Object.create(Class.prototype, {
19097
19105
  constructor: {
19098
19106
  value: Wrapper,
@@ -19103,6 +19111,7 @@ function _wrapNativeSuper(Class) {
19103
19111
  });
19104
19112
  return _setPrototypeOf(Wrapper, Class);
19105
19113
  };
19114
+
19106
19115
  return _wrapNativeSuper(Class);
19107
19116
  }
19108
19117
 
@@ -22385,7 +22394,7 @@ var check = function (it) {
22385
22394
 
22386
22395
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
22387
22396
  var global_1 =
22388
- // eslint-disable-next-line es/no-global-this -- safe
22397
+ // eslint-disable-next-line es-x/no-global-this -- safe
22389
22398
  check(typeof globalThis == 'object' && globalThis) ||
22390
22399
  check(typeof window == 'object' && window) ||
22391
22400
  // eslint-disable-next-line no-restricted-globals -- safe
@@ -22404,12 +22413,12 @@ var fails = function (exec) {
22404
22413
 
22405
22414
  // Detect IE8's incomplete defineProperty implementation
22406
22415
  var descriptors = !fails(function () {
22407
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
22416
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
22408
22417
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
22409
22418
  });
22410
22419
 
22411
22420
  var functionBindNative = !fails(function () {
22412
- // eslint-disable-next-line es/no-function-prototype-bind -- safe
22421
+ // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
22413
22422
  var test = (function () { /* empty */ }).bind();
22414
22423
  // eslint-disable-next-line no-prototype-builtins -- safe
22415
22424
  return typeof test != 'function' || test.hasOwnProperty('prototype');
@@ -22422,7 +22431,7 @@ var functionCall = functionBindNative ? call.bind(call) : function () {
22422
22431
  };
22423
22432
 
22424
22433
  var $propertyIsEnumerable = {}.propertyIsEnumerable;
22425
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22434
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22426
22435
  var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
22427
22436
 
22428
22437
  // Nashorn ~ JDK8 bug
@@ -22449,11 +22458,14 @@ var createPropertyDescriptor = function (bitmap, value) {
22449
22458
  };
22450
22459
 
22451
22460
  var FunctionPrototype = Function.prototype;
22461
+ var bind$1 = FunctionPrototype.bind;
22452
22462
  var call$1 = FunctionPrototype.call;
22453
- var uncurryThisWithBind = functionBindNative && FunctionPrototype.bind.bind(call$1, call$1);
22463
+ var uncurryThis = functionBindNative && bind$1.bind(call$1, call$1);
22454
22464
 
22455
- var functionUncurryThis = functionBindNative ? uncurryThisWithBind : function (fn) {
22456
- return function () {
22465
+ var functionUncurryThis = functionBindNative ? function (fn) {
22466
+ return fn && uncurryThis(fn);
22467
+ } : function (fn) {
22468
+ return fn && function () {
22457
22469
  return call$1.apply(fn, arguments);
22458
22470
  };
22459
22471
  };
@@ -22477,18 +22489,12 @@ var indexedObject = fails(function () {
22477
22489
  return classofRaw(it) == 'String' ? split(it, '') : $Object(it);
22478
22490
  } : $Object;
22479
22491
 
22480
- // we can't use just `it == null` since of `document.all` special case
22481
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
22482
- var isNullOrUndefined = function (it) {
22483
- return it === null || it === undefined;
22484
- };
22485
-
22486
22492
  var $TypeError = TypeError;
22487
22493
 
22488
22494
  // `RequireObjectCoercible` abstract operation
22489
22495
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
22490
22496
  var requireObjectCoercible = function (it) {
22491
- if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it);
22497
+ if (it == undefined) throw $TypeError("Can't call method on " + it);
22492
22498
  return it;
22493
22499
  };
22494
22500
 
@@ -22500,32 +22506,13 @@ var toIndexedObject = function (it) {
22500
22506
  return indexedObject(requireObjectCoercible(it));
22501
22507
  };
22502
22508
 
22503
- var documentAll = typeof document == 'object' && document.all;
22504
-
22505
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
22506
- // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
22507
- var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
22508
-
22509
- var documentAll_1 = {
22510
- all: documentAll,
22511
- IS_HTMLDDA: IS_HTMLDDA
22512
- };
22513
-
22514
- var documentAll$1 = documentAll_1.all;
22515
-
22516
22509
  // `IsCallable` abstract operation
22517
22510
  // https://tc39.es/ecma262/#sec-iscallable
22518
- var isCallable = documentAll_1.IS_HTMLDDA ? function (argument) {
22519
- return typeof argument == 'function' || argument === documentAll$1;
22520
- } : function (argument) {
22511
+ var isCallable = function (argument) {
22521
22512
  return typeof argument == 'function';
22522
22513
  };
22523
22514
 
22524
- var documentAll$2 = documentAll_1.all;
22525
-
22526
- var isObject = documentAll_1.IS_HTMLDDA ? function (it) {
22527
- return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll$2;
22528
- } : function (it) {
22515
+ var isObject = function (it) {
22529
22516
  return typeof it == 'object' ? it !== null : isCallable(it);
22530
22517
  };
22531
22518
 
@@ -22539,7 +22526,7 @@ var getBuiltIn = function (namespace, method) {
22539
22526
 
22540
22527
  var objectIsPrototypeOf = functionUncurryThis({}.isPrototypeOf);
22541
22528
 
22542
- var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
22529
+ var engineUserAgent = getBuiltIn('navigator', 'userAgent') || '';
22543
22530
 
22544
22531
  var process$1 = global_1.process;
22545
22532
  var Deno = global_1.Deno;
@@ -22566,12 +22553,12 @@ if (!version && engineUserAgent) {
22566
22553
 
22567
22554
  var engineV8Version = version;
22568
22555
 
22569
- /* eslint-disable es/no-symbol -- required for testing */
22556
+ /* eslint-disable es-x/no-symbol -- required for testing */
22570
22557
 
22571
22558
 
22572
22559
 
22573
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
22574
- var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails(function () {
22560
+ // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
22561
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
22575
22562
  var symbol = Symbol();
22576
22563
  // Chrome 38 Symbol has incorrect toString conversion
22577
22564
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -22580,10 +22567,10 @@ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails(functi
22580
22567
  !Symbol.sham && engineV8Version && engineV8Version < 41;
22581
22568
  });
22582
22569
 
22583
- /* eslint-disable es/no-symbol -- required for testing */
22570
+ /* eslint-disable es-x/no-symbol -- required for testing */
22584
22571
 
22585
22572
 
22586
- var useSymbolAsUid = symbolConstructorDetection
22573
+ var useSymbolAsUid = nativeSymbol
22587
22574
  && !Symbol.sham
22588
22575
  && typeof Symbol.iterator == 'symbol';
22589
22576
 
@@ -22618,7 +22605,7 @@ var aCallable = function (argument) {
22618
22605
  // https://tc39.es/ecma262/#sec-getmethod
22619
22606
  var getMethod = function (V, P) {
22620
22607
  var func = V[P];
22621
- return isNullOrUndefined(func) ? undefined : aCallable(func);
22608
+ return func == null ? undefined : aCallable(func);
22622
22609
  };
22623
22610
 
22624
22611
  var $TypeError$2 = TypeError;
@@ -22633,7 +22620,7 @@ var ordinaryToPrimitive = function (input, pref) {
22633
22620
  throw $TypeError$2("Can't convert object to primitive value");
22634
22621
  };
22635
22622
 
22636
- // eslint-disable-next-line es/no-object-defineproperty -- safe
22623
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
22637
22624
  var defineProperty = Object.defineProperty;
22638
22625
 
22639
22626
  var defineGlobalProperty = function (key, value) {
@@ -22653,10 +22640,10 @@ var shared = createCommonjsModule(function (module) {
22653
22640
  (module.exports = function (key, value) {
22654
22641
  return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
22655
22642
  })('versions', []).push({
22656
- version: '3.29.0',
22643
+ version: '3.24.1',
22657
22644
  mode: 'global',
22658
- copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
22659
- license: 'https://github.com/zloirock/core-js/blob/v3.29.0/LICENSE',
22645
+ copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
22646
+ license: 'https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE',
22660
22647
  source: 'https://github.com/zloirock/core-js'
22661
22648
  });
22662
22649
  });
@@ -22673,7 +22660,7 @@ var hasOwnProperty = functionUncurryThis({}.hasOwnProperty);
22673
22660
 
22674
22661
  // `HasOwnProperty` abstract operation
22675
22662
  // https://tc39.es/ecma262/#sec-hasownproperty
22676
- // eslint-disable-next-line es/no-object-hasown -- safe
22663
+ // eslint-disable-next-line es-x/no-object-hasown -- safe
22677
22664
  var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
22678
22665
  return hasOwnProperty(toObject(it), key);
22679
22666
  };
@@ -22686,15 +22673,21 @@ var uid = function (key) {
22686
22673
  return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$3(++id + postfix, 36);
22687
22674
  };
22688
22675
 
22689
- var Symbol$1 = global_1.Symbol;
22690
22676
  var WellKnownSymbolsStore = shared('wks');
22691
- var createWellKnownSymbol = useSymbolAsUid ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
22677
+ var Symbol$1 = global_1.Symbol;
22678
+ var symbolFor = Symbol$1 && Symbol$1['for'];
22679
+ var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
22692
22680
 
22693
22681
  var wellKnownSymbol = function (name) {
22694
- if (!hasOwnProperty_1(WellKnownSymbolsStore, name)) {
22695
- WellKnownSymbolsStore[name] = symbolConstructorDetection && hasOwnProperty_1(Symbol$1, name)
22696
- ? Symbol$1[name]
22697
- : createWellKnownSymbol('Symbol.' + name);
22682
+ if (!hasOwnProperty_1(WellKnownSymbolsStore, name) || !(nativeSymbol || typeof WellKnownSymbolsStore[name] == 'string')) {
22683
+ var description = 'Symbol.' + name;
22684
+ if (nativeSymbol && hasOwnProperty_1(Symbol$1, name)) {
22685
+ WellKnownSymbolsStore[name] = Symbol$1[name];
22686
+ } else if (useSymbolAsUid && symbolFor) {
22687
+ WellKnownSymbolsStore[name] = symbolFor(description);
22688
+ } else {
22689
+ WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
22690
+ }
22698
22691
  } return WellKnownSymbolsStore[name];
22699
22692
  };
22700
22693
 
@@ -22734,13 +22727,13 @@ var documentCreateElement = function (it) {
22734
22727
 
22735
22728
  // Thanks to IE8 for its funny defineProperty
22736
22729
  var ie8DomDefine = !descriptors && !fails(function () {
22737
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
22730
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
22738
22731
  return Object.defineProperty(documentCreateElement('div'), 'a', {
22739
22732
  get: function () { return 7; }
22740
22733
  }).a != 7;
22741
22734
  });
22742
22735
 
22743
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22736
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22744
22737
  var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
22745
22738
 
22746
22739
  // `Object.getOwnPropertyDescriptor` method
@@ -22761,7 +22754,7 @@ var objectGetOwnPropertyDescriptor = {
22761
22754
  // V8 ~ Chrome 36-
22762
22755
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
22763
22756
  var v8PrototypeDefineBug = descriptors && fails(function () {
22764
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
22757
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
22765
22758
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
22766
22759
  value: 42,
22767
22760
  writable: false
@@ -22778,9 +22771,9 @@ var anObject = function (argument) {
22778
22771
  };
22779
22772
 
22780
22773
  var $TypeError$5 = TypeError;
22781
- // eslint-disable-next-line es/no-object-defineproperty -- safe
22774
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
22782
22775
  var $defineProperty = Object.defineProperty;
22783
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22776
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22784
22777
  var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
22785
22778
  var ENUMERABLE = 'enumerable';
22786
22779
  var CONFIGURABLE = 'configurable';
@@ -22827,7 +22820,7 @@ var createNonEnumerableProperty = descriptors ? function (object, key, value) {
22827
22820
  };
22828
22821
 
22829
22822
  var FunctionPrototype$1 = Function.prototype;
22830
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22823
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22831
22824
  var getDescriptor = descriptors && Object.getOwnPropertyDescriptor;
22832
22825
 
22833
22826
  var EXISTS$1 = hasOwnProperty_1(FunctionPrototype$1, 'name');
@@ -22854,7 +22847,7 @@ var inspectSource = sharedStore.inspectSource;
22854
22847
 
22855
22848
  var WeakMap$1 = global_1.WeakMap;
22856
22849
 
22857
- var weakMapBasicDetection = isCallable(WeakMap$1) && /native code/.test(String(WeakMap$1));
22850
+ var nativeWeakMap = isCallable(WeakMap$1) && /native code/.test(inspectSource(WeakMap$1));
22858
22851
 
22859
22852
  var keys$1 = shared('keys');
22860
22853
 
@@ -22882,30 +22875,28 @@ var getterFor = function (TYPE) {
22882
22875
  };
22883
22876
  };
22884
22877
 
22885
- if (weakMapBasicDetection || sharedStore.state) {
22878
+ if (nativeWeakMap || sharedStore.state) {
22886
22879
  var store$1 = sharedStore.state || (sharedStore.state = new WeakMap$2());
22887
- /* eslint-disable no-self-assign -- prototype methods protection */
22888
- store$1.get = store$1.get;
22889
- store$1.has = store$1.has;
22890
- store$1.set = store$1.set;
22891
- /* eslint-enable no-self-assign -- prototype methods protection */
22880
+ var wmget = functionUncurryThis(store$1.get);
22881
+ var wmhas = functionUncurryThis(store$1.has);
22882
+ var wmset = functionUncurryThis(store$1.set);
22892
22883
  set = function (it, metadata) {
22893
- if (store$1.has(it)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
22884
+ if (wmhas(store$1, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
22894
22885
  metadata.facade = it;
22895
- store$1.set(it, metadata);
22886
+ wmset(store$1, it, metadata);
22896
22887
  return metadata;
22897
22888
  };
22898
22889
  get = function (it) {
22899
- return store$1.get(it) || {};
22890
+ return wmget(store$1, it) || {};
22900
22891
  };
22901
22892
  has = function (it) {
22902
- return store$1.has(it);
22893
+ return wmhas(store$1, it);
22903
22894
  };
22904
22895
  } else {
22905
22896
  var STATE = sharedKey('state');
22906
22897
  hiddenKeys[STATE] = true;
22907
22898
  set = function (it, metadata) {
22908
- if (hasOwnProperty_1(it, STATE)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
22899
+ if (hasOwnProperty_1(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
22909
22900
  metadata.facade = it;
22910
22901
  createNonEnumerableProperty(it, STATE, metadata);
22911
22902
  return metadata;
@@ -22933,12 +22924,8 @@ var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
22933
22924
 
22934
22925
  var enforceInternalState = internalState.enforce;
22935
22926
  var getInternalState = internalState.get;
22936
- var $String = String;
22937
- // eslint-disable-next-line es/no-object-defineproperty -- safe
22927
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
22938
22928
  var defineProperty = Object.defineProperty;
22939
- var stringSlice = functionUncurryThis(''.slice);
22940
- var replace = functionUncurryThis(''.replace);
22941
- var join = functionUncurryThis([].join);
22942
22929
 
22943
22930
  var CONFIGURABLE_LENGTH = descriptors && !fails(function () {
22944
22931
  return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
@@ -22947,8 +22934,8 @@ var CONFIGURABLE_LENGTH = descriptors && !fails(function () {
22947
22934
  var TEMPLATE = String(String).split('String');
22948
22935
 
22949
22936
  var makeBuiltIn = module.exports = function (value, name, options) {
22950
- if (stringSlice($String(name), 0, 7) === 'Symbol(') {
22951
- name = '[' + replace($String(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
22937
+ if (String(name).slice(0, 7) === 'Symbol(') {
22938
+ name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
22952
22939
  }
22953
22940
  if (options && options.getter) name = 'get ' + name;
22954
22941
  if (options && options.setter) name = 'set ' + name;
@@ -22967,7 +22954,7 @@ var makeBuiltIn = module.exports = function (value, name, options) {
22967
22954
  } catch (error) { /* empty */ }
22968
22955
  var state = enforceInternalState(value);
22969
22956
  if (!hasOwnProperty_1(state, 'source')) {
22970
- state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
22957
+ state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
22971
22958
  } return value;
22972
22959
  };
22973
22960
 
@@ -23006,7 +22993,7 @@ var floor = Math.floor;
23006
22993
 
23007
22994
  // `Math.trunc` method
23008
22995
  // https://tc39.es/ecma262/#sec-math.trunc
23009
- // eslint-disable-next-line es/no-math-trunc -- safe
22996
+ // eslint-disable-next-line es-x/no-math-trunc -- safe
23010
22997
  var mathTrunc = Math.trunc || function trunc(x) {
23011
22998
  var n = +x;
23012
22999
  return (n > 0 ? floor : ceil)(n);
@@ -23107,7 +23094,7 @@ var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
23107
23094
 
23108
23095
  // `Object.getOwnPropertyNames` method
23109
23096
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
23110
- // eslint-disable-next-line es/no-object-getownpropertynames -- safe
23097
+ // eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
23111
23098
  var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
23112
23099
  return objectKeysInternal(O, hiddenKeys$1);
23113
23100
  };
@@ -23116,7 +23103,7 @@ var objectGetOwnPropertyNames = {
23116
23103
  f: f$3
23117
23104
  };
23118
23105
 
23119
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
23106
+ // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
23120
23107
  var f$4 = Object.getOwnPropertySymbols;
23121
23108
 
23122
23109
  var objectGetOwnPropertySymbols = {
@@ -23260,7 +23247,7 @@ var toString_1 = function (argument) {
23260
23247
  var charAt = functionUncurryThis(''.charAt);
23261
23248
 
23262
23249
  var FORCED = fails(function () {
23263
- // eslint-disable-next-line es/no-array-string-prototype-at -- safe
23250
+ // eslint-disable-next-line es-x/no-array-string-prototype-at -- safe
23264
23251
  return '𠮷'.at(-2) !== '\uD842';
23265
23252
  });
23266
23253
 
@@ -23278,14 +23265,14 @@ _export({ target: 'String', proto: true, forced: FORCED }, {
23278
23265
 
23279
23266
  // `Object.keys` method
23280
23267
  // https://tc39.es/ecma262/#sec-object.keys
23281
- // eslint-disable-next-line es/no-object-keys -- safe
23268
+ // eslint-disable-next-line es-x/no-object-keys -- safe
23282
23269
  var objectKeys = Object.keys || function keys(O) {
23283
23270
  return objectKeysInternal(O, enumBugKeys);
23284
23271
  };
23285
23272
 
23286
23273
  // `Object.defineProperties` method
23287
23274
  // https://tc39.es/ecma262/#sec-object.defineproperties
23288
- // eslint-disable-next-line es/no-object-defineproperties -- safe
23275
+ // eslint-disable-next-line es-x/no-object-defineproperties -- safe
23289
23276
  var f$5 = descriptors && !v8PrototypeDefineBug ? Object.defineProperties : function defineProperties(O, Properties) {
23290
23277
  anObject(O);
23291
23278
  var props = toIndexedObject(Properties);
@@ -23374,7 +23361,7 @@ hiddenKeys[IE_PROTO] = true;
23374
23361
 
23375
23362
  // `Object.create` method
23376
23363
  // https://tc39.es/ecma262/#sec-object.create
23377
- // eslint-disable-next-line es/no-object-create -- safe
23364
+ // eslint-disable-next-line es-x/no-object-create -- safe
23378
23365
  var objectCreate = Object.create || function create(O, Properties) {
23379
23366
  var result;
23380
23367
  if (O !== null) {
@@ -23420,19 +23407,13 @@ _export({ target: 'Array', proto: true }, {
23420
23407
 
23421
23408
  addToUnscopables('at');
23422
23409
 
23423
- // eslint-disable-next-line es/no-typed-arrays -- safe
23424
- var arrayBufferBasicDetection = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
23425
-
23426
- var defineBuiltInAccessor = function (target, name, descriptor) {
23427
- if (descriptor.get) makeBuiltIn_1(descriptor.get, name, { getter: true });
23428
- if (descriptor.set) makeBuiltIn_1(descriptor.set, name, { setter: true });
23429
- return objectDefineProperty.f(target, name, descriptor);
23430
- };
23410
+ // eslint-disable-next-line es-x/no-typed-arrays -- safe
23411
+ var arrayBufferNative = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
23431
23412
 
23432
23413
  var correctPrototypeGetter = !fails(function () {
23433
23414
  function F() { /* empty */ }
23434
23415
  F.prototype.constructor = null;
23435
- // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
23416
+ // eslint-disable-next-line es-x/no-object-getprototypeof -- required for testing
23436
23417
  return Object.getPrototypeOf(new F()) !== F.prototype;
23437
23418
  });
23438
23419
 
@@ -23442,7 +23423,7 @@ var ObjectPrototype = $Object$4.prototype;
23442
23423
 
23443
23424
  // `Object.getPrototypeOf` method
23444
23425
  // https://tc39.es/ecma262/#sec-object.getprototypeof
23445
- // eslint-disable-next-line es/no-object-getprototypeof -- safe
23426
+ // eslint-disable-next-line es-x/no-object-getprototypeof -- safe
23446
23427
  var objectGetPrototypeOf = correctPrototypeGetter ? $Object$4.getPrototypeOf : function (O) {
23447
23428
  var object = toObject(O);
23448
23429
  if (hasOwnProperty_1(object, IE_PROTO$1)) return object[IE_PROTO$1];
@@ -23452,13 +23433,6 @@ var objectGetPrototypeOf = correctPrototypeGetter ? $Object$4.getPrototypeOf : f
23452
23433
  } return object instanceof $Object$4 ? ObjectPrototype : null;
23453
23434
  };
23454
23435
 
23455
- var functionUncurryThisAccessor = function (object, key, method) {
23456
- try {
23457
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
23458
- return functionUncurryThis(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));
23459
- } catch (error) { /* empty */ }
23460
- };
23461
-
23462
23436
  var $String$3 = String;
23463
23437
  var $TypeError$6 = TypeError;
23464
23438
 
@@ -23475,13 +23449,14 @@ var aPossiblePrototype = function (argument) {
23475
23449
  // `Object.setPrototypeOf` method
23476
23450
  // https://tc39.es/ecma262/#sec-object.setprototypeof
23477
23451
  // Works with __proto__ only. Old v8 can't work with null proto objects.
23478
- // eslint-disable-next-line es/no-object-setprototypeof -- safe
23452
+ // eslint-disable-next-line es-x/no-object-setprototypeof -- safe
23479
23453
  var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
23480
23454
  var CORRECT_SETTER = false;
23481
23455
  var test = {};
23482
23456
  var setter;
23483
23457
  try {
23484
- setter = functionUncurryThisAccessor(Object.prototype, '__proto__', 'set');
23458
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
23459
+ setter = functionUncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
23485
23460
  setter(test, []);
23486
23461
  CORRECT_SETTER = test instanceof Array;
23487
23462
  } catch (error) { /* empty */ }
@@ -23494,6 +23469,14 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
23494
23469
  };
23495
23470
  }() : undefined);
23496
23471
 
23472
+ var defineProperty$2 = objectDefineProperty.f;
23473
+
23474
+
23475
+
23476
+
23477
+
23478
+
23479
+
23497
23480
  var enforceInternalState = internalState.enforce;
23498
23481
  var getInternalState = internalState.get;
23499
23482
  var Int8Array = global_1.Int8Array;
@@ -23509,7 +23492,7 @@ var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag');
23509
23492
  var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG');
23510
23493
  var TYPED_ARRAY_CONSTRUCTOR = 'TypedArrayConstructor';
23511
23494
  // Fixing native typed arrays in Opera Presto crashes the browser, see #595
23512
- var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferBasicDetection && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
23495
+ var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferNative && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
23513
23496
  var TYPED_ARRAY_TAG_REQUIRED = false;
23514
23497
  var NAME, Constructor, Prototype;
23515
23498
 
@@ -23644,12 +23627,9 @@ if (NATIVE_ARRAY_BUFFER_VIEWS && objectGetPrototypeOf(Uint8ClampedArrayPrototype
23644
23627
 
23645
23628
  if (descriptors && !hasOwnProperty_1(TypedArrayPrototype, TO_STRING_TAG$2)) {
23646
23629
  TYPED_ARRAY_TAG_REQUIRED = true;
23647
- defineBuiltInAccessor(TypedArrayPrototype, TO_STRING_TAG$2, {
23648
- configurable: true,
23649
- get: function () {
23650
- return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined;
23651
- }
23652
- });
23630
+ defineProperty$2(TypedArrayPrototype, TO_STRING_TAG$2, { get: function () {
23631
+ return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined;
23632
+ } });
23653
23633
  for (NAME in TypedArrayConstructorsList) if (global_1[NAME]) {
23654
23634
  createNonEnumerableProperty(global_1[NAME], TYPED_ARRAY_TAG, NAME);
23655
23635
  }
@@ -27119,6 +27099,7 @@ var RadioButtonWithLabel = function RadioButtonWithLabel(_ref5) {
27119
27099
  ariaInvalid = _ref5.ariaInvalid,
27120
27100
  themeValues = _ref5.themeValues,
27121
27101
  index = _ref5.index,
27102
+ defaultChecked = _ref5.defaultChecked,
27122
27103
  _ref5$handleChange = _ref5.handleChange,
27123
27104
  handleChange = _ref5$handleChange === void 0 ? noop : _ref5$handleChange;
27124
27105
  return /*#__PURE__*/React.createElement(InputAndLabelContainer, {
@@ -27138,7 +27119,7 @@ var RadioButtonWithLabel = function RadioButtonWithLabel(_ref5) {
27138
27119
  setValue(e.target.value);
27139
27120
  handleChange(e);
27140
27121
  },
27141
- defaultChecked: index === 0
27122
+ defaultChecked: defaultChecked || index === 0
27142
27123
  }), /*#__PURE__*/React.createElement(Text$1, {
27143
27124
  as: "label",
27144
27125
  htmlFor: id,
@@ -27342,16 +27323,14 @@ var fallbackValues$x = {
27342
27323
  };
27343
27324
 
27344
27325
  var SolidDivider = function SolidDivider(_ref) {
27345
- var borderColor = _ref.borderColor,
27346
- borderSize = _ref.borderSize,
27347
- themeValues = _ref.themeValues;
27326
+ var themeValues = _ref.themeValues;
27348
27327
  return /*#__PURE__*/React.createElement(Box, {
27349
27328
  padding: "0",
27350
27329
  minWidth: "100%",
27351
27330
  minHeight: "1px",
27352
- borderColor: borderColor || themeValues.borderColor,
27353
- borderSize: borderSize || themeValues.borderSize,
27354
- borderWidthOverride: "0px 0px ".concat(borderSize || themeValues.borderSize, " 0px")
27331
+ borderColor: themeValues.borderColor,
27332
+ borderSize: themeValues.borderSize,
27333
+ borderWidthOverride: "0px 0px ".concat(themeValues.borderSize, " 0px")
27355
27334
  });
27356
27335
  };
27357
27336
 
@@ -46805,30 +46784,26 @@ var fallbackValues$J = {
46805
46784
  */
46806
46785
 
46807
46786
  var Module = function Module(_ref) {
46808
- var _ref$variant = _ref.variant,
46809
- variant = _ref$variant === void 0 ? "default" : _ref$variant,
46810
- as = _ref.as,
46811
- disabled = _ref.disabled,
46812
- heading = _ref.heading,
46813
- rightTitleContent = _ref.rightTitleContent,
46814
- _ref$titleID = _ref.titleID,
46815
- titleID = _ref$titleID === void 0 ? "" : _ref$titleID,
46787
+ var heading = _ref.heading,
46816
46788
  _ref$spacing = _ref.spacing,
46817
46789
  spacing = _ref$spacing === void 0 ? "1rem" : _ref$spacing,
46818
46790
  _ref$padding = _ref.padding,
46819
46791
  padding = _ref$padding === void 0 ? "0" : _ref$padding,
46820
- _ref$margin = _ref.margin,
46821
- margin = _ref$margin === void 0 ? "0" : _ref$margin,
46822
46792
  _ref$spacingBottom = _ref.spacingBottom,
46823
46793
  spacingBottom = _ref$spacingBottom === void 0 ? "2.5rem" : _ref$spacingBottom,
46824
- fontSize = _ref.fontSize,
46825
46794
  themeValues = _ref.themeValues,
46795
+ _ref$variant = _ref.variant,
46796
+ variant = _ref$variant === void 0 ? "default" : _ref$variant,
46797
+ fontSize = _ref.fontSize,
46798
+ as = _ref.as,
46799
+ _ref$titleID = _ref.titleID,
46800
+ titleID = _ref$titleID === void 0 ? "" : _ref$titleID,
46801
+ rightTitleContent = _ref.rightTitleContent,
46826
46802
  children = _ref.children;
46827
46803
  var themedFontSize = variant === "small" ? "1.25rem" : variant === "default" ? "1.375rem" : "2rem";
46828
46804
  var computedFontSize = fontSize || themedFontSize;
46829
46805
  var themedElemType = variant === "small" ? "h6" : variant === "default" ? "h5" : "h2";
46830
46806
  var computedElemType = as || themedElemType;
46831
- var disabledStyles = "opacity: 0.40;";
46832
46807
  var headingText = /*#__PURE__*/React.createElement(Title$1, {
46833
46808
  weight: themeValues.fontWeight,
46834
46809
  color: themeValues.fontColor,
@@ -46838,18 +46813,12 @@ var Module = function Module(_ref) {
46838
46813
  extraStyles: "font-size: ".concat(computedFontSize, ";"),
46839
46814
  id: titleID
46840
46815
  }, heading);
46841
- return /*#__PURE__*/React.createElement(Box, {
46842
- "aria-disabled": disabled,
46843
- extraStyles: disabled && disabledStyles,
46844
- padding: "0",
46845
- role: "group"
46846
- }, heading && !rightTitleContent && headingText, heading && rightTitleContent && /*#__PURE__*/React.createElement(Cluster, {
46816
+ return /*#__PURE__*/React.createElement(Fragment$1, null, heading && !rightTitleContent && headingText, heading && rightTitleContent && /*#__PURE__*/React.createElement(Cluster, {
46847
46817
  justify: "space-between",
46848
46818
  align: "center",
46849
46819
  nowrap: true
46850
46820
  }, headingText, rightTitleContent), /*#__PURE__*/React.createElement(Box, {
46851
- padding: "0 0 ".concat(spacingBottom),
46852
- extraStyles: "margin: ".concat(margin)
46821
+ padding: "0 0 ".concat(spacingBottom)
46853
46822
  }, /*#__PURE__*/React.createElement(Box, {
46854
46823
  padding: padding,
46855
46824
  background: themeValues.backgroundColor,
@@ -49406,7 +49375,8 @@ var RadioGroup = function RadioGroup(_ref) {
49406
49375
  groupName: groupName,
49407
49376
  setValue: setValue,
49408
49377
  handleChange: handleChange,
49409
- "aria-invalid": field.dirty && field.hasErrors
49378
+ "aria-invalid": field.dirty && field.hasErrors,
49379
+ defaultChecked: field.rawValue
49410
49380
  }));
49411
49381
  })));
49412
49382
  };
@@ -49462,8 +49432,6 @@ var RadioSection = function RadioSection(_ref) {
49462
49432
  initiallyOpen = _ref$initiallyOpen === void 0 ? true : _ref$initiallyOpen,
49463
49433
  _ref$openHeight = _ref.openHeight,
49464
49434
  openHeight = _ref$openHeight === void 0 ? "auto" : _ref$openHeight,
49465
- _ref$containerStyles = _ref.containerStyles,
49466
- containerStyles = _ref$containerStyles === void 0 ? "" : _ref$containerStyles,
49467
49435
  ariaDescribedBy = _ref.ariaDescribedBy;
49468
49436
 
49469
49437
  var handleKeyDown = function handleKeyDown(id, e) {
@@ -49516,8 +49484,7 @@ var RadioSection = function RadioSection(_ref) {
49516
49484
  return /*#__PURE__*/React.createElement(Box, {
49517
49485
  padding: "1px",
49518
49486
  border: "1px solid ".concat(themeValues.borderColor),
49519
- borderRadius: "4px",
49520
- extraStyles: containerStyles
49487
+ borderRadius: "4px"
49521
49488
  }, /*#__PURE__*/React.createElement(Stack, {
49522
49489
  childGap: "0"
49523
49490
  }, sections.filter(function (section) {