@thecb/components 7.10.5 → 7.10.6
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 +103 -59
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +103 -59
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/.DS_Store +0 -0
- package/src/components/molecules/.DS_Store +0 -0
- package/src/components/templates/center-single/CenterSingle.js +2 -1
package/dist/index.esm.js
CHANGED
|
@@ -17980,12 +17980,14 @@ function _extends$1() {
|
|
|
17980
17980
|
_extends$1 = Object.assign ? Object.assign.bind() : function (target) {
|
|
17981
17981
|
for (var i = 1; i < arguments.length; i++) {
|
|
17982
17982
|
var source = arguments[i];
|
|
17983
|
+
|
|
17983
17984
|
for (var key in source) {
|
|
17984
17985
|
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
17985
17986
|
target[key] = source[key];
|
|
17986
17987
|
}
|
|
17987
17988
|
}
|
|
17988
17989
|
}
|
|
17990
|
+
|
|
17989
17991
|
return target;
|
|
17990
17992
|
};
|
|
17991
17993
|
return _extends$1.apply(this, arguments);
|
|
@@ -17995,6 +17997,7 @@ function _assertThisInitialized(self) {
|
|
|
17995
17997
|
if (self === void 0) {
|
|
17996
17998
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17997
17999
|
}
|
|
18000
|
+
|
|
17998
18001
|
return self;
|
|
17999
18002
|
}
|
|
18000
18003
|
|
|
@@ -18027,6 +18030,7 @@ function _isNativeReflectConstruct() {
|
|
|
18027
18030
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
18028
18031
|
if (Reflect.construct.sham) return false;
|
|
18029
18032
|
if (typeof Proxy === "function") return true;
|
|
18033
|
+
|
|
18030
18034
|
try {
|
|
18031
18035
|
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
18032
18036
|
return true;
|
|
@@ -18048,23 +18052,30 @@ function _construct(Parent, args, Class) {
|
|
|
18048
18052
|
return instance;
|
|
18049
18053
|
};
|
|
18050
18054
|
}
|
|
18055
|
+
|
|
18051
18056
|
return _construct.apply(null, arguments);
|
|
18052
18057
|
}
|
|
18053
18058
|
|
|
18054
18059
|
function _wrapNativeSuper(Class) {
|
|
18055
18060
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
18061
|
+
|
|
18056
18062
|
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
18057
18063
|
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
18064
|
+
|
|
18058
18065
|
if (typeof Class !== "function") {
|
|
18059
18066
|
throw new TypeError("Super expression must either be null or a function");
|
|
18060
18067
|
}
|
|
18068
|
+
|
|
18061
18069
|
if (typeof _cache !== "undefined") {
|
|
18062
18070
|
if (_cache.has(Class)) return _cache.get(Class);
|
|
18071
|
+
|
|
18063
18072
|
_cache.set(Class, Wrapper);
|
|
18064
18073
|
}
|
|
18074
|
+
|
|
18065
18075
|
function Wrapper() {
|
|
18066
18076
|
return _construct(Class, arguments, _getPrototypeOf(this).constructor);
|
|
18067
18077
|
}
|
|
18078
|
+
|
|
18068
18079
|
Wrapper.prototype = Object.create(Class.prototype, {
|
|
18069
18080
|
constructor: {
|
|
18070
18081
|
value: Wrapper,
|
|
@@ -18075,6 +18086,7 @@ function _wrapNativeSuper(Class) {
|
|
|
18075
18086
|
});
|
|
18076
18087
|
return _setPrototypeOf(Wrapper, Class);
|
|
18077
18088
|
};
|
|
18089
|
+
|
|
18078
18090
|
return _wrapNativeSuper(Class);
|
|
18079
18091
|
}
|
|
18080
18092
|
|
|
@@ -21357,7 +21369,7 @@ var check = function (it) {
|
|
|
21357
21369
|
|
|
21358
21370
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
21359
21371
|
var global_1 =
|
|
21360
|
-
// eslint-disable-next-line es
|
|
21372
|
+
// eslint-disable-next-line es/no-global-this -- safe
|
|
21361
21373
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
21362
21374
|
check(typeof window == 'object' && window) ||
|
|
21363
21375
|
// eslint-disable-next-line no-restricted-globals -- safe
|
|
@@ -21376,12 +21388,12 @@ var fails = function (exec) {
|
|
|
21376
21388
|
|
|
21377
21389
|
// Detect IE8's incomplete defineProperty implementation
|
|
21378
21390
|
var descriptors = !fails(function () {
|
|
21379
|
-
// eslint-disable-next-line es
|
|
21391
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
21380
21392
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
|
21381
21393
|
});
|
|
21382
21394
|
|
|
21383
21395
|
var functionBindNative = !fails(function () {
|
|
21384
|
-
// eslint-disable-next-line es
|
|
21396
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
21385
21397
|
var test = (function () { /* empty */ }).bind();
|
|
21386
21398
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
21387
21399
|
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
@@ -21394,7 +21406,7 @@ var functionCall = functionBindNative ? call.bind(call) : function () {
|
|
|
21394
21406
|
};
|
|
21395
21407
|
|
|
21396
21408
|
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
21397
|
-
// eslint-disable-next-line es
|
|
21409
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
21398
21410
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
21399
21411
|
|
|
21400
21412
|
// Nashorn ~ JDK8 bug
|
|
@@ -21421,25 +21433,29 @@ var createPropertyDescriptor = function (bitmap, value) {
|
|
|
21421
21433
|
};
|
|
21422
21434
|
|
|
21423
21435
|
var FunctionPrototype = Function.prototype;
|
|
21424
|
-
var bind$1 = FunctionPrototype.bind;
|
|
21425
21436
|
var call$1 = FunctionPrototype.call;
|
|
21426
|
-
var
|
|
21437
|
+
var uncurryThisWithBind = functionBindNative && FunctionPrototype.bind.bind(call$1, call$1);
|
|
21427
21438
|
|
|
21428
|
-
var
|
|
21429
|
-
return
|
|
21430
|
-
} : function (fn) {
|
|
21431
|
-
return fn && function () {
|
|
21439
|
+
var functionUncurryThisRaw = function (fn) {
|
|
21440
|
+
return functionBindNative ? uncurryThisWithBind(fn) : function () {
|
|
21432
21441
|
return call$1.apply(fn, arguments);
|
|
21433
21442
|
};
|
|
21434
21443
|
};
|
|
21435
21444
|
|
|
21436
|
-
var toString$2 =
|
|
21437
|
-
var stringSlice =
|
|
21445
|
+
var toString$2 = functionUncurryThisRaw({}.toString);
|
|
21446
|
+
var stringSlice = functionUncurryThisRaw(''.slice);
|
|
21438
21447
|
|
|
21439
21448
|
var classofRaw = function (it) {
|
|
21440
21449
|
return stringSlice(toString$2(it), 8, -1);
|
|
21441
21450
|
};
|
|
21442
21451
|
|
|
21452
|
+
var functionUncurryThis = function (fn) {
|
|
21453
|
+
// Nashorn bug:
|
|
21454
|
+
// https://github.com/zloirock/core-js/issues/1128
|
|
21455
|
+
// https://github.com/zloirock/core-js/issues/1130
|
|
21456
|
+
if (classofRaw(fn) === 'Function') return functionUncurryThisRaw(fn);
|
|
21457
|
+
};
|
|
21458
|
+
|
|
21443
21459
|
var $Object = Object;
|
|
21444
21460
|
var split = functionUncurryThis(''.split);
|
|
21445
21461
|
|
|
@@ -21452,12 +21468,18 @@ var indexedObject = fails(function () {
|
|
|
21452
21468
|
return classofRaw(it) == 'String' ? split(it, '') : $Object(it);
|
|
21453
21469
|
} : $Object;
|
|
21454
21470
|
|
|
21471
|
+
// we can't use just `it == null` since of `document.all` special case
|
|
21472
|
+
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
|
|
21473
|
+
var isNullOrUndefined = function (it) {
|
|
21474
|
+
return it === null || it === undefined;
|
|
21475
|
+
};
|
|
21476
|
+
|
|
21455
21477
|
var $TypeError = TypeError;
|
|
21456
21478
|
|
|
21457
21479
|
// `RequireObjectCoercible` abstract operation
|
|
21458
21480
|
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
21459
21481
|
var requireObjectCoercible = function (it) {
|
|
21460
|
-
if (it
|
|
21482
|
+
if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it);
|
|
21461
21483
|
return it;
|
|
21462
21484
|
};
|
|
21463
21485
|
|
|
@@ -21469,13 +21491,31 @@ var toIndexedObject = function (it) {
|
|
|
21469
21491
|
return indexedObject(requireObjectCoercible(it));
|
|
21470
21492
|
};
|
|
21471
21493
|
|
|
21494
|
+
var documentAll = typeof document == 'object' && document.all;
|
|
21495
|
+
|
|
21496
|
+
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
21497
|
+
var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
|
|
21498
|
+
|
|
21499
|
+
var documentAll_1 = {
|
|
21500
|
+
all: documentAll,
|
|
21501
|
+
IS_HTMLDDA: IS_HTMLDDA
|
|
21502
|
+
};
|
|
21503
|
+
|
|
21504
|
+
var documentAll$1 = documentAll_1.all;
|
|
21505
|
+
|
|
21472
21506
|
// `IsCallable` abstract operation
|
|
21473
21507
|
// https://tc39.es/ecma262/#sec-iscallable
|
|
21474
|
-
var isCallable = function (argument) {
|
|
21508
|
+
var isCallable = documentAll_1.IS_HTMLDDA ? function (argument) {
|
|
21509
|
+
return typeof argument == 'function' || argument === documentAll$1;
|
|
21510
|
+
} : function (argument) {
|
|
21475
21511
|
return typeof argument == 'function';
|
|
21476
21512
|
};
|
|
21477
21513
|
|
|
21478
|
-
var
|
|
21514
|
+
var documentAll$2 = documentAll_1.all;
|
|
21515
|
+
|
|
21516
|
+
var isObject = documentAll_1.IS_HTMLDDA ? function (it) {
|
|
21517
|
+
return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll$2;
|
|
21518
|
+
} : function (it) {
|
|
21479
21519
|
return typeof it == 'object' ? it !== null : isCallable(it);
|
|
21480
21520
|
};
|
|
21481
21521
|
|
|
@@ -21516,12 +21556,12 @@ if (!version && engineUserAgent) {
|
|
|
21516
21556
|
|
|
21517
21557
|
var engineV8Version = version;
|
|
21518
21558
|
|
|
21519
|
-
/* eslint-disable es
|
|
21559
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
21520
21560
|
|
|
21521
21561
|
|
|
21522
21562
|
|
|
21523
|
-
// eslint-disable-next-line es
|
|
21524
|
-
var
|
|
21563
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
21564
|
+
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
21525
21565
|
var symbol = Symbol();
|
|
21526
21566
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
21527
21567
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
@@ -21530,10 +21570,10 @@ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
|
21530
21570
|
!Symbol.sham && engineV8Version && engineV8Version < 41;
|
|
21531
21571
|
});
|
|
21532
21572
|
|
|
21533
|
-
/* eslint-disable es
|
|
21573
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
21534
21574
|
|
|
21535
21575
|
|
|
21536
|
-
var useSymbolAsUid =
|
|
21576
|
+
var useSymbolAsUid = symbolConstructorDetection
|
|
21537
21577
|
&& !Symbol.sham
|
|
21538
21578
|
&& typeof Symbol.iterator == 'symbol';
|
|
21539
21579
|
|
|
@@ -21568,7 +21608,7 @@ var aCallable = function (argument) {
|
|
|
21568
21608
|
// https://tc39.es/ecma262/#sec-getmethod
|
|
21569
21609
|
var getMethod = function (V, P) {
|
|
21570
21610
|
var func = V[P];
|
|
21571
|
-
return func
|
|
21611
|
+
return isNullOrUndefined(func) ? undefined : aCallable(func);
|
|
21572
21612
|
};
|
|
21573
21613
|
|
|
21574
21614
|
var $TypeError$2 = TypeError;
|
|
@@ -21583,7 +21623,7 @@ var ordinaryToPrimitive = function (input, pref) {
|
|
|
21583
21623
|
throw $TypeError$2("Can't convert object to primitive value");
|
|
21584
21624
|
};
|
|
21585
21625
|
|
|
21586
|
-
// eslint-disable-next-line es
|
|
21626
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
21587
21627
|
var defineProperty = Object.defineProperty;
|
|
21588
21628
|
|
|
21589
21629
|
var defineGlobalProperty = function (key, value) {
|
|
@@ -21603,10 +21643,10 @@ var shared = createCommonjsModule(function (module) {
|
|
|
21603
21643
|
(module.exports = function (key, value) {
|
|
21604
21644
|
return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
|
|
21605
21645
|
})('versions', []).push({
|
|
21606
|
-
version: '3.
|
|
21646
|
+
version: '3.25.5',
|
|
21607
21647
|
mode: 'global',
|
|
21608
21648
|
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
21609
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
21649
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.25.5/LICENSE',
|
|
21610
21650
|
source: 'https://github.com/zloirock/core-js'
|
|
21611
21651
|
});
|
|
21612
21652
|
});
|
|
@@ -21623,7 +21663,7 @@ var hasOwnProperty = functionUncurryThis({}.hasOwnProperty);
|
|
|
21623
21663
|
|
|
21624
21664
|
// `HasOwnProperty` abstract operation
|
|
21625
21665
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
21626
|
-
// eslint-disable-next-line es
|
|
21666
|
+
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
21627
21667
|
var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
21628
21668
|
return hasOwnProperty(toObject(it), key);
|
|
21629
21669
|
};
|
|
@@ -21642,9 +21682,9 @@ var symbolFor = Symbol$1 && Symbol$1['for'];
|
|
|
21642
21682
|
var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
|
|
21643
21683
|
|
|
21644
21684
|
var wellKnownSymbol = function (name) {
|
|
21645
|
-
if (!hasOwnProperty_1(WellKnownSymbolsStore, name) || !(
|
|
21685
|
+
if (!hasOwnProperty_1(WellKnownSymbolsStore, name) || !(symbolConstructorDetection || typeof WellKnownSymbolsStore[name] == 'string')) {
|
|
21646
21686
|
var description = 'Symbol.' + name;
|
|
21647
|
-
if (
|
|
21687
|
+
if (symbolConstructorDetection && hasOwnProperty_1(Symbol$1, name)) {
|
|
21648
21688
|
WellKnownSymbolsStore[name] = Symbol$1[name];
|
|
21649
21689
|
} else if (useSymbolAsUid && symbolFor) {
|
|
21650
21690
|
WellKnownSymbolsStore[name] = symbolFor(description);
|
|
@@ -21690,13 +21730,13 @@ var documentCreateElement = function (it) {
|
|
|
21690
21730
|
|
|
21691
21731
|
// Thanks to IE8 for its funny defineProperty
|
|
21692
21732
|
var ie8DomDefine = !descriptors && !fails(function () {
|
|
21693
|
-
// eslint-disable-next-line es
|
|
21733
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
21694
21734
|
return Object.defineProperty(documentCreateElement('div'), 'a', {
|
|
21695
21735
|
get: function () { return 7; }
|
|
21696
21736
|
}).a != 7;
|
|
21697
21737
|
});
|
|
21698
21738
|
|
|
21699
|
-
// eslint-disable-next-line es
|
|
21739
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
21700
21740
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
21701
21741
|
|
|
21702
21742
|
// `Object.getOwnPropertyDescriptor` method
|
|
@@ -21717,7 +21757,7 @@ var objectGetOwnPropertyDescriptor = {
|
|
|
21717
21757
|
// V8 ~ Chrome 36-
|
|
21718
21758
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
21719
21759
|
var v8PrototypeDefineBug = descriptors && fails(function () {
|
|
21720
|
-
// eslint-disable-next-line es
|
|
21760
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
21721
21761
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
21722
21762
|
value: 42,
|
|
21723
21763
|
writable: false
|
|
@@ -21734,9 +21774,9 @@ var anObject = function (argument) {
|
|
|
21734
21774
|
};
|
|
21735
21775
|
|
|
21736
21776
|
var $TypeError$5 = TypeError;
|
|
21737
|
-
// eslint-disable-next-line es
|
|
21777
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
21738
21778
|
var $defineProperty = Object.defineProperty;
|
|
21739
|
-
// eslint-disable-next-line es
|
|
21779
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
21740
21780
|
var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
|
21741
21781
|
var ENUMERABLE = 'enumerable';
|
|
21742
21782
|
var CONFIGURABLE = 'configurable';
|
|
@@ -21783,7 +21823,7 @@ var createNonEnumerableProperty = descriptors ? function (object, key, value) {
|
|
|
21783
21823
|
};
|
|
21784
21824
|
|
|
21785
21825
|
var FunctionPrototype$1 = Function.prototype;
|
|
21786
|
-
// eslint-disable-next-line es
|
|
21826
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
21787
21827
|
var getDescriptor = descriptors && Object.getOwnPropertyDescriptor;
|
|
21788
21828
|
|
|
21789
21829
|
var EXISTS$1 = hasOwnProperty_1(FunctionPrototype$1, 'name');
|
|
@@ -21810,7 +21850,7 @@ var inspectSource = sharedStore.inspectSource;
|
|
|
21810
21850
|
|
|
21811
21851
|
var WeakMap$1 = global_1.WeakMap;
|
|
21812
21852
|
|
|
21813
|
-
var
|
|
21853
|
+
var weakMapBasicDetection = isCallable(WeakMap$1) && /native code/.test(String(WeakMap$1));
|
|
21814
21854
|
|
|
21815
21855
|
var keys$1 = shared('keys');
|
|
21816
21856
|
|
|
@@ -21838,28 +21878,30 @@ var getterFor = function (TYPE) {
|
|
|
21838
21878
|
};
|
|
21839
21879
|
};
|
|
21840
21880
|
|
|
21841
|
-
if (
|
|
21881
|
+
if (weakMapBasicDetection || sharedStore.state) {
|
|
21842
21882
|
var store$1 = sharedStore.state || (sharedStore.state = new WeakMap$2());
|
|
21843
|
-
|
|
21844
|
-
|
|
21845
|
-
|
|
21883
|
+
/* eslint-disable no-self-assign -- prototype methods protection */
|
|
21884
|
+
store$1.get = store$1.get;
|
|
21885
|
+
store$1.has = store$1.has;
|
|
21886
|
+
store$1.set = store$1.set;
|
|
21887
|
+
/* eslint-enable no-self-assign -- prototype methods protection */
|
|
21846
21888
|
set = function (it, metadata) {
|
|
21847
|
-
if (
|
|
21889
|
+
if (store$1.has(it)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
|
|
21848
21890
|
metadata.facade = it;
|
|
21849
|
-
|
|
21891
|
+
store$1.set(it, metadata);
|
|
21850
21892
|
return metadata;
|
|
21851
21893
|
};
|
|
21852
21894
|
get = function (it) {
|
|
21853
|
-
return
|
|
21895
|
+
return store$1.get(it) || {};
|
|
21854
21896
|
};
|
|
21855
21897
|
has = function (it) {
|
|
21856
|
-
return
|
|
21898
|
+
return store$1.has(it);
|
|
21857
21899
|
};
|
|
21858
21900
|
} else {
|
|
21859
21901
|
var STATE = sharedKey('state');
|
|
21860
21902
|
hiddenKeys[STATE] = true;
|
|
21861
21903
|
set = function (it, metadata) {
|
|
21862
|
-
if (hasOwnProperty_1(it, STATE)) throw
|
|
21904
|
+
if (hasOwnProperty_1(it, STATE)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
|
|
21863
21905
|
metadata.facade = it;
|
|
21864
21906
|
createNonEnumerableProperty(it, STATE, metadata);
|
|
21865
21907
|
return metadata;
|
|
@@ -21887,7 +21929,7 @@ var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
|
|
|
21887
21929
|
|
|
21888
21930
|
var enforceInternalState = internalState.enforce;
|
|
21889
21931
|
var getInternalState = internalState.get;
|
|
21890
|
-
// eslint-disable-next-line es
|
|
21932
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
21891
21933
|
var defineProperty = Object.defineProperty;
|
|
21892
21934
|
|
|
21893
21935
|
var CONFIGURABLE_LENGTH = descriptors && !fails(function () {
|
|
@@ -21956,7 +21998,7 @@ var floor = Math.floor;
|
|
|
21956
21998
|
|
|
21957
21999
|
// `Math.trunc` method
|
|
21958
22000
|
// https://tc39.es/ecma262/#sec-math.trunc
|
|
21959
|
-
// eslint-disable-next-line es
|
|
22001
|
+
// eslint-disable-next-line es/no-math-trunc -- safe
|
|
21960
22002
|
var mathTrunc = Math.trunc || function trunc(x) {
|
|
21961
22003
|
var n = +x;
|
|
21962
22004
|
return (n > 0 ? floor : ceil)(n);
|
|
@@ -22057,7 +22099,7 @@ var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
|
|
|
22057
22099
|
|
|
22058
22100
|
// `Object.getOwnPropertyNames` method
|
|
22059
22101
|
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
22060
|
-
// eslint-disable-next-line es
|
|
22102
|
+
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
22061
22103
|
var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
22062
22104
|
return objectKeysInternal(O, hiddenKeys$1);
|
|
22063
22105
|
};
|
|
@@ -22066,7 +22108,7 @@ var objectGetOwnPropertyNames = {
|
|
|
22066
22108
|
f: f$3
|
|
22067
22109
|
};
|
|
22068
22110
|
|
|
22069
|
-
// eslint-disable-next-line es
|
|
22111
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
22070
22112
|
var f$4 = Object.getOwnPropertySymbols;
|
|
22071
22113
|
|
|
22072
22114
|
var objectGetOwnPropertySymbols = {
|
|
@@ -22210,7 +22252,7 @@ var toString_1 = function (argument) {
|
|
|
22210
22252
|
var charAt = functionUncurryThis(''.charAt);
|
|
22211
22253
|
|
|
22212
22254
|
var FORCED = fails(function () {
|
|
22213
|
-
// eslint-disable-next-line es
|
|
22255
|
+
// eslint-disable-next-line es/no-array-string-prototype-at -- safe
|
|
22214
22256
|
return '𠮷'.at(-2) !== '\uD842';
|
|
22215
22257
|
});
|
|
22216
22258
|
|
|
@@ -22228,14 +22270,14 @@ _export({ target: 'String', proto: true, forced: FORCED }, {
|
|
|
22228
22270
|
|
|
22229
22271
|
// `Object.keys` method
|
|
22230
22272
|
// https://tc39.es/ecma262/#sec-object.keys
|
|
22231
|
-
// eslint-disable-next-line es
|
|
22273
|
+
// eslint-disable-next-line es/no-object-keys -- safe
|
|
22232
22274
|
var objectKeys = Object.keys || function keys(O) {
|
|
22233
22275
|
return objectKeysInternal(O, enumBugKeys);
|
|
22234
22276
|
};
|
|
22235
22277
|
|
|
22236
22278
|
// `Object.defineProperties` method
|
|
22237
22279
|
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
22238
|
-
// eslint-disable-next-line es
|
|
22280
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
22239
22281
|
var f$5 = descriptors && !v8PrototypeDefineBug ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
22240
22282
|
anObject(O);
|
|
22241
22283
|
var props = toIndexedObject(Properties);
|
|
@@ -22324,7 +22366,7 @@ hiddenKeys[IE_PROTO] = true;
|
|
|
22324
22366
|
|
|
22325
22367
|
// `Object.create` method
|
|
22326
22368
|
// https://tc39.es/ecma262/#sec-object.create
|
|
22327
|
-
// eslint-disable-next-line es
|
|
22369
|
+
// eslint-disable-next-line es/no-object-create -- safe
|
|
22328
22370
|
var objectCreate = Object.create || function create(O, Properties) {
|
|
22329
22371
|
var result;
|
|
22330
22372
|
if (O !== null) {
|
|
@@ -22370,13 +22412,13 @@ _export({ target: 'Array', proto: true }, {
|
|
|
22370
22412
|
|
|
22371
22413
|
addToUnscopables('at');
|
|
22372
22414
|
|
|
22373
|
-
// eslint-disable-next-line es
|
|
22374
|
-
var
|
|
22415
|
+
// eslint-disable-next-line es/no-typed-arrays -- safe
|
|
22416
|
+
var arrayBufferBasicDetection = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
|
|
22375
22417
|
|
|
22376
22418
|
var correctPrototypeGetter = !fails(function () {
|
|
22377
22419
|
function F() { /* empty */ }
|
|
22378
22420
|
F.prototype.constructor = null;
|
|
22379
|
-
// eslint-disable-next-line es
|
|
22421
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- required for testing
|
|
22380
22422
|
return Object.getPrototypeOf(new F()) !== F.prototype;
|
|
22381
22423
|
});
|
|
22382
22424
|
|
|
@@ -22386,7 +22428,7 @@ var ObjectPrototype = $Object$4.prototype;
|
|
|
22386
22428
|
|
|
22387
22429
|
// `Object.getPrototypeOf` method
|
|
22388
22430
|
// https://tc39.es/ecma262/#sec-object.getprototypeof
|
|
22389
|
-
// eslint-disable-next-line es
|
|
22431
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
22390
22432
|
var objectGetPrototypeOf = correctPrototypeGetter ? $Object$4.getPrototypeOf : function (O) {
|
|
22391
22433
|
var object = toObject(O);
|
|
22392
22434
|
if (hasOwnProperty_1(object, IE_PROTO$1)) return object[IE_PROTO$1];
|
|
@@ -22412,13 +22454,13 @@ var aPossiblePrototype = function (argument) {
|
|
|
22412
22454
|
// `Object.setPrototypeOf` method
|
|
22413
22455
|
// https://tc39.es/ecma262/#sec-object.setprototypeof
|
|
22414
22456
|
// Works with __proto__ only. Old v8 can't work with null proto objects.
|
|
22415
|
-
// eslint-disable-next-line es
|
|
22457
|
+
// eslint-disable-next-line es/no-object-setprototypeof -- safe
|
|
22416
22458
|
var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
22417
22459
|
var CORRECT_SETTER = false;
|
|
22418
22460
|
var test = {};
|
|
22419
22461
|
var setter;
|
|
22420
22462
|
try {
|
|
22421
|
-
// eslint-disable-next-line es
|
|
22463
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
22422
22464
|
setter = functionUncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
|
|
22423
22465
|
setter(test, []);
|
|
22424
22466
|
CORRECT_SETTER = test instanceof Array;
|
|
@@ -22455,7 +22497,7 @@ var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag');
|
|
|
22455
22497
|
var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG');
|
|
22456
22498
|
var TYPED_ARRAY_CONSTRUCTOR = 'TypedArrayConstructor';
|
|
22457
22499
|
// Fixing native typed arrays in Opera Presto crashes the browser, see #595
|
|
22458
|
-
var NATIVE_ARRAY_BUFFER_VIEWS =
|
|
22500
|
+
var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferBasicDetection && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
|
|
22459
22501
|
var TYPED_ARRAY_TAG_REQUIRED = false;
|
|
22460
22502
|
var NAME, Constructor, Prototype;
|
|
22461
22503
|
|
|
@@ -48930,13 +48972,15 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
48930
48972
|
_ref$centeredMobileCo = _ref.centeredMobileContent,
|
|
48931
48973
|
centeredMobileContent = _ref$centeredMobileCo === void 0 ? false : _ref$centeredMobileCo,
|
|
48932
48974
|
content = _ref.content,
|
|
48975
|
+
_ref$backgroundColor = _ref.backgroundColor,
|
|
48976
|
+
backgroundColor = _ref$backgroundColor === void 0 ? COOL_GREY_05 : _ref$backgroundColor,
|
|
48933
48977
|
themeValues = _ref.themeValues;
|
|
48934
48978
|
var themeContext = useContext(ThemeContext);
|
|
48935
48979
|
var isMobile = themeContext.isMobile;
|
|
48936
48980
|
return /*#__PURE__*/React.createElement(Box, {
|
|
48937
48981
|
padding: "0",
|
|
48938
48982
|
minWidth: "100%",
|
|
48939
|
-
background:
|
|
48983
|
+
background: backgroundColor,
|
|
48940
48984
|
extraStyles: "flex-grow: 1;"
|
|
48941
48985
|
}, /*#__PURE__*/React.createElement(Cover, {
|
|
48942
48986
|
centerOverride: isMobile && !centeredMobileContent
|