cnhis-design-vue 2.1.105 → 2.1.107

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.
Files changed (44) hide show
  1. package/CHANGELOG.md +28 -14
  2. package/es/age/index.js +2 -2
  3. package/es/big-table/index.js +198 -193
  4. package/es/big-table/style.css +1 -1
  5. package/es/button/index.js +2 -2
  6. package/es/captcha/index.js +3 -3
  7. package/es/card-reader-sdk/index.js +1 -1
  8. package/es/checkbox/index.js +1 -1
  9. package/es/color-picker/index.js +1 -1
  10. package/es/direct/index.js +3146 -0
  11. package/es/direct/style.css +0 -0
  12. package/es/drag-layout/index.js +3 -3
  13. package/es/editor/index.js +1 -1
  14. package/es/ellipsis/index.js +1 -1
  15. package/es/fabric-chart/index.js +9 -9
  16. package/es/form-table/index.js +20 -20
  17. package/es/index/index.js +557 -543
  18. package/es/index/style.css +1 -1
  19. package/es/input/index.js +1 -1
  20. package/es/map/index.js +1 -1
  21. package/es/multi-chat/index.js +25 -25
  22. package/es/multi-chat-client/index.js +19 -19
  23. package/es/multi-chat-history/index.js +4 -4
  24. package/es/multi-chat-record/index.js +4 -4
  25. package/es/multi-chat-setting/index.js +20 -20
  26. package/es/multi-chat-sip/index.js +1 -1
  27. package/es/radio/index.js +1 -1
  28. package/es/scale-container/index.js +1 -1
  29. package/es/scale-view/index.js +27 -27
  30. package/es/select/index.js +4 -4
  31. package/es/select-label/index.js +3 -3
  32. package/es/select-person/index.js +2 -2
  33. package/es/select-tag/index.js +4 -4
  34. package/es/shortcut-setter/index.js +2 -2
  35. package/es/table-filter/index.js +234 -225
  36. package/es/tag/index.js +1 -1
  37. package/es/verification-code/index.js +2 -2
  38. package/lib/cui.common.js +376 -371
  39. package/lib/cui.umd.js +376 -371
  40. package/lib/cui.umd.min.js +400 -0
  41. package/package.json +1 -1
  42. package/packages/big-table/src/components/edit-form/EditForm.vue +8 -3
  43. package/packages/big-table/src/components/edit-form/edit-component/mixins/search.js +214 -259
  44. package/packages/direct/index.js +3 -0
@@ -0,0 +1,3146 @@
1
+ module.exports =
2
+ /******/ (function(modules) { // webpackBootstrap
3
+ /******/ // The module cache
4
+ /******/ var installedModules = {};
5
+ /******/
6
+ /******/ // The require function
7
+ /******/ function __webpack_require__(moduleId) {
8
+ /******/
9
+ /******/ // Check if module is in cache
10
+ /******/ if(installedModules[moduleId]) {
11
+ /******/ return installedModules[moduleId].exports;
12
+ /******/ }
13
+ /******/ // Create a new module (and put it into the cache)
14
+ /******/ var module = installedModules[moduleId] = {
15
+ /******/ i: moduleId,
16
+ /******/ l: false,
17
+ /******/ exports: {}
18
+ /******/ };
19
+ /******/
20
+ /******/ // Execute the module function
21
+ /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
22
+ /******/
23
+ /******/ // Flag the module as loaded
24
+ /******/ module.l = true;
25
+ /******/
26
+ /******/ // Return the exports of the module
27
+ /******/ return module.exports;
28
+ /******/ }
29
+ /******/
30
+ /******/
31
+ /******/ // expose the modules object (__webpack_modules__)
32
+ /******/ __webpack_require__.m = modules;
33
+ /******/
34
+ /******/ // expose the module cache
35
+ /******/ __webpack_require__.c = installedModules;
36
+ /******/
37
+ /******/ // define getter function for harmony exports
38
+ /******/ __webpack_require__.d = function(exports, name, getter) {
39
+ /******/ if(!__webpack_require__.o(exports, name)) {
40
+ /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
41
+ /******/ }
42
+ /******/ };
43
+ /******/
44
+ /******/ // define __esModule on exports
45
+ /******/ __webpack_require__.r = function(exports) {
46
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
47
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
48
+ /******/ }
49
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
50
+ /******/ };
51
+ /******/
52
+ /******/ // create a fake namespace object
53
+ /******/ // mode & 1: value is a module id, require it
54
+ /******/ // mode & 2: merge all properties of value into the ns
55
+ /******/ // mode & 4: return value when already ns object
56
+ /******/ // mode & 8|1: behave like require
57
+ /******/ __webpack_require__.t = function(value, mode) {
58
+ /******/ if(mode & 1) value = __webpack_require__(value);
59
+ /******/ if(mode & 8) return value;
60
+ /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
61
+ /******/ var ns = Object.create(null);
62
+ /******/ __webpack_require__.r(ns);
63
+ /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
64
+ /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
65
+ /******/ return ns;
66
+ /******/ };
67
+ /******/
68
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
69
+ /******/ __webpack_require__.n = function(module) {
70
+ /******/ var getter = module && module.__esModule ?
71
+ /******/ function getDefault() { return module['default']; } :
72
+ /******/ function getModuleExports() { return module; };
73
+ /******/ __webpack_require__.d(getter, 'a', getter);
74
+ /******/ return getter;
75
+ /******/ };
76
+ /******/
77
+ /******/ // Object.prototype.hasOwnProperty.call
78
+ /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
79
+ /******/
80
+ /******/ // __webpack_public_path__
81
+ /******/ __webpack_require__.p = "";
82
+ /******/
83
+ /******/
84
+ /******/ // Load entry module and return exports
85
+ /******/ return __webpack_require__(__webpack_require__.s = "29c8");
86
+ /******/ })
87
+ /************************************************************************/
88
+ /******/ ({
89
+
90
+ /***/ "00ee":
91
+ /***/ (function(module, exports, __webpack_require__) {
92
+
93
+ var wellKnownSymbol = __webpack_require__("b622");
94
+
95
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
96
+ var test = {};
97
+
98
+ test[TO_STRING_TAG] = 'z';
99
+
100
+ module.exports = String(test) === '[object z]';
101
+
102
+
103
+ /***/ }),
104
+
105
+ /***/ "0366":
106
+ /***/ (function(module, exports, __webpack_require__) {
107
+
108
+ var aFunction = __webpack_require__("1c0b");
109
+
110
+ // optional / simple context binding
111
+ module.exports = function (fn, that, length) {
112
+ aFunction(fn);
113
+ if (that === undefined) return fn;
114
+ switch (length) {
115
+ case 0: return function () {
116
+ return fn.call(that);
117
+ };
118
+ case 1: return function (a) {
119
+ return fn.call(that, a);
120
+ };
121
+ case 2: return function (a, b) {
122
+ return fn.call(that, a, b);
123
+ };
124
+ case 3: return function (a, b, c) {
125
+ return fn.call(that, a, b, c);
126
+ };
127
+ }
128
+ return function (/* ...args */) {
129
+ return fn.apply(that, arguments);
130
+ };
131
+ };
132
+
133
+
134
+ /***/ }),
135
+
136
+ /***/ "06cf":
137
+ /***/ (function(module, exports, __webpack_require__) {
138
+
139
+ var DESCRIPTORS = __webpack_require__("83ab");
140
+ var propertyIsEnumerableModule = __webpack_require__("d1e7");
141
+ var createPropertyDescriptor = __webpack_require__("5c6c");
142
+ var toIndexedObject = __webpack_require__("fc6a");
143
+ var toPropertyKey = __webpack_require__("a04b");
144
+ var has = __webpack_require__("5135");
145
+ var IE8_DOM_DEFINE = __webpack_require__("0cfb");
146
+
147
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
148
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
149
+
150
+ // `Object.getOwnPropertyDescriptor` method
151
+ // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
152
+ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
153
+ O = toIndexedObject(O);
154
+ P = toPropertyKey(P);
155
+ if (IE8_DOM_DEFINE) try {
156
+ return $getOwnPropertyDescriptor(O, P);
157
+ } catch (error) { /* empty */ }
158
+ if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);
159
+ };
160
+
161
+
162
+ /***/ }),
163
+
164
+ /***/ "0cfb":
165
+ /***/ (function(module, exports, __webpack_require__) {
166
+
167
+ var DESCRIPTORS = __webpack_require__("83ab");
168
+ var fails = __webpack_require__("d039");
169
+ var createElement = __webpack_require__("cc12");
170
+
171
+ // Thank's IE8 for his funny defineProperty
172
+ module.exports = !DESCRIPTORS && !fails(function () {
173
+ // eslint-disable-next-line es/no-object-defineproperty -- requied for testing
174
+ return Object.defineProperty(createElement('div'), 'a', {
175
+ get: function () { return 7; }
176
+ }).a != 7;
177
+ });
178
+
179
+
180
+ /***/ }),
181
+
182
+ /***/ "19aa":
183
+ /***/ (function(module, exports) {
184
+
185
+ module.exports = function (it, Constructor, name) {
186
+ if (!(it instanceof Constructor)) {
187
+ throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');
188
+ } return it;
189
+ };
190
+
191
+
192
+ /***/ }),
193
+
194
+ /***/ "1be4":
195
+ /***/ (function(module, exports, __webpack_require__) {
196
+
197
+ var getBuiltIn = __webpack_require__("d066");
198
+
199
+ module.exports = getBuiltIn('document', 'documentElement');
200
+
201
+
202
+ /***/ }),
203
+
204
+ /***/ "1c0b":
205
+ /***/ (function(module, exports) {
206
+
207
+ module.exports = function (it) {
208
+ if (typeof it != 'function') {
209
+ throw TypeError(String(it) + ' is not a function');
210
+ } return it;
211
+ };
212
+
213
+
214
+ /***/ }),
215
+
216
+ /***/ "1c7e":
217
+ /***/ (function(module, exports, __webpack_require__) {
218
+
219
+ var wellKnownSymbol = __webpack_require__("b622");
220
+
221
+ var ITERATOR = wellKnownSymbol('iterator');
222
+ var SAFE_CLOSING = false;
223
+
224
+ try {
225
+ var called = 0;
226
+ var iteratorWithReturn = {
227
+ next: function () {
228
+ return { done: !!called++ };
229
+ },
230
+ 'return': function () {
231
+ SAFE_CLOSING = true;
232
+ }
233
+ };
234
+ iteratorWithReturn[ITERATOR] = function () {
235
+ return this;
236
+ };
237
+ // eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
238
+ Array.from(iteratorWithReturn, function () { throw 2; });
239
+ } catch (error) { /* empty */ }
240
+
241
+ module.exports = function (exec, SKIP_CLOSING) {
242
+ if (!SKIP_CLOSING && !SAFE_CLOSING) return false;
243
+ var ITERATION_SUPPORT = false;
244
+ try {
245
+ var object = {};
246
+ object[ITERATOR] = function () {
247
+ return {
248
+ next: function () {
249
+ return { done: ITERATION_SUPPORT = true };
250
+ }
251
+ };
252
+ };
253
+ exec(object);
254
+ } catch (error) { /* empty */ }
255
+ return ITERATION_SUPPORT;
256
+ };
257
+
258
+
259
+ /***/ }),
260
+
261
+ /***/ "1cdc":
262
+ /***/ (function(module, exports, __webpack_require__) {
263
+
264
+ var userAgent = __webpack_require__("342f");
265
+
266
+ module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent);
267
+
268
+
269
+ /***/ }),
270
+
271
+ /***/ "1d80":
272
+ /***/ (function(module, exports) {
273
+
274
+ // `RequireObjectCoercible` abstract operation
275
+ // https://tc39.es/ecma262/#sec-requireobjectcoercible
276
+ module.exports = function (it) {
277
+ if (it == undefined) throw TypeError("Can't call method on " + it);
278
+ return it;
279
+ };
280
+
281
+
282
+ /***/ }),
283
+
284
+ /***/ "2266":
285
+ /***/ (function(module, exports, __webpack_require__) {
286
+
287
+ var anObject = __webpack_require__("825a");
288
+ var isArrayIteratorMethod = __webpack_require__("e95a");
289
+ var toLength = __webpack_require__("50c4");
290
+ var bind = __webpack_require__("0366");
291
+ var getIteratorMethod = __webpack_require__("35a1");
292
+ var iteratorClose = __webpack_require__("2a62");
293
+
294
+ var Result = function (stopped, result) {
295
+ this.stopped = stopped;
296
+ this.result = result;
297
+ };
298
+
299
+ module.exports = function (iterable, unboundFunction, options) {
300
+ var that = options && options.that;
301
+ var AS_ENTRIES = !!(options && options.AS_ENTRIES);
302
+ var IS_ITERATOR = !!(options && options.IS_ITERATOR);
303
+ var INTERRUPTED = !!(options && options.INTERRUPTED);
304
+ var fn = bind(unboundFunction, that, 1 + AS_ENTRIES + INTERRUPTED);
305
+ var iterator, iterFn, index, length, result, next, step;
306
+
307
+ var stop = function (condition) {
308
+ if (iterator) iteratorClose(iterator);
309
+ return new Result(true, condition);
310
+ };
311
+
312
+ var callFn = function (value) {
313
+ if (AS_ENTRIES) {
314
+ anObject(value);
315
+ return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
316
+ } return INTERRUPTED ? fn(value, stop) : fn(value);
317
+ };
318
+
319
+ if (IS_ITERATOR) {
320
+ iterator = iterable;
321
+ } else {
322
+ iterFn = getIteratorMethod(iterable);
323
+ if (typeof iterFn != 'function') throw TypeError('Target is not iterable');
324
+ // optimisation for array iterators
325
+ if (isArrayIteratorMethod(iterFn)) {
326
+ for (index = 0, length = toLength(iterable.length); length > index; index++) {
327
+ result = callFn(iterable[index]);
328
+ if (result && result instanceof Result) return result;
329
+ } return new Result(false);
330
+ }
331
+ iterator = iterFn.call(iterable);
332
+ }
333
+
334
+ next = iterator.next;
335
+ while (!(step = next.call(iterator)).done) {
336
+ try {
337
+ result = callFn(step.value);
338
+ } catch (error) {
339
+ iteratorClose(iterator);
340
+ throw error;
341
+ }
342
+ if (typeof result == 'object' && result && result instanceof Result) return result;
343
+ } return new Result(false);
344
+ };
345
+
346
+
347
+ /***/ }),
348
+
349
+ /***/ "23cb":
350
+ /***/ (function(module, exports, __webpack_require__) {
351
+
352
+ var toInteger = __webpack_require__("a691");
353
+
354
+ var max = Math.max;
355
+ var min = Math.min;
356
+
357
+ // Helper for a popular repeating case of the spec:
358
+ // Let integer be ? ToInteger(index).
359
+ // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
360
+ module.exports = function (index, length) {
361
+ var integer = toInteger(index);
362
+ return integer < 0 ? max(integer + length, 0) : min(integer, length);
363
+ };
364
+
365
+
366
+ /***/ }),
367
+
368
+ /***/ "23e7":
369
+ /***/ (function(module, exports, __webpack_require__) {
370
+
371
+ var global = __webpack_require__("da84");
372
+ var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
373
+ var createNonEnumerableProperty = __webpack_require__("9112");
374
+ var redefine = __webpack_require__("6eeb");
375
+ var setGlobal = __webpack_require__("ce4e");
376
+ var copyConstructorProperties = __webpack_require__("e893");
377
+ var isForced = __webpack_require__("94ca");
378
+
379
+ /*
380
+ options.target - name of the target object
381
+ options.global - target is the global object
382
+ options.stat - export as static methods of target
383
+ options.proto - export as prototype methods of target
384
+ options.real - real prototype method for the `pure` version
385
+ options.forced - export even if the native feature is available
386
+ options.bind - bind methods to the target, required for the `pure` version
387
+ options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
388
+ options.unsafe - use the simple assignment of property instead of delete + defineProperty
389
+ options.sham - add a flag to not completely full polyfills
390
+ options.enumerable - export as enumerable property
391
+ options.noTargetGet - prevent calling a getter on target
392
+ */
393
+ module.exports = function (options, source) {
394
+ var TARGET = options.target;
395
+ var GLOBAL = options.global;
396
+ var STATIC = options.stat;
397
+ var FORCED, target, key, targetProperty, sourceProperty, descriptor;
398
+ if (GLOBAL) {
399
+ target = global;
400
+ } else if (STATIC) {
401
+ target = global[TARGET] || setGlobal(TARGET, {});
402
+ } else {
403
+ target = (global[TARGET] || {}).prototype;
404
+ }
405
+ if (target) for (key in source) {
406
+ sourceProperty = source[key];
407
+ if (options.noTargetGet) {
408
+ descriptor = getOwnPropertyDescriptor(target, key);
409
+ targetProperty = descriptor && descriptor.value;
410
+ } else targetProperty = target[key];
411
+ FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
412
+ // contained in target
413
+ if (!FORCED && targetProperty !== undefined) {
414
+ if (typeof sourceProperty === typeof targetProperty) continue;
415
+ copyConstructorProperties(sourceProperty, targetProperty);
416
+ }
417
+ // add a flag to not completely full polyfills
418
+ if (options.sham || (targetProperty && targetProperty.sham)) {
419
+ createNonEnumerableProperty(sourceProperty, 'sham', true);
420
+ }
421
+ // extend global
422
+ redefine(target, key, sourceProperty, options);
423
+ }
424
+ };
425
+
426
+
427
+ /***/ }),
428
+
429
+ /***/ "241c":
430
+ /***/ (function(module, exports, __webpack_require__) {
431
+
432
+ var internalObjectKeys = __webpack_require__("ca84");
433
+ var enumBugKeys = __webpack_require__("7839");
434
+
435
+ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
436
+
437
+ // `Object.getOwnPropertyNames` method
438
+ // https://tc39.es/ecma262/#sec-object.getownpropertynames
439
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
440
+ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
441
+ return internalObjectKeys(O, hiddenKeys);
442
+ };
443
+
444
+
445
+ /***/ }),
446
+
447
+ /***/ "2626":
448
+ /***/ (function(module, exports, __webpack_require__) {
449
+
450
+ "use strict";
451
+
452
+ var getBuiltIn = __webpack_require__("d066");
453
+ var definePropertyModule = __webpack_require__("9bf2");
454
+ var wellKnownSymbol = __webpack_require__("b622");
455
+ var DESCRIPTORS = __webpack_require__("83ab");
456
+
457
+ var SPECIES = wellKnownSymbol('species');
458
+
459
+ module.exports = function (CONSTRUCTOR_NAME) {
460
+ var Constructor = getBuiltIn(CONSTRUCTOR_NAME);
461
+ var defineProperty = definePropertyModule.f;
462
+
463
+ if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) {
464
+ defineProperty(Constructor, SPECIES, {
465
+ configurable: true,
466
+ get: function () { return this; }
467
+ });
468
+ }
469
+ };
470
+
471
+
472
+ /***/ }),
473
+
474
+ /***/ "29c8":
475
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
476
+
477
+ "use strict";
478
+ __webpack_require__.r(__webpack_exports__);
479
+ /* harmony import */ var F_project_crm_refactor_low_cnhis_design_v2_node_modules_core_js_modules_es_array_iterator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("e260");
480
+ /* harmony import */ var F_project_crm_refactor_low_cnhis_design_v2_node_modules_core_js_modules_es_array_iterator_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(F_project_crm_refactor_low_cnhis_design_v2_node_modules_core_js_modules_es_array_iterator_js__WEBPACK_IMPORTED_MODULE_0__);
481
+ /* harmony import */ var F_project_crm_refactor_low_cnhis_design_v2_node_modules_core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("e6cf");
482
+ /* harmony import */ var F_project_crm_refactor_low_cnhis_design_v2_node_modules_core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(F_project_crm_refactor_low_cnhis_design_v2_node_modules_core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_1__);
483
+ /* harmony import */ var F_project_crm_refactor_low_cnhis_design_v2_node_modules_core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("cca6");
484
+ /* harmony import */ var F_project_crm_refactor_low_cnhis_design_v2_node_modules_core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(F_project_crm_refactor_low_cnhis_design_v2_node_modules_core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_2__);
485
+ /* harmony import */ var F_project_crm_refactor_low_cnhis_design_v2_node_modules_core_js_modules_es_promise_finally_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("a79d");
486
+ /* harmony import */ var F_project_crm_refactor_low_cnhis_design_v2_node_modules_core_js_modules_es_promise_finally_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(F_project_crm_refactor_low_cnhis_design_v2_node_modules_core_js_modules_es_promise_finally_js__WEBPACK_IMPORTED_MODULE_3__);
487
+ /* harmony import */ var _directive_flexibleResize__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("87e0");
488
+
489
+
490
+
491
+
492
+
493
+ /* harmony default export */ __webpack_exports__["default"] = ({
494
+ flexibleResize: _directive_flexibleResize__WEBPACK_IMPORTED_MODULE_4__[/* default */ "a"]
495
+ });
496
+
497
+ /***/ }),
498
+
499
+ /***/ "2a62":
500
+ /***/ (function(module, exports, __webpack_require__) {
501
+
502
+ var anObject = __webpack_require__("825a");
503
+
504
+ module.exports = function (iterator) {
505
+ var returnMethod = iterator['return'];
506
+ if (returnMethod !== undefined) {
507
+ return anObject(returnMethod.call(iterator)).value;
508
+ }
509
+ };
510
+
511
+
512
+ /***/ }),
513
+
514
+ /***/ "2cf4":
515
+ /***/ (function(module, exports, __webpack_require__) {
516
+
517
+ var global = __webpack_require__("da84");
518
+ var fails = __webpack_require__("d039");
519
+ var bind = __webpack_require__("0366");
520
+ var html = __webpack_require__("1be4");
521
+ var createElement = __webpack_require__("cc12");
522
+ var IS_IOS = __webpack_require__("1cdc");
523
+ var IS_NODE = __webpack_require__("605d");
524
+
525
+ var set = global.setImmediate;
526
+ var clear = global.clearImmediate;
527
+ var process = global.process;
528
+ var MessageChannel = global.MessageChannel;
529
+ var Dispatch = global.Dispatch;
530
+ var counter = 0;
531
+ var queue = {};
532
+ var ONREADYSTATECHANGE = 'onreadystatechange';
533
+ var location, defer, channel, port;
534
+
535
+ try {
536
+ // Deno throws a ReferenceError on `location` access without `--location` flag
537
+ location = global.location;
538
+ } catch (error) { /* empty */ }
539
+
540
+ var run = function (id) {
541
+ // eslint-disable-next-line no-prototype-builtins -- safe
542
+ if (queue.hasOwnProperty(id)) {
543
+ var fn = queue[id];
544
+ delete queue[id];
545
+ fn();
546
+ }
547
+ };
548
+
549
+ var runner = function (id) {
550
+ return function () {
551
+ run(id);
552
+ };
553
+ };
554
+
555
+ var listener = function (event) {
556
+ run(event.data);
557
+ };
558
+
559
+ var post = function (id) {
560
+ // old engines have not location.origin
561
+ global.postMessage(String(id), location.protocol + '//' + location.host);
562
+ };
563
+
564
+ // Node.js 0.9+ & IE10+ has setImmediate, otherwise:
565
+ if (!set || !clear) {
566
+ set = function setImmediate(fn) {
567
+ var args = [];
568
+ var argumentsLength = arguments.length;
569
+ var i = 1;
570
+ while (argumentsLength > i) args.push(arguments[i++]);
571
+ queue[++counter] = function () {
572
+ // eslint-disable-next-line no-new-func -- spec requirement
573
+ (typeof fn == 'function' ? fn : Function(fn)).apply(undefined, args);
574
+ };
575
+ defer(counter);
576
+ return counter;
577
+ };
578
+ clear = function clearImmediate(id) {
579
+ delete queue[id];
580
+ };
581
+ // Node.js 0.8-
582
+ if (IS_NODE) {
583
+ defer = function (id) {
584
+ process.nextTick(runner(id));
585
+ };
586
+ // Sphere (JS game engine) Dispatch API
587
+ } else if (Dispatch && Dispatch.now) {
588
+ defer = function (id) {
589
+ Dispatch.now(runner(id));
590
+ };
591
+ // Browsers with MessageChannel, includes WebWorkers
592
+ // except iOS - https://github.com/zloirock/core-js/issues/624
593
+ } else if (MessageChannel && !IS_IOS) {
594
+ channel = new MessageChannel();
595
+ port = channel.port2;
596
+ channel.port1.onmessage = listener;
597
+ defer = bind(port.postMessage, port, 1);
598
+ // Browsers with postMessage, skip WebWorkers
599
+ // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
600
+ } else if (
601
+ global.addEventListener &&
602
+ typeof postMessage == 'function' &&
603
+ !global.importScripts &&
604
+ location && location.protocol !== 'file:' &&
605
+ !fails(post)
606
+ ) {
607
+ defer = post;
608
+ global.addEventListener('message', listener, false);
609
+ // IE8-
610
+ } else if (ONREADYSTATECHANGE in createElement('script')) {
611
+ defer = function (id) {
612
+ html.appendChild(createElement('script'))[ONREADYSTATECHANGE] = function () {
613
+ html.removeChild(this);
614
+ run(id);
615
+ };
616
+ };
617
+ // Rest old browsers
618
+ } else {
619
+ defer = function (id) {
620
+ setTimeout(runner(id), 0);
621
+ };
622
+ }
623
+ }
624
+
625
+ module.exports = {
626
+ set: set,
627
+ clear: clear
628
+ };
629
+
630
+
631
+ /***/ }),
632
+
633
+ /***/ "2d00":
634
+ /***/ (function(module, exports, __webpack_require__) {
635
+
636
+ var global = __webpack_require__("da84");
637
+ var userAgent = __webpack_require__("342f");
638
+
639
+ var process = global.process;
640
+ var Deno = global.Deno;
641
+ var versions = process && process.versions || Deno && Deno.version;
642
+ var v8 = versions && versions.v8;
643
+ var match, version;
644
+
645
+ if (v8) {
646
+ match = v8.split('.');
647
+ version = match[0] < 4 ? 1 : match[0] + match[1];
648
+ } else if (userAgent) {
649
+ match = userAgent.match(/Edge\/(\d+)/);
650
+ if (!match || match[1] >= 74) {
651
+ match = userAgent.match(/Chrome\/(\d+)/);
652
+ if (match) version = match[1];
653
+ }
654
+ }
655
+
656
+ module.exports = version && +version;
657
+
658
+
659
+ /***/ }),
660
+
661
+ /***/ "342f":
662
+ /***/ (function(module, exports, __webpack_require__) {
663
+
664
+ var getBuiltIn = __webpack_require__("d066");
665
+
666
+ module.exports = getBuiltIn('navigator', 'userAgent') || '';
667
+
668
+
669
+ /***/ }),
670
+
671
+ /***/ "35a1":
672
+ /***/ (function(module, exports, __webpack_require__) {
673
+
674
+ var classof = __webpack_require__("f5df");
675
+ var Iterators = __webpack_require__("3f8c");
676
+ var wellKnownSymbol = __webpack_require__("b622");
677
+
678
+ var ITERATOR = wellKnownSymbol('iterator');
679
+
680
+ module.exports = function (it) {
681
+ if (it != undefined) return it[ITERATOR]
682
+ || it['@@iterator']
683
+ || Iterators[classof(it)];
684
+ };
685
+
686
+
687
+ /***/ }),
688
+
689
+ /***/ "37e8":
690
+ /***/ (function(module, exports, __webpack_require__) {
691
+
692
+ var DESCRIPTORS = __webpack_require__("83ab");
693
+ var definePropertyModule = __webpack_require__("9bf2");
694
+ var anObject = __webpack_require__("825a");
695
+ var objectKeys = __webpack_require__("df75");
696
+
697
+ // `Object.defineProperties` method
698
+ // https://tc39.es/ecma262/#sec-object.defineproperties
699
+ // eslint-disable-next-line es/no-object-defineproperties -- safe
700
+ module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {
701
+ anObject(O);
702
+ var keys = objectKeys(Properties);
703
+ var length = keys.length;
704
+ var index = 0;
705
+ var key;
706
+ while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);
707
+ return O;
708
+ };
709
+
710
+
711
+ /***/ }),
712
+
713
+ /***/ "3bbe":
714
+ /***/ (function(module, exports, __webpack_require__) {
715
+
716
+ var isObject = __webpack_require__("861d");
717
+
718
+ module.exports = function (it) {
719
+ if (!isObject(it) && it !== null) {
720
+ throw TypeError("Can't set " + String(it) + ' as a prototype');
721
+ } return it;
722
+ };
723
+
724
+
725
+ /***/ }),
726
+
727
+ /***/ "3f8c":
728
+ /***/ (function(module, exports) {
729
+
730
+ module.exports = {};
731
+
732
+
733
+ /***/ }),
734
+
735
+ /***/ "44ad":
736
+ /***/ (function(module, exports, __webpack_require__) {
737
+
738
+ var fails = __webpack_require__("d039");
739
+ var classof = __webpack_require__("c6b6");
740
+
741
+ var split = ''.split;
742
+
743
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
744
+ module.exports = fails(function () {
745
+ // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
746
+ // eslint-disable-next-line no-prototype-builtins -- safe
747
+ return !Object('z').propertyIsEnumerable(0);
748
+ }) ? function (it) {
749
+ return classof(it) == 'String' ? split.call(it, '') : Object(it);
750
+ } : Object;
751
+
752
+
753
+ /***/ }),
754
+
755
+ /***/ "44d2":
756
+ /***/ (function(module, exports, __webpack_require__) {
757
+
758
+ var wellKnownSymbol = __webpack_require__("b622");
759
+ var create = __webpack_require__("7c73");
760
+ var definePropertyModule = __webpack_require__("9bf2");
761
+
762
+ var UNSCOPABLES = wellKnownSymbol('unscopables');
763
+ var ArrayPrototype = Array.prototype;
764
+
765
+ // Array.prototype[@@unscopables]
766
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
767
+ if (ArrayPrototype[UNSCOPABLES] == undefined) {
768
+ definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {
769
+ configurable: true,
770
+ value: create(null)
771
+ });
772
+ }
773
+
774
+ // add a key to Array.prototype[@@unscopables]
775
+ module.exports = function (key) {
776
+ ArrayPrototype[UNSCOPABLES][key] = true;
777
+ };
778
+
779
+
780
+ /***/ }),
781
+
782
+ /***/ "44de":
783
+ /***/ (function(module, exports, __webpack_require__) {
784
+
785
+ var global = __webpack_require__("da84");
786
+
787
+ module.exports = function (a, b) {
788
+ var console = global.console;
789
+ if (console && console.error) {
790
+ arguments.length === 1 ? console.error(a) : console.error(a, b);
791
+ }
792
+ };
793
+
794
+
795
+ /***/ }),
796
+
797
+ /***/ "4840":
798
+ /***/ (function(module, exports, __webpack_require__) {
799
+
800
+ var anObject = __webpack_require__("825a");
801
+ var aFunction = __webpack_require__("1c0b");
802
+ var wellKnownSymbol = __webpack_require__("b622");
803
+
804
+ var SPECIES = wellKnownSymbol('species');
805
+
806
+ // `SpeciesConstructor` abstract operation
807
+ // https://tc39.es/ecma262/#sec-speciesconstructor
808
+ module.exports = function (O, defaultConstructor) {
809
+ var C = anObject(O).constructor;
810
+ var S;
811
+ return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aFunction(S);
812
+ };
813
+
814
+
815
+ /***/ }),
816
+
817
+ /***/ "485a":
818
+ /***/ (function(module, exports, __webpack_require__) {
819
+
820
+ var isObject = __webpack_require__("861d");
821
+
822
+ // `OrdinaryToPrimitive` abstract operation
823
+ // https://tc39.es/ecma262/#sec-ordinarytoprimitive
824
+ module.exports = function (input, pref) {
825
+ var fn, val;
826
+ if (pref === 'string' && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
827
+ if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
828
+ if (pref !== 'string' && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
829
+ throw TypeError("Can't convert object to primitive value");
830
+ };
831
+
832
+
833
+ /***/ }),
834
+
835
+ /***/ "4930":
836
+ /***/ (function(module, exports, __webpack_require__) {
837
+
838
+ /* eslint-disable es/no-symbol -- required for testing */
839
+ var V8_VERSION = __webpack_require__("2d00");
840
+ var fails = __webpack_require__("d039");
841
+
842
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
843
+ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
844
+ var symbol = Symbol();
845
+ // Chrome 38 Symbol has incorrect toString conversion
846
+ // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
847
+ return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
848
+ // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
849
+ !Symbol.sham && V8_VERSION && V8_VERSION < 41;
850
+ });
851
+
852
+
853
+ /***/ }),
854
+
855
+ /***/ "4d64":
856
+ /***/ (function(module, exports, __webpack_require__) {
857
+
858
+ var toIndexedObject = __webpack_require__("fc6a");
859
+ var toLength = __webpack_require__("50c4");
860
+ var toAbsoluteIndex = __webpack_require__("23cb");
861
+
862
+ // `Array.prototype.{ indexOf, includes }` methods implementation
863
+ var createMethod = function (IS_INCLUDES) {
864
+ return function ($this, el, fromIndex) {
865
+ var O = toIndexedObject($this);
866
+ var length = toLength(O.length);
867
+ var index = toAbsoluteIndex(fromIndex, length);
868
+ var value;
869
+ // Array#includes uses SameValueZero equality algorithm
870
+ // eslint-disable-next-line no-self-compare -- NaN check
871
+ if (IS_INCLUDES && el != el) while (length > index) {
872
+ value = O[index++];
873
+ // eslint-disable-next-line no-self-compare -- NaN check
874
+ if (value != value) return true;
875
+ // Array#indexOf ignores holes, Array#includes - not
876
+ } else for (;length > index; index++) {
877
+ if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
878
+ } return !IS_INCLUDES && -1;
879
+ };
880
+ };
881
+
882
+ module.exports = {
883
+ // `Array.prototype.includes` method
884
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
885
+ includes: createMethod(true),
886
+ // `Array.prototype.indexOf` method
887
+ // https://tc39.es/ecma262/#sec-array.prototype.indexof
888
+ indexOf: createMethod(false)
889
+ };
890
+
891
+
892
+ /***/ }),
893
+
894
+ /***/ "50c4":
895
+ /***/ (function(module, exports, __webpack_require__) {
896
+
897
+ var toInteger = __webpack_require__("a691");
898
+
899
+ var min = Math.min;
900
+
901
+ // `ToLength` abstract operation
902
+ // https://tc39.es/ecma262/#sec-tolength
903
+ module.exports = function (argument) {
904
+ return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
905
+ };
906
+
907
+
908
+ /***/ }),
909
+
910
+ /***/ "5135":
911
+ /***/ (function(module, exports, __webpack_require__) {
912
+
913
+ var toObject = __webpack_require__("7b0b");
914
+
915
+ var hasOwnProperty = {}.hasOwnProperty;
916
+
917
+ module.exports = Object.hasOwn || function hasOwn(it, key) {
918
+ return hasOwnProperty.call(toObject(it), key);
919
+ };
920
+
921
+
922
+ /***/ }),
923
+
924
+ /***/ "5692":
925
+ /***/ (function(module, exports, __webpack_require__) {
926
+
927
+ var IS_PURE = __webpack_require__("c430");
928
+ var store = __webpack_require__("c6cd");
929
+
930
+ (module.exports = function (key, value) {
931
+ return store[key] || (store[key] = value !== undefined ? value : {});
932
+ })('versions', []).push({
933
+ version: '3.16.3',
934
+ mode: IS_PURE ? 'pure' : 'global',
935
+ copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
936
+ });
937
+
938
+
939
+ /***/ }),
940
+
941
+ /***/ "56ef":
942
+ /***/ (function(module, exports, __webpack_require__) {
943
+
944
+ var getBuiltIn = __webpack_require__("d066");
945
+ var getOwnPropertyNamesModule = __webpack_require__("241c");
946
+ var getOwnPropertySymbolsModule = __webpack_require__("7418");
947
+ var anObject = __webpack_require__("825a");
948
+
949
+ // all object keys, includes non-enumerable and symbols
950
+ module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
951
+ var keys = getOwnPropertyNamesModule.f(anObject(it));
952
+ var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
953
+ return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
954
+ };
955
+
956
+
957
+ /***/ }),
958
+
959
+ /***/ "5c6c":
960
+ /***/ (function(module, exports) {
961
+
962
+ module.exports = function (bitmap, value) {
963
+ return {
964
+ enumerable: !(bitmap & 1),
965
+ configurable: !(bitmap & 2),
966
+ writable: !(bitmap & 4),
967
+ value: value
968
+ };
969
+ };
970
+
971
+
972
+ /***/ }),
973
+
974
+ /***/ "605d":
975
+ /***/ (function(module, exports, __webpack_require__) {
976
+
977
+ var classof = __webpack_require__("c6b6");
978
+ var global = __webpack_require__("da84");
979
+
980
+ module.exports = classof(global.process) == 'process';
981
+
982
+
983
+ /***/ }),
984
+
985
+ /***/ "6069":
986
+ /***/ (function(module, exports) {
987
+
988
+ module.exports = typeof window == 'object';
989
+
990
+
991
+ /***/ }),
992
+
993
+ /***/ "60da":
994
+ /***/ (function(module, exports, __webpack_require__) {
995
+
996
+ "use strict";
997
+
998
+ var DESCRIPTORS = __webpack_require__("83ab");
999
+ var fails = __webpack_require__("d039");
1000
+ var objectKeys = __webpack_require__("df75");
1001
+ var getOwnPropertySymbolsModule = __webpack_require__("7418");
1002
+ var propertyIsEnumerableModule = __webpack_require__("d1e7");
1003
+ var toObject = __webpack_require__("7b0b");
1004
+ var IndexedObject = __webpack_require__("44ad");
1005
+
1006
+ // eslint-disable-next-line es/no-object-assign -- safe
1007
+ var $assign = Object.assign;
1008
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1009
+ var defineProperty = Object.defineProperty;
1010
+
1011
+ // `Object.assign` method
1012
+ // https://tc39.es/ecma262/#sec-object.assign
1013
+ module.exports = !$assign || fails(function () {
1014
+ // should have correct order of operations (Edge bug)
1015
+ if (DESCRIPTORS && $assign({ b: 1 }, $assign(defineProperty({}, 'a', {
1016
+ enumerable: true,
1017
+ get: function () {
1018
+ defineProperty(this, 'b', {
1019
+ value: 3,
1020
+ enumerable: false
1021
+ });
1022
+ }
1023
+ }), { b: 2 })).b !== 1) return true;
1024
+ // should work with symbols and should have deterministic property order (V8 bug)
1025
+ var A = {};
1026
+ var B = {};
1027
+ // eslint-disable-next-line es/no-symbol -- safe
1028
+ var symbol = Symbol();
1029
+ var alphabet = 'abcdefghijklmnopqrst';
1030
+ A[symbol] = 7;
1031
+ alphabet.split('').forEach(function (chr) { B[chr] = chr; });
1032
+ return $assign({}, A)[symbol] != 7 || objectKeys($assign({}, B)).join('') != alphabet;
1033
+ }) ? function assign(target, source) { // eslint-disable-line no-unused-vars -- required for `.length`
1034
+ var T = toObject(target);
1035
+ var argumentsLength = arguments.length;
1036
+ var index = 1;
1037
+ var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
1038
+ var propertyIsEnumerable = propertyIsEnumerableModule.f;
1039
+ while (argumentsLength > index) {
1040
+ var S = IndexedObject(arguments[index++]);
1041
+ var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);
1042
+ var length = keys.length;
1043
+ var j = 0;
1044
+ var key;
1045
+ while (length > j) {
1046
+ key = keys[j++];
1047
+ if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];
1048
+ }
1049
+ } return T;
1050
+ } : $assign;
1051
+
1052
+
1053
+ /***/ }),
1054
+
1055
+ /***/ "69f3":
1056
+ /***/ (function(module, exports, __webpack_require__) {
1057
+
1058
+ var NATIVE_WEAK_MAP = __webpack_require__("7f9a");
1059
+ var global = __webpack_require__("da84");
1060
+ var isObject = __webpack_require__("861d");
1061
+ var createNonEnumerableProperty = __webpack_require__("9112");
1062
+ var objectHas = __webpack_require__("5135");
1063
+ var shared = __webpack_require__("c6cd");
1064
+ var sharedKey = __webpack_require__("f772");
1065
+ var hiddenKeys = __webpack_require__("d012");
1066
+
1067
+ var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
1068
+ var WeakMap = global.WeakMap;
1069
+ var set, get, has;
1070
+
1071
+ var enforce = function (it) {
1072
+ return has(it) ? get(it) : set(it, {});
1073
+ };
1074
+
1075
+ var getterFor = function (TYPE) {
1076
+ return function (it) {
1077
+ var state;
1078
+ if (!isObject(it) || (state = get(it)).type !== TYPE) {
1079
+ throw TypeError('Incompatible receiver, ' + TYPE + ' required');
1080
+ } return state;
1081
+ };
1082
+ };
1083
+
1084
+ if (NATIVE_WEAK_MAP || shared.state) {
1085
+ var store = shared.state || (shared.state = new WeakMap());
1086
+ var wmget = store.get;
1087
+ var wmhas = store.has;
1088
+ var wmset = store.set;
1089
+ set = function (it, metadata) {
1090
+ if (wmhas.call(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
1091
+ metadata.facade = it;
1092
+ wmset.call(store, it, metadata);
1093
+ return metadata;
1094
+ };
1095
+ get = function (it) {
1096
+ return wmget.call(store, it) || {};
1097
+ };
1098
+ has = function (it) {
1099
+ return wmhas.call(store, it);
1100
+ };
1101
+ } else {
1102
+ var STATE = sharedKey('state');
1103
+ hiddenKeys[STATE] = true;
1104
+ set = function (it, metadata) {
1105
+ if (objectHas(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
1106
+ metadata.facade = it;
1107
+ createNonEnumerableProperty(it, STATE, metadata);
1108
+ return metadata;
1109
+ };
1110
+ get = function (it) {
1111
+ return objectHas(it, STATE) ? it[STATE] : {};
1112
+ };
1113
+ has = function (it) {
1114
+ return objectHas(it, STATE);
1115
+ };
1116
+ }
1117
+
1118
+ module.exports = {
1119
+ set: set,
1120
+ get: get,
1121
+ has: has,
1122
+ enforce: enforce,
1123
+ getterFor: getterFor
1124
+ };
1125
+
1126
+
1127
+ /***/ }),
1128
+
1129
+ /***/ "6eeb":
1130
+ /***/ (function(module, exports, __webpack_require__) {
1131
+
1132
+ var global = __webpack_require__("da84");
1133
+ var createNonEnumerableProperty = __webpack_require__("9112");
1134
+ var has = __webpack_require__("5135");
1135
+ var setGlobal = __webpack_require__("ce4e");
1136
+ var inspectSource = __webpack_require__("8925");
1137
+ var InternalStateModule = __webpack_require__("69f3");
1138
+
1139
+ var getInternalState = InternalStateModule.get;
1140
+ var enforceInternalState = InternalStateModule.enforce;
1141
+ var TEMPLATE = String(String).split('String');
1142
+
1143
+ (module.exports = function (O, key, value, options) {
1144
+ var unsafe = options ? !!options.unsafe : false;
1145
+ var simple = options ? !!options.enumerable : false;
1146
+ var noTargetGet = options ? !!options.noTargetGet : false;
1147
+ var state;
1148
+ if (typeof value == 'function') {
1149
+ if (typeof key == 'string' && !has(value, 'name')) {
1150
+ createNonEnumerableProperty(value, 'name', key);
1151
+ }
1152
+ state = enforceInternalState(value);
1153
+ if (!state.source) {
1154
+ state.source = TEMPLATE.join(typeof key == 'string' ? key : '');
1155
+ }
1156
+ }
1157
+ if (O === global) {
1158
+ if (simple) O[key] = value;
1159
+ else setGlobal(key, value);
1160
+ return;
1161
+ } else if (!unsafe) {
1162
+ delete O[key];
1163
+ } else if (!noTargetGet && O[key]) {
1164
+ simple = true;
1165
+ }
1166
+ if (simple) O[key] = value;
1167
+ else createNonEnumerableProperty(O, key, value);
1168
+ // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
1169
+ })(Function.prototype, 'toString', function toString() {
1170
+ return typeof this == 'function' && getInternalState(this).source || inspectSource(this);
1171
+ });
1172
+
1173
+
1174
+ /***/ }),
1175
+
1176
+ /***/ "7418":
1177
+ /***/ (function(module, exports) {
1178
+
1179
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
1180
+ exports.f = Object.getOwnPropertySymbols;
1181
+
1182
+
1183
+ /***/ }),
1184
+
1185
+ /***/ "7839":
1186
+ /***/ (function(module, exports) {
1187
+
1188
+ // IE8- don't enum bug keys
1189
+ module.exports = [
1190
+ 'constructor',
1191
+ 'hasOwnProperty',
1192
+ 'isPrototypeOf',
1193
+ 'propertyIsEnumerable',
1194
+ 'toLocaleString',
1195
+ 'toString',
1196
+ 'valueOf'
1197
+ ];
1198
+
1199
+
1200
+ /***/ }),
1201
+
1202
+ /***/ "7b0b":
1203
+ /***/ (function(module, exports, __webpack_require__) {
1204
+
1205
+ var requireObjectCoercible = __webpack_require__("1d80");
1206
+
1207
+ // `ToObject` abstract operation
1208
+ // https://tc39.es/ecma262/#sec-toobject
1209
+ module.exports = function (argument) {
1210
+ return Object(requireObjectCoercible(argument));
1211
+ };
1212
+
1213
+
1214
+ /***/ }),
1215
+
1216
+ /***/ "7c73":
1217
+ /***/ (function(module, exports, __webpack_require__) {
1218
+
1219
+ /* global ActiveXObject -- old IE, WSH */
1220
+ var anObject = __webpack_require__("825a");
1221
+ var defineProperties = __webpack_require__("37e8");
1222
+ var enumBugKeys = __webpack_require__("7839");
1223
+ var hiddenKeys = __webpack_require__("d012");
1224
+ var html = __webpack_require__("1be4");
1225
+ var documentCreateElement = __webpack_require__("cc12");
1226
+ var sharedKey = __webpack_require__("f772");
1227
+
1228
+ var GT = '>';
1229
+ var LT = '<';
1230
+ var PROTOTYPE = 'prototype';
1231
+ var SCRIPT = 'script';
1232
+ var IE_PROTO = sharedKey('IE_PROTO');
1233
+
1234
+ var EmptyConstructor = function () { /* empty */ };
1235
+
1236
+ var scriptTag = function (content) {
1237
+ return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
1238
+ };
1239
+
1240
+ // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
1241
+ var NullProtoObjectViaActiveX = function (activeXDocument) {
1242
+ activeXDocument.write(scriptTag(''));
1243
+ activeXDocument.close();
1244
+ var temp = activeXDocument.parentWindow.Object;
1245
+ activeXDocument = null; // avoid memory leak
1246
+ return temp;
1247
+ };
1248
+
1249
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
1250
+ var NullProtoObjectViaIFrame = function () {
1251
+ // Thrash, waste and sodomy: IE GC bug
1252
+ var iframe = documentCreateElement('iframe');
1253
+ var JS = 'java' + SCRIPT + ':';
1254
+ var iframeDocument;
1255
+ iframe.style.display = 'none';
1256
+ html.appendChild(iframe);
1257
+ // https://github.com/zloirock/core-js/issues/475
1258
+ iframe.src = String(JS);
1259
+ iframeDocument = iframe.contentWindow.document;
1260
+ iframeDocument.open();
1261
+ iframeDocument.write(scriptTag('document.F=Object'));
1262
+ iframeDocument.close();
1263
+ return iframeDocument.F;
1264
+ };
1265
+
1266
+ // Check for document.domain and active x support
1267
+ // No need to use active x approach when document.domain is not set
1268
+ // see https://github.com/es-shims/es5-shim/issues/150
1269
+ // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
1270
+ // avoid IE GC bug
1271
+ var activeXDocument;
1272
+ var NullProtoObject = function () {
1273
+ try {
1274
+ activeXDocument = new ActiveXObject('htmlfile');
1275
+ } catch (error) { /* ignore */ }
1276
+ NullProtoObject = typeof document != 'undefined'
1277
+ ? document.domain && activeXDocument
1278
+ ? NullProtoObjectViaActiveX(activeXDocument) // old IE
1279
+ : NullProtoObjectViaIFrame()
1280
+ : NullProtoObjectViaActiveX(activeXDocument); // WSH
1281
+ var length = enumBugKeys.length;
1282
+ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
1283
+ return NullProtoObject();
1284
+ };
1285
+
1286
+ hiddenKeys[IE_PROTO] = true;
1287
+
1288
+ // `Object.create` method
1289
+ // https://tc39.es/ecma262/#sec-object.create
1290
+ module.exports = Object.create || function create(O, Properties) {
1291
+ var result;
1292
+ if (O !== null) {
1293
+ EmptyConstructor[PROTOTYPE] = anObject(O);
1294
+ result = new EmptyConstructor();
1295
+ EmptyConstructor[PROTOTYPE] = null;
1296
+ // add "__proto__" for Object.getPrototypeOf polyfill
1297
+ result[IE_PROTO] = O;
1298
+ } else result = NullProtoObject();
1299
+ return Properties === undefined ? result : defineProperties(result, Properties);
1300
+ };
1301
+
1302
+
1303
+ /***/ }),
1304
+
1305
+ /***/ "7dd0":
1306
+ /***/ (function(module, exports, __webpack_require__) {
1307
+
1308
+ "use strict";
1309
+
1310
+ var $ = __webpack_require__("23e7");
1311
+ var createIteratorConstructor = __webpack_require__("9ed3");
1312
+ var getPrototypeOf = __webpack_require__("e163");
1313
+ var setPrototypeOf = __webpack_require__("d2bb");
1314
+ var setToStringTag = __webpack_require__("d44e");
1315
+ var createNonEnumerableProperty = __webpack_require__("9112");
1316
+ var redefine = __webpack_require__("6eeb");
1317
+ var wellKnownSymbol = __webpack_require__("b622");
1318
+ var IS_PURE = __webpack_require__("c430");
1319
+ var Iterators = __webpack_require__("3f8c");
1320
+ var IteratorsCore = __webpack_require__("ae93");
1321
+
1322
+ var IteratorPrototype = IteratorsCore.IteratorPrototype;
1323
+ var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
1324
+ var ITERATOR = wellKnownSymbol('iterator');
1325
+ var KEYS = 'keys';
1326
+ var VALUES = 'values';
1327
+ var ENTRIES = 'entries';
1328
+
1329
+ var returnThis = function () { return this; };
1330
+
1331
+ module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
1332
+ createIteratorConstructor(IteratorConstructor, NAME, next);
1333
+
1334
+ var getIterationMethod = function (KIND) {
1335
+ if (KIND === DEFAULT && defaultIterator) return defaultIterator;
1336
+ if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];
1337
+ switch (KIND) {
1338
+ case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
1339
+ case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
1340
+ case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
1341
+ } return function () { return new IteratorConstructor(this); };
1342
+ };
1343
+
1344
+ var TO_STRING_TAG = NAME + ' Iterator';
1345
+ var INCORRECT_VALUES_NAME = false;
1346
+ var IterablePrototype = Iterable.prototype;
1347
+ var nativeIterator = IterablePrototype[ITERATOR]
1348
+ || IterablePrototype['@@iterator']
1349
+ || DEFAULT && IterablePrototype[DEFAULT];
1350
+ var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
1351
+ var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
1352
+ var CurrentIteratorPrototype, methods, KEY;
1353
+
1354
+ // fix native
1355
+ if (anyNativeIterator) {
1356
+ CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
1357
+ if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
1358
+ if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
1359
+ if (setPrototypeOf) {
1360
+ setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);
1361
+ } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {
1362
+ createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);
1363
+ }
1364
+ }
1365
+ // Set @@toStringTag to native iterators
1366
+ setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);
1367
+ if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;
1368
+ }
1369
+ }
1370
+
1371
+ // fix Array.prototype.{ values, @@iterator }.name in V8 / FF
1372
+ if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
1373
+ INCORRECT_VALUES_NAME = true;
1374
+ defaultIterator = function values() { return nativeIterator.call(this); };
1375
+ }
1376
+
1377
+ // define iterator
1378
+ if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {
1379
+ createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);
1380
+ }
1381
+ Iterators[NAME] = defaultIterator;
1382
+
1383
+ // export additional methods
1384
+ if (DEFAULT) {
1385
+ methods = {
1386
+ values: getIterationMethod(VALUES),
1387
+ keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
1388
+ entries: getIterationMethod(ENTRIES)
1389
+ };
1390
+ if (FORCED) for (KEY in methods) {
1391
+ if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
1392
+ redefine(IterablePrototype, KEY, methods[KEY]);
1393
+ }
1394
+ } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1395
+ }
1396
+
1397
+ return methods;
1398
+ };
1399
+
1400
+
1401
+ /***/ }),
1402
+
1403
+ /***/ "7f9a":
1404
+ /***/ (function(module, exports, __webpack_require__) {
1405
+
1406
+ var global = __webpack_require__("da84");
1407
+ var inspectSource = __webpack_require__("8925");
1408
+
1409
+ var WeakMap = global.WeakMap;
1410
+
1411
+ module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
1412
+
1413
+
1414
+ /***/ }),
1415
+
1416
+ /***/ "825a":
1417
+ /***/ (function(module, exports, __webpack_require__) {
1418
+
1419
+ var isObject = __webpack_require__("861d");
1420
+
1421
+ module.exports = function (it) {
1422
+ if (!isObject(it)) {
1423
+ throw TypeError(String(it) + ' is not an object');
1424
+ } return it;
1425
+ };
1426
+
1427
+
1428
+ /***/ }),
1429
+
1430
+ /***/ "83ab":
1431
+ /***/ (function(module, exports, __webpack_require__) {
1432
+
1433
+ var fails = __webpack_require__("d039");
1434
+
1435
+ // Detect IE8's incomplete defineProperty implementation
1436
+ module.exports = !fails(function () {
1437
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1438
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
1439
+ });
1440
+
1441
+
1442
+ /***/ }),
1443
+
1444
+ /***/ "861d":
1445
+ /***/ (function(module, exports) {
1446
+
1447
+ module.exports = function (it) {
1448
+ return typeof it === 'object' ? it !== null : typeof it === 'function';
1449
+ };
1450
+
1451
+
1452
+ /***/ }),
1453
+
1454
+ /***/ "87e0":
1455
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
1456
+
1457
+ "use strict";
1458
+ /* unused harmony export FlexibleResize */
1459
+ /* harmony import */ var F_project_crm_refactor_low_cnhis_design_v2_node_modules_babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("d4ec");
1460
+ /* harmony import */ var F_project_crm_refactor_low_cnhis_design_v2_node_modules_babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("bee2");
1461
+ /* harmony import */ var F_project_crm_refactor_low_cnhis_design_v2_node_modules_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("ade3");
1462
+ /* harmony import */ var core_js_modules_es_object_keys_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("ea64");
1463
+ /* harmony import */ var core_js_modules_es_object_keys_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_keys_js__WEBPACK_IMPORTED_MODULE_3__);
1464
+
1465
+
1466
+
1467
+
1468
+ var FlexibleResize = /*#__PURE__*/function () {
1469
+ function FlexibleResize(options) {
1470
+ var _this = this;
1471
+
1472
+ Object(F_project_crm_refactor_low_cnhis_design_v2_node_modules_babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"])(this, FlexibleResize);
1473
+
1474
+ Object(F_project_crm_refactor_low_cnhis_design_v2_node_modules_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"])(this, "maskMove", function (e) {
1475
+ var v = _this._isV ? e.screenX : e.screenY;
1476
+ var distance = parseInt(v - _this._mv);
1477
+ _this._mv = v;
1478
+ var onMove = _this.options.onMove;
1479
+ onMove && onMove({
1480
+ evt: e,
1481
+ distance: distance
1482
+ });
1483
+ });
1484
+
1485
+ Object(F_project_crm_refactor_low_cnhis_design_v2_node_modules_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"])(this, "maskUp", function (e) {
1486
+ var onEnd = _this.options.onEnd;
1487
+ var v = _this._isV ? e.screenX : e.screenY;
1488
+ onEnd && onEnd({
1489
+ evt: e,
1490
+ distance: parseInt(v - _this._ms)
1491
+ });
1492
+
1493
+ _this.maskRemove();
1494
+ });
1495
+
1496
+ Object(F_project_crm_refactor_low_cnhis_design_v2_node_modules_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"])(this, "toolDown", function (e) {
1497
+ _this.maskInsert();
1498
+
1499
+ _this._isV = /^V/.test(_this.options.mode);
1500
+ _this._ms = _this._mv = _this._isV ? e.screenX : e.screenY;
1501
+ var onStart = _this.options.onStart;
1502
+ onStart && onStart({
1503
+ evt: e,
1504
+ distance: 0
1505
+ });
1506
+ });
1507
+
1508
+ this.init(options);
1509
+ }
1510
+
1511
+ Object(F_project_crm_refactor_low_cnhis_design_v2_node_modules_babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"])(FlexibleResize, [{
1512
+ key: "init",
1513
+ value: function init(options) {
1514
+ this.options = options || {};
1515
+ this.tool = null;
1516
+ this.mask = null;
1517
+ var el = options.el;
1518
+ if (!el) return;
1519
+ var tool = this.toolCreate();
1520
+ this.initElPosition();
1521
+ el.appendChild(tool);
1522
+ }
1523
+ }, {
1524
+ key: "destroyed",
1525
+ value: function destroyed() {
1526
+ var el = this.options.el;
1527
+ this.maskRemove();
1528
+ this.toolRemove();
1529
+
1530
+ if (this._elPosition) {
1531
+ el.style.setProperty("position", this._elPosition);
1532
+ } else {
1533
+ el.style.removeProperty("position");
1534
+ }
1535
+ }
1536
+ }, {
1537
+ key: "initElPosition",
1538
+ value: function initElPosition() {
1539
+ var el = this.options.el;
1540
+ if (!el) return;
1541
+ this._elPosition = el.style.position;
1542
+ var defStyle = window.getComputedStyle(el, null);
1543
+ var position = defStyle.position;
1544
+
1545
+ if (!position || position === "static") {
1546
+ el.style.setProperty("position", "relative");
1547
+ }
1548
+ }
1549
+ }, {
1550
+ key: "maskCreate",
1551
+ value: function maskCreate(mode) {
1552
+ if (this.mask) return this.mask;
1553
+ var mask = document.createElement("div");
1554
+ mask.style = "position:fixed;top:0;bottom:0;left:0;right:0;z-index:99999;cursor:" + (/^V/.test(mode) ? "col" : "row") + "-resize";
1555
+ mask.addEventListener("mousemove", this.maskMove);
1556
+ mask.addEventListener("mouseup", this.maskUp);
1557
+ this.mask = mask;
1558
+ return mask;
1559
+ }
1560
+ }, {
1561
+ key: "maskRemove",
1562
+ value: function maskRemove() {
1563
+ var mask = this.mask;
1564
+ if (!mask) return;
1565
+ mask.parentNode && mask.parentNode.removeChild(mask);
1566
+ mask.removeEventListener("mousemove", this.maskMove);
1567
+ mask.removeEventListener("mouseup", this.maskUp);
1568
+ this.mask = null;
1569
+ }
1570
+ }, {
1571
+ key: "maskInsert",
1572
+ value: function maskInsert() {
1573
+ var mask = this.mask || this.maskCreate(this.options.mode);
1574
+ document.body.appendChild(mask);
1575
+ return mask;
1576
+ }
1577
+ }, {
1578
+ key: "toolCreate",
1579
+ value: function toolCreate() {
1580
+ if (this.tool) return this.tool;
1581
+ var div = document.createElement("div");
1582
+ div.addEventListener("mousedown", this.toolDown);
1583
+ this.tool = div;
1584
+ this.toolInitStyle();
1585
+ return div;
1586
+ }
1587
+ }, {
1588
+ key: "toolRemove",
1589
+ value: function toolRemove() {
1590
+ var tool = this.tool;
1591
+ if (!tool) return;
1592
+ tool.parentNode && tool.parentNode.removeChild(tool);
1593
+ this.tool = null;
1594
+ }
1595
+ }, {
1596
+ key: "toolInitStyle",
1597
+ value: function toolInitStyle() {
1598
+ var style = "user-select:none;cursor:col-resize;position:absolute;";
1599
+ var mode = this.options.mode;
1600
+
1601
+ if (/^V/.test(mode)) {
1602
+ style += "width: 8px;cursor:col-resize;";
1603
+ } else {
1604
+ style += "height: 8px;cursor:row-resize;";
1605
+ }
1606
+
1607
+ var keys = {
1608
+ VR: "left",
1609
+ VL: "right",
1610
+ HT: "bottom",
1611
+ HB: "top"
1612
+ };
1613
+ var mk = keys[mode];
1614
+ var p = Object.keys(keys).reduce(function (v, k) {
1615
+ var value = keys[k];
1616
+
1617
+ if (value !== mk) {
1618
+ v += "".concat(value, ":0;");
1619
+ }
1620
+
1621
+ return v;
1622
+ }, "");
1623
+ style += p;
1624
+
1625
+ if (this.tool) {
1626
+ this.tool.style = style;
1627
+ }
1628
+ }
1629
+ }]);
1630
+
1631
+ return FlexibleResize;
1632
+ }();
1633
+ /* harmony default export */ __webpack_exports__["a"] = ({
1634
+ inserted: function inserted(el, _ref) {
1635
+ var value = _ref.value;
1636
+ if (el._flexibleResize) return;
1637
+ el._flexibleResize = new FlexibleResize({
1638
+ el: el,
1639
+ mode: value.mode || "VR",
1640
+ onMove: value.onMove,
1641
+ onEnd: value.onEnd
1642
+ });
1643
+ },
1644
+ unbind: function unbind(el) {
1645
+ if (el._flexibleResize) {
1646
+ el._flexibleResize.destroyed();
1647
+
1648
+ el._flexibleResize = void 0;
1649
+ }
1650
+ }
1651
+ });
1652
+
1653
+ /***/ }),
1654
+
1655
+ /***/ "8925":
1656
+ /***/ (function(module, exports, __webpack_require__) {
1657
+
1658
+ var store = __webpack_require__("c6cd");
1659
+
1660
+ var functionToString = Function.toString;
1661
+
1662
+ // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
1663
+ if (typeof store.inspectSource != 'function') {
1664
+ store.inspectSource = function (it) {
1665
+ return functionToString.call(it);
1666
+ };
1667
+ }
1668
+
1669
+ module.exports = store.inspectSource;
1670
+
1671
+
1672
+ /***/ }),
1673
+
1674
+ /***/ "90e3":
1675
+ /***/ (function(module, exports) {
1676
+
1677
+ var id = 0;
1678
+ var postfix = Math.random();
1679
+
1680
+ module.exports = function (key) {
1681
+ return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
1682
+ };
1683
+
1684
+
1685
+ /***/ }),
1686
+
1687
+ /***/ "9112":
1688
+ /***/ (function(module, exports, __webpack_require__) {
1689
+
1690
+ var DESCRIPTORS = __webpack_require__("83ab");
1691
+ var definePropertyModule = __webpack_require__("9bf2");
1692
+ var createPropertyDescriptor = __webpack_require__("5c6c");
1693
+
1694
+ module.exports = DESCRIPTORS ? function (object, key, value) {
1695
+ return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
1696
+ } : function (object, key, value) {
1697
+ object[key] = value;
1698
+ return object;
1699
+ };
1700
+
1701
+
1702
+ /***/ }),
1703
+
1704
+ /***/ "94ca":
1705
+ /***/ (function(module, exports, __webpack_require__) {
1706
+
1707
+ var fails = __webpack_require__("d039");
1708
+
1709
+ var replacement = /#|\.prototype\./;
1710
+
1711
+ var isForced = function (feature, detection) {
1712
+ var value = data[normalize(feature)];
1713
+ return value == POLYFILL ? true
1714
+ : value == NATIVE ? false
1715
+ : typeof detection == 'function' ? fails(detection)
1716
+ : !!detection;
1717
+ };
1718
+
1719
+ var normalize = isForced.normalize = function (string) {
1720
+ return String(string).replace(replacement, '.').toLowerCase();
1721
+ };
1722
+
1723
+ var data = isForced.data = {};
1724
+ var NATIVE = isForced.NATIVE = 'N';
1725
+ var POLYFILL = isForced.POLYFILL = 'P';
1726
+
1727
+ module.exports = isForced;
1728
+
1729
+
1730
+ /***/ }),
1731
+
1732
+ /***/ "9bf2":
1733
+ /***/ (function(module, exports, __webpack_require__) {
1734
+
1735
+ var DESCRIPTORS = __webpack_require__("83ab");
1736
+ var IE8_DOM_DEFINE = __webpack_require__("0cfb");
1737
+ var anObject = __webpack_require__("825a");
1738
+ var toPropertyKey = __webpack_require__("a04b");
1739
+
1740
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
1741
+ var $defineProperty = Object.defineProperty;
1742
+
1743
+ // `Object.defineProperty` method
1744
+ // https://tc39.es/ecma262/#sec-object.defineproperty
1745
+ exports.f = DESCRIPTORS ? $defineProperty : function defineProperty(O, P, Attributes) {
1746
+ anObject(O);
1747
+ P = toPropertyKey(P);
1748
+ anObject(Attributes);
1749
+ if (IE8_DOM_DEFINE) try {
1750
+ return $defineProperty(O, P, Attributes);
1751
+ } catch (error) { /* empty */ }
1752
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
1753
+ if ('value' in Attributes) O[P] = Attributes.value;
1754
+ return O;
1755
+ };
1756
+
1757
+
1758
+ /***/ }),
1759
+
1760
+ /***/ "9ed3":
1761
+ /***/ (function(module, exports, __webpack_require__) {
1762
+
1763
+ "use strict";
1764
+
1765
+ var IteratorPrototype = __webpack_require__("ae93").IteratorPrototype;
1766
+ var create = __webpack_require__("7c73");
1767
+ var createPropertyDescriptor = __webpack_require__("5c6c");
1768
+ var setToStringTag = __webpack_require__("d44e");
1769
+ var Iterators = __webpack_require__("3f8c");
1770
+
1771
+ var returnThis = function () { return this; };
1772
+
1773
+ module.exports = function (IteratorConstructor, NAME, next) {
1774
+ var TO_STRING_TAG = NAME + ' Iterator';
1775
+ IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });
1776
+ setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
1777
+ Iterators[TO_STRING_TAG] = returnThis;
1778
+ return IteratorConstructor;
1779
+ };
1780
+
1781
+
1782
+ /***/ }),
1783
+
1784
+ /***/ "a04b":
1785
+ /***/ (function(module, exports, __webpack_require__) {
1786
+
1787
+ var toPrimitive = __webpack_require__("c04e");
1788
+ var isSymbol = __webpack_require__("d9b5");
1789
+
1790
+ // `ToPropertyKey` abstract operation
1791
+ // https://tc39.es/ecma262/#sec-topropertykey
1792
+ module.exports = function (argument) {
1793
+ var key = toPrimitive(argument, 'string');
1794
+ return isSymbol(key) ? key : String(key);
1795
+ };
1796
+
1797
+
1798
+ /***/ }),
1799
+
1800
+ /***/ "a4b4":
1801
+ /***/ (function(module, exports, __webpack_require__) {
1802
+
1803
+ var userAgent = __webpack_require__("342f");
1804
+
1805
+ module.exports = /web0s(?!.*chrome)/i.test(userAgent);
1806
+
1807
+
1808
+ /***/ }),
1809
+
1810
+ /***/ "a691":
1811
+ /***/ (function(module, exports) {
1812
+
1813
+ var ceil = Math.ceil;
1814
+ var floor = Math.floor;
1815
+
1816
+ // `ToInteger` abstract operation
1817
+ // https://tc39.es/ecma262/#sec-tointeger
1818
+ module.exports = function (argument) {
1819
+ return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
1820
+ };
1821
+
1822
+
1823
+ /***/ }),
1824
+
1825
+ /***/ "a79d":
1826
+ /***/ (function(module, exports, __webpack_require__) {
1827
+
1828
+ "use strict";
1829
+
1830
+ var $ = __webpack_require__("23e7");
1831
+ var IS_PURE = __webpack_require__("c430");
1832
+ var NativePromise = __webpack_require__("fea9");
1833
+ var fails = __webpack_require__("d039");
1834
+ var getBuiltIn = __webpack_require__("d066");
1835
+ var speciesConstructor = __webpack_require__("4840");
1836
+ var promiseResolve = __webpack_require__("cdf9");
1837
+ var redefine = __webpack_require__("6eeb");
1838
+
1839
+ // Safari bug https://bugs.webkit.org/show_bug.cgi?id=200829
1840
+ var NON_GENERIC = !!NativePromise && fails(function () {
1841
+ NativePromise.prototype['finally'].call({ then: function () { /* empty */ } }, function () { /* empty */ });
1842
+ });
1843
+
1844
+ // `Promise.prototype.finally` method
1845
+ // https://tc39.es/ecma262/#sec-promise.prototype.finally
1846
+ $({ target: 'Promise', proto: true, real: true, forced: NON_GENERIC }, {
1847
+ 'finally': function (onFinally) {
1848
+ var C = speciesConstructor(this, getBuiltIn('Promise'));
1849
+ var isFunction = typeof onFinally == 'function';
1850
+ return this.then(
1851
+ isFunction ? function (x) {
1852
+ return promiseResolve(C, onFinally()).then(function () { return x; });
1853
+ } : onFinally,
1854
+ isFunction ? function (e) {
1855
+ return promiseResolve(C, onFinally()).then(function () { throw e; });
1856
+ } : onFinally
1857
+ );
1858
+ }
1859
+ });
1860
+
1861
+ // makes sure that native promise-based APIs `Promise#finally` properly works with patched `Promise#then`
1862
+ if (!IS_PURE && typeof NativePromise == 'function') {
1863
+ var method = getBuiltIn('Promise').prototype['finally'];
1864
+ if (NativePromise.prototype['finally'] !== method) {
1865
+ redefine(NativePromise.prototype, 'finally', method, { unsafe: true });
1866
+ }
1867
+ }
1868
+
1869
+
1870
+ /***/ }),
1871
+
1872
+ /***/ "ade3":
1873
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
1874
+
1875
+ "use strict";
1876
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return _defineProperty; });
1877
+ function _defineProperty(obj, key, value) {
1878
+ if (key in obj) {
1879
+ Object.defineProperty(obj, key, {
1880
+ value: value,
1881
+ enumerable: true,
1882
+ configurable: true,
1883
+ writable: true
1884
+ });
1885
+ } else {
1886
+ obj[key] = value;
1887
+ }
1888
+
1889
+ return obj;
1890
+ }
1891
+
1892
+ /***/ }),
1893
+
1894
+ /***/ "ae93":
1895
+ /***/ (function(module, exports, __webpack_require__) {
1896
+
1897
+ "use strict";
1898
+
1899
+ var fails = __webpack_require__("d039");
1900
+ var getPrototypeOf = __webpack_require__("e163");
1901
+ var createNonEnumerableProperty = __webpack_require__("9112");
1902
+ var has = __webpack_require__("5135");
1903
+ var wellKnownSymbol = __webpack_require__("b622");
1904
+ var IS_PURE = __webpack_require__("c430");
1905
+
1906
+ var ITERATOR = wellKnownSymbol('iterator');
1907
+ var BUGGY_SAFARI_ITERATORS = false;
1908
+
1909
+ var returnThis = function () { return this; };
1910
+
1911
+ // `%IteratorPrototype%` object
1912
+ // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
1913
+ var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
1914
+
1915
+ /* eslint-disable es/no-array-prototype-keys -- safe */
1916
+ if ([].keys) {
1917
+ arrayIterator = [].keys();
1918
+ // Safari 8 has buggy iterators w/o `next`
1919
+ if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
1920
+ else {
1921
+ PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
1922
+ if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
1923
+ }
1924
+ }
1925
+
1926
+ var NEW_ITERATOR_PROTOTYPE = IteratorPrototype == undefined || fails(function () {
1927
+ var test = {};
1928
+ // FF44- legacy iterators case
1929
+ return IteratorPrototype[ITERATOR].call(test) !== test;
1930
+ });
1931
+
1932
+ if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
1933
+
1934
+ // `%IteratorPrototype%[@@iterator]()` method
1935
+ // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1936
+ if ((!IS_PURE || NEW_ITERATOR_PROTOTYPE) && !has(IteratorPrototype, ITERATOR)) {
1937
+ createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);
1938
+ }
1939
+
1940
+ module.exports = {
1941
+ IteratorPrototype: IteratorPrototype,
1942
+ BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
1943
+ };
1944
+
1945
+
1946
+ /***/ }),
1947
+
1948
+ /***/ "b575":
1949
+ /***/ (function(module, exports, __webpack_require__) {
1950
+
1951
+ var global = __webpack_require__("da84");
1952
+ var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
1953
+ var macrotask = __webpack_require__("2cf4").set;
1954
+ var IS_IOS = __webpack_require__("1cdc");
1955
+ var IS_IOS_PEBBLE = __webpack_require__("d4c3");
1956
+ var IS_WEBOS_WEBKIT = __webpack_require__("a4b4");
1957
+ var IS_NODE = __webpack_require__("605d");
1958
+
1959
+ var MutationObserver = global.MutationObserver || global.WebKitMutationObserver;
1960
+ var document = global.document;
1961
+ var process = global.process;
1962
+ var Promise = global.Promise;
1963
+ // Node.js 11 shows ExperimentalWarning on getting `queueMicrotask`
1964
+ var queueMicrotaskDescriptor = getOwnPropertyDescriptor(global, 'queueMicrotask');
1965
+ var queueMicrotask = queueMicrotaskDescriptor && queueMicrotaskDescriptor.value;
1966
+
1967
+ var flush, head, last, notify, toggle, node, promise, then;
1968
+
1969
+ // modern engines have queueMicrotask method
1970
+ if (!queueMicrotask) {
1971
+ flush = function () {
1972
+ var parent, fn;
1973
+ if (IS_NODE && (parent = process.domain)) parent.exit();
1974
+ while (head) {
1975
+ fn = head.fn;
1976
+ head = head.next;
1977
+ try {
1978
+ fn();
1979
+ } catch (error) {
1980
+ if (head) notify();
1981
+ else last = undefined;
1982
+ throw error;
1983
+ }
1984
+ } last = undefined;
1985
+ if (parent) parent.enter();
1986
+ };
1987
+
1988
+ // browsers with MutationObserver, except iOS - https://github.com/zloirock/core-js/issues/339
1989
+ // also except WebOS Webkit https://github.com/zloirock/core-js/issues/898
1990
+ if (!IS_IOS && !IS_NODE && !IS_WEBOS_WEBKIT && MutationObserver && document) {
1991
+ toggle = true;
1992
+ node = document.createTextNode('');
1993
+ new MutationObserver(flush).observe(node, { characterData: true });
1994
+ notify = function () {
1995
+ node.data = toggle = !toggle;
1996
+ };
1997
+ // environments with maybe non-completely correct, but existent Promise
1998
+ } else if (!IS_IOS_PEBBLE && Promise && Promise.resolve) {
1999
+ // Promise.resolve without an argument throws an error in LG WebOS 2
2000
+ promise = Promise.resolve(undefined);
2001
+ // workaround of WebKit ~ iOS Safari 10.1 bug
2002
+ promise.constructor = Promise;
2003
+ then = promise.then;
2004
+ notify = function () {
2005
+ then.call(promise, flush);
2006
+ };
2007
+ // Node.js without promises
2008
+ } else if (IS_NODE) {
2009
+ notify = function () {
2010
+ process.nextTick(flush);
2011
+ };
2012
+ // for other environments - macrotask based on:
2013
+ // - setImmediate
2014
+ // - MessageChannel
2015
+ // - window.postMessag
2016
+ // - onreadystatechange
2017
+ // - setTimeout
2018
+ } else {
2019
+ notify = function () {
2020
+ // strange IE + webpack dev server bug - use .call(global)
2021
+ macrotask.call(global, flush);
2022
+ };
2023
+ }
2024
+ }
2025
+
2026
+ module.exports = queueMicrotask || function (fn) {
2027
+ var task = { fn: fn, next: undefined };
2028
+ if (last) last.next = task;
2029
+ if (!head) {
2030
+ head = task;
2031
+ notify();
2032
+ } last = task;
2033
+ };
2034
+
2035
+
2036
+ /***/ }),
2037
+
2038
+ /***/ "b622":
2039
+ /***/ (function(module, exports, __webpack_require__) {
2040
+
2041
+ var global = __webpack_require__("da84");
2042
+ var shared = __webpack_require__("5692");
2043
+ var has = __webpack_require__("5135");
2044
+ var uid = __webpack_require__("90e3");
2045
+ var NATIVE_SYMBOL = __webpack_require__("4930");
2046
+ var USE_SYMBOL_AS_UID = __webpack_require__("fdbf");
2047
+
2048
+ var WellKnownSymbolsStore = shared('wks');
2049
+ var Symbol = global.Symbol;
2050
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;
2051
+
2052
+ module.exports = function (name) {
2053
+ if (!has(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
2054
+ if (NATIVE_SYMBOL && has(Symbol, name)) {
2055
+ WellKnownSymbolsStore[name] = Symbol[name];
2056
+ } else {
2057
+ WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);
2058
+ }
2059
+ } return WellKnownSymbolsStore[name];
2060
+ };
2061
+
2062
+
2063
+ /***/ }),
2064
+
2065
+ /***/ "bee2":
2066
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
2067
+
2068
+ "use strict";
2069
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return _createClass; });
2070
+ function _defineProperties(target, props) {
2071
+ for (var i = 0; i < props.length; i++) {
2072
+ var descriptor = props[i];
2073
+ descriptor.enumerable = descriptor.enumerable || false;
2074
+ descriptor.configurable = true;
2075
+ if ("value" in descriptor) descriptor.writable = true;
2076
+ Object.defineProperty(target, descriptor.key, descriptor);
2077
+ }
2078
+ }
2079
+
2080
+ function _createClass(Constructor, protoProps, staticProps) {
2081
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
2082
+ if (staticProps) _defineProperties(Constructor, staticProps);
2083
+ return Constructor;
2084
+ }
2085
+
2086
+ /***/ }),
2087
+
2088
+ /***/ "c04e":
2089
+ /***/ (function(module, exports, __webpack_require__) {
2090
+
2091
+ var isObject = __webpack_require__("861d");
2092
+ var isSymbol = __webpack_require__("d9b5");
2093
+ var ordinaryToPrimitive = __webpack_require__("485a");
2094
+ var wellKnownSymbol = __webpack_require__("b622");
2095
+
2096
+ var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
2097
+
2098
+ // `ToPrimitive` abstract operation
2099
+ // https://tc39.es/ecma262/#sec-toprimitive
2100
+ module.exports = function (input, pref) {
2101
+ if (!isObject(input) || isSymbol(input)) return input;
2102
+ var exoticToPrim = input[TO_PRIMITIVE];
2103
+ var result;
2104
+ if (exoticToPrim !== undefined) {
2105
+ if (pref === undefined) pref = 'default';
2106
+ result = exoticToPrim.call(input, pref);
2107
+ if (!isObject(result) || isSymbol(result)) return result;
2108
+ throw TypeError("Can't convert object to primitive value");
2109
+ }
2110
+ if (pref === undefined) pref = 'number';
2111
+ return ordinaryToPrimitive(input, pref);
2112
+ };
2113
+
2114
+
2115
+ /***/ }),
2116
+
2117
+ /***/ "c430":
2118
+ /***/ (function(module, exports) {
2119
+
2120
+ module.exports = false;
2121
+
2122
+
2123
+ /***/ }),
2124
+
2125
+ /***/ "c6b6":
2126
+ /***/ (function(module, exports) {
2127
+
2128
+ var toString = {}.toString;
2129
+
2130
+ module.exports = function (it) {
2131
+ return toString.call(it).slice(8, -1);
2132
+ };
2133
+
2134
+
2135
+ /***/ }),
2136
+
2137
+ /***/ "c6cd":
2138
+ /***/ (function(module, exports, __webpack_require__) {
2139
+
2140
+ var global = __webpack_require__("da84");
2141
+ var setGlobal = __webpack_require__("ce4e");
2142
+
2143
+ var SHARED = '__core-js_shared__';
2144
+ var store = global[SHARED] || setGlobal(SHARED, {});
2145
+
2146
+ module.exports = store;
2147
+
2148
+
2149
+ /***/ }),
2150
+
2151
+ /***/ "c8ba":
2152
+ /***/ (function(module, exports) {
2153
+
2154
+ var g;
2155
+
2156
+ // This works in non-strict mode
2157
+ g = (function() {
2158
+ return this;
2159
+ })();
2160
+
2161
+ try {
2162
+ // This works if eval is allowed (see CSP)
2163
+ g = g || new Function("return this")();
2164
+ } catch (e) {
2165
+ // This works if the window reference is available
2166
+ if (typeof window === "object") g = window;
2167
+ }
2168
+
2169
+ // g can still be undefined, but nothing to do about it...
2170
+ // We return undefined, instead of nothing here, so it's
2171
+ // easier to handle this case. if(!global) { ...}
2172
+
2173
+ module.exports = g;
2174
+
2175
+
2176
+ /***/ }),
2177
+
2178
+ /***/ "ca84":
2179
+ /***/ (function(module, exports, __webpack_require__) {
2180
+
2181
+ var has = __webpack_require__("5135");
2182
+ var toIndexedObject = __webpack_require__("fc6a");
2183
+ var indexOf = __webpack_require__("4d64").indexOf;
2184
+ var hiddenKeys = __webpack_require__("d012");
2185
+
2186
+ module.exports = function (object, names) {
2187
+ var O = toIndexedObject(object);
2188
+ var i = 0;
2189
+ var result = [];
2190
+ var key;
2191
+ for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);
2192
+ // Don't enum bug & hidden keys
2193
+ while (names.length > i) if (has(O, key = names[i++])) {
2194
+ ~indexOf(result, key) || result.push(key);
2195
+ }
2196
+ return result;
2197
+ };
2198
+
2199
+
2200
+ /***/ }),
2201
+
2202
+ /***/ "cc12":
2203
+ /***/ (function(module, exports, __webpack_require__) {
2204
+
2205
+ var global = __webpack_require__("da84");
2206
+ var isObject = __webpack_require__("861d");
2207
+
2208
+ var document = global.document;
2209
+ // typeof document.createElement is 'object' in old IE
2210
+ var EXISTS = isObject(document) && isObject(document.createElement);
2211
+
2212
+ module.exports = function (it) {
2213
+ return EXISTS ? document.createElement(it) : {};
2214
+ };
2215
+
2216
+
2217
+ /***/ }),
2218
+
2219
+ /***/ "cca6":
2220
+ /***/ (function(module, exports, __webpack_require__) {
2221
+
2222
+ var $ = __webpack_require__("23e7");
2223
+ var assign = __webpack_require__("60da");
2224
+
2225
+ // `Object.assign` method
2226
+ // https://tc39.es/ecma262/#sec-object.assign
2227
+ // eslint-disable-next-line es/no-object-assign -- required for testing
2228
+ $({ target: 'Object', stat: true, forced: Object.assign !== assign }, {
2229
+ assign: assign
2230
+ });
2231
+
2232
+
2233
+ /***/ }),
2234
+
2235
+ /***/ "cdf9":
2236
+ /***/ (function(module, exports, __webpack_require__) {
2237
+
2238
+ var anObject = __webpack_require__("825a");
2239
+ var isObject = __webpack_require__("861d");
2240
+ var newPromiseCapability = __webpack_require__("f069");
2241
+
2242
+ module.exports = function (C, x) {
2243
+ anObject(C);
2244
+ if (isObject(x) && x.constructor === C) return x;
2245
+ var promiseCapability = newPromiseCapability.f(C);
2246
+ var resolve = promiseCapability.resolve;
2247
+ resolve(x);
2248
+ return promiseCapability.promise;
2249
+ };
2250
+
2251
+
2252
+ /***/ }),
2253
+
2254
+ /***/ "ce4e":
2255
+ /***/ (function(module, exports, __webpack_require__) {
2256
+
2257
+ var global = __webpack_require__("da84");
2258
+
2259
+ module.exports = function (key, value) {
2260
+ try {
2261
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
2262
+ Object.defineProperty(global, key, { value: value, configurable: true, writable: true });
2263
+ } catch (error) {
2264
+ global[key] = value;
2265
+ } return value;
2266
+ };
2267
+
2268
+
2269
+ /***/ }),
2270
+
2271
+ /***/ "d012":
2272
+ /***/ (function(module, exports) {
2273
+
2274
+ module.exports = {};
2275
+
2276
+
2277
+ /***/ }),
2278
+
2279
+ /***/ "d039":
2280
+ /***/ (function(module, exports) {
2281
+
2282
+ module.exports = function (exec) {
2283
+ try {
2284
+ return !!exec();
2285
+ } catch (error) {
2286
+ return true;
2287
+ }
2288
+ };
2289
+
2290
+
2291
+ /***/ }),
2292
+
2293
+ /***/ "d066":
2294
+ /***/ (function(module, exports, __webpack_require__) {
2295
+
2296
+ var global = __webpack_require__("da84");
2297
+
2298
+ var aFunction = function (variable) {
2299
+ return typeof variable == 'function' ? variable : undefined;
2300
+ };
2301
+
2302
+ module.exports = function (namespace, method) {
2303
+ return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method];
2304
+ };
2305
+
2306
+
2307
+ /***/ }),
2308
+
2309
+ /***/ "d1e7":
2310
+ /***/ (function(module, exports, __webpack_require__) {
2311
+
2312
+ "use strict";
2313
+
2314
+ var $propertyIsEnumerable = {}.propertyIsEnumerable;
2315
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2316
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
2317
+
2318
+ // Nashorn ~ JDK8 bug
2319
+ var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
2320
+
2321
+ // `Object.prototype.propertyIsEnumerable` method implementation
2322
+ // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
2323
+ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
2324
+ var descriptor = getOwnPropertyDescriptor(this, V);
2325
+ return !!descriptor && descriptor.enumerable;
2326
+ } : $propertyIsEnumerable;
2327
+
2328
+
2329
+ /***/ }),
2330
+
2331
+ /***/ "d2bb":
2332
+ /***/ (function(module, exports, __webpack_require__) {
2333
+
2334
+ /* eslint-disable no-proto -- safe */
2335
+ var anObject = __webpack_require__("825a");
2336
+ var aPossiblePrototype = __webpack_require__("3bbe");
2337
+
2338
+ // `Object.setPrototypeOf` method
2339
+ // https://tc39.es/ecma262/#sec-object.setprototypeof
2340
+ // Works with __proto__ only. Old v8 can't work with null proto objects.
2341
+ // eslint-disable-next-line es/no-object-setprototypeof -- safe
2342
+ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
2343
+ var CORRECT_SETTER = false;
2344
+ var test = {};
2345
+ var setter;
2346
+ try {
2347
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2348
+ setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;
2349
+ setter.call(test, []);
2350
+ CORRECT_SETTER = test instanceof Array;
2351
+ } catch (error) { /* empty */ }
2352
+ return function setPrototypeOf(O, proto) {
2353
+ anObject(O);
2354
+ aPossiblePrototype(proto);
2355
+ if (CORRECT_SETTER) setter.call(O, proto);
2356
+ else O.__proto__ = proto;
2357
+ return O;
2358
+ };
2359
+ }() : undefined);
2360
+
2361
+
2362
+ /***/ }),
2363
+
2364
+ /***/ "d44e":
2365
+ /***/ (function(module, exports, __webpack_require__) {
2366
+
2367
+ var defineProperty = __webpack_require__("9bf2").f;
2368
+ var has = __webpack_require__("5135");
2369
+ var wellKnownSymbol = __webpack_require__("b622");
2370
+
2371
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
2372
+
2373
+ module.exports = function (it, TAG, STATIC) {
2374
+ if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {
2375
+ defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });
2376
+ }
2377
+ };
2378
+
2379
+
2380
+ /***/ }),
2381
+
2382
+ /***/ "d4c3":
2383
+ /***/ (function(module, exports, __webpack_require__) {
2384
+
2385
+ var userAgent = __webpack_require__("342f");
2386
+ var global = __webpack_require__("da84");
2387
+
2388
+ module.exports = /ipad|iphone|ipod/i.test(userAgent) && global.Pebble !== undefined;
2389
+
2390
+
2391
+ /***/ }),
2392
+
2393
+ /***/ "d4ec":
2394
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
2395
+
2396
+ "use strict";
2397
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return _classCallCheck; });
2398
+ function _classCallCheck(instance, Constructor) {
2399
+ if (!(instance instanceof Constructor)) {
2400
+ throw new TypeError("Cannot call a class as a function");
2401
+ }
2402
+ }
2403
+
2404
+ /***/ }),
2405
+
2406
+ /***/ "d9b5":
2407
+ /***/ (function(module, exports, __webpack_require__) {
2408
+
2409
+ var getBuiltIn = __webpack_require__("d066");
2410
+ var USE_SYMBOL_AS_UID = __webpack_require__("fdbf");
2411
+
2412
+ module.exports = USE_SYMBOL_AS_UID ? function (it) {
2413
+ return typeof it == 'symbol';
2414
+ } : function (it) {
2415
+ var $Symbol = getBuiltIn('Symbol');
2416
+ return typeof $Symbol == 'function' && Object(it) instanceof $Symbol;
2417
+ };
2418
+
2419
+
2420
+ /***/ }),
2421
+
2422
+ /***/ "da84":
2423
+ /***/ (function(module, exports, __webpack_require__) {
2424
+
2425
+ /* WEBPACK VAR INJECTION */(function(global) {var check = function (it) {
2426
+ return it && it.Math == Math && it;
2427
+ };
2428
+
2429
+ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
2430
+ module.exports =
2431
+ // eslint-disable-next-line es/no-global-this -- safe
2432
+ check(typeof globalThis == 'object' && globalThis) ||
2433
+ check(typeof window == 'object' && window) ||
2434
+ // eslint-disable-next-line no-restricted-globals -- safe
2435
+ check(typeof self == 'object' && self) ||
2436
+ check(typeof global == 'object' && global) ||
2437
+ // eslint-disable-next-line no-new-func -- fallback
2438
+ (function () { return this; })() || Function('return this')();
2439
+
2440
+ /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("c8ba")))
2441
+
2442
+ /***/ }),
2443
+
2444
+ /***/ "df75":
2445
+ /***/ (function(module, exports, __webpack_require__) {
2446
+
2447
+ var internalObjectKeys = __webpack_require__("ca84");
2448
+ var enumBugKeys = __webpack_require__("7839");
2449
+
2450
+ // `Object.keys` method
2451
+ // https://tc39.es/ecma262/#sec-object.keys
2452
+ // eslint-disable-next-line es/no-object-keys -- safe
2453
+ module.exports = Object.keys || function keys(O) {
2454
+ return internalObjectKeys(O, enumBugKeys);
2455
+ };
2456
+
2457
+
2458
+ /***/ }),
2459
+
2460
+ /***/ "e163":
2461
+ /***/ (function(module, exports, __webpack_require__) {
2462
+
2463
+ var has = __webpack_require__("5135");
2464
+ var toObject = __webpack_require__("7b0b");
2465
+ var sharedKey = __webpack_require__("f772");
2466
+ var CORRECT_PROTOTYPE_GETTER = __webpack_require__("e177");
2467
+
2468
+ var IE_PROTO = sharedKey('IE_PROTO');
2469
+ var ObjectPrototype = Object.prototype;
2470
+
2471
+ // `Object.getPrototypeOf` method
2472
+ // https://tc39.es/ecma262/#sec-object.getprototypeof
2473
+ // eslint-disable-next-line es/no-object-getprototypeof -- safe
2474
+ module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {
2475
+ O = toObject(O);
2476
+ if (has(O, IE_PROTO)) return O[IE_PROTO];
2477
+ if (typeof O.constructor == 'function' && O instanceof O.constructor) {
2478
+ return O.constructor.prototype;
2479
+ } return O instanceof Object ? ObjectPrototype : null;
2480
+ };
2481
+
2482
+
2483
+ /***/ }),
2484
+
2485
+ /***/ "e177":
2486
+ /***/ (function(module, exports, __webpack_require__) {
2487
+
2488
+ var fails = __webpack_require__("d039");
2489
+
2490
+ module.exports = !fails(function () {
2491
+ function F() { /* empty */ }
2492
+ F.prototype.constructor = null;
2493
+ // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
2494
+ return Object.getPrototypeOf(new F()) !== F.prototype;
2495
+ });
2496
+
2497
+
2498
+ /***/ }),
2499
+
2500
+ /***/ "e260":
2501
+ /***/ (function(module, exports, __webpack_require__) {
2502
+
2503
+ "use strict";
2504
+
2505
+ var toIndexedObject = __webpack_require__("fc6a");
2506
+ var addToUnscopables = __webpack_require__("44d2");
2507
+ var Iterators = __webpack_require__("3f8c");
2508
+ var InternalStateModule = __webpack_require__("69f3");
2509
+ var defineIterator = __webpack_require__("7dd0");
2510
+
2511
+ var ARRAY_ITERATOR = 'Array Iterator';
2512
+ var setInternalState = InternalStateModule.set;
2513
+ var getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);
2514
+
2515
+ // `Array.prototype.entries` method
2516
+ // https://tc39.es/ecma262/#sec-array.prototype.entries
2517
+ // `Array.prototype.keys` method
2518
+ // https://tc39.es/ecma262/#sec-array.prototype.keys
2519
+ // `Array.prototype.values` method
2520
+ // https://tc39.es/ecma262/#sec-array.prototype.values
2521
+ // `Array.prototype[@@iterator]` method
2522
+ // https://tc39.es/ecma262/#sec-array.prototype-@@iterator
2523
+ // `CreateArrayIterator` internal method
2524
+ // https://tc39.es/ecma262/#sec-createarrayiterator
2525
+ module.exports = defineIterator(Array, 'Array', function (iterated, kind) {
2526
+ setInternalState(this, {
2527
+ type: ARRAY_ITERATOR,
2528
+ target: toIndexedObject(iterated), // target
2529
+ index: 0, // next index
2530
+ kind: kind // kind
2531
+ });
2532
+ // `%ArrayIteratorPrototype%.next` method
2533
+ // https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next
2534
+ }, function () {
2535
+ var state = getInternalState(this);
2536
+ var target = state.target;
2537
+ var kind = state.kind;
2538
+ var index = state.index++;
2539
+ if (!target || index >= target.length) {
2540
+ state.target = undefined;
2541
+ return { value: undefined, done: true };
2542
+ }
2543
+ if (kind == 'keys') return { value: index, done: false };
2544
+ if (kind == 'values') return { value: target[index], done: false };
2545
+ return { value: [index, target[index]], done: false };
2546
+ }, 'values');
2547
+
2548
+ // argumentsList[@@iterator] is %ArrayProto_values%
2549
+ // https://tc39.es/ecma262/#sec-createunmappedargumentsobject
2550
+ // https://tc39.es/ecma262/#sec-createmappedargumentsobject
2551
+ Iterators.Arguments = Iterators.Array;
2552
+
2553
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
2554
+ addToUnscopables('keys');
2555
+ addToUnscopables('values');
2556
+ addToUnscopables('entries');
2557
+
2558
+
2559
+ /***/ }),
2560
+
2561
+ /***/ "e2cc":
2562
+ /***/ (function(module, exports, __webpack_require__) {
2563
+
2564
+ var redefine = __webpack_require__("6eeb");
2565
+
2566
+ module.exports = function (target, src, options) {
2567
+ for (var key in src) redefine(target, key, src[key], options);
2568
+ return target;
2569
+ };
2570
+
2571
+
2572
+ /***/ }),
2573
+
2574
+ /***/ "e667":
2575
+ /***/ (function(module, exports) {
2576
+
2577
+ module.exports = function (exec) {
2578
+ try {
2579
+ return { error: false, value: exec() };
2580
+ } catch (error) {
2581
+ return { error: true, value: error };
2582
+ }
2583
+ };
2584
+
2585
+
2586
+ /***/ }),
2587
+
2588
+ /***/ "e6cf":
2589
+ /***/ (function(module, exports, __webpack_require__) {
2590
+
2591
+ "use strict";
2592
+
2593
+ var $ = __webpack_require__("23e7");
2594
+ var IS_PURE = __webpack_require__("c430");
2595
+ var global = __webpack_require__("da84");
2596
+ var getBuiltIn = __webpack_require__("d066");
2597
+ var NativePromise = __webpack_require__("fea9");
2598
+ var redefine = __webpack_require__("6eeb");
2599
+ var redefineAll = __webpack_require__("e2cc");
2600
+ var setPrototypeOf = __webpack_require__("d2bb");
2601
+ var setToStringTag = __webpack_require__("d44e");
2602
+ var setSpecies = __webpack_require__("2626");
2603
+ var isObject = __webpack_require__("861d");
2604
+ var aFunction = __webpack_require__("1c0b");
2605
+ var anInstance = __webpack_require__("19aa");
2606
+ var inspectSource = __webpack_require__("8925");
2607
+ var iterate = __webpack_require__("2266");
2608
+ var checkCorrectnessOfIteration = __webpack_require__("1c7e");
2609
+ var speciesConstructor = __webpack_require__("4840");
2610
+ var task = __webpack_require__("2cf4").set;
2611
+ var microtask = __webpack_require__("b575");
2612
+ var promiseResolve = __webpack_require__("cdf9");
2613
+ var hostReportErrors = __webpack_require__("44de");
2614
+ var newPromiseCapabilityModule = __webpack_require__("f069");
2615
+ var perform = __webpack_require__("e667");
2616
+ var InternalStateModule = __webpack_require__("69f3");
2617
+ var isForced = __webpack_require__("94ca");
2618
+ var wellKnownSymbol = __webpack_require__("b622");
2619
+ var IS_BROWSER = __webpack_require__("6069");
2620
+ var IS_NODE = __webpack_require__("605d");
2621
+ var V8_VERSION = __webpack_require__("2d00");
2622
+
2623
+ var SPECIES = wellKnownSymbol('species');
2624
+ var PROMISE = 'Promise';
2625
+ var getInternalState = InternalStateModule.get;
2626
+ var setInternalState = InternalStateModule.set;
2627
+ var getInternalPromiseState = InternalStateModule.getterFor(PROMISE);
2628
+ var NativePromisePrototype = NativePromise && NativePromise.prototype;
2629
+ var PromiseConstructor = NativePromise;
2630
+ var PromiseConstructorPrototype = NativePromisePrototype;
2631
+ var TypeError = global.TypeError;
2632
+ var document = global.document;
2633
+ var process = global.process;
2634
+ var newPromiseCapability = newPromiseCapabilityModule.f;
2635
+ var newGenericPromiseCapability = newPromiseCapability;
2636
+ var DISPATCH_EVENT = !!(document && document.createEvent && global.dispatchEvent);
2637
+ var NATIVE_REJECTION_EVENT = typeof PromiseRejectionEvent == 'function';
2638
+ var UNHANDLED_REJECTION = 'unhandledrejection';
2639
+ var REJECTION_HANDLED = 'rejectionhandled';
2640
+ var PENDING = 0;
2641
+ var FULFILLED = 1;
2642
+ var REJECTED = 2;
2643
+ var HANDLED = 1;
2644
+ var UNHANDLED = 2;
2645
+ var SUBCLASSING = false;
2646
+ var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
2647
+
2648
+ var FORCED = isForced(PROMISE, function () {
2649
+ var PROMISE_CONSTRUCTOR_SOURCE = inspectSource(PromiseConstructor);
2650
+ var GLOBAL_CORE_JS_PROMISE = PROMISE_CONSTRUCTOR_SOURCE !== String(PromiseConstructor);
2651
+ // V8 6.6 (Node 10 and Chrome 66) have a bug with resolving custom thenables
2652
+ // https://bugs.chromium.org/p/chromium/issues/detail?id=830565
2653
+ // We can't detect it synchronously, so just check versions
2654
+ if (!GLOBAL_CORE_JS_PROMISE && V8_VERSION === 66) return true;
2655
+ // We need Promise#finally in the pure version for preventing prototype pollution
2656
+ if (IS_PURE && !PromiseConstructorPrototype['finally']) return true;
2657
+ // We can't use @@species feature detection in V8 since it causes
2658
+ // deoptimization and performance degradation
2659
+ // https://github.com/zloirock/core-js/issues/679
2660
+ if (V8_VERSION >= 51 && /native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) return false;
2661
+ // Detect correctness of subclassing with @@species support
2662
+ var promise = new PromiseConstructor(function (resolve) { resolve(1); });
2663
+ var FakePromise = function (exec) {
2664
+ exec(function () { /* empty */ }, function () { /* empty */ });
2665
+ };
2666
+ var constructor = promise.constructor = {};
2667
+ constructor[SPECIES] = FakePromise;
2668
+ SUBCLASSING = promise.then(function () { /* empty */ }) instanceof FakePromise;
2669
+ if (!SUBCLASSING) return true;
2670
+ // Unhandled rejections tracking support, NodeJS Promise without it fails @@species test
2671
+ return !GLOBAL_CORE_JS_PROMISE && IS_BROWSER && !NATIVE_REJECTION_EVENT;
2672
+ });
2673
+
2674
+ var INCORRECT_ITERATION = FORCED || !checkCorrectnessOfIteration(function (iterable) {
2675
+ PromiseConstructor.all(iterable)['catch'](function () { /* empty */ });
2676
+ });
2677
+
2678
+ // helpers
2679
+ var isThenable = function (it) {
2680
+ var then;
2681
+ return isObject(it) && typeof (then = it.then) == 'function' ? then : false;
2682
+ };
2683
+
2684
+ var notify = function (state, isReject) {
2685
+ if (state.notified) return;
2686
+ state.notified = true;
2687
+ var chain = state.reactions;
2688
+ microtask(function () {
2689
+ var value = state.value;
2690
+ var ok = state.state == FULFILLED;
2691
+ var index = 0;
2692
+ // variable length - can't use forEach
2693
+ while (chain.length > index) {
2694
+ var reaction = chain[index++];
2695
+ var handler = ok ? reaction.ok : reaction.fail;
2696
+ var resolve = reaction.resolve;
2697
+ var reject = reaction.reject;
2698
+ var domain = reaction.domain;
2699
+ var result, then, exited;
2700
+ try {
2701
+ if (handler) {
2702
+ if (!ok) {
2703
+ if (state.rejection === UNHANDLED) onHandleUnhandled(state);
2704
+ state.rejection = HANDLED;
2705
+ }
2706
+ if (handler === true) result = value;
2707
+ else {
2708
+ if (domain) domain.enter();
2709
+ result = handler(value); // can throw
2710
+ if (domain) {
2711
+ domain.exit();
2712
+ exited = true;
2713
+ }
2714
+ }
2715
+ if (result === reaction.promise) {
2716
+ reject(TypeError('Promise-chain cycle'));
2717
+ } else if (then = isThenable(result)) {
2718
+ then.call(result, resolve, reject);
2719
+ } else resolve(result);
2720
+ } else reject(value);
2721
+ } catch (error) {
2722
+ if (domain && !exited) domain.exit();
2723
+ reject(error);
2724
+ }
2725
+ }
2726
+ state.reactions = [];
2727
+ state.notified = false;
2728
+ if (isReject && !state.rejection) onUnhandled(state);
2729
+ });
2730
+ };
2731
+
2732
+ var dispatchEvent = function (name, promise, reason) {
2733
+ var event, handler;
2734
+ if (DISPATCH_EVENT) {
2735
+ event = document.createEvent('Event');
2736
+ event.promise = promise;
2737
+ event.reason = reason;
2738
+ event.initEvent(name, false, true);
2739
+ global.dispatchEvent(event);
2740
+ } else event = { promise: promise, reason: reason };
2741
+ if (!NATIVE_REJECTION_EVENT && (handler = global['on' + name])) handler(event);
2742
+ else if (name === UNHANDLED_REJECTION) hostReportErrors('Unhandled promise rejection', reason);
2743
+ };
2744
+
2745
+ var onUnhandled = function (state) {
2746
+ task.call(global, function () {
2747
+ var promise = state.facade;
2748
+ var value = state.value;
2749
+ var IS_UNHANDLED = isUnhandled(state);
2750
+ var result;
2751
+ if (IS_UNHANDLED) {
2752
+ result = perform(function () {
2753
+ if (IS_NODE) {
2754
+ process.emit('unhandledRejection', value, promise);
2755
+ } else dispatchEvent(UNHANDLED_REJECTION, promise, value);
2756
+ });
2757
+ // Browsers should not trigger `rejectionHandled` event if it was handled here, NodeJS - should
2758
+ state.rejection = IS_NODE || isUnhandled(state) ? UNHANDLED : HANDLED;
2759
+ if (result.error) throw result.value;
2760
+ }
2761
+ });
2762
+ };
2763
+
2764
+ var isUnhandled = function (state) {
2765
+ return state.rejection !== HANDLED && !state.parent;
2766
+ };
2767
+
2768
+ var onHandleUnhandled = function (state) {
2769
+ task.call(global, function () {
2770
+ var promise = state.facade;
2771
+ if (IS_NODE) {
2772
+ process.emit('rejectionHandled', promise);
2773
+ } else dispatchEvent(REJECTION_HANDLED, promise, state.value);
2774
+ });
2775
+ };
2776
+
2777
+ var bind = function (fn, state, unwrap) {
2778
+ return function (value) {
2779
+ fn(state, value, unwrap);
2780
+ };
2781
+ };
2782
+
2783
+ var internalReject = function (state, value, unwrap) {
2784
+ if (state.done) return;
2785
+ state.done = true;
2786
+ if (unwrap) state = unwrap;
2787
+ state.value = value;
2788
+ state.state = REJECTED;
2789
+ notify(state, true);
2790
+ };
2791
+
2792
+ var internalResolve = function (state, value, unwrap) {
2793
+ if (state.done) return;
2794
+ state.done = true;
2795
+ if (unwrap) state = unwrap;
2796
+ try {
2797
+ if (state.facade === value) throw TypeError("Promise can't be resolved itself");
2798
+ var then = isThenable(value);
2799
+ if (then) {
2800
+ microtask(function () {
2801
+ var wrapper = { done: false };
2802
+ try {
2803
+ then.call(value,
2804
+ bind(internalResolve, wrapper, state),
2805
+ bind(internalReject, wrapper, state)
2806
+ );
2807
+ } catch (error) {
2808
+ internalReject(wrapper, error, state);
2809
+ }
2810
+ });
2811
+ } else {
2812
+ state.value = value;
2813
+ state.state = FULFILLED;
2814
+ notify(state, false);
2815
+ }
2816
+ } catch (error) {
2817
+ internalReject({ done: false }, error, state);
2818
+ }
2819
+ };
2820
+
2821
+ // constructor polyfill
2822
+ if (FORCED) {
2823
+ // 25.4.3.1 Promise(executor)
2824
+ PromiseConstructor = function Promise(executor) {
2825
+ anInstance(this, PromiseConstructor, PROMISE);
2826
+ aFunction(executor);
2827
+ Internal.call(this);
2828
+ var state = getInternalState(this);
2829
+ try {
2830
+ executor(bind(internalResolve, state), bind(internalReject, state));
2831
+ } catch (error) {
2832
+ internalReject(state, error);
2833
+ }
2834
+ };
2835
+ PromiseConstructorPrototype = PromiseConstructor.prototype;
2836
+ // eslint-disable-next-line no-unused-vars -- required for `.length`
2837
+ Internal = function Promise(executor) {
2838
+ setInternalState(this, {
2839
+ type: PROMISE,
2840
+ done: false,
2841
+ notified: false,
2842
+ parent: false,
2843
+ reactions: [],
2844
+ rejection: false,
2845
+ state: PENDING,
2846
+ value: undefined
2847
+ });
2848
+ };
2849
+ Internal.prototype = redefineAll(PromiseConstructorPrototype, {
2850
+ // `Promise.prototype.then` method
2851
+ // https://tc39.es/ecma262/#sec-promise.prototype.then
2852
+ then: function then(onFulfilled, onRejected) {
2853
+ var state = getInternalPromiseState(this);
2854
+ var reaction = newPromiseCapability(speciesConstructor(this, PromiseConstructor));
2855
+ reaction.ok = typeof onFulfilled == 'function' ? onFulfilled : true;
2856
+ reaction.fail = typeof onRejected == 'function' && onRejected;
2857
+ reaction.domain = IS_NODE ? process.domain : undefined;
2858
+ state.parent = true;
2859
+ state.reactions.push(reaction);
2860
+ if (state.state != PENDING) notify(state, false);
2861
+ return reaction.promise;
2862
+ },
2863
+ // `Promise.prototype.catch` method
2864
+ // https://tc39.es/ecma262/#sec-promise.prototype.catch
2865
+ 'catch': function (onRejected) {
2866
+ return this.then(undefined, onRejected);
2867
+ }
2868
+ });
2869
+ OwnPromiseCapability = function () {
2870
+ var promise = new Internal();
2871
+ var state = getInternalState(promise);
2872
+ this.promise = promise;
2873
+ this.resolve = bind(internalResolve, state);
2874
+ this.reject = bind(internalReject, state);
2875
+ };
2876
+ newPromiseCapabilityModule.f = newPromiseCapability = function (C) {
2877
+ return C === PromiseConstructor || C === PromiseWrapper
2878
+ ? new OwnPromiseCapability(C)
2879
+ : newGenericPromiseCapability(C);
2880
+ };
2881
+
2882
+ if (!IS_PURE && typeof NativePromise == 'function' && NativePromisePrototype !== Object.prototype) {
2883
+ nativeThen = NativePromisePrototype.then;
2884
+
2885
+ if (!SUBCLASSING) {
2886
+ // make `Promise#then` return a polyfilled `Promise` for native promise-based APIs
2887
+ redefine(NativePromisePrototype, 'then', function then(onFulfilled, onRejected) {
2888
+ var that = this;
2889
+ return new PromiseConstructor(function (resolve, reject) {
2890
+ nativeThen.call(that, resolve, reject);
2891
+ }).then(onFulfilled, onRejected);
2892
+ // https://github.com/zloirock/core-js/issues/640
2893
+ }, { unsafe: true });
2894
+
2895
+ // makes sure that native promise-based APIs `Promise#catch` properly works with patched `Promise#then`
2896
+ redefine(NativePromisePrototype, 'catch', PromiseConstructorPrototype['catch'], { unsafe: true });
2897
+ }
2898
+
2899
+ // make `.constructor === Promise` work for native promise-based APIs
2900
+ try {
2901
+ delete NativePromisePrototype.constructor;
2902
+ } catch (error) { /* empty */ }
2903
+
2904
+ // make `instanceof Promise` work for native promise-based APIs
2905
+ if (setPrototypeOf) {
2906
+ setPrototypeOf(NativePromisePrototype, PromiseConstructorPrototype);
2907
+ }
2908
+ }
2909
+ }
2910
+
2911
+ $({ global: true, wrap: true, forced: FORCED }, {
2912
+ Promise: PromiseConstructor
2913
+ });
2914
+
2915
+ setToStringTag(PromiseConstructor, PROMISE, false, true);
2916
+ setSpecies(PROMISE);
2917
+
2918
+ PromiseWrapper = getBuiltIn(PROMISE);
2919
+
2920
+ // statics
2921
+ $({ target: PROMISE, stat: true, forced: FORCED }, {
2922
+ // `Promise.reject` method
2923
+ // https://tc39.es/ecma262/#sec-promise.reject
2924
+ reject: function reject(r) {
2925
+ var capability = newPromiseCapability(this);
2926
+ capability.reject.call(undefined, r);
2927
+ return capability.promise;
2928
+ }
2929
+ });
2930
+
2931
+ $({ target: PROMISE, stat: true, forced: IS_PURE || FORCED }, {
2932
+ // `Promise.resolve` method
2933
+ // https://tc39.es/ecma262/#sec-promise.resolve
2934
+ resolve: function resolve(x) {
2935
+ return promiseResolve(IS_PURE && this === PromiseWrapper ? PromiseConstructor : this, x);
2936
+ }
2937
+ });
2938
+
2939
+ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
2940
+ // `Promise.all` method
2941
+ // https://tc39.es/ecma262/#sec-promise.all
2942
+ all: function all(iterable) {
2943
+ var C = this;
2944
+ var capability = newPromiseCapability(C);
2945
+ var resolve = capability.resolve;
2946
+ var reject = capability.reject;
2947
+ var result = perform(function () {
2948
+ var $promiseResolve = aFunction(C.resolve);
2949
+ var values = [];
2950
+ var counter = 0;
2951
+ var remaining = 1;
2952
+ iterate(iterable, function (promise) {
2953
+ var index = counter++;
2954
+ var alreadyCalled = false;
2955
+ values.push(undefined);
2956
+ remaining++;
2957
+ $promiseResolve.call(C, promise).then(function (value) {
2958
+ if (alreadyCalled) return;
2959
+ alreadyCalled = true;
2960
+ values[index] = value;
2961
+ --remaining || resolve(values);
2962
+ }, reject);
2963
+ });
2964
+ --remaining || resolve(values);
2965
+ });
2966
+ if (result.error) reject(result.value);
2967
+ return capability.promise;
2968
+ },
2969
+ // `Promise.race` method
2970
+ // https://tc39.es/ecma262/#sec-promise.race
2971
+ race: function race(iterable) {
2972
+ var C = this;
2973
+ var capability = newPromiseCapability(C);
2974
+ var reject = capability.reject;
2975
+ var result = perform(function () {
2976
+ var $promiseResolve = aFunction(C.resolve);
2977
+ iterate(iterable, function (promise) {
2978
+ $promiseResolve.call(C, promise).then(capability.resolve, reject);
2979
+ });
2980
+ });
2981
+ if (result.error) reject(result.value);
2982
+ return capability.promise;
2983
+ }
2984
+ });
2985
+
2986
+
2987
+ /***/ }),
2988
+
2989
+ /***/ "e893":
2990
+ /***/ (function(module, exports, __webpack_require__) {
2991
+
2992
+ var has = __webpack_require__("5135");
2993
+ var ownKeys = __webpack_require__("56ef");
2994
+ var getOwnPropertyDescriptorModule = __webpack_require__("06cf");
2995
+ var definePropertyModule = __webpack_require__("9bf2");
2996
+
2997
+ module.exports = function (target, source) {
2998
+ var keys = ownKeys(source);
2999
+ var defineProperty = definePropertyModule.f;
3000
+ var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
3001
+ for (var i = 0; i < keys.length; i++) {
3002
+ var key = keys[i];
3003
+ if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
3004
+ }
3005
+ };
3006
+
3007
+
3008
+ /***/ }),
3009
+
3010
+ /***/ "e95a":
3011
+ /***/ (function(module, exports, __webpack_require__) {
3012
+
3013
+ var wellKnownSymbol = __webpack_require__("b622");
3014
+ var Iterators = __webpack_require__("3f8c");
3015
+
3016
+ var ITERATOR = wellKnownSymbol('iterator');
3017
+ var ArrayPrototype = Array.prototype;
3018
+
3019
+ // check on default Array iterator
3020
+ module.exports = function (it) {
3021
+ return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);
3022
+ };
3023
+
3024
+
3025
+ /***/ }),
3026
+
3027
+ /***/ "ea64":
3028
+ /***/ (function(module, exports) {
3029
+
3030
+ module.exports = require("core-js/modules/es.object.keys.js");
3031
+
3032
+ /***/ }),
3033
+
3034
+ /***/ "f069":
3035
+ /***/ (function(module, exports, __webpack_require__) {
3036
+
3037
+ "use strict";
3038
+
3039
+ var aFunction = __webpack_require__("1c0b");
3040
+
3041
+ var PromiseCapability = function (C) {
3042
+ var resolve, reject;
3043
+ this.promise = new C(function ($$resolve, $$reject) {
3044
+ if (resolve !== undefined || reject !== undefined) throw TypeError('Bad Promise constructor');
3045
+ resolve = $$resolve;
3046
+ reject = $$reject;
3047
+ });
3048
+ this.resolve = aFunction(resolve);
3049
+ this.reject = aFunction(reject);
3050
+ };
3051
+
3052
+ // `NewPromiseCapability` abstract operation
3053
+ // https://tc39.es/ecma262/#sec-newpromisecapability
3054
+ module.exports.f = function (C) {
3055
+ return new PromiseCapability(C);
3056
+ };
3057
+
3058
+
3059
+ /***/ }),
3060
+
3061
+ /***/ "f5df":
3062
+ /***/ (function(module, exports, __webpack_require__) {
3063
+
3064
+ var TO_STRING_TAG_SUPPORT = __webpack_require__("00ee");
3065
+ var classofRaw = __webpack_require__("c6b6");
3066
+ var wellKnownSymbol = __webpack_require__("b622");
3067
+
3068
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
3069
+ // ES3 wrong here
3070
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
3071
+
3072
+ // fallback for IE11 Script Access Denied error
3073
+ var tryGet = function (it, key) {
3074
+ try {
3075
+ return it[key];
3076
+ } catch (error) { /* empty */ }
3077
+ };
3078
+
3079
+ // getting tag from ES6+ `Object.prototype.toString`
3080
+ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
3081
+ var O, tag, result;
3082
+ return it === undefined ? 'Undefined' : it === null ? 'Null'
3083
+ // @@toStringTag case
3084
+ : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag
3085
+ // builtinTag case
3086
+ : CORRECT_ARGUMENTS ? classofRaw(O)
3087
+ // ES3 arguments fallback
3088
+ : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;
3089
+ };
3090
+
3091
+
3092
+ /***/ }),
3093
+
3094
+ /***/ "f772":
3095
+ /***/ (function(module, exports, __webpack_require__) {
3096
+
3097
+ var shared = __webpack_require__("5692");
3098
+ var uid = __webpack_require__("90e3");
3099
+
3100
+ var keys = shared('keys');
3101
+
3102
+ module.exports = function (key) {
3103
+ return keys[key] || (keys[key] = uid(key));
3104
+ };
3105
+
3106
+
3107
+ /***/ }),
3108
+
3109
+ /***/ "fc6a":
3110
+ /***/ (function(module, exports, __webpack_require__) {
3111
+
3112
+ // toObject with fallback for non-array-like ES3 strings
3113
+ var IndexedObject = __webpack_require__("44ad");
3114
+ var requireObjectCoercible = __webpack_require__("1d80");
3115
+
3116
+ module.exports = function (it) {
3117
+ return IndexedObject(requireObjectCoercible(it));
3118
+ };
3119
+
3120
+
3121
+ /***/ }),
3122
+
3123
+ /***/ "fdbf":
3124
+ /***/ (function(module, exports, __webpack_require__) {
3125
+
3126
+ /* eslint-disable es/no-symbol -- required for testing */
3127
+ var NATIVE_SYMBOL = __webpack_require__("4930");
3128
+
3129
+ module.exports = NATIVE_SYMBOL
3130
+ && !Symbol.sham
3131
+ && typeof Symbol.iterator == 'symbol';
3132
+
3133
+
3134
+ /***/ }),
3135
+
3136
+ /***/ "fea9":
3137
+ /***/ (function(module, exports, __webpack_require__) {
3138
+
3139
+ var global = __webpack_require__("da84");
3140
+
3141
+ module.exports = global.Promise;
3142
+
3143
+
3144
+ /***/ })
3145
+
3146
+ /******/ })["default"];