@mozaic-ds/vue 0.24.0 → 0.26.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/mozaic-vue.adeo.css +8 -8
- package/dist/mozaic-vue.adeo.umd.js +55 -55
- package/dist/mozaic-vue.common.js +55 -55
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +55 -55
- package/dist/mozaic-vue.umd.js.map +1 -1
- package/dist/mozaic-vue.umd.min.js +1 -1
- package/dist/mozaic-vue.umd.min.js.map +1 -1
- package/package.json +4 -4
- package/src/tokens/adeo/android/colors.xml +47 -43
- package/src/tokens/adeo/css/_variables.scss +47 -43
- package/src/tokens/adeo/css/root.scss +32 -28
- package/src/tokens/adeo/ios/StyleDictionaryColor.h +4 -0
- package/src/tokens/adeo/ios/StyleDictionaryColor.m +47 -43
- package/src/tokens/adeo/ios/StyleDictionaryColor.swift +47 -43
- package/src/tokens/adeo/js/tokens.js +47 -43
- package/src/tokens/adeo/js/tokensObject.js +155 -71
- package/src/tokens/adeo/scss/_tokens.scss +55 -47
|
@@ -22428,7 +22428,7 @@ var STRICT_METHOD = arrayMethodIsStrict('forEach');
|
|
|
22428
22428
|
// https://tc39.es/ecma262/#sec-array.prototype.foreach
|
|
22429
22429
|
module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) {
|
|
22430
22430
|
return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
|
|
22431
|
-
// eslint-disable-next-line es
|
|
22431
|
+
// eslint-disable-next-line es/no-array-prototype-foreach -- safe
|
|
22432
22432
|
} : [].forEach;
|
|
22433
22433
|
|
|
22434
22434
|
|
|
@@ -22612,7 +22612,7 @@ module.exports = {
|
|
|
22612
22612
|
|
|
22613
22613
|
"use strict";
|
|
22614
22614
|
|
|
22615
|
-
/* eslint-disable es
|
|
22615
|
+
/* eslint-disable es/no-array-prototype-lastindexof -- safe */
|
|
22616
22616
|
var apply = __webpack_require__(2104);
|
|
22617
22617
|
var toIndexedObject = __webpack_require__(5656);
|
|
22618
22618
|
var toIntegerOrInfinity = __webpack_require__(9303);
|
|
@@ -22744,7 +22744,7 @@ var DESCRIPTORS = __webpack_require__(9781);
|
|
|
22744
22744
|
var isArray = __webpack_require__(3157);
|
|
22745
22745
|
|
|
22746
22746
|
var $TypeError = TypeError;
|
|
22747
|
-
// eslint-disable-next-line es
|
|
22747
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
22748
22748
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
22749
22749
|
|
|
22750
22750
|
// Safari < 13 does not throw an error in this case
|
|
@@ -22752,7 +22752,7 @@ var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
|
|
|
22752
22752
|
// makes no sense without proper strict mode support
|
|
22753
22753
|
if (this !== undefined) return true;
|
|
22754
22754
|
try {
|
|
22755
|
-
// eslint-disable-next-line es
|
|
22755
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
22756
22756
|
Object.defineProperty([], 'length', { writable: false }).length = 1;
|
|
22757
22757
|
} catch (error) {
|
|
22758
22758
|
return error instanceof TypeError;
|
|
@@ -22936,7 +22936,7 @@ try {
|
|
|
22936
22936
|
iteratorWithReturn[ITERATOR] = function () {
|
|
22937
22937
|
return this;
|
|
22938
22938
|
};
|
|
22939
|
-
// eslint-disable-next-line es
|
|
22939
|
+
// eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
|
|
22940
22940
|
Array.from(iteratorWithReturn, function () { throw 2; });
|
|
22941
22941
|
} catch (error) { /* empty */ }
|
|
22942
22942
|
|
|
@@ -23064,7 +23064,7 @@ var fails = __webpack_require__(7293);
|
|
|
23064
23064
|
module.exports = !fails(function () {
|
|
23065
23065
|
function F() { /* empty */ }
|
|
23066
23066
|
F.prototype.constructor = null;
|
|
23067
|
-
// eslint-disable-next-line es
|
|
23067
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- required for testing
|
|
23068
23068
|
return Object.getPrototypeOf(new F()) !== F.prototype;
|
|
23069
23069
|
});
|
|
23070
23070
|
|
|
@@ -23209,7 +23209,7 @@ module.exports = function (O, key, value, options) {
|
|
|
23209
23209
|
|
|
23210
23210
|
var global = __webpack_require__(7854);
|
|
23211
23211
|
|
|
23212
|
-
// eslint-disable-next-line es
|
|
23212
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
23213
23213
|
var defineProperty = Object.defineProperty;
|
|
23214
23214
|
|
|
23215
23215
|
module.exports = function (key, value) {
|
|
@@ -23246,7 +23246,7 @@ var fails = __webpack_require__(7293);
|
|
|
23246
23246
|
|
|
23247
23247
|
// Detect IE8's incomplete defineProperty implementation
|
|
23248
23248
|
module.exports = !fails(function () {
|
|
23249
|
-
// eslint-disable-next-line es
|
|
23249
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
23250
23250
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
|
23251
23251
|
});
|
|
23252
23252
|
|
|
@@ -23545,7 +23545,7 @@ var createPropertyDescriptor = __webpack_require__(9114);
|
|
|
23545
23545
|
module.exports = !fails(function () {
|
|
23546
23546
|
var error = Error('a');
|
|
23547
23547
|
if (!('stack' in error)) return true;
|
|
23548
|
-
// eslint-disable-next-line es
|
|
23548
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
23549
23549
|
Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
|
|
23550
23550
|
return error.stack !== 7;
|
|
23551
23551
|
});
|
|
@@ -23719,7 +23719,7 @@ var FunctionPrototype = Function.prototype;
|
|
|
23719
23719
|
var apply = FunctionPrototype.apply;
|
|
23720
23720
|
var call = FunctionPrototype.call;
|
|
23721
23721
|
|
|
23722
|
-
// eslint-disable-next-line es
|
|
23722
|
+
// eslint-disable-next-line es/no-reflect -- safe
|
|
23723
23723
|
module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
|
|
23724
23724
|
return call.apply(apply, arguments);
|
|
23725
23725
|
});
|
|
@@ -23753,7 +23753,7 @@ module.exports = function (fn, that) {
|
|
|
23753
23753
|
var fails = __webpack_require__(7293);
|
|
23754
23754
|
|
|
23755
23755
|
module.exports = !fails(function () {
|
|
23756
|
-
// eslint-disable-next-line es
|
|
23756
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
23757
23757
|
var test = (function () { /* empty */ }).bind();
|
|
23758
23758
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
23759
23759
|
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
@@ -23783,7 +23783,7 @@ var DESCRIPTORS = __webpack_require__(9781);
|
|
|
23783
23783
|
var hasOwn = __webpack_require__(2597);
|
|
23784
23784
|
|
|
23785
23785
|
var FunctionPrototype = Function.prototype;
|
|
23786
|
-
// eslint-disable-next-line es
|
|
23786
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
23787
23787
|
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
23788
23788
|
|
|
23789
23789
|
var EXISTS = hasOwn(FunctionPrototype, 'name');
|
|
@@ -23954,7 +23954,7 @@ var check = function (it) {
|
|
|
23954
23954
|
|
|
23955
23955
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
23956
23956
|
module.exports =
|
|
23957
|
-
// eslint-disable-next-line es
|
|
23957
|
+
// eslint-disable-next-line es/no-global-this -- safe
|
|
23958
23958
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
23959
23959
|
check(typeof window == 'object' && window) ||
|
|
23960
23960
|
// eslint-disable-next-line no-restricted-globals -- safe
|
|
@@ -23976,7 +23976,7 @@ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
|
|
|
23976
23976
|
|
|
23977
23977
|
// `HasOwnProperty` abstract operation
|
|
23978
23978
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
23979
|
-
// eslint-disable-next-line es
|
|
23979
|
+
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
23980
23980
|
module.exports = Object.hasOwn || function hasOwn(it, key) {
|
|
23981
23981
|
return hasOwnProperty(toObject(it), key);
|
|
23982
23982
|
};
|
|
@@ -24026,7 +24026,7 @@ var createElement = __webpack_require__(317);
|
|
|
24026
24026
|
|
|
24027
24027
|
// Thanks to IE8 for its funny defineProperty
|
|
24028
24028
|
module.exports = !DESCRIPTORS && !fails(function () {
|
|
24029
|
-
// eslint-disable-next-line es
|
|
24029
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
24030
24030
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
24031
24031
|
get: function () { return 7; }
|
|
24032
24032
|
}).a != 7;
|
|
@@ -24220,7 +24220,7 @@ var classof = __webpack_require__(4326);
|
|
|
24220
24220
|
|
|
24221
24221
|
// `IsArray` abstract operation
|
|
24222
24222
|
// https://tc39.es/ecma262/#sec-isarray
|
|
24223
|
-
// eslint-disable-next-line es
|
|
24223
|
+
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
24224
24224
|
module.exports = Array.isArray || function isArray(argument) {
|
|
24225
24225
|
return classof(argument) == 'Array';
|
|
24226
24226
|
};
|
|
@@ -24667,7 +24667,7 @@ var BUGGY_SAFARI_ITERATORS = false;
|
|
|
24667
24667
|
// https://tc39.es/ecma262/#sec-%iteratorprototype%-object
|
|
24668
24668
|
var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
|
|
24669
24669
|
|
|
24670
|
-
/* eslint-disable es
|
|
24670
|
+
/* eslint-disable es/no-array-prototype-keys -- safe */
|
|
24671
24671
|
if ([].keys) {
|
|
24672
24672
|
arrayIterator = [].keys();
|
|
24673
24673
|
// Safari 8 has buggy iterators w/o `next`
|
|
@@ -24738,7 +24738,7 @@ var InternalStateModule = __webpack_require__(9909);
|
|
|
24738
24738
|
|
|
24739
24739
|
var enforceInternalState = InternalStateModule.enforce;
|
|
24740
24740
|
var getInternalState = InternalStateModule.get;
|
|
24741
|
-
// eslint-disable-next-line es
|
|
24741
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
24742
24742
|
var defineProperty = Object.defineProperty;
|
|
24743
24743
|
|
|
24744
24744
|
var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
|
|
@@ -24789,7 +24789,7 @@ var floor = Math.floor;
|
|
|
24789
24789
|
|
|
24790
24790
|
// `Math.trunc` method
|
|
24791
24791
|
// https://tc39.es/ecma262/#sec-math.trunc
|
|
24792
|
-
// eslint-disable-next-line es
|
|
24792
|
+
// eslint-disable-next-line es/no-math-trunc -- safe
|
|
24793
24793
|
module.exports = Math.trunc || function trunc(x) {
|
|
24794
24794
|
var n = +x;
|
|
24795
24795
|
return (n > 0 ? floor : ceil)(n);
|
|
@@ -24991,9 +24991,9 @@ var propertyIsEnumerableModule = __webpack_require__(5296);
|
|
|
24991
24991
|
var toObject = __webpack_require__(7908);
|
|
24992
24992
|
var IndexedObject = __webpack_require__(8361);
|
|
24993
24993
|
|
|
24994
|
-
// eslint-disable-next-line es
|
|
24994
|
+
// eslint-disable-next-line es/no-object-assign -- safe
|
|
24995
24995
|
var $assign = Object.assign;
|
|
24996
|
-
// eslint-disable-next-line es
|
|
24996
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
24997
24997
|
var defineProperty = Object.defineProperty;
|
|
24998
24998
|
var concat = uncurryThis([].concat);
|
|
24999
24999
|
|
|
@@ -25013,7 +25013,7 @@ module.exports = !$assign || fails(function () {
|
|
|
25013
25013
|
// should work with symbols and should have deterministic property order (V8 bug)
|
|
25014
25014
|
var A = {};
|
|
25015
25015
|
var B = {};
|
|
25016
|
-
// eslint-disable-next-line es
|
|
25016
|
+
// eslint-disable-next-line es/no-symbol -- safe
|
|
25017
25017
|
var symbol = Symbol();
|
|
25018
25018
|
var alphabet = 'abcdefghijklmnopqrst';
|
|
25019
25019
|
A[symbol] = 7;
|
|
@@ -25115,7 +25115,7 @@ hiddenKeys[IE_PROTO] = true;
|
|
|
25115
25115
|
|
|
25116
25116
|
// `Object.create` method
|
|
25117
25117
|
// https://tc39.es/ecma262/#sec-object.create
|
|
25118
|
-
// eslint-disable-next-line es
|
|
25118
|
+
// eslint-disable-next-line es/no-object-create -- safe
|
|
25119
25119
|
module.exports = Object.create || function create(O, Properties) {
|
|
25120
25120
|
var result;
|
|
25121
25121
|
if (O !== null) {
|
|
@@ -25143,7 +25143,7 @@ var objectKeys = __webpack_require__(1956);
|
|
|
25143
25143
|
|
|
25144
25144
|
// `Object.defineProperties` method
|
|
25145
25145
|
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
25146
|
-
// eslint-disable-next-line es
|
|
25146
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
25147
25147
|
exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
25148
25148
|
anObject(O);
|
|
25149
25149
|
var props = toIndexedObject(Properties);
|
|
@@ -25168,9 +25168,9 @@ var anObject = __webpack_require__(9670);
|
|
|
25168
25168
|
var toPropertyKey = __webpack_require__(4948);
|
|
25169
25169
|
|
|
25170
25170
|
var $TypeError = TypeError;
|
|
25171
|
-
// eslint-disable-next-line es
|
|
25171
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
25172
25172
|
var $defineProperty = Object.defineProperty;
|
|
25173
|
-
// eslint-disable-next-line es
|
|
25173
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
25174
25174
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
25175
25175
|
var ENUMERABLE = 'enumerable';
|
|
25176
25176
|
var CONFIGURABLE = 'configurable';
|
|
@@ -25220,7 +25220,7 @@ var toPropertyKey = __webpack_require__(4948);
|
|
|
25220
25220
|
var hasOwn = __webpack_require__(2597);
|
|
25221
25221
|
var IE8_DOM_DEFINE = __webpack_require__(4664);
|
|
25222
25222
|
|
|
25223
|
-
// eslint-disable-next-line es
|
|
25223
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
25224
25224
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
25225
25225
|
|
|
25226
25226
|
// `Object.getOwnPropertyDescriptor` method
|
|
@@ -25240,7 +25240,7 @@ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDes
|
|
|
25240
25240
|
/***/ 1156:
|
|
25241
25241
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
25242
25242
|
|
|
25243
|
-
/* eslint-disable es
|
|
25243
|
+
/* eslint-disable es/no-object-getownpropertynames -- safe */
|
|
25244
25244
|
var classof = __webpack_require__(4326);
|
|
25245
25245
|
var toIndexedObject = __webpack_require__(5656);
|
|
25246
25246
|
var $getOwnPropertyNames = (__webpack_require__(8006).f);
|
|
@@ -25277,7 +25277,7 @@ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
|
|
25277
25277
|
|
|
25278
25278
|
// `Object.getOwnPropertyNames` method
|
|
25279
25279
|
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
25280
|
-
// eslint-disable-next-line es
|
|
25280
|
+
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
25281
25281
|
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
25282
25282
|
return internalObjectKeys(O, hiddenKeys);
|
|
25283
25283
|
};
|
|
@@ -25288,7 +25288,7 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
|
25288
25288
|
/***/ 5181:
|
|
25289
25289
|
/***/ (function(__unused_webpack_module, exports) {
|
|
25290
25290
|
|
|
25291
|
-
// eslint-disable-next-line es
|
|
25291
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
25292
25292
|
exports.f = Object.getOwnPropertySymbols;
|
|
25293
25293
|
|
|
25294
25294
|
|
|
@@ -25309,7 +25309,7 @@ var ObjectPrototype = $Object.prototype;
|
|
|
25309
25309
|
|
|
25310
25310
|
// `Object.getPrototypeOf` method
|
|
25311
25311
|
// https://tc39.es/ecma262/#sec-object.getprototypeof
|
|
25312
|
-
// eslint-disable-next-line es
|
|
25312
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
25313
25313
|
module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
|
|
25314
25314
|
var object = toObject(O);
|
|
25315
25315
|
if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
|
|
@@ -25367,7 +25367,7 @@ var enumBugKeys = __webpack_require__(748);
|
|
|
25367
25367
|
|
|
25368
25368
|
// `Object.keys` method
|
|
25369
25369
|
// https://tc39.es/ecma262/#sec-object.keys
|
|
25370
|
-
// eslint-disable-next-line es
|
|
25370
|
+
// eslint-disable-next-line es/no-object-keys -- safe
|
|
25371
25371
|
module.exports = Object.keys || function keys(O) {
|
|
25372
25372
|
return internalObjectKeys(O, enumBugKeys);
|
|
25373
25373
|
};
|
|
@@ -25381,7 +25381,7 @@ module.exports = Object.keys || function keys(O) {
|
|
|
25381
25381
|
"use strict";
|
|
25382
25382
|
|
|
25383
25383
|
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
25384
|
-
// eslint-disable-next-line es
|
|
25384
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
25385
25385
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
25386
25386
|
|
|
25387
25387
|
// Nashorn ~ JDK8 bug
|
|
@@ -25408,13 +25408,13 @@ var aPossiblePrototype = __webpack_require__(6077);
|
|
|
25408
25408
|
// `Object.setPrototypeOf` method
|
|
25409
25409
|
// https://tc39.es/ecma262/#sec-object.setprototypeof
|
|
25410
25410
|
// Works with __proto__ only. Old v8 can't work with null proto objects.
|
|
25411
|
-
// eslint-disable-next-line es
|
|
25411
|
+
// eslint-disable-next-line es/no-object-setprototypeof -- safe
|
|
25412
25412
|
module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
25413
25413
|
var CORRECT_SETTER = false;
|
|
25414
25414
|
var test = {};
|
|
25415
25415
|
var setter;
|
|
25416
25416
|
try {
|
|
25417
|
-
// eslint-disable-next-line es
|
|
25417
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
25418
25418
|
setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
|
|
25419
25419
|
setter(test, []);
|
|
25420
25420
|
CORRECT_SETTER = test instanceof Array;
|
|
@@ -26071,10 +26071,10 @@ var store = __webpack_require__(5465);
|
|
|
26071
26071
|
(module.exports = function (key, value) {
|
|
26072
26072
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
26073
26073
|
})('versions', []).push({
|
|
26074
|
-
version: '3.25.
|
|
26074
|
+
version: '3.25.3',
|
|
26075
26075
|
mode: IS_PURE ? 'pure' : 'global',
|
|
26076
26076
|
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
26077
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.25.
|
|
26077
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.25.3/LICENSE',
|
|
26078
26078
|
source: 'https://github.com/zloirock/core-js'
|
|
26079
26079
|
});
|
|
26080
26080
|
|
|
@@ -26225,11 +26225,11 @@ module.exports = {
|
|
|
26225
26225
|
/***/ 6293:
|
|
26226
26226
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
26227
26227
|
|
|
26228
|
-
/* eslint-disable es
|
|
26228
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
26229
26229
|
var V8_VERSION = __webpack_require__(7392);
|
|
26230
26230
|
var fails = __webpack_require__(7293);
|
|
26231
26231
|
|
|
26232
|
-
// eslint-disable-next-line es
|
|
26232
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
26233
26233
|
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
26234
26234
|
var symbol = Symbol();
|
|
26235
26235
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
@@ -26274,7 +26274,7 @@ module.exports = function () {
|
|
|
26274
26274
|
|
|
26275
26275
|
var NATIVE_SYMBOL = __webpack_require__(6293);
|
|
26276
26276
|
|
|
26277
|
-
/* eslint-disable es
|
|
26277
|
+
/* eslint-disable es/no-symbol -- safe */
|
|
26278
26278
|
module.exports = NATIVE_SYMBOL && !!Symbol['for'] && !!Symbol.keyFor;
|
|
26279
26279
|
|
|
26280
26280
|
|
|
@@ -26306,11 +26306,11 @@ var String = global.String;
|
|
|
26306
26306
|
var counter = 0;
|
|
26307
26307
|
var queue = {};
|
|
26308
26308
|
var ONREADYSTATECHANGE = 'onreadystatechange';
|
|
26309
|
-
var location, defer, channel, port;
|
|
26309
|
+
var $location, defer, channel, port;
|
|
26310
26310
|
|
|
26311
26311
|
try {
|
|
26312
26312
|
// Deno throws a ReferenceError on `location` access without `--location` flag
|
|
26313
|
-
location = global.location;
|
|
26313
|
+
$location = global.location;
|
|
26314
26314
|
} catch (error) { /* empty */ }
|
|
26315
26315
|
|
|
26316
26316
|
var run = function (id) {
|
|
@@ -26333,7 +26333,7 @@ var listener = function (event) {
|
|
|
26333
26333
|
|
|
26334
26334
|
var post = function (id) {
|
|
26335
26335
|
// old engines have not location.origin
|
|
26336
|
-
global.postMessage(String(id), location.protocol + '//' + location.host);
|
|
26336
|
+
global.postMessage(String(id), $location.protocol + '//' + $location.host);
|
|
26337
26337
|
};
|
|
26338
26338
|
|
|
26339
26339
|
// Node.js 0.9+ & IE10+ has setImmediate, otherwise:
|
|
@@ -26374,7 +26374,7 @@ if (!set || !clear) {
|
|
|
26374
26374
|
global.addEventListener &&
|
|
26375
26375
|
isCallable(global.postMessage) &&
|
|
26376
26376
|
!global.importScripts &&
|
|
26377
|
-
location && location.protocol !== 'file:' &&
|
|
26377
|
+
$location && $location.protocol !== 'file:' &&
|
|
26378
26378
|
!fails(post)
|
|
26379
26379
|
) {
|
|
26380
26380
|
defer = post;
|
|
@@ -26609,7 +26609,7 @@ module.exports = function (key) {
|
|
|
26609
26609
|
/***/ 3307:
|
|
26610
26610
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
26611
26611
|
|
|
26612
|
-
/* eslint-disable es
|
|
26612
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
26613
26613
|
var NATIVE_SYMBOL = __webpack_require__(6293);
|
|
26614
26614
|
|
|
26615
26615
|
module.exports = NATIVE_SYMBOL
|
|
@@ -26628,7 +26628,7 @@ var fails = __webpack_require__(7293);
|
|
|
26628
26628
|
// V8 ~ Chrome 36-
|
|
26629
26629
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
26630
26630
|
module.exports = DESCRIPTORS && fails(function () {
|
|
26631
|
-
// eslint-disable-next-line es
|
|
26631
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
26632
26632
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
26633
26633
|
value: 42,
|
|
26634
26634
|
writable: false
|
|
@@ -26964,7 +26964,7 @@ var from = __webpack_require__(8457);
|
|
|
26964
26964
|
var checkCorrectnessOfIteration = __webpack_require__(7072);
|
|
26965
26965
|
|
|
26966
26966
|
var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
|
|
26967
|
-
// eslint-disable-next-line es
|
|
26967
|
+
// eslint-disable-next-line es/no-array-from -- required for testing
|
|
26968
26968
|
Array.from(iterable);
|
|
26969
26969
|
});
|
|
26970
26970
|
|
|
@@ -27011,7 +27011,7 @@ addToUnscopables('includes');
|
|
|
27011
27011
|
|
|
27012
27012
|
"use strict";
|
|
27013
27013
|
|
|
27014
|
-
/* eslint-disable es
|
|
27014
|
+
/* eslint-disable es/no-array-prototype-indexof -- required for testing */
|
|
27015
27015
|
var $ = __webpack_require__(2109);
|
|
27016
27016
|
var uncurryThis = __webpack_require__(1702);
|
|
27017
27017
|
var $indexOf = (__webpack_require__(1318).indexOf);
|
|
@@ -27142,7 +27142,7 @@ var lastIndexOf = __webpack_require__(6583);
|
|
|
27142
27142
|
|
|
27143
27143
|
// `Array.prototype.lastIndexOf` method
|
|
27144
27144
|
// https://tc39.es/ecma262/#sec-array.prototype.lastindexof
|
|
27145
|
-
// eslint-disable-next-line es
|
|
27145
|
+
// eslint-disable-next-line es/no-array-prototype-lastindexof -- required for testing
|
|
27146
27146
|
$({ target: 'Array', proto: true, forced: lastIndexOf !== [].lastIndexOf }, {
|
|
27147
27147
|
lastIndexOf: lastIndexOf
|
|
27148
27148
|
});
|
|
@@ -27193,7 +27193,7 @@ var INCORRECT_TO_LENGTH = fails(function () {
|
|
|
27193
27193
|
// https://bugs.chromium.org/p/v8/issues/detail?id=12681
|
|
27194
27194
|
var SILENT_ON_NON_WRITABLE_LENGTH = !function () {
|
|
27195
27195
|
try {
|
|
27196
|
-
// eslint-disable-next-line es
|
|
27196
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
27197
27197
|
Object.defineProperty([], 'length', { writable: false }).push();
|
|
27198
27198
|
} catch (error) {
|
|
27199
27199
|
return error instanceof TypeError;
|
|
@@ -27825,7 +27825,7 @@ var assign = __webpack_require__(1574);
|
|
|
27825
27825
|
|
|
27826
27826
|
// `Object.assign` method
|
|
27827
27827
|
// https://tc39.es/ecma262/#sec-object.assign
|
|
27828
|
-
// eslint-disable-next-line es
|
|
27828
|
+
// eslint-disable-next-line es/no-object-assign -- required for testing
|
|
27829
27829
|
$({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
|
|
27830
27830
|
assign: assign
|
|
27831
27831
|
});
|
|
@@ -27842,7 +27842,7 @@ var defineProperties = (__webpack_require__(6048).f);
|
|
|
27842
27842
|
|
|
27843
27843
|
// `Object.defineProperties` method
|
|
27844
27844
|
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
27845
|
-
// eslint-disable-next-line es
|
|
27845
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
27846
27846
|
$({ target: 'Object', stat: true, forced: Object.defineProperties !== defineProperties, sham: !DESCRIPTORS }, {
|
|
27847
27847
|
defineProperties: defineProperties
|
|
27848
27848
|
});
|
|
@@ -27859,7 +27859,7 @@ var defineProperty = (__webpack_require__(3070).f);
|
|
|
27859
27859
|
|
|
27860
27860
|
// `Object.defineProperty` method
|
|
27861
27861
|
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
27862
|
-
// eslint-disable-next-line es
|
|
27862
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
27863
27863
|
$({ target: 'Object', stat: true, forced: Object.defineProperty !== defineProperty, sham: !DESCRIPTORS }, {
|
|
27864
27864
|
defineProperty: defineProperty
|
|
27865
27865
|
});
|
|
@@ -28001,9 +28001,9 @@ var isObject = __webpack_require__(111);
|
|
|
28001
28001
|
var toObject = __webpack_require__(7908);
|
|
28002
28002
|
var requireObjectCoercible = __webpack_require__(4488);
|
|
28003
28003
|
|
|
28004
|
-
// eslint-disable-next-line es
|
|
28004
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
28005
28005
|
var getPrototypeOf = Object.getPrototypeOf;
|
|
28006
|
-
// eslint-disable-next-line es
|
|
28006
|
+
// eslint-disable-next-line es/no-object-setprototypeof -- safe
|
|
28007
28007
|
var setPrototypeOf = Object.setPrototypeOf;
|
|
28008
28008
|
var ObjectPrototype = Object.prototype;
|
|
28009
28009
|
var PROTO = '__proto__';
|