@thecb/components 8.4.12-beta.1 → 8.4.13-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs.js CHANGED
@@ -19016,14 +19016,12 @@ function _extends$1() {
19016
19016
  _extends$1 = Object.assign ? Object.assign.bind() : function (target) {
19017
19017
  for (var i = 1; i < arguments.length; i++) {
19018
19018
  var source = arguments[i];
19019
-
19020
19019
  for (var key in source) {
19021
19020
  if (Object.prototype.hasOwnProperty.call(source, key)) {
19022
19021
  target[key] = source[key];
19023
19022
  }
19024
19023
  }
19025
19024
  }
19026
-
19027
19025
  return target;
19028
19026
  };
19029
19027
  return _extends$1.apply(this, arguments);
@@ -19033,7 +19031,6 @@ function _assertThisInitialized(self) {
19033
19031
  if (self === void 0) {
19034
19032
  throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
19035
19033
  }
19036
-
19037
19034
  return self;
19038
19035
  }
19039
19036
 
@@ -19066,7 +19063,6 @@ function _isNativeReflectConstruct() {
19066
19063
  if (typeof Reflect === "undefined" || !Reflect.construct) return false;
19067
19064
  if (Reflect.construct.sham) return false;
19068
19065
  if (typeof Proxy === "function") return true;
19069
-
19070
19066
  try {
19071
19067
  Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
19072
19068
  return true;
@@ -19088,30 +19084,23 @@ function _construct(Parent, args, Class) {
19088
19084
  return instance;
19089
19085
  };
19090
19086
  }
19091
-
19092
19087
  return _construct.apply(null, arguments);
19093
19088
  }
19094
19089
 
19095
19090
  function _wrapNativeSuper(Class) {
19096
19091
  var _cache = typeof Map === "function" ? new Map() : undefined;
19097
-
19098
19092
  _wrapNativeSuper = function _wrapNativeSuper(Class) {
19099
19093
  if (Class === null || !_isNativeFunction(Class)) return Class;
19100
-
19101
19094
  if (typeof Class !== "function") {
19102
19095
  throw new TypeError("Super expression must either be null or a function");
19103
19096
  }
19104
-
19105
19097
  if (typeof _cache !== "undefined") {
19106
19098
  if (_cache.has(Class)) return _cache.get(Class);
19107
-
19108
19099
  _cache.set(Class, Wrapper);
19109
19100
  }
19110
-
19111
19101
  function Wrapper() {
19112
19102
  return _construct(Class, arguments, _getPrototypeOf(this).constructor);
19113
19103
  }
19114
-
19115
19104
  Wrapper.prototype = Object.create(Class.prototype, {
19116
19105
  constructor: {
19117
19106
  value: Wrapper,
@@ -19122,7 +19111,6 @@ function _wrapNativeSuper(Class) {
19122
19111
  });
19123
19112
  return _setPrototypeOf(Wrapper, Class);
19124
19113
  };
19125
-
19126
19114
  return _wrapNativeSuper(Class);
19127
19115
  }
19128
19116
 
@@ -22405,7 +22393,7 @@ var check = function (it) {
22405
22393
 
22406
22394
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
22407
22395
  var global_1 =
22408
- // eslint-disable-next-line es-x/no-global-this -- safe
22396
+ // eslint-disable-next-line es/no-global-this -- safe
22409
22397
  check(typeof globalThis == 'object' && globalThis) ||
22410
22398
  check(typeof window == 'object' && window) ||
22411
22399
  // eslint-disable-next-line no-restricted-globals -- safe
@@ -22424,12 +22412,12 @@ var fails = function (exec) {
22424
22412
 
22425
22413
  // Detect IE8's incomplete defineProperty implementation
22426
22414
  var descriptors = !fails(function () {
22427
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
22415
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
22428
22416
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
22429
22417
  });
22430
22418
 
22431
22419
  var functionBindNative = !fails(function () {
22432
- // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
22420
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
22433
22421
  var test = (function () { /* empty */ }).bind();
22434
22422
  // eslint-disable-next-line no-prototype-builtins -- safe
22435
22423
  return typeof test != 'function' || test.hasOwnProperty('prototype');
@@ -22442,7 +22430,7 @@ var functionCall = functionBindNative ? call.bind(call) : function () {
22442
22430
  };
22443
22431
 
22444
22432
  var $propertyIsEnumerable = {}.propertyIsEnumerable;
22445
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22433
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22446
22434
  var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
22447
22435
 
22448
22436
  // Nashorn ~ JDK8 bug
@@ -22469,14 +22457,11 @@ var createPropertyDescriptor = function (bitmap, value) {
22469
22457
  };
22470
22458
 
22471
22459
  var FunctionPrototype = Function.prototype;
22472
- var bind$1 = FunctionPrototype.bind;
22473
22460
  var call$1 = FunctionPrototype.call;
22474
- var uncurryThis = functionBindNative && bind$1.bind(call$1, call$1);
22461
+ var uncurryThisWithBind = functionBindNative && FunctionPrototype.bind.bind(call$1, call$1);
22475
22462
 
22476
- var functionUncurryThis = functionBindNative ? function (fn) {
22477
- return fn && uncurryThis(fn);
22478
- } : function (fn) {
22479
- return fn && function () {
22463
+ var functionUncurryThis = functionBindNative ? uncurryThisWithBind : function (fn) {
22464
+ return function () {
22480
22465
  return call$1.apply(fn, arguments);
22481
22466
  };
22482
22467
  };
@@ -22500,12 +22485,18 @@ var indexedObject = fails(function () {
22500
22485
  return classofRaw(it) == 'String' ? split(it, '') : $Object(it);
22501
22486
  } : $Object;
22502
22487
 
22488
+ // we can't use just `it == null` since of `document.all` special case
22489
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
22490
+ var isNullOrUndefined = function (it) {
22491
+ return it === null || it === undefined;
22492
+ };
22493
+
22503
22494
  var $TypeError = TypeError;
22504
22495
 
22505
22496
  // `RequireObjectCoercible` abstract operation
22506
22497
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
22507
22498
  var requireObjectCoercible = function (it) {
22508
- if (it == undefined) throw $TypeError("Can't call method on " + it);
22499
+ if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it);
22509
22500
  return it;
22510
22501
  };
22511
22502
 
@@ -22517,13 +22508,32 @@ var toIndexedObject = function (it) {
22517
22508
  return indexedObject(requireObjectCoercible(it));
22518
22509
  };
22519
22510
 
22511
+ var documentAll = typeof document == 'object' && document.all;
22512
+
22513
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
22514
+ // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
22515
+ var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
22516
+
22517
+ var documentAll_1 = {
22518
+ all: documentAll,
22519
+ IS_HTMLDDA: IS_HTMLDDA
22520
+ };
22521
+
22522
+ var documentAll$1 = documentAll_1.all;
22523
+
22520
22524
  // `IsCallable` abstract operation
22521
22525
  // https://tc39.es/ecma262/#sec-iscallable
22522
- var isCallable = function (argument) {
22526
+ var isCallable = documentAll_1.IS_HTMLDDA ? function (argument) {
22527
+ return typeof argument == 'function' || argument === documentAll$1;
22528
+ } : function (argument) {
22523
22529
  return typeof argument == 'function';
22524
22530
  };
22525
22531
 
22526
- var isObject = function (it) {
22532
+ var documentAll$2 = documentAll_1.all;
22533
+
22534
+ var isObject = documentAll_1.IS_HTMLDDA ? function (it) {
22535
+ return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll$2;
22536
+ } : function (it) {
22527
22537
  return typeof it == 'object' ? it !== null : isCallable(it);
22528
22538
  };
22529
22539
 
@@ -22537,7 +22547,7 @@ var getBuiltIn = function (namespace, method) {
22537
22547
 
22538
22548
  var objectIsPrototypeOf = functionUncurryThis({}.isPrototypeOf);
22539
22549
 
22540
- var engineUserAgent = getBuiltIn('navigator', 'userAgent') || '';
22550
+ var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
22541
22551
 
22542
22552
  var process$1 = global_1.process;
22543
22553
  var Deno = global_1.Deno;
@@ -22564,12 +22574,12 @@ if (!version && engineUserAgent) {
22564
22574
 
22565
22575
  var engineV8Version = version;
22566
22576
 
22567
- /* eslint-disable es-x/no-symbol -- required for testing */
22577
+ /* eslint-disable es/no-symbol -- required for testing */
22568
22578
 
22569
22579
 
22570
22580
 
22571
- // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
22572
- var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
22581
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
22582
+ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails(function () {
22573
22583
  var symbol = Symbol();
22574
22584
  // Chrome 38 Symbol has incorrect toString conversion
22575
22585
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -22578,10 +22588,10 @@ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
22578
22588
  !Symbol.sham && engineV8Version && engineV8Version < 41;
22579
22589
  });
22580
22590
 
22581
- /* eslint-disable es-x/no-symbol -- required for testing */
22591
+ /* eslint-disable es/no-symbol -- required for testing */
22582
22592
 
22583
22593
 
22584
- var useSymbolAsUid = nativeSymbol
22594
+ var useSymbolAsUid = symbolConstructorDetection
22585
22595
  && !Symbol.sham
22586
22596
  && typeof Symbol.iterator == 'symbol';
22587
22597
 
@@ -22616,7 +22626,7 @@ var aCallable = function (argument) {
22616
22626
  // https://tc39.es/ecma262/#sec-getmethod
22617
22627
  var getMethod = function (V, P) {
22618
22628
  var func = V[P];
22619
- return func == null ? undefined : aCallable(func);
22629
+ return isNullOrUndefined(func) ? undefined : aCallable(func);
22620
22630
  };
22621
22631
 
22622
22632
  var $TypeError$2 = TypeError;
@@ -22631,7 +22641,7 @@ var ordinaryToPrimitive = function (input, pref) {
22631
22641
  throw $TypeError$2("Can't convert object to primitive value");
22632
22642
  };
22633
22643
 
22634
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
22644
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
22635
22645
  var defineProperty = Object.defineProperty;
22636
22646
 
22637
22647
  var defineGlobalProperty = function (key, value) {
@@ -22651,10 +22661,10 @@ var shared = createCommonjsModule(function (module) {
22651
22661
  (module.exports = function (key, value) {
22652
22662
  return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
22653
22663
  })('versions', []).push({
22654
- version: '3.24.1',
22664
+ version: '3.29.0',
22655
22665
  mode: 'global',
22656
- copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
22657
- license: 'https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE',
22666
+ copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
22667
+ license: 'https://github.com/zloirock/core-js/blob/v3.29.0/LICENSE',
22658
22668
  source: 'https://github.com/zloirock/core-js'
22659
22669
  });
22660
22670
  });
@@ -22671,7 +22681,7 @@ var hasOwnProperty = functionUncurryThis({}.hasOwnProperty);
22671
22681
 
22672
22682
  // `HasOwnProperty` abstract operation
22673
22683
  // https://tc39.es/ecma262/#sec-hasownproperty
22674
- // eslint-disable-next-line es-x/no-object-hasown -- safe
22684
+ // eslint-disable-next-line es/no-object-hasown -- safe
22675
22685
  var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
22676
22686
  return hasOwnProperty(toObject(it), key);
22677
22687
  };
@@ -22684,21 +22694,15 @@ var uid = function (key) {
22684
22694
  return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$3(++id + postfix, 36);
22685
22695
  };
22686
22696
 
22687
- var WellKnownSymbolsStore = shared('wks');
22688
22697
  var Symbol$1 = global_1.Symbol;
22689
- var symbolFor = Symbol$1 && Symbol$1['for'];
22690
- var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
22698
+ var WellKnownSymbolsStore = shared('wks');
22699
+ var createWellKnownSymbol = useSymbolAsUid ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
22691
22700
 
22692
22701
  var wellKnownSymbol = function (name) {
22693
- if (!hasOwnProperty_1(WellKnownSymbolsStore, name) || !(nativeSymbol || typeof WellKnownSymbolsStore[name] == 'string')) {
22694
- var description = 'Symbol.' + name;
22695
- if (nativeSymbol && hasOwnProperty_1(Symbol$1, name)) {
22696
- WellKnownSymbolsStore[name] = Symbol$1[name];
22697
- } else if (useSymbolAsUid && symbolFor) {
22698
- WellKnownSymbolsStore[name] = symbolFor(description);
22699
- } else {
22700
- WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
22701
- }
22702
+ if (!hasOwnProperty_1(WellKnownSymbolsStore, name)) {
22703
+ WellKnownSymbolsStore[name] = symbolConstructorDetection && hasOwnProperty_1(Symbol$1, name)
22704
+ ? Symbol$1[name]
22705
+ : createWellKnownSymbol('Symbol.' + name);
22702
22706
  } return WellKnownSymbolsStore[name];
22703
22707
  };
22704
22708
 
@@ -22738,13 +22742,13 @@ var documentCreateElement = function (it) {
22738
22742
 
22739
22743
  // Thanks to IE8 for its funny defineProperty
22740
22744
  var ie8DomDefine = !descriptors && !fails(function () {
22741
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
22745
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
22742
22746
  return Object.defineProperty(documentCreateElement('div'), 'a', {
22743
22747
  get: function () { return 7; }
22744
22748
  }).a != 7;
22745
22749
  });
22746
22750
 
22747
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22751
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22748
22752
  var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
22749
22753
 
22750
22754
  // `Object.getOwnPropertyDescriptor` method
@@ -22765,7 +22769,7 @@ var objectGetOwnPropertyDescriptor = {
22765
22769
  // V8 ~ Chrome 36-
22766
22770
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
22767
22771
  var v8PrototypeDefineBug = descriptors && fails(function () {
22768
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
22772
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
22769
22773
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
22770
22774
  value: 42,
22771
22775
  writable: false
@@ -22782,9 +22786,9 @@ var anObject = function (argument) {
22782
22786
  };
22783
22787
 
22784
22788
  var $TypeError$5 = TypeError;
22785
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
22789
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
22786
22790
  var $defineProperty = Object.defineProperty;
22787
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22791
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22788
22792
  var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
22789
22793
  var ENUMERABLE = 'enumerable';
22790
22794
  var CONFIGURABLE = 'configurable';
@@ -22831,7 +22835,7 @@ var createNonEnumerableProperty = descriptors ? function (object, key, value) {
22831
22835
  };
22832
22836
 
22833
22837
  var FunctionPrototype$1 = Function.prototype;
22834
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
22838
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
22835
22839
  var getDescriptor = descriptors && Object.getOwnPropertyDescriptor;
22836
22840
 
22837
22841
  var EXISTS$1 = hasOwnProperty_1(FunctionPrototype$1, 'name');
@@ -22858,7 +22862,7 @@ var inspectSource = sharedStore.inspectSource;
22858
22862
 
22859
22863
  var WeakMap$1 = global_1.WeakMap;
22860
22864
 
22861
- var nativeWeakMap = isCallable(WeakMap$1) && /native code/.test(inspectSource(WeakMap$1));
22865
+ var weakMapBasicDetection = isCallable(WeakMap$1) && /native code/.test(String(WeakMap$1));
22862
22866
 
22863
22867
  var keys$1 = shared('keys');
22864
22868
 
@@ -22886,28 +22890,30 @@ var getterFor = function (TYPE) {
22886
22890
  };
22887
22891
  };
22888
22892
 
22889
- if (nativeWeakMap || sharedStore.state) {
22893
+ if (weakMapBasicDetection || sharedStore.state) {
22890
22894
  var store$1 = sharedStore.state || (sharedStore.state = new WeakMap$2());
22891
- var wmget = functionUncurryThis(store$1.get);
22892
- var wmhas = functionUncurryThis(store$1.has);
22893
- var wmset = functionUncurryThis(store$1.set);
22895
+ /* eslint-disable no-self-assign -- prototype methods protection */
22896
+ store$1.get = store$1.get;
22897
+ store$1.has = store$1.has;
22898
+ store$1.set = store$1.set;
22899
+ /* eslint-enable no-self-assign -- prototype methods protection */
22894
22900
  set = function (it, metadata) {
22895
- if (wmhas(store$1, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
22901
+ if (store$1.has(it)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
22896
22902
  metadata.facade = it;
22897
- wmset(store$1, it, metadata);
22903
+ store$1.set(it, metadata);
22898
22904
  return metadata;
22899
22905
  };
22900
22906
  get = function (it) {
22901
- return wmget(store$1, it) || {};
22907
+ return store$1.get(it) || {};
22902
22908
  };
22903
22909
  has = function (it) {
22904
- return wmhas(store$1, it);
22910
+ return store$1.has(it);
22905
22911
  };
22906
22912
  } else {
22907
22913
  var STATE = sharedKey('state');
22908
22914
  hiddenKeys[STATE] = true;
22909
22915
  set = function (it, metadata) {
22910
- if (hasOwnProperty_1(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
22916
+ if (hasOwnProperty_1(it, STATE)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
22911
22917
  metadata.facade = it;
22912
22918
  createNonEnumerableProperty(it, STATE, metadata);
22913
22919
  return metadata;
@@ -22935,8 +22941,12 @@ var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
22935
22941
 
22936
22942
  var enforceInternalState = internalState.enforce;
22937
22943
  var getInternalState = internalState.get;
22938
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
22944
+ var $String = String;
22945
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
22939
22946
  var defineProperty = Object.defineProperty;
22947
+ var stringSlice = functionUncurryThis(''.slice);
22948
+ var replace = functionUncurryThis(''.replace);
22949
+ var join = functionUncurryThis([].join);
22940
22950
 
22941
22951
  var CONFIGURABLE_LENGTH = descriptors && !fails(function () {
22942
22952
  return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
@@ -22945,8 +22955,8 @@ var CONFIGURABLE_LENGTH = descriptors && !fails(function () {
22945
22955
  var TEMPLATE = String(String).split('String');
22946
22956
 
22947
22957
  var makeBuiltIn = module.exports = function (value, name, options) {
22948
- if (String(name).slice(0, 7) === 'Symbol(') {
22949
- name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
22958
+ if (stringSlice($String(name), 0, 7) === 'Symbol(') {
22959
+ name = '[' + replace($String(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
22950
22960
  }
22951
22961
  if (options && options.getter) name = 'get ' + name;
22952
22962
  if (options && options.setter) name = 'set ' + name;
@@ -22965,7 +22975,7 @@ var makeBuiltIn = module.exports = function (value, name, options) {
22965
22975
  } catch (error) { /* empty */ }
22966
22976
  var state = enforceInternalState(value);
22967
22977
  if (!hasOwnProperty_1(state, 'source')) {
22968
- state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
22978
+ state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
22969
22979
  } return value;
22970
22980
  };
22971
22981
 
@@ -23004,7 +23014,7 @@ var floor = Math.floor;
23004
23014
 
23005
23015
  // `Math.trunc` method
23006
23016
  // https://tc39.es/ecma262/#sec-math.trunc
23007
- // eslint-disable-next-line es-x/no-math-trunc -- safe
23017
+ // eslint-disable-next-line es/no-math-trunc -- safe
23008
23018
  var mathTrunc = Math.trunc || function trunc(x) {
23009
23019
  var n = +x;
23010
23020
  return (n > 0 ? floor : ceil)(n);
@@ -23105,7 +23115,7 @@ var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
23105
23115
 
23106
23116
  // `Object.getOwnPropertyNames` method
23107
23117
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
23108
- // eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
23118
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
23109
23119
  var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
23110
23120
  return objectKeysInternal(O, hiddenKeys$1);
23111
23121
  };
@@ -23114,7 +23124,7 @@ var objectGetOwnPropertyNames = {
23114
23124
  f: f$3
23115
23125
  };
23116
23126
 
23117
- // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
23127
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
23118
23128
  var f$4 = Object.getOwnPropertySymbols;
23119
23129
 
23120
23130
  var objectGetOwnPropertySymbols = {
@@ -23258,7 +23268,7 @@ var toString_1 = function (argument) {
23258
23268
  var charAt = functionUncurryThis(''.charAt);
23259
23269
 
23260
23270
  var FORCED = fails(function () {
23261
- // eslint-disable-next-line es-x/no-array-string-prototype-at -- safe
23271
+ // eslint-disable-next-line es/no-array-string-prototype-at -- safe
23262
23272
  return '𠮷'.at(-2) !== '\uD842';
23263
23273
  });
23264
23274
 
@@ -23276,14 +23286,14 @@ _export({ target: 'String', proto: true, forced: FORCED }, {
23276
23286
 
23277
23287
  // `Object.keys` method
23278
23288
  // https://tc39.es/ecma262/#sec-object.keys
23279
- // eslint-disable-next-line es-x/no-object-keys -- safe
23289
+ // eslint-disable-next-line es/no-object-keys -- safe
23280
23290
  var objectKeys = Object.keys || function keys(O) {
23281
23291
  return objectKeysInternal(O, enumBugKeys);
23282
23292
  };
23283
23293
 
23284
23294
  // `Object.defineProperties` method
23285
23295
  // https://tc39.es/ecma262/#sec-object.defineproperties
23286
- // eslint-disable-next-line es-x/no-object-defineproperties -- safe
23296
+ // eslint-disable-next-line es/no-object-defineproperties -- safe
23287
23297
  var f$5 = descriptors && !v8PrototypeDefineBug ? Object.defineProperties : function defineProperties(O, Properties) {
23288
23298
  anObject(O);
23289
23299
  var props = toIndexedObject(Properties);
@@ -23372,7 +23382,7 @@ hiddenKeys[IE_PROTO] = true;
23372
23382
 
23373
23383
  // `Object.create` method
23374
23384
  // https://tc39.es/ecma262/#sec-object.create
23375
- // eslint-disable-next-line es-x/no-object-create -- safe
23385
+ // eslint-disable-next-line es/no-object-create -- safe
23376
23386
  var objectCreate = Object.create || function create(O, Properties) {
23377
23387
  var result;
23378
23388
  if (O !== null) {
@@ -23418,13 +23428,19 @@ _export({ target: 'Array', proto: true }, {
23418
23428
 
23419
23429
  addToUnscopables('at');
23420
23430
 
23421
- // eslint-disable-next-line es-x/no-typed-arrays -- safe
23422
- var arrayBufferNative = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
23431
+ // eslint-disable-next-line es/no-typed-arrays -- safe
23432
+ var arrayBufferBasicDetection = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
23433
+
23434
+ var defineBuiltInAccessor = function (target, name, descriptor) {
23435
+ if (descriptor.get) makeBuiltIn_1(descriptor.get, name, { getter: true });
23436
+ if (descriptor.set) makeBuiltIn_1(descriptor.set, name, { setter: true });
23437
+ return objectDefineProperty.f(target, name, descriptor);
23438
+ };
23423
23439
 
23424
23440
  var correctPrototypeGetter = !fails(function () {
23425
23441
  function F() { /* empty */ }
23426
23442
  F.prototype.constructor = null;
23427
- // eslint-disable-next-line es-x/no-object-getprototypeof -- required for testing
23443
+ // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
23428
23444
  return Object.getPrototypeOf(new F()) !== F.prototype;
23429
23445
  });
23430
23446
 
@@ -23434,7 +23450,7 @@ var ObjectPrototype = $Object$4.prototype;
23434
23450
 
23435
23451
  // `Object.getPrototypeOf` method
23436
23452
  // https://tc39.es/ecma262/#sec-object.getprototypeof
23437
- // eslint-disable-next-line es-x/no-object-getprototypeof -- safe
23453
+ // eslint-disable-next-line es/no-object-getprototypeof -- safe
23438
23454
  var objectGetPrototypeOf = correctPrototypeGetter ? $Object$4.getPrototypeOf : function (O) {
23439
23455
  var object = toObject(O);
23440
23456
  if (hasOwnProperty_1(object, IE_PROTO$1)) return object[IE_PROTO$1];
@@ -23444,6 +23460,13 @@ var objectGetPrototypeOf = correctPrototypeGetter ? $Object$4.getPrototypeOf : f
23444
23460
  } return object instanceof $Object$4 ? ObjectPrototype : null;
23445
23461
  };
23446
23462
 
23463
+ var functionUncurryThisAccessor = function (object, key, method) {
23464
+ try {
23465
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
23466
+ return functionUncurryThis(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));
23467
+ } catch (error) { /* empty */ }
23468
+ };
23469
+
23447
23470
  var $String$3 = String;
23448
23471
  var $TypeError$6 = TypeError;
23449
23472
 
@@ -23460,14 +23483,13 @@ var aPossiblePrototype = function (argument) {
23460
23483
  // `Object.setPrototypeOf` method
23461
23484
  // https://tc39.es/ecma262/#sec-object.setprototypeof
23462
23485
  // Works with __proto__ only. Old v8 can't work with null proto objects.
23463
- // eslint-disable-next-line es-x/no-object-setprototypeof -- safe
23486
+ // eslint-disable-next-line es/no-object-setprototypeof -- safe
23464
23487
  var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
23465
23488
  var CORRECT_SETTER = false;
23466
23489
  var test = {};
23467
23490
  var setter;
23468
23491
  try {
23469
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
23470
- setter = functionUncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
23492
+ setter = functionUncurryThisAccessor(Object.prototype, '__proto__', 'set');
23471
23493
  setter(test, []);
23472
23494
  CORRECT_SETTER = test instanceof Array;
23473
23495
  } catch (error) { /* empty */ }
@@ -23480,14 +23502,6 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
23480
23502
  };
23481
23503
  }() : undefined);
23482
23504
 
23483
- var defineProperty$2 = objectDefineProperty.f;
23484
-
23485
-
23486
-
23487
-
23488
-
23489
-
23490
-
23491
23505
  var enforceInternalState = internalState.enforce;
23492
23506
  var getInternalState = internalState.get;
23493
23507
  var Int8Array = global_1.Int8Array;
@@ -23503,7 +23517,7 @@ var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag');
23503
23517
  var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG');
23504
23518
  var TYPED_ARRAY_CONSTRUCTOR = 'TypedArrayConstructor';
23505
23519
  // Fixing native typed arrays in Opera Presto crashes the browser, see #595
23506
- var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferNative && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
23520
+ var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferBasicDetection && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
23507
23521
  var TYPED_ARRAY_TAG_REQUIRED = false;
23508
23522
  var NAME, Constructor, Prototype;
23509
23523
 
@@ -23638,9 +23652,12 @@ if (NATIVE_ARRAY_BUFFER_VIEWS && objectGetPrototypeOf(Uint8ClampedArrayPrototype
23638
23652
 
23639
23653
  if (descriptors && !hasOwnProperty_1(TypedArrayPrototype, TO_STRING_TAG$2)) {
23640
23654
  TYPED_ARRAY_TAG_REQUIRED = true;
23641
- defineProperty$2(TypedArrayPrototype, TO_STRING_TAG$2, { get: function () {
23642
- return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined;
23643
- } });
23655
+ defineBuiltInAccessor(TypedArrayPrototype, TO_STRING_TAG$2, {
23656
+ configurable: true,
23657
+ get: function () {
23658
+ return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined;
23659
+ }
23660
+ });
23644
23661
  for (NAME in TypedArrayConstructorsList) if (global_1[NAME]) {
23645
23662
  createNonEnumerableProperty(global_1[NAME], TYPED_ARRAY_TAG, NAME);
23646
23663
  }
@@ -47801,7 +47818,24 @@ var createPartialAmountFormState = function createPartialAmountFormState(lineIte
47801
47818
  var minimum = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
47802
47819
  var blockPartialPaymentOverpay = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
47803
47820
  var formConfig = lineItems.reduce(function (acc, item) {
47804
- var validators = createPartialAmountFormValidators(item, lineItems, maximum, minimum, blockPartialPaymentOverpay);
47821
+ var validators = [required(), validateSum(numberGreaterThanOrEqualTo(minimum), lineItems.filter(function (lineItem) {
47822
+ return lineItem != item;
47823
+ }).reduce(function (acc, curr) {
47824
+ return [].concat(_toConsumableArray(acc), [curr.id]);
47825
+ }, []))];
47826
+
47827
+ if (!!maximum) {
47828
+ validators.push(validateSum(numberLessThanOrEqualTo(maximum), lineItems.filter(function (lineItem) {
47829
+ return lineItem != item;
47830
+ }).reduce(function (acc, curr) {
47831
+ return [].concat(_toConsumableArray(acc), [curr.id]);
47832
+ }, [])));
47833
+ }
47834
+
47835
+ if (blockPartialPaymentOverpay) {
47836
+ validators.push(numberLessThanOrEqualTo(item.amount));
47837
+ }
47838
+
47805
47839
  return _objectSpread2(_objectSpread2({}, acc), {}, _defineProperty({}, item.id, {
47806
47840
  validators: validators,
47807
47841
  constraints: [onlyNaturals()],
@@ -47820,29 +47854,6 @@ var createPartialAmountFormState = function createPartialAmountFormState(lineIte
47820
47854
  partialAmountFormMapDispatchToProps: mapDispatchToProps
47821
47855
  };
47822
47856
  };
47823
- var createPartialAmountFormValidators = function createPartialAmountFormValidators(item, lineItems, maximum) {
47824
- var minimum = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 1;
47825
- var blockPartialPaymentOverpay = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
47826
- var validators = [required(), validateSum(numberGreaterThanOrEqualTo(minimum), lineItems.filter(function (lineItem) {
47827
- return lineItem != item;
47828
- }).reduce(function (acc, curr) {
47829
- return [].concat(_toConsumableArray(acc), [curr.id]);
47830
- }, []))];
47831
-
47832
- if (!!maximum) {
47833
- validators.push(validateSum(numberLessThanOrEqualTo(maximum), lineItems.filter(function (lineItem) {
47834
- return lineItem != item;
47835
- }).reduce(function (acc, curr) {
47836
- return [].concat(_toConsumableArray(acc), [curr.id]);
47837
- }, [])));
47838
- }
47839
-
47840
- if (blockPartialPaymentOverpay) {
47841
- validators.push(numberLessThanOrEqualTo(item.amount));
47842
- }
47843
-
47844
- return validators;
47845
- };
47846
47857
 
47847
47858
  var arrowColor = WHITE;
47848
47859
  var numberColor = MATISSE_BLUE;
@@ -48221,22 +48232,44 @@ var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
48221
48232
  var LoadingDetails = function LoadingDetails() {
48222
48233
  return /*#__PURE__*/React__default.createElement(Box, {
48223
48234
  padding: "0",
48224
- background: GRECIAN_GREY,
48225
- borderRadius: "4px",
48226
48235
  minHeight: "196px"
48227
- }, /*#__PURE__*/React__default.createElement(Cover, {
48228
- minHeight: "196px",
48229
- singleChild: true,
48230
- fillCenter: true
48231
- }, /*#__PURE__*/React__default.createElement(Center, {
48232
- intrinsic: true
48233
48236
  }, /*#__PURE__*/React__default.createElement(Box, {
48234
48237
  padding: "0",
48235
- extraStyles: "flex-grow: 1; display: flex; justify-content: center; align-items: center;"
48238
+ extraStyles: "position: absolute;\n height: 238px;\n width: 100%;\n display: flex;\n justify-content: center;\n align-items: center;"
48236
48239
  }, /*#__PURE__*/React__default.createElement(Spinner$2, {
48237
48240
  size: "100",
48238
48241
  centerSpinner: true
48239
- })))));
48242
+ })), /*#__PURE__*/React__default.createElement(Stack, {
48243
+ childGap: "16px"
48244
+ }, /*#__PURE__*/React__default.createElement(Cluster, {
48245
+ nowrap: true,
48246
+ justify: "space-between",
48247
+ align: "start"
48248
+ }, /*#__PURE__*/React__default.createElement(LoadingLine, {
48249
+ exactWidth: "110px",
48250
+ height: "27px"
48251
+ }), /*#__PURE__*/React__default.createElement(LoadingLine, {
48252
+ exactWidth: "60px",
48253
+ height: "27px"
48254
+ })), /*#__PURE__*/React__default.createElement(SolidDivider$1, null), /*#__PURE__*/React__default.createElement(Box, {
48255
+ padding: "0.5rem 0"
48256
+ }, /*#__PURE__*/React__default.createElement(Stack, {
48257
+ direction: "row"
48258
+ }, /*#__PURE__*/React__default.createElement(LoadingLine, {
48259
+ exactWidth: "80px",
48260
+ height: "27px"
48261
+ }), /*#__PURE__*/React__default.createElement(LoadingLine, {
48262
+ exactWidth: "60px",
48263
+ height: "27px"
48264
+ }))), /*#__PURE__*/React__default.createElement(SolidDivider$1, null), /*#__PURE__*/React__default.createElement(Stack, {
48265
+ direction: "row"
48266
+ }, /*#__PURE__*/React__default.createElement(LoadingLine, {
48267
+ exactWidth: "100px",
48268
+ height: "30px"
48269
+ }), /*#__PURE__*/React__default.createElement(LoadingLine, {
48270
+ exactWidth: "70px",
48271
+ height: "30px"
48272
+ }))));
48240
48273
  };
48241
48274
 
48242
48275
  var ErrorDetails = function ErrorDetails() {
@@ -50682,7 +50715,6 @@ exports.XCircleIconSmall = XCircleIconSmall;
50682
50715
  exports.cardRegistry = cardRegistry;
50683
50716
  exports.constants = index$5;
50684
50717
  exports.createPartialAmountFormState = createPartialAmountFormState;
50685
- exports.createPartialAmountFormValidators = createPartialAmountFormValidators;
50686
50718
  exports.util = index$4;
50687
50719
  exports.withWindowSize = withWindowSize;
50688
50720
  //# sourceMappingURL=index.cjs.js.map