@thecb/components 9.2.7-beta.8 → 9.2.8-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
@@ -18239,6 +18239,34 @@ var PlusCircleIcon = function PlusCircleIcon(_ref) {
18239
18239
  }));
18240
18240
  };
18241
18241
 
18242
+ var KebabMenuIcon = function KebabMenuIcon() {
18243
+ return /*#__PURE__*/React.createElement("svg", {
18244
+ xmlns: "http://www.w3.org/2000/svg",
18245
+ width: "21",
18246
+ height: "32",
18247
+ viewBox: "0 0 21 32",
18248
+ fill: "none"
18249
+ }, /*#__PURE__*/React.createElement("path", {
18250
+ d: "M0 4C0 1.79086 1.79086 0 4 0L17 0C19.2091 0 21 1.79086 21 4V28C21 30.2091 19.2091 32 17 32H4C1.79086 32 0 30.2091 0 28L0 4Z",
18251
+ fill: "#FEFEFE"
18252
+ }), /*#__PURE__*/React.createElement("path", {
18253
+ fillRule: "evenodd",
18254
+ clipRule: "evenodd",
18255
+ d: "M10.5 6C9.39333 6 8.5 6.89333 8.5 8C8.5 9.10667 9.39333 10 10.5 10C11.6067 10 12.5 9.10667 12.5 8C12.5 6.89333 11.6067 6 10.5 6Z",
18256
+ fill: "#3B5BDB"
18257
+ }), /*#__PURE__*/React.createElement("path", {
18258
+ fillRule: "evenodd",
18259
+ clipRule: "evenodd",
18260
+ d: "M10.5 14C9.39333 14 8.5 14.8933 8.5 16C8.5 17.1067 9.39333 18 10.5 18C11.6067 18 12.5 17.1067 12.5 16C12.5 14.8933 11.6067 14 10.5 14Z",
18261
+ fill: "#3B5BDB"
18262
+ }), /*#__PURE__*/React.createElement("path", {
18263
+ fillRule: "evenodd",
18264
+ clipRule: "evenodd",
18265
+ d: "M10.5 22C9.39333 22 8.5 22.9067 8.5 24C8.5 25.0933 9.40667 26 10.5 26C11.5933 26 12.5 25.0933 12.5 24C12.5 22.9067 11.6067 22 10.5 22Z",
18266
+ fill: "#3B5BDB"
18267
+ }));
18268
+ };
18269
+
18242
18270
  var color$2 = "#15749D";
18243
18271
  var hoverColor$1 = "#116285";
18244
18272
  var activeColor$1 = "#0E506D";
@@ -22419,17 +22447,18 @@ var DropdownIcon = function DropdownIcon() {
22419
22447
  };
22420
22448
 
22421
22449
  var check = function (it) {
22422
- return it && it.Math == Math && it;
22450
+ return it && it.Math === Math && it;
22423
22451
  };
22424
22452
 
22425
22453
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
22426
22454
  var global_1 =
22427
- // eslint-disable-next-line es-x/no-global-this -- safe
22455
+ // eslint-disable-next-line es/no-global-this -- safe
22428
22456
  check(typeof globalThis == 'object' && globalThis) ||
22429
22457
  check(typeof window == 'object' && window) ||
22430
22458
  // eslint-disable-next-line no-restricted-globals -- safe
22431
22459
  check(typeof self == 'object' && self) ||
22432
22460
  check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
22461
+ check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
22433
22462
  // eslint-disable-next-line no-new-func -- fallback
22434
22463
  (function () { return this; })() || Function('return this')();
22435
22464
 
@@ -22443,12 +22472,12 @@ var fails = function (exec) {
22443
22472
 
22444
22473
  // Detect IE8's incomplete defineProperty implementation
22445
22474
  var descriptors = !fails(function () {
22446
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
22447
- return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
22475
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
22476
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
22448
22477
  });
22449
22478
 
22450
22479
  var functionBindNative = !fails(function () {
22451
- // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
22480
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
22452
22481
  var test = (function () { /* empty */ }).bind();
22453
22482
  // eslint-disable-next-line no-prototype-builtins -- safe
22454
22483
  return typeof test != 'function' || test.hasOwnProperty('prototype');
@@ -22461,7 +22490,7 @@ var functionCall = functionBindNative ? call.bind(call) : function () {
22461
22490
  };
22462
22491
 
22463
22492
  var $propertyIsEnumerable = {}.propertyIsEnumerable;
22464
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22493
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22465
22494
  var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
22466
22495
 
22467
22496
  // Nashorn ~ JDK8 bug
@@ -22488,14 +22517,11 @@ var createPropertyDescriptor = function (bitmap, value) {
22488
22517
  };
22489
22518
 
22490
22519
  var FunctionPrototype = Function.prototype;
22491
- var bind$1 = FunctionPrototype.bind;
22492
22520
  var call$1 = FunctionPrototype.call;
22493
- var uncurryThis = functionBindNative && bind$1.bind(call$1, call$1);
22521
+ var uncurryThisWithBind = functionBindNative && FunctionPrototype.bind.bind(call$1, call$1);
22494
22522
 
22495
- var functionUncurryThis = functionBindNative ? function (fn) {
22496
- return fn && uncurryThis(fn);
22497
- } : function (fn) {
22498
- return fn && function () {
22523
+ var functionUncurryThis = functionBindNative ? uncurryThisWithBind : function (fn) {
22524
+ return function () {
22499
22525
  return call$1.apply(fn, arguments);
22500
22526
  };
22501
22527
  };
@@ -22516,15 +22542,21 @@ var indexedObject = fails(function () {
22516
22542
  // eslint-disable-next-line no-prototype-builtins -- safe
22517
22543
  return !$Object('z').propertyIsEnumerable(0);
22518
22544
  }) ? function (it) {
22519
- return classofRaw(it) == 'String' ? split(it, '') : $Object(it);
22545
+ return classofRaw(it) === 'String' ? split(it, '') : $Object(it);
22520
22546
  } : $Object;
22521
22547
 
22548
+ // we can't use just `it == null` since of `document.all` special case
22549
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
22550
+ var isNullOrUndefined = function (it) {
22551
+ return it === null || it === undefined;
22552
+ };
22553
+
22522
22554
  var $TypeError = TypeError;
22523
22555
 
22524
22556
  // `RequireObjectCoercible` abstract operation
22525
22557
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
22526
22558
  var requireObjectCoercible = function (it) {
22527
- if (it == undefined) throw $TypeError("Can't call method on " + it);
22559
+ if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
22528
22560
  return it;
22529
22561
  };
22530
22562
 
@@ -22536,13 +22568,32 @@ var toIndexedObject = function (it) {
22536
22568
  return indexedObject(requireObjectCoercible(it));
22537
22569
  };
22538
22570
 
22571
+ var documentAll = typeof document == 'object' && document.all;
22572
+
22573
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
22574
+ // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
22575
+ var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
22576
+
22577
+ var documentAll_1 = {
22578
+ all: documentAll,
22579
+ IS_HTMLDDA: IS_HTMLDDA
22580
+ };
22581
+
22582
+ var documentAll$1 = documentAll_1.all;
22583
+
22539
22584
  // `IsCallable` abstract operation
22540
22585
  // https://tc39.es/ecma262/#sec-iscallable
22541
- var isCallable = function (argument) {
22586
+ var isCallable = documentAll_1.IS_HTMLDDA ? function (argument) {
22587
+ return typeof argument == 'function' || argument === documentAll$1;
22588
+ } : function (argument) {
22542
22589
  return typeof argument == 'function';
22543
22590
  };
22544
22591
 
22545
- var isObject = function (it) {
22592
+ var documentAll$2 = documentAll_1.all;
22593
+
22594
+ var isObject = documentAll_1.IS_HTMLDDA ? function (it) {
22595
+ return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll$2;
22596
+ } : function (it) {
22546
22597
  return typeof it == 'object' ? it !== null : isCallable(it);
22547
22598
  };
22548
22599
 
@@ -22556,7 +22607,7 @@ var getBuiltIn = function (namespace, method) {
22556
22607
 
22557
22608
  var objectIsPrototypeOf = functionUncurryThis({}.isPrototypeOf);
22558
22609
 
22559
- var engineUserAgent = getBuiltIn('navigator', 'userAgent') || '';
22610
+ var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
22560
22611
 
22561
22612
  var process$1 = global_1.process;
22562
22613
  var Deno = global_1.Deno;
@@ -22583,24 +22634,29 @@ if (!version && engineUserAgent) {
22583
22634
 
22584
22635
  var engineV8Version = version;
22585
22636
 
22586
- /* eslint-disable es-x/no-symbol -- required for testing */
22637
+ /* eslint-disable es/no-symbol -- required for testing */
22638
+
22587
22639
 
22588
22640
 
22589
22641
 
22590
- // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
22591
- var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
22592
- var symbol = Symbol();
22642
+ var $String = global_1.String;
22643
+
22644
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
22645
+ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails(function () {
22646
+ var symbol = Symbol('symbol detection');
22593
22647
  // Chrome 38 Symbol has incorrect toString conversion
22594
22648
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
22595
- return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
22649
+ // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
22650
+ // of course, fail.
22651
+ return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
22596
22652
  // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
22597
22653
  !Symbol.sham && engineV8Version && engineV8Version < 41;
22598
22654
  });
22599
22655
 
22600
- /* eslint-disable es-x/no-symbol -- required for testing */
22656
+ /* eslint-disable es/no-symbol -- required for testing */
22601
22657
 
22602
22658
 
22603
- var useSymbolAsUid = nativeSymbol
22659
+ var useSymbolAsUid = symbolConstructorDetection
22604
22660
  && !Symbol.sham
22605
22661
  && typeof Symbol.iterator == 'symbol';
22606
22662
 
@@ -22613,11 +22669,11 @@ var isSymbol = useSymbolAsUid ? function (it) {
22613
22669
  return isCallable($Symbol) && objectIsPrototypeOf($Symbol.prototype, $Object$1(it));
22614
22670
  };
22615
22671
 
22616
- var $String = String;
22672
+ var $String$1 = String;
22617
22673
 
22618
22674
  var tryToString = function (argument) {
22619
22675
  try {
22620
- return $String(argument);
22676
+ return $String$1(argument);
22621
22677
  } catch (error) {
22622
22678
  return 'Object';
22623
22679
  }
@@ -22628,14 +22684,14 @@ var $TypeError$1 = TypeError;
22628
22684
  // `Assert: IsCallable(argument) is true`
22629
22685
  var aCallable = function (argument) {
22630
22686
  if (isCallable(argument)) return argument;
22631
- throw $TypeError$1(tryToString(argument) + ' is not a function');
22687
+ throw new $TypeError$1(tryToString(argument) + ' is not a function');
22632
22688
  };
22633
22689
 
22634
22690
  // `GetMethod` abstract operation
22635
22691
  // https://tc39.es/ecma262/#sec-getmethod
22636
22692
  var getMethod = function (V, P) {
22637
22693
  var func = V[P];
22638
- return func == null ? undefined : aCallable(func);
22694
+ return isNullOrUndefined(func) ? undefined : aCallable(func);
22639
22695
  };
22640
22696
 
22641
22697
  var $TypeError$2 = TypeError;
@@ -22647,10 +22703,10 @@ var ordinaryToPrimitive = function (input, pref) {
22647
22703
  if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = functionCall(fn, input))) return val;
22648
22704
  if (isCallable(fn = input.valueOf) && !isObject(val = functionCall(fn, input))) return val;
22649
22705
  if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = functionCall(fn, input))) return val;
22650
- throw $TypeError$2("Can't convert object to primitive value");
22706
+ throw new $TypeError$2("Can't convert object to primitive value");
22651
22707
  };
22652
22708
 
22653
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
22709
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
22654
22710
  var defineProperty = Object.defineProperty;
22655
22711
 
22656
22712
  var defineGlobalProperty = function (key, value) {
@@ -22667,13 +22723,16 @@ var store = global_1[SHARED] || defineGlobalProperty(SHARED, {});
22667
22723
  var sharedStore = store;
22668
22724
 
22669
22725
  var shared = createCommonjsModule(function (module) {
22726
+
22727
+
22728
+
22670
22729
  (module.exports = function (key, value) {
22671
22730
  return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
22672
22731
  })('versions', []).push({
22673
- version: '3.24.1',
22732
+ version: '3.33.3',
22674
22733
  mode: 'global',
22675
- copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
22676
- license: 'https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE',
22734
+ copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
22735
+ license: 'https://github.com/zloirock/core-js/blob/v3.33.3/LICENSE',
22677
22736
  source: 'https://github.com/zloirock/core-js'
22678
22737
  });
22679
22738
  });
@@ -22690,7 +22749,7 @@ var hasOwnProperty = functionUncurryThis({}.hasOwnProperty);
22690
22749
 
22691
22750
  // `HasOwnProperty` abstract operation
22692
22751
  // https://tc39.es/ecma262/#sec-hasownproperty
22693
- // eslint-disable-next-line es-x/no-object-hasown -- safe
22752
+ // eslint-disable-next-line es/no-object-hasown -- safe
22694
22753
  var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
22695
22754
  return hasOwnProperty(toObject(it), key);
22696
22755
  };
@@ -22703,21 +22762,15 @@ var uid = function (key) {
22703
22762
  return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$3(++id + postfix, 36);
22704
22763
  };
22705
22764
 
22706
- var WellKnownSymbolsStore = shared('wks');
22707
22765
  var Symbol$1 = global_1.Symbol;
22708
- var symbolFor = Symbol$1 && Symbol$1['for'];
22709
- var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
22766
+ var WellKnownSymbolsStore = shared('wks');
22767
+ var createWellKnownSymbol = useSymbolAsUid ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
22710
22768
 
22711
22769
  var wellKnownSymbol = function (name) {
22712
- if (!hasOwnProperty_1(WellKnownSymbolsStore, name) || !(nativeSymbol || typeof WellKnownSymbolsStore[name] == 'string')) {
22713
- var description = 'Symbol.' + name;
22714
- if (nativeSymbol && hasOwnProperty_1(Symbol$1, name)) {
22715
- WellKnownSymbolsStore[name] = Symbol$1[name];
22716
- } else if (useSymbolAsUid && symbolFor) {
22717
- WellKnownSymbolsStore[name] = symbolFor(description);
22718
- } else {
22719
- WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
22720
- }
22770
+ if (!hasOwnProperty_1(WellKnownSymbolsStore, name)) {
22771
+ WellKnownSymbolsStore[name] = symbolConstructorDetection && hasOwnProperty_1(Symbol$1, name)
22772
+ ? Symbol$1[name]
22773
+ : createWellKnownSymbol('Symbol.' + name);
22721
22774
  } return WellKnownSymbolsStore[name];
22722
22775
  };
22723
22776
 
@@ -22734,7 +22787,7 @@ var toPrimitive = function (input, pref) {
22734
22787
  if (pref === undefined) pref = 'default';
22735
22788
  result = functionCall(exoticToPrim, input, pref);
22736
22789
  if (!isObject(result) || isSymbol(result)) return result;
22737
- throw $TypeError$3("Can't convert object to primitive value");
22790
+ throw new $TypeError$3("Can't convert object to primitive value");
22738
22791
  }
22739
22792
  if (pref === undefined) pref = 'number';
22740
22793
  return ordinaryToPrimitive(input, pref);
@@ -22757,13 +22810,13 @@ var documentCreateElement = function (it) {
22757
22810
 
22758
22811
  // Thanks to IE8 for its funny defineProperty
22759
22812
  var ie8DomDefine = !descriptors && !fails(function () {
22760
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
22813
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
22761
22814
  return Object.defineProperty(documentCreateElement('div'), 'a', {
22762
22815
  get: function () { return 7; }
22763
- }).a != 7;
22816
+ }).a !== 7;
22764
22817
  });
22765
22818
 
22766
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22819
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22767
22820
  var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
22768
22821
 
22769
22822
  // `Object.getOwnPropertyDescriptor` method
@@ -22784,26 +22837,26 @@ var objectGetOwnPropertyDescriptor = {
22784
22837
  // V8 ~ Chrome 36-
22785
22838
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
22786
22839
  var v8PrototypeDefineBug = descriptors && fails(function () {
22787
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
22840
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
22788
22841
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
22789
22842
  value: 42,
22790
22843
  writable: false
22791
- }).prototype != 42;
22844
+ }).prototype !== 42;
22792
22845
  });
22793
22846
 
22794
- var $String$1 = String;
22847
+ var $String$2 = String;
22795
22848
  var $TypeError$4 = TypeError;
22796
22849
 
22797
22850
  // `Assert: Type(argument) is Object`
22798
22851
  var anObject = function (argument) {
22799
22852
  if (isObject(argument)) return argument;
22800
- throw $TypeError$4($String$1(argument) + ' is not an object');
22853
+ throw new $TypeError$4($String$2(argument) + ' is not an object');
22801
22854
  };
22802
22855
 
22803
22856
  var $TypeError$5 = TypeError;
22804
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
22857
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
22805
22858
  var $defineProperty = Object.defineProperty;
22806
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22859
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22807
22860
  var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
22808
22861
  var ENUMERABLE = 'enumerable';
22809
22862
  var CONFIGURABLE = 'configurable';
@@ -22833,7 +22886,7 @@ var f$2 = descriptors ? v8PrototypeDefineBug ? function defineProperty(O, P, Att
22833
22886
  if (ie8DomDefine) try {
22834
22887
  return $defineProperty(O, P, Attributes);
22835
22888
  } catch (error) { /* empty */ }
22836
- if ('get' in Attributes || 'set' in Attributes) throw $TypeError$5('Accessors not supported');
22889
+ if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$5('Accessors not supported');
22837
22890
  if ('value' in Attributes) O[P] = Attributes.value;
22838
22891
  return O;
22839
22892
  };
@@ -22850,7 +22903,7 @@ var createNonEnumerableProperty = descriptors ? function (object, key, value) {
22850
22903
  };
22851
22904
 
22852
22905
  var FunctionPrototype$1 = Function.prototype;
22853
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22906
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22854
22907
  var getDescriptor = descriptors && Object.getOwnPropertyDescriptor;
22855
22908
 
22856
22909
  var EXISTS$1 = hasOwnProperty_1(FunctionPrototype$1, 'name');
@@ -22877,7 +22930,7 @@ var inspectSource = sharedStore.inspectSource;
22877
22930
 
22878
22931
  var WeakMap$1 = global_1.WeakMap;
22879
22932
 
22880
- var nativeWeakMap = isCallable(WeakMap$1) && /native code/.test(inspectSource(WeakMap$1));
22933
+ var weakMapBasicDetection = isCallable(WeakMap$1) && /native code/.test(String(WeakMap$1));
22881
22934
 
22882
22935
  var keys$1 = shared('keys');
22883
22936
 
@@ -22900,27 +22953,29 @@ var getterFor = function (TYPE) {
22900
22953
  return function (it) {
22901
22954
  var state;
22902
22955
  if (!isObject(it) || (state = get(it)).type !== TYPE) {
22903
- throw TypeError$1('Incompatible receiver, ' + TYPE + ' required');
22956
+ throw new TypeError$1('Incompatible receiver, ' + TYPE + ' required');
22904
22957
  } return state;
22905
22958
  };
22906
22959
  };
22907
22960
 
22908
- if (nativeWeakMap || sharedStore.state) {
22961
+ if (weakMapBasicDetection || sharedStore.state) {
22909
22962
  var store$1 = sharedStore.state || (sharedStore.state = new WeakMap$2());
22910
- var wmget = functionUncurryThis(store$1.get);
22911
- var wmhas = functionUncurryThis(store$1.has);
22912
- var wmset = functionUncurryThis(store$1.set);
22963
+ /* eslint-disable no-self-assign -- prototype methods protection */
22964
+ store$1.get = store$1.get;
22965
+ store$1.has = store$1.has;
22966
+ store$1.set = store$1.set;
22967
+ /* eslint-enable no-self-assign -- prototype methods protection */
22913
22968
  set = function (it, metadata) {
22914
- if (wmhas(store$1, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
22969
+ if (store$1.has(it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
22915
22970
  metadata.facade = it;
22916
- wmset(store$1, it, metadata);
22971
+ store$1.set(it, metadata);
22917
22972
  return metadata;
22918
22973
  };
22919
22974
  get = function (it) {
22920
- return wmget(store$1, it) || {};
22975
+ return store$1.get(it) || {};
22921
22976
  };
22922
22977
  has = function (it) {
22923
- return wmhas(store$1, it);
22978
+ return store$1.has(it);
22924
22979
  };
22925
22980
  } else {
22926
22981
  var STATE = sharedKey('state');
@@ -22948,14 +23003,23 @@ var internalState = {
22948
23003
  };
22949
23004
 
22950
23005
  var makeBuiltIn_1 = createCommonjsModule(function (module) {
23006
+
23007
+
23008
+
23009
+
23010
+
22951
23011
  var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
22952
23012
 
22953
23013
 
22954
23014
 
22955
23015
  var enforceInternalState = internalState.enforce;
22956
23016
  var getInternalState = internalState.get;
22957
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
23017
+ var $String = String;
23018
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
22958
23019
  var defineProperty = Object.defineProperty;
23020
+ var stringSlice = functionUncurryThis(''.slice);
23021
+ var replace = functionUncurryThis(''.replace);
23022
+ var join = functionUncurryThis([].join);
22959
23023
 
22960
23024
  var CONFIGURABLE_LENGTH = descriptors && !fails(function () {
22961
23025
  return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
@@ -22964,8 +23028,8 @@ var CONFIGURABLE_LENGTH = descriptors && !fails(function () {
22964
23028
  var TEMPLATE = String(String).split('String');
22965
23029
 
22966
23030
  var makeBuiltIn = module.exports = function (value, name, options) {
22967
- if (String(name).slice(0, 7) === 'Symbol(') {
22968
- name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
23031
+ if (stringSlice($String(name), 0, 7) === 'Symbol(') {
23032
+ name = '[' + replace($String(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
22969
23033
  }
22970
23034
  if (options && options.getter) name = 'get ' + name;
22971
23035
  if (options && options.setter) name = 'set ' + name;
@@ -22984,7 +23048,7 @@ var makeBuiltIn = module.exports = function (value, name, options) {
22984
23048
  } catch (error) { /* empty */ }
22985
23049
  var state = enforceInternalState(value);
22986
23050
  if (!hasOwnProperty_1(state, 'source')) {
22987
- state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
23051
+ state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
22988
23052
  } return value;
22989
23053
  };
22990
23054
 
@@ -23023,7 +23087,7 @@ var floor = Math.floor;
23023
23087
 
23024
23088
  // `Math.trunc` method
23025
23089
  // https://tc39.es/ecma262/#sec-math.trunc
23026
- // eslint-disable-next-line es-x/no-math-trunc -- safe
23090
+ // eslint-disable-next-line es/no-math-trunc -- safe
23027
23091
  var mathTrunc = Math.trunc || function trunc(x) {
23028
23092
  var n = +x;
23029
23093
  return (n > 0 ? floor : ceil)(n);
@@ -23071,10 +23135,10 @@ var createMethod = function (IS_INCLUDES) {
23071
23135
  var value;
23072
23136
  // Array#includes uses SameValueZero equality algorithm
23073
23137
  // eslint-disable-next-line no-self-compare -- NaN check
23074
- if (IS_INCLUDES && el != el) while (length > index) {
23138
+ if (IS_INCLUDES && el !== el) while (length > index) {
23075
23139
  value = O[index++];
23076
23140
  // eslint-disable-next-line no-self-compare -- NaN check
23077
- if (value != value) return true;
23141
+ if (value !== value) return true;
23078
23142
  // Array#indexOf ignores holes, Array#includes - not
23079
23143
  } else for (;length > index; index++) {
23080
23144
  if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
@@ -23124,7 +23188,7 @@ var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
23124
23188
 
23125
23189
  // `Object.getOwnPropertyNames` method
23126
23190
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
23127
- // eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
23191
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
23128
23192
  var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
23129
23193
  return objectKeysInternal(O, hiddenKeys$1);
23130
23194
  };
@@ -23133,7 +23197,7 @@ var objectGetOwnPropertyNames = {
23133
23197
  f: f$3
23134
23198
  };
23135
23199
 
23136
- // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
23200
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
23137
23201
  var f$4 = Object.getOwnPropertySymbols;
23138
23202
 
23139
23203
  var objectGetOwnPropertySymbols = {
@@ -23165,8 +23229,8 @@ var replacement = /#|\.prototype\./;
23165
23229
 
23166
23230
  var isForced = function (feature, detection) {
23167
23231
  var value = data[normalize(feature)];
23168
- return value == POLYFILL ? true
23169
- : value == NATIVE ? false
23232
+ return value === POLYFILL ? true
23233
+ : value === NATIVE ? false
23170
23234
  : isCallable(detection) ? fails(detection)
23171
23235
  : !!detection;
23172
23236
  };
@@ -23246,7 +23310,7 @@ var TO_STRING_TAG$1 = wellKnownSymbol('toStringTag');
23246
23310
  var $Object$3 = Object;
23247
23311
 
23248
23312
  // ES3 wrong here
23249
- var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
23313
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
23250
23314
 
23251
23315
  // fallback for IE11 Script Access Denied error
23252
23316
  var tryGet = function (it, key) {
@@ -23264,25 +23328,25 @@ var classof = toStringTagSupport ? classofRaw : function (it) {
23264
23328
  // builtinTag case
23265
23329
  : CORRECT_ARGUMENTS ? classofRaw(O)
23266
23330
  // ES3 arguments fallback
23267
- : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
23331
+ : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
23268
23332
  };
23269
23333
 
23270
- var $String$2 = String;
23334
+ var $String$3 = String;
23271
23335
 
23272
23336
  var toString_1 = function (argument) {
23273
- if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
23274
- return $String$2(argument);
23337
+ if (classof(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
23338
+ return $String$3(argument);
23275
23339
  };
23276
23340
 
23277
23341
  var charAt = functionUncurryThis(''.charAt);
23278
23342
 
23279
23343
  var FORCED = fails(function () {
23280
- // eslint-disable-next-line es-x/no-array-string-prototype-at -- safe
23344
+ // eslint-disable-next-line es/no-array-string-prototype-at -- safe
23281
23345
  return '𠮷'.at(-2) !== '\uD842';
23282
23346
  });
23283
23347
 
23284
23348
  // `String.prototype.at` method
23285
- // https://github.com/tc39/proposal-relative-indexing-method
23349
+ // https://tc39.es/ecma262/#sec-string.prototype.at
23286
23350
  _export({ target: 'String', proto: true, forced: FORCED }, {
23287
23351
  at: function at(index) {
23288
23352
  var S = toString_1(requireObjectCoercible(this));
@@ -23295,14 +23359,14 @@ _export({ target: 'String', proto: true, forced: FORCED }, {
23295
23359
 
23296
23360
  // `Object.keys` method
23297
23361
  // https://tc39.es/ecma262/#sec-object.keys
23298
- // eslint-disable-next-line es-x/no-object-keys -- safe
23362
+ // eslint-disable-next-line es/no-object-keys -- safe
23299
23363
  var objectKeys = Object.keys || function keys(O) {
23300
23364
  return objectKeysInternal(O, enumBugKeys);
23301
23365
  };
23302
23366
 
23303
23367
  // `Object.defineProperties` method
23304
23368
  // https://tc39.es/ecma262/#sec-object.defineproperties
23305
- // eslint-disable-next-line es-x/no-object-defineproperties -- safe
23369
+ // eslint-disable-next-line es/no-object-defineproperties -- safe
23306
23370
  var f$5 = descriptors && !v8PrototypeDefineBug ? Object.defineProperties : function defineProperties(O, Properties) {
23307
23371
  anObject(O);
23308
23372
  var props = toIndexedObject(Properties);
@@ -23391,7 +23455,7 @@ hiddenKeys[IE_PROTO] = true;
23391
23455
 
23392
23456
  // `Object.create` method
23393
23457
  // https://tc39.es/ecma262/#sec-object.create
23394
- // eslint-disable-next-line es-x/no-object-create -- safe
23458
+ // eslint-disable-next-line es/no-object-create -- safe
23395
23459
  var objectCreate = Object.create || function create(O, Properties) {
23396
23460
  var result;
23397
23461
  if (O !== null) {
@@ -23411,7 +23475,7 @@ var ArrayPrototype = Array.prototype;
23411
23475
 
23412
23476
  // Array.prototype[@@unscopables]
23413
23477
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
23414
- if (ArrayPrototype[UNSCOPABLES] == undefined) {
23478
+ if (ArrayPrototype[UNSCOPABLES] === undefined) {
23415
23479
  defineProperty$1(ArrayPrototype, UNSCOPABLES, {
23416
23480
  configurable: true,
23417
23481
  value: objectCreate(null)
@@ -23424,7 +23488,7 @@ var addToUnscopables = function (key) {
23424
23488
  };
23425
23489
 
23426
23490
  // `Array.prototype.at` method
23427
- // https://github.com/tc39/proposal-relative-indexing-method
23491
+ // https://tc39.es/ecma262/#sec-array.prototype.at
23428
23492
  _export({ target: 'Array', proto: true }, {
23429
23493
  at: function at(index) {
23430
23494
  var O = toObject(this);
@@ -23437,13 +23501,19 @@ _export({ target: 'Array', proto: true }, {
23437
23501
 
23438
23502
  addToUnscopables('at');
23439
23503
 
23440
- // eslint-disable-next-line es-x/no-typed-arrays -- safe
23441
- var arrayBufferNative = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
23504
+ // eslint-disable-next-line es/no-typed-arrays -- safe
23505
+ var arrayBufferBasicDetection = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
23506
+
23507
+ var defineBuiltInAccessor = function (target, name, descriptor) {
23508
+ if (descriptor.get) makeBuiltIn_1(descriptor.get, name, { getter: true });
23509
+ if (descriptor.set) makeBuiltIn_1(descriptor.set, name, { setter: true });
23510
+ return objectDefineProperty.f(target, name, descriptor);
23511
+ };
23442
23512
 
23443
23513
  var correctPrototypeGetter = !fails(function () {
23444
23514
  function F() { /* empty */ }
23445
23515
  F.prototype.constructor = null;
23446
- // eslint-disable-next-line es-x/no-object-getprototypeof -- required for testing
23516
+ // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
23447
23517
  return Object.getPrototypeOf(new F()) !== F.prototype;
23448
23518
  });
23449
23519
 
@@ -23453,7 +23523,7 @@ var ObjectPrototype = $Object$4.prototype;
23453
23523
 
23454
23524
  // `Object.getPrototypeOf` method
23455
23525
  // https://tc39.es/ecma262/#sec-object.getprototypeof
23456
- // eslint-disable-next-line es-x/no-object-getprototypeof -- safe
23526
+ // eslint-disable-next-line es/no-object-getprototypeof -- safe
23457
23527
  var objectGetPrototypeOf = correctPrototypeGetter ? $Object$4.getPrototypeOf : function (O) {
23458
23528
  var object = toObject(O);
23459
23529
  if (hasOwnProperty_1(object, IE_PROTO$1)) return object[IE_PROTO$1];
@@ -23463,12 +23533,19 @@ var objectGetPrototypeOf = correctPrototypeGetter ? $Object$4.getPrototypeOf : f
23463
23533
  } return object instanceof $Object$4 ? ObjectPrototype : null;
23464
23534
  };
23465
23535
 
23466
- var $String$3 = String;
23536
+ var functionUncurryThisAccessor = function (object, key, method) {
23537
+ try {
23538
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
23539
+ return functionUncurryThis(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));
23540
+ } catch (error) { /* empty */ }
23541
+ };
23542
+
23543
+ var $String$4 = String;
23467
23544
  var $TypeError$6 = TypeError;
23468
23545
 
23469
23546
  var aPossiblePrototype = function (argument) {
23470
23547
  if (typeof argument == 'object' || isCallable(argument)) return argument;
23471
- throw $TypeError$6("Can't set " + $String$3(argument) + ' as a prototype');
23548
+ throw new $TypeError$6("Can't set " + $String$4(argument) + ' as a prototype');
23472
23549
  };
23473
23550
 
23474
23551
  /* eslint-disable no-proto -- safe */
@@ -23479,14 +23556,13 @@ var aPossiblePrototype = function (argument) {
23479
23556
  // `Object.setPrototypeOf` method
23480
23557
  // https://tc39.es/ecma262/#sec-object.setprototypeof
23481
23558
  // Works with __proto__ only. Old v8 can't work with null proto objects.
23482
- // eslint-disable-next-line es-x/no-object-setprototypeof -- safe
23559
+ // eslint-disable-next-line es/no-object-setprototypeof -- safe
23483
23560
  var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
23484
23561
  var CORRECT_SETTER = false;
23485
23562
  var test = {};
23486
23563
  var setter;
23487
23564
  try {
23488
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
23489
- setter = functionUncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
23565
+ setter = functionUncurryThisAccessor(Object.prototype, '__proto__', 'set');
23490
23566
  setter(test, []);
23491
23567
  CORRECT_SETTER = test instanceof Array;
23492
23568
  } catch (error) { /* empty */ }
@@ -23499,14 +23575,6 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
23499
23575
  };
23500
23576
  }() : undefined);
23501
23577
 
23502
- var defineProperty$2 = objectDefineProperty.f;
23503
-
23504
-
23505
-
23506
-
23507
-
23508
-
23509
-
23510
23578
  var enforceInternalState = internalState.enforce;
23511
23579
  var getInternalState = internalState.get;
23512
23580
  var Int8Array = global_1.Int8Array;
@@ -23522,7 +23590,7 @@ var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag');
23522
23590
  var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG');
23523
23591
  var TYPED_ARRAY_CONSTRUCTOR = 'TypedArrayConstructor';
23524
23592
  // Fixing native typed arrays in Opera Presto crashes the browser, see #595
23525
- var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferNative && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
23593
+ var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferBasicDetection && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
23526
23594
  var TYPED_ARRAY_TAG_REQUIRED = false;
23527
23595
  var NAME, Constructor, Prototype;
23528
23596
 
@@ -23567,12 +23635,12 @@ var isTypedArray = function (it) {
23567
23635
 
23568
23636
  var aTypedArray = function (it) {
23569
23637
  if (isTypedArray(it)) return it;
23570
- throw TypeError$2('Target is not a typed array');
23638
+ throw new TypeError$2('Target is not a typed array');
23571
23639
  };
23572
23640
 
23573
23641
  var aTypedArrayConstructor = function (C) {
23574
23642
  if (isCallable(C) && (!objectSetPrototypeOf || objectIsPrototypeOf(TypedArray, C))) return C;
23575
- throw TypeError$2(tryToString(C) + ' is not a typed array constructor');
23643
+ throw new TypeError$2(tryToString(C) + ' is not a typed array constructor');
23576
23644
  };
23577
23645
 
23578
23646
  var exportTypedArrayMethod = function (KEY, property, forced, options) {
@@ -23636,7 +23704,7 @@ for (NAME in BigIntArrayConstructorsList) {
23636
23704
  if (!NATIVE_ARRAY_BUFFER_VIEWS || !isCallable(TypedArray) || TypedArray === Function.prototype) {
23637
23705
  // eslint-disable-next-line no-shadow -- safe
23638
23706
  TypedArray = function TypedArray() {
23639
- throw TypeError$2('Incorrect invocation');
23707
+ throw new TypeError$2('Incorrect invocation');
23640
23708
  };
23641
23709
  if (NATIVE_ARRAY_BUFFER_VIEWS) for (NAME in TypedArrayConstructorsList) {
23642
23710
  if (global_1[NAME]) objectSetPrototypeOf(global_1[NAME], TypedArray);
@@ -23657,9 +23725,12 @@ if (NATIVE_ARRAY_BUFFER_VIEWS && objectGetPrototypeOf(Uint8ClampedArrayPrototype
23657
23725
 
23658
23726
  if (descriptors && !hasOwnProperty_1(TypedArrayPrototype, TO_STRING_TAG$2)) {
23659
23727
  TYPED_ARRAY_TAG_REQUIRED = true;
23660
- defineProperty$2(TypedArrayPrototype, TO_STRING_TAG$2, { get: function () {
23661
- return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined;
23662
- } });
23728
+ defineBuiltInAccessor(TypedArrayPrototype, TO_STRING_TAG$2, {
23729
+ configurable: true,
23730
+ get: function () {
23731
+ return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined;
23732
+ }
23733
+ });
23663
23734
  for (NAME in TypedArrayConstructorsList) if (global_1[NAME]) {
23664
23735
  createNonEnumerableProperty(global_1[NAME], TYPED_ARRAY_TAG, NAME);
23665
23736
  }
@@ -23683,7 +23754,7 @@ var aTypedArray$1 = arrayBufferViewCore.aTypedArray;
23683
23754
  var exportTypedArrayMethod$1 = arrayBufferViewCore.exportTypedArrayMethod;
23684
23755
 
23685
23756
  // `%TypedArray%.prototype.at` method
23686
- // https://github.com/tc39/proposal-relative-indexing-method
23757
+ // https://tc39.es/ecma262/#sec-%typedarray%.prototype.at
23687
23758
  exportTypedArrayMethod$1('at', function at(index) {
23688
23759
  var O = aTypedArray$1(this);
23689
23760
  var len = lengthOfArrayLike(O);
@@ -23990,7 +24061,9 @@ var Dropdown = function Dropdown(_ref13) {
23990
24061
  }
23991
24062
 
23992
24063
  setFilteredOptions(options.filter(function (option) {
23993
- return option.value.toLowerCase().match(inputValue.toLowerCase()) || option.text.toLowerCase().match(inputValue.toLowerCase());
24064
+ var _option$value, _option$value$toLower, _option$text, _option$text$toLowerC;
24065
+
24066
+ return (option === null || option === void 0 ? void 0 : (_option$value = option.value) === null || _option$value === void 0 ? void 0 : (_option$value$toLower = _option$value.toLowerCase()) === null || _option$value$toLower === void 0 ? void 0 : _option$value$toLower.indexOf(inputValue === null || inputValue === void 0 ? void 0 : inputValue.toLowerCase())) >= 0 || ((_option$text = option.text) === null || _option$text === void 0 ? void 0 : (_option$text$toLowerC = _option$text.toLowerCase()) === null || _option$text$toLowerC === void 0 ? void 0 : _option$text$toLowerC.indexOf(inputValue === null || inputValue === void 0 ? void 0 : inputValue.toLowerCase())) >= 0;
23994
24067
  }));
23995
24068
  }, [inputValue]);
23996
24069
  useEffect$1(function () {
@@ -45743,9 +45816,7 @@ var Modal$1 = function Modal(_ref) {
45743
45816
  buttonExtraStyles = _ref.buttonExtraStyles,
45744
45817
  children = _ref.children,
45745
45818
  _ref$dataQa = _ref.dataQa,
45746
- dataQa = _ref$dataQa === void 0 ? null : _ref$dataQa,
45747
- _ref$initialFocus = _ref.initialFocus,
45748
- initialFocus = _ref$initialFocus === void 0 ? null : _ref$initialFocus;
45819
+ dataQa = _ref$dataQa === void 0 ? null : _ref$dataQa;
45749
45820
 
45750
45821
  var _useContext = useContext(ThemeContext),
45751
45822
  isMobile = _useContext.isMobile;
@@ -45755,7 +45826,7 @@ var Modal$1 = function Modal(_ref) {
45755
45826
  ref: modalContainerRef,
45756
45827
  "data-qa": dataQa
45757
45828
  }, modalOpen && /*#__PURE__*/React.createElement(reactAriaModal // fallback to resolve Jest unit test errors when tabbable doesn't exist in jsdom https://github.com/focus-trap/focus-trap-react/issues/91
45758
- , _extends({
45829
+ , {
45759
45830
  focusTrapOptions: {
45760
45831
  fallbackFocus: modalContainerRef === null || modalContainerRef === void 0 ? void 0 : modalContainerRef.current
45761
45832
  },
@@ -45771,12 +45842,8 @@ var Modal$1 = function Modal(_ref) {
45771
45842
  dialogStyle: {
45772
45843
  width: customWidth || "615px"
45773
45844
  },
45774
- underlayClickExits: underlayClickExits,
45775
- "aria-modal": true,
45776
- "aria-name": modalHeaderText
45777
- }, initialFocus ? {
45778
- initialFocus: initialFocus
45779
- } : {}), /*#__PURE__*/React.createElement(Box, {
45845
+ underlayClickExits: underlayClickExits
45846
+ }, /*#__PURE__*/React.createElement(Box, {
45780
45847
  padding: "0",
45781
45848
  borderRadius: "2px",
45782
45849
  boxShadow: "inset 0px -2px 0px 0px rgb(0, 80, 149)"
@@ -45834,8 +45901,7 @@ var Modal$1 = function Modal(_ref) {
45834
45901
  isLoading: isLoading,
45835
45902
  disabled: isContinueActionDisabled,
45836
45903
  extraStyles: buttonExtraStyles,
45837
- className: "modal-continue-button",
45838
- role: "button"
45904
+ className: "modal-continue-button"
45839
45905
  }))) : /*#__PURE__*/React.createElement(Stack, {
45840
45906
  childGap: "1rem",
45841
45907
  direction: "row",
@@ -45846,8 +45912,7 @@ var Modal$1 = function Modal(_ref) {
45846
45912
  text: cancelButtonText,
45847
45913
  dataQa: cancelButtonText,
45848
45914
  extraStyles: buttonExtraStyles,
45849
- className: "modal-cancel-button",
45850
- role: "button"
45915
+ className: "modal-cancel-button"
45851
45916
  }), /*#__PURE__*/React.createElement(ButtonWithAction, {
45852
45917
  variant: useDangerButton ? "danger" : "primary",
45853
45918
  action: continueAction,
@@ -45856,8 +45921,7 @@ var Modal$1 = function Modal(_ref) {
45856
45921
  isLoading: isLoading,
45857
45922
  disabled: isContinueActionDisabled,
45858
45923
  extraStyles: buttonExtraStyles,
45859
- className: "modal-continue-button",
45860
- role: "button"
45924
+ className: "modal-continue-button"
45861
45925
  }))) : /*#__PURE__*/React.createElement(Box, {
45862
45926
  padding: "0.5rem"
45863
45927
  }, /*#__PURE__*/React.createElement(ButtonWithAction, {
@@ -45866,9 +45930,7 @@ var Modal$1 = function Modal(_ref) {
45866
45930
  text: closeButtonText,
45867
45931
  dataQa: closeButtonText,
45868
45932
  extraStyles: buttonExtraStyles,
45869
- className: "modal-close-button",
45870
- role: "button",
45871
- name: closeButtonText
45933
+ className: "modal-close-button"
45872
45934
  }))))))))), children);
45873
45935
  };
45874
45936
 
@@ -47713,9 +47775,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
47713
47775
  color: themeValues.linkColor,
47714
47776
  weight: themeValues.fontWeight,
47715
47777
  hoverStyles: themeValues.modalLinkHoverFocus,
47716
- extraStyles: "cursor: pointer;",
47717
- role: "button",
47718
- className: "modal-trigger"
47778
+ extraStyles: "cursor: pointer;"
47719
47779
  }, link));
47720
47780
  };
47721
47781
 
@@ -47772,10 +47832,8 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
47772
47832
  variant = _ref.variant,
47773
47833
  _ref$linkVariant = _ref.linkVariant,
47774
47834
  linkVariant = _ref$linkVariant === void 0 ? "p" : _ref$linkVariant,
47775
- themeValues = _ref.themeValues,
47776
- _ref$initialFocus = _ref.initialFocus,
47777
- initialFocus = _ref$initialFocus === void 0 ? null : _ref$initialFocus;
47778
- return /*#__PURE__*/React.createElement(Modal$1, _extends({
47835
+ themeValues = _ref.themeValues;
47836
+ return /*#__PURE__*/React.createElement(Modal$1, {
47779
47837
  modalOpen: isOpen,
47780
47838
  hideModal: function hideModal() {
47781
47839
  return toggleOpen(false);
@@ -47801,9 +47859,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
47801
47859
  toggleAccepted(true);
47802
47860
  toggleOpen(false);
47803
47861
  }
47804
- }, initialFocus ? {
47805
- initialFocus: initialFocus
47806
- } : {}), /*#__PURE__*/React.createElement(Text$1, {
47862
+ }, /*#__PURE__*/React.createElement(Text$1, {
47807
47863
  variant: linkVariant,
47808
47864
  onClick: function onClick() {
47809
47865
  return toggleOpen(true);
@@ -47815,9 +47871,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
47815
47871
  color: themeValues.linkColor,
47816
47872
  weight: themeValues.fontWeight,
47817
47873
  hoverStyles: themeValues.modalLinkHoverFocus,
47818
- extraStyles: "display: inline-block; width: fit-content; cursor: pointer",
47819
- role: "button",
47820
- className: "modal-trigger"
47874
+ extraStyles: "display: inline-block; width: fit-content; cursor: pointer"
47821
47875
  }, link));
47822
47876
  };
47823
47877
 
@@ -47852,8 +47906,7 @@ var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
47852
47906
  terms: terms,
47853
47907
  isOpen: showTerms,
47854
47908
  toggleOpen: toggleShowTerms,
47855
- linkVariant: linkVariant,
47856
- initialFocus: "[role=\"button\"]:not(.modal-trigger)"
47909
+ linkVariant: linkVariant
47857
47910
  })))));
47858
47911
  };
47859
47912
 
@@ -47936,8 +47989,7 @@ var TermsAndConditionsControlV2 = function TermsAndConditionsControlV2(_ref) {
47936
47989
  isOpen: showTerms,
47937
47990
  toggleOpen: toggleTerms,
47938
47991
  linkVariant: modalVariant,
47939
- title: modalTitle,
47940
- initialFocus: ".modal-close-button"
47992
+ title: modalTitle
47941
47993
  })), /*#__PURE__*/React.createElement("div", {
47942
47994
  "aria-live": "polite",
47943
47995
  "aria-atomic": true
@@ -49763,5 +49815,5 @@ var index$6 = /*#__PURE__*/Object.freeze({
49763
49815
  useToastNotification: useToastNotification
49764
49816
  });
49765
49817
 
49766
- export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RevenueManagementImage, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToastNotification, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$5 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$4 as hooks, index$6 as util, withWindowSize };
49818
+ export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KebabMenuIcon, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RevenueManagementImage, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToastNotification, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$5 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$4 as hooks, index$6 as util, withWindowSize };
49767
49819
  //# sourceMappingURL=index.esm.js.map