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