@hyjiacan/vue-slideout 3.0.0 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/API.md +19 -16
- package/API.zh-CN.md +14 -11
- package/README.md +8 -8
- package/dist/slideout.common.js +1127 -1720
- package/dist/slideout.css +1 -1
- package/dist/slideout.umd.js +1127 -1720
- package/dist/slideout.umd.min.js +1 -1
- package/package.json +9 -7
- package/src/assets/langs.json +11 -1
- package/src/components/computed.js +25 -69
- package/src/components/index.js +8 -8
- package/src/components/methods.js +33 -26
- package/src/components/renderer.js +13 -15
- package/src/styles/autosize.less +0 -17
- package/src/styles/header.less +5 -10
- package/src/styles/index.less +8 -23
- package/src/views/Main.vue +3 -0
- package/src/views/demos/CustomizeDemo.vue +1 -1
- package/src/views/demos/FillparentDemo.vue +2 -2
- package/src/views/demos/NestedDemo.vue +85 -0
- package/types/slideout.d.ts +96 -0
package/dist/slideout.common.js
CHANGED
|
@@ -100,77 +100,66 @@ test[TO_STRING_TAG] = 'z';
|
|
|
100
100
|
module.exports = String(test) === '[object z]';
|
|
101
101
|
|
|
102
102
|
|
|
103
|
+
/***/ }),
|
|
104
|
+
|
|
105
|
+
/***/ "04f8":
|
|
106
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
107
|
+
|
|
108
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
109
|
+
var V8_VERSION = __webpack_require__("2d00");
|
|
110
|
+
var fails = __webpack_require__("d039");
|
|
111
|
+
|
|
112
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
113
|
+
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
114
|
+
var symbol = Symbol();
|
|
115
|
+
// Chrome 38 Symbol has incorrect toString conversion
|
|
116
|
+
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
117
|
+
return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
|
|
118
|
+
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
|
|
119
|
+
!Symbol.sham && V8_VERSION && V8_VERSION < 41;
|
|
120
|
+
});
|
|
121
|
+
|
|
122
|
+
|
|
103
123
|
/***/ }),
|
|
104
124
|
|
|
105
125
|
/***/ "06cf":
|
|
106
126
|
/***/ (function(module, exports, __webpack_require__) {
|
|
107
127
|
|
|
108
128
|
var DESCRIPTORS = __webpack_require__("83ab");
|
|
129
|
+
var call = __webpack_require__("c65b");
|
|
109
130
|
var propertyIsEnumerableModule = __webpack_require__("d1e7");
|
|
110
131
|
var createPropertyDescriptor = __webpack_require__("5c6c");
|
|
111
132
|
var toIndexedObject = __webpack_require__("fc6a");
|
|
112
|
-
var
|
|
113
|
-
var
|
|
133
|
+
var toPropertyKey = __webpack_require__("a04b");
|
|
134
|
+
var hasOwn = __webpack_require__("1a2d");
|
|
114
135
|
var IE8_DOM_DEFINE = __webpack_require__("0cfb");
|
|
115
136
|
|
|
116
|
-
|
|
137
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
138
|
+
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
117
139
|
|
|
118
140
|
// `Object.getOwnPropertyDescriptor` method
|
|
119
141
|
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
|
|
120
|
-
exports.f = DESCRIPTORS ?
|
|
142
|
+
exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
|
|
121
143
|
O = toIndexedObject(O);
|
|
122
|
-
P =
|
|
144
|
+
P = toPropertyKey(P);
|
|
123
145
|
if (IE8_DOM_DEFINE) try {
|
|
124
|
-
return
|
|
146
|
+
return $getOwnPropertyDescriptor(O, P);
|
|
125
147
|
} catch (error) { /* empty */ }
|
|
126
|
-
if (
|
|
148
|
+
if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
|
|
127
149
|
};
|
|
128
150
|
|
|
129
151
|
|
|
130
152
|
/***/ }),
|
|
131
153
|
|
|
132
|
-
/***/ "
|
|
154
|
+
/***/ "07fa":
|
|
133
155
|
/***/ (function(module, exports, __webpack_require__) {
|
|
134
156
|
|
|
135
|
-
var
|
|
157
|
+
var toLength = __webpack_require__("50c4");
|
|
136
158
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
// https://tc39.es/ecma262/#sec-getsubstitution
|
|
143
|
-
module.exports = function (matched, str, position, captures, namedCaptures, replacement) {
|
|
144
|
-
var tailPos = position + matched.length;
|
|
145
|
-
var m = captures.length;
|
|
146
|
-
var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
|
|
147
|
-
if (namedCaptures !== undefined) {
|
|
148
|
-
namedCaptures = toObject(namedCaptures);
|
|
149
|
-
symbols = SUBSTITUTION_SYMBOLS;
|
|
150
|
-
}
|
|
151
|
-
return replace.call(replacement, symbols, function (match, ch) {
|
|
152
|
-
var capture;
|
|
153
|
-
switch (ch.charAt(0)) {
|
|
154
|
-
case '$': return '$';
|
|
155
|
-
case '&': return matched;
|
|
156
|
-
case '`': return str.slice(0, position);
|
|
157
|
-
case "'": return str.slice(tailPos);
|
|
158
|
-
case '<':
|
|
159
|
-
capture = namedCaptures[ch.slice(1, -1)];
|
|
160
|
-
break;
|
|
161
|
-
default: // \d\d?
|
|
162
|
-
var n = +ch;
|
|
163
|
-
if (n === 0) return match;
|
|
164
|
-
if (n > m) {
|
|
165
|
-
var f = floor(n / 10);
|
|
166
|
-
if (f === 0) return match;
|
|
167
|
-
if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);
|
|
168
|
-
return match;
|
|
169
|
-
}
|
|
170
|
-
capture = captures[n - 1];
|
|
171
|
-
}
|
|
172
|
-
return capture === undefined ? '' : capture;
|
|
173
|
-
});
|
|
159
|
+
// `LengthOfArrayLike` abstract operation
|
|
160
|
+
// https://tc39.es/ecma262/#sec-lengthofarraylike
|
|
161
|
+
module.exports = function (obj) {
|
|
162
|
+
return toLength(obj.length);
|
|
174
163
|
};
|
|
175
164
|
|
|
176
165
|
|
|
@@ -183,8 +172,9 @@ var DESCRIPTORS = __webpack_require__("83ab");
|
|
|
183
172
|
var fails = __webpack_require__("d039");
|
|
184
173
|
var createElement = __webpack_require__("cc12");
|
|
185
174
|
|
|
186
|
-
//
|
|
175
|
+
// Thanks to IE8 for its funny defineProperty
|
|
187
176
|
module.exports = !DESCRIPTORS && !fails(function () {
|
|
177
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
188
178
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
189
179
|
get: function () { return 7; }
|
|
190
180
|
}).a != 7;
|
|
@@ -193,79 +183,195 @@ module.exports = !DESCRIPTORS && !fails(function () {
|
|
|
193
183
|
|
|
194
184
|
/***/ }),
|
|
195
185
|
|
|
196
|
-
/***/ "
|
|
186
|
+
/***/ "0d26":
|
|
197
187
|
/***/ (function(module, exports, __webpack_require__) {
|
|
198
188
|
|
|
199
|
-
var
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
189
|
+
var uncurryThis = __webpack_require__("e330");
|
|
190
|
+
|
|
191
|
+
var $Error = Error;
|
|
192
|
+
var replace = uncurryThis(''.replace);
|
|
193
|
+
|
|
194
|
+
var TEST = (function (arg) { return String($Error(arg).stack); })('zxcasd');
|
|
195
|
+
var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
|
|
196
|
+
var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);
|
|
197
|
+
|
|
198
|
+
module.exports = function (stack, dropEntries) {
|
|
199
|
+
if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string' && !$Error.prepareStackTrace) {
|
|
200
|
+
while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, '');
|
|
201
|
+
} return stack;
|
|
202
|
+
};
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
/***/ }),
|
|
206
|
+
|
|
207
|
+
/***/ "0d51":
|
|
208
|
+
/***/ (function(module, exports) {
|
|
209
|
+
|
|
210
|
+
var $String = String;
|
|
213
211
|
|
|
214
|
-
|
|
215
|
-
|
|
212
|
+
module.exports = function (argument) {
|
|
213
|
+
try {
|
|
214
|
+
return $String(argument);
|
|
215
|
+
} catch (error) {
|
|
216
|
+
return 'Object';
|
|
216
217
|
}
|
|
218
|
+
};
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
/***/ }),
|
|
222
|
+
|
|
223
|
+
/***/ "13d2":
|
|
224
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
225
|
+
|
|
226
|
+
var fails = __webpack_require__("d039");
|
|
227
|
+
var isCallable = __webpack_require__("1626");
|
|
228
|
+
var hasOwn = __webpack_require__("1a2d");
|
|
229
|
+
var DESCRIPTORS = __webpack_require__("83ab");
|
|
230
|
+
var CONFIGURABLE_FUNCTION_NAME = __webpack_require__("5e77").CONFIGURABLE;
|
|
231
|
+
var inspectSource = __webpack_require__("8925");
|
|
232
|
+
var InternalStateModule = __webpack_require__("69f3");
|
|
217
233
|
|
|
218
|
-
|
|
234
|
+
var enforceInternalState = InternalStateModule.enforce;
|
|
235
|
+
var getInternalState = InternalStateModule.get;
|
|
236
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
237
|
+
var defineProperty = Object.defineProperty;
|
|
238
|
+
|
|
239
|
+
var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
|
|
240
|
+
return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
241
|
+
});
|
|
242
|
+
|
|
243
|
+
var TEMPLATE = String(String).split('String');
|
|
244
|
+
|
|
245
|
+
var makeBuiltIn = module.exports = function (value, name, options) {
|
|
246
|
+
if (String(name).slice(0, 7) === 'Symbol(') {
|
|
247
|
+
name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
|
|
248
|
+
}
|
|
249
|
+
if (options && options.getter) name = 'get ' + name;
|
|
250
|
+
if (options && options.setter) name = 'set ' + name;
|
|
251
|
+
if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
|
252
|
+
if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
|
|
253
|
+
else value.name = name;
|
|
254
|
+
}
|
|
255
|
+
if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
|
|
256
|
+
defineProperty(value, 'length', { value: options.arity });
|
|
257
|
+
}
|
|
258
|
+
try {
|
|
259
|
+
if (options && hasOwn(options, 'constructor') && options.constructor) {
|
|
260
|
+
if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
|
|
261
|
+
// in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
|
|
262
|
+
} else if (value.prototype) value.prototype = undefined;
|
|
263
|
+
} catch (error) { /* empty */ }
|
|
264
|
+
var state = enforceInternalState(value);
|
|
265
|
+
if (!hasOwn(state, 'source')) {
|
|
266
|
+
state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
|
|
267
|
+
} return value;
|
|
219
268
|
};
|
|
220
269
|
|
|
270
|
+
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
|
271
|
+
// eslint-disable-next-line no-extend-native -- required
|
|
272
|
+
Function.prototype.toString = makeBuiltIn(function toString() {
|
|
273
|
+
return isCallable(this) && getInternalState(this).source || inspectSource(this);
|
|
274
|
+
}, 'toString');
|
|
221
275
|
|
|
222
276
|
|
|
223
277
|
/***/ }),
|
|
224
278
|
|
|
225
|
-
/***/ "
|
|
279
|
+
/***/ "14d9":
|
|
226
280
|
/***/ (function(module, exports, __webpack_require__) {
|
|
227
281
|
|
|
228
|
-
|
|
282
|
+
"use strict";
|
|
229
283
|
|
|
230
|
-
|
|
284
|
+
var $ = __webpack_require__("23e7");
|
|
285
|
+
var toObject = __webpack_require__("7b0b");
|
|
286
|
+
var lengthOfArrayLike = __webpack_require__("07fa");
|
|
287
|
+
var setArrayLength = __webpack_require__("3a34");
|
|
288
|
+
var doesNotExceedSafeInteger = __webpack_require__("3511");
|
|
289
|
+
var fails = __webpack_require__("d039");
|
|
290
|
+
|
|
291
|
+
var INCORRECT_TO_LENGTH = fails(function () {
|
|
292
|
+
return [].push.call({ length: 0x100000000 }, 1) !== 4294967297;
|
|
293
|
+
});
|
|
294
|
+
|
|
295
|
+
// V8 and Safari <= 15.4, FF < 23 throws InternalError
|
|
296
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=12681
|
|
297
|
+
var SILENT_ON_NON_WRITABLE_LENGTH = !function () {
|
|
298
|
+
try {
|
|
299
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
300
|
+
Object.defineProperty([], 'length', { writable: false }).push();
|
|
301
|
+
} catch (error) {
|
|
302
|
+
return error instanceof TypeError;
|
|
303
|
+
}
|
|
304
|
+
}();
|
|
305
|
+
|
|
306
|
+
// `Array.prototype.push` method
|
|
307
|
+
// https://tc39.es/ecma262/#sec-array.prototype.push
|
|
308
|
+
$({ target: 'Array', proto: true, arity: 1, forced: INCORRECT_TO_LENGTH || SILENT_ON_NON_WRITABLE_LENGTH }, {
|
|
309
|
+
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
|
310
|
+
push: function push(item) {
|
|
311
|
+
var O = toObject(this);
|
|
312
|
+
var len = lengthOfArrayLike(O);
|
|
313
|
+
var argCount = arguments.length;
|
|
314
|
+
doesNotExceedSafeInteger(len + argCount);
|
|
315
|
+
for (var i = 0; i < argCount; i++) {
|
|
316
|
+
O[len] = arguments[i];
|
|
317
|
+
len++;
|
|
318
|
+
}
|
|
319
|
+
setArrayLength(O, len);
|
|
320
|
+
return len;
|
|
321
|
+
}
|
|
322
|
+
});
|
|
231
323
|
|
|
232
324
|
|
|
233
325
|
/***/ }),
|
|
234
326
|
|
|
235
|
-
/***/ "
|
|
236
|
-
/***/ (function(module, exports) {
|
|
327
|
+
/***/ "1626":
|
|
328
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
237
329
|
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
330
|
+
var $documentAll = __webpack_require__("8ea1");
|
|
331
|
+
|
|
332
|
+
var documentAll = $documentAll.all;
|
|
333
|
+
|
|
334
|
+
// `IsCallable` abstract operation
|
|
335
|
+
// https://tc39.es/ecma262/#sec-iscallable
|
|
336
|
+
module.exports = $documentAll.IS_HTMLDDA ? function (argument) {
|
|
337
|
+
return typeof argument == 'function' || argument === documentAll;
|
|
338
|
+
} : function (argument) {
|
|
339
|
+
return typeof argument == 'function';
|
|
243
340
|
};
|
|
244
341
|
|
|
245
342
|
|
|
246
343
|
/***/ }),
|
|
247
344
|
|
|
248
|
-
/***/ "
|
|
345
|
+
/***/ "1a2d":
|
|
249
346
|
/***/ (function(module, exports, __webpack_require__) {
|
|
250
347
|
|
|
251
|
-
var
|
|
252
|
-
var
|
|
253
|
-
var V8_VERSION = __webpack_require__("2d00");
|
|
348
|
+
var uncurryThis = __webpack_require__("e330");
|
|
349
|
+
var toObject = __webpack_require__("7b0b");
|
|
254
350
|
|
|
255
|
-
var
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
return
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
351
|
+
var hasOwnProperty = uncurryThis({}.hasOwnProperty);
|
|
352
|
+
|
|
353
|
+
// `HasOwnProperty` abstract operation
|
|
354
|
+
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
355
|
+
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
356
|
+
module.exports = Object.hasOwn || function hasOwn(it, key) {
|
|
357
|
+
return hasOwnProperty(toObject(it), key);
|
|
358
|
+
};
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
/***/ }),
|
|
362
|
+
|
|
363
|
+
/***/ "1d80":
|
|
364
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
365
|
+
|
|
366
|
+
var isNullOrUndefined = __webpack_require__("7234");
|
|
367
|
+
|
|
368
|
+
var $TypeError = TypeError;
|
|
369
|
+
|
|
370
|
+
// `RequireObjectCoercible` abstract operation
|
|
371
|
+
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
372
|
+
module.exports = function (it) {
|
|
373
|
+
if (isNullOrUndefined(it)) throw $TypeError("Can't call method on " + it);
|
|
374
|
+
return it;
|
|
269
375
|
};
|
|
270
376
|
|
|
271
377
|
|
|
@@ -274,7 +380,7 @@ module.exports = function (METHOD_NAME) {
|
|
|
274
380
|
/***/ "23cb":
|
|
275
381
|
/***/ (function(module, exports, __webpack_require__) {
|
|
276
382
|
|
|
277
|
-
var
|
|
383
|
+
var toIntegerOrInfinity = __webpack_require__("5926");
|
|
278
384
|
|
|
279
385
|
var max = Math.max;
|
|
280
386
|
var min = Math.min;
|
|
@@ -283,7 +389,7 @@ var min = Math.min;
|
|
|
283
389
|
// Let integer be ? ToInteger(index).
|
|
284
390
|
// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
|
|
285
391
|
module.exports = function (index, length) {
|
|
286
|
-
var integer =
|
|
392
|
+
var integer = toIntegerOrInfinity(index);
|
|
287
393
|
return integer < 0 ? max(integer + length, 0) : min(integer, length);
|
|
288
394
|
};
|
|
289
395
|
|
|
@@ -296,24 +402,25 @@ module.exports = function (index, length) {
|
|
|
296
402
|
var global = __webpack_require__("da84");
|
|
297
403
|
var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
|
|
298
404
|
var createNonEnumerableProperty = __webpack_require__("9112");
|
|
299
|
-
var
|
|
300
|
-
var
|
|
405
|
+
var defineBuiltIn = __webpack_require__("cb2d");
|
|
406
|
+
var defineGlobalProperty = __webpack_require__("6374");
|
|
301
407
|
var copyConstructorProperties = __webpack_require__("e893");
|
|
302
408
|
var isForced = __webpack_require__("94ca");
|
|
303
409
|
|
|
304
410
|
/*
|
|
305
|
-
options.target
|
|
306
|
-
options.global
|
|
307
|
-
options.stat
|
|
308
|
-
options.proto
|
|
309
|
-
options.real
|
|
310
|
-
options.forced
|
|
311
|
-
options.bind
|
|
312
|
-
options.wrap
|
|
313
|
-
options.unsafe
|
|
314
|
-
options.sham
|
|
315
|
-
options.enumerable
|
|
316
|
-
options.
|
|
411
|
+
options.target - name of the target object
|
|
412
|
+
options.global - target is the global object
|
|
413
|
+
options.stat - export as static methods of target
|
|
414
|
+
options.proto - export as prototype methods of target
|
|
415
|
+
options.real - real prototype method for the `pure` version
|
|
416
|
+
options.forced - export even if the native feature is available
|
|
417
|
+
options.bind - bind methods to the target, required for the `pure` version
|
|
418
|
+
options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
|
|
419
|
+
options.unsafe - use the simple assignment of property instead of delete + defineProperty
|
|
420
|
+
options.sham - add a flag to not completely full polyfills
|
|
421
|
+
options.enumerable - export as enumerable property
|
|
422
|
+
options.dontCallGetSet - prevent calling a getter on target
|
|
423
|
+
options.name - the .name of the function if it does not match the key
|
|
317
424
|
*/
|
|
318
425
|
module.exports = function (options, source) {
|
|
319
426
|
var TARGET = options.target;
|
|
@@ -323,28 +430,27 @@ module.exports = function (options, source) {
|
|
|
323
430
|
if (GLOBAL) {
|
|
324
431
|
target = global;
|
|
325
432
|
} else if (STATIC) {
|
|
326
|
-
target = global[TARGET] ||
|
|
433
|
+
target = global[TARGET] || defineGlobalProperty(TARGET, {});
|
|
327
434
|
} else {
|
|
328
435
|
target = (global[TARGET] || {}).prototype;
|
|
329
436
|
}
|
|
330
437
|
if (target) for (key in source) {
|
|
331
438
|
sourceProperty = source[key];
|
|
332
|
-
if (options.
|
|
439
|
+
if (options.dontCallGetSet) {
|
|
333
440
|
descriptor = getOwnPropertyDescriptor(target, key);
|
|
334
441
|
targetProperty = descriptor && descriptor.value;
|
|
335
442
|
} else targetProperty = target[key];
|
|
336
443
|
FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
|
|
337
444
|
// contained in target
|
|
338
445
|
if (!FORCED && targetProperty !== undefined) {
|
|
339
|
-
if (typeof sourceProperty
|
|
446
|
+
if (typeof sourceProperty == typeof targetProperty) continue;
|
|
340
447
|
copyConstructorProperties(sourceProperty, targetProperty);
|
|
341
448
|
}
|
|
342
449
|
// add a flag to not completely full polyfills
|
|
343
450
|
if (options.sham || (targetProperty && targetProperty.sham)) {
|
|
344
451
|
createNonEnumerableProperty(sourceProperty, 'sham', true);
|
|
345
452
|
}
|
|
346
|
-
|
|
347
|
-
redefine(target, key, sourceProperty, options);
|
|
453
|
+
defineBuiltIn(target, key, sourceProperty, options);
|
|
348
454
|
}
|
|
349
455
|
};
|
|
350
456
|
|
|
@@ -361,6 +467,7 @@ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
|
|
361
467
|
|
|
362
468
|
// `Object.getOwnPropertyNames` method
|
|
363
469
|
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
470
|
+
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
364
471
|
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
365
472
|
return internalObjectKeys(O, hiddenKeys);
|
|
366
473
|
};
|
|
@@ -368,35 +475,19 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
|
368
475
|
|
|
369
476
|
/***/ }),
|
|
370
477
|
|
|
371
|
-
/***/ "
|
|
478
|
+
/***/ "2ba4":
|
|
372
479
|
/***/ (function(module, exports, __webpack_require__) {
|
|
373
480
|
|
|
374
|
-
|
|
481
|
+
var NATIVE_BIND = __webpack_require__("40d5");
|
|
375
482
|
|
|
376
|
-
var
|
|
377
|
-
var
|
|
378
|
-
var
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
var NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });
|
|
386
|
-
// FF44- RegExp#toString has a wrong name
|
|
387
|
-
var INCORRECT_NAME = nativeToString.name != TO_STRING;
|
|
388
|
-
|
|
389
|
-
// `RegExp.prototype.toString` method
|
|
390
|
-
// https://tc39.es/ecma262/#sec-regexp.prototype.tostring
|
|
391
|
-
if (NOT_GENERIC || INCORRECT_NAME) {
|
|
392
|
-
redefine(RegExp.prototype, TO_STRING, function toString() {
|
|
393
|
-
var R = anObject(this);
|
|
394
|
-
var p = String(R.source);
|
|
395
|
-
var rf = R.flags;
|
|
396
|
-
var f = String(rf === undefined && R instanceof RegExp && !('flags' in RegExpPrototype) ? flags.call(R) : rf);
|
|
397
|
-
return '/' + p + '/' + f;
|
|
398
|
-
}, { unsafe: true });
|
|
399
|
-
}
|
|
483
|
+
var FunctionPrototype = Function.prototype;
|
|
484
|
+
var apply = FunctionPrototype.apply;
|
|
485
|
+
var call = FunctionPrototype.call;
|
|
486
|
+
|
|
487
|
+
// eslint-disable-next-line es/no-reflect -- safe
|
|
488
|
+
module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
|
|
489
|
+
return call.apply(apply, arguments);
|
|
490
|
+
});
|
|
400
491
|
|
|
401
492
|
|
|
402
493
|
/***/ }),
|
|
@@ -408,22 +499,29 @@ var global = __webpack_require__("da84");
|
|
|
408
499
|
var userAgent = __webpack_require__("342f");
|
|
409
500
|
|
|
410
501
|
var process = global.process;
|
|
411
|
-
var
|
|
502
|
+
var Deno = global.Deno;
|
|
503
|
+
var versions = process && process.versions || Deno && Deno.version;
|
|
412
504
|
var v8 = versions && versions.v8;
|
|
413
505
|
var match, version;
|
|
414
506
|
|
|
415
507
|
if (v8) {
|
|
416
508
|
match = v8.split('.');
|
|
417
|
-
|
|
418
|
-
|
|
509
|
+
// in old Chrome, versions of V8 isn't V8 = Chrome / 10
|
|
510
|
+
// but their correct versions are not interesting for us
|
|
511
|
+
version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
|
|
515
|
+
// so check `userAgent` even if `.v8` exists, but 0
|
|
516
|
+
if (!version && userAgent) {
|
|
419
517
|
match = userAgent.match(/Edge\/(\d+)/);
|
|
420
518
|
if (!match || match[1] >= 74) {
|
|
421
519
|
match = userAgent.match(/Chrome\/(\d+)/);
|
|
422
|
-
if (match) version = match[1];
|
|
520
|
+
if (match) version = +match[1];
|
|
423
521
|
}
|
|
424
522
|
}
|
|
425
523
|
|
|
426
|
-
module.exports = version
|
|
524
|
+
module.exports = version;
|
|
427
525
|
|
|
428
526
|
|
|
429
527
|
/***/ }),
|
|
@@ -438,49 +536,92 @@ module.exports = getBuiltIn('navigator', 'userAgent') || '';
|
|
|
438
536
|
|
|
439
537
|
/***/ }),
|
|
440
538
|
|
|
441
|
-
/***/ "
|
|
539
|
+
/***/ "3511":
|
|
540
|
+
/***/ (function(module, exports) {
|
|
541
|
+
|
|
542
|
+
var $TypeError = TypeError;
|
|
543
|
+
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
|
|
544
|
+
|
|
545
|
+
module.exports = function (it) {
|
|
546
|
+
if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
|
|
547
|
+
return it;
|
|
548
|
+
};
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
/***/ }),
|
|
552
|
+
|
|
553
|
+
/***/ "3a34":
|
|
442
554
|
/***/ (function(module, exports, __webpack_require__) {
|
|
443
555
|
|
|
556
|
+
"use strict";
|
|
557
|
+
|
|
444
558
|
var DESCRIPTORS = __webpack_require__("83ab");
|
|
445
|
-
var
|
|
446
|
-
var anObject = __webpack_require__("825a");
|
|
447
|
-
var objectKeys = __webpack_require__("df75");
|
|
559
|
+
var isArray = __webpack_require__("e8b5");
|
|
448
560
|
|
|
449
|
-
|
|
450
|
-
//
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
561
|
+
var $TypeError = TypeError;
|
|
562
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
563
|
+
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
564
|
+
|
|
565
|
+
// Safari < 13 does not throw an error in this case
|
|
566
|
+
var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
|
|
567
|
+
// makes no sense without proper strict mode support
|
|
568
|
+
if (this !== undefined) return true;
|
|
569
|
+
try {
|
|
570
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
571
|
+
Object.defineProperty([], 'length', { writable: false }).length = 1;
|
|
572
|
+
} catch (error) {
|
|
573
|
+
return error instanceof TypeError;
|
|
574
|
+
}
|
|
575
|
+
}();
|
|
576
|
+
|
|
577
|
+
module.exports = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
|
|
578
|
+
if (isArray(O) && !getOwnPropertyDescriptor(O, 'length').writable) {
|
|
579
|
+
throw $TypeError('Cannot set read only .length');
|
|
580
|
+
} return O.length = length;
|
|
581
|
+
} : function (O, length) {
|
|
582
|
+
return O.length = length;
|
|
459
583
|
};
|
|
460
584
|
|
|
461
585
|
|
|
586
|
+
/***/ }),
|
|
587
|
+
|
|
588
|
+
/***/ "3a9b":
|
|
589
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
590
|
+
|
|
591
|
+
var uncurryThis = __webpack_require__("e330");
|
|
592
|
+
|
|
593
|
+
module.exports = uncurryThis({}.isPrototypeOf);
|
|
594
|
+
|
|
595
|
+
|
|
462
596
|
/***/ }),
|
|
463
597
|
|
|
464
598
|
/***/ "3bbe":
|
|
465
599
|
/***/ (function(module, exports, __webpack_require__) {
|
|
466
600
|
|
|
467
|
-
var
|
|
601
|
+
var isCallable = __webpack_require__("1626");
|
|
468
602
|
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
603
|
+
var $String = String;
|
|
604
|
+
var $TypeError = TypeError;
|
|
605
|
+
|
|
606
|
+
module.exports = function (argument) {
|
|
607
|
+
if (typeof argument == 'object' || isCallable(argument)) return argument;
|
|
608
|
+
throw $TypeError("Can't set " + $String(argument) + ' as a prototype');
|
|
473
609
|
};
|
|
474
610
|
|
|
475
611
|
|
|
476
612
|
/***/ }),
|
|
477
613
|
|
|
478
|
-
/***/ "
|
|
614
|
+
/***/ "40d5":
|
|
479
615
|
/***/ (function(module, exports, __webpack_require__) {
|
|
480
616
|
|
|
481
|
-
var
|
|
617
|
+
var fails = __webpack_require__("d039");
|
|
482
618
|
|
|
483
|
-
module.exports =
|
|
619
|
+
module.exports = !fails(function () {
|
|
620
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
621
|
+
var test = (function () { /* empty */ }).bind();
|
|
622
|
+
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
623
|
+
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
624
|
+
});
|
|
484
625
|
|
|
485
626
|
|
|
486
627
|
/***/ }),
|
|
@@ -488,37 +629,43 @@ module.exports = global;
|
|
|
488
629
|
/***/ "44ad":
|
|
489
630
|
/***/ (function(module, exports, __webpack_require__) {
|
|
490
631
|
|
|
632
|
+
var uncurryThis = __webpack_require__("e330");
|
|
491
633
|
var fails = __webpack_require__("d039");
|
|
492
634
|
var classof = __webpack_require__("c6b6");
|
|
493
635
|
|
|
494
|
-
var
|
|
636
|
+
var $Object = Object;
|
|
637
|
+
var split = uncurryThis(''.split);
|
|
495
638
|
|
|
496
639
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
497
640
|
module.exports = fails(function () {
|
|
498
641
|
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
|
499
642
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
500
|
-
return
|
|
643
|
+
return !$Object('z').propertyIsEnumerable(0);
|
|
501
644
|
}) ? function (it) {
|
|
502
|
-
return classof(it) == 'String' ? split
|
|
503
|
-
} : Object;
|
|
645
|
+
return classof(it) == 'String' ? split(it, '') : $Object(it);
|
|
646
|
+
} : $Object;
|
|
504
647
|
|
|
505
648
|
|
|
506
649
|
/***/ }),
|
|
507
650
|
|
|
508
|
-
/***/ "
|
|
651
|
+
/***/ "485a":
|
|
509
652
|
/***/ (function(module, exports, __webpack_require__) {
|
|
510
653
|
|
|
511
|
-
var
|
|
512
|
-
var
|
|
513
|
-
var
|
|
654
|
+
var call = __webpack_require__("c65b");
|
|
655
|
+
var isCallable = __webpack_require__("1626");
|
|
656
|
+
var isObject = __webpack_require__("861d");
|
|
514
657
|
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
658
|
+
var $TypeError = TypeError;
|
|
659
|
+
|
|
660
|
+
// `OrdinaryToPrimitive` abstract operation
|
|
661
|
+
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
662
|
+
module.exports = function (input, pref) {
|
|
663
|
+
var fn, val;
|
|
664
|
+
if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
|
|
665
|
+
if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
|
|
666
|
+
if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
|
|
667
|
+
throw $TypeError("Can't convert object to primitive value");
|
|
668
|
+
};
|
|
522
669
|
|
|
523
670
|
|
|
524
671
|
/***/ }),
|
|
@@ -527,14 +674,14 @@ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
|
527
674
|
/***/ (function(module, exports, __webpack_require__) {
|
|
528
675
|
|
|
529
676
|
var toIndexedObject = __webpack_require__("fc6a");
|
|
530
|
-
var toLength = __webpack_require__("50c4");
|
|
531
677
|
var toAbsoluteIndex = __webpack_require__("23cb");
|
|
678
|
+
var lengthOfArrayLike = __webpack_require__("07fa");
|
|
532
679
|
|
|
533
680
|
// `Array.prototype.{ indexOf, includes }` methods implementation
|
|
534
681
|
var createMethod = function (IS_INCLUDES) {
|
|
535
682
|
return function ($this, el, fromIndex) {
|
|
536
683
|
var O = toIndexedObject($this);
|
|
537
|
-
var length =
|
|
684
|
+
var length = lengthOfArrayLike(O);
|
|
538
685
|
var index = toAbsoluteIndex(fromIndex, length);
|
|
539
686
|
var value;
|
|
540
687
|
// Array#includes uses SameValueZero equality algorithm
|
|
@@ -565,135 +712,17 @@ module.exports = {
|
|
|
565
712
|
/***/ "50c4":
|
|
566
713
|
/***/ (function(module, exports, __webpack_require__) {
|
|
567
714
|
|
|
568
|
-
var
|
|
715
|
+
var toIntegerOrInfinity = __webpack_require__("5926");
|
|
569
716
|
|
|
570
717
|
var min = Math.min;
|
|
571
718
|
|
|
572
719
|
// `ToLength` abstract operation
|
|
573
720
|
// https://tc39.es/ecma262/#sec-tolength
|
|
574
721
|
module.exports = function (argument) {
|
|
575
|
-
return argument > 0 ? min(
|
|
576
|
-
};
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
/***/ }),
|
|
580
|
-
|
|
581
|
-
/***/ "5135":
|
|
582
|
-
/***/ (function(module, exports) {
|
|
583
|
-
|
|
584
|
-
var hasOwnProperty = {}.hasOwnProperty;
|
|
585
|
-
|
|
586
|
-
module.exports = function (it, key) {
|
|
587
|
-
return hasOwnProperty.call(it, key);
|
|
722
|
+
return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
|
|
588
723
|
};
|
|
589
724
|
|
|
590
725
|
|
|
591
|
-
/***/ }),
|
|
592
|
-
|
|
593
|
-
/***/ "5319":
|
|
594
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
595
|
-
|
|
596
|
-
"use strict";
|
|
597
|
-
|
|
598
|
-
var fixRegExpWellKnownSymbolLogic = __webpack_require__("d784");
|
|
599
|
-
var anObject = __webpack_require__("825a");
|
|
600
|
-
var toLength = __webpack_require__("50c4");
|
|
601
|
-
var toInteger = __webpack_require__("a691");
|
|
602
|
-
var requireObjectCoercible = __webpack_require__("1d80");
|
|
603
|
-
var advanceStringIndex = __webpack_require__("8aa5");
|
|
604
|
-
var getSubstitution = __webpack_require__("0cb2");
|
|
605
|
-
var regExpExec = __webpack_require__("14c3");
|
|
606
|
-
|
|
607
|
-
var max = Math.max;
|
|
608
|
-
var min = Math.min;
|
|
609
|
-
|
|
610
|
-
var maybeToString = function (it) {
|
|
611
|
-
return it === undefined ? it : String(it);
|
|
612
|
-
};
|
|
613
|
-
|
|
614
|
-
// @@replace logic
|
|
615
|
-
fixRegExpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative, reason) {
|
|
616
|
-
var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = reason.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE;
|
|
617
|
-
var REPLACE_KEEPS_$0 = reason.REPLACE_KEEPS_$0;
|
|
618
|
-
var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';
|
|
619
|
-
|
|
620
|
-
return [
|
|
621
|
-
// `String.prototype.replace` method
|
|
622
|
-
// https://tc39.es/ecma262/#sec-string.prototype.replace
|
|
623
|
-
function replace(searchValue, replaceValue) {
|
|
624
|
-
var O = requireObjectCoercible(this);
|
|
625
|
-
var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];
|
|
626
|
-
return replacer !== undefined
|
|
627
|
-
? replacer.call(searchValue, O, replaceValue)
|
|
628
|
-
: nativeReplace.call(String(O), searchValue, replaceValue);
|
|
629
|
-
},
|
|
630
|
-
// `RegExp.prototype[@@replace]` method
|
|
631
|
-
// https://tc39.es/ecma262/#sec-regexp.prototype-@@replace
|
|
632
|
-
function (regexp, replaceValue) {
|
|
633
|
-
if (
|
|
634
|
-
(!REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE && REPLACE_KEEPS_$0) ||
|
|
635
|
-
(typeof replaceValue === 'string' && replaceValue.indexOf(UNSAFE_SUBSTITUTE) === -1)
|
|
636
|
-
) {
|
|
637
|
-
var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);
|
|
638
|
-
if (res.done) return res.value;
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
var rx = anObject(regexp);
|
|
642
|
-
var S = String(this);
|
|
643
|
-
|
|
644
|
-
var functionalReplace = typeof replaceValue === 'function';
|
|
645
|
-
if (!functionalReplace) replaceValue = String(replaceValue);
|
|
646
|
-
|
|
647
|
-
var global = rx.global;
|
|
648
|
-
if (global) {
|
|
649
|
-
var fullUnicode = rx.unicode;
|
|
650
|
-
rx.lastIndex = 0;
|
|
651
|
-
}
|
|
652
|
-
var results = [];
|
|
653
|
-
while (true) {
|
|
654
|
-
var result = regExpExec(rx, S);
|
|
655
|
-
if (result === null) break;
|
|
656
|
-
|
|
657
|
-
results.push(result);
|
|
658
|
-
if (!global) break;
|
|
659
|
-
|
|
660
|
-
var matchStr = String(result[0]);
|
|
661
|
-
if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
var accumulatedResult = '';
|
|
665
|
-
var nextSourcePosition = 0;
|
|
666
|
-
for (var i = 0; i < results.length; i++) {
|
|
667
|
-
result = results[i];
|
|
668
|
-
|
|
669
|
-
var matched = String(result[0]);
|
|
670
|
-
var position = max(min(toInteger(result.index), S.length), 0);
|
|
671
|
-
var captures = [];
|
|
672
|
-
// NOTE: This is equivalent to
|
|
673
|
-
// captures = result.slice(1).map(maybeToString)
|
|
674
|
-
// but for some reason `nativeSlice.call(result, 1, result.length)` (called in
|
|
675
|
-
// the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
|
|
676
|
-
// causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
|
|
677
|
-
for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));
|
|
678
|
-
var namedCaptures = result.groups;
|
|
679
|
-
if (functionalReplace) {
|
|
680
|
-
var replacerArgs = [matched].concat(captures, position, S);
|
|
681
|
-
if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);
|
|
682
|
-
var replacement = String(replaceValue.apply(undefined, replacerArgs));
|
|
683
|
-
} else {
|
|
684
|
-
replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
|
|
685
|
-
}
|
|
686
|
-
if (position >= nextSourcePosition) {
|
|
687
|
-
accumulatedResult += S.slice(nextSourcePosition, position) + replacement;
|
|
688
|
-
nextSourcePosition = position + matched.length;
|
|
689
|
-
}
|
|
690
|
-
}
|
|
691
|
-
return accumulatedResult + S.slice(nextSourcePosition);
|
|
692
|
-
}
|
|
693
|
-
];
|
|
694
|
-
});
|
|
695
|
-
|
|
696
|
-
|
|
697
726
|
/***/ }),
|
|
698
727
|
|
|
699
728
|
/***/ "5692":
|
|
@@ -705,9 +734,11 @@ var store = __webpack_require__("c6cd");
|
|
|
705
734
|
(module.exports = function (key, value) {
|
|
706
735
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
707
736
|
})('versions', []).push({
|
|
708
|
-
version: '3.
|
|
737
|
+
version: '3.26.1',
|
|
709
738
|
mode: IS_PURE ? 'pure' : 'global',
|
|
710
|
-
copyright: '©
|
|
739
|
+
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
740
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.26.1/LICENSE',
|
|
741
|
+
source: 'https://github.com/zloirock/core-js'
|
|
711
742
|
});
|
|
712
743
|
|
|
713
744
|
|
|
@@ -717,60 +748,66 @@ var store = __webpack_require__("c6cd");
|
|
|
717
748
|
/***/ (function(module, exports, __webpack_require__) {
|
|
718
749
|
|
|
719
750
|
var getBuiltIn = __webpack_require__("d066");
|
|
751
|
+
var uncurryThis = __webpack_require__("e330");
|
|
720
752
|
var getOwnPropertyNamesModule = __webpack_require__("241c");
|
|
721
753
|
var getOwnPropertySymbolsModule = __webpack_require__("7418");
|
|
722
754
|
var anObject = __webpack_require__("825a");
|
|
723
755
|
|
|
756
|
+
var concat = uncurryThis([].concat);
|
|
757
|
+
|
|
724
758
|
// all object keys, includes non-enumerable and symbols
|
|
725
759
|
module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
726
760
|
var keys = getOwnPropertyNamesModule.f(anObject(it));
|
|
727
761
|
var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
|
728
|
-
return getOwnPropertySymbols ?
|
|
762
|
+
return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
|
|
729
763
|
};
|
|
730
764
|
|
|
731
765
|
|
|
732
766
|
/***/ }),
|
|
733
767
|
|
|
734
|
-
/***/ "
|
|
735
|
-
/***/ (function(module, exports) {
|
|
768
|
+
/***/ "577e":
|
|
769
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
770
|
+
|
|
771
|
+
var classof = __webpack_require__("f5df");
|
|
736
772
|
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
773
|
+
var $String = String;
|
|
774
|
+
|
|
775
|
+
module.exports = function (argument) {
|
|
776
|
+
if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
|
|
777
|
+
return $String(argument);
|
|
778
|
+
};
|
|
740
779
|
|
|
741
780
|
|
|
742
781
|
/***/ }),
|
|
743
782
|
|
|
744
|
-
/***/ "
|
|
783
|
+
/***/ "5926":
|
|
745
784
|
/***/ (function(module, exports, __webpack_require__) {
|
|
746
785
|
|
|
747
|
-
var
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
var
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
var createMethod = function (TYPE) {
|
|
756
|
-
return function ($this) {
|
|
757
|
-
var string = String(requireObjectCoercible($this));
|
|
758
|
-
if (TYPE & 1) string = string.replace(ltrim, '');
|
|
759
|
-
if (TYPE & 2) string = string.replace(rtrim, '');
|
|
760
|
-
return string;
|
|
761
|
-
};
|
|
786
|
+
var trunc = __webpack_require__("b42e");
|
|
787
|
+
|
|
788
|
+
// `ToIntegerOrInfinity` abstract operation
|
|
789
|
+
// https://tc39.es/ecma262/#sec-tointegerorinfinity
|
|
790
|
+
module.exports = function (argument) {
|
|
791
|
+
var number = +argument;
|
|
792
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
|
793
|
+
return number !== number || number === 0 ? 0 : trunc(number);
|
|
762
794
|
};
|
|
763
795
|
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
796
|
+
|
|
797
|
+
/***/ }),
|
|
798
|
+
|
|
799
|
+
/***/ "59ed":
|
|
800
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
801
|
+
|
|
802
|
+
var isCallable = __webpack_require__("1626");
|
|
803
|
+
var tryToString = __webpack_require__("0d51");
|
|
804
|
+
|
|
805
|
+
var $TypeError = TypeError;
|
|
806
|
+
|
|
807
|
+
// `Assert: IsCallable(argument) is true`
|
|
808
|
+
module.exports = function (argument) {
|
|
809
|
+
if (isCallable(argument)) return argument;
|
|
810
|
+
throw $TypeError(tryToString(argument) + ' is not a function');
|
|
774
811
|
};
|
|
775
812
|
|
|
776
813
|
|
|
@@ -791,73 +828,44 @@ module.exports = function (bitmap, value) {
|
|
|
791
828
|
|
|
792
829
|
/***/ }),
|
|
793
830
|
|
|
794
|
-
/***/ "
|
|
831
|
+
/***/ "5e77":
|
|
795
832
|
/***/ (function(module, exports, __webpack_require__) {
|
|
796
833
|
|
|
797
|
-
var
|
|
798
|
-
var
|
|
799
|
-
|
|
800
|
-
module.exports = classof(global.process) == 'process';
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
/***/ }),
|
|
804
|
-
|
|
805
|
-
/***/ "6547":
|
|
806
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
834
|
+
var DESCRIPTORS = __webpack_require__("83ab");
|
|
835
|
+
var hasOwn = __webpack_require__("1a2d");
|
|
807
836
|
|
|
808
|
-
var
|
|
809
|
-
|
|
837
|
+
var FunctionPrototype = Function.prototype;
|
|
838
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
839
|
+
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
810
840
|
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
var position = toInteger(pos);
|
|
816
|
-
var size = S.length;
|
|
817
|
-
var first, second;
|
|
818
|
-
if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
|
|
819
|
-
first = S.charCodeAt(position);
|
|
820
|
-
return first < 0xD800 || first > 0xDBFF || position + 1 === size
|
|
821
|
-
|| (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF
|
|
822
|
-
? CONVERT_TO_STRING ? S.charAt(position) : first
|
|
823
|
-
: CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
|
|
824
|
-
};
|
|
825
|
-
};
|
|
841
|
+
var EXISTS = hasOwn(FunctionPrototype, 'name');
|
|
842
|
+
// additional protection from minified / mangled / dropped function names
|
|
843
|
+
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
|
844
|
+
var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
826
845
|
|
|
827
846
|
module.exports = {
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
// `String.prototype.at` method
|
|
832
|
-
// https://github.com/mathiasbynens/String.prototype.at
|
|
833
|
-
charAt: createMethod(true)
|
|
847
|
+
EXISTS: EXISTS,
|
|
848
|
+
PROPER: PROPER,
|
|
849
|
+
CONFIGURABLE: CONFIGURABLE
|
|
834
850
|
};
|
|
835
851
|
|
|
836
852
|
|
|
837
853
|
/***/ }),
|
|
838
854
|
|
|
839
|
-
/***/ "
|
|
855
|
+
/***/ "6374":
|
|
840
856
|
/***/ (function(module, exports, __webpack_require__) {
|
|
841
857
|
|
|
842
|
-
var
|
|
843
|
-
var isArray = __webpack_require__("e8b5");
|
|
844
|
-
var wellKnownSymbol = __webpack_require__("b622");
|
|
858
|
+
var global = __webpack_require__("da84");
|
|
845
859
|
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
|
|
856
|
-
else if (isObject(C)) {
|
|
857
|
-
C = C[SPECIES];
|
|
858
|
-
if (C === null) C = undefined;
|
|
859
|
-
}
|
|
860
|
-
} return new (C === undefined ? Array : C)(length === 0 ? 0 : length);
|
|
860
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
861
|
+
var defineProperty = Object.defineProperty;
|
|
862
|
+
|
|
863
|
+
module.exports = function (key, value) {
|
|
864
|
+
try {
|
|
865
|
+
defineProperty(global, key, { value: value, configurable: true, writable: true });
|
|
866
|
+
} catch (error) {
|
|
867
|
+
global[key] = value;
|
|
868
|
+
} return value;
|
|
861
869
|
};
|
|
862
870
|
|
|
863
871
|
|
|
@@ -866,15 +874,17 @@ module.exports = function (originalArray, length) {
|
|
|
866
874
|
/***/ "69f3":
|
|
867
875
|
/***/ (function(module, exports, __webpack_require__) {
|
|
868
876
|
|
|
869
|
-
var NATIVE_WEAK_MAP = __webpack_require__("
|
|
877
|
+
var NATIVE_WEAK_MAP = __webpack_require__("cdce");
|
|
870
878
|
var global = __webpack_require__("da84");
|
|
871
879
|
var isObject = __webpack_require__("861d");
|
|
872
880
|
var createNonEnumerableProperty = __webpack_require__("9112");
|
|
873
|
-
var
|
|
881
|
+
var hasOwn = __webpack_require__("1a2d");
|
|
874
882
|
var shared = __webpack_require__("c6cd");
|
|
875
883
|
var sharedKey = __webpack_require__("f772");
|
|
876
884
|
var hiddenKeys = __webpack_require__("d012");
|
|
877
885
|
|
|
886
|
+
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
887
|
+
var TypeError = global.TypeError;
|
|
878
888
|
var WeakMap = global.WeakMap;
|
|
879
889
|
var set, get, has;
|
|
880
890
|
|
|
@@ -891,35 +901,39 @@ var getterFor = function (TYPE) {
|
|
|
891
901
|
};
|
|
892
902
|
};
|
|
893
903
|
|
|
894
|
-
if (NATIVE_WEAK_MAP) {
|
|
904
|
+
if (NATIVE_WEAK_MAP || shared.state) {
|
|
895
905
|
var store = shared.state || (shared.state = new WeakMap());
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
906
|
+
/* eslint-disable no-self-assign -- prototype methods protection */
|
|
907
|
+
store.get = store.get;
|
|
908
|
+
store.has = store.has;
|
|
909
|
+
store.set = store.set;
|
|
910
|
+
/* eslint-enable no-self-assign -- prototype methods protection */
|
|
899
911
|
set = function (it, metadata) {
|
|
912
|
+
if (store.has(it)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
900
913
|
metadata.facade = it;
|
|
901
|
-
|
|
914
|
+
store.set(it, metadata);
|
|
902
915
|
return metadata;
|
|
903
916
|
};
|
|
904
917
|
get = function (it) {
|
|
905
|
-
return
|
|
918
|
+
return store.get(it) || {};
|
|
906
919
|
};
|
|
907
920
|
has = function (it) {
|
|
908
|
-
return
|
|
921
|
+
return store.has(it);
|
|
909
922
|
};
|
|
910
923
|
} else {
|
|
911
924
|
var STATE = sharedKey('state');
|
|
912
925
|
hiddenKeys[STATE] = true;
|
|
913
926
|
set = function (it, metadata) {
|
|
927
|
+
if (hasOwn(it, STATE)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
914
928
|
metadata.facade = it;
|
|
915
929
|
createNonEnumerableProperty(it, STATE, metadata);
|
|
916
930
|
return metadata;
|
|
917
931
|
};
|
|
918
932
|
get = function (it) {
|
|
919
|
-
return
|
|
933
|
+
return hasOwn(it, STATE) ? it[STATE] : {};
|
|
920
934
|
};
|
|
921
935
|
has = function (it) {
|
|
922
|
-
return
|
|
936
|
+
return hasOwn(it, STATE);
|
|
923
937
|
};
|
|
924
938
|
}
|
|
925
939
|
|
|
@@ -934,49 +948,21 @@ module.exports = {
|
|
|
934
948
|
|
|
935
949
|
/***/ }),
|
|
936
950
|
|
|
937
|
-
/***/ "
|
|
951
|
+
/***/ "6b0d":
|
|
938
952
|
/***/ (function(module, exports, __webpack_require__) {
|
|
939
953
|
|
|
940
|
-
|
|
941
|
-
var createNonEnumerableProperty = __webpack_require__("9112");
|
|
942
|
-
var has = __webpack_require__("5135");
|
|
943
|
-
var setGlobal = __webpack_require__("ce4e");
|
|
944
|
-
var inspectSource = __webpack_require__("8925");
|
|
945
|
-
var InternalStateModule = __webpack_require__("69f3");
|
|
946
|
-
|
|
947
|
-
var getInternalState = InternalStateModule.get;
|
|
948
|
-
var enforceInternalState = InternalStateModule.enforce;
|
|
949
|
-
var TEMPLATE = String(String).split('String');
|
|
954
|
+
"use strict";
|
|
950
955
|
|
|
951
|
-
(
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
createNonEnumerableProperty(value, 'name', key);
|
|
959
|
-
}
|
|
960
|
-
state = enforceInternalState(value);
|
|
961
|
-
if (!state.source) {
|
|
962
|
-
state.source = TEMPLATE.join(typeof key == 'string' ? key : '');
|
|
956
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
957
|
+
// runtime helper for setting properties on components
|
|
958
|
+
// in a tree-shakable way
|
|
959
|
+
exports.default = (sfc, props) => {
|
|
960
|
+
const target = sfc.__vccOpts || sfc;
|
|
961
|
+
for (const [key, val] of props) {
|
|
962
|
+
target[key] = val;
|
|
963
963
|
}
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
if (simple) O[key] = value;
|
|
967
|
-
else setGlobal(key, value);
|
|
968
|
-
return;
|
|
969
|
-
} else if (!unsafe) {
|
|
970
|
-
delete O[key];
|
|
971
|
-
} else if (!noTargetGet && O[key]) {
|
|
972
|
-
simple = true;
|
|
973
|
-
}
|
|
974
|
-
if (simple) O[key] = value;
|
|
975
|
-
else createNonEnumerableProperty(O, key, value);
|
|
976
|
-
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
|
977
|
-
})(Function.prototype, 'toString', function toString() {
|
|
978
|
-
return typeof this == 'function' && getInternalState(this).source || inspectSource(this);
|
|
979
|
-
});
|
|
964
|
+
return target;
|
|
965
|
+
};
|
|
980
966
|
|
|
981
967
|
|
|
982
968
|
/***/ }),
|
|
@@ -984,6 +970,7 @@ var TEMPLATE = String(String).split('String');
|
|
|
984
970
|
/***/ "7156":
|
|
985
971
|
/***/ (function(module, exports, __webpack_require__) {
|
|
986
972
|
|
|
973
|
+
var isCallable = __webpack_require__("1626");
|
|
987
974
|
var isObject = __webpack_require__("861d");
|
|
988
975
|
var setPrototypeOf = __webpack_require__("d2bb");
|
|
989
976
|
|
|
@@ -994,7 +981,7 @@ module.exports = function ($this, dummy, Wrapper) {
|
|
|
994
981
|
// it can work only with native `setPrototypeOf`
|
|
995
982
|
setPrototypeOf &&
|
|
996
983
|
// we haven't completely correct pre-ES6 way for getting `new.target`, so use this
|
|
997
|
-
|
|
984
|
+
isCallable(NewTarget = dummy.constructor) &&
|
|
998
985
|
NewTarget !== Wrapper &&
|
|
999
986
|
isObject(NewTargetPrototype = NewTarget.prototype) &&
|
|
1000
987
|
NewTargetPrototype !== Wrapper.prototype
|
|
@@ -1003,11 +990,24 @@ module.exports = function ($this, dummy, Wrapper) {
|
|
|
1003
990
|
};
|
|
1004
991
|
|
|
1005
992
|
|
|
993
|
+
/***/ }),
|
|
994
|
+
|
|
995
|
+
/***/ "7234":
|
|
996
|
+
/***/ (function(module, exports) {
|
|
997
|
+
|
|
998
|
+
// we can't use just `it == null` since of `document.all` special case
|
|
999
|
+
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
|
|
1000
|
+
module.exports = function (it) {
|
|
1001
|
+
return it === null || it === undefined;
|
|
1002
|
+
};
|
|
1003
|
+
|
|
1004
|
+
|
|
1006
1005
|
/***/ }),
|
|
1007
1006
|
|
|
1008
1007
|
/***/ "7418":
|
|
1009
1008
|
/***/ (function(module, exports) {
|
|
1010
1009
|
|
|
1010
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
1011
1011
|
exports.f = Object.getOwnPropertySymbols;
|
|
1012
1012
|
|
|
1013
1013
|
|
|
@@ -1035,111 +1035,15 @@ module.exports = [
|
|
|
1035
1035
|
|
|
1036
1036
|
var requireObjectCoercible = __webpack_require__("1d80");
|
|
1037
1037
|
|
|
1038
|
+
var $Object = Object;
|
|
1039
|
+
|
|
1038
1040
|
// `ToObject` abstract operation
|
|
1039
1041
|
// https://tc39.es/ecma262/#sec-toobject
|
|
1040
1042
|
module.exports = function (argument) {
|
|
1041
|
-
return Object(requireObjectCoercible(argument));
|
|
1043
|
+
return $Object(requireObjectCoercible(argument));
|
|
1042
1044
|
};
|
|
1043
1045
|
|
|
1044
1046
|
|
|
1045
|
-
/***/ }),
|
|
1046
|
-
|
|
1047
|
-
/***/ "7c73":
|
|
1048
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
1049
|
-
|
|
1050
|
-
var anObject = __webpack_require__("825a");
|
|
1051
|
-
var defineProperties = __webpack_require__("37e8");
|
|
1052
|
-
var enumBugKeys = __webpack_require__("7839");
|
|
1053
|
-
var hiddenKeys = __webpack_require__("d012");
|
|
1054
|
-
var html = __webpack_require__("1be4");
|
|
1055
|
-
var documentCreateElement = __webpack_require__("cc12");
|
|
1056
|
-
var sharedKey = __webpack_require__("f772");
|
|
1057
|
-
|
|
1058
|
-
var GT = '>';
|
|
1059
|
-
var LT = '<';
|
|
1060
|
-
var PROTOTYPE = 'prototype';
|
|
1061
|
-
var SCRIPT = 'script';
|
|
1062
|
-
var IE_PROTO = sharedKey('IE_PROTO');
|
|
1063
|
-
|
|
1064
|
-
var EmptyConstructor = function () { /* empty */ };
|
|
1065
|
-
|
|
1066
|
-
var scriptTag = function (content) {
|
|
1067
|
-
return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
|
|
1068
|
-
};
|
|
1069
|
-
|
|
1070
|
-
// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
|
|
1071
|
-
var NullProtoObjectViaActiveX = function (activeXDocument) {
|
|
1072
|
-
activeXDocument.write(scriptTag(''));
|
|
1073
|
-
activeXDocument.close();
|
|
1074
|
-
var temp = activeXDocument.parentWindow.Object;
|
|
1075
|
-
activeXDocument = null; // avoid memory leak
|
|
1076
|
-
return temp;
|
|
1077
|
-
};
|
|
1078
|
-
|
|
1079
|
-
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
|
1080
|
-
var NullProtoObjectViaIFrame = function () {
|
|
1081
|
-
// Thrash, waste and sodomy: IE GC bug
|
|
1082
|
-
var iframe = documentCreateElement('iframe');
|
|
1083
|
-
var JS = 'java' + SCRIPT + ':';
|
|
1084
|
-
var iframeDocument;
|
|
1085
|
-
iframe.style.display = 'none';
|
|
1086
|
-
html.appendChild(iframe);
|
|
1087
|
-
// https://github.com/zloirock/core-js/issues/475
|
|
1088
|
-
iframe.src = String(JS);
|
|
1089
|
-
iframeDocument = iframe.contentWindow.document;
|
|
1090
|
-
iframeDocument.open();
|
|
1091
|
-
iframeDocument.write(scriptTag('document.F=Object'));
|
|
1092
|
-
iframeDocument.close();
|
|
1093
|
-
return iframeDocument.F;
|
|
1094
|
-
};
|
|
1095
|
-
|
|
1096
|
-
// Check for document.domain and active x support
|
|
1097
|
-
// No need to use active x approach when document.domain is not set
|
|
1098
|
-
// see https://github.com/es-shims/es5-shim/issues/150
|
|
1099
|
-
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
|
|
1100
|
-
// avoid IE GC bug
|
|
1101
|
-
var activeXDocument;
|
|
1102
|
-
var NullProtoObject = function () {
|
|
1103
|
-
try {
|
|
1104
|
-
/* global ActiveXObject -- old IE */
|
|
1105
|
-
activeXDocument = document.domain && new ActiveXObject('htmlfile');
|
|
1106
|
-
} catch (error) { /* ignore */ }
|
|
1107
|
-
NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();
|
|
1108
|
-
var length = enumBugKeys.length;
|
|
1109
|
-
while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
|
|
1110
|
-
return NullProtoObject();
|
|
1111
|
-
};
|
|
1112
|
-
|
|
1113
|
-
hiddenKeys[IE_PROTO] = true;
|
|
1114
|
-
|
|
1115
|
-
// `Object.create` method
|
|
1116
|
-
// https://tc39.es/ecma262/#sec-object.create
|
|
1117
|
-
module.exports = Object.create || function create(O, Properties) {
|
|
1118
|
-
var result;
|
|
1119
|
-
if (O !== null) {
|
|
1120
|
-
EmptyConstructor[PROTOTYPE] = anObject(O);
|
|
1121
|
-
result = new EmptyConstructor();
|
|
1122
|
-
EmptyConstructor[PROTOTYPE] = null;
|
|
1123
|
-
// add "__proto__" for Object.getPrototypeOf polyfill
|
|
1124
|
-
result[IE_PROTO] = O;
|
|
1125
|
-
} else result = NullProtoObject();
|
|
1126
|
-
return Properties === undefined ? result : defineProperties(result, Properties);
|
|
1127
|
-
};
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
/***/ }),
|
|
1131
|
-
|
|
1132
|
-
/***/ "7f9a":
|
|
1133
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
1134
|
-
|
|
1135
|
-
var global = __webpack_require__("da84");
|
|
1136
|
-
var inspectSource = __webpack_require__("8925");
|
|
1137
|
-
|
|
1138
|
-
var WeakMap = global.WeakMap;
|
|
1139
|
-
|
|
1140
|
-
module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
1047
|
/***/ }),
|
|
1144
1048
|
|
|
1145
1049
|
/***/ "825a":
|
|
@@ -1147,10 +1051,13 @@ module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSour
|
|
|
1147
1051
|
|
|
1148
1052
|
var isObject = __webpack_require__("861d");
|
|
1149
1053
|
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1054
|
+
var $String = String;
|
|
1055
|
+
var $TypeError = TypeError;
|
|
1056
|
+
|
|
1057
|
+
// `Assert: Type(argument) is Object`
|
|
1058
|
+
module.exports = function (argument) {
|
|
1059
|
+
if (isObject(argument)) return argument;
|
|
1060
|
+
throw $TypeError($String(argument) + ' is not an object');
|
|
1154
1061
|
};
|
|
1155
1062
|
|
|
1156
1063
|
|
|
@@ -1163,140 +1070,26 @@ var fails = __webpack_require__("d039");
|
|
|
1163
1070
|
|
|
1164
1071
|
// Detect IE8's incomplete defineProperty implementation
|
|
1165
1072
|
module.exports = !fails(function () {
|
|
1073
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
1166
1074
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
|
1167
1075
|
});
|
|
1168
1076
|
|
|
1169
1077
|
|
|
1170
|
-
/***/ }),
|
|
1171
|
-
|
|
1172
|
-
/***/ "8418":
|
|
1173
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
1174
|
-
|
|
1175
|
-
"use strict";
|
|
1176
|
-
|
|
1177
|
-
var toPrimitive = __webpack_require__("c04e");
|
|
1178
|
-
var definePropertyModule = __webpack_require__("9bf2");
|
|
1179
|
-
var createPropertyDescriptor = __webpack_require__("5c6c");
|
|
1180
|
-
|
|
1181
|
-
module.exports = function (object, key, value) {
|
|
1182
|
-
var propertyKey = toPrimitive(key);
|
|
1183
|
-
if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
|
|
1184
|
-
else object[propertyKey] = value;
|
|
1185
|
-
};
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
/***/ }),
|
|
1189
|
-
|
|
1190
|
-
/***/ "857a":
|
|
1191
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
1192
|
-
|
|
1193
|
-
var requireObjectCoercible = __webpack_require__("1d80");
|
|
1194
|
-
|
|
1195
|
-
var quot = /"/g;
|
|
1196
|
-
|
|
1197
|
-
// B.2.3.2.1 CreateHTML(string, tag, attribute, value)
|
|
1198
|
-
// https://tc39.es/ecma262/#sec-createhtml
|
|
1199
|
-
module.exports = function (string, tag, attribute, value) {
|
|
1200
|
-
var S = String(requireObjectCoercible(string));
|
|
1201
|
-
var p1 = '<' + tag;
|
|
1202
|
-
if (attribute !== '') p1 += ' ' + attribute + '="' + String(value).replace(quot, '"') + '"';
|
|
1203
|
-
return p1 + '>' + S + '</' + tag + '>';
|
|
1204
|
-
};
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
1078
|
/***/ }),
|
|
1208
1079
|
|
|
1209
1080
|
/***/ "861d":
|
|
1210
|
-
/***/ (function(module, exports) {
|
|
1211
|
-
|
|
1212
|
-
module.exports = function (it) {
|
|
1213
|
-
return typeof it === 'object' ? it !== null : typeof it === 'function';
|
|
1214
|
-
};
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
/***/ }),
|
|
1218
|
-
|
|
1219
|
-
/***/ "8875":
|
|
1220
1081
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1221
1082
|
|
|
1222
|
-
var
|
|
1223
|
-
|
|
1224
|
-
// source: https://github.com/amiller-gh/currentScript-polyfill
|
|
1225
|
-
|
|
1226
|
-
// added support for Firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1620505
|
|
1227
|
-
|
|
1228
|
-
(function (root, factory) {
|
|
1229
|
-
if (true) {
|
|
1230
|
-
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
|
1231
|
-
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
|
1232
|
-
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
|
|
1233
|
-
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
|
|
1234
|
-
} else {}
|
|
1235
|
-
}(typeof self !== 'undefined' ? self : this, function () {
|
|
1236
|
-
function getCurrentScript () {
|
|
1237
|
-
var descriptor = Object.getOwnPropertyDescriptor(document, 'currentScript')
|
|
1238
|
-
// for chrome
|
|
1239
|
-
if (!descriptor && 'currentScript' in document && document.currentScript) {
|
|
1240
|
-
return document.currentScript
|
|
1241
|
-
}
|
|
1083
|
+
var isCallable = __webpack_require__("1626");
|
|
1084
|
+
var $documentAll = __webpack_require__("8ea1");
|
|
1242
1085
|
|
|
1243
|
-
|
|
1244
|
-
if (descriptor && descriptor.get !== getCurrentScript && document.currentScript) {
|
|
1245
|
-
return document.currentScript
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
|
-
// IE 8-10 support script readyState
|
|
1249
|
-
// IE 11+ & Firefox support stack trace
|
|
1250
|
-
try {
|
|
1251
|
-
throw new Error();
|
|
1252
|
-
}
|
|
1253
|
-
catch (err) {
|
|
1254
|
-
// Find the second match for the "at" string to get file src url from stack.
|
|
1255
|
-
var ieStackRegExp = /.*at [^(]*\((.*):(.+):(.+)\)$/ig,
|
|
1256
|
-
ffStackRegExp = /@([^@]*):(\d+):(\d+)\s*$/ig,
|
|
1257
|
-
stackDetails = ieStackRegExp.exec(err.stack) || ffStackRegExp.exec(err.stack),
|
|
1258
|
-
scriptLocation = (stackDetails && stackDetails[1]) || false,
|
|
1259
|
-
line = (stackDetails && stackDetails[2]) || false,
|
|
1260
|
-
currentLocation = document.location.href.replace(document.location.hash, ''),
|
|
1261
|
-
pageSource,
|
|
1262
|
-
inlineScriptSourceRegExp,
|
|
1263
|
-
inlineScriptSource,
|
|
1264
|
-
scripts = document.getElementsByTagName('script'); // Live NodeList collection
|
|
1265
|
-
|
|
1266
|
-
if (scriptLocation === currentLocation) {
|
|
1267
|
-
pageSource = document.documentElement.outerHTML;
|
|
1268
|
-
inlineScriptSourceRegExp = new RegExp('(?:[^\\n]+?\\n){0,' + (line - 2) + '}[^<]*<script>([\\d\\D]*?)<\\/script>[\\d\\D]*', 'i');
|
|
1269
|
-
inlineScriptSource = pageSource.replace(inlineScriptSourceRegExp, '$1').trim();
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
for (var i = 0; i < scripts.length; i++) {
|
|
1273
|
-
// If ready state is interactive, return the script tag
|
|
1274
|
-
if (scripts[i].readyState === 'interactive') {
|
|
1275
|
-
return scripts[i];
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
// If src matches, return the script tag
|
|
1279
|
-
if (scripts[i].src === scriptLocation) {
|
|
1280
|
-
return scripts[i];
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
// If inline source matches, return the script tag
|
|
1284
|
-
if (
|
|
1285
|
-
scriptLocation === currentLocation &&
|
|
1286
|
-
scripts[i].innerHTML &&
|
|
1287
|
-
scripts[i].innerHTML.trim() === inlineScriptSource
|
|
1288
|
-
) {
|
|
1289
|
-
return scripts[i];
|
|
1290
|
-
}
|
|
1291
|
-
}
|
|
1292
|
-
|
|
1293
|
-
// If no match, return null
|
|
1294
|
-
return null;
|
|
1295
|
-
}
|
|
1296
|
-
};
|
|
1086
|
+
var documentAll = $documentAll.all;
|
|
1297
1087
|
|
|
1298
|
-
|
|
1299
|
-
|
|
1088
|
+
module.exports = $documentAll.IS_HTMLDDA ? function (it) {
|
|
1089
|
+
return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll;
|
|
1090
|
+
} : function (it) {
|
|
1091
|
+
return typeof it == 'object' ? it !== null : isCallable(it);
|
|
1092
|
+
};
|
|
1300
1093
|
|
|
1301
1094
|
|
|
1302
1095
|
/***/ }),
|
|
@@ -1304,14 +1097,16 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
1304
1097
|
/***/ "8925":
|
|
1305
1098
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1306
1099
|
|
|
1100
|
+
var uncurryThis = __webpack_require__("e330");
|
|
1101
|
+
var isCallable = __webpack_require__("1626");
|
|
1307
1102
|
var store = __webpack_require__("c6cd");
|
|
1308
1103
|
|
|
1309
|
-
var functionToString = Function.toString;
|
|
1104
|
+
var functionToString = uncurryThis(Function.toString);
|
|
1310
1105
|
|
|
1311
|
-
// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper
|
|
1312
|
-
if (
|
|
1106
|
+
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
1107
|
+
if (!isCallable(store.inspectSource)) {
|
|
1313
1108
|
store.inspectSource = function (it) {
|
|
1314
|
-
return functionToString
|
|
1109
|
+
return functionToString(it);
|
|
1315
1110
|
};
|
|
1316
1111
|
}
|
|
1317
1112
|
|
|
@@ -1320,37 +1115,40 @@ module.exports = store.inspectSource;
|
|
|
1320
1115
|
|
|
1321
1116
|
/***/ }),
|
|
1322
1117
|
|
|
1323
|
-
/***/ "
|
|
1324
|
-
/***/ (function(module, exports
|
|
1118
|
+
/***/ "8bbf":
|
|
1119
|
+
/***/ (function(module, exports) {
|
|
1325
1120
|
|
|
1326
|
-
|
|
1121
|
+
module.exports = require("vue");
|
|
1327
1122
|
|
|
1328
|
-
|
|
1123
|
+
/***/ }),
|
|
1329
1124
|
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
module.exports = function (S, index, unicode) {
|
|
1333
|
-
return index + (unicode ? charAt(S, index).length : 1);
|
|
1334
|
-
};
|
|
1125
|
+
/***/ "8ea1":
|
|
1126
|
+
/***/ (function(module, exports) {
|
|
1335
1127
|
|
|
1128
|
+
var documentAll = typeof document == 'object' && document.all;
|
|
1336
1129
|
|
|
1337
|
-
|
|
1130
|
+
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
1131
|
+
var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
|
|
1338
1132
|
|
|
1339
|
-
|
|
1340
|
-
|
|
1133
|
+
module.exports = {
|
|
1134
|
+
all: documentAll,
|
|
1135
|
+
IS_HTMLDDA: IS_HTMLDDA
|
|
1136
|
+
};
|
|
1341
1137
|
|
|
1342
|
-
module.exports = require("vue");
|
|
1343
1138
|
|
|
1344
1139
|
/***/ }),
|
|
1345
1140
|
|
|
1346
1141
|
/***/ "90e3":
|
|
1347
|
-
/***/ (function(module, exports) {
|
|
1142
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1143
|
+
|
|
1144
|
+
var uncurryThis = __webpack_require__("e330");
|
|
1348
1145
|
|
|
1349
1146
|
var id = 0;
|
|
1350
1147
|
var postfix = Math.random();
|
|
1148
|
+
var toString = uncurryThis(1.0.toString);
|
|
1351
1149
|
|
|
1352
1150
|
module.exports = function (key) {
|
|
1353
|
-
return 'Symbol(' +
|
|
1151
|
+
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
|
|
1354
1152
|
};
|
|
1355
1153
|
|
|
1356
1154
|
|
|
@@ -1371,108 +1169,13 @@ module.exports = DESCRIPTORS ? function (object, key, value) {
|
|
|
1371
1169
|
};
|
|
1372
1170
|
|
|
1373
1171
|
|
|
1374
|
-
/***/ }),
|
|
1375
|
-
|
|
1376
|
-
/***/ "9263":
|
|
1377
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
1378
|
-
|
|
1379
|
-
"use strict";
|
|
1380
|
-
|
|
1381
|
-
var regexpFlags = __webpack_require__("ad6d");
|
|
1382
|
-
var stickyHelpers = __webpack_require__("9f7f");
|
|
1383
|
-
|
|
1384
|
-
var nativeExec = RegExp.prototype.exec;
|
|
1385
|
-
// This always refers to the native implementation, because the
|
|
1386
|
-
// String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,
|
|
1387
|
-
// which loads this file before patching the method.
|
|
1388
|
-
var nativeReplace = String.prototype.replace;
|
|
1389
|
-
|
|
1390
|
-
var patchedExec = nativeExec;
|
|
1391
|
-
|
|
1392
|
-
var UPDATES_LAST_INDEX_WRONG = (function () {
|
|
1393
|
-
var re1 = /a/;
|
|
1394
|
-
var re2 = /b*/g;
|
|
1395
|
-
nativeExec.call(re1, 'a');
|
|
1396
|
-
nativeExec.call(re2, 'a');
|
|
1397
|
-
return re1.lastIndex !== 0 || re2.lastIndex !== 0;
|
|
1398
|
-
})();
|
|
1399
|
-
|
|
1400
|
-
var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y || stickyHelpers.BROKEN_CARET;
|
|
1401
|
-
|
|
1402
|
-
// nonparticipating capturing group, copied from es5-shim's String#split patch.
|
|
1403
|
-
// eslint-disable-next-line regexp/no-assertion-capturing-group, regexp/no-empty-group -- required for testing
|
|
1404
|
-
var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
|
|
1405
|
-
|
|
1406
|
-
var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y;
|
|
1407
|
-
|
|
1408
|
-
if (PATCH) {
|
|
1409
|
-
patchedExec = function exec(str) {
|
|
1410
|
-
var re = this;
|
|
1411
|
-
var lastIndex, reCopy, match, i;
|
|
1412
|
-
var sticky = UNSUPPORTED_Y && re.sticky;
|
|
1413
|
-
var flags = regexpFlags.call(re);
|
|
1414
|
-
var source = re.source;
|
|
1415
|
-
var charsAdded = 0;
|
|
1416
|
-
var strCopy = str;
|
|
1417
|
-
|
|
1418
|
-
if (sticky) {
|
|
1419
|
-
flags = flags.replace('y', '');
|
|
1420
|
-
if (flags.indexOf('g') === -1) {
|
|
1421
|
-
flags += 'g';
|
|
1422
|
-
}
|
|
1423
|
-
|
|
1424
|
-
strCopy = String(str).slice(re.lastIndex);
|
|
1425
|
-
// Support anchored sticky behavior.
|
|
1426
|
-
if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\n')) {
|
|
1427
|
-
source = '(?: ' + source + ')';
|
|
1428
|
-
strCopy = ' ' + strCopy;
|
|
1429
|
-
charsAdded++;
|
|
1430
|
-
}
|
|
1431
|
-
// ^(? + rx + ) is needed, in combination with some str slicing, to
|
|
1432
|
-
// simulate the 'y' flag.
|
|
1433
|
-
reCopy = new RegExp('^(?:' + source + ')', flags);
|
|
1434
|
-
}
|
|
1435
|
-
|
|
1436
|
-
if (NPCG_INCLUDED) {
|
|
1437
|
-
reCopy = new RegExp('^' + source + '$(?!\\s)', flags);
|
|
1438
|
-
}
|
|
1439
|
-
if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
|
|
1440
|
-
|
|
1441
|
-
match = nativeExec.call(sticky ? reCopy : re, strCopy);
|
|
1442
|
-
|
|
1443
|
-
if (sticky) {
|
|
1444
|
-
if (match) {
|
|
1445
|
-
match.input = match.input.slice(charsAdded);
|
|
1446
|
-
match[0] = match[0].slice(charsAdded);
|
|
1447
|
-
match.index = re.lastIndex;
|
|
1448
|
-
re.lastIndex += match[0].length;
|
|
1449
|
-
} else re.lastIndex = 0;
|
|
1450
|
-
} else if (UPDATES_LAST_INDEX_WRONG && match) {
|
|
1451
|
-
re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
|
|
1452
|
-
}
|
|
1453
|
-
if (NPCG_INCLUDED && match && match.length > 1) {
|
|
1454
|
-
// Fix browsers whose `exec` methods don't consistently return `undefined`
|
|
1455
|
-
// for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
|
|
1456
|
-
nativeReplace.call(match[0], reCopy, function () {
|
|
1457
|
-
for (i = 1; i < arguments.length - 2; i++) {
|
|
1458
|
-
if (arguments[i] === undefined) match[i] = undefined;
|
|
1459
|
-
}
|
|
1460
|
-
});
|
|
1461
|
-
}
|
|
1462
|
-
|
|
1463
|
-
return match;
|
|
1464
|
-
};
|
|
1465
|
-
}
|
|
1466
|
-
|
|
1467
|
-
module.exports = patchedExec;
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
1172
|
/***/ }),
|
|
1471
1173
|
|
|
1472
1174
|
/***/ "94ca":
|
|
1473
1175
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1474
1176
|
|
|
1475
1177
|
var fails = __webpack_require__("d039");
|
|
1178
|
+
var isCallable = __webpack_require__("1626");
|
|
1476
1179
|
|
|
1477
1180
|
var replacement = /#|\.prototype\./;
|
|
1478
1181
|
|
|
@@ -1480,7 +1183,7 @@ var isForced = function (feature, detection) {
|
|
|
1480
1183
|
var value = data[normalize(feature)];
|
|
1481
1184
|
return value == POLYFILL ? true
|
|
1482
1185
|
: value == NATIVE ? false
|
|
1483
|
-
:
|
|
1186
|
+
: isCallable(detection) ? fails(detection)
|
|
1484
1187
|
: !!detection;
|
|
1485
1188
|
};
|
|
1486
1189
|
|
|
@@ -1495,75 +1198,6 @@ var POLYFILL = isForced.POLYFILL = 'P';
|
|
|
1495
1198
|
module.exports = isForced;
|
|
1496
1199
|
|
|
1497
1200
|
|
|
1498
|
-
/***/ }),
|
|
1499
|
-
|
|
1500
|
-
/***/ "99af":
|
|
1501
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
1502
|
-
|
|
1503
|
-
"use strict";
|
|
1504
|
-
|
|
1505
|
-
var $ = __webpack_require__("23e7");
|
|
1506
|
-
var fails = __webpack_require__("d039");
|
|
1507
|
-
var isArray = __webpack_require__("e8b5");
|
|
1508
|
-
var isObject = __webpack_require__("861d");
|
|
1509
|
-
var toObject = __webpack_require__("7b0b");
|
|
1510
|
-
var toLength = __webpack_require__("50c4");
|
|
1511
|
-
var createProperty = __webpack_require__("8418");
|
|
1512
|
-
var arraySpeciesCreate = __webpack_require__("65f0");
|
|
1513
|
-
var arrayMethodHasSpeciesSupport = __webpack_require__("1dde");
|
|
1514
|
-
var wellKnownSymbol = __webpack_require__("b622");
|
|
1515
|
-
var V8_VERSION = __webpack_require__("2d00");
|
|
1516
|
-
|
|
1517
|
-
var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
|
|
1518
|
-
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
|
|
1519
|
-
var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
|
|
1520
|
-
|
|
1521
|
-
// We can't use this feature detection in V8 since it causes
|
|
1522
|
-
// deoptimization and serious performance degradation
|
|
1523
|
-
// https://github.com/zloirock/core-js/issues/679
|
|
1524
|
-
var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {
|
|
1525
|
-
var array = [];
|
|
1526
|
-
array[IS_CONCAT_SPREADABLE] = false;
|
|
1527
|
-
return array.concat()[0] !== array;
|
|
1528
|
-
});
|
|
1529
|
-
|
|
1530
|
-
var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
|
|
1531
|
-
|
|
1532
|
-
var isConcatSpreadable = function (O) {
|
|
1533
|
-
if (!isObject(O)) return false;
|
|
1534
|
-
var spreadable = O[IS_CONCAT_SPREADABLE];
|
|
1535
|
-
return spreadable !== undefined ? !!spreadable : isArray(O);
|
|
1536
|
-
};
|
|
1537
|
-
|
|
1538
|
-
var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
|
|
1539
|
-
|
|
1540
|
-
// `Array.prototype.concat` method
|
|
1541
|
-
// https://tc39.es/ecma262/#sec-array.prototype.concat
|
|
1542
|
-
// with adding support of @@isConcatSpreadable and @@species
|
|
1543
|
-
$({ target: 'Array', proto: true, forced: FORCED }, {
|
|
1544
|
-
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
|
1545
|
-
concat: function concat(arg) {
|
|
1546
|
-
var O = toObject(this);
|
|
1547
|
-
var A = arraySpeciesCreate(O, 0);
|
|
1548
|
-
var n = 0;
|
|
1549
|
-
var i, k, length, len, E;
|
|
1550
|
-
for (i = -1, length = arguments.length; i < length; i++) {
|
|
1551
|
-
E = i === -1 ? O : arguments[i];
|
|
1552
|
-
if (isConcatSpreadable(E)) {
|
|
1553
|
-
len = toLength(E.length);
|
|
1554
|
-
if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
|
|
1555
|
-
for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
|
|
1556
|
-
} else {
|
|
1557
|
-
if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
|
|
1558
|
-
createProperty(A, n++, E);
|
|
1559
|
-
}
|
|
1560
|
-
}
|
|
1561
|
-
A.length = n;
|
|
1562
|
-
return A;
|
|
1563
|
-
}
|
|
1564
|
-
});
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
1201
|
/***/ }),
|
|
1568
1202
|
|
|
1569
1203
|
/***/ "9bf2":
|
|
@@ -1571,21 +1205,44 @@ $({ target: 'Array', proto: true, forced: FORCED }, {
|
|
|
1571
1205
|
|
|
1572
1206
|
var DESCRIPTORS = __webpack_require__("83ab");
|
|
1573
1207
|
var IE8_DOM_DEFINE = __webpack_require__("0cfb");
|
|
1208
|
+
var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__("aed9");
|
|
1574
1209
|
var anObject = __webpack_require__("825a");
|
|
1575
|
-
var
|
|
1210
|
+
var toPropertyKey = __webpack_require__("a04b");
|
|
1576
1211
|
|
|
1577
|
-
var
|
|
1212
|
+
var $TypeError = TypeError;
|
|
1213
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1214
|
+
var $defineProperty = Object.defineProperty;
|
|
1215
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1216
|
+
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
1217
|
+
var ENUMERABLE = 'enumerable';
|
|
1218
|
+
var CONFIGURABLE = 'configurable';
|
|
1219
|
+
var WRITABLE = 'writable';
|
|
1578
1220
|
|
|
1579
1221
|
// `Object.defineProperty` method
|
|
1580
1222
|
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
1581
|
-
exports.f = DESCRIPTORS ?
|
|
1223
|
+
exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
|
|
1582
1224
|
anObject(O);
|
|
1583
|
-
P =
|
|
1225
|
+
P = toPropertyKey(P);
|
|
1226
|
+
anObject(Attributes);
|
|
1227
|
+
if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
|
|
1228
|
+
var current = $getOwnPropertyDescriptor(O, P);
|
|
1229
|
+
if (current && current[WRITABLE]) {
|
|
1230
|
+
O[P] = Attributes.value;
|
|
1231
|
+
Attributes = {
|
|
1232
|
+
configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
|
|
1233
|
+
enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
|
|
1234
|
+
writable: false
|
|
1235
|
+
};
|
|
1236
|
+
}
|
|
1237
|
+
} return $defineProperty(O, P, Attributes);
|
|
1238
|
+
} : $defineProperty : function defineProperty(O, P, Attributes) {
|
|
1239
|
+
anObject(O);
|
|
1240
|
+
P = toPropertyKey(P);
|
|
1584
1241
|
anObject(Attributes);
|
|
1585
1242
|
if (IE8_DOM_DEFINE) try {
|
|
1586
|
-
return
|
|
1243
|
+
return $defineProperty(O, P, Attributes);
|
|
1587
1244
|
} catch (error) { /* empty */ }
|
|
1588
|
-
if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
|
|
1245
|
+
if ('get' in Attributes || 'set' in Attributes) throw $TypeError('Accessors not supported');
|
|
1589
1246
|
if ('value' in Attributes) O[P] = Attributes.value;
|
|
1590
1247
|
return O;
|
|
1591
1248
|
};
|
|
@@ -1593,33 +1250,18 @@ exports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, A
|
|
|
1593
1250
|
|
|
1594
1251
|
/***/ }),
|
|
1595
1252
|
|
|
1596
|
-
/***/ "
|
|
1253
|
+
/***/ "a04b":
|
|
1597
1254
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1598
1255
|
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
var fails = __webpack_require__("d039");
|
|
1603
|
-
|
|
1604
|
-
// babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError,
|
|
1605
|
-
// so we use an intermediate function.
|
|
1606
|
-
function RE(s, f) {
|
|
1607
|
-
return RegExp(s, f);
|
|
1608
|
-
}
|
|
1609
|
-
|
|
1610
|
-
exports.UNSUPPORTED_Y = fails(function () {
|
|
1611
|
-
// babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
|
|
1612
|
-
var re = RE('a', 'y');
|
|
1613
|
-
re.lastIndex = 2;
|
|
1614
|
-
return re.exec('abcd') != null;
|
|
1615
|
-
});
|
|
1256
|
+
var toPrimitive = __webpack_require__("c04e");
|
|
1257
|
+
var isSymbol = __webpack_require__("d9b5");
|
|
1616
1258
|
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
return
|
|
1622
|
-
}
|
|
1259
|
+
// `ToPropertyKey` abstract operation
|
|
1260
|
+
// https://tc39.es/ecma262/#sec-topropertykey
|
|
1261
|
+
module.exports = function (argument) {
|
|
1262
|
+
var key = toPrimitive(argument, 'string');
|
|
1263
|
+
return isSymbol(key) ? key : key + '';
|
|
1264
|
+
};
|
|
1623
1265
|
|
|
1624
1266
|
|
|
1625
1267
|
/***/ }),
|
|
@@ -1631,209 +1273,71 @@ exports.BROKEN_CARET = fails(function () {
|
|
|
1631
1273
|
|
|
1632
1274
|
/***/ }),
|
|
1633
1275
|
|
|
1634
|
-
/***/ "
|
|
1635
|
-
/***/ (function(module, exports) {
|
|
1636
|
-
|
|
1637
|
-
var ceil = Math.ceil;
|
|
1638
|
-
var floor = Math.floor;
|
|
1639
|
-
|
|
1640
|
-
// `ToInteger` abstract operation
|
|
1641
|
-
// https://tc39.es/ecma262/#sec-tointeger
|
|
1642
|
-
module.exports = function (argument) {
|
|
1643
|
-
return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
|
|
1644
|
-
};
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
/***/ }),
|
|
1648
|
-
|
|
1649
|
-
/***/ "a9e3":
|
|
1276
|
+
/***/ "ab36":
|
|
1650
1277
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1651
1278
|
|
|
1652
|
-
|
|
1279
|
+
var isObject = __webpack_require__("861d");
|
|
1280
|
+
var createNonEnumerableProperty = __webpack_require__("9112");
|
|
1653
1281
|
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
var classof = __webpack_require__("c6b6");
|
|
1660
|
-
var inheritIfRequired = __webpack_require__("7156");
|
|
1661
|
-
var toPrimitive = __webpack_require__("c04e");
|
|
1662
|
-
var fails = __webpack_require__("d039");
|
|
1663
|
-
var create = __webpack_require__("7c73");
|
|
1664
|
-
var getOwnPropertyNames = __webpack_require__("241c").f;
|
|
1665
|
-
var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
|
|
1666
|
-
var defineProperty = __webpack_require__("9bf2").f;
|
|
1667
|
-
var trim = __webpack_require__("58a8").trim;
|
|
1668
|
-
|
|
1669
|
-
var NUMBER = 'Number';
|
|
1670
|
-
var NativeNumber = global[NUMBER];
|
|
1671
|
-
var NumberPrototype = NativeNumber.prototype;
|
|
1672
|
-
|
|
1673
|
-
// Opera ~12 has broken Object#toString
|
|
1674
|
-
var BROKEN_CLASSOF = classof(create(NumberPrototype)) == NUMBER;
|
|
1675
|
-
|
|
1676
|
-
// `ToNumber` abstract operation
|
|
1677
|
-
// https://tc39.es/ecma262/#sec-tonumber
|
|
1678
|
-
var toNumber = function (argument) {
|
|
1679
|
-
var it = toPrimitive(argument, false);
|
|
1680
|
-
var first, third, radix, maxCode, digits, length, index, code;
|
|
1681
|
-
if (typeof it == 'string' && it.length > 2) {
|
|
1682
|
-
it = trim(it);
|
|
1683
|
-
first = it.charCodeAt(0);
|
|
1684
|
-
if (first === 43 || first === 45) {
|
|
1685
|
-
third = it.charCodeAt(2);
|
|
1686
|
-
if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix
|
|
1687
|
-
} else if (first === 48) {
|
|
1688
|
-
switch (it.charCodeAt(1)) {
|
|
1689
|
-
case 66: case 98: radix = 2; maxCode = 49; break; // fast equal of /^0b[01]+$/i
|
|
1690
|
-
case 79: case 111: radix = 8; maxCode = 55; break; // fast equal of /^0o[0-7]+$/i
|
|
1691
|
-
default: return +it;
|
|
1692
|
-
}
|
|
1693
|
-
digits = it.slice(2);
|
|
1694
|
-
length = digits.length;
|
|
1695
|
-
for (index = 0; index < length; index++) {
|
|
1696
|
-
code = digits.charCodeAt(index);
|
|
1697
|
-
// parseInt parses a string to a first unavailable symbol
|
|
1698
|
-
// but ToNumber should return NaN if a string contains unavailable symbols
|
|
1699
|
-
if (code < 48 || code > maxCode) return NaN;
|
|
1700
|
-
} return parseInt(digits, radix);
|
|
1701
|
-
}
|
|
1702
|
-
} return +it;
|
|
1703
|
-
};
|
|
1704
|
-
|
|
1705
|
-
// `Number` constructor
|
|
1706
|
-
// https://tc39.es/ecma262/#sec-number-constructor
|
|
1707
|
-
if (isForced(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'))) {
|
|
1708
|
-
var NumberWrapper = function Number(value) {
|
|
1709
|
-
var it = arguments.length < 1 ? 0 : value;
|
|
1710
|
-
var dummy = this;
|
|
1711
|
-
return dummy instanceof NumberWrapper
|
|
1712
|
-
// check on 1..constructor(foo) case
|
|
1713
|
-
&& (BROKEN_CLASSOF ? fails(function () { NumberPrototype.valueOf.call(dummy); }) : classof(dummy) != NUMBER)
|
|
1714
|
-
? inheritIfRequired(new NativeNumber(toNumber(it)), dummy, NumberWrapper) : toNumber(it);
|
|
1715
|
-
};
|
|
1716
|
-
for (var keys = DESCRIPTORS ? getOwnPropertyNames(NativeNumber) : (
|
|
1717
|
-
// ES3:
|
|
1718
|
-
'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +
|
|
1719
|
-
// ES2015 (in case, if modules with ES2015 Number statics required before):
|
|
1720
|
-
'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +
|
|
1721
|
-
'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger,' +
|
|
1722
|
-
// ESNext
|
|
1723
|
-
'fromString,range'
|
|
1724
|
-
).split(','), j = 0, key; keys.length > j; j++) {
|
|
1725
|
-
if (has(NativeNumber, key = keys[j]) && !has(NumberWrapper, key)) {
|
|
1726
|
-
defineProperty(NumberWrapper, key, getOwnPropertyDescriptor(NativeNumber, key));
|
|
1727
|
-
}
|
|
1282
|
+
// `InstallErrorCause` abstract operation
|
|
1283
|
+
// https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
|
|
1284
|
+
module.exports = function (O, options) {
|
|
1285
|
+
if (isObject(options) && 'cause' in options) {
|
|
1286
|
+
createNonEnumerableProperty(O, 'cause', options.cause);
|
|
1728
1287
|
}
|
|
1729
|
-
NumberWrapper.prototype = NumberPrototype;
|
|
1730
|
-
NumberPrototype.constructor = NumberWrapper;
|
|
1731
|
-
redefine(global, NUMBER, NumberWrapper);
|
|
1732
|
-
}
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
/***/ }),
|
|
1736
|
-
|
|
1737
|
-
/***/ "ac1f":
|
|
1738
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
1739
|
-
|
|
1740
|
-
"use strict";
|
|
1741
|
-
|
|
1742
|
-
var $ = __webpack_require__("23e7");
|
|
1743
|
-
var exec = __webpack_require__("9263");
|
|
1744
|
-
|
|
1745
|
-
// `RegExp.prototype.exec` method
|
|
1746
|
-
// https://tc39.es/ecma262/#sec-regexp.prototype.exec
|
|
1747
|
-
$({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
|
|
1748
|
-
exec: exec
|
|
1749
|
-
});
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
/***/ }),
|
|
1753
|
-
|
|
1754
|
-
/***/ "ad6d":
|
|
1755
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
1756
|
-
|
|
1757
|
-
"use strict";
|
|
1758
|
-
|
|
1759
|
-
var anObject = __webpack_require__("825a");
|
|
1760
|
-
|
|
1761
|
-
// `RegExp.prototype.flags` getter implementation
|
|
1762
|
-
// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
|
|
1763
|
-
module.exports = function () {
|
|
1764
|
-
var that = anObject(this);
|
|
1765
|
-
var result = '';
|
|
1766
|
-
if (that.global) result += 'g';
|
|
1767
|
-
if (that.ignoreCase) result += 'i';
|
|
1768
|
-
if (that.multiline) result += 'm';
|
|
1769
|
-
if (that.dotAll) result += 's';
|
|
1770
|
-
if (that.unicode) result += 'u';
|
|
1771
|
-
if (that.sticky) result += 'y';
|
|
1772
|
-
return result;
|
|
1773
1288
|
};
|
|
1774
1289
|
|
|
1775
1290
|
|
|
1776
1291
|
/***/ }),
|
|
1777
1292
|
|
|
1778
|
-
/***/ "
|
|
1293
|
+
/***/ "aeb0":
|
|
1779
1294
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1780
1295
|
|
|
1781
|
-
var
|
|
1296
|
+
var defineProperty = __webpack_require__("9bf2").f;
|
|
1782
1297
|
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
return test !== test.toLowerCase() || test.split('"').length > 3;
|
|
1298
|
+
module.exports = function (Target, Source, key) {
|
|
1299
|
+
key in Target || defineProperty(Target, key, {
|
|
1300
|
+
configurable: true,
|
|
1301
|
+
get: function () { return Source[key]; },
|
|
1302
|
+
set: function (it) { Source[key] = it; }
|
|
1789
1303
|
});
|
|
1790
1304
|
};
|
|
1791
1305
|
|
|
1792
1306
|
|
|
1793
1307
|
/***/ }),
|
|
1794
1308
|
|
|
1795
|
-
/***/ "
|
|
1309
|
+
/***/ "aed9":
|
|
1796
1310
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1797
1311
|
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
var TO_STRING_TAG_SUPPORT = __webpack_require__("00ee");
|
|
1801
|
-
var classof = __webpack_require__("f5df");
|
|
1312
|
+
var DESCRIPTORS = __webpack_require__("83ab");
|
|
1313
|
+
var fails = __webpack_require__("d039");
|
|
1802
1314
|
|
|
1803
|
-
//
|
|
1804
|
-
// https://
|
|
1805
|
-
module.exports =
|
|
1806
|
-
|
|
1807
|
-
}
|
|
1315
|
+
// V8 ~ Chrome 36-
|
|
1316
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
1317
|
+
module.exports = DESCRIPTORS && fails(function () {
|
|
1318
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
1319
|
+
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
1320
|
+
value: 42,
|
|
1321
|
+
writable: false
|
|
1322
|
+
}).prototype != 42;
|
|
1323
|
+
});
|
|
1808
1324
|
|
|
1809
1325
|
|
|
1810
1326
|
/***/ }),
|
|
1811
1327
|
|
|
1812
|
-
/***/ "
|
|
1813
|
-
/***/ (function(module, exports
|
|
1328
|
+
/***/ "b42e":
|
|
1329
|
+
/***/ (function(module, exports) {
|
|
1814
1330
|
|
|
1815
|
-
var
|
|
1816
|
-
var
|
|
1331
|
+
var ceil = Math.ceil;
|
|
1332
|
+
var floor = Math.floor;
|
|
1817
1333
|
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
if (DESCRIPTORS && !(NAME in FunctionPrototype)) {
|
|
1826
|
-
defineProperty(FunctionPrototype, NAME, {
|
|
1827
|
-
configurable: true,
|
|
1828
|
-
get: function () {
|
|
1829
|
-
try {
|
|
1830
|
-
return FunctionPrototypeToString.call(this).match(nameRE)[1];
|
|
1831
|
-
} catch (error) {
|
|
1832
|
-
return '';
|
|
1833
|
-
}
|
|
1834
|
-
}
|
|
1835
|
-
});
|
|
1836
|
-
}
|
|
1334
|
+
// `Math.trunc` method
|
|
1335
|
+
// https://tc39.es/ecma262/#sec-math.trunc
|
|
1336
|
+
// eslint-disable-next-line es/no-math-trunc -- safe
|
|
1337
|
+
module.exports = Math.trunc || function trunc(x) {
|
|
1338
|
+
var n = +x;
|
|
1339
|
+
return (n > 0 ? floor : ceil)(n);
|
|
1340
|
+
};
|
|
1837
1341
|
|
|
1838
1342
|
|
|
1839
1343
|
/***/ }),
|
|
@@ -1843,44 +1347,76 @@ if (DESCRIPTORS && !(NAME in FunctionPrototype)) {
|
|
|
1843
1347
|
|
|
1844
1348
|
var global = __webpack_require__("da84");
|
|
1845
1349
|
var shared = __webpack_require__("5692");
|
|
1846
|
-
var
|
|
1350
|
+
var hasOwn = __webpack_require__("1a2d");
|
|
1847
1351
|
var uid = __webpack_require__("90e3");
|
|
1848
|
-
var NATIVE_SYMBOL = __webpack_require__("
|
|
1352
|
+
var NATIVE_SYMBOL = __webpack_require__("04f8");
|
|
1849
1353
|
var USE_SYMBOL_AS_UID = __webpack_require__("fdbf");
|
|
1850
1354
|
|
|
1851
1355
|
var WellKnownSymbolsStore = shared('wks');
|
|
1852
1356
|
var Symbol = global.Symbol;
|
|
1357
|
+
var symbolFor = Symbol && Symbol['for'];
|
|
1853
1358
|
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;
|
|
1854
1359
|
|
|
1855
1360
|
module.exports = function (name) {
|
|
1856
|
-
if (!
|
|
1857
|
-
|
|
1361
|
+
if (!hasOwn(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
|
|
1362
|
+
var description = 'Symbol.' + name;
|
|
1363
|
+
if (NATIVE_SYMBOL && hasOwn(Symbol, name)) {
|
|
1858
1364
|
WellKnownSymbolsStore[name] = Symbol[name];
|
|
1365
|
+
} else if (USE_SYMBOL_AS_UID && symbolFor) {
|
|
1366
|
+
WellKnownSymbolsStore[name] = symbolFor(description);
|
|
1859
1367
|
} else {
|
|
1860
|
-
WellKnownSymbolsStore[name] = createWellKnownSymbol(
|
|
1368
|
+
WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
|
|
1861
1369
|
}
|
|
1862
1370
|
} return WellKnownSymbolsStore[name];
|
|
1863
1371
|
};
|
|
1864
1372
|
|
|
1865
1373
|
|
|
1374
|
+
/***/ }),
|
|
1375
|
+
|
|
1376
|
+
/***/ "b980":
|
|
1377
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1378
|
+
|
|
1379
|
+
var fails = __webpack_require__("d039");
|
|
1380
|
+
var createPropertyDescriptor = __webpack_require__("5c6c");
|
|
1381
|
+
|
|
1382
|
+
module.exports = !fails(function () {
|
|
1383
|
+
var error = Error('a');
|
|
1384
|
+
if (!('stack' in error)) return true;
|
|
1385
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1386
|
+
Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
|
|
1387
|
+
return error.stack !== 7;
|
|
1388
|
+
});
|
|
1389
|
+
|
|
1390
|
+
|
|
1866
1391
|
/***/ }),
|
|
1867
1392
|
|
|
1868
1393
|
/***/ "c04e":
|
|
1869
1394
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1870
1395
|
|
|
1396
|
+
var call = __webpack_require__("c65b");
|
|
1871
1397
|
var isObject = __webpack_require__("861d");
|
|
1398
|
+
var isSymbol = __webpack_require__("d9b5");
|
|
1399
|
+
var getMethod = __webpack_require__("dc4a");
|
|
1400
|
+
var ordinaryToPrimitive = __webpack_require__("485a");
|
|
1401
|
+
var wellKnownSymbol = __webpack_require__("b622");
|
|
1402
|
+
|
|
1403
|
+
var $TypeError = TypeError;
|
|
1404
|
+
var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
|
|
1872
1405
|
|
|
1873
1406
|
// `ToPrimitive` abstract operation
|
|
1874
1407
|
// https://tc39.es/ecma262/#sec-toprimitive
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1408
|
+
module.exports = function (input, pref) {
|
|
1409
|
+
if (!isObject(input) || isSymbol(input)) return input;
|
|
1410
|
+
var exoticToPrim = getMethod(input, TO_PRIMITIVE);
|
|
1411
|
+
var result;
|
|
1412
|
+
if (exoticToPrim) {
|
|
1413
|
+
if (pref === undefined) pref = 'default';
|
|
1414
|
+
result = call(exoticToPrim, input, pref);
|
|
1415
|
+
if (!isObject(result) || isSymbol(result)) return result;
|
|
1416
|
+
throw $TypeError("Can't convert object to primitive value");
|
|
1417
|
+
}
|
|
1418
|
+
if (pref === undefined) pref = 'number';
|
|
1419
|
+
return ordinaryToPrimitive(input, pref);
|
|
1884
1420
|
};
|
|
1885
1421
|
|
|
1886
1422
|
|
|
@@ -1894,48 +1430,45 @@ module.exports = false;
|
|
|
1894
1430
|
|
|
1895
1431
|
/***/ }),
|
|
1896
1432
|
|
|
1897
|
-
/***/ "
|
|
1898
|
-
/***/ (function(module, exports) {
|
|
1433
|
+
/***/ "c65b":
|
|
1434
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1899
1435
|
|
|
1900
|
-
var
|
|
1436
|
+
var NATIVE_BIND = __webpack_require__("40d5");
|
|
1901
1437
|
|
|
1902
|
-
|
|
1903
|
-
|
|
1438
|
+
var call = Function.prototype.call;
|
|
1439
|
+
|
|
1440
|
+
module.exports = NATIVE_BIND ? call.bind(call) : function () {
|
|
1441
|
+
return call.apply(call, arguments);
|
|
1904
1442
|
};
|
|
1905
1443
|
|
|
1906
1444
|
|
|
1907
1445
|
/***/ }),
|
|
1908
1446
|
|
|
1909
|
-
/***/ "
|
|
1447
|
+
/***/ "c6b6":
|
|
1910
1448
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1911
1449
|
|
|
1912
|
-
var
|
|
1913
|
-
var setGlobal = __webpack_require__("ce4e");
|
|
1450
|
+
var uncurryThis = __webpack_require__("e330");
|
|
1914
1451
|
|
|
1915
|
-
var
|
|
1916
|
-
var
|
|
1452
|
+
var toString = uncurryThis({}.toString);
|
|
1453
|
+
var stringSlice = uncurryThis(''.slice);
|
|
1917
1454
|
|
|
1918
|
-
module.exports =
|
|
1455
|
+
module.exports = function (it) {
|
|
1456
|
+
return stringSlice(toString(it), 8, -1);
|
|
1457
|
+
};
|
|
1919
1458
|
|
|
1920
1459
|
|
|
1921
1460
|
/***/ }),
|
|
1922
1461
|
|
|
1923
|
-
/***/ "
|
|
1462
|
+
/***/ "c6cd":
|
|
1924
1463
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1925
1464
|
|
|
1926
|
-
|
|
1465
|
+
var global = __webpack_require__("da84");
|
|
1466
|
+
var defineGlobalProperty = __webpack_require__("6374");
|
|
1927
1467
|
|
|
1928
|
-
var
|
|
1929
|
-
var
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
// `String.prototype.fixed` method
|
|
1933
|
-
// https://tc39.es/ecma262/#sec-string.prototype.fixed
|
|
1934
|
-
$({ target: 'String', proto: true, forced: forcedStringHTMLMethod('fixed') }, {
|
|
1935
|
-
fixed: function fixed() {
|
|
1936
|
-
return createHTML(this, 'tt', '', '');
|
|
1937
|
-
}
|
|
1938
|
-
});
|
|
1468
|
+
var SHARED = '__core-js_shared__';
|
|
1469
|
+
var store = global[SHARED] || defineGlobalProperty(SHARED, {});
|
|
1470
|
+
|
|
1471
|
+
module.exports = store;
|
|
1939
1472
|
|
|
1940
1473
|
|
|
1941
1474
|
/***/ }),
|
|
@@ -1970,25 +1503,62 @@ module.exports = g;
|
|
|
1970
1503
|
/***/ "ca84":
|
|
1971
1504
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1972
1505
|
|
|
1973
|
-
var
|
|
1506
|
+
var uncurryThis = __webpack_require__("e330");
|
|
1507
|
+
var hasOwn = __webpack_require__("1a2d");
|
|
1974
1508
|
var toIndexedObject = __webpack_require__("fc6a");
|
|
1975
1509
|
var indexOf = __webpack_require__("4d64").indexOf;
|
|
1976
1510
|
var hiddenKeys = __webpack_require__("d012");
|
|
1977
1511
|
|
|
1512
|
+
var push = uncurryThis([].push);
|
|
1513
|
+
|
|
1978
1514
|
module.exports = function (object, names) {
|
|
1979
1515
|
var O = toIndexedObject(object);
|
|
1980
1516
|
var i = 0;
|
|
1981
1517
|
var result = [];
|
|
1982
1518
|
var key;
|
|
1983
|
-
for (key in O) !
|
|
1519
|
+
for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
|
|
1984
1520
|
// Don't enum bug & hidden keys
|
|
1985
|
-
while (names.length > i) if (
|
|
1986
|
-
~indexOf(result, key) ||
|
|
1521
|
+
while (names.length > i) if (hasOwn(O, key = names[i++])) {
|
|
1522
|
+
~indexOf(result, key) || push(result, key);
|
|
1987
1523
|
}
|
|
1988
1524
|
return result;
|
|
1989
1525
|
};
|
|
1990
1526
|
|
|
1991
1527
|
|
|
1528
|
+
/***/ }),
|
|
1529
|
+
|
|
1530
|
+
/***/ "cb2d":
|
|
1531
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1532
|
+
|
|
1533
|
+
var isCallable = __webpack_require__("1626");
|
|
1534
|
+
var definePropertyModule = __webpack_require__("9bf2");
|
|
1535
|
+
var makeBuiltIn = __webpack_require__("13d2");
|
|
1536
|
+
var defineGlobalProperty = __webpack_require__("6374");
|
|
1537
|
+
|
|
1538
|
+
module.exports = function (O, key, value, options) {
|
|
1539
|
+
if (!options) options = {};
|
|
1540
|
+
var simple = options.enumerable;
|
|
1541
|
+
var name = options.name !== undefined ? options.name : key;
|
|
1542
|
+
if (isCallable(value)) makeBuiltIn(value, name, options);
|
|
1543
|
+
if (options.global) {
|
|
1544
|
+
if (simple) O[key] = value;
|
|
1545
|
+
else defineGlobalProperty(key, value);
|
|
1546
|
+
} else {
|
|
1547
|
+
try {
|
|
1548
|
+
if (!options.unsafe) delete O[key];
|
|
1549
|
+
else if (O[key]) simple = true;
|
|
1550
|
+
} catch (error) { /* empty */ }
|
|
1551
|
+
if (simple) O[key] = value;
|
|
1552
|
+
else definePropertyModule.f(O, key, {
|
|
1553
|
+
value: value,
|
|
1554
|
+
enumerable: false,
|
|
1555
|
+
configurable: !options.nonConfigurable,
|
|
1556
|
+
writable: !options.nonWritable
|
|
1557
|
+
});
|
|
1558
|
+
} return O;
|
|
1559
|
+
};
|
|
1560
|
+
|
|
1561
|
+
|
|
1992
1562
|
/***/ }),
|
|
1993
1563
|
|
|
1994
1564
|
/***/ "cc12":
|
|
@@ -2008,19 +1578,15 @@ module.exports = function (it) {
|
|
|
2008
1578
|
|
|
2009
1579
|
/***/ }),
|
|
2010
1580
|
|
|
2011
|
-
/***/ "
|
|
1581
|
+
/***/ "cdce":
|
|
2012
1582
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2013
1583
|
|
|
2014
1584
|
var global = __webpack_require__("da84");
|
|
2015
|
-
var
|
|
1585
|
+
var isCallable = __webpack_require__("1626");
|
|
2016
1586
|
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
} catch (error) {
|
|
2021
|
-
global[key] = value;
|
|
2022
|
-
} return value;
|
|
2023
|
-
};
|
|
1587
|
+
var WeakMap = global.WeakMap;
|
|
1588
|
+
|
|
1589
|
+
module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
|
|
2024
1590
|
|
|
2025
1591
|
|
|
2026
1592
|
/***/ }),
|
|
@@ -2050,16 +1616,15 @@ module.exports = function (exec) {
|
|
|
2050
1616
|
/***/ "d066":
|
|
2051
1617
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2052
1618
|
|
|
2053
|
-
var path = __webpack_require__("428f");
|
|
2054
1619
|
var global = __webpack_require__("da84");
|
|
1620
|
+
var isCallable = __webpack_require__("1626");
|
|
2055
1621
|
|
|
2056
|
-
var aFunction = function (
|
|
2057
|
-
return
|
|
1622
|
+
var aFunction = function (argument) {
|
|
1623
|
+
return isCallable(argument) ? argument : undefined;
|
|
2058
1624
|
};
|
|
2059
1625
|
|
|
2060
1626
|
module.exports = function (namespace, method) {
|
|
2061
|
-
return arguments.length < 2 ? aFunction(
|
|
2062
|
-
: path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];
|
|
1627
|
+
return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method];
|
|
2063
1628
|
};
|
|
2064
1629
|
|
|
2065
1630
|
|
|
@@ -2070,18 +1635,19 @@ module.exports = function (namespace, method) {
|
|
|
2070
1635
|
|
|
2071
1636
|
"use strict";
|
|
2072
1637
|
|
|
2073
|
-
var
|
|
1638
|
+
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
1639
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
2074
1640
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
2075
1641
|
|
|
2076
1642
|
// Nashorn ~ JDK8 bug
|
|
2077
|
-
var NASHORN_BUG = getOwnPropertyDescriptor &&
|
|
1643
|
+
var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
|
|
2078
1644
|
|
|
2079
1645
|
// `Object.prototype.propertyIsEnumerable` method implementation
|
|
2080
1646
|
// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
|
|
2081
1647
|
exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
2082
1648
|
var descriptor = getOwnPropertyDescriptor(this, V);
|
|
2083
1649
|
return !!descriptor && descriptor.enumerable;
|
|
2084
|
-
} :
|
|
1650
|
+
} : $propertyIsEnumerable;
|
|
2085
1651
|
|
|
2086
1652
|
|
|
2087
1653
|
/***/ }),
|
|
@@ -2090,25 +1656,28 @@ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
|
2090
1656
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2091
1657
|
|
|
2092
1658
|
/* eslint-disable no-proto -- safe */
|
|
1659
|
+
var uncurryThis = __webpack_require__("e330");
|
|
2093
1660
|
var anObject = __webpack_require__("825a");
|
|
2094
1661
|
var aPossiblePrototype = __webpack_require__("3bbe");
|
|
2095
1662
|
|
|
2096
1663
|
// `Object.setPrototypeOf` method
|
|
2097
1664
|
// https://tc39.es/ecma262/#sec-object.setprototypeof
|
|
2098
1665
|
// Works with __proto__ only. Old v8 can't work with null proto objects.
|
|
1666
|
+
// eslint-disable-next-line es/no-object-setprototypeof -- safe
|
|
2099
1667
|
module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
2100
1668
|
var CORRECT_SETTER = false;
|
|
2101
1669
|
var test = {};
|
|
2102
1670
|
var setter;
|
|
2103
1671
|
try {
|
|
2104
|
-
|
|
2105
|
-
setter.
|
|
1672
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1673
|
+
setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
|
|
1674
|
+
setter(test, []);
|
|
2106
1675
|
CORRECT_SETTER = test instanceof Array;
|
|
2107
1676
|
} catch (error) { /* empty */ }
|
|
2108
1677
|
return function setPrototypeOf(O, proto) {
|
|
2109
1678
|
anObject(O);
|
|
2110
1679
|
aPossiblePrototype(proto);
|
|
2111
|
-
if (CORRECT_SETTER) setter
|
|
1680
|
+
if (CORRECT_SETTER) setter(O, proto);
|
|
2112
1681
|
else O.__proto__ = proto;
|
|
2113
1682
|
return O;
|
|
2114
1683
|
};
|
|
@@ -2117,153 +1686,86 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
|
2117
1686
|
|
|
2118
1687
|
/***/ }),
|
|
2119
1688
|
|
|
2120
|
-
/***/ "
|
|
1689
|
+
/***/ "d9b5":
|
|
2121
1690
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2122
1691
|
|
|
2123
|
-
var
|
|
2124
|
-
var
|
|
2125
|
-
var
|
|
1692
|
+
var getBuiltIn = __webpack_require__("d066");
|
|
1693
|
+
var isCallable = __webpack_require__("1626");
|
|
1694
|
+
var isPrototypeOf = __webpack_require__("3a9b");
|
|
1695
|
+
var USE_SYMBOL_AS_UID = __webpack_require__("fdbf");
|
|
2126
1696
|
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
}
|
|
1697
|
+
var $Object = Object;
|
|
1698
|
+
|
|
1699
|
+
module.exports = USE_SYMBOL_AS_UID ? function (it) {
|
|
1700
|
+
return typeof it == 'symbol';
|
|
1701
|
+
} : function (it) {
|
|
1702
|
+
var $Symbol = getBuiltIn('Symbol');
|
|
1703
|
+
return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
|
|
1704
|
+
};
|
|
2132
1705
|
|
|
2133
1706
|
|
|
2134
1707
|
/***/ }),
|
|
2135
1708
|
|
|
2136
|
-
/***/ "
|
|
1709
|
+
/***/ "d9e2":
|
|
2137
1710
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2138
1711
|
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
__webpack_require__("
|
|
2143
|
-
var
|
|
2144
|
-
var fails = __webpack_require__("d039");
|
|
2145
|
-
var wellKnownSymbol = __webpack_require__("b622");
|
|
2146
|
-
var regexpExec = __webpack_require__("9263");
|
|
2147
|
-
var createNonEnumerableProperty = __webpack_require__("9112");
|
|
2148
|
-
|
|
2149
|
-
var SPECIES = wellKnownSymbol('species');
|
|
2150
|
-
|
|
2151
|
-
var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
|
|
2152
|
-
// #replace needs built-in support for named groups.
|
|
2153
|
-
// #match works fine because it just return the exec results, even if it has
|
|
2154
|
-
// a "grops" property.
|
|
2155
|
-
var re = /./;
|
|
2156
|
-
re.exec = function () {
|
|
2157
|
-
var result = [];
|
|
2158
|
-
result.groups = { a: '7' };
|
|
2159
|
-
return result;
|
|
2160
|
-
};
|
|
2161
|
-
return ''.replace(re, '$<a>') !== '7';
|
|
2162
|
-
});
|
|
2163
|
-
|
|
2164
|
-
// IE <= 11 replaces $0 with the whole match, as if it was $&
|
|
2165
|
-
// https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0
|
|
2166
|
-
var REPLACE_KEEPS_$0 = (function () {
|
|
2167
|
-
return 'a'.replace(/./, '$0') === '$0';
|
|
2168
|
-
})();
|
|
1712
|
+
/* eslint-disable no-unused-vars -- required for functions `.length` */
|
|
1713
|
+
var $ = __webpack_require__("23e7");
|
|
1714
|
+
var global = __webpack_require__("da84");
|
|
1715
|
+
var apply = __webpack_require__("2ba4");
|
|
1716
|
+
var wrapErrorConstructorWithCause = __webpack_require__("e5cb");
|
|
2169
1717
|
|
|
2170
|
-
var
|
|
2171
|
-
|
|
2172
|
-
var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () {
|
|
2173
|
-
if (/./[REPLACE]) {
|
|
2174
|
-
return /./[REPLACE]('a', '$0') === '';
|
|
2175
|
-
}
|
|
2176
|
-
return false;
|
|
2177
|
-
})();
|
|
1718
|
+
var WEB_ASSEMBLY = 'WebAssembly';
|
|
1719
|
+
var WebAssembly = global[WEB_ASSEMBLY];
|
|
2178
1720
|
|
|
2179
|
-
|
|
2180
|
-
// Weex JS has frozen built-in prototypes, so use try / catch wrapper
|
|
2181
|
-
var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {
|
|
2182
|
-
// eslint-disable-next-line regexp/no-empty-group -- required for testing
|
|
2183
|
-
var re = /(?:)/;
|
|
2184
|
-
var originalExec = re.exec;
|
|
2185
|
-
re.exec = function () { return originalExec.apply(this, arguments); };
|
|
2186
|
-
var result = 'ab'.split(re);
|
|
2187
|
-
return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
|
|
2188
|
-
});
|
|
1721
|
+
var FORCED = Error('e', { cause: 7 }).cause !== 7;
|
|
2189
1722
|
|
|
2190
|
-
|
|
2191
|
-
var
|
|
1723
|
+
var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
|
|
1724
|
+
var O = {};
|
|
1725
|
+
O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
|
|
1726
|
+
$({ global: true, constructor: true, arity: 1, forced: FORCED }, O);
|
|
1727
|
+
};
|
|
2192
1728
|
|
|
2193
|
-
|
|
2194
|
-
|
|
1729
|
+
var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
|
|
1730
|
+
if (WebAssembly && WebAssembly[ERROR_NAME]) {
|
|
2195
1731
|
var O = {};
|
|
2196
|
-
O[
|
|
2197
|
-
|
|
2198
|
-
});
|
|
2199
|
-
|
|
2200
|
-
var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
|
|
2201
|
-
// Symbol-named RegExp methods call .exec
|
|
2202
|
-
var execCalled = false;
|
|
2203
|
-
var re = /a/;
|
|
2204
|
-
|
|
2205
|
-
if (KEY === 'split') {
|
|
2206
|
-
// We can't use real regex here since it causes deoptimization
|
|
2207
|
-
// and serious performance degradation in V8
|
|
2208
|
-
// https://github.com/zloirock/core-js/issues/306
|
|
2209
|
-
re = {};
|
|
2210
|
-
// RegExp[@@split] doesn't call the regex's exec method, but first creates
|
|
2211
|
-
// a new one. We need to return the patched regex when creating the new one.
|
|
2212
|
-
re.constructor = {};
|
|
2213
|
-
re.constructor[SPECIES] = function () { return re; };
|
|
2214
|
-
re.flags = '';
|
|
2215
|
-
re[SYMBOL] = /./[SYMBOL];
|
|
2216
|
-
}
|
|
2217
|
-
|
|
2218
|
-
re.exec = function () { execCalled = true; return null; };
|
|
2219
|
-
|
|
2220
|
-
re[SYMBOL]('');
|
|
2221
|
-
return !execCalled;
|
|
2222
|
-
});
|
|
2223
|
-
|
|
2224
|
-
if (
|
|
2225
|
-
!DELEGATES_TO_SYMBOL ||
|
|
2226
|
-
!DELEGATES_TO_EXEC ||
|
|
2227
|
-
(KEY === 'replace' && !(
|
|
2228
|
-
REPLACE_SUPPORTS_NAMED_GROUPS &&
|
|
2229
|
-
REPLACE_KEEPS_$0 &&
|
|
2230
|
-
!REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE
|
|
2231
|
-
)) ||
|
|
2232
|
-
(KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)
|
|
2233
|
-
) {
|
|
2234
|
-
var nativeRegExpMethod = /./[SYMBOL];
|
|
2235
|
-
var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
|
|
2236
|
-
if (regexp.exec === regexpExec) {
|
|
2237
|
-
if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
|
|
2238
|
-
// The native String method already delegates to @@method (this
|
|
2239
|
-
// polyfilled function), leasing to infinite recursion.
|
|
2240
|
-
// We avoid it by directly calling the native @@method method.
|
|
2241
|
-
return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
|
|
2242
|
-
}
|
|
2243
|
-
return { done: true, value: nativeMethod.call(str, regexp, arg2) };
|
|
2244
|
-
}
|
|
2245
|
-
return { done: false };
|
|
2246
|
-
}, {
|
|
2247
|
-
REPLACE_KEEPS_$0: REPLACE_KEEPS_$0,
|
|
2248
|
-
REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE: REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE
|
|
2249
|
-
});
|
|
2250
|
-
var stringMethod = methods[0];
|
|
2251
|
-
var regexMethod = methods[1];
|
|
2252
|
-
|
|
2253
|
-
redefine(String.prototype, KEY, stringMethod);
|
|
2254
|
-
redefine(RegExp.prototype, SYMBOL, length == 2
|
|
2255
|
-
// 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
|
|
2256
|
-
// 21.2.5.11 RegExp.prototype[@@split](string, limit)
|
|
2257
|
-
? function (string, arg) { return regexMethod.call(string, this, arg); }
|
|
2258
|
-
// 21.2.5.6 RegExp.prototype[@@match](string)
|
|
2259
|
-
// 21.2.5.9 RegExp.prototype[@@search](string)
|
|
2260
|
-
: function (string) { return regexMethod.call(string, this); }
|
|
2261
|
-
);
|
|
1732
|
+
O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
|
|
1733
|
+
$({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);
|
|
2262
1734
|
}
|
|
2263
|
-
|
|
2264
|
-
if (sham) createNonEnumerableProperty(RegExp.prototype[SYMBOL], 'sham', true);
|
|
2265
1735
|
};
|
|
2266
1736
|
|
|
1737
|
+
// https://github.com/tc39/proposal-error-cause
|
|
1738
|
+
exportGlobalErrorCauseWrapper('Error', function (init) {
|
|
1739
|
+
return function Error(message) { return apply(init, this, arguments); };
|
|
1740
|
+
});
|
|
1741
|
+
exportGlobalErrorCauseWrapper('EvalError', function (init) {
|
|
1742
|
+
return function EvalError(message) { return apply(init, this, arguments); };
|
|
1743
|
+
});
|
|
1744
|
+
exportGlobalErrorCauseWrapper('RangeError', function (init) {
|
|
1745
|
+
return function RangeError(message) { return apply(init, this, arguments); };
|
|
1746
|
+
});
|
|
1747
|
+
exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
|
|
1748
|
+
return function ReferenceError(message) { return apply(init, this, arguments); };
|
|
1749
|
+
});
|
|
1750
|
+
exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
|
|
1751
|
+
return function SyntaxError(message) { return apply(init, this, arguments); };
|
|
1752
|
+
});
|
|
1753
|
+
exportGlobalErrorCauseWrapper('TypeError', function (init) {
|
|
1754
|
+
return function TypeError(message) { return apply(init, this, arguments); };
|
|
1755
|
+
});
|
|
1756
|
+
exportGlobalErrorCauseWrapper('URIError', function (init) {
|
|
1757
|
+
return function URIError(message) { return apply(init, this, arguments); };
|
|
1758
|
+
});
|
|
1759
|
+
exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
|
|
1760
|
+
return function CompileError(message) { return apply(init, this, arguments); };
|
|
1761
|
+
});
|
|
1762
|
+
exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
|
|
1763
|
+
return function LinkError(message) { return apply(init, this, arguments); };
|
|
1764
|
+
});
|
|
1765
|
+
exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
|
|
1766
|
+
return function RuntimeError(message) { return apply(init, this, arguments); };
|
|
1767
|
+
});
|
|
1768
|
+
|
|
2267
1769
|
|
|
2268
1770
|
/***/ }),
|
|
2269
1771
|
|
|
@@ -2276,9 +1778,10 @@ module.exports = function (KEY, length, exec, sham) {
|
|
|
2276
1778
|
|
|
2277
1779
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
2278
1780
|
module.exports =
|
|
2279
|
-
|
|
1781
|
+
// eslint-disable-next-line es/no-global-this -- safe
|
|
2280
1782
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
2281
1783
|
check(typeof window == 'object' && window) ||
|
|
1784
|
+
// eslint-disable-next-line no-restricted-globals -- safe
|
|
2282
1785
|
check(typeof self == 'object' && self) ||
|
|
2283
1786
|
check(typeof global == 'object' && global) ||
|
|
2284
1787
|
// eslint-disable-next-line no-new-func -- fallback
|
|
@@ -2288,16 +1791,121 @@ module.exports =
|
|
|
2288
1791
|
|
|
2289
1792
|
/***/ }),
|
|
2290
1793
|
|
|
2291
|
-
/***/ "
|
|
1794
|
+
/***/ "dc4a":
|
|
2292
1795
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2293
1796
|
|
|
2294
|
-
var
|
|
2295
|
-
var
|
|
1797
|
+
var aCallable = __webpack_require__("59ed");
|
|
1798
|
+
var isNullOrUndefined = __webpack_require__("7234");
|
|
1799
|
+
|
|
1800
|
+
// `GetMethod` abstract operation
|
|
1801
|
+
// https://tc39.es/ecma262/#sec-getmethod
|
|
1802
|
+
module.exports = function (V, P) {
|
|
1803
|
+
var func = V[P];
|
|
1804
|
+
return isNullOrUndefined(func) ? undefined : aCallable(func);
|
|
1805
|
+
};
|
|
1806
|
+
|
|
1807
|
+
|
|
1808
|
+
/***/ }),
|
|
1809
|
+
|
|
1810
|
+
/***/ "e330":
|
|
1811
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1812
|
+
|
|
1813
|
+
var NATIVE_BIND = __webpack_require__("40d5");
|
|
1814
|
+
|
|
1815
|
+
var FunctionPrototype = Function.prototype;
|
|
1816
|
+
var call = FunctionPrototype.call;
|
|
1817
|
+
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
|
|
1818
|
+
|
|
1819
|
+
module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
|
1820
|
+
return function () {
|
|
1821
|
+
return call.apply(fn, arguments);
|
|
1822
|
+
};
|
|
1823
|
+
};
|
|
1824
|
+
|
|
1825
|
+
|
|
1826
|
+
/***/ }),
|
|
1827
|
+
|
|
1828
|
+
/***/ "e391":
|
|
1829
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
2296
1830
|
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
module.exports =
|
|
2300
|
-
return
|
|
1831
|
+
var toString = __webpack_require__("577e");
|
|
1832
|
+
|
|
1833
|
+
module.exports = function (argument, $default) {
|
|
1834
|
+
return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
|
|
1835
|
+
};
|
|
1836
|
+
|
|
1837
|
+
|
|
1838
|
+
/***/ }),
|
|
1839
|
+
|
|
1840
|
+
/***/ "e5cb":
|
|
1841
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1842
|
+
|
|
1843
|
+
"use strict";
|
|
1844
|
+
|
|
1845
|
+
var getBuiltIn = __webpack_require__("d066");
|
|
1846
|
+
var hasOwn = __webpack_require__("1a2d");
|
|
1847
|
+
var createNonEnumerableProperty = __webpack_require__("9112");
|
|
1848
|
+
var isPrototypeOf = __webpack_require__("3a9b");
|
|
1849
|
+
var setPrototypeOf = __webpack_require__("d2bb");
|
|
1850
|
+
var copyConstructorProperties = __webpack_require__("e893");
|
|
1851
|
+
var proxyAccessor = __webpack_require__("aeb0");
|
|
1852
|
+
var inheritIfRequired = __webpack_require__("7156");
|
|
1853
|
+
var normalizeStringArgument = __webpack_require__("e391");
|
|
1854
|
+
var installErrorCause = __webpack_require__("ab36");
|
|
1855
|
+
var clearErrorStack = __webpack_require__("0d26");
|
|
1856
|
+
var ERROR_STACK_INSTALLABLE = __webpack_require__("b980");
|
|
1857
|
+
var DESCRIPTORS = __webpack_require__("83ab");
|
|
1858
|
+
var IS_PURE = __webpack_require__("c430");
|
|
1859
|
+
|
|
1860
|
+
module.exports = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
|
|
1861
|
+
var STACK_TRACE_LIMIT = 'stackTraceLimit';
|
|
1862
|
+
var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
|
|
1863
|
+
var path = FULL_NAME.split('.');
|
|
1864
|
+
var ERROR_NAME = path[path.length - 1];
|
|
1865
|
+
var OriginalError = getBuiltIn.apply(null, path);
|
|
1866
|
+
|
|
1867
|
+
if (!OriginalError) return;
|
|
1868
|
+
|
|
1869
|
+
var OriginalErrorPrototype = OriginalError.prototype;
|
|
1870
|
+
|
|
1871
|
+
// V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
|
|
1872
|
+
if (!IS_PURE && hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
|
|
1873
|
+
|
|
1874
|
+
if (!FORCED) return OriginalError;
|
|
1875
|
+
|
|
1876
|
+
var BaseError = getBuiltIn('Error');
|
|
1877
|
+
|
|
1878
|
+
var WrappedError = wrapper(function (a, b) {
|
|
1879
|
+
var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
|
|
1880
|
+
var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
|
|
1881
|
+
if (message !== undefined) createNonEnumerableProperty(result, 'message', message);
|
|
1882
|
+
if (ERROR_STACK_INSTALLABLE) createNonEnumerableProperty(result, 'stack', clearErrorStack(result.stack, 2));
|
|
1883
|
+
if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
|
|
1884
|
+
if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
|
|
1885
|
+
return result;
|
|
1886
|
+
});
|
|
1887
|
+
|
|
1888
|
+
WrappedError.prototype = OriginalErrorPrototype;
|
|
1889
|
+
|
|
1890
|
+
if (ERROR_NAME !== 'Error') {
|
|
1891
|
+
if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError);
|
|
1892
|
+
else copyConstructorProperties(WrappedError, BaseError, { name: true });
|
|
1893
|
+
} else if (DESCRIPTORS && STACK_TRACE_LIMIT in OriginalError) {
|
|
1894
|
+
proxyAccessor(WrappedError, OriginalError, STACK_TRACE_LIMIT);
|
|
1895
|
+
proxyAccessor(WrappedError, OriginalError, 'prepareStackTrace');
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
copyConstructorProperties(WrappedError, OriginalError);
|
|
1899
|
+
|
|
1900
|
+
if (!IS_PURE) try {
|
|
1901
|
+
// Safari 13- bug: WebAssembly errors does not have a proper `.name`
|
|
1902
|
+
if (OriginalErrorPrototype.name !== ERROR_NAME) {
|
|
1903
|
+
createNonEnumerableProperty(OriginalErrorPrototype, 'name', ERROR_NAME);
|
|
1904
|
+
}
|
|
1905
|
+
OriginalErrorPrototype.constructor = WrappedError;
|
|
1906
|
+
} catch (error) { /* empty */ }
|
|
1907
|
+
|
|
1908
|
+
return WrappedError;
|
|
2301
1909
|
};
|
|
2302
1910
|
|
|
2303
1911
|
|
|
@@ -2306,18 +1914,20 @@ module.exports = Object.keys || function keys(O) {
|
|
|
2306
1914
|
/***/ "e893":
|
|
2307
1915
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2308
1916
|
|
|
2309
|
-
var
|
|
1917
|
+
var hasOwn = __webpack_require__("1a2d");
|
|
2310
1918
|
var ownKeys = __webpack_require__("56ef");
|
|
2311
1919
|
var getOwnPropertyDescriptorModule = __webpack_require__("06cf");
|
|
2312
1920
|
var definePropertyModule = __webpack_require__("9bf2");
|
|
2313
1921
|
|
|
2314
|
-
module.exports = function (target, source) {
|
|
1922
|
+
module.exports = function (target, source, exceptions) {
|
|
2315
1923
|
var keys = ownKeys(source);
|
|
2316
1924
|
var defineProperty = definePropertyModule.f;
|
|
2317
1925
|
var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
|
2318
1926
|
for (var i = 0; i < keys.length; i++) {
|
|
2319
1927
|
var key = keys[i];
|
|
2320
|
-
if (!
|
|
1928
|
+
if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
|
|
1929
|
+
defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
|
1930
|
+
}
|
|
2321
1931
|
}
|
|
2322
1932
|
};
|
|
2323
1933
|
|
|
@@ -2331,8 +1941,9 @@ var classof = __webpack_require__("c6b6");
|
|
|
2331
1941
|
|
|
2332
1942
|
// `IsArray` abstract operation
|
|
2333
1943
|
// https://tc39.es/ecma262/#sec-isarray
|
|
2334
|
-
|
|
2335
|
-
|
|
1944
|
+
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
1945
|
+
module.exports = Array.isArray || function isArray(argument) {
|
|
1946
|
+
return classof(argument) == 'Array';
|
|
2336
1947
|
};
|
|
2337
1948
|
|
|
2338
1949
|
|
|
@@ -2342,10 +1953,13 @@ module.exports = Array.isArray || function isArray(arg) {
|
|
|
2342
1953
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2343
1954
|
|
|
2344
1955
|
var TO_STRING_TAG_SUPPORT = __webpack_require__("00ee");
|
|
1956
|
+
var isCallable = __webpack_require__("1626");
|
|
2345
1957
|
var classofRaw = __webpack_require__("c6b6");
|
|
2346
1958
|
var wellKnownSymbol = __webpack_require__("b622");
|
|
2347
1959
|
|
|
2348
1960
|
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
1961
|
+
var $Object = Object;
|
|
1962
|
+
|
|
2349
1963
|
// ES3 wrong here
|
|
2350
1964
|
var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
|
|
2351
1965
|
|
|
@@ -2361,11 +1975,11 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
|
2361
1975
|
var O, tag, result;
|
|
2362
1976
|
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
2363
1977
|
// @@toStringTag case
|
|
2364
|
-
: typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag
|
|
1978
|
+
: typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
|
|
2365
1979
|
// builtinTag case
|
|
2366
1980
|
: CORRECT_ARGUMENTS ? classofRaw(O)
|
|
2367
1981
|
// ES3 arguments fallback
|
|
2368
|
-
: (result = classofRaw(O)) == 'Object' &&
|
|
1982
|
+
: (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
|
|
2369
1983
|
};
|
|
2370
1984
|
|
|
2371
1985
|
|
|
@@ -2397,256 +2011,150 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2397
2011
|
// This file is imported into lib/wc client bundles.
|
|
2398
2012
|
|
|
2399
2013
|
if (typeof window !== 'undefined') {
|
|
2400
|
-
var currentScript = window.document.currentScript
|
|
2401
|
-
if (
|
|
2402
|
-
var getCurrentScript = __webpack_require__("8875")
|
|
2403
|
-
currentScript = getCurrentScript()
|
|
2404
|
-
|
|
2405
|
-
// for backward compatibility, because previously we directly included the polyfill
|
|
2406
|
-
if (!('currentScript' in document)) {
|
|
2407
|
-
Object.defineProperty(document, 'currentScript', { get: getCurrentScript })
|
|
2408
|
-
}
|
|
2409
|
-
}
|
|
2410
|
-
|
|
2411
|
-
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
|
|
2412
|
-
if (src) {
|
|
2413
|
-
__webpack_require__.p = src[1] // eslint-disable-line
|
|
2414
|
-
}
|
|
2415
|
-
}
|
|
2416
|
-
|
|
2417
|
-
// Indicate to webpack that this file can be concatenated
|
|
2418
|
-
/* harmony default export */ var setPublicPath = (null);
|
|
2419
|
-
|
|
2420
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.replace.js
|
|
2421
|
-
var es_string_replace = __webpack_require__("5319");
|
|
2422
|
-
|
|
2423
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.exec.js
|
|
2424
|
-
var es_regexp_exec = __webpack_require__("ac1f");
|
|
2425
|
-
|
|
2426
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.name.js
|
|
2427
|
-
var es_function_name = __webpack_require__("b0c0");
|
|
2428
|
-
|
|
2429
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.number.constructor.js
|
|
2430
|
-
var es_number_constructor = __webpack_require__("a9e3");
|
|
2431
|
-
|
|
2432
|
-
// EXTERNAL MODULE: ./src/styles/index.less
|
|
2433
|
-
var styles = __webpack_require__("a4b1");
|
|
2014
|
+
var currentScript = window.document.currentScript
|
|
2015
|
+
if (false) { var getCurrentScript; }
|
|
2434
2016
|
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
Object.defineProperty(obj, key, {
|
|
2439
|
-
value: value,
|
|
2440
|
-
enumerable: true,
|
|
2441
|
-
configurable: true,
|
|
2442
|
-
writable: true
|
|
2443
|
-
});
|
|
2444
|
-
} else {
|
|
2445
|
-
obj[key] = value;
|
|
2017
|
+
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
|
|
2018
|
+
if (src) {
|
|
2019
|
+
__webpack_require__.p = src[1] // eslint-disable-line
|
|
2446
2020
|
}
|
|
2447
|
-
|
|
2448
|
-
return obj;
|
|
2449
2021
|
}
|
|
2450
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.to-string.js
|
|
2451
|
-
var es_object_to_string = __webpack_require__("d3b7");
|
|
2452
2022
|
|
|
2453
|
-
//
|
|
2454
|
-
var
|
|
2023
|
+
// Indicate to webpack that this file can be concatenated
|
|
2024
|
+
/* harmony default export */ var setPublicPath = (null);
|
|
2455
2025
|
|
|
2456
|
-
// EXTERNAL MODULE: ./
|
|
2457
|
-
var
|
|
2026
|
+
// EXTERNAL MODULE: ./src/styles/index.less
|
|
2027
|
+
var styles = __webpack_require__("a4b1");
|
|
2458
2028
|
|
|
2459
2029
|
// CONCATENATED MODULE: ./src/components/computed.js
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
2030
|
/* harmony default export */ var computed = ({
|
|
2465
2031
|
computed: {
|
|
2466
2032
|
// The side to dock on.
|
|
2467
2033
|
// The default value is right.
|
|
2468
|
-
dockOn
|
|
2034
|
+
dockOn() {
|
|
2469
2035
|
return this.dock || 'right';
|
|
2470
2036
|
},
|
|
2471
2037
|
// If to show the header bar or not.
|
|
2472
2038
|
// This depends on the title property and the header slot.
|
|
2473
|
-
showHeader
|
|
2039
|
+
showHeader() {
|
|
2474
2040
|
return this.title || this.$slots.header;
|
|
2475
2041
|
},
|
|
2476
2042
|
// If to show the footer bar or not.
|
|
2477
2043
|
// This depends on the footer slot.
|
|
2478
|
-
showFooter
|
|
2044
|
+
showFooter() {
|
|
2479
2045
|
return this.$slots.footer;
|
|
2480
2046
|
},
|
|
2481
|
-
containerStyle
|
|
2482
|
-
|
|
2047
|
+
containerStyle() {
|
|
2048
|
+
const style = {
|
|
2483
2049
|
'z-index': this.zIndex,
|
|
2484
2050
|
display: this.showContainer ? 'block' : 'none'
|
|
2485
2051
|
};
|
|
2486
|
-
|
|
2052
|
+
const customStyle = this.$attrs.style;
|
|
2053
|
+
if (customStyle) {
|
|
2054
|
+
if (typeof customStyle === 'string') {
|
|
2055
|
+
customStyle.split(';').forEach(item => {
|
|
2056
|
+
const [key, value] = item.split(':');
|
|
2057
|
+
style[key] = value;
|
|
2058
|
+
});
|
|
2059
|
+
} else {
|
|
2060
|
+
for (const key in customStyle) {
|
|
2061
|
+
style[key] = customStyle[key];
|
|
2062
|
+
}
|
|
2063
|
+
}
|
|
2064
|
+
}
|
|
2487
2065
|
if (this.mousedown) {
|
|
2488
2066
|
style.userSelect = 'none';
|
|
2489
2067
|
}
|
|
2490
|
-
|
|
2491
2068
|
return style;
|
|
2492
2069
|
},
|
|
2493
|
-
maskStyle
|
|
2070
|
+
maskStyle() {
|
|
2494
2071
|
return this.maskColor ? {
|
|
2495
2072
|
'background-color': this.maskColor
|
|
2496
2073
|
} : {};
|
|
2497
2074
|
},
|
|
2498
2075
|
// If to use the fixed size or not:
|
|
2499
2076
|
// true if the value of size is an Array
|
|
2500
|
-
isSizeFixed
|
|
2077
|
+
isSizeFixed() {
|
|
2501
2078
|
return Array.isArray(this.size);
|
|
2502
2079
|
},
|
|
2503
2080
|
// Should I fit the size automatically ?
|
|
2504
2081
|
// If the value of size is 0 or [0, 0],
|
|
2505
2082
|
// then make it auto.
|
|
2506
|
-
isAutoSize
|
|
2083
|
+
isAutoSize() {
|
|
2507
2084
|
if (this.isSizeFixed) {
|
|
2508
|
-
return !this.size.every(
|
|
2509
|
-
return i.toString() !== '0';
|
|
2510
|
-
});
|
|
2085
|
+
return !this.size.every(i => i.toString() !== '0');
|
|
2511
2086
|
}
|
|
2512
|
-
|
|
2513
2087
|
return this.size.toString() === '0';
|
|
2514
2088
|
},
|
|
2515
|
-
|
|
2516
2089
|
/**
|
|
2517
2090
|
* Get the value of size with unit px or "%"
|
|
2518
2091
|
* @return {Array|String}
|
|
2519
2092
|
*/
|
|
2520
|
-
sizeWithUnit
|
|
2093
|
+
sizeWithUnit() {
|
|
2521
2094
|
if (!this.isSizeFixed) {
|
|
2522
2095
|
return this._fixSizeUnit(this.size);
|
|
2523
2096
|
}
|
|
2524
|
-
|
|
2525
2097
|
return [this._fixSizeUnit(this.size[0]), this._fixSizeUnit(this.size[this.size.length === 1 ? 0 : 1])];
|
|
2526
2098
|
},
|
|
2527
|
-
// The styles of panel
|
|
2528
|
-
panelStyle
|
|
2529
|
-
|
|
2099
|
+
// The styles of panel
|
|
2100
|
+
panelStyle() {
|
|
2101
|
+
const style = {};
|
|
2530
2102
|
|
|
2103
|
+
// Styles for fixed
|
|
2531
2104
|
if (this.isSizeFixed) {
|
|
2532
2105
|
// Set size
|
|
2533
2106
|
style.width = this.sizeWithUnit[0];
|
|
2534
|
-
style.height = this.sizeWithUnit[1];
|
|
2107
|
+
style.height = this.sizeWithUnit[1];
|
|
2108
|
+
// The offset of slideout content,
|
|
2535
2109
|
// the value is 0 while fill-parent.
|
|
2536
|
-
|
|
2537
|
-
var offset = this.isFilled ? 0 : this.offset;
|
|
2538
|
-
|
|
2110
|
+
const offset = this.isFilled ? 0 : this.offset;
|
|
2539
2111
|
switch (this.dockOn) {
|
|
2540
2112
|
case 'right':
|
|
2541
2113
|
case 'left':
|
|
2542
2114
|
style.top = offset;
|
|
2543
|
-
style.maxHeight =
|
|
2115
|
+
style.maxHeight = `calc(100% - ${offset})`;
|
|
2544
2116
|
break;
|
|
2545
|
-
|
|
2546
2117
|
case 'bottom':
|
|
2547
2118
|
case 'top':
|
|
2548
2119
|
style.left = offset;
|
|
2549
|
-
style.maxWidth =
|
|
2120
|
+
style.maxWidth = `calc(100% - ${offset})`;
|
|
2550
2121
|
break;
|
|
2551
2122
|
}
|
|
2552
|
-
|
|
2553
2123
|
return style;
|
|
2554
|
-
}
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
var size = this.isFilled ? '100%' : this.resizeValue > 0 ? "".concat(this.resizeValue, "px") : this.sizeWithUnit;
|
|
2558
|
-
|
|
2124
|
+
}
|
|
2125
|
+
// Set 100% while fill-parent
|
|
2126
|
+
const size = this.isFilled ? '100%' : this.resizeValue > 0 ? `${this.resizeValue}px` : this.sizeWithUnit;
|
|
2559
2127
|
switch (this.dockOn) {
|
|
2560
2128
|
case 'right':
|
|
2561
2129
|
case 'left':
|
|
2562
2130
|
style.width = size;
|
|
2563
2131
|
break;
|
|
2564
|
-
|
|
2565
2132
|
case 'bottom':
|
|
2566
2133
|
case 'top':
|
|
2567
2134
|
style.height = size;
|
|
2568
2135
|
break;
|
|
2569
2136
|
}
|
|
2570
|
-
|
|
2571
|
-
return style;
|
|
2572
|
-
},
|
|
2573
|
-
contentStyles: function contentStyles() {
|
|
2574
|
-
var style = {};
|
|
2575
|
-
|
|
2576
|
-
if (!this.isAutoSize) {
|
|
2577
|
-
return style;
|
|
2578
|
-
}
|
|
2579
|
-
|
|
2580
|
-
var padding = 0;
|
|
2581
|
-
|
|
2582
|
-
switch (this.dockOn) {
|
|
2583
|
-
case 'right':
|
|
2584
|
-
case 'left':
|
|
2585
|
-
break;
|
|
2586
|
-
|
|
2587
|
-
case 'bottom':
|
|
2588
|
-
case 'top':
|
|
2589
|
-
if (this.showHeader) {
|
|
2590
|
-
padding += 48;
|
|
2591
|
-
}
|
|
2592
|
-
|
|
2593
|
-
if (this.showFooter) {
|
|
2594
|
-
padding += 48;
|
|
2595
|
-
}
|
|
2596
|
-
|
|
2597
|
-
if (this.maxSize) {
|
|
2598
|
-
style.maxHeight = "".concat(this.maxSize - padding, "px");
|
|
2599
|
-
}
|
|
2600
|
-
|
|
2601
|
-
if (this.minSize) {
|
|
2602
|
-
style.minHeight = "".concat(this.minSize - padding, "px");
|
|
2603
|
-
}
|
|
2604
|
-
|
|
2605
|
-
break;
|
|
2606
|
-
}
|
|
2607
|
-
|
|
2608
|
-
return style;
|
|
2609
|
-
},
|
|
2610
|
-
containerClasses: function containerClasses() {
|
|
2611
|
-
var _ref;
|
|
2612
|
-
|
|
2613
|
-
return _ref = {
|
|
2614
|
-
'slideout': true
|
|
2615
|
-
}, _defineProperty(_ref, this.customClass || '', true), _defineProperty(_ref, "slideout-dock--".concat(this.dockOn), true), _defineProperty(_ref, 'slideout-is--visible', this.activeVisibleClass), _defineProperty(_ref, 'slideout-animation--enabled', !this.mousedown && !this.disableAnimation), _defineProperty(_ref, 'slideout-header--visible', this.showHeader), _defineProperty(_ref, 'slideout-footer--visible', this.$slots.footer), _defineProperty(_ref, 'slideout-is--resizable', this.resizable), _defineProperty(_ref, 'slideout-is--fixed', this.isFixed), _defineProperty(_ref, 'slideout-is--filled', this.isFilled), _defineProperty(_ref, 'slideout-is--autosize', this.isAutoSize), _ref;
|
|
2616
|
-
},
|
|
2617
|
-
headerStyle: function headerStyle() {
|
|
2618
|
-
var style = {}; // No need to compute the header style while the header slot is specified
|
|
2619
|
-
|
|
2620
|
-
if (this.$slots.header) {
|
|
2621
|
-
return style;
|
|
2622
|
-
}
|
|
2623
|
-
|
|
2624
|
-
style.paddingRight = "".concat(this.defaultButtonsWidth, "px");
|
|
2625
|
-
|
|
2626
|
-
if (!this.headerButtons) {
|
|
2627
|
-
return style;
|
|
2628
|
-
}
|
|
2629
|
-
|
|
2630
|
-
var btnStyle = window.getComputedStyle(this.headerButtons);
|
|
2631
|
-
style.paddingRight = "".concat(this.defaultButtonsWidth + parseInt(btnStyle.width) + 5, "px");
|
|
2632
2137
|
return style;
|
|
2633
2138
|
},
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2139
|
+
containerClasses() {
|
|
2140
|
+
return {
|
|
2141
|
+
'slideout': true,
|
|
2142
|
+
[this.customClass || '']: true,
|
|
2143
|
+
[`slideout-dock--${this.dockOn}`]: true,
|
|
2144
|
+
'slideout-is--visible': this.activeVisibleClass,
|
|
2145
|
+
// Disable the animations while mouse button pressed,
|
|
2146
|
+
// to make the operation smoothly.
|
|
2147
|
+
'slideout-animation--enabled': !this.mousedown && !this.disableAnimation,
|
|
2148
|
+
'slideout-header--visible': this.showHeader,
|
|
2149
|
+
'slideout-footer--visible': this.$slots.footer,
|
|
2150
|
+
'slideout-is--resizable': this.resizable,
|
|
2151
|
+
'slideout-is--fixed': this.isFixed,
|
|
2152
|
+
'slideout-is--filled': this.isFilled,
|
|
2153
|
+
'slideout-is--autosize': this.isAutoSize
|
|
2154
|
+
};
|
|
2647
2155
|
},
|
|
2648
2156
|
// If to use fixed position.
|
|
2649
|
-
isFixed
|
|
2157
|
+
isFixed() {
|
|
2650
2158
|
// False if target specified,
|
|
2651
2159
|
// except the parent element is document.body.
|
|
2652
2160
|
return this.fixed || this.parentElement === document.body || !this.target;
|
|
@@ -2655,7 +2163,7 @@ var es_string_fixed = __webpack_require__("c7cd");
|
|
|
2655
2163
|
});
|
|
2656
2164
|
// CONCATENATED MODULE: ./src/components/data.js
|
|
2657
2165
|
/* harmony default export */ var data = ({
|
|
2658
|
-
data
|
|
2166
|
+
data() {
|
|
2659
2167
|
return {
|
|
2660
2168
|
isVisible: false,
|
|
2661
2169
|
isFilled: false,
|
|
@@ -2682,129 +2190,111 @@ var es_string_fixed = __webpack_require__("c7cd");
|
|
|
2682
2190
|
};
|
|
2683
2191
|
}
|
|
2684
2192
|
});
|
|
2685
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.
|
|
2686
|
-
var
|
|
2193
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.error.cause.js
|
|
2194
|
+
var es_error_cause = __webpack_require__("d9e2");
|
|
2687
2195
|
|
|
2688
2196
|
// CONCATENATED MODULE: ./src/components/methods.js
|
|
2689
2197
|
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
2198
|
/* harmony default export */ var methods = ({
|
|
2693
2199
|
methods: {
|
|
2694
|
-
makeBeforeEventArgs
|
|
2695
|
-
|
|
2696
|
-
|
|
2200
|
+
makeBeforeEventArgs(resumeCallback, cancelCallback) {
|
|
2201
|
+
const vm = this;
|
|
2202
|
+
let canceled = false;
|
|
2697
2203
|
return {
|
|
2698
2204
|
// If to pause the open/close operation.
|
|
2699
2205
|
pause: false,
|
|
2700
|
-
|
|
2701
2206
|
// setter
|
|
2702
2207
|
// Resume the paused operation.
|
|
2703
2208
|
set resume(value) {
|
|
2704
2209
|
// Cancel the operation if the value is falsy.
|
|
2705
2210
|
if (!value) {
|
|
2706
2211
|
return;
|
|
2707
|
-
}
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
vm.$nextTick(function () {
|
|
2212
|
+
}
|
|
2213
|
+
// Continue the operation.
|
|
2214
|
+
vm.$nextTick(() => {
|
|
2711
2215
|
resumeCallback();
|
|
2712
2216
|
});
|
|
2713
2217
|
},
|
|
2714
|
-
|
|
2715
2218
|
get resume() {
|
|
2716
2219
|
return undefined;
|
|
2717
2220
|
},
|
|
2718
|
-
|
|
2719
2221
|
set cancel(value) {
|
|
2720
2222
|
canceled = value;
|
|
2721
|
-
|
|
2722
2223
|
if (!value) {
|
|
2723
2224
|
return;
|
|
2724
2225
|
}
|
|
2725
|
-
|
|
2726
|
-
vm.$nextTick(function () {
|
|
2226
|
+
vm.$nextTick(() => {
|
|
2727
2227
|
cancelCallback();
|
|
2728
2228
|
});
|
|
2729
2229
|
},
|
|
2730
|
-
|
|
2731
2230
|
get cancel() {
|
|
2732
2231
|
return canceled;
|
|
2733
2232
|
}
|
|
2734
|
-
|
|
2735
2233
|
};
|
|
2736
2234
|
},
|
|
2737
|
-
tryOpen
|
|
2738
|
-
var _this = this;
|
|
2739
|
-
|
|
2235
|
+
tryOpen() {
|
|
2740
2236
|
// Do nothing if slideout is visible.
|
|
2741
2237
|
if (this.isVisible) {
|
|
2742
2238
|
return;
|
|
2743
|
-
}
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
}, function () {
|
|
2239
|
+
}
|
|
2240
|
+
// The arguments of event "opening".
|
|
2241
|
+
const args = this.makeBeforeEventArgs(() => {
|
|
2242
|
+
this.setVisibleValue(true);
|
|
2243
|
+
}, () => {
|
|
2749
2244
|
// Reset the value of visible to "false" while operation canceled.
|
|
2750
|
-
|
|
2751
|
-
});
|
|
2245
|
+
this._updateVisibleValue(false);
|
|
2246
|
+
});
|
|
2752
2247
|
|
|
2753
|
-
|
|
2248
|
+
// Trigger the "opening" event with "args".
|
|
2249
|
+
this.$emit('opening', args);
|
|
2754
2250
|
|
|
2251
|
+
// If the open operation is paused or canceled, just return.
|
|
2755
2252
|
if (args.pause || args.cancel) {
|
|
2756
2253
|
return;
|
|
2757
|
-
}
|
|
2758
|
-
|
|
2254
|
+
}
|
|
2759
2255
|
|
|
2256
|
+
// Show slideout.
|
|
2760
2257
|
this.setVisibleValue(true);
|
|
2761
2258
|
},
|
|
2762
|
-
tryClose
|
|
2763
|
-
var _this2 = this;
|
|
2764
|
-
|
|
2259
|
+
tryClose() {
|
|
2765
2260
|
// Do nothing if slideout is invisible.
|
|
2766
2261
|
if (!this.isVisible) {
|
|
2767
2262
|
return;
|
|
2768
|
-
}
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
}, function () {
|
|
2263
|
+
}
|
|
2264
|
+
// The arguments of event "opening".
|
|
2265
|
+
const args = this.makeBeforeEventArgs(() => {
|
|
2266
|
+
this.setVisibleValue(false);
|
|
2267
|
+
}, () => {
|
|
2774
2268
|
// Reset the value of visible to "true" while operation canceled.
|
|
2775
|
-
|
|
2776
|
-
});
|
|
2269
|
+
this._updateVisibleValue(true);
|
|
2270
|
+
});
|
|
2777
2271
|
|
|
2778
|
-
|
|
2272
|
+
// Trigger the "closing" event with "args".
|
|
2273
|
+
this.$emit('closing', args);
|
|
2779
2274
|
|
|
2275
|
+
// If the open operation is paused or canceled, just return.
|
|
2780
2276
|
if (args.pause || args.cancel) {
|
|
2781
2277
|
return;
|
|
2782
2278
|
}
|
|
2783
|
-
|
|
2784
2279
|
this.setVisibleValue(false);
|
|
2785
2280
|
},
|
|
2786
|
-
|
|
2787
2281
|
/**
|
|
2788
2282
|
* Update the value of isVisible.
|
|
2789
2283
|
* @param {Boolean} visible The visible state
|
|
2790
2284
|
*/
|
|
2791
|
-
setVisibleValue
|
|
2792
|
-
var _this3 = this;
|
|
2793
|
-
|
|
2285
|
+
setVisibleValue(visible) {
|
|
2794
2286
|
// Reset the size while slideout is brought into visible.
|
|
2795
2287
|
if (visible) {
|
|
2796
2288
|
this.resizeValue = 0;
|
|
2797
2289
|
}
|
|
2798
|
-
|
|
2799
2290
|
if (visible) {
|
|
2800
2291
|
this.showContainer = true;
|
|
2801
2292
|
this.isVisible = true;
|
|
2802
|
-
this.$nextTick(
|
|
2293
|
+
this.$nextTick(() => {
|
|
2803
2294
|
// Delay the animation.
|
|
2804
|
-
setTimeout(
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
_this3.emitOpenedEvent();
|
|
2295
|
+
setTimeout(() => {
|
|
2296
|
+
this.activeVisibleClass = true;
|
|
2297
|
+
this.emitOpenedEvent();
|
|
2808
2298
|
}, 10);
|
|
2809
2299
|
});
|
|
2810
2300
|
} else {
|
|
@@ -2812,60 +2302,49 @@ var es_array_concat = __webpack_require__("99af");
|
|
|
2812
2302
|
// Update the value of "fill-parent" for "v-model:fill-parent" to exit fill-parent after slideout closed.
|
|
2813
2303
|
this.$emit('update:fill-parent', false);
|
|
2814
2304
|
}
|
|
2815
|
-
|
|
2816
2305
|
this.activeVisibleClass = false;
|
|
2817
|
-
this.$nextTick(
|
|
2818
|
-
|
|
2306
|
+
this.$nextTick(() => {
|
|
2307
|
+
this.emitClosedEvent();
|
|
2819
2308
|
});
|
|
2820
2309
|
}
|
|
2821
2310
|
},
|
|
2822
|
-
emitOpenedEvent
|
|
2823
|
-
var _this4 = this;
|
|
2824
|
-
|
|
2311
|
+
emitOpenedEvent() {
|
|
2825
2312
|
if (this.disableAnimation) {
|
|
2826
2313
|
// The animation is disabled.
|
|
2827
2314
|
this._doOpen();
|
|
2828
|
-
|
|
2829
2315
|
return;
|
|
2830
|
-
}
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
_this4._doOpen();
|
|
2316
|
+
}
|
|
2317
|
+
// Applying the animation.
|
|
2318
|
+
setTimeout(() => {
|
|
2319
|
+
this._doOpen();
|
|
2835
2320
|
}, this.animationDuration);
|
|
2836
2321
|
},
|
|
2837
|
-
emitClosedEvent
|
|
2838
|
-
var _this5 = this;
|
|
2839
|
-
|
|
2322
|
+
emitClosedEvent() {
|
|
2840
2323
|
if (this.disableAnimation) {
|
|
2841
2324
|
// The animation is disabled.
|
|
2842
2325
|
this._doClose();
|
|
2843
|
-
|
|
2844
2326
|
return;
|
|
2845
|
-
}
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
_this5._doClose();
|
|
2327
|
+
}
|
|
2328
|
+
// Applying the animation.
|
|
2329
|
+
setTimeout(() => {
|
|
2330
|
+
this._doClose();
|
|
2850
2331
|
}, this.animationDuration);
|
|
2851
2332
|
},
|
|
2852
|
-
_doOpen
|
|
2333
|
+
_doOpen() {
|
|
2853
2334
|
this.$emit('opened', this.$refs.panel);
|
|
2854
|
-
|
|
2855
2335
|
if (this.visible !== this.isVisible) {
|
|
2856
2336
|
this._updateVisibleValue(true);
|
|
2857
2337
|
}
|
|
2858
2338
|
},
|
|
2859
|
-
_doClose
|
|
2339
|
+
_doClose() {
|
|
2860
2340
|
this.showContainer = false;
|
|
2861
2341
|
this.isVisible = false;
|
|
2862
2342
|
this.$emit('closed');
|
|
2863
|
-
|
|
2864
2343
|
if (this.visible !== this.isVisible) {
|
|
2865
2344
|
this._updateVisibleValue(false);
|
|
2866
2345
|
}
|
|
2867
2346
|
},
|
|
2868
|
-
toggleFillState
|
|
2347
|
+
toggleFillState(fillparent) {
|
|
2869
2348
|
if (typeof fillparent !== 'boolean') {
|
|
2870
2349
|
this.isFilled = !this.isFilled;
|
|
2871
2350
|
} else if (this.isFilled === fillparent) {
|
|
@@ -2873,70 +2352,61 @@ var es_array_concat = __webpack_require__("99af");
|
|
|
2873
2352
|
} else {
|
|
2874
2353
|
this.isFilled = fillparent;
|
|
2875
2354
|
}
|
|
2876
|
-
|
|
2877
2355
|
if (this.isFilled !== this.fillParent) {
|
|
2878
2356
|
this.$emit('update:fill-parent', this.isFilled);
|
|
2879
2357
|
}
|
|
2880
2358
|
},
|
|
2881
|
-
|
|
2882
2359
|
/**
|
|
2883
2360
|
* Get the actual parent element of Slideout
|
|
2884
2361
|
*/
|
|
2885
|
-
updateParentElement
|
|
2362
|
+
updateParentElement() {
|
|
2886
2363
|
if (!this.target) {
|
|
2887
|
-
this.parentElement = this.$
|
|
2364
|
+
this.parentElement = this.$parent.$el.parentElement;
|
|
2888
2365
|
return;
|
|
2889
2366
|
}
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
2367
|
+
let target = this.target;
|
|
2368
|
+
// handle selector
|
|
2893
2369
|
if (typeof target === 'string') {
|
|
2894
2370
|
target = document.querySelector(target);
|
|
2895
|
-
|
|
2896
2371
|
if (!target) {
|
|
2897
|
-
throw new Error(
|
|
2372
|
+
throw new Error(`[vue-slideout] Cannot find the node to append: ${this.target}`);
|
|
2898
2373
|
}
|
|
2899
2374
|
}
|
|
2900
|
-
|
|
2901
2375
|
this.parentElement = target;
|
|
2902
2376
|
},
|
|
2903
|
-
|
|
2904
2377
|
/**
|
|
2905
2378
|
* The handler for mask click.
|
|
2906
2379
|
*/
|
|
2907
|
-
onMaskClick
|
|
2380
|
+
onMaskClick() {
|
|
2908
2381
|
if (this.closeOnMaskClick) {
|
|
2909
2382
|
this.tryClose();
|
|
2910
2383
|
}
|
|
2911
2384
|
},
|
|
2912
|
-
|
|
2913
2385
|
/**
|
|
2914
2386
|
* @return {{width: Number, height: Number}}
|
|
2915
2387
|
*/
|
|
2916
|
-
getParentSize
|
|
2917
|
-
|
|
2388
|
+
getParentSize() {
|
|
2389
|
+
const rect = this.parentElement.getClientRects()[0];
|
|
2918
2390
|
return {
|
|
2919
2391
|
width: rect.width,
|
|
2920
2392
|
height: rect.height
|
|
2921
2393
|
};
|
|
2922
2394
|
},
|
|
2923
|
-
|
|
2924
2395
|
/**
|
|
2925
2396
|
* @return {{width: Number, height: Number}}
|
|
2926
2397
|
*/
|
|
2927
|
-
getMyownSize
|
|
2928
|
-
|
|
2398
|
+
getMyownSize() {
|
|
2399
|
+
const rect = this.$refs.panel.getClientRects()[0];
|
|
2929
2400
|
return {
|
|
2930
2401
|
width: rect.width,
|
|
2931
2402
|
height: rect.height
|
|
2932
2403
|
};
|
|
2933
2404
|
},
|
|
2934
|
-
mouseDownHandler
|
|
2405
|
+
mouseDownHandler(e) {
|
|
2935
2406
|
if (this.isFilled) {
|
|
2936
2407
|
// Resize is disabled while fillparent.
|
|
2937
2408
|
return;
|
|
2938
2409
|
}
|
|
2939
|
-
|
|
2940
2410
|
this.mousedown = true;
|
|
2941
2411
|
this.mouseDownPosition = {
|
|
2942
2412
|
x: e.pageX,
|
|
@@ -2944,132 +2414,112 @@ var es_array_concat = __webpack_require__("99af");
|
|
|
2944
2414
|
};
|
|
2945
2415
|
this.originSize = this.getMyownSize();
|
|
2946
2416
|
},
|
|
2947
|
-
mouseMoveHandler
|
|
2948
|
-
var _this6 = this;
|
|
2949
|
-
|
|
2417
|
+
mouseMoveHandler(e) {
|
|
2950
2418
|
if (this.isFilled) {
|
|
2951
2419
|
// Resize is disabled while fillparent.
|
|
2952
2420
|
return;
|
|
2953
|
-
}
|
|
2954
|
-
|
|
2955
|
-
|
|
2421
|
+
}
|
|
2422
|
+
// Resize is disabled while the mouse button is not pressed.
|
|
2956
2423
|
if (!this.mousedown) {
|
|
2957
2424
|
return;
|
|
2958
2425
|
}
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
var winSize = {
|
|
2426
|
+
e.preventDefault();
|
|
2427
|
+
// The offset of mouse movement.
|
|
2428
|
+
const x = e.pageX - this.mouseDownPosition.x;
|
|
2429
|
+
const y = e.pageY - this.mouseDownPosition.y;
|
|
2430
|
+
const parentSize = this.getParentSize();
|
|
2431
|
+
const winSize = {
|
|
2966
2432
|
width: window.innerWidth,
|
|
2967
2433
|
height: window.innerHeight
|
|
2968
2434
|
};
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2435
|
+
const size = this.originSize;
|
|
2436
|
+
let newSize = 0;
|
|
2972
2437
|
switch (this.dock) {
|
|
2973
2438
|
case 'top':
|
|
2974
2439
|
newSize = size.height + y;
|
|
2975
|
-
|
|
2976
2440
|
if (newSize > parentSize.height) {
|
|
2977
2441
|
newSize = parentSize.height;
|
|
2978
2442
|
}
|
|
2979
|
-
|
|
2980
2443
|
if (newSize > winSize.height) {
|
|
2981
2444
|
newSize = winSize.height;
|
|
2982
2445
|
}
|
|
2983
|
-
|
|
2984
2446
|
break;
|
|
2985
|
-
|
|
2986
2447
|
case 'right':
|
|
2987
2448
|
newSize = size.width - x;
|
|
2988
|
-
|
|
2989
2449
|
if (newSize > parentSize.width) {
|
|
2990
2450
|
newSize = parentSize.width;
|
|
2991
2451
|
}
|
|
2992
|
-
|
|
2993
2452
|
if (newSize > winSize.width) {
|
|
2994
2453
|
newSize = winSize.width;
|
|
2995
2454
|
}
|
|
2996
|
-
|
|
2997
2455
|
break;
|
|
2998
|
-
|
|
2999
2456
|
case 'bottom':
|
|
3000
2457
|
newSize = size.height - y;
|
|
3001
|
-
|
|
3002
2458
|
if (newSize > parentSize.height) {
|
|
3003
2459
|
newSize = parentSize.height;
|
|
3004
2460
|
}
|
|
3005
|
-
|
|
3006
2461
|
if (newSize > winSize.height) {
|
|
3007
2462
|
newSize = winSize.height;
|
|
3008
2463
|
}
|
|
3009
|
-
|
|
3010
2464
|
break;
|
|
3011
|
-
|
|
3012
2465
|
case 'left':
|
|
3013
2466
|
newSize = size.width + x;
|
|
3014
|
-
|
|
3015
2467
|
if (newSize > parentSize.width) {
|
|
3016
2468
|
newSize = parentSize.width;
|
|
3017
2469
|
}
|
|
3018
|
-
|
|
3019
2470
|
if (newSize > winSize.width) {
|
|
3020
2471
|
newSize = winSize.width;
|
|
3021
2472
|
}
|
|
3022
|
-
|
|
3023
2473
|
break;
|
|
3024
2474
|
}
|
|
3025
|
-
|
|
3026
2475
|
if (this.maxSize > 0 && this.maxSize < newSize) {
|
|
3027
2476
|
newSize = this.maxSize;
|
|
3028
2477
|
}
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
_this6.resizeValue = newSize < _this6.minSize ? _this6.minSize : newSize;
|
|
2478
|
+
requestAnimationFrame(() => {
|
|
2479
|
+
this.resizeValue = newSize < this.minSize ? this.minSize : newSize;
|
|
3032
2480
|
});
|
|
3033
|
-
this.$nextTick(
|
|
3034
|
-
|
|
3035
|
-
size:
|
|
2481
|
+
this.$nextTick(() => {
|
|
2482
|
+
this.$emit('resize', {
|
|
2483
|
+
size: this.resizeValue
|
|
3036
2484
|
});
|
|
3037
2485
|
});
|
|
3038
2486
|
},
|
|
3039
|
-
mouseUpHandler
|
|
2487
|
+
mouseUpHandler() {
|
|
3040
2488
|
this.mousedown = false;
|
|
3041
2489
|
},
|
|
3042
|
-
|
|
3043
2490
|
/**
|
|
3044
2491
|
* Close slideout after Esc pressed.
|
|
3045
2492
|
* @param {KeyboardEvent} e
|
|
3046
2493
|
*/
|
|
3047
|
-
onKeydown
|
|
2494
|
+
onKeydown(e) {
|
|
3048
2495
|
if (this.ignoreEsc) {
|
|
3049
2496
|
return;
|
|
3050
2497
|
}
|
|
3051
|
-
|
|
3052
2498
|
if (!this.isVisible) {
|
|
3053
2499
|
return;
|
|
3054
|
-
}
|
|
3055
|
-
|
|
3056
|
-
|
|
2500
|
+
}
|
|
2501
|
+
// 27: Escape key
|
|
3057
2502
|
if (e.code !== 'Escape' && e.keyCode !== 27 && e.which !== 27) {
|
|
3058
2503
|
return;
|
|
3059
|
-
}
|
|
3060
|
-
|
|
3061
|
-
|
|
2504
|
+
}
|
|
2505
|
+
// Ignore input controls.
|
|
3062
2506
|
if (['INPUT', 'TEXTAREA'].indexOf(e.target.tagName) !== -1 || e.target.contentEditable === 'true') {
|
|
3063
2507
|
return;
|
|
3064
2508
|
}
|
|
3065
|
-
|
|
3066
2509
|
this.tryClose();
|
|
3067
2510
|
return false;
|
|
3068
2511
|
},
|
|
3069
|
-
_fixSizeUnit
|
|
3070
|
-
|
|
2512
|
+
_fixSizeUnit(val) {
|
|
2513
|
+
if (val.toString() === '0') {
|
|
2514
|
+
return 'auto';
|
|
2515
|
+
}
|
|
2516
|
+
// Use unit PX as default
|
|
2517
|
+
if (/^[0-9.]+$/.test(val)) {
|
|
2518
|
+
return val + 'px';
|
|
2519
|
+
}
|
|
2520
|
+
return val;
|
|
3071
2521
|
},
|
|
3072
|
-
_updateVisibleValue
|
|
2522
|
+
_updateVisibleValue(value) {
|
|
3073
2523
|
this.$emit('update:modelValue', value);
|
|
3074
2524
|
}
|
|
3075
2525
|
}
|
|
@@ -3077,39 +2527,35 @@ var es_array_concat = __webpack_require__("99af");
|
|
|
3077
2527
|
// CONCATENATED MODULE: ./src/components/watch.js
|
|
3078
2528
|
/* harmony default export */ var watch = ({
|
|
3079
2529
|
watch: {
|
|
3080
|
-
modelValue
|
|
2530
|
+
modelValue(visible) {
|
|
3081
2531
|
if (visible === this.isVisible) {
|
|
3082
2532
|
return;
|
|
3083
2533
|
}
|
|
3084
|
-
|
|
3085
2534
|
if (visible) {
|
|
3086
2535
|
this.tryOpen();
|
|
3087
2536
|
} else {
|
|
3088
2537
|
this.tryClose();
|
|
3089
2538
|
}
|
|
3090
2539
|
},
|
|
3091
|
-
fillParent
|
|
2540
|
+
fillParent(value) {
|
|
3092
2541
|
if (value === this.isFilled) {
|
|
3093
2542
|
return;
|
|
3094
2543
|
}
|
|
3095
|
-
|
|
3096
2544
|
this.toggleFillState(value);
|
|
3097
2545
|
},
|
|
3098
|
-
isVisible
|
|
3099
|
-
var _this = this;
|
|
3100
|
-
|
|
2546
|
+
isVisible(v) {
|
|
3101
2547
|
if (v) {
|
|
3102
|
-
this.$nextTick(
|
|
3103
|
-
|
|
2548
|
+
this.$nextTick(() => {
|
|
2549
|
+
this.$refs.container.focus();
|
|
3104
2550
|
});
|
|
3105
|
-
}
|
|
3106
|
-
|
|
2551
|
+
}
|
|
3107
2552
|
|
|
2553
|
+
// Do not lock the scroll while slideout is not fixed.
|
|
3108
2554
|
if (!this.isFixed) {
|
|
3109
2555
|
return;
|
|
3110
|
-
}
|
|
3111
|
-
|
|
2556
|
+
}
|
|
3112
2557
|
|
|
2558
|
+
// Toggle the scroll class.
|
|
3113
2559
|
if (v) {
|
|
3114
2560
|
document.body.classList.add('slideout-helper--scroll-locker');
|
|
3115
2561
|
} else {
|
|
@@ -3118,145 +2564,153 @@ var es_array_concat = __webpack_require__("99af");
|
|
|
3118
2564
|
}
|
|
3119
2565
|
}
|
|
3120
2566
|
});
|
|
2567
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
|
|
2568
|
+
var es_array_push = __webpack_require__("14d9");
|
|
2569
|
+
|
|
3121
2570
|
// EXTERNAL MODULE: external {"commonjs":"vue","commonjs2":"vue","root":"Vue"}
|
|
3122
2571
|
var external_commonjs_vue_commonjs2_vue_root_Vue_ = __webpack_require__("8bbf");
|
|
3123
2572
|
|
|
3124
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--
|
|
2573
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader-v16/dist??ref--1-1!./src/components/icon/IconArrow.vue?vue&type=template&id=18a021e1
|
|
3125
2574
|
|
|
3126
|
-
|
|
2575
|
+
const _hoisted_1 = {
|
|
3127
2576
|
viewBox: "0 0 1024 1024",
|
|
3128
2577
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3129
2578
|
width: "16",
|
|
3130
2579
|
height: "16"
|
|
3131
2580
|
};
|
|
3132
|
-
|
|
3133
|
-
var _hoisted_2 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("path", {
|
|
2581
|
+
const _hoisted_2 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createElementVNode"])("path", {
|
|
3134
2582
|
d: "M493.45411 71.89033 197.751365 361.596502c-9.624195 9.380648-9.624195 24.707728 0 34.138518 9.576099 9.381671 25.222451 9.381671 34.848693 0l253.612115-248.494561 0 786.690176c0 13.3214 11.047614 24.142863 24.642237 24.142863 13.597693 0 24.645306-10.821463 24.645306-24.142863L535.499715 147.240459l253.632581 248.494561c9.603729 9.381671 25.248034 9.381671 34.847669 0 4.836145-4.76349 7.194866-10.939143 7.194866-17.116843 0-6.1777-2.405793-12.355399-7.194866-17.116843L528.255731 71.797209c-9.602705-9.383718-25.244964-9.383718-34.849716 0L493.45411 71.89033z"
|
|
3135
2583
|
}, null, -1);
|
|
3136
|
-
|
|
3137
|
-
function
|
|
3138
|
-
return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["
|
|
2584
|
+
const _hoisted_3 = [_hoisted_2];
|
|
2585
|
+
function render(_ctx, _cache) {
|
|
2586
|
+
return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createElementBlock"])("svg", _hoisted_1, _hoisted_3);
|
|
3139
2587
|
}
|
|
3140
2588
|
// CONCATENATED MODULE: ./src/components/icon/IconArrow.vue?vue&type=template&id=18a021e1
|
|
3141
2589
|
|
|
2590
|
+
// EXTERNAL MODULE: ./node_modules/vue-loader-v16/dist/exportHelper.js
|
|
2591
|
+
var exportHelper = __webpack_require__("6b0d");
|
|
2592
|
+
var exportHelper_default = /*#__PURE__*/__webpack_require__.n(exportHelper);
|
|
2593
|
+
|
|
3142
2594
|
// CONCATENATED MODULE: ./src/components/icon/IconArrow.vue
|
|
3143
2595
|
|
|
3144
2596
|
const script = {}
|
|
3145
|
-
script.render = IconArrowvue_type_template_id_18a021e1_render
|
|
3146
2597
|
|
|
3147
|
-
/* harmony default export */ var IconArrow = (script);
|
|
3148
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/icon/IconCross.vue?vue&type=template&id=12d997a6
|
|
3149
2598
|
|
|
3150
|
-
|
|
2599
|
+
const __exports__ = /*#__PURE__*/exportHelper_default()(script, [['render',render]])
|
|
2600
|
+
|
|
2601
|
+
/* harmony default export */ var IconArrow = (__exports__);
|
|
2602
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader-v16/dist??ref--1-1!./src/components/icon/IconCross.vue?vue&type=template&id=12d997a6
|
|
2603
|
+
|
|
2604
|
+
const IconCrossvue_type_template_id_12d997a6_hoisted_1 = {
|
|
3151
2605
|
viewBox: "0 0 1024 1024",
|
|
3152
2606
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3153
2607
|
width: "16",
|
|
3154
2608
|
height: "16"
|
|
3155
2609
|
};
|
|
3156
|
-
|
|
3157
|
-
var IconCrossvue_type_template_id_12d997a6_hoisted_2 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("path", {
|
|
2610
|
+
const IconCrossvue_type_template_id_12d997a6_hoisted_2 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createElementVNode"])("path", {
|
|
3158
2611
|
d: "M184.64768 836.34176c3.9936 3.9936 9.23648 5.98016 14.47936 5.98016 5.24288 0 10.48576-2.00704 14.49984-6.00064l292.70016-293.04832 292.70016 293.04832c3.9936 4.01408 9.23648 6.00064 14.49984 6.00064 5.24288 0 10.48576-2.00704 14.47936-5.98016 8.00768-7.9872 8.00768-20.95104 0.02048-28.95872L535.61344 514.64192 828.0064 221.92128c7.9872-8.00768 7.9872-20.97152-0.02048-28.95872-8.02816-8.00768-20.97152-8.00768-28.95872 0.02048L506.30656 486.03136 213.6064 192.98304c-8.00768-8.00768-20.97152-8.00768-28.95872-0.02048-8.00768 7.9872-8.00768 20.95104-0.02048 28.95872l292.37248 292.72064L184.6272 807.38304C176.64 815.37024 176.64 828.35456 184.64768 836.34176z"
|
|
3159
2612
|
}, null, -1);
|
|
3160
|
-
|
|
2613
|
+
const IconCrossvue_type_template_id_12d997a6_hoisted_3 = [IconCrossvue_type_template_id_12d997a6_hoisted_2];
|
|
3161
2614
|
function IconCrossvue_type_template_id_12d997a6_render(_ctx, _cache) {
|
|
3162
|
-
return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["
|
|
2615
|
+
return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createElementBlock"])("svg", IconCrossvue_type_template_id_12d997a6_hoisted_1, IconCrossvue_type_template_id_12d997a6_hoisted_3);
|
|
3163
2616
|
}
|
|
3164
2617
|
// CONCATENATED MODULE: ./src/components/icon/IconCross.vue?vue&type=template&id=12d997a6
|
|
3165
2618
|
|
|
3166
2619
|
// CONCATENATED MODULE: ./src/components/icon/IconCross.vue
|
|
3167
2620
|
|
|
3168
2621
|
const IconCross_script = {}
|
|
3169
|
-
IconCross_script.render = IconCrossvue_type_template_id_12d997a6_render
|
|
3170
2622
|
|
|
3171
|
-
/* harmony default export */ var IconCross = (IconCross_script);
|
|
3172
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/icon/IconFill.vue?vue&type=template&id=094ee891
|
|
3173
2623
|
|
|
3174
|
-
|
|
2624
|
+
const IconCross_exports_ = /*#__PURE__*/exportHelper_default()(IconCross_script, [['render',IconCrossvue_type_template_id_12d997a6_render]])
|
|
2625
|
+
|
|
2626
|
+
/* harmony default export */ var IconCross = (IconCross_exports_);
|
|
2627
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader-v16/dist??ref--1-1!./src/components/icon/IconFill.vue?vue&type=template&id=094ee891
|
|
2628
|
+
|
|
2629
|
+
const IconFillvue_type_template_id_094ee891_hoisted_1 = {
|
|
3175
2630
|
version: "1.1",
|
|
3176
2631
|
viewBox: "0 0 1024 1024",
|
|
3177
2632
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3178
2633
|
width: "16",
|
|
3179
2634
|
height: "16"
|
|
3180
2635
|
};
|
|
3181
|
-
|
|
3182
|
-
var IconFillvue_type_template_id_094ee891_hoisted_2 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("path", {
|
|
2636
|
+
const IconFillvue_type_template_id_094ee891_hoisted_2 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createElementVNode"])("path", {
|
|
3183
2637
|
d: "M258.285714 197.028571l50.171429-50.171428a9.154286 9.154286 0 0 0-5.371429-15.542857L120 109.714286c-5.828571-0.685714-10.857143 4.228571-10.171429 10.171428L131.428571 302.971429c0.914286 7.542857 10.171429 10.742857 15.542858 5.371428l49.942857-49.942857L349.714286 411.085714c3.542857 3.542857 9.371429 3.542857 12.914285 0l48.457143-48.342857c3.542857-3.542857 3.542857-9.371429 0-12.914286L258.285714 197.028571z m403.085715 214.057143c3.542857 3.542857 9.371429 3.542857 12.914285 0l152.8-152.685714 49.942857 49.942857a9.154286 9.154286 0 0 0 15.542858-5.371428L914.171429 120c0.685714-5.828571-4.228571-10.857143-10.171429-10.171429L720.914286 131.428571c-7.542857 0.914286-10.742857 10.171429-5.371429 15.542858l50.171429 50.171428L612.914286 349.714286a9.177143 9.177143 0 0 0 0 12.914285l48.457143 48.457143zM892.571429 721.028571c-0.914286-7.542857-10.171429-10.742857-15.542858-5.371428l-49.942857 49.942857L674.285714 612.914286a9.177143 9.177143 0 0 0-12.914285 0l-48.457143 48.342857a9.177143 9.177143 0 0 0 0 12.914286L765.714286 826.971429l-50.171429 50.171428a9.154286 9.154286 0 0 0 5.371429 15.542857L904 914.285714c5.828571 0.685714 10.857143-4.228571 10.171429-10.171428L892.571429 721.028571z m-529.942858-108.114285a9.177143 9.177143 0 0 0-12.914285 0L196.914286 765.6l-49.942857-49.942857a9.154286 9.154286 0 0 0-15.542858 5.371428L109.828571 904c-0.685714 5.828571 4.228571 10.857143 10.171429 10.171429L303.085714 892.571429c7.542857-0.914286 10.742857-10.171429 5.371429-15.542858L258.285714 826.971429 411.085714 674.285714c3.542857-3.542857 3.542857-9.371429 0-12.914285l-48.457143-48.457143z"
|
|
3184
2638
|
}, null, -1);
|
|
3185
|
-
|
|
2639
|
+
const IconFillvue_type_template_id_094ee891_hoisted_3 = [IconFillvue_type_template_id_094ee891_hoisted_2];
|
|
3186
2640
|
function IconFillvue_type_template_id_094ee891_render(_ctx, _cache) {
|
|
3187
|
-
return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["
|
|
2641
|
+
return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createElementBlock"])("svg", IconFillvue_type_template_id_094ee891_hoisted_1, IconFillvue_type_template_id_094ee891_hoisted_3);
|
|
3188
2642
|
}
|
|
3189
2643
|
// CONCATENATED MODULE: ./src/components/icon/IconFill.vue?vue&type=template&id=094ee891
|
|
3190
2644
|
|
|
3191
2645
|
// CONCATENATED MODULE: ./src/components/icon/IconFill.vue
|
|
3192
2646
|
|
|
3193
2647
|
const IconFill_script = {}
|
|
3194
|
-
IconFill_script.render = IconFillvue_type_template_id_094ee891_render
|
|
3195
2648
|
|
|
3196
|
-
/* harmony default export */ var IconFill = (IconFill_script);
|
|
3197
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/icon/IconExitFill.vue?vue&type=template&id=570cb530
|
|
3198
2649
|
|
|
3199
|
-
|
|
2650
|
+
const IconFill_exports_ = /*#__PURE__*/exportHelper_default()(IconFill_script, [['render',IconFillvue_type_template_id_094ee891_render]])
|
|
2651
|
+
|
|
2652
|
+
/* harmony default export */ var IconFill = (IconFill_exports_);
|
|
2653
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader-v16/dist??ref--1-1!./src/components/icon/IconExitFill.vue?vue&type=template&id=570cb530
|
|
2654
|
+
|
|
2655
|
+
const IconExitFillvue_type_template_id_570cb530_hoisted_1 = {
|
|
3200
2656
|
viewBox: "0 0 1024 1024",
|
|
3201
2657
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3202
2658
|
width: "16",
|
|
3203
2659
|
height: "16"
|
|
3204
2660
|
};
|
|
3205
|
-
|
|
3206
|
-
var IconExitFillvue_type_template_id_570cb530_hoisted_2 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("path", {
|
|
2661
|
+
const IconExitFillvue_type_template_id_570cb530_hoisted_2 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createElementVNode"])("path", {
|
|
3207
2662
|
d: "M391 240.9c-0.8-6.6-8.9-9.4-13.6-4.7l-43.7 43.7L200 146.3c-3.1-3.1-8.2-3.1-11.3 0l-42.4 42.3c-3.1 3.1-3.1 8.2 0 11.3L280 333.6l-43.9 43.9c-4.7 4.7-1.9 12.8 4.7 13.6L401 410c5.1 0.6 9.5-3.7 8.9-8.9L391 240.9zM401.1 614.1L240.8 633c-6.6 0.8-9.4 8.9-4.7 13.6l43.9 43.9L146.3 824c-3.1 3.1-3.1 8.2 0 11.3l42.4 42.3c3.1 3.1 8.2 3.1 11.3 0L333.7 744l43.7 43.7c4.7 4.7 12.8 1.9 13.6-4.7l18.9-160.1c0.6-5.1-3.7-9.4-8.8-8.8zM622.9 409.9L783.2 391c6.6-0.8 9.4-8.9 4.7-13.6L744 333.6 877.7 200c3.1-3.1 3.1-8.2 0-11.3l-42.4-42.3c-3.1-3.1-8.2-3.1-11.3 0L690.3 279.9l-43.7-43.7c-4.7-4.7-12.8-1.9-13.6 4.7L614.1 401c-0.6 5.2 3.7 9.5 8.8 8.9zM744 690.4l43.9-43.9c4.7-4.7 1.9-12.8-4.7-13.6L623 614c-5.1-0.6-9.5 3.7-8.9 8.9L633 783.1c0.8 6.6 8.9 9.4 13.6 4.7l43.7-43.7L824 877.7c3.1 3.1 8.2 3.1 11.3 0l42.4-42.3c3.1-3.1 3.1-8.2 0-11.3L744 690.4z"
|
|
3208
2663
|
}, null, -1);
|
|
3209
|
-
|
|
2664
|
+
const IconExitFillvue_type_template_id_570cb530_hoisted_3 = [IconExitFillvue_type_template_id_570cb530_hoisted_2];
|
|
3210
2665
|
function IconExitFillvue_type_template_id_570cb530_render(_ctx, _cache) {
|
|
3211
|
-
return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["
|
|
2666
|
+
return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createElementBlock"])("svg", IconExitFillvue_type_template_id_570cb530_hoisted_1, IconExitFillvue_type_template_id_570cb530_hoisted_3);
|
|
3212
2667
|
}
|
|
3213
2668
|
// CONCATENATED MODULE: ./src/components/icon/IconExitFill.vue?vue&type=template&id=570cb530
|
|
3214
2669
|
|
|
3215
2670
|
// CONCATENATED MODULE: ./src/components/icon/IconExitFill.vue
|
|
3216
2671
|
|
|
3217
2672
|
const IconExitFill_script = {}
|
|
3218
|
-
IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
3219
2673
|
|
|
3220
|
-
|
|
2674
|
+
|
|
2675
|
+
const IconExitFill_exports_ = /*#__PURE__*/exportHelper_default()(IconExitFill_script, [['render',IconExitFillvue_type_template_id_570cb530_render]])
|
|
2676
|
+
|
|
2677
|
+
/* harmony default export */ var IconExitFill = (IconExitFill_exports_);
|
|
3221
2678
|
// CONCATENATED MODULE: ./src/components/renderer.js
|
|
3222
2679
|
|
|
3223
2680
|
|
|
3224
2681
|
|
|
3225
2682
|
|
|
3226
2683
|
|
|
2684
|
+
|
|
3227
2685
|
/* harmony default export */ var renderer = ({
|
|
3228
2686
|
methods: {
|
|
3229
|
-
renderDefaultButtons
|
|
3230
|
-
|
|
3231
|
-
|
|
2687
|
+
renderDefaultButtons() {
|
|
2688
|
+
const buttons = [];
|
|
3232
2689
|
if (this.showFillButton) {
|
|
3233
2690
|
buttons.push(Object(external_commonjs_vue_commonjs2_vue_root_Vue_["h"])('button', {
|
|
3234
2691
|
class: 'slideout-btn--fill',
|
|
3235
2692
|
onClick: this.toggleFillState
|
|
3236
2693
|
}, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["h"])(IconFill), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["h"])(IconExitFill)]));
|
|
3237
2694
|
}
|
|
3238
|
-
|
|
3239
2695
|
if (this.showClose) {
|
|
3240
2696
|
buttons.push(Object(external_commonjs_vue_commonjs2_vue_root_Vue_["h"])('button', {
|
|
3241
2697
|
class: 'slideout-btn--close',
|
|
3242
2698
|
onClick: this.tryClose
|
|
3243
2699
|
}, this.arrowButton ? Object(external_commonjs_vue_commonjs2_vue_root_Vue_["h"])(IconArrow) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["h"])(IconCross)));
|
|
3244
2700
|
}
|
|
3245
|
-
|
|
3246
2701
|
return this.span({
|
|
3247
2702
|
class: 'slideout-header--buttons-default'
|
|
3248
2703
|
}, buttons);
|
|
3249
2704
|
},
|
|
3250
|
-
renderResizeHandle
|
|
2705
|
+
renderResizeHandle() {
|
|
3251
2706
|
return this.div({
|
|
3252
2707
|
class: 'slideout-resize--handle',
|
|
3253
2708
|
onMousedown: this.mouseDownHandler
|
|
3254
2709
|
});
|
|
3255
2710
|
},
|
|
3256
|
-
renderHeader
|
|
2711
|
+
renderHeader() {
|
|
3257
2712
|
return this.div({
|
|
3258
|
-
class: 'slideout-header'
|
|
3259
|
-
style: this.headerStyle
|
|
2713
|
+
class: 'slideout-header'
|
|
3260
2714
|
}, this.$slots.header ? this.$slots.header() : [this.div({
|
|
3261
2715
|
class: 'slideout-header--text'
|
|
3262
2716
|
}, this.title), this.div({
|
|
@@ -3266,48 +2720,42 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3266
2720
|
class: 'slideout-header--buttons-custom'
|
|
3267
2721
|
}, this.$slots.buttons ? this.$slots.buttons() : []), this.renderDefaultButtons()])]);
|
|
3268
2722
|
},
|
|
3269
|
-
renderContent
|
|
2723
|
+
renderContent() {
|
|
3270
2724
|
return this.div({
|
|
3271
|
-
class: 'slideout-content'
|
|
3272
|
-
style: this.contentStyles
|
|
2725
|
+
class: 'slideout-content'
|
|
3273
2726
|
}, this.$slots.default());
|
|
3274
2727
|
},
|
|
3275
|
-
renderFooter
|
|
2728
|
+
renderFooter() {
|
|
3276
2729
|
return this.div({
|
|
3277
2730
|
class: 'slideout-footer'
|
|
3278
2731
|
}, this.$slots.footer ? this.$slots.footer() : []);
|
|
3279
2732
|
},
|
|
3280
|
-
renderLayout
|
|
3281
|
-
|
|
3282
|
-
|
|
2733
|
+
renderLayout() {
|
|
2734
|
+
const children = [];
|
|
3283
2735
|
if (this.resizable && !this.isFilled && !this.isSizeFixed) {
|
|
3284
2736
|
children.push(this.renderResizeHandle());
|
|
3285
2737
|
}
|
|
3286
|
-
|
|
3287
2738
|
if (this.showHeader) {
|
|
3288
2739
|
children.push(this.renderHeader());
|
|
3289
2740
|
}
|
|
3290
|
-
|
|
3291
2741
|
children.push(this.renderContent());
|
|
3292
|
-
|
|
3293
2742
|
if (this.showFooter) {
|
|
3294
2743
|
children.push(this.renderFooter());
|
|
3295
2744
|
}
|
|
3296
|
-
|
|
3297
2745
|
return this.div({
|
|
3298
2746
|
class: 'slideout-panel',
|
|
3299
2747
|
style: this.panelStyle,
|
|
3300
2748
|
ref: 'panel'
|
|
3301
2749
|
}, children);
|
|
3302
2750
|
},
|
|
3303
|
-
renderMask
|
|
2751
|
+
renderMask() {
|
|
3304
2752
|
return this.div({
|
|
3305
2753
|
class: 'slideout-mask',
|
|
3306
2754
|
style: this.maskStyle,
|
|
3307
2755
|
onClick: this.onMaskClick
|
|
3308
2756
|
});
|
|
3309
2757
|
},
|
|
3310
|
-
renderContainer
|
|
2758
|
+
renderContainer(children) {
|
|
3311
2759
|
return this.div({
|
|
3312
2760
|
class: this.containerClasses,
|
|
3313
2761
|
style: this.containerStyle,
|
|
@@ -3316,33 +2764,28 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3316
2764
|
onKeydown: this.onKeydown
|
|
3317
2765
|
}, children);
|
|
3318
2766
|
},
|
|
3319
|
-
div
|
|
2767
|
+
div(props, children) {
|
|
3320
2768
|
return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["h"])('div', props, children);
|
|
3321
2769
|
},
|
|
3322
|
-
span
|
|
2770
|
+
span(props, children) {
|
|
3323
2771
|
return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["h"])('span', props, children);
|
|
3324
2772
|
}
|
|
3325
2773
|
},
|
|
3326
|
-
render
|
|
2774
|
+
render() {
|
|
3327
2775
|
if (this.renderWhenVisible && !this.modelValue) {
|
|
3328
2776
|
return null;
|
|
3329
2777
|
}
|
|
3330
|
-
|
|
3331
|
-
var children = [];
|
|
3332
|
-
|
|
2778
|
+
const children = [];
|
|
3333
2779
|
if (this.showMask) {
|
|
3334
2780
|
children.push(this.renderMask());
|
|
3335
2781
|
}
|
|
3336
|
-
|
|
3337
2782
|
children.push(this.renderLayout());
|
|
3338
|
-
|
|
3339
|
-
|
|
2783
|
+
const container = this.renderContainer(children);
|
|
3340
2784
|
if (this.target) {
|
|
3341
2785
|
return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["h"])(external_commonjs_vue_commonjs2_vue_root_Vue_["Teleport"], {
|
|
3342
2786
|
to: this.target
|
|
3343
2787
|
}, container);
|
|
3344
2788
|
}
|
|
3345
|
-
|
|
3346
2789
|
return container;
|
|
3347
2790
|
}
|
|
3348
2791
|
});
|
|
@@ -3353,7 +2796,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3353
2796
|
|
|
3354
2797
|
|
|
3355
2798
|
|
|
3356
|
-
|
|
3357
2799
|
/* harmony default export */ var slideout = ({
|
|
3358
2800
|
name: 'Slideout',
|
|
3359
2801
|
inheritAttrs: false,
|
|
@@ -3372,7 +2814,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3372
2814
|
type: [String, Number, Array],
|
|
3373
2815
|
default: 400
|
|
3374
2816
|
},
|
|
3375
|
-
|
|
3376
2817
|
/**
|
|
3377
2818
|
* If to allow resize operation.
|
|
3378
2819
|
*/
|
|
@@ -3380,7 +2821,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3380
2821
|
type: Boolean,
|
|
3381
2822
|
default: false
|
|
3382
2823
|
},
|
|
3383
|
-
|
|
3384
2824
|
/**
|
|
3385
2825
|
* The minimize value for resizing.
|
|
3386
2826
|
* This does not limit the value of size.
|
|
@@ -3389,7 +2829,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3389
2829
|
type: Number,
|
|
3390
2830
|
default: 100
|
|
3391
2831
|
},
|
|
3392
|
-
|
|
3393
2832
|
/**
|
|
3394
2833
|
* The minimize value for resizing.
|
|
3395
2834
|
* 0 means there is no limit.
|
|
@@ -3403,7 +2842,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3403
2842
|
type: Number,
|
|
3404
2843
|
default: 1997
|
|
3405
2844
|
},
|
|
3406
|
-
|
|
3407
2845
|
/**
|
|
3408
2846
|
* Is slideout visible.
|
|
3409
2847
|
* Do not specify this directly, use v-model instead.
|
|
@@ -3412,21 +2850,18 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3412
2850
|
type: Boolean,
|
|
3413
2851
|
default: false
|
|
3414
2852
|
},
|
|
3415
|
-
|
|
3416
2853
|
/**
|
|
3417
2854
|
* The title text
|
|
3418
2855
|
*/
|
|
3419
2856
|
title: {
|
|
3420
2857
|
type: String
|
|
3421
2858
|
},
|
|
3422
|
-
|
|
3423
2859
|
/**
|
|
3424
2860
|
* Custom class for slideout.
|
|
3425
2861
|
*/
|
|
3426
2862
|
customClass: {
|
|
3427
2863
|
type: String
|
|
3428
2864
|
},
|
|
3429
|
-
|
|
3430
2865
|
/**
|
|
3431
2866
|
* If to show the mask layer.
|
|
3432
2867
|
*/
|
|
@@ -3434,7 +2869,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3434
2869
|
type: Boolean,
|
|
3435
2870
|
default: true
|
|
3436
2871
|
},
|
|
3437
|
-
|
|
3438
2872
|
/**
|
|
3439
2873
|
* The background color of mask layer.
|
|
3440
2874
|
*/
|
|
@@ -3442,7 +2876,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3442
2876
|
type: String,
|
|
3443
2877
|
default: null
|
|
3444
2878
|
},
|
|
3445
|
-
|
|
3446
2879
|
/**
|
|
3447
2880
|
* If to close slideout while mask is clicked.
|
|
3448
2881
|
*/
|
|
@@ -3450,7 +2883,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3450
2883
|
type: Boolean,
|
|
3451
2884
|
default: true
|
|
3452
2885
|
},
|
|
3453
|
-
|
|
3454
2886
|
/**
|
|
3455
2887
|
* Whether to ignore Esc.
|
|
3456
2888
|
*/
|
|
@@ -3458,18 +2890,14 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3458
2890
|
type: Boolean,
|
|
3459
2891
|
default: false
|
|
3460
2892
|
},
|
|
3461
|
-
|
|
3462
2893
|
/**
|
|
3463
2894
|
* The dock side, the default value is "right".
|
|
3464
2895
|
*/
|
|
3465
2896
|
dock: {
|
|
3466
2897
|
type: String,
|
|
3467
2898
|
default: 'right',
|
|
3468
|
-
validator:
|
|
3469
|
-
return ['top', 'right', 'bottom', 'left'].indexOf(value) >= 0;
|
|
3470
|
-
}
|
|
2899
|
+
validator: value => ['top', 'right', 'bottom', 'left'].indexOf(value) >= 0
|
|
3471
2900
|
},
|
|
3472
|
-
|
|
3473
2901
|
/**
|
|
3474
2902
|
* Specify the parent element to append slideout to.
|
|
3475
2903
|
*/
|
|
@@ -3485,7 +2913,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3485
2913
|
type: Boolean,
|
|
3486
2914
|
default: false
|
|
3487
2915
|
},
|
|
3488
|
-
|
|
3489
2916
|
/**
|
|
3490
2917
|
* Whether to show the close button.
|
|
3491
2918
|
*/
|
|
@@ -3493,7 +2920,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3493
2920
|
type: Boolean,
|
|
3494
2921
|
default: true
|
|
3495
2922
|
},
|
|
3496
|
-
|
|
3497
2923
|
/**
|
|
3498
2924
|
* Whether to show the fill-parent button.
|
|
3499
2925
|
*/
|
|
@@ -3501,7 +2927,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3501
2927
|
type: Boolean,
|
|
3502
2928
|
default: false
|
|
3503
2929
|
},
|
|
3504
|
-
|
|
3505
2930
|
/**
|
|
3506
2931
|
* Display slideout as fixed (The scroll will be locked)
|
|
3507
2932
|
*/
|
|
@@ -3509,7 +2934,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3509
2934
|
type: Boolean,
|
|
3510
2935
|
default: false
|
|
3511
2936
|
},
|
|
3512
|
-
|
|
3513
2937
|
/**
|
|
3514
2938
|
* The offset to dock side. ("px" or "%)
|
|
3515
2939
|
*/
|
|
@@ -3517,7 +2941,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3517
2941
|
type: String,
|
|
3518
2942
|
default: '0'
|
|
3519
2943
|
},
|
|
3520
|
-
|
|
3521
2944
|
/**
|
|
3522
2945
|
* Whether to show the close button as arrow.
|
|
3523
2946
|
*/
|
|
@@ -3525,7 +2948,6 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3525
2948
|
type: Boolean,
|
|
3526
2949
|
default: true
|
|
3527
2950
|
},
|
|
3528
|
-
|
|
3529
2951
|
/**
|
|
3530
2952
|
* Render content while "visible" is "true".
|
|
3531
2953
|
*/
|
|
@@ -3534,75 +2956,60 @@ IconExitFill_script.render = IconExitFillvue_type_template_id_570cb530_render
|
|
|
3534
2956
|
default: false
|
|
3535
2957
|
}
|
|
3536
2958
|
},
|
|
3537
|
-
mounted
|
|
2959
|
+
mounted() {
|
|
3538
2960
|
this.isFilled = this.fillParent;
|
|
3539
2961
|
this.updateParentElement();
|
|
3540
|
-
|
|
3541
2962
|
if (this.resizable) {
|
|
3542
2963
|
// Bind the mouse events for resizing.
|
|
3543
2964
|
document.addEventListener('mousemove', this.mouseMoveHandler);
|
|
3544
2965
|
document.addEventListener('mouseup', this.mouseUpHandler);
|
|
3545
2966
|
}
|
|
3546
|
-
|
|
3547
2967
|
this.headerButtons = this.$slots.btn ? this.$refs.buttons : null;
|
|
3548
2968
|
},
|
|
3549
|
-
beforeUnmount
|
|
2969
|
+
beforeUnmount() {
|
|
3550
2970
|
this.showContainer = false;
|
|
3551
|
-
|
|
3552
2971
|
if (this.resizable) {
|
|
3553
2972
|
// Remove the mouse events for resizing.
|
|
3554
2973
|
document.removeEventListener('mousemove', this.mouseUpHandler);
|
|
3555
2974
|
document.removeEventListener('mouseup', this.mouseMoveHandler);
|
|
3556
2975
|
}
|
|
3557
|
-
|
|
3558
2976
|
if (this.isVisible) {
|
|
3559
2977
|
this.tryClose();
|
|
3560
|
-
}
|
|
3561
|
-
|
|
3562
|
-
|
|
2978
|
+
}
|
|
2979
|
+
// Cancel the scroll lock.
|
|
3563
2980
|
document.body.classList.remove('slideout-helper--scroll-locker');
|
|
3564
2981
|
}
|
|
3565
2982
|
});
|
|
3566
2983
|
// CONCATENATED MODULE: ./src/components/index.js
|
|
3567
2984
|
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
2985
|
function setDefaultProps(customize) {
|
|
3573
|
-
for (
|
|
2986
|
+
for (let prop in customize) {
|
|
3574
2987
|
if (!customize.hasOwnProperty(prop)) {
|
|
3575
2988
|
continue;
|
|
3576
|
-
}
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
prop = prop.replace(/-[a-z]/g, function (match) {
|
|
2989
|
+
}
|
|
2990
|
+
// Parse property name like "abc_xyz" into "abcXyz".
|
|
2991
|
+
prop = prop.replace(/_[a-z]/g, match => {
|
|
3580
2992
|
return match[1].toUpperCase();
|
|
3581
2993
|
});
|
|
3582
|
-
|
|
3583
2994
|
if (!slideout.props.hasOwnProperty(prop)) {
|
|
3584
2995
|
continue;
|
|
3585
2996
|
}
|
|
3586
|
-
|
|
3587
2997
|
slideout.props[prop]['default'] = customize[prop];
|
|
3588
2998
|
}
|
|
3589
2999
|
}
|
|
3000
|
+
|
|
3590
3001
|
/**
|
|
3591
3002
|
*
|
|
3592
3003
|
* @param app
|
|
3593
3004
|
* @param {Object} defaults The defaults value
|
|
3594
3005
|
*/
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
install: function install(app, defaults) {
|
|
3599
|
-
if (defaults) {
|
|
3600
|
-
setDefaultProps(defaults);
|
|
3601
|
-
}
|
|
3602
|
-
|
|
3603
|
-
app.component(slideout.name, slideout);
|
|
3006
|
+
slideout.install = function (app, defaults) {
|
|
3007
|
+
if (defaults) {
|
|
3008
|
+
setDefaultProps(defaults);
|
|
3604
3009
|
}
|
|
3605
|
-
|
|
3010
|
+
app.component(slideout.name, slideout);
|
|
3011
|
+
};
|
|
3012
|
+
/* harmony default export */ var components = (slideout);
|
|
3606
3013
|
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
3607
3014
|
|
|
3608
3015
|
|
|
@@ -3629,10 +3036,10 @@ module.exports = function (it) {
|
|
|
3629
3036
|
/***/ "fdbf":
|
|
3630
3037
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3631
3038
|
|
|
3632
|
-
|
|
3039
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
3040
|
+
var NATIVE_SYMBOL = __webpack_require__("04f8");
|
|
3633
3041
|
|
|
3634
3042
|
module.exports = NATIVE_SYMBOL
|
|
3635
|
-
/* global Symbol -- safe */
|
|
3636
3043
|
&& !Symbol.sham
|
|
3637
3044
|
&& typeof Symbol.iterator == 'symbol';
|
|
3638
3045
|
|