@thecb/components 7.10.5-beta.4 → 7.10.6-beta.1
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 +105 -61
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +105 -61
- 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/src/constants/colors.js +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -5075,7 +5075,7 @@ var ALERT_COLORS = {
|
|
|
5075
5075
|
},
|
|
5076
5076
|
text: ZODIAC_BLUE,
|
|
5077
5077
|
link: SCIENCE_BLUE
|
|
5078
|
-
}; // These
|
|
5078
|
+
}; // These colors match the pill components seen in CityBase UI designs.
|
|
5079
5079
|
|
|
5080
5080
|
var PILL_COLORS = {
|
|
5081
5081
|
danger: {
|
|
@@ -5107,6 +5107,7 @@ var colors = /*#__PURE__*/Object.freeze({
|
|
|
5107
5107
|
AQUA_HAZE_WHITE: AQUA_HAZE_WHITE,
|
|
5108
5108
|
BLEACH_WHITE: BLEACH_WHITE,
|
|
5109
5109
|
CATSKILL_WHITE: CATSKILL_WHITE,
|
|
5110
|
+
HALF_COLONIAL_WHITE: HALF_COLONIAL_WHITE,
|
|
5110
5111
|
ATHENS_GREY: ATHENS_GREY,
|
|
5111
5112
|
ALTO_GREY: ALTO_GREY,
|
|
5112
5113
|
SILVER_GREY: SILVER_GREY,
|
|
@@ -5158,7 +5159,6 @@ var colors = /*#__PURE__*/Object.freeze({
|
|
|
5158
5159
|
SELECTIVE_YELLOW: SELECTIVE_YELLOW,
|
|
5159
5160
|
MUSTARD_YELLOW: MUSTARD_YELLOW,
|
|
5160
5161
|
FIRE_YELLOW: FIRE_YELLOW,
|
|
5161
|
-
HALF_COLONIAL_WHITE: HALF_COLONIAL_WHITE,
|
|
5162
5162
|
CARROT_ORANGE: CARROT_ORANGE,
|
|
5163
5163
|
ZEST_ORANGE: ZEST_ORANGE,
|
|
5164
5164
|
APRICOT_ORANGE: APRICOT_ORANGE,
|
|
@@ -17988,12 +17988,14 @@ function _extends$1() {
|
|
|
17988
17988
|
_extends$1 = Object.assign ? Object.assign.bind() : function (target) {
|
|
17989
17989
|
for (var i = 1; i < arguments.length; i++) {
|
|
17990
17990
|
var source = arguments[i];
|
|
17991
|
+
|
|
17991
17992
|
for (var key in source) {
|
|
17992
17993
|
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
17993
17994
|
target[key] = source[key];
|
|
17994
17995
|
}
|
|
17995
17996
|
}
|
|
17996
17997
|
}
|
|
17998
|
+
|
|
17997
17999
|
return target;
|
|
17998
18000
|
};
|
|
17999
18001
|
return _extends$1.apply(this, arguments);
|
|
@@ -18003,6 +18005,7 @@ function _assertThisInitialized(self) {
|
|
|
18003
18005
|
if (self === void 0) {
|
|
18004
18006
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
18005
18007
|
}
|
|
18008
|
+
|
|
18006
18009
|
return self;
|
|
18007
18010
|
}
|
|
18008
18011
|
|
|
@@ -18035,6 +18038,7 @@ function _isNativeReflectConstruct() {
|
|
|
18035
18038
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
18036
18039
|
if (Reflect.construct.sham) return false;
|
|
18037
18040
|
if (typeof Proxy === "function") return true;
|
|
18041
|
+
|
|
18038
18042
|
try {
|
|
18039
18043
|
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
18040
18044
|
return true;
|
|
@@ -18056,23 +18060,30 @@ function _construct(Parent, args, Class) {
|
|
|
18056
18060
|
return instance;
|
|
18057
18061
|
};
|
|
18058
18062
|
}
|
|
18063
|
+
|
|
18059
18064
|
return _construct.apply(null, arguments);
|
|
18060
18065
|
}
|
|
18061
18066
|
|
|
18062
18067
|
function _wrapNativeSuper(Class) {
|
|
18063
18068
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
18069
|
+
|
|
18064
18070
|
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
18065
18071
|
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
18072
|
+
|
|
18066
18073
|
if (typeof Class !== "function") {
|
|
18067
18074
|
throw new TypeError("Super expression must either be null or a function");
|
|
18068
18075
|
}
|
|
18076
|
+
|
|
18069
18077
|
if (typeof _cache !== "undefined") {
|
|
18070
18078
|
if (_cache.has(Class)) return _cache.get(Class);
|
|
18079
|
+
|
|
18071
18080
|
_cache.set(Class, Wrapper);
|
|
18072
18081
|
}
|
|
18082
|
+
|
|
18073
18083
|
function Wrapper() {
|
|
18074
18084
|
return _construct(Class, arguments, _getPrototypeOf(this).constructor);
|
|
18075
18085
|
}
|
|
18086
|
+
|
|
18076
18087
|
Wrapper.prototype = Object.create(Class.prototype, {
|
|
18077
18088
|
constructor: {
|
|
18078
18089
|
value: Wrapper,
|
|
@@ -18083,6 +18094,7 @@ function _wrapNativeSuper(Class) {
|
|
|
18083
18094
|
});
|
|
18084
18095
|
return _setPrototypeOf(Wrapper, Class);
|
|
18085
18096
|
};
|
|
18097
|
+
|
|
18086
18098
|
return _wrapNativeSuper(Class);
|
|
18087
18099
|
}
|
|
18088
18100
|
|
|
@@ -21365,7 +21377,7 @@ var check = function (it) {
|
|
|
21365
21377
|
|
|
21366
21378
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
21367
21379
|
var global_1 =
|
|
21368
|
-
// eslint-disable-next-line es
|
|
21380
|
+
// eslint-disable-next-line es/no-global-this -- safe
|
|
21369
21381
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
21370
21382
|
check(typeof window == 'object' && window) ||
|
|
21371
21383
|
// eslint-disable-next-line no-restricted-globals -- safe
|
|
@@ -21384,12 +21396,12 @@ var fails = function (exec) {
|
|
|
21384
21396
|
|
|
21385
21397
|
// Detect IE8's incomplete defineProperty implementation
|
|
21386
21398
|
var descriptors = !fails(function () {
|
|
21387
|
-
// eslint-disable-next-line es
|
|
21399
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
21388
21400
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
|
21389
21401
|
});
|
|
21390
21402
|
|
|
21391
21403
|
var functionBindNative = !fails(function () {
|
|
21392
|
-
// eslint-disable-next-line es
|
|
21404
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
21393
21405
|
var test = (function () { /* empty */ }).bind();
|
|
21394
21406
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
21395
21407
|
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
@@ -21402,7 +21414,7 @@ var functionCall = functionBindNative ? call.bind(call) : function () {
|
|
|
21402
21414
|
};
|
|
21403
21415
|
|
|
21404
21416
|
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
21405
|
-
// eslint-disable-next-line es
|
|
21417
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
21406
21418
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
21407
21419
|
|
|
21408
21420
|
// Nashorn ~ JDK8 bug
|
|
@@ -21429,25 +21441,29 @@ var createPropertyDescriptor = function (bitmap, value) {
|
|
|
21429
21441
|
};
|
|
21430
21442
|
|
|
21431
21443
|
var FunctionPrototype = Function.prototype;
|
|
21432
|
-
var bind$1 = FunctionPrototype.bind;
|
|
21433
21444
|
var call$1 = FunctionPrototype.call;
|
|
21434
|
-
var
|
|
21445
|
+
var uncurryThisWithBind = functionBindNative && FunctionPrototype.bind.bind(call$1, call$1);
|
|
21435
21446
|
|
|
21436
|
-
var
|
|
21437
|
-
return
|
|
21438
|
-
} : function (fn) {
|
|
21439
|
-
return fn && function () {
|
|
21447
|
+
var functionUncurryThisRaw = function (fn) {
|
|
21448
|
+
return functionBindNative ? uncurryThisWithBind(fn) : function () {
|
|
21440
21449
|
return call$1.apply(fn, arguments);
|
|
21441
21450
|
};
|
|
21442
21451
|
};
|
|
21443
21452
|
|
|
21444
|
-
var toString$2 =
|
|
21445
|
-
var stringSlice =
|
|
21453
|
+
var toString$2 = functionUncurryThisRaw({}.toString);
|
|
21454
|
+
var stringSlice = functionUncurryThisRaw(''.slice);
|
|
21446
21455
|
|
|
21447
21456
|
var classofRaw = function (it) {
|
|
21448
21457
|
return stringSlice(toString$2(it), 8, -1);
|
|
21449
21458
|
};
|
|
21450
21459
|
|
|
21460
|
+
var functionUncurryThis = function (fn) {
|
|
21461
|
+
// Nashorn bug:
|
|
21462
|
+
// https://github.com/zloirock/core-js/issues/1128
|
|
21463
|
+
// https://github.com/zloirock/core-js/issues/1130
|
|
21464
|
+
if (classofRaw(fn) === 'Function') return functionUncurryThisRaw(fn);
|
|
21465
|
+
};
|
|
21466
|
+
|
|
21451
21467
|
var $Object = Object;
|
|
21452
21468
|
var split = functionUncurryThis(''.split);
|
|
21453
21469
|
|
|
@@ -21460,12 +21476,18 @@ var indexedObject = fails(function () {
|
|
|
21460
21476
|
return classofRaw(it) == 'String' ? split(it, '') : $Object(it);
|
|
21461
21477
|
} : $Object;
|
|
21462
21478
|
|
|
21479
|
+
// we can't use just `it == null` since of `document.all` special case
|
|
21480
|
+
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
|
|
21481
|
+
var isNullOrUndefined = function (it) {
|
|
21482
|
+
return it === null || it === undefined;
|
|
21483
|
+
};
|
|
21484
|
+
|
|
21463
21485
|
var $TypeError = TypeError;
|
|
21464
21486
|
|
|
21465
21487
|
// `RequireObjectCoercible` abstract operation
|
|
21466
21488
|
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
21467
21489
|
var requireObjectCoercible = function (it) {
|
|
21468
|
-
if (it
|
|
21490
|
+
if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it);
|
|
21469
21491
|
return it;
|
|
21470
21492
|
};
|
|
21471
21493
|
|
|
@@ -21477,13 +21499,31 @@ var toIndexedObject = function (it) {
|
|
|
21477
21499
|
return indexedObject(requireObjectCoercible(it));
|
|
21478
21500
|
};
|
|
21479
21501
|
|
|
21502
|
+
var documentAll = typeof document == 'object' && document.all;
|
|
21503
|
+
|
|
21504
|
+
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
21505
|
+
var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
|
|
21506
|
+
|
|
21507
|
+
var documentAll_1 = {
|
|
21508
|
+
all: documentAll,
|
|
21509
|
+
IS_HTMLDDA: IS_HTMLDDA
|
|
21510
|
+
};
|
|
21511
|
+
|
|
21512
|
+
var documentAll$1 = documentAll_1.all;
|
|
21513
|
+
|
|
21480
21514
|
// `IsCallable` abstract operation
|
|
21481
21515
|
// https://tc39.es/ecma262/#sec-iscallable
|
|
21482
|
-
var isCallable = function (argument) {
|
|
21516
|
+
var isCallable = documentAll_1.IS_HTMLDDA ? function (argument) {
|
|
21517
|
+
return typeof argument == 'function' || argument === documentAll$1;
|
|
21518
|
+
} : function (argument) {
|
|
21483
21519
|
return typeof argument == 'function';
|
|
21484
21520
|
};
|
|
21485
21521
|
|
|
21486
|
-
var
|
|
21522
|
+
var documentAll$2 = documentAll_1.all;
|
|
21523
|
+
|
|
21524
|
+
var isObject = documentAll_1.IS_HTMLDDA ? function (it) {
|
|
21525
|
+
return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll$2;
|
|
21526
|
+
} : function (it) {
|
|
21487
21527
|
return typeof it == 'object' ? it !== null : isCallable(it);
|
|
21488
21528
|
};
|
|
21489
21529
|
|
|
@@ -21524,12 +21564,12 @@ if (!version && engineUserAgent) {
|
|
|
21524
21564
|
|
|
21525
21565
|
var engineV8Version = version;
|
|
21526
21566
|
|
|
21527
|
-
/* eslint-disable es
|
|
21567
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
21528
21568
|
|
|
21529
21569
|
|
|
21530
21570
|
|
|
21531
|
-
// eslint-disable-next-line es
|
|
21532
|
-
var
|
|
21571
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
21572
|
+
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
21533
21573
|
var symbol = Symbol();
|
|
21534
21574
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
21535
21575
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
@@ -21538,10 +21578,10 @@ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
|
21538
21578
|
!Symbol.sham && engineV8Version && engineV8Version < 41;
|
|
21539
21579
|
});
|
|
21540
21580
|
|
|
21541
|
-
/* eslint-disable es
|
|
21581
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
21542
21582
|
|
|
21543
21583
|
|
|
21544
|
-
var useSymbolAsUid =
|
|
21584
|
+
var useSymbolAsUid = symbolConstructorDetection
|
|
21545
21585
|
&& !Symbol.sham
|
|
21546
21586
|
&& typeof Symbol.iterator == 'symbol';
|
|
21547
21587
|
|
|
@@ -21576,7 +21616,7 @@ var aCallable = function (argument) {
|
|
|
21576
21616
|
// https://tc39.es/ecma262/#sec-getmethod
|
|
21577
21617
|
var getMethod = function (V, P) {
|
|
21578
21618
|
var func = V[P];
|
|
21579
|
-
return func
|
|
21619
|
+
return isNullOrUndefined(func) ? undefined : aCallable(func);
|
|
21580
21620
|
};
|
|
21581
21621
|
|
|
21582
21622
|
var $TypeError$2 = TypeError;
|
|
@@ -21591,7 +21631,7 @@ var ordinaryToPrimitive = function (input, pref) {
|
|
|
21591
21631
|
throw $TypeError$2("Can't convert object to primitive value");
|
|
21592
21632
|
};
|
|
21593
21633
|
|
|
21594
|
-
// eslint-disable-next-line es
|
|
21634
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
21595
21635
|
var defineProperty = Object.defineProperty;
|
|
21596
21636
|
|
|
21597
21637
|
var defineGlobalProperty = function (key, value) {
|
|
@@ -21611,10 +21651,10 @@ var shared = createCommonjsModule(function (module) {
|
|
|
21611
21651
|
(module.exports = function (key, value) {
|
|
21612
21652
|
return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
|
|
21613
21653
|
})('versions', []).push({
|
|
21614
|
-
version: '3.
|
|
21654
|
+
version: '3.25.5',
|
|
21615
21655
|
mode: 'global',
|
|
21616
21656
|
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
21617
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
21657
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.25.5/LICENSE',
|
|
21618
21658
|
source: 'https://github.com/zloirock/core-js'
|
|
21619
21659
|
});
|
|
21620
21660
|
});
|
|
@@ -21631,7 +21671,7 @@ var hasOwnProperty = functionUncurryThis({}.hasOwnProperty);
|
|
|
21631
21671
|
|
|
21632
21672
|
// `HasOwnProperty` abstract operation
|
|
21633
21673
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
21634
|
-
// eslint-disable-next-line es
|
|
21674
|
+
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
21635
21675
|
var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
21636
21676
|
return hasOwnProperty(toObject(it), key);
|
|
21637
21677
|
};
|
|
@@ -21650,9 +21690,9 @@ var symbolFor = Symbol$1 && Symbol$1['for'];
|
|
|
21650
21690
|
var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid;
|
|
21651
21691
|
|
|
21652
21692
|
var wellKnownSymbol = function (name) {
|
|
21653
|
-
if (!hasOwnProperty_1(WellKnownSymbolsStore, name) || !(
|
|
21693
|
+
if (!hasOwnProperty_1(WellKnownSymbolsStore, name) || !(symbolConstructorDetection || typeof WellKnownSymbolsStore[name] == 'string')) {
|
|
21654
21694
|
var description = 'Symbol.' + name;
|
|
21655
|
-
if (
|
|
21695
|
+
if (symbolConstructorDetection && hasOwnProperty_1(Symbol$1, name)) {
|
|
21656
21696
|
WellKnownSymbolsStore[name] = Symbol$1[name];
|
|
21657
21697
|
} else if (useSymbolAsUid && symbolFor) {
|
|
21658
21698
|
WellKnownSymbolsStore[name] = symbolFor(description);
|
|
@@ -21698,13 +21738,13 @@ var documentCreateElement = function (it) {
|
|
|
21698
21738
|
|
|
21699
21739
|
// Thanks to IE8 for its funny defineProperty
|
|
21700
21740
|
var ie8DomDefine = !descriptors && !fails(function () {
|
|
21701
|
-
// eslint-disable-next-line es
|
|
21741
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
21702
21742
|
return Object.defineProperty(documentCreateElement('div'), 'a', {
|
|
21703
21743
|
get: function () { return 7; }
|
|
21704
21744
|
}).a != 7;
|
|
21705
21745
|
});
|
|
21706
21746
|
|
|
21707
|
-
// eslint-disable-next-line es
|
|
21747
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
21708
21748
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
21709
21749
|
|
|
21710
21750
|
// `Object.getOwnPropertyDescriptor` method
|
|
@@ -21725,7 +21765,7 @@ var objectGetOwnPropertyDescriptor = {
|
|
|
21725
21765
|
// V8 ~ Chrome 36-
|
|
21726
21766
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
21727
21767
|
var v8PrototypeDefineBug = descriptors && fails(function () {
|
|
21728
|
-
// eslint-disable-next-line es
|
|
21768
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
21729
21769
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
21730
21770
|
value: 42,
|
|
21731
21771
|
writable: false
|
|
@@ -21742,9 +21782,9 @@ var anObject = function (argument) {
|
|
|
21742
21782
|
};
|
|
21743
21783
|
|
|
21744
21784
|
var $TypeError$5 = TypeError;
|
|
21745
|
-
// eslint-disable-next-line es
|
|
21785
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
21746
21786
|
var $defineProperty = Object.defineProperty;
|
|
21747
|
-
// eslint-disable-next-line es
|
|
21787
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
21748
21788
|
var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
|
21749
21789
|
var ENUMERABLE = 'enumerable';
|
|
21750
21790
|
var CONFIGURABLE = 'configurable';
|
|
@@ -21791,7 +21831,7 @@ var createNonEnumerableProperty = descriptors ? function (object, key, value) {
|
|
|
21791
21831
|
};
|
|
21792
21832
|
|
|
21793
21833
|
var FunctionPrototype$1 = Function.prototype;
|
|
21794
|
-
// eslint-disable-next-line es
|
|
21834
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
21795
21835
|
var getDescriptor = descriptors && Object.getOwnPropertyDescriptor;
|
|
21796
21836
|
|
|
21797
21837
|
var EXISTS$1 = hasOwnProperty_1(FunctionPrototype$1, 'name');
|
|
@@ -21818,7 +21858,7 @@ var inspectSource = sharedStore.inspectSource;
|
|
|
21818
21858
|
|
|
21819
21859
|
var WeakMap$1 = global_1.WeakMap;
|
|
21820
21860
|
|
|
21821
|
-
var
|
|
21861
|
+
var weakMapBasicDetection = isCallable(WeakMap$1) && /native code/.test(String(WeakMap$1));
|
|
21822
21862
|
|
|
21823
21863
|
var keys$1 = shared('keys');
|
|
21824
21864
|
|
|
@@ -21846,28 +21886,30 @@ var getterFor = function (TYPE) {
|
|
|
21846
21886
|
};
|
|
21847
21887
|
};
|
|
21848
21888
|
|
|
21849
|
-
if (
|
|
21889
|
+
if (weakMapBasicDetection || sharedStore.state) {
|
|
21850
21890
|
var store$1 = sharedStore.state || (sharedStore.state = new WeakMap$2());
|
|
21851
|
-
|
|
21852
|
-
|
|
21853
|
-
|
|
21891
|
+
/* eslint-disable no-self-assign -- prototype methods protection */
|
|
21892
|
+
store$1.get = store$1.get;
|
|
21893
|
+
store$1.has = store$1.has;
|
|
21894
|
+
store$1.set = store$1.set;
|
|
21895
|
+
/* eslint-enable no-self-assign -- prototype methods protection */
|
|
21854
21896
|
set = function (it, metadata) {
|
|
21855
|
-
if (
|
|
21897
|
+
if (store$1.has(it)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
|
|
21856
21898
|
metadata.facade = it;
|
|
21857
|
-
|
|
21899
|
+
store$1.set(it, metadata);
|
|
21858
21900
|
return metadata;
|
|
21859
21901
|
};
|
|
21860
21902
|
get = function (it) {
|
|
21861
|
-
return
|
|
21903
|
+
return store$1.get(it) || {};
|
|
21862
21904
|
};
|
|
21863
21905
|
has = function (it) {
|
|
21864
|
-
return
|
|
21906
|
+
return store$1.has(it);
|
|
21865
21907
|
};
|
|
21866
21908
|
} else {
|
|
21867
21909
|
var STATE = sharedKey('state');
|
|
21868
21910
|
hiddenKeys[STATE] = true;
|
|
21869
21911
|
set = function (it, metadata) {
|
|
21870
|
-
if (hasOwnProperty_1(it, STATE)) throw
|
|
21912
|
+
if (hasOwnProperty_1(it, STATE)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
|
|
21871
21913
|
metadata.facade = it;
|
|
21872
21914
|
createNonEnumerableProperty(it, STATE, metadata);
|
|
21873
21915
|
return metadata;
|
|
@@ -21895,7 +21937,7 @@ var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
|
|
|
21895
21937
|
|
|
21896
21938
|
var enforceInternalState = internalState.enforce;
|
|
21897
21939
|
var getInternalState = internalState.get;
|
|
21898
|
-
// eslint-disable-next-line es
|
|
21940
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
21899
21941
|
var defineProperty = Object.defineProperty;
|
|
21900
21942
|
|
|
21901
21943
|
var CONFIGURABLE_LENGTH = descriptors && !fails(function () {
|
|
@@ -21964,7 +22006,7 @@ var floor = Math.floor;
|
|
|
21964
22006
|
|
|
21965
22007
|
// `Math.trunc` method
|
|
21966
22008
|
// https://tc39.es/ecma262/#sec-math.trunc
|
|
21967
|
-
// eslint-disable-next-line es
|
|
22009
|
+
// eslint-disable-next-line es/no-math-trunc -- safe
|
|
21968
22010
|
var mathTrunc = Math.trunc || function trunc(x) {
|
|
21969
22011
|
var n = +x;
|
|
21970
22012
|
return (n > 0 ? floor : ceil)(n);
|
|
@@ -22065,7 +22107,7 @@ var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
|
|
|
22065
22107
|
|
|
22066
22108
|
// `Object.getOwnPropertyNames` method
|
|
22067
22109
|
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
22068
|
-
// eslint-disable-next-line es
|
|
22110
|
+
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
22069
22111
|
var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
22070
22112
|
return objectKeysInternal(O, hiddenKeys$1);
|
|
22071
22113
|
};
|
|
@@ -22074,7 +22116,7 @@ var objectGetOwnPropertyNames = {
|
|
|
22074
22116
|
f: f$3
|
|
22075
22117
|
};
|
|
22076
22118
|
|
|
22077
|
-
// eslint-disable-next-line es
|
|
22119
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
22078
22120
|
var f$4 = Object.getOwnPropertySymbols;
|
|
22079
22121
|
|
|
22080
22122
|
var objectGetOwnPropertySymbols = {
|
|
@@ -22218,7 +22260,7 @@ var toString_1 = function (argument) {
|
|
|
22218
22260
|
var charAt = functionUncurryThis(''.charAt);
|
|
22219
22261
|
|
|
22220
22262
|
var FORCED = fails(function () {
|
|
22221
|
-
// eslint-disable-next-line es
|
|
22263
|
+
// eslint-disable-next-line es/no-array-string-prototype-at -- safe
|
|
22222
22264
|
return '𠮷'.at(-2) !== '\uD842';
|
|
22223
22265
|
});
|
|
22224
22266
|
|
|
@@ -22236,14 +22278,14 @@ _export({ target: 'String', proto: true, forced: FORCED }, {
|
|
|
22236
22278
|
|
|
22237
22279
|
// `Object.keys` method
|
|
22238
22280
|
// https://tc39.es/ecma262/#sec-object.keys
|
|
22239
|
-
// eslint-disable-next-line es
|
|
22281
|
+
// eslint-disable-next-line es/no-object-keys -- safe
|
|
22240
22282
|
var objectKeys = Object.keys || function keys(O) {
|
|
22241
22283
|
return objectKeysInternal(O, enumBugKeys);
|
|
22242
22284
|
};
|
|
22243
22285
|
|
|
22244
22286
|
// `Object.defineProperties` method
|
|
22245
22287
|
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
22246
|
-
// eslint-disable-next-line es
|
|
22288
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
22247
22289
|
var f$5 = descriptors && !v8PrototypeDefineBug ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
22248
22290
|
anObject(O);
|
|
22249
22291
|
var props = toIndexedObject(Properties);
|
|
@@ -22332,7 +22374,7 @@ hiddenKeys[IE_PROTO] = true;
|
|
|
22332
22374
|
|
|
22333
22375
|
// `Object.create` method
|
|
22334
22376
|
// https://tc39.es/ecma262/#sec-object.create
|
|
22335
|
-
// eslint-disable-next-line es
|
|
22377
|
+
// eslint-disable-next-line es/no-object-create -- safe
|
|
22336
22378
|
var objectCreate = Object.create || function create(O, Properties) {
|
|
22337
22379
|
var result;
|
|
22338
22380
|
if (O !== null) {
|
|
@@ -22378,13 +22420,13 @@ _export({ target: 'Array', proto: true }, {
|
|
|
22378
22420
|
|
|
22379
22421
|
addToUnscopables('at');
|
|
22380
22422
|
|
|
22381
|
-
// eslint-disable-next-line es
|
|
22382
|
-
var
|
|
22423
|
+
// eslint-disable-next-line es/no-typed-arrays -- safe
|
|
22424
|
+
var arrayBufferBasicDetection = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
|
|
22383
22425
|
|
|
22384
22426
|
var correctPrototypeGetter = !fails(function () {
|
|
22385
22427
|
function F() { /* empty */ }
|
|
22386
22428
|
F.prototype.constructor = null;
|
|
22387
|
-
// eslint-disable-next-line es
|
|
22429
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- required for testing
|
|
22388
22430
|
return Object.getPrototypeOf(new F()) !== F.prototype;
|
|
22389
22431
|
});
|
|
22390
22432
|
|
|
@@ -22394,7 +22436,7 @@ var ObjectPrototype = $Object$4.prototype;
|
|
|
22394
22436
|
|
|
22395
22437
|
// `Object.getPrototypeOf` method
|
|
22396
22438
|
// https://tc39.es/ecma262/#sec-object.getprototypeof
|
|
22397
|
-
// eslint-disable-next-line es
|
|
22439
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
22398
22440
|
var objectGetPrototypeOf = correctPrototypeGetter ? $Object$4.getPrototypeOf : function (O) {
|
|
22399
22441
|
var object = toObject(O);
|
|
22400
22442
|
if (hasOwnProperty_1(object, IE_PROTO$1)) return object[IE_PROTO$1];
|
|
@@ -22420,13 +22462,13 @@ var aPossiblePrototype = function (argument) {
|
|
|
22420
22462
|
// `Object.setPrototypeOf` method
|
|
22421
22463
|
// https://tc39.es/ecma262/#sec-object.setprototypeof
|
|
22422
22464
|
// Works with __proto__ only. Old v8 can't work with null proto objects.
|
|
22423
|
-
// eslint-disable-next-line es
|
|
22465
|
+
// eslint-disable-next-line es/no-object-setprototypeof -- safe
|
|
22424
22466
|
var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
22425
22467
|
var CORRECT_SETTER = false;
|
|
22426
22468
|
var test = {};
|
|
22427
22469
|
var setter;
|
|
22428
22470
|
try {
|
|
22429
|
-
// eslint-disable-next-line es
|
|
22471
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
22430
22472
|
setter = functionUncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
|
|
22431
22473
|
setter(test, []);
|
|
22432
22474
|
CORRECT_SETTER = test instanceof Array;
|
|
@@ -22463,7 +22505,7 @@ var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag');
|
|
|
22463
22505
|
var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG');
|
|
22464
22506
|
var TYPED_ARRAY_CONSTRUCTOR = 'TypedArrayConstructor';
|
|
22465
22507
|
// Fixing native typed arrays in Opera Presto crashes the browser, see #595
|
|
22466
|
-
var NATIVE_ARRAY_BUFFER_VIEWS =
|
|
22508
|
+
var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferBasicDetection && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera';
|
|
22467
22509
|
var TYPED_ARRAY_TAG_REQUIRED = false;
|
|
22468
22510
|
var NAME, Constructor, Prototype;
|
|
22469
22511
|
|
|
@@ -48938,13 +48980,15 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
48938
48980
|
_ref$centeredMobileCo = _ref.centeredMobileContent,
|
|
48939
48981
|
centeredMobileContent = _ref$centeredMobileCo === void 0 ? false : _ref$centeredMobileCo,
|
|
48940
48982
|
content = _ref.content,
|
|
48983
|
+
_ref$backgroundColor = _ref.backgroundColor,
|
|
48984
|
+
backgroundColor = _ref$backgroundColor === void 0 ? COOL_GREY_05 : _ref$backgroundColor,
|
|
48941
48985
|
themeValues = _ref.themeValues;
|
|
48942
48986
|
var themeContext = React.useContext(styled.ThemeContext);
|
|
48943
48987
|
var isMobile = themeContext.isMobile;
|
|
48944
48988
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
48945
48989
|
padding: "0",
|
|
48946
48990
|
minWidth: "100%",
|
|
48947
|
-
background:
|
|
48991
|
+
background: backgroundColor,
|
|
48948
48992
|
extraStyles: "flex-grow: 1;"
|
|
48949
48993
|
}, /*#__PURE__*/React__default.createElement(Cover, {
|
|
48950
48994
|
centerOverride: isMobile && !centeredMobileContent
|