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