@mozaic-ds/vue 0.24.0 → 0.25.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 +56 -57
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +56 -57
- package/dist/mozaic-vue.umd.min.js +2 -3
- package/package.json +2 -2
- 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
- package/dist/mozaic-vue.common.js.map +0 -1
- package/dist/mozaic-vue.umd.js.map +0 -1
- package/dist/mozaic-vue.umd.min.js.map +0 -1
package/dist/mozaic-vue.umd.js
CHANGED
|
@@ -22438,7 +22438,7 @@ var STRICT_METHOD = arrayMethodIsStrict('forEach');
|
|
|
22438
22438
|
// https://tc39.es/ecma262/#sec-array.prototype.foreach
|
|
22439
22439
|
module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) {
|
|
22440
22440
|
return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
|
|
22441
|
-
// eslint-disable-next-line es
|
|
22441
|
+
// eslint-disable-next-line es/no-array-prototype-foreach -- safe
|
|
22442
22442
|
} : [].forEach;
|
|
22443
22443
|
|
|
22444
22444
|
|
|
@@ -22622,7 +22622,7 @@ module.exports = {
|
|
|
22622
22622
|
|
|
22623
22623
|
"use strict";
|
|
22624
22624
|
|
|
22625
|
-
/* eslint-disable es
|
|
22625
|
+
/* eslint-disable es/no-array-prototype-lastindexof -- safe */
|
|
22626
22626
|
var apply = __webpack_require__(2104);
|
|
22627
22627
|
var toIndexedObject = __webpack_require__(5656);
|
|
22628
22628
|
var toIntegerOrInfinity = __webpack_require__(9303);
|
|
@@ -22754,7 +22754,7 @@ var DESCRIPTORS = __webpack_require__(9781);
|
|
|
22754
22754
|
var isArray = __webpack_require__(3157);
|
|
22755
22755
|
|
|
22756
22756
|
var $TypeError = TypeError;
|
|
22757
|
-
// eslint-disable-next-line es
|
|
22757
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
22758
22758
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
22759
22759
|
|
|
22760
22760
|
// Safari < 13 does not throw an error in this case
|
|
@@ -22762,7 +22762,7 @@ var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
|
|
|
22762
22762
|
// makes no sense without proper strict mode support
|
|
22763
22763
|
if (this !== undefined) return true;
|
|
22764
22764
|
try {
|
|
22765
|
-
// eslint-disable-next-line es
|
|
22765
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
22766
22766
|
Object.defineProperty([], 'length', { writable: false }).length = 1;
|
|
22767
22767
|
} catch (error) {
|
|
22768
22768
|
return error instanceof TypeError;
|
|
@@ -22946,7 +22946,7 @@ try {
|
|
|
22946
22946
|
iteratorWithReturn[ITERATOR] = function () {
|
|
22947
22947
|
return this;
|
|
22948
22948
|
};
|
|
22949
|
-
// eslint-disable-next-line es
|
|
22949
|
+
// eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
|
|
22950
22950
|
Array.from(iteratorWithReturn, function () { throw 2; });
|
|
22951
22951
|
} catch (error) { /* empty */ }
|
|
22952
22952
|
|
|
@@ -23074,7 +23074,7 @@ var fails = __webpack_require__(7293);
|
|
|
23074
23074
|
module.exports = !fails(function () {
|
|
23075
23075
|
function F() { /* empty */ }
|
|
23076
23076
|
F.prototype.constructor = null;
|
|
23077
|
-
// eslint-disable-next-line es
|
|
23077
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- required for testing
|
|
23078
23078
|
return Object.getPrototypeOf(new F()) !== F.prototype;
|
|
23079
23079
|
});
|
|
23080
23080
|
|
|
@@ -23219,7 +23219,7 @@ module.exports = function (O, key, value, options) {
|
|
|
23219
23219
|
|
|
23220
23220
|
var global = __webpack_require__(7854);
|
|
23221
23221
|
|
|
23222
|
-
// eslint-disable-next-line es
|
|
23222
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
23223
23223
|
var defineProperty = Object.defineProperty;
|
|
23224
23224
|
|
|
23225
23225
|
module.exports = function (key, value) {
|
|
@@ -23256,7 +23256,7 @@ var fails = __webpack_require__(7293);
|
|
|
23256
23256
|
|
|
23257
23257
|
// Detect IE8's incomplete defineProperty implementation
|
|
23258
23258
|
module.exports = !fails(function () {
|
|
23259
|
-
// eslint-disable-next-line es
|
|
23259
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
23260
23260
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
|
23261
23261
|
});
|
|
23262
23262
|
|
|
@@ -23555,7 +23555,7 @@ var createPropertyDescriptor = __webpack_require__(9114);
|
|
|
23555
23555
|
module.exports = !fails(function () {
|
|
23556
23556
|
var error = Error('a');
|
|
23557
23557
|
if (!('stack' in error)) return true;
|
|
23558
|
-
// eslint-disable-next-line es
|
|
23558
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
23559
23559
|
Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
|
|
23560
23560
|
return error.stack !== 7;
|
|
23561
23561
|
});
|
|
@@ -23729,7 +23729,7 @@ var FunctionPrototype = Function.prototype;
|
|
|
23729
23729
|
var apply = FunctionPrototype.apply;
|
|
23730
23730
|
var call = FunctionPrototype.call;
|
|
23731
23731
|
|
|
23732
|
-
// eslint-disable-next-line es
|
|
23732
|
+
// eslint-disable-next-line es/no-reflect -- safe
|
|
23733
23733
|
module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
|
|
23734
23734
|
return call.apply(apply, arguments);
|
|
23735
23735
|
});
|
|
@@ -23763,7 +23763,7 @@ module.exports = function (fn, that) {
|
|
|
23763
23763
|
var fails = __webpack_require__(7293);
|
|
23764
23764
|
|
|
23765
23765
|
module.exports = !fails(function () {
|
|
23766
|
-
// eslint-disable-next-line es
|
|
23766
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
23767
23767
|
var test = (function () { /* empty */ }).bind();
|
|
23768
23768
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
23769
23769
|
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
@@ -23793,7 +23793,7 @@ var DESCRIPTORS = __webpack_require__(9781);
|
|
|
23793
23793
|
var hasOwn = __webpack_require__(2597);
|
|
23794
23794
|
|
|
23795
23795
|
var FunctionPrototype = Function.prototype;
|
|
23796
|
-
// eslint-disable-next-line es
|
|
23796
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
23797
23797
|
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
23798
23798
|
|
|
23799
23799
|
var EXISTS = hasOwn(FunctionPrototype, 'name');
|
|
@@ -23964,7 +23964,7 @@ var check = function (it) {
|
|
|
23964
23964
|
|
|
23965
23965
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
23966
23966
|
module.exports =
|
|
23967
|
-
// eslint-disable-next-line es
|
|
23967
|
+
// eslint-disable-next-line es/no-global-this -- safe
|
|
23968
23968
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
23969
23969
|
check(typeof window == 'object' && window) ||
|
|
23970
23970
|
// eslint-disable-next-line no-restricted-globals -- safe
|
|
@@ -23986,7 +23986,7 @@ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
|
|
|
23986
23986
|
|
|
23987
23987
|
// `HasOwnProperty` abstract operation
|
|
23988
23988
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
23989
|
-
// eslint-disable-next-line es
|
|
23989
|
+
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
23990
23990
|
module.exports = Object.hasOwn || function hasOwn(it, key) {
|
|
23991
23991
|
return hasOwnProperty(toObject(it), key);
|
|
23992
23992
|
};
|
|
@@ -24036,7 +24036,7 @@ var createElement = __webpack_require__(317);
|
|
|
24036
24036
|
|
|
24037
24037
|
// Thanks to IE8 for its funny defineProperty
|
|
24038
24038
|
module.exports = !DESCRIPTORS && !fails(function () {
|
|
24039
|
-
// eslint-disable-next-line es
|
|
24039
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
24040
24040
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
24041
24041
|
get: function () { return 7; }
|
|
24042
24042
|
}).a != 7;
|
|
@@ -24230,7 +24230,7 @@ var classof = __webpack_require__(4326);
|
|
|
24230
24230
|
|
|
24231
24231
|
// `IsArray` abstract operation
|
|
24232
24232
|
// https://tc39.es/ecma262/#sec-isarray
|
|
24233
|
-
// eslint-disable-next-line es
|
|
24233
|
+
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
24234
24234
|
module.exports = Array.isArray || function isArray(argument) {
|
|
24235
24235
|
return classof(argument) == 'Array';
|
|
24236
24236
|
};
|
|
@@ -24677,7 +24677,7 @@ var BUGGY_SAFARI_ITERATORS = false;
|
|
|
24677
24677
|
// https://tc39.es/ecma262/#sec-%iteratorprototype%-object
|
|
24678
24678
|
var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
|
|
24679
24679
|
|
|
24680
|
-
/* eslint-disable es
|
|
24680
|
+
/* eslint-disable es/no-array-prototype-keys -- safe */
|
|
24681
24681
|
if ([].keys) {
|
|
24682
24682
|
arrayIterator = [].keys();
|
|
24683
24683
|
// Safari 8 has buggy iterators w/o `next`
|
|
@@ -24748,7 +24748,7 @@ var InternalStateModule = __webpack_require__(9909);
|
|
|
24748
24748
|
|
|
24749
24749
|
var enforceInternalState = InternalStateModule.enforce;
|
|
24750
24750
|
var getInternalState = InternalStateModule.get;
|
|
24751
|
-
// eslint-disable-next-line es
|
|
24751
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
24752
24752
|
var defineProperty = Object.defineProperty;
|
|
24753
24753
|
|
|
24754
24754
|
var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
|
|
@@ -24799,7 +24799,7 @@ var floor = Math.floor;
|
|
|
24799
24799
|
|
|
24800
24800
|
// `Math.trunc` method
|
|
24801
24801
|
// https://tc39.es/ecma262/#sec-math.trunc
|
|
24802
|
-
// eslint-disable-next-line es
|
|
24802
|
+
// eslint-disable-next-line es/no-math-trunc -- safe
|
|
24803
24803
|
module.exports = Math.trunc || function trunc(x) {
|
|
24804
24804
|
var n = +x;
|
|
24805
24805
|
return (n > 0 ? floor : ceil)(n);
|
|
@@ -25001,9 +25001,9 @@ var propertyIsEnumerableModule = __webpack_require__(5296);
|
|
|
25001
25001
|
var toObject = __webpack_require__(7908);
|
|
25002
25002
|
var IndexedObject = __webpack_require__(8361);
|
|
25003
25003
|
|
|
25004
|
-
// eslint-disable-next-line es
|
|
25004
|
+
// eslint-disable-next-line es/no-object-assign -- safe
|
|
25005
25005
|
var $assign = Object.assign;
|
|
25006
|
-
// eslint-disable-next-line es
|
|
25006
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
25007
25007
|
var defineProperty = Object.defineProperty;
|
|
25008
25008
|
var concat = uncurryThis([].concat);
|
|
25009
25009
|
|
|
@@ -25023,7 +25023,7 @@ module.exports = !$assign || fails(function () {
|
|
|
25023
25023
|
// should work with symbols and should have deterministic property order (V8 bug)
|
|
25024
25024
|
var A = {};
|
|
25025
25025
|
var B = {};
|
|
25026
|
-
// eslint-disable-next-line es
|
|
25026
|
+
// eslint-disable-next-line es/no-symbol -- safe
|
|
25027
25027
|
var symbol = Symbol();
|
|
25028
25028
|
var alphabet = 'abcdefghijklmnopqrst';
|
|
25029
25029
|
A[symbol] = 7;
|
|
@@ -25125,7 +25125,7 @@ hiddenKeys[IE_PROTO] = true;
|
|
|
25125
25125
|
|
|
25126
25126
|
// `Object.create` method
|
|
25127
25127
|
// https://tc39.es/ecma262/#sec-object.create
|
|
25128
|
-
// eslint-disable-next-line es
|
|
25128
|
+
// eslint-disable-next-line es/no-object-create -- safe
|
|
25129
25129
|
module.exports = Object.create || function create(O, Properties) {
|
|
25130
25130
|
var result;
|
|
25131
25131
|
if (O !== null) {
|
|
@@ -25153,7 +25153,7 @@ var objectKeys = __webpack_require__(1956);
|
|
|
25153
25153
|
|
|
25154
25154
|
// `Object.defineProperties` method
|
|
25155
25155
|
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
25156
|
-
// eslint-disable-next-line es
|
|
25156
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
25157
25157
|
exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
25158
25158
|
anObject(O);
|
|
25159
25159
|
var props = toIndexedObject(Properties);
|
|
@@ -25178,9 +25178,9 @@ var anObject = __webpack_require__(9670);
|
|
|
25178
25178
|
var toPropertyKey = __webpack_require__(4948);
|
|
25179
25179
|
|
|
25180
25180
|
var $TypeError = TypeError;
|
|
25181
|
-
// eslint-disable-next-line es
|
|
25181
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
25182
25182
|
var $defineProperty = Object.defineProperty;
|
|
25183
|
-
// eslint-disable-next-line es
|
|
25183
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
25184
25184
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
25185
25185
|
var ENUMERABLE = 'enumerable';
|
|
25186
25186
|
var CONFIGURABLE = 'configurable';
|
|
@@ -25230,7 +25230,7 @@ var toPropertyKey = __webpack_require__(4948);
|
|
|
25230
25230
|
var hasOwn = __webpack_require__(2597);
|
|
25231
25231
|
var IE8_DOM_DEFINE = __webpack_require__(4664);
|
|
25232
25232
|
|
|
25233
|
-
// eslint-disable-next-line es
|
|
25233
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
25234
25234
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
25235
25235
|
|
|
25236
25236
|
// `Object.getOwnPropertyDescriptor` method
|
|
@@ -25250,7 +25250,7 @@ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDes
|
|
|
25250
25250
|
/***/ 1156:
|
|
25251
25251
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
25252
25252
|
|
|
25253
|
-
/* eslint-disable es
|
|
25253
|
+
/* eslint-disable es/no-object-getownpropertynames -- safe */
|
|
25254
25254
|
var classof = __webpack_require__(4326);
|
|
25255
25255
|
var toIndexedObject = __webpack_require__(5656);
|
|
25256
25256
|
var $getOwnPropertyNames = (__webpack_require__(8006).f);
|
|
@@ -25287,7 +25287,7 @@ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
|
|
25287
25287
|
|
|
25288
25288
|
// `Object.getOwnPropertyNames` method
|
|
25289
25289
|
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
25290
|
-
// eslint-disable-next-line es
|
|
25290
|
+
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
25291
25291
|
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
25292
25292
|
return internalObjectKeys(O, hiddenKeys);
|
|
25293
25293
|
};
|
|
@@ -25298,7 +25298,7 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
|
25298
25298
|
/***/ 5181:
|
|
25299
25299
|
/***/ (function(__unused_webpack_module, exports) {
|
|
25300
25300
|
|
|
25301
|
-
// eslint-disable-next-line es
|
|
25301
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
25302
25302
|
exports.f = Object.getOwnPropertySymbols;
|
|
25303
25303
|
|
|
25304
25304
|
|
|
@@ -25319,7 +25319,7 @@ var ObjectPrototype = $Object.prototype;
|
|
|
25319
25319
|
|
|
25320
25320
|
// `Object.getPrototypeOf` method
|
|
25321
25321
|
// https://tc39.es/ecma262/#sec-object.getprototypeof
|
|
25322
|
-
// eslint-disable-next-line es
|
|
25322
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
25323
25323
|
module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
|
|
25324
25324
|
var object = toObject(O);
|
|
25325
25325
|
if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
|
|
@@ -25377,7 +25377,7 @@ var enumBugKeys = __webpack_require__(748);
|
|
|
25377
25377
|
|
|
25378
25378
|
// `Object.keys` method
|
|
25379
25379
|
// https://tc39.es/ecma262/#sec-object.keys
|
|
25380
|
-
// eslint-disable-next-line es
|
|
25380
|
+
// eslint-disable-next-line es/no-object-keys -- safe
|
|
25381
25381
|
module.exports = Object.keys || function keys(O) {
|
|
25382
25382
|
return internalObjectKeys(O, enumBugKeys);
|
|
25383
25383
|
};
|
|
@@ -25391,7 +25391,7 @@ module.exports = Object.keys || function keys(O) {
|
|
|
25391
25391
|
"use strict";
|
|
25392
25392
|
|
|
25393
25393
|
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
25394
|
-
// eslint-disable-next-line es
|
|
25394
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
25395
25395
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
25396
25396
|
|
|
25397
25397
|
// Nashorn ~ JDK8 bug
|
|
@@ -25418,13 +25418,13 @@ var aPossiblePrototype = __webpack_require__(6077);
|
|
|
25418
25418
|
// `Object.setPrototypeOf` method
|
|
25419
25419
|
// https://tc39.es/ecma262/#sec-object.setprototypeof
|
|
25420
25420
|
// Works with __proto__ only. Old v8 can't work with null proto objects.
|
|
25421
|
-
// eslint-disable-next-line es
|
|
25421
|
+
// eslint-disable-next-line es/no-object-setprototypeof -- safe
|
|
25422
25422
|
module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
25423
25423
|
var CORRECT_SETTER = false;
|
|
25424
25424
|
var test = {};
|
|
25425
25425
|
var setter;
|
|
25426
25426
|
try {
|
|
25427
|
-
// eslint-disable-next-line es
|
|
25427
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
25428
25428
|
setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
|
|
25429
25429
|
setter(test, []);
|
|
25430
25430
|
CORRECT_SETTER = test instanceof Array;
|
|
@@ -26081,10 +26081,10 @@ var store = __webpack_require__(5465);
|
|
|
26081
26081
|
(module.exports = function (key, value) {
|
|
26082
26082
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
26083
26083
|
})('versions', []).push({
|
|
26084
|
-
version: '3.25.
|
|
26084
|
+
version: '3.25.3',
|
|
26085
26085
|
mode: IS_PURE ? 'pure' : 'global',
|
|
26086
26086
|
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
26087
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.25.
|
|
26087
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.25.3/LICENSE',
|
|
26088
26088
|
source: 'https://github.com/zloirock/core-js'
|
|
26089
26089
|
});
|
|
26090
26090
|
|
|
@@ -26235,11 +26235,11 @@ module.exports = {
|
|
|
26235
26235
|
/***/ 6293:
|
|
26236
26236
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
26237
26237
|
|
|
26238
|
-
/* eslint-disable es
|
|
26238
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
26239
26239
|
var V8_VERSION = __webpack_require__(7392);
|
|
26240
26240
|
var fails = __webpack_require__(7293);
|
|
26241
26241
|
|
|
26242
|
-
// eslint-disable-next-line es
|
|
26242
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
26243
26243
|
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
26244
26244
|
var symbol = Symbol();
|
|
26245
26245
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
@@ -26284,7 +26284,7 @@ module.exports = function () {
|
|
|
26284
26284
|
|
|
26285
26285
|
var NATIVE_SYMBOL = __webpack_require__(6293);
|
|
26286
26286
|
|
|
26287
|
-
/* eslint-disable es
|
|
26287
|
+
/* eslint-disable es/no-symbol -- safe */
|
|
26288
26288
|
module.exports = NATIVE_SYMBOL && !!Symbol['for'] && !!Symbol.keyFor;
|
|
26289
26289
|
|
|
26290
26290
|
|
|
@@ -26316,11 +26316,11 @@ var String = global.String;
|
|
|
26316
26316
|
var counter = 0;
|
|
26317
26317
|
var queue = {};
|
|
26318
26318
|
var ONREADYSTATECHANGE = 'onreadystatechange';
|
|
26319
|
-
var location, defer, channel, port;
|
|
26319
|
+
var $location, defer, channel, port;
|
|
26320
26320
|
|
|
26321
26321
|
try {
|
|
26322
26322
|
// Deno throws a ReferenceError on `location` access without `--location` flag
|
|
26323
|
-
location = global.location;
|
|
26323
|
+
$location = global.location;
|
|
26324
26324
|
} catch (error) { /* empty */ }
|
|
26325
26325
|
|
|
26326
26326
|
var run = function (id) {
|
|
@@ -26343,7 +26343,7 @@ var listener = function (event) {
|
|
|
26343
26343
|
|
|
26344
26344
|
var post = function (id) {
|
|
26345
26345
|
// old engines have not location.origin
|
|
26346
|
-
global.postMessage(String(id), location.protocol + '//' + location.host);
|
|
26346
|
+
global.postMessage(String(id), $location.protocol + '//' + $location.host);
|
|
26347
26347
|
};
|
|
26348
26348
|
|
|
26349
26349
|
// Node.js 0.9+ & IE10+ has setImmediate, otherwise:
|
|
@@ -26384,7 +26384,7 @@ if (!set || !clear) {
|
|
|
26384
26384
|
global.addEventListener &&
|
|
26385
26385
|
isCallable(global.postMessage) &&
|
|
26386
26386
|
!global.importScripts &&
|
|
26387
|
-
location && location.protocol !== 'file:' &&
|
|
26387
|
+
$location && $location.protocol !== 'file:' &&
|
|
26388
26388
|
!fails(post)
|
|
26389
26389
|
) {
|
|
26390
26390
|
defer = post;
|
|
@@ -26619,7 +26619,7 @@ module.exports = function (key) {
|
|
|
26619
26619
|
/***/ 3307:
|
|
26620
26620
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
26621
26621
|
|
|
26622
|
-
/* eslint-disable es
|
|
26622
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
26623
26623
|
var NATIVE_SYMBOL = __webpack_require__(6293);
|
|
26624
26624
|
|
|
26625
26625
|
module.exports = NATIVE_SYMBOL
|
|
@@ -26638,7 +26638,7 @@ var fails = __webpack_require__(7293);
|
|
|
26638
26638
|
// V8 ~ Chrome 36-
|
|
26639
26639
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
26640
26640
|
module.exports = DESCRIPTORS && fails(function () {
|
|
26641
|
-
// eslint-disable-next-line es
|
|
26641
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
26642
26642
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
26643
26643
|
value: 42,
|
|
26644
26644
|
writable: false
|
|
@@ -26974,7 +26974,7 @@ var from = __webpack_require__(8457);
|
|
|
26974
26974
|
var checkCorrectnessOfIteration = __webpack_require__(7072);
|
|
26975
26975
|
|
|
26976
26976
|
var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
|
|
26977
|
-
// eslint-disable-next-line es
|
|
26977
|
+
// eslint-disable-next-line es/no-array-from -- required for testing
|
|
26978
26978
|
Array.from(iterable);
|
|
26979
26979
|
});
|
|
26980
26980
|
|
|
@@ -27021,7 +27021,7 @@ addToUnscopables('includes');
|
|
|
27021
27021
|
|
|
27022
27022
|
"use strict";
|
|
27023
27023
|
|
|
27024
|
-
/* eslint-disable es
|
|
27024
|
+
/* eslint-disable es/no-array-prototype-indexof -- required for testing */
|
|
27025
27025
|
var $ = __webpack_require__(2109);
|
|
27026
27026
|
var uncurryThis = __webpack_require__(1702);
|
|
27027
27027
|
var $indexOf = (__webpack_require__(1318).indexOf);
|
|
@@ -27152,7 +27152,7 @@ var lastIndexOf = __webpack_require__(6583);
|
|
|
27152
27152
|
|
|
27153
27153
|
// `Array.prototype.lastIndexOf` method
|
|
27154
27154
|
// https://tc39.es/ecma262/#sec-array.prototype.lastindexof
|
|
27155
|
-
// eslint-disable-next-line es
|
|
27155
|
+
// eslint-disable-next-line es/no-array-prototype-lastindexof -- required for testing
|
|
27156
27156
|
$({ target: 'Array', proto: true, forced: lastIndexOf !== [].lastIndexOf }, {
|
|
27157
27157
|
lastIndexOf: lastIndexOf
|
|
27158
27158
|
});
|
|
@@ -27203,7 +27203,7 @@ var INCORRECT_TO_LENGTH = fails(function () {
|
|
|
27203
27203
|
// https://bugs.chromium.org/p/v8/issues/detail?id=12681
|
|
27204
27204
|
var SILENT_ON_NON_WRITABLE_LENGTH = !function () {
|
|
27205
27205
|
try {
|
|
27206
|
-
// eslint-disable-next-line es
|
|
27206
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
27207
27207
|
Object.defineProperty([], 'length', { writable: false }).push();
|
|
27208
27208
|
} catch (error) {
|
|
27209
27209
|
return error instanceof TypeError;
|
|
@@ -27835,7 +27835,7 @@ var assign = __webpack_require__(1574);
|
|
|
27835
27835
|
|
|
27836
27836
|
// `Object.assign` method
|
|
27837
27837
|
// https://tc39.es/ecma262/#sec-object.assign
|
|
27838
|
-
// eslint-disable-next-line es
|
|
27838
|
+
// eslint-disable-next-line es/no-object-assign -- required for testing
|
|
27839
27839
|
$({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
|
|
27840
27840
|
assign: assign
|
|
27841
27841
|
});
|
|
@@ -27852,7 +27852,7 @@ var defineProperties = (__webpack_require__(6048).f);
|
|
|
27852
27852
|
|
|
27853
27853
|
// `Object.defineProperties` method
|
|
27854
27854
|
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
27855
|
-
// eslint-disable-next-line es
|
|
27855
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
27856
27856
|
$({ target: 'Object', stat: true, forced: Object.defineProperties !== defineProperties, sham: !DESCRIPTORS }, {
|
|
27857
27857
|
defineProperties: defineProperties
|
|
27858
27858
|
});
|
|
@@ -27869,7 +27869,7 @@ var defineProperty = (__webpack_require__(3070).f);
|
|
|
27869
27869
|
|
|
27870
27870
|
// `Object.defineProperty` method
|
|
27871
27871
|
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
27872
|
-
// eslint-disable-next-line es
|
|
27872
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
27873
27873
|
$({ target: 'Object', stat: true, forced: Object.defineProperty !== defineProperty, sham: !DESCRIPTORS }, {
|
|
27874
27874
|
defineProperty: defineProperty
|
|
27875
27875
|
});
|
|
@@ -28011,9 +28011,9 @@ var isObject = __webpack_require__(111);
|
|
|
28011
28011
|
var toObject = __webpack_require__(7908);
|
|
28012
28012
|
var requireObjectCoercible = __webpack_require__(4488);
|
|
28013
28013
|
|
|
28014
|
-
// eslint-disable-next-line es
|
|
28014
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
28015
28015
|
var getPrototypeOf = Object.getPrototypeOf;
|
|
28016
|
-
// eslint-disable-next-line es
|
|
28016
|
+
// eslint-disable-next-line es/no-object-setprototypeof -- safe
|
|
28017
28017
|
var setPrototypeOf = Object.setPrototypeOf;
|
|
28018
28018
|
var ObjectPrototype = Object.prototype;
|
|
28019
28019
|
var PROTO = '__proto__';
|
|
@@ -45409,5 +45409,4 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
45409
45409
|
/******/ return __webpack_exports__;
|
|
45410
45410
|
/******/ })()
|
|
45411
45411
|
;
|
|
45412
|
-
});
|
|
45413
|
-
//# sourceMappingURL=mozaic-vue.umd.js.map
|
|
45412
|
+
});
|