gant-board 1.0.55 → 1.0.57

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.
@@ -550,6 +550,16 @@ module.exports = function (exec, SKIP_CLOSING) {
550
550
  };
551
551
 
552
552
 
553
+ /***/ }),
554
+
555
+ /***/ "1cdc":
556
+ /***/ (function(module, exports, __webpack_require__) {
557
+
558
+ var userAgent = __webpack_require__("342f");
559
+
560
+ module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent);
561
+
562
+
553
563
  /***/ }),
554
564
 
555
565
  /***/ "1d80":
@@ -953,6 +963,126 @@ module.exports = typeof Reflect == 'object' && Reflect.apply || (bind ? call.bin
953
963
  });
954
964
 
955
965
 
966
+ /***/ }),
967
+
968
+ /***/ "2cf4":
969
+ /***/ (function(module, exports, __webpack_require__) {
970
+
971
+ var global = __webpack_require__("da84");
972
+ var apply = __webpack_require__("2ba4");
973
+ var bind = __webpack_require__("0366");
974
+ var isCallable = __webpack_require__("1626");
975
+ var hasOwn = __webpack_require__("1a2d");
976
+ var fails = __webpack_require__("d039");
977
+ var html = __webpack_require__("1be4");
978
+ var arraySlice = __webpack_require__("f36a");
979
+ var createElement = __webpack_require__("cc12");
980
+ var IS_IOS = __webpack_require__("1cdc");
981
+ var IS_NODE = __webpack_require__("605d");
982
+
983
+ var set = global.setImmediate;
984
+ var clear = global.clearImmediate;
985
+ var process = global.process;
986
+ var Dispatch = global.Dispatch;
987
+ var Function = global.Function;
988
+ var MessageChannel = global.MessageChannel;
989
+ var String = global.String;
990
+ var counter = 0;
991
+ var queue = {};
992
+ var ONREADYSTATECHANGE = 'onreadystatechange';
993
+ var location, defer, channel, port;
994
+
995
+ try {
996
+ // Deno throws a ReferenceError on `location` access without `--location` flag
997
+ location = global.location;
998
+ } catch (error) { /* empty */ }
999
+
1000
+ var run = function (id) {
1001
+ if (hasOwn(queue, id)) {
1002
+ var fn = queue[id];
1003
+ delete queue[id];
1004
+ fn();
1005
+ }
1006
+ };
1007
+
1008
+ var runner = function (id) {
1009
+ return function () {
1010
+ run(id);
1011
+ };
1012
+ };
1013
+
1014
+ var listener = function (event) {
1015
+ run(event.data);
1016
+ };
1017
+
1018
+ var post = function (id) {
1019
+ // old engines have not location.origin
1020
+ global.postMessage(String(id), location.protocol + '//' + location.host);
1021
+ };
1022
+
1023
+ // Node.js 0.9+ & IE10+ has setImmediate, otherwise:
1024
+ if (!set || !clear) {
1025
+ set = function setImmediate(fn) {
1026
+ var args = arraySlice(arguments, 1);
1027
+ queue[++counter] = function () {
1028
+ apply(isCallable(fn) ? fn : Function(fn), undefined, args);
1029
+ };
1030
+ defer(counter);
1031
+ return counter;
1032
+ };
1033
+ clear = function clearImmediate(id) {
1034
+ delete queue[id];
1035
+ };
1036
+ // Node.js 0.8-
1037
+ if (IS_NODE) {
1038
+ defer = function (id) {
1039
+ process.nextTick(runner(id));
1040
+ };
1041
+ // Sphere (JS game engine) Dispatch API
1042
+ } else if (Dispatch && Dispatch.now) {
1043
+ defer = function (id) {
1044
+ Dispatch.now(runner(id));
1045
+ };
1046
+ // Browsers with MessageChannel, includes WebWorkers
1047
+ // except iOS - https://github.com/zloirock/core-js/issues/624
1048
+ } else if (MessageChannel && !IS_IOS) {
1049
+ channel = new MessageChannel();
1050
+ port = channel.port2;
1051
+ channel.port1.onmessage = listener;
1052
+ defer = bind(port.postMessage, port);
1053
+ // Browsers with postMessage, skip WebWorkers
1054
+ // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
1055
+ } else if (
1056
+ global.addEventListener &&
1057
+ isCallable(global.postMessage) &&
1058
+ !global.importScripts &&
1059
+ location && location.protocol !== 'file:' &&
1060
+ !fails(post)
1061
+ ) {
1062
+ defer = post;
1063
+ global.addEventListener('message', listener, false);
1064
+ // IE8-
1065
+ } else if (ONREADYSTATECHANGE in createElement('script')) {
1066
+ defer = function (id) {
1067
+ html.appendChild(createElement('script'))[ONREADYSTATECHANGE] = function () {
1068
+ html.removeChild(this);
1069
+ run(id);
1070
+ };
1071
+ };
1072
+ // Rest old browsers
1073
+ } else {
1074
+ defer = function (id) {
1075
+ setTimeout(runner(id), 0);
1076
+ };
1077
+ }
1078
+ }
1079
+
1080
+ module.exports = {
1081
+ set: set,
1082
+ clear: clear
1083
+ };
1084
+
1085
+
956
1086
  /***/ }),
957
1087
 
958
1088
  /***/ "2d00":
@@ -987,20 +1117,6 @@ if (!version && userAgent) {
987
1117
  module.exports = version;
988
1118
 
989
1119
 
990
- /***/ }),
991
-
992
- /***/ "3083":
993
- /***/ (function(module, exports, __webpack_require__) {
994
-
995
- // Imports
996
- var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
997
- exports = ___CSS_LOADER_API_IMPORT___(false);
998
- // Module
999
- exports.push([module.i, ".events-container[data-v-7a0dcb1e]{height:200px;height:100%;position:relative}.event .event_drag[data-v-7a0dcb1e]{min-width:10px}.event_title[data-v-7a0dcb1e]{flex-grow:1;text-align:start;min-width:0;font-size:12px}.event[data-v-7a0dcb1e]:hover{box-shadow:0 1px 4px rgba(0,0,0,.16)}.hide[data-v-7a0dcb1e]{min-width:55px!important}.hide_segment[data-v-7a0dcb1e]{--translate-x:0px!important}.noselect[data-v-7a0dcb1e]{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.by-scroll-container[data-v-7a0dcb1e]::-webkit-scrollbar-track{background-color:#fff}.by-scroll-container[data-v-7a0dcb1e]::-webkit-scrollbar{width:10px;height:10px;background-color:#f5f5f5}.by-scroll-container[data-v-7a0dcb1e]::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#999}", ""]);
1000
- // Exports
1001
- module.exports = exports;
1002
-
1003
-
1004
1120
  /***/ }),
1005
1121
 
1006
1122
  /***/ "342f":
@@ -1205,6 +1321,21 @@ module.exports = function (key) {
1205
1321
  };
1206
1322
 
1207
1323
 
1324
+ /***/ }),
1325
+
1326
+ /***/ "44de":
1327
+ /***/ (function(module, exports, __webpack_require__) {
1328
+
1329
+ var global = __webpack_require__("da84");
1330
+
1331
+ module.exports = function (a, b) {
1332
+ var console = global.console;
1333
+ if (console && console.error) {
1334
+ arguments.length == 1 ? console.error(a) : console.error(a, b);
1335
+ }
1336
+ };
1337
+
1338
+
1208
1339
  /***/ }),
1209
1340
 
1210
1341
  /***/ "466d":
@@ -1262,19 +1393,23 @@ fixRegExpWellKnownSymbolLogic('match', function (MATCH, nativeMatch, maybeCallNa
1262
1393
 
1263
1394
  /***/ }),
1264
1395
 
1265
- /***/ "4841":
1396
+ /***/ "4840":
1266
1397
  /***/ (function(module, exports, __webpack_require__) {
1267
1398
 
1268
- // style-loader: Adds some css to the DOM by adding a <style> tag
1399
+ var anObject = __webpack_require__("825a");
1400
+ var aConstructor = __webpack_require__("5087");
1401
+ var wellKnownSymbol = __webpack_require__("b622");
1402
+
1403
+ var SPECIES = wellKnownSymbol('species');
1404
+
1405
+ // `SpeciesConstructor` abstract operation
1406
+ // https://tc39.es/ecma262/#sec-speciesconstructor
1407
+ module.exports = function (O, defaultConstructor) {
1408
+ var C = anObject(O).constructor;
1409
+ var S;
1410
+ return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aConstructor(S);
1411
+ };
1269
1412
 
1270
- // load the styles
1271
- var content = __webpack_require__("3083");
1272
- if(content.__esModule) content = content.default;
1273
- if(typeof content === 'string') content = [[module.i, content, '']];
1274
- if(content.locals) module.exports = content.locals;
1275
- // add the styles to the DOM
1276
- var add = __webpack_require__("499e").default
1277
- var update = add("12e55520", content, true, {"sourceMap":false,"shadowMode":false});
1278
1413
 
1279
1414
  /***/ }),
1280
1415
 
@@ -1882,6 +2017,24 @@ module.exports = (FAILS_ON_PRIMITIVES || ARRAY_BUFFER_NON_EXTENSIBLE) ? function
1882
2017
  } : $isExtensible;
1883
2018
 
1884
2019
 
2020
+ /***/ }),
2021
+
2022
+ /***/ "5087":
2023
+ /***/ (function(module, exports, __webpack_require__) {
2024
+
2025
+ var global = __webpack_require__("da84");
2026
+ var isConstructor = __webpack_require__("68ee");
2027
+ var tryToString = __webpack_require__("0d51");
2028
+
2029
+ var TypeError = global.TypeError;
2030
+
2031
+ // `Assert: IsConstructor(argument) is true`
2032
+ module.exports = function (argument) {
2033
+ if (isConstructor(argument)) return argument;
2034
+ throw TypeError(tryToString(argument) + ' is not a constructor');
2035
+ };
2036
+
2037
+
1885
2038
  /***/ }),
1886
2039
 
1887
2040
  /***/ "50c4":
@@ -2070,6 +2223,25 @@ module.exports = {
2070
2223
  };
2071
2224
 
2072
2225
 
2226
+ /***/ }),
2227
+
2228
+ /***/ "605d":
2229
+ /***/ (function(module, exports, __webpack_require__) {
2230
+
2231
+ var classof = __webpack_require__("c6b6");
2232
+ var global = __webpack_require__("da84");
2233
+
2234
+ module.exports = classof(global.process) == 'process';
2235
+
2236
+
2237
+ /***/ }),
2238
+
2239
+ /***/ "6069":
2240
+ /***/ (function(module, exports) {
2241
+
2242
+ module.exports = typeof window == 'object';
2243
+
2244
+
2073
2245
  /***/ }),
2074
2246
 
2075
2247
  /***/ "6547":
@@ -2683,6 +2855,22 @@ module.exports = function (NAME) {
2683
2855
  };
2684
2856
 
2685
2857
 
2858
+ /***/ }),
2859
+
2860
+ /***/ "74ae":
2861
+ /***/ (function(module, exports, __webpack_require__) {
2862
+
2863
+ // style-loader: Adds some css to the DOM by adding a <style> tag
2864
+
2865
+ // load the styles
2866
+ var content = __webpack_require__("e9a6");
2867
+ if(content.__esModule) content = content.default;
2868
+ if(typeof content === 'string') content = [[module.i, content, '']];
2869
+ if(content.locals) module.exports = content.locals;
2870
+ // add the styles to the DOM
2871
+ var add = __webpack_require__("499e").default
2872
+ var update = add("46a0eef0", content, true, {"sourceMap":false,"shadowMode":false});
2873
+
2686
2874
  /***/ }),
2687
2875
 
2688
2876
  /***/ "7839":
@@ -3358,13 +3546,763 @@ module.exports = isForced;
3358
3546
 
3359
3547
  /***/ }),
3360
3548
 
3361
- /***/ "9810":
3362
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
3549
+ /***/ "96cf":
3550
+ /***/ (function(module, exports, __webpack_require__) {
3363
3551
 
3364
- "use strict";
3365
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_7_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_gant_board_vue_vue_type_style_index_0_id_7a0dcb1e_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("4841");
3366
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_7_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_gant_board_vue_vue_type_style_index_0_id_7a0dcb1e_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_7_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_gant_board_vue_vue_type_style_index_0_id_7a0dcb1e_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__);
3367
- /* unused harmony reexport * */
3552
+ /**
3553
+ * Copyright (c) 2014-present, Facebook, Inc.
3554
+ *
3555
+ * This source code is licensed under the MIT license found in the
3556
+ * LICENSE file in the root directory of this source tree.
3557
+ */
3558
+
3559
+ var runtime = (function (exports) {
3560
+ "use strict";
3561
+
3562
+ var Op = Object.prototype;
3563
+ var hasOwn = Op.hasOwnProperty;
3564
+ var undefined; // More compressible than void 0.
3565
+ var $Symbol = typeof Symbol === "function" ? Symbol : {};
3566
+ var iteratorSymbol = $Symbol.iterator || "@@iterator";
3567
+ var asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator";
3568
+ var toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
3569
+
3570
+ function define(obj, key, value) {
3571
+ Object.defineProperty(obj, key, {
3572
+ value: value,
3573
+ enumerable: true,
3574
+ configurable: true,
3575
+ writable: true
3576
+ });
3577
+ return obj[key];
3578
+ }
3579
+ try {
3580
+ // IE 8 has a broken Object.defineProperty that only works on DOM objects.
3581
+ define({}, "");
3582
+ } catch (err) {
3583
+ define = function(obj, key, value) {
3584
+ return obj[key] = value;
3585
+ };
3586
+ }
3587
+
3588
+ function wrap(innerFn, outerFn, self, tryLocsList) {
3589
+ // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.
3590
+ var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;
3591
+ var generator = Object.create(protoGenerator.prototype);
3592
+ var context = new Context(tryLocsList || []);
3593
+
3594
+ // The ._invoke method unifies the implementations of the .next,
3595
+ // .throw, and .return methods.
3596
+ generator._invoke = makeInvokeMethod(innerFn, self, context);
3597
+
3598
+ return generator;
3599
+ }
3600
+ exports.wrap = wrap;
3601
+
3602
+ // Try/catch helper to minimize deoptimizations. Returns a completion
3603
+ // record like context.tryEntries[i].completion. This interface could
3604
+ // have been (and was previously) designed to take a closure to be
3605
+ // invoked without arguments, but in all the cases we care about we
3606
+ // already have an existing method we want to call, so there's no need
3607
+ // to create a new function object. We can even get away with assuming
3608
+ // the method takes exactly one argument, since that happens to be true
3609
+ // in every case, so we don't have to touch the arguments object. The
3610
+ // only additional allocation required is the completion record, which
3611
+ // has a stable shape and so hopefully should be cheap to allocate.
3612
+ function tryCatch(fn, obj, arg) {
3613
+ try {
3614
+ return { type: "normal", arg: fn.call(obj, arg) };
3615
+ } catch (err) {
3616
+ return { type: "throw", arg: err };
3617
+ }
3618
+ }
3619
+
3620
+ var GenStateSuspendedStart = "suspendedStart";
3621
+ var GenStateSuspendedYield = "suspendedYield";
3622
+ var GenStateExecuting = "executing";
3623
+ var GenStateCompleted = "completed";
3624
+
3625
+ // Returning this object from the innerFn has the same effect as
3626
+ // breaking out of the dispatch switch statement.
3627
+ var ContinueSentinel = {};
3628
+
3629
+ // Dummy constructor functions that we use as the .constructor and
3630
+ // .constructor.prototype properties for functions that return Generator
3631
+ // objects. For full spec compliance, you may wish to configure your
3632
+ // minifier not to mangle the names of these two functions.
3633
+ function Generator() {}
3634
+ function GeneratorFunction() {}
3635
+ function GeneratorFunctionPrototype() {}
3636
+
3637
+ // This is a polyfill for %IteratorPrototype% for environments that
3638
+ // don't natively support it.
3639
+ var IteratorPrototype = {};
3640
+ define(IteratorPrototype, iteratorSymbol, function () {
3641
+ return this;
3642
+ });
3643
+
3644
+ var getProto = Object.getPrototypeOf;
3645
+ var NativeIteratorPrototype = getProto && getProto(getProto(values([])));
3646
+ if (NativeIteratorPrototype &&
3647
+ NativeIteratorPrototype !== Op &&
3648
+ hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {
3649
+ // This environment has a native %IteratorPrototype%; use it instead
3650
+ // of the polyfill.
3651
+ IteratorPrototype = NativeIteratorPrototype;
3652
+ }
3653
+
3654
+ var Gp = GeneratorFunctionPrototype.prototype =
3655
+ Generator.prototype = Object.create(IteratorPrototype);
3656
+ GeneratorFunction.prototype = GeneratorFunctionPrototype;
3657
+ define(Gp, "constructor", GeneratorFunctionPrototype);
3658
+ define(GeneratorFunctionPrototype, "constructor", GeneratorFunction);
3659
+ GeneratorFunction.displayName = define(
3660
+ GeneratorFunctionPrototype,
3661
+ toStringTagSymbol,
3662
+ "GeneratorFunction"
3663
+ );
3664
+
3665
+ // Helper for defining the .next, .throw, and .return methods of the
3666
+ // Iterator interface in terms of a single ._invoke method.
3667
+ function defineIteratorMethods(prototype) {
3668
+ ["next", "throw", "return"].forEach(function(method) {
3669
+ define(prototype, method, function(arg) {
3670
+ return this._invoke(method, arg);
3671
+ });
3672
+ });
3673
+ }
3674
+
3675
+ exports.isGeneratorFunction = function(genFun) {
3676
+ var ctor = typeof genFun === "function" && genFun.constructor;
3677
+ return ctor
3678
+ ? ctor === GeneratorFunction ||
3679
+ // For the native GeneratorFunction constructor, the best we can
3680
+ // do is to check its .name property.
3681
+ (ctor.displayName || ctor.name) === "GeneratorFunction"
3682
+ : false;
3683
+ };
3684
+
3685
+ exports.mark = function(genFun) {
3686
+ if (Object.setPrototypeOf) {
3687
+ Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);
3688
+ } else {
3689
+ genFun.__proto__ = GeneratorFunctionPrototype;
3690
+ define(genFun, toStringTagSymbol, "GeneratorFunction");
3691
+ }
3692
+ genFun.prototype = Object.create(Gp);
3693
+ return genFun;
3694
+ };
3695
+
3696
+ // Within the body of any async function, `await x` is transformed to
3697
+ // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test
3698
+ // `hasOwn.call(value, "__await")` to determine if the yielded value is
3699
+ // meant to be awaited.
3700
+ exports.awrap = function(arg) {
3701
+ return { __await: arg };
3702
+ };
3703
+
3704
+ function AsyncIterator(generator, PromiseImpl) {
3705
+ function invoke(method, arg, resolve, reject) {
3706
+ var record = tryCatch(generator[method], generator, arg);
3707
+ if (record.type === "throw") {
3708
+ reject(record.arg);
3709
+ } else {
3710
+ var result = record.arg;
3711
+ var value = result.value;
3712
+ if (value &&
3713
+ typeof value === "object" &&
3714
+ hasOwn.call(value, "__await")) {
3715
+ return PromiseImpl.resolve(value.__await).then(function(value) {
3716
+ invoke("next", value, resolve, reject);
3717
+ }, function(err) {
3718
+ invoke("throw", err, resolve, reject);
3719
+ });
3720
+ }
3721
+
3722
+ return PromiseImpl.resolve(value).then(function(unwrapped) {
3723
+ // When a yielded Promise is resolved, its final value becomes
3724
+ // the .value of the Promise<{value,done}> result for the
3725
+ // current iteration.
3726
+ result.value = unwrapped;
3727
+ resolve(result);
3728
+ }, function(error) {
3729
+ // If a rejected Promise was yielded, throw the rejection back
3730
+ // into the async generator function so it can be handled there.
3731
+ return invoke("throw", error, resolve, reject);
3732
+ });
3733
+ }
3734
+ }
3735
+
3736
+ var previousPromise;
3737
+
3738
+ function enqueue(method, arg) {
3739
+ function callInvokeWithMethodAndArg() {
3740
+ return new PromiseImpl(function(resolve, reject) {
3741
+ invoke(method, arg, resolve, reject);
3742
+ });
3743
+ }
3744
+
3745
+ return previousPromise =
3746
+ // If enqueue has been called before, then we want to wait until
3747
+ // all previous Promises have been resolved before calling invoke,
3748
+ // so that results are always delivered in the correct order. If
3749
+ // enqueue has not been called before, then it is important to
3750
+ // call invoke immediately, without waiting on a callback to fire,
3751
+ // so that the async generator function has the opportunity to do
3752
+ // any necessary setup in a predictable way. This predictability
3753
+ // is why the Promise constructor synchronously invokes its
3754
+ // executor callback, and why async functions synchronously
3755
+ // execute code before the first await. Since we implement simple
3756
+ // async functions in terms of async generators, it is especially
3757
+ // important to get this right, even though it requires care.
3758
+ previousPromise ? previousPromise.then(
3759
+ callInvokeWithMethodAndArg,
3760
+ // Avoid propagating failures to Promises returned by later
3761
+ // invocations of the iterator.
3762
+ callInvokeWithMethodAndArg
3763
+ ) : callInvokeWithMethodAndArg();
3764
+ }
3765
+
3766
+ // Define the unified helper method that is used to implement .next,
3767
+ // .throw, and .return (see defineIteratorMethods).
3768
+ this._invoke = enqueue;
3769
+ }
3770
+
3771
+ defineIteratorMethods(AsyncIterator.prototype);
3772
+ define(AsyncIterator.prototype, asyncIteratorSymbol, function () {
3773
+ return this;
3774
+ });
3775
+ exports.AsyncIterator = AsyncIterator;
3776
+
3777
+ // Note that simple async functions are implemented on top of
3778
+ // AsyncIterator objects; they just return a Promise for the value of
3779
+ // the final result produced by the iterator.
3780
+ exports.async = function(innerFn, outerFn, self, tryLocsList, PromiseImpl) {
3781
+ if (PromiseImpl === void 0) PromiseImpl = Promise;
3782
+
3783
+ var iter = new AsyncIterator(
3784
+ wrap(innerFn, outerFn, self, tryLocsList),
3785
+ PromiseImpl
3786
+ );
3787
+
3788
+ return exports.isGeneratorFunction(outerFn)
3789
+ ? iter // If outerFn is a generator, return the full iterator.
3790
+ : iter.next().then(function(result) {
3791
+ return result.done ? result.value : iter.next();
3792
+ });
3793
+ };
3794
+
3795
+ function makeInvokeMethod(innerFn, self, context) {
3796
+ var state = GenStateSuspendedStart;
3797
+
3798
+ return function invoke(method, arg) {
3799
+ if (state === GenStateExecuting) {
3800
+ throw new Error("Generator is already running");
3801
+ }
3802
+
3803
+ if (state === GenStateCompleted) {
3804
+ if (method === "throw") {
3805
+ throw arg;
3806
+ }
3807
+
3808
+ // Be forgiving, per 25.3.3.3.3 of the spec:
3809
+ // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume
3810
+ return doneResult();
3811
+ }
3812
+
3813
+ context.method = method;
3814
+ context.arg = arg;
3815
+
3816
+ while (true) {
3817
+ var delegate = context.delegate;
3818
+ if (delegate) {
3819
+ var delegateResult = maybeInvokeDelegate(delegate, context);
3820
+ if (delegateResult) {
3821
+ if (delegateResult === ContinueSentinel) continue;
3822
+ return delegateResult;
3823
+ }
3824
+ }
3825
+
3826
+ if (context.method === "next") {
3827
+ // Setting context._sent for legacy support of Babel's
3828
+ // function.sent implementation.
3829
+ context.sent = context._sent = context.arg;
3830
+
3831
+ } else if (context.method === "throw") {
3832
+ if (state === GenStateSuspendedStart) {
3833
+ state = GenStateCompleted;
3834
+ throw context.arg;
3835
+ }
3836
+
3837
+ context.dispatchException(context.arg);
3838
+
3839
+ } else if (context.method === "return") {
3840
+ context.abrupt("return", context.arg);
3841
+ }
3842
+
3843
+ state = GenStateExecuting;
3844
+
3845
+ var record = tryCatch(innerFn, self, context);
3846
+ if (record.type === "normal") {
3847
+ // If an exception is thrown from innerFn, we leave state ===
3848
+ // GenStateExecuting and loop back for another invocation.
3849
+ state = context.done
3850
+ ? GenStateCompleted
3851
+ : GenStateSuspendedYield;
3852
+
3853
+ if (record.arg === ContinueSentinel) {
3854
+ continue;
3855
+ }
3856
+
3857
+ return {
3858
+ value: record.arg,
3859
+ done: context.done
3860
+ };
3861
+
3862
+ } else if (record.type === "throw") {
3863
+ state = GenStateCompleted;
3864
+ // Dispatch the exception by looping back around to the
3865
+ // context.dispatchException(context.arg) call above.
3866
+ context.method = "throw";
3867
+ context.arg = record.arg;
3868
+ }
3869
+ }
3870
+ };
3871
+ }
3872
+
3873
+ // Call delegate.iterator[context.method](context.arg) and handle the
3874
+ // result, either by returning a { value, done } result from the
3875
+ // delegate iterator, or by modifying context.method and context.arg,
3876
+ // setting context.delegate to null, and returning the ContinueSentinel.
3877
+ function maybeInvokeDelegate(delegate, context) {
3878
+ var method = delegate.iterator[context.method];
3879
+ if (method === undefined) {
3880
+ // A .throw or .return when the delegate iterator has no .throw
3881
+ // method always terminates the yield* loop.
3882
+ context.delegate = null;
3883
+
3884
+ if (context.method === "throw") {
3885
+ // Note: ["return"] must be used for ES3 parsing compatibility.
3886
+ if (delegate.iterator["return"]) {
3887
+ // If the delegate iterator has a return method, give it a
3888
+ // chance to clean up.
3889
+ context.method = "return";
3890
+ context.arg = undefined;
3891
+ maybeInvokeDelegate(delegate, context);
3892
+
3893
+ if (context.method === "throw") {
3894
+ // If maybeInvokeDelegate(context) changed context.method from
3895
+ // "return" to "throw", let that override the TypeError below.
3896
+ return ContinueSentinel;
3897
+ }
3898
+ }
3899
+
3900
+ context.method = "throw";
3901
+ context.arg = new TypeError(
3902
+ "The iterator does not provide a 'throw' method");
3903
+ }
3904
+
3905
+ return ContinueSentinel;
3906
+ }
3907
+
3908
+ var record = tryCatch(method, delegate.iterator, context.arg);
3909
+
3910
+ if (record.type === "throw") {
3911
+ context.method = "throw";
3912
+ context.arg = record.arg;
3913
+ context.delegate = null;
3914
+ return ContinueSentinel;
3915
+ }
3916
+
3917
+ var info = record.arg;
3918
+
3919
+ if (! info) {
3920
+ context.method = "throw";
3921
+ context.arg = new TypeError("iterator result is not an object");
3922
+ context.delegate = null;
3923
+ return ContinueSentinel;
3924
+ }
3925
+
3926
+ if (info.done) {
3927
+ // Assign the result of the finished delegate to the temporary
3928
+ // variable specified by delegate.resultName (see delegateYield).
3929
+ context[delegate.resultName] = info.value;
3930
+
3931
+ // Resume execution at the desired location (see delegateYield).
3932
+ context.next = delegate.nextLoc;
3933
+
3934
+ // If context.method was "throw" but the delegate handled the
3935
+ // exception, let the outer generator proceed normally. If
3936
+ // context.method was "next", forget context.arg since it has been
3937
+ // "consumed" by the delegate iterator. If context.method was
3938
+ // "return", allow the original .return call to continue in the
3939
+ // outer generator.
3940
+ if (context.method !== "return") {
3941
+ context.method = "next";
3942
+ context.arg = undefined;
3943
+ }
3944
+
3945
+ } else {
3946
+ // Re-yield the result returned by the delegate method.
3947
+ return info;
3948
+ }
3949
+
3950
+ // The delegate iterator is finished, so forget it and continue with
3951
+ // the outer generator.
3952
+ context.delegate = null;
3953
+ return ContinueSentinel;
3954
+ }
3955
+
3956
+ // Define Generator.prototype.{next,throw,return} in terms of the
3957
+ // unified ._invoke helper method.
3958
+ defineIteratorMethods(Gp);
3959
+
3960
+ define(Gp, toStringTagSymbol, "Generator");
3961
+
3962
+ // A Generator should always return itself as the iterator object when the
3963
+ // @@iterator function is called on it. Some browsers' implementations of the
3964
+ // iterator prototype chain incorrectly implement this, causing the Generator
3965
+ // object to not be returned from this call. This ensures that doesn't happen.
3966
+ // See https://github.com/facebook/regenerator/issues/274 for more details.
3967
+ define(Gp, iteratorSymbol, function() {
3968
+ return this;
3969
+ });
3970
+
3971
+ define(Gp, "toString", function() {
3972
+ return "[object Generator]";
3973
+ });
3974
+
3975
+ function pushTryEntry(locs) {
3976
+ var entry = { tryLoc: locs[0] };
3977
+
3978
+ if (1 in locs) {
3979
+ entry.catchLoc = locs[1];
3980
+ }
3981
+
3982
+ if (2 in locs) {
3983
+ entry.finallyLoc = locs[2];
3984
+ entry.afterLoc = locs[3];
3985
+ }
3986
+
3987
+ this.tryEntries.push(entry);
3988
+ }
3989
+
3990
+ function resetTryEntry(entry) {
3991
+ var record = entry.completion || {};
3992
+ record.type = "normal";
3993
+ delete record.arg;
3994
+ entry.completion = record;
3995
+ }
3996
+
3997
+ function Context(tryLocsList) {
3998
+ // The root entry object (effectively a try statement without a catch
3999
+ // or a finally block) gives us a place to store values thrown from
4000
+ // locations where there is no enclosing try statement.
4001
+ this.tryEntries = [{ tryLoc: "root" }];
4002
+ tryLocsList.forEach(pushTryEntry, this);
4003
+ this.reset(true);
4004
+ }
4005
+
4006
+ exports.keys = function(object) {
4007
+ var keys = [];
4008
+ for (var key in object) {
4009
+ keys.push(key);
4010
+ }
4011
+ keys.reverse();
4012
+
4013
+ // Rather than returning an object with a next method, we keep
4014
+ // things simple and return the next function itself.
4015
+ return function next() {
4016
+ while (keys.length) {
4017
+ var key = keys.pop();
4018
+ if (key in object) {
4019
+ next.value = key;
4020
+ next.done = false;
4021
+ return next;
4022
+ }
4023
+ }
4024
+
4025
+ // To avoid creating an additional object, we just hang the .value
4026
+ // and .done properties off the next function object itself. This
4027
+ // also ensures that the minifier will not anonymize the function.
4028
+ next.done = true;
4029
+ return next;
4030
+ };
4031
+ };
4032
+
4033
+ function values(iterable) {
4034
+ if (iterable) {
4035
+ var iteratorMethod = iterable[iteratorSymbol];
4036
+ if (iteratorMethod) {
4037
+ return iteratorMethod.call(iterable);
4038
+ }
4039
+
4040
+ if (typeof iterable.next === "function") {
4041
+ return iterable;
4042
+ }
4043
+
4044
+ if (!isNaN(iterable.length)) {
4045
+ var i = -1, next = function next() {
4046
+ while (++i < iterable.length) {
4047
+ if (hasOwn.call(iterable, i)) {
4048
+ next.value = iterable[i];
4049
+ next.done = false;
4050
+ return next;
4051
+ }
4052
+ }
4053
+
4054
+ next.value = undefined;
4055
+ next.done = true;
4056
+
4057
+ return next;
4058
+ };
4059
+
4060
+ return next.next = next;
4061
+ }
4062
+ }
4063
+
4064
+ // Return an iterator with no values.
4065
+ return { next: doneResult };
4066
+ }
4067
+ exports.values = values;
4068
+
4069
+ function doneResult() {
4070
+ return { value: undefined, done: true };
4071
+ }
4072
+
4073
+ Context.prototype = {
4074
+ constructor: Context,
4075
+
4076
+ reset: function(skipTempReset) {
4077
+ this.prev = 0;
4078
+ this.next = 0;
4079
+ // Resetting context._sent for legacy support of Babel's
4080
+ // function.sent implementation.
4081
+ this.sent = this._sent = undefined;
4082
+ this.done = false;
4083
+ this.delegate = null;
4084
+
4085
+ this.method = "next";
4086
+ this.arg = undefined;
4087
+
4088
+ this.tryEntries.forEach(resetTryEntry);
4089
+
4090
+ if (!skipTempReset) {
4091
+ for (var name in this) {
4092
+ // Not sure about the optimal order of these conditions:
4093
+ if (name.charAt(0) === "t" &&
4094
+ hasOwn.call(this, name) &&
4095
+ !isNaN(+name.slice(1))) {
4096
+ this[name] = undefined;
4097
+ }
4098
+ }
4099
+ }
4100
+ },
4101
+
4102
+ stop: function() {
4103
+ this.done = true;
4104
+
4105
+ var rootEntry = this.tryEntries[0];
4106
+ var rootRecord = rootEntry.completion;
4107
+ if (rootRecord.type === "throw") {
4108
+ throw rootRecord.arg;
4109
+ }
4110
+
4111
+ return this.rval;
4112
+ },
4113
+
4114
+ dispatchException: function(exception) {
4115
+ if (this.done) {
4116
+ throw exception;
4117
+ }
4118
+
4119
+ var context = this;
4120
+ function handle(loc, caught) {
4121
+ record.type = "throw";
4122
+ record.arg = exception;
4123
+ context.next = loc;
4124
+
4125
+ if (caught) {
4126
+ // If the dispatched exception was caught by a catch block,
4127
+ // then let that catch block handle the exception normally.
4128
+ context.method = "next";
4129
+ context.arg = undefined;
4130
+ }
4131
+
4132
+ return !! caught;
4133
+ }
4134
+
4135
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
4136
+ var entry = this.tryEntries[i];
4137
+ var record = entry.completion;
4138
+
4139
+ if (entry.tryLoc === "root") {
4140
+ // Exception thrown outside of any try block that could handle
4141
+ // it, so set the completion value of the entire function to
4142
+ // throw the exception.
4143
+ return handle("end");
4144
+ }
4145
+
4146
+ if (entry.tryLoc <= this.prev) {
4147
+ var hasCatch = hasOwn.call(entry, "catchLoc");
4148
+ var hasFinally = hasOwn.call(entry, "finallyLoc");
4149
+
4150
+ if (hasCatch && hasFinally) {
4151
+ if (this.prev < entry.catchLoc) {
4152
+ return handle(entry.catchLoc, true);
4153
+ } else if (this.prev < entry.finallyLoc) {
4154
+ return handle(entry.finallyLoc);
4155
+ }
4156
+
4157
+ } else if (hasCatch) {
4158
+ if (this.prev < entry.catchLoc) {
4159
+ return handle(entry.catchLoc, true);
4160
+ }
4161
+
4162
+ } else if (hasFinally) {
4163
+ if (this.prev < entry.finallyLoc) {
4164
+ return handle(entry.finallyLoc);
4165
+ }
4166
+
4167
+ } else {
4168
+ throw new Error("try statement without catch or finally");
4169
+ }
4170
+ }
4171
+ }
4172
+ },
4173
+
4174
+ abrupt: function(type, arg) {
4175
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
4176
+ var entry = this.tryEntries[i];
4177
+ if (entry.tryLoc <= this.prev &&
4178
+ hasOwn.call(entry, "finallyLoc") &&
4179
+ this.prev < entry.finallyLoc) {
4180
+ var finallyEntry = entry;
4181
+ break;
4182
+ }
4183
+ }
4184
+
4185
+ if (finallyEntry &&
4186
+ (type === "break" ||
4187
+ type === "continue") &&
4188
+ finallyEntry.tryLoc <= arg &&
4189
+ arg <= finallyEntry.finallyLoc) {
4190
+ // Ignore the finally entry if control is not jumping to a
4191
+ // location outside the try/catch block.
4192
+ finallyEntry = null;
4193
+ }
4194
+
4195
+ var record = finallyEntry ? finallyEntry.completion : {};
4196
+ record.type = type;
4197
+ record.arg = arg;
4198
+
4199
+ if (finallyEntry) {
4200
+ this.method = "next";
4201
+ this.next = finallyEntry.finallyLoc;
4202
+ return ContinueSentinel;
4203
+ }
4204
+
4205
+ return this.complete(record);
4206
+ },
4207
+
4208
+ complete: function(record, afterLoc) {
4209
+ if (record.type === "throw") {
4210
+ throw record.arg;
4211
+ }
4212
+
4213
+ if (record.type === "break" ||
4214
+ record.type === "continue") {
4215
+ this.next = record.arg;
4216
+ } else if (record.type === "return") {
4217
+ this.rval = this.arg = record.arg;
4218
+ this.method = "return";
4219
+ this.next = "end";
4220
+ } else if (record.type === "normal" && afterLoc) {
4221
+ this.next = afterLoc;
4222
+ }
4223
+
4224
+ return ContinueSentinel;
4225
+ },
4226
+
4227
+ finish: function(finallyLoc) {
4228
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
4229
+ var entry = this.tryEntries[i];
4230
+ if (entry.finallyLoc === finallyLoc) {
4231
+ this.complete(entry.completion, entry.afterLoc);
4232
+ resetTryEntry(entry);
4233
+ return ContinueSentinel;
4234
+ }
4235
+ }
4236
+ },
4237
+
4238
+ "catch": function(tryLoc) {
4239
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
4240
+ var entry = this.tryEntries[i];
4241
+ if (entry.tryLoc === tryLoc) {
4242
+ var record = entry.completion;
4243
+ if (record.type === "throw") {
4244
+ var thrown = record.arg;
4245
+ resetTryEntry(entry);
4246
+ }
4247
+ return thrown;
4248
+ }
4249
+ }
4250
+
4251
+ // The context.catch method must only be called with a location
4252
+ // argument that corresponds to a known catch block.
4253
+ throw new Error("illegal catch attempt");
4254
+ },
4255
+
4256
+ delegateYield: function(iterable, resultName, nextLoc) {
4257
+ this.delegate = {
4258
+ iterator: values(iterable),
4259
+ resultName: resultName,
4260
+ nextLoc: nextLoc
4261
+ };
4262
+
4263
+ if (this.method === "next") {
4264
+ // Deliberately forget the last sent value so that we don't
4265
+ // accidentally pass it on to the delegate.
4266
+ this.arg = undefined;
4267
+ }
4268
+
4269
+ return ContinueSentinel;
4270
+ }
4271
+ };
4272
+
4273
+ // Regardless of whether this script is executing as a CommonJS module
4274
+ // or not, return the runtime object so that we can declare the variable
4275
+ // regeneratorRuntime in the outer scope, which allows this module to be
4276
+ // injected easily by `bin/regenerator --include-runtime script.js`.
4277
+ return exports;
4278
+
4279
+ }(
4280
+ // If this script is executing as a CommonJS module, use module.exports
4281
+ // as the regeneratorRuntime namespace. Otherwise create a new empty
4282
+ // object. Either way, the resulting object will be used to initialize
4283
+ // the regeneratorRuntime variable at the top of this file.
4284
+ true ? module.exports : undefined
4285
+ ));
4286
+
4287
+ try {
4288
+ regeneratorRuntime = runtime;
4289
+ } catch (accidentalStrictMode) {
4290
+ // This module should not be running in strict mode, so the above
4291
+ // assignment should always work unless something is misconfigured. Just
4292
+ // in case runtime.js accidentally runs in strict mode, in modern engines
4293
+ // we can explicitly access globalThis. In older engines we can escape
4294
+ // strict mode using a global Function call. This could conceivably fail
4295
+ // if a Content Security Policy forbids using Function, but in that case
4296
+ // the proper solution is to fix the accidental strict mode problem. If
4297
+ // you've misconfigured your bundler to force strict mode and applied a
4298
+ // CSP to forbid Function, and you're not willing to fix either of those
4299
+ // problems, please detail your unique predicament in a GitHub issue.
4300
+ if (typeof globalThis === "object") {
4301
+ globalThis.regeneratorRuntime = runtime;
4302
+ } else {
4303
+ Function("r", "regeneratorRuntime = r")(runtime);
4304
+ }
4305
+ }
3368
4306
 
3369
4307
 
3370
4308
  /***/ }),
@@ -3650,6 +4588,16 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
3650
4588
  });
3651
4589
 
3652
4590
 
4591
+ /***/ }),
4592
+
4593
+ /***/ "a4b4":
4594
+ /***/ (function(module, exports, __webpack_require__) {
4595
+
4596
+ var userAgent = __webpack_require__("342f");
4597
+
4598
+ module.exports = /web0s(?!.*chrome)/i.test(userAgent);
4599
+
4600
+
3653
4601
  /***/ }),
3654
4602
 
3655
4603
  /***/ "a4d3":
@@ -4020,6 +4968,17 @@ module.exports = function (METHOD_NAME, argument) {
4020
4968
  };
4021
4969
 
4022
4970
 
4971
+ /***/ }),
4972
+
4973
+ /***/ "a9a2":
4974
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
4975
+
4976
+ "use strict";
4977
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_7_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_gant_board_vue_vue_type_style_index_0_id_adbac98a_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("74ae");
4978
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_7_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_gant_board_vue_vue_type_style_index_0_id_adbac98a_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_7_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_gant_board_vue_vue_type_style_index_0_id_adbac98a_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__);
4979
+ /* unused harmony reexport * */
4980
+
4981
+
4023
4982
  /***/ }),
4024
4983
 
4025
4984
  /***/ "ac1f":
@@ -4201,21 +5160,113 @@ var nameRE = /^\s*function ([^ (]*)/;
4201
5160
  var regExpExec = uncurryThis(nameRE.exec);
4202
5161
  var NAME = 'name';
4203
5162
 
4204
- // Function instances `.name` property
4205
- // https://tc39.es/ecma262/#sec-function-instances-name
4206
- if (DESCRIPTORS && !FUNCTION_NAME_EXISTS) {
4207
- defineProperty(FunctionPrototype, NAME, {
4208
- configurable: true,
4209
- get: function () {
5163
+ // Function instances `.name` property
5164
+ // https://tc39.es/ecma262/#sec-function-instances-name
5165
+ if (DESCRIPTORS && !FUNCTION_NAME_EXISTS) {
5166
+ defineProperty(FunctionPrototype, NAME, {
5167
+ configurable: true,
5168
+ get: function () {
5169
+ try {
5170
+ return regExpExec(nameRE, functionToString(this))[1];
5171
+ } catch (error) {
5172
+ return '';
5173
+ }
5174
+ }
5175
+ });
5176
+ }
5177
+
5178
+
5179
+ /***/ }),
5180
+
5181
+ /***/ "b575":
5182
+ /***/ (function(module, exports, __webpack_require__) {
5183
+
5184
+ var global = __webpack_require__("da84");
5185
+ var bind = __webpack_require__("0366");
5186
+ var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
5187
+ var macrotask = __webpack_require__("2cf4").set;
5188
+ var IS_IOS = __webpack_require__("1cdc");
5189
+ var IS_IOS_PEBBLE = __webpack_require__("d4c3");
5190
+ var IS_WEBOS_WEBKIT = __webpack_require__("a4b4");
5191
+ var IS_NODE = __webpack_require__("605d");
5192
+
5193
+ var MutationObserver = global.MutationObserver || global.WebKitMutationObserver;
5194
+ var document = global.document;
5195
+ var process = global.process;
5196
+ var Promise = global.Promise;
5197
+ // Node.js 11 shows ExperimentalWarning on getting `queueMicrotask`
5198
+ var queueMicrotaskDescriptor = getOwnPropertyDescriptor(global, 'queueMicrotask');
5199
+ var queueMicrotask = queueMicrotaskDescriptor && queueMicrotaskDescriptor.value;
5200
+
5201
+ var flush, head, last, notify, toggle, node, promise, then;
5202
+
5203
+ // modern engines have queueMicrotask method
5204
+ if (!queueMicrotask) {
5205
+ flush = function () {
5206
+ var parent, fn;
5207
+ if (IS_NODE && (parent = process.domain)) parent.exit();
5208
+ while (head) {
5209
+ fn = head.fn;
5210
+ head = head.next;
4210
5211
  try {
4211
- return regExpExec(nameRE, functionToString(this))[1];
5212
+ fn();
4212
5213
  } catch (error) {
4213
- return '';
5214
+ if (head) notify();
5215
+ else last = undefined;
5216
+ throw error;
4214
5217
  }
4215
- }
4216
- });
5218
+ } last = undefined;
5219
+ if (parent) parent.enter();
5220
+ };
5221
+
5222
+ // browsers with MutationObserver, except iOS - https://github.com/zloirock/core-js/issues/339
5223
+ // also except WebOS Webkit https://github.com/zloirock/core-js/issues/898
5224
+ if (!IS_IOS && !IS_NODE && !IS_WEBOS_WEBKIT && MutationObserver && document) {
5225
+ toggle = true;
5226
+ node = document.createTextNode('');
5227
+ new MutationObserver(flush).observe(node, { characterData: true });
5228
+ notify = function () {
5229
+ node.data = toggle = !toggle;
5230
+ };
5231
+ // environments with maybe non-completely correct, but existent Promise
5232
+ } else if (!IS_IOS_PEBBLE && Promise && Promise.resolve) {
5233
+ // Promise.resolve without an argument throws an error in LG WebOS 2
5234
+ promise = Promise.resolve(undefined);
5235
+ // workaround of WebKit ~ iOS Safari 10.1 bug
5236
+ promise.constructor = Promise;
5237
+ then = bind(promise.then, promise);
5238
+ notify = function () {
5239
+ then(flush);
5240
+ };
5241
+ // Node.js without promises
5242
+ } else if (IS_NODE) {
5243
+ notify = function () {
5244
+ process.nextTick(flush);
5245
+ };
5246
+ // for other environments - macrotask based on:
5247
+ // - setImmediate
5248
+ // - MessageChannel
5249
+ // - window.postMessag
5250
+ // - onreadystatechange
5251
+ // - setTimeout
5252
+ } else {
5253
+ // strange IE + webpack dev server bug - use .bind(global)
5254
+ macrotask = bind(macrotask, global);
5255
+ notify = function () {
5256
+ macrotask(flush);
5257
+ };
5258
+ }
4217
5259
  }
4218
5260
 
5261
+ module.exports = queueMicrotask || function (fn) {
5262
+ var task = { fn: fn, next: undefined };
5263
+ if (last) last.next = task;
5264
+ if (!head) {
5265
+ head = task;
5266
+ notify();
5267
+ } last = task;
5268
+ };
5269
+
4219
5270
 
4220
5271
  /***/ }),
4221
5272
 
@@ -4551,6 +5602,25 @@ module.exports = function (it) {
4551
5602
  /* unused harmony reexport * */
4552
5603
 
4553
5604
 
5605
+ /***/ }),
5606
+
5607
+ /***/ "cdf9":
5608
+ /***/ (function(module, exports, __webpack_require__) {
5609
+
5610
+ var anObject = __webpack_require__("825a");
5611
+ var isObject = __webpack_require__("861d");
5612
+ var newPromiseCapability = __webpack_require__("f069");
5613
+
5614
+ module.exports = function (C, x) {
5615
+ anObject(C);
5616
+ if (isObject(x) && x.constructor === C) return x;
5617
+ var promiseCapability = newPromiseCapability.f(C);
5618
+ var resolve = promiseCapability.resolve;
5619
+ resolve(x);
5620
+ return promiseCapability.promise;
5621
+ };
5622
+
5623
+
4554
5624
  /***/ }),
4555
5625
 
4556
5626
  /***/ "ce4e":
@@ -4711,6 +5781,17 @@ module.exports = function (it, TAG, STATIC) {
4711
5781
  };
4712
5782
 
4713
5783
 
5784
+ /***/ }),
5785
+
5786
+ /***/ "d4c3":
5787
+ /***/ (function(module, exports, __webpack_require__) {
5788
+
5789
+ var userAgent = __webpack_require__("342f");
5790
+ var global = __webpack_require__("da84");
5791
+
5792
+ module.exports = /ipad|iphone|ipod/i.test(userAgent) && global.Pebble !== undefined;
5793
+
5794
+
4714
5795
  /***/ }),
4715
5796
 
4716
5797
  /***/ "d784":
@@ -5182,6 +6263,426 @@ var wellKnownSymbol = __webpack_require__("b622");
5182
6263
  exports.f = wellKnownSymbol;
5183
6264
 
5184
6265
 
6266
+ /***/ }),
6267
+
6268
+ /***/ "e667":
6269
+ /***/ (function(module, exports) {
6270
+
6271
+ module.exports = function (exec) {
6272
+ try {
6273
+ return { error: false, value: exec() };
6274
+ } catch (error) {
6275
+ return { error: true, value: error };
6276
+ }
6277
+ };
6278
+
6279
+
6280
+ /***/ }),
6281
+
6282
+ /***/ "e6cf":
6283
+ /***/ (function(module, exports, __webpack_require__) {
6284
+
6285
+ "use strict";
6286
+
6287
+ var $ = __webpack_require__("23e7");
6288
+ var IS_PURE = __webpack_require__("c430");
6289
+ var global = __webpack_require__("da84");
6290
+ var getBuiltIn = __webpack_require__("d066");
6291
+ var call = __webpack_require__("c65b");
6292
+ var NativePromise = __webpack_require__("fea9");
6293
+ var redefine = __webpack_require__("6eeb");
6294
+ var redefineAll = __webpack_require__("e2cc");
6295
+ var setPrototypeOf = __webpack_require__("d2bb");
6296
+ var setToStringTag = __webpack_require__("d44e");
6297
+ var setSpecies = __webpack_require__("2626");
6298
+ var aCallable = __webpack_require__("59ed");
6299
+ var isCallable = __webpack_require__("1626");
6300
+ var isObject = __webpack_require__("861d");
6301
+ var anInstance = __webpack_require__("19aa");
6302
+ var inspectSource = __webpack_require__("8925");
6303
+ var iterate = __webpack_require__("2266");
6304
+ var checkCorrectnessOfIteration = __webpack_require__("1c7e");
6305
+ var speciesConstructor = __webpack_require__("4840");
6306
+ var task = __webpack_require__("2cf4").set;
6307
+ var microtask = __webpack_require__("b575");
6308
+ var promiseResolve = __webpack_require__("cdf9");
6309
+ var hostReportErrors = __webpack_require__("44de");
6310
+ var newPromiseCapabilityModule = __webpack_require__("f069");
6311
+ var perform = __webpack_require__("e667");
6312
+ var InternalStateModule = __webpack_require__("69f3");
6313
+ var isForced = __webpack_require__("94ca");
6314
+ var wellKnownSymbol = __webpack_require__("b622");
6315
+ var IS_BROWSER = __webpack_require__("6069");
6316
+ var IS_NODE = __webpack_require__("605d");
6317
+ var V8_VERSION = __webpack_require__("2d00");
6318
+
6319
+ var SPECIES = wellKnownSymbol('species');
6320
+ var PROMISE = 'Promise';
6321
+
6322
+ var getInternalState = InternalStateModule.get;
6323
+ var setInternalState = InternalStateModule.set;
6324
+ var getInternalPromiseState = InternalStateModule.getterFor(PROMISE);
6325
+ var NativePromisePrototype = NativePromise && NativePromise.prototype;
6326
+ var PromiseConstructor = NativePromise;
6327
+ var PromisePrototype = NativePromisePrototype;
6328
+ var TypeError = global.TypeError;
6329
+ var document = global.document;
6330
+ var process = global.process;
6331
+ var newPromiseCapability = newPromiseCapabilityModule.f;
6332
+ var newGenericPromiseCapability = newPromiseCapability;
6333
+
6334
+ var DISPATCH_EVENT = !!(document && document.createEvent && global.dispatchEvent);
6335
+ var NATIVE_REJECTION_EVENT = isCallable(global.PromiseRejectionEvent);
6336
+ var UNHANDLED_REJECTION = 'unhandledrejection';
6337
+ var REJECTION_HANDLED = 'rejectionhandled';
6338
+ var PENDING = 0;
6339
+ var FULFILLED = 1;
6340
+ var REJECTED = 2;
6341
+ var HANDLED = 1;
6342
+ var UNHANDLED = 2;
6343
+ var SUBCLASSING = false;
6344
+
6345
+ var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
6346
+
6347
+ var FORCED = isForced(PROMISE, function () {
6348
+ var PROMISE_CONSTRUCTOR_SOURCE = inspectSource(PromiseConstructor);
6349
+ var GLOBAL_CORE_JS_PROMISE = PROMISE_CONSTRUCTOR_SOURCE !== String(PromiseConstructor);
6350
+ // V8 6.6 (Node 10 and Chrome 66) have a bug with resolving custom thenables
6351
+ // https://bugs.chromium.org/p/chromium/issues/detail?id=830565
6352
+ // We can't detect it synchronously, so just check versions
6353
+ if (!GLOBAL_CORE_JS_PROMISE && V8_VERSION === 66) return true;
6354
+ // We need Promise#finally in the pure version for preventing prototype pollution
6355
+ if (IS_PURE && !PromisePrototype['finally']) return true;
6356
+ // We can't use @@species feature detection in V8 since it causes
6357
+ // deoptimization and performance degradation
6358
+ // https://github.com/zloirock/core-js/issues/679
6359
+ if (V8_VERSION >= 51 && /native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) return false;
6360
+ // Detect correctness of subclassing with @@species support
6361
+ var promise = new PromiseConstructor(function (resolve) { resolve(1); });
6362
+ var FakePromise = function (exec) {
6363
+ exec(function () { /* empty */ }, function () { /* empty */ });
6364
+ };
6365
+ var constructor = promise.constructor = {};
6366
+ constructor[SPECIES] = FakePromise;
6367
+ SUBCLASSING = promise.then(function () { /* empty */ }) instanceof FakePromise;
6368
+ if (!SUBCLASSING) return true;
6369
+ // Unhandled rejections tracking support, NodeJS Promise without it fails @@species test
6370
+ return !GLOBAL_CORE_JS_PROMISE && IS_BROWSER && !NATIVE_REJECTION_EVENT;
6371
+ });
6372
+
6373
+ var INCORRECT_ITERATION = FORCED || !checkCorrectnessOfIteration(function (iterable) {
6374
+ PromiseConstructor.all(iterable)['catch'](function () { /* empty */ });
6375
+ });
6376
+
6377
+ // helpers
6378
+ var isThenable = function (it) {
6379
+ var then;
6380
+ return isObject(it) && isCallable(then = it.then) ? then : false;
6381
+ };
6382
+
6383
+ var notify = function (state, isReject) {
6384
+ if (state.notified) return;
6385
+ state.notified = true;
6386
+ var chain = state.reactions;
6387
+ microtask(function () {
6388
+ var value = state.value;
6389
+ var ok = state.state == FULFILLED;
6390
+ var index = 0;
6391
+ // variable length - can't use forEach
6392
+ while (chain.length > index) {
6393
+ var reaction = chain[index++];
6394
+ var handler = ok ? reaction.ok : reaction.fail;
6395
+ var resolve = reaction.resolve;
6396
+ var reject = reaction.reject;
6397
+ var domain = reaction.domain;
6398
+ var result, then, exited;
6399
+ try {
6400
+ if (handler) {
6401
+ if (!ok) {
6402
+ if (state.rejection === UNHANDLED) onHandleUnhandled(state);
6403
+ state.rejection = HANDLED;
6404
+ }
6405
+ if (handler === true) result = value;
6406
+ else {
6407
+ if (domain) domain.enter();
6408
+ result = handler(value); // can throw
6409
+ if (domain) {
6410
+ domain.exit();
6411
+ exited = true;
6412
+ }
6413
+ }
6414
+ if (result === reaction.promise) {
6415
+ reject(TypeError('Promise-chain cycle'));
6416
+ } else if (then = isThenable(result)) {
6417
+ call(then, result, resolve, reject);
6418
+ } else resolve(result);
6419
+ } else reject(value);
6420
+ } catch (error) {
6421
+ if (domain && !exited) domain.exit();
6422
+ reject(error);
6423
+ }
6424
+ }
6425
+ state.reactions = [];
6426
+ state.notified = false;
6427
+ if (isReject && !state.rejection) onUnhandled(state);
6428
+ });
6429
+ };
6430
+
6431
+ var dispatchEvent = function (name, promise, reason) {
6432
+ var event, handler;
6433
+ if (DISPATCH_EVENT) {
6434
+ event = document.createEvent('Event');
6435
+ event.promise = promise;
6436
+ event.reason = reason;
6437
+ event.initEvent(name, false, true);
6438
+ global.dispatchEvent(event);
6439
+ } else event = { promise: promise, reason: reason };
6440
+ if (!NATIVE_REJECTION_EVENT && (handler = global['on' + name])) handler(event);
6441
+ else if (name === UNHANDLED_REJECTION) hostReportErrors('Unhandled promise rejection', reason);
6442
+ };
6443
+
6444
+ var onUnhandled = function (state) {
6445
+ call(task, global, function () {
6446
+ var promise = state.facade;
6447
+ var value = state.value;
6448
+ var IS_UNHANDLED = isUnhandled(state);
6449
+ var result;
6450
+ if (IS_UNHANDLED) {
6451
+ result = perform(function () {
6452
+ if (IS_NODE) {
6453
+ process.emit('unhandledRejection', value, promise);
6454
+ } else dispatchEvent(UNHANDLED_REJECTION, promise, value);
6455
+ });
6456
+ // Browsers should not trigger `rejectionHandled` event if it was handled here, NodeJS - should
6457
+ state.rejection = IS_NODE || isUnhandled(state) ? UNHANDLED : HANDLED;
6458
+ if (result.error) throw result.value;
6459
+ }
6460
+ });
6461
+ };
6462
+
6463
+ var isUnhandled = function (state) {
6464
+ return state.rejection !== HANDLED && !state.parent;
6465
+ };
6466
+
6467
+ var onHandleUnhandled = function (state) {
6468
+ call(task, global, function () {
6469
+ var promise = state.facade;
6470
+ if (IS_NODE) {
6471
+ process.emit('rejectionHandled', promise);
6472
+ } else dispatchEvent(REJECTION_HANDLED, promise, state.value);
6473
+ });
6474
+ };
6475
+
6476
+ var bind = function (fn, state, unwrap) {
6477
+ return function (value) {
6478
+ fn(state, value, unwrap);
6479
+ };
6480
+ };
6481
+
6482
+ var internalReject = function (state, value, unwrap) {
6483
+ if (state.done) return;
6484
+ state.done = true;
6485
+ if (unwrap) state = unwrap;
6486
+ state.value = value;
6487
+ state.state = REJECTED;
6488
+ notify(state, true);
6489
+ };
6490
+
6491
+ var internalResolve = function (state, value, unwrap) {
6492
+ if (state.done) return;
6493
+ state.done = true;
6494
+ if (unwrap) state = unwrap;
6495
+ try {
6496
+ if (state.facade === value) throw TypeError("Promise can't be resolved itself");
6497
+ var then = isThenable(value);
6498
+ if (then) {
6499
+ microtask(function () {
6500
+ var wrapper = { done: false };
6501
+ try {
6502
+ call(then, value,
6503
+ bind(internalResolve, wrapper, state),
6504
+ bind(internalReject, wrapper, state)
6505
+ );
6506
+ } catch (error) {
6507
+ internalReject(wrapper, error, state);
6508
+ }
6509
+ });
6510
+ } else {
6511
+ state.value = value;
6512
+ state.state = FULFILLED;
6513
+ notify(state, false);
6514
+ }
6515
+ } catch (error) {
6516
+ internalReject({ done: false }, error, state);
6517
+ }
6518
+ };
6519
+
6520
+ // constructor polyfill
6521
+ if (FORCED) {
6522
+ // 25.4.3.1 Promise(executor)
6523
+ PromiseConstructor = function Promise(executor) {
6524
+ anInstance(this, PromisePrototype);
6525
+ aCallable(executor);
6526
+ call(Internal, this);
6527
+ var state = getInternalState(this);
6528
+ try {
6529
+ executor(bind(internalResolve, state), bind(internalReject, state));
6530
+ } catch (error) {
6531
+ internalReject(state, error);
6532
+ }
6533
+ };
6534
+ PromisePrototype = PromiseConstructor.prototype;
6535
+ // eslint-disable-next-line no-unused-vars -- required for `.length`
6536
+ Internal = function Promise(executor) {
6537
+ setInternalState(this, {
6538
+ type: PROMISE,
6539
+ done: false,
6540
+ notified: false,
6541
+ parent: false,
6542
+ reactions: [],
6543
+ rejection: false,
6544
+ state: PENDING,
6545
+ value: undefined
6546
+ });
6547
+ };
6548
+ Internal.prototype = redefineAll(PromisePrototype, {
6549
+ // `Promise.prototype.then` method
6550
+ // https://tc39.es/ecma262/#sec-promise.prototype.then
6551
+ then: function then(onFulfilled, onRejected) {
6552
+ var state = getInternalPromiseState(this);
6553
+ var reactions = state.reactions;
6554
+ var reaction = newPromiseCapability(speciesConstructor(this, PromiseConstructor));
6555
+ reaction.ok = isCallable(onFulfilled) ? onFulfilled : true;
6556
+ reaction.fail = isCallable(onRejected) && onRejected;
6557
+ reaction.domain = IS_NODE ? process.domain : undefined;
6558
+ state.parent = true;
6559
+ reactions[reactions.length] = reaction;
6560
+ if (state.state != PENDING) notify(state, false);
6561
+ return reaction.promise;
6562
+ },
6563
+ // `Promise.prototype.catch` method
6564
+ // https://tc39.es/ecma262/#sec-promise.prototype.catch
6565
+ 'catch': function (onRejected) {
6566
+ return this.then(undefined, onRejected);
6567
+ }
6568
+ });
6569
+ OwnPromiseCapability = function () {
6570
+ var promise = new Internal();
6571
+ var state = getInternalState(promise);
6572
+ this.promise = promise;
6573
+ this.resolve = bind(internalResolve, state);
6574
+ this.reject = bind(internalReject, state);
6575
+ };
6576
+ newPromiseCapabilityModule.f = newPromiseCapability = function (C) {
6577
+ return C === PromiseConstructor || C === PromiseWrapper
6578
+ ? new OwnPromiseCapability(C)
6579
+ : newGenericPromiseCapability(C);
6580
+ };
6581
+
6582
+ if (!IS_PURE && isCallable(NativePromise) && NativePromisePrototype !== Object.prototype) {
6583
+ nativeThen = NativePromisePrototype.then;
6584
+
6585
+ if (!SUBCLASSING) {
6586
+ // make `Promise#then` return a polyfilled `Promise` for native promise-based APIs
6587
+ redefine(NativePromisePrototype, 'then', function then(onFulfilled, onRejected) {
6588
+ var that = this;
6589
+ return new PromiseConstructor(function (resolve, reject) {
6590
+ call(nativeThen, that, resolve, reject);
6591
+ }).then(onFulfilled, onRejected);
6592
+ // https://github.com/zloirock/core-js/issues/640
6593
+ }, { unsafe: true });
6594
+
6595
+ // makes sure that native promise-based APIs `Promise#catch` properly works with patched `Promise#then`
6596
+ redefine(NativePromisePrototype, 'catch', PromisePrototype['catch'], { unsafe: true });
6597
+ }
6598
+
6599
+ // make `.constructor === Promise` work for native promise-based APIs
6600
+ try {
6601
+ delete NativePromisePrototype.constructor;
6602
+ } catch (error) { /* empty */ }
6603
+
6604
+ // make `instanceof Promise` work for native promise-based APIs
6605
+ if (setPrototypeOf) {
6606
+ setPrototypeOf(NativePromisePrototype, PromisePrototype);
6607
+ }
6608
+ }
6609
+ }
6610
+
6611
+ $({ global: true, wrap: true, forced: FORCED }, {
6612
+ Promise: PromiseConstructor
6613
+ });
6614
+
6615
+ setToStringTag(PromiseConstructor, PROMISE, false, true);
6616
+ setSpecies(PROMISE);
6617
+
6618
+ PromiseWrapper = getBuiltIn(PROMISE);
6619
+
6620
+ // statics
6621
+ $({ target: PROMISE, stat: true, forced: FORCED }, {
6622
+ // `Promise.reject` method
6623
+ // https://tc39.es/ecma262/#sec-promise.reject
6624
+ reject: function reject(r) {
6625
+ var capability = newPromiseCapability(this);
6626
+ call(capability.reject, undefined, r);
6627
+ return capability.promise;
6628
+ }
6629
+ });
6630
+
6631
+ $({ target: PROMISE, stat: true, forced: IS_PURE || FORCED }, {
6632
+ // `Promise.resolve` method
6633
+ // https://tc39.es/ecma262/#sec-promise.resolve
6634
+ resolve: function resolve(x) {
6635
+ return promiseResolve(IS_PURE && this === PromiseWrapper ? PromiseConstructor : this, x);
6636
+ }
6637
+ });
6638
+
6639
+ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
6640
+ // `Promise.all` method
6641
+ // https://tc39.es/ecma262/#sec-promise.all
6642
+ all: function all(iterable) {
6643
+ var C = this;
6644
+ var capability = newPromiseCapability(C);
6645
+ var resolve = capability.resolve;
6646
+ var reject = capability.reject;
6647
+ var result = perform(function () {
6648
+ var $promiseResolve = aCallable(C.resolve);
6649
+ var values = [];
6650
+ var counter = 0;
6651
+ var remaining = 1;
6652
+ iterate(iterable, function (promise) {
6653
+ var index = counter++;
6654
+ var alreadyCalled = false;
6655
+ remaining++;
6656
+ call($promiseResolve, C, promise).then(function (value) {
6657
+ if (alreadyCalled) return;
6658
+ alreadyCalled = true;
6659
+ values[index] = value;
6660
+ --remaining || resolve(values);
6661
+ }, reject);
6662
+ });
6663
+ --remaining || resolve(values);
6664
+ });
6665
+ if (result.error) reject(result.value);
6666
+ return capability.promise;
6667
+ },
6668
+ // `Promise.race` method
6669
+ // https://tc39.es/ecma262/#sec-promise.race
6670
+ race: function race(iterable) {
6671
+ var C = this;
6672
+ var capability = newPromiseCapability(C);
6673
+ var reject = capability.reject;
6674
+ var result = perform(function () {
6675
+ var $promiseResolve = aCallable(C.resolve);
6676
+ iterate(iterable, function (promise) {
6677
+ call($promiseResolve, C, promise).then(capability.resolve, reject);
6678
+ });
6679
+ });
6680
+ if (result.error) reject(result.value);
6681
+ return capability.promise;
6682
+ }
6683
+ });
6684
+
6685
+
5185
6686
  /***/ }),
5186
6687
 
5187
6688
  /***/ "e893":
@@ -5235,6 +6736,47 @@ module.exports = function (it) {
5235
6736
  };
5236
6737
 
5237
6738
 
6739
+ /***/ }),
6740
+
6741
+ /***/ "e9a6":
6742
+ /***/ (function(module, exports, __webpack_require__) {
6743
+
6744
+ // Imports
6745
+ var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
6746
+ exports = ___CSS_LOADER_API_IMPORT___(false);
6747
+ // Module
6748
+ exports.push([module.i, ".events-container[data-v-adbac98a]{height:200px;height:100%;position:relative}.event .event_drag[data-v-adbac98a]{min-width:10px}.event_title[data-v-adbac98a]{flex-grow:1;text-align:start;min-width:0;font-size:12px}.event[data-v-adbac98a]:hover{box-shadow:0 1px 4px rgba(0,0,0,.16)}.hide[data-v-adbac98a]{min-width:55px!important}.hide_segment[data-v-adbac98a]{--translate-x:0px!important}.noselect[data-v-adbac98a]{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.by-scroll-container[data-v-adbac98a]::-webkit-scrollbar-track{background-color:#fff}.by-scroll-container[data-v-adbac98a]::-webkit-scrollbar{width:10px;height:10px;background-color:#f5f5f5}.by-scroll-container[data-v-adbac98a]::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#999}", ""]);
6749
+ // Exports
6750
+ module.exports = exports;
6751
+
6752
+
6753
+ /***/ }),
6754
+
6755
+ /***/ "f069":
6756
+ /***/ (function(module, exports, __webpack_require__) {
6757
+
6758
+ "use strict";
6759
+
6760
+ var aCallable = __webpack_require__("59ed");
6761
+
6762
+ var PromiseCapability = function (C) {
6763
+ var resolve, reject;
6764
+ this.promise = new C(function ($$resolve, $$reject) {
6765
+ if (resolve !== undefined || reject !== undefined) throw TypeError('Bad Promise constructor');
6766
+ resolve = $$resolve;
6767
+ reject = $$reject;
6768
+ });
6769
+ this.resolve = aCallable(resolve);
6770
+ this.reject = aCallable(reject);
6771
+ };
6772
+
6773
+ // `NewPromiseCapability` abstract operation
6774
+ // https://tc39.es/ecma262/#sec-newpromisecapability
6775
+ module.exports.f = function (C) {
6776
+ return new PromiseCapability(C);
6777
+ };
6778
+
6779
+
5238
6780
  /***/ }),
5239
6781
 
5240
6782
  /***/ "f183":
@@ -5429,22 +6971,64 @@ if (typeof window !== 'undefined') {
5429
6971
  // Indicate to webpack that this file can be concatenated
5430
6972
  /* harmony default export */ var setPublicPath = (null);
5431
6973
 
5432
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"97bd78b8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/gant-board.vue?vue&type=template&id=7a0dcb1e&scoped=true&
5433
- var gant_boardvue_type_template_id_7a0dcb1e_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.options.from_start != null)?_c('div',{staticStyle:{"width":"100%","height":"100%","position":"relative","overflow":"hidden"}},[(_vm.options.from_start != null)?_c('div',{ref:"scroll_container_wrapper",staticClass:"by-scroll-container",staticStyle:{"width":"100%","display":"flex","position":"relative","overflow-x":"scroll","overflow-y":"scroll","height":"100%"}},[_c('grid-sidebar',{attrs:{"container_height":_vm.container_height,"segment_view":_vm.segment_view,"render_segments":_vm.render_segments},on:{"update:segment_view":function($event){_vm.segment_view = $event}}}),_c('div',{staticStyle:{"position":"relative","z-index":"1"},style:({ 'height': _vm.container_height + 'px' })},[_c('grid-header',{staticStyle:{"top":"0px","position":"sticky"},style:({ width: _vm.options.day_width * _vm.days_number + 'px' }),attrs:{"match_exact_color":_vm.match_exact_color,"background_colors":_vm.background_colors,"days_number":_vm.days_number,"options":_vm.options,"months":_vm.months}}),_c('div',{ref:"container_wrapper",staticClass:"events-container",staticStyle:{"position":"absolute","top":"40px"},style:({ width: _vm.options.day_width * _vm.days_number + 'px', 'height': _vm.container_height + 'px' }),on:{"mousemove":function($event){return _vm.moveEvent($event)},"mouseup":function($event){return _vm.endDrag($event)},"mousedown":function($event){$event.stopPropagation();return _vm.startDrag(null, $event, null)}}},[_vm._l((_vm.render_segments),function(segment){return _c('div',{key:segment.key.team_id + segment.key.team_type,staticStyle:{"position":"absolute","border-bottom":"1px solid #eeeeee","width":"100%"},style:({ 'background-color': segment.key.color, 'top': segment.top + 'px', 'height': segment.height + 'px' })},[_c('grid-view',{ref:'grid_view_'+segment.key.team_id + segment.key.team_type,refInFor:true,staticStyle:{"height":"100%","top":"0px","position":"absolute"},style:({ width: _vm.options.day_width * _vm.days_number + 'px' }),attrs:{"days_number":_vm.days_number,"options":_vm.options,"months":_vm.months,"segment":segment,"match_exact_color":_vm.match_exact_color,"background_colors":_vm.background_colors}}),_vm._l((segment.values),function(event){return _c('grid-event',{key:event.id,attrs:{"event":event},on:{"startDrag":function($event){$event.stopPropagation();return _vm.startDrag(segment, $event, event)},"startResize":function($event){return _vm.startResize($event, event, segment)},"open-activities":function($event){return _vm.$emit('open-activities', $event)},"open-tasks":function($event){return _vm.$emit('open-tasks', $event)},"open-activity":function($event){return _vm.$emit('open-activity', $event)},"open-task":function($event){return _vm.$emit('open-task', $event)}}})})],2)}),(_vm.drag_element != null && _vm.drag_element.moved)?_c('grid-drag-element',{attrs:{"drag_element":_vm.drag_element}}):_vm._e()],2)],1)],1):_vm._e()]):_vm._e()}
6974
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"97bd78b8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/gant-board.vue?vue&type=template&id=adbac98a&scoped=true&
6975
+ var gant_boardvue_type_template_id_adbac98a_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.options.from_start != null)?_c('div',{staticStyle:{"width":"100%","height":"100%","position":"relative","overflow":"hidden"}},[(_vm.options.from_start != null)?_c('div',{ref:"scroll_container_wrapper",staticClass:"by-scroll-container",staticStyle:{"width":"100%","display":"flex","position":"relative","overflow-x":"scroll","overflow-y":"scroll","height":"100%"}},[_c('grid-sidebar',{attrs:{"container_height":_vm.container_height,"segment_view":_vm.segment_view,"render_segments":_vm.render_segments},on:{"update:segment_view":function($event){_vm.segment_view = $event}}}),_c('div',{staticStyle:{"position":"relative","z-index":"1"},style:({ 'height': _vm.container_height + 'px' })},[_c('div',[_vm._v(" "+_vm._s(_vm.background_colors)+" ")]),_c('grid-header',{staticStyle:{"top":"0px","position":"sticky"},style:({ width: _vm.options.day_width * _vm.days_number + 'px' }),attrs:{"match_exact_color":_vm.match_exact_color,"background_colors":_vm.background_colors,"days_number":_vm.days_number,"options":_vm.options,"months":_vm.months}}),_c('div',{ref:"container_wrapper",staticClass:"events-container",staticStyle:{"position":"absolute","top":"40px"},style:({ width: _vm.options.day_width * _vm.days_number + 'px', 'height': _vm.container_height + 'px' }),on:{"mousemove":function($event){return _vm.moveEvent($event)},"mouseup":function($event){return _vm.endDrag($event)},"mousedown":function($event){$event.stopPropagation();return _vm.startDrag(null, $event, null)}}},[_vm._l((_vm.render_segments),function(segment){return _c('div',{key:segment.key.team_id + segment.key.team_type,staticStyle:{"position":"absolute","border-bottom":"1px solid #eeeeee","width":"100%"},style:({ 'background-color': segment.key.color, 'top': segment.top + 'px', 'height': segment.height + 'px' })},[_c('grid-view',{ref:'grid_view_'+segment.key.team_id + segment.key.team_type,refInFor:true,staticStyle:{"height":"100%","top":"0px","position":"absolute"},style:({ width: _vm.options.day_width * _vm.days_number + 'px' }),attrs:{"days_number":_vm.days_number,"options":_vm.options,"months":_vm.months,"segment":segment,"match_exact_color":_vm.match_exact_color,"background_colors":_vm.background_colors}}),_vm._l((segment.values),function(event){return _c('grid-event',{key:event.id,attrs:{"event":event},on:{"startDrag":function($event){$event.stopPropagation();return _vm.startDrag(segment, $event, event)},"startResize":function($event){return _vm.startResize($event, event, segment)},"open-activities":function($event){return _vm.$emit('open-activities', $event)},"open-tasks":function($event){return _vm.$emit('open-tasks', $event)},"open-activity":function($event){return _vm.$emit('open-activity', $event)},"open-task":function($event){return _vm.$emit('open-task', $event)}}})})],2)}),(_vm.drag_element != null && _vm.drag_element.moved)?_c('grid-drag-element',{attrs:{"drag_element":_vm.drag_element}}):_vm._e()],2)],1)],1):_vm._e()]):_vm._e()}
5434
6976
  var staticRenderFns = []
5435
6977
 
5436
6978
 
5437
- // CONCATENATED MODULE: ./src/components/gant-board.vue?vue&type=template&id=7a0dcb1e&scoped=true&
6979
+ // CONCATENATED MODULE: ./src/components/gant-board.vue?vue&type=template&id=adbac98a&scoped=true&
6980
+
6981
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.to-string.js
6982
+ var es_object_to_string = __webpack_require__("d3b7");
6983
+
6984
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.promise.js
6985
+ var es_promise = __webpack_require__("e6cf");
6986
+
6987
+ // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js
6988
+
5438
6989
 
6990
+
6991
+ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
6992
+ try {
6993
+ var info = gen[key](arg);
6994
+ var value = info.value;
6995
+ } catch (error) {
6996
+ reject(error);
6997
+ return;
6998
+ }
6999
+
7000
+ if (info.done) {
7001
+ resolve(value);
7002
+ } else {
7003
+ Promise.resolve(value).then(_next, _throw);
7004
+ }
7005
+ }
7006
+
7007
+ function _asyncToGenerator(fn) {
7008
+ return function () {
7009
+ var self = this,
7010
+ args = arguments;
7011
+ return new Promise(function (resolve, reject) {
7012
+ var gen = fn.apply(self, args);
7013
+
7014
+ function _next(value) {
7015
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
7016
+ }
7017
+
7018
+ function _throw(err) {
7019
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
7020
+ }
7021
+
7022
+ _next(undefined);
7023
+ });
7024
+ };
7025
+ }
5439
7026
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.js
5440
7027
  var es_symbol = __webpack_require__("a4d3");
5441
7028
 
5442
7029
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.description.js
5443
7030
  var es_symbol_description = __webpack_require__("e01a");
5444
7031
 
5445
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.to-string.js
5446
- var es_object_to_string = __webpack_require__("d3b7");
5447
-
5448
7032
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.iterator.js
5449
7033
  var es_symbol_iterator = __webpack_require__("d28b");
5450
7034
 
@@ -5593,6 +7177,9 @@ function _nonIterableSpread() {
5593
7177
  function _toConsumableArray(arr) {
5594
7178
  return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
5595
7179
  }
7180
+ // EXTERNAL MODULE: ./node_modules/regenerator-runtime/runtime.js
7181
+ var runtime = __webpack_require__("96cf");
7182
+
5596
7183
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.map.js
5597
7184
  var es_array_map = __webpack_require__("d81d");
5598
7185
 
@@ -6590,6 +8177,12 @@ var grid_drag_element_component = normalizeComponent(
6590
8177
 
6591
8178
 
6592
8179
 
8180
+
8181
+
8182
+
8183
+ //
8184
+ //
8185
+ //
6593
8186
  //
6594
8187
  //
6595
8188
  //
@@ -7378,41 +8971,60 @@ var grid_drag_element_component = normalizeComponent(
7378
8971
  this.options.from_start = dayjs_min_default()(this.from_start);
7379
8972
  this.options.to_start = dayjs_min_default()(this.to_start);
7380
8973
  this.render();
7381
- this.$nextTick(function () {
7382
- var grid_view_ref = _this5.$refs['grid_view_' + _this5.render_segments[0].key.team_id + _this5.render_segments[0].key.team_type];
8974
+ this.$nextTick( /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
8975
+ var grid_view_ref;
8976
+ return regeneratorRuntime.wrap(function _callee$(_context) {
8977
+ while (1) {
8978
+ switch (_context.prev = _context.next) {
8979
+ case 0:
8980
+ _context.next = 2;
8981
+ return new Promise(function (r) {
8982
+ return setTimeout(r, 500);
8983
+ });
7383
8984
 
7384
- if (grid_view_ref && grid_view_ref.length > 0) {
7385
- grid_view_ref[0].scrollToDay(_this5.$refs.scroll_container_wrapper);
7386
- } //this.$refs.grid_view.scrollToDay(this.$refs.scroll_container_wrapper);
8985
+ case 2:
8986
+ if (_this5.render_segments.length > 0) {
8987
+ grid_view_ref = _this5.$refs['grid_view_' + _this5.render_segments[0].key.team_id + _this5.render_segments[0].key.team_type];
7387
8988
 
8989
+ if (grid_view_ref && grid_view_ref.length > 0) {
8990
+ grid_view_ref[0].scrollToDay(_this5.$refs.scroll_container_wrapper);
8991
+ }
8992
+ }
7388
8993
 
7389
- _this5.$refs.scroll_container_wrapper.onscroll = function () {
7390
- if (_this5.$refs.scroll_container_wrapper.scrollLeft == 0) {
7391
- var cur_scroll = _this5.$refs.scroll_container_wrapper.scrollWidth;
7392
- _this5.options.from_start = _this5.options.from_start.add(-1, "months");
8994
+ _this5.$refs.scroll_container_wrapper.onscroll = function () {
8995
+ if (_this5.$refs.scroll_container_wrapper.scrollLeft == 0) {
8996
+ var cur_scroll = _this5.$refs.scroll_container_wrapper.scrollWidth;
8997
+ _this5.options.from_start = _this5.options.from_start.add(-1, "months");
7393
8998
 
7394
- _this5.$emit("update:from_start", _this5.options.from_start.format("YYYY-MM-DD"));
8999
+ _this5.$emit("update:from_start", _this5.options.from_start.format("YYYY-MM-DD"));
7395
9000
 
7396
- _this5.$nextTick(function () {
7397
- var diff = _this5.$refs.scroll_container_wrapper.scrollWidth - cur_scroll;
7398
- _this5.$refs.scroll_container_wrapper.scrollLeft = diff; //this.render();
7399
- });
7400
- }
9001
+ _this5.$nextTick(function () {
9002
+ var diff = _this5.$refs.scroll_container_wrapper.scrollWidth - cur_scroll;
9003
+ _this5.$refs.scroll_container_wrapper.scrollLeft = diff; //this.render();
9004
+ });
9005
+ }
7401
9006
 
7402
- if (_this5.$refs.scroll_container_wrapper.scrollLeft + _this5.$refs.scroll_container_wrapper.offsetWidth > _this5.$refs.scroll_container_wrapper.scrollWidth - 2) {
7403
- _this5.options.to_start = _this5.options.to_start.add(1, "months");
9007
+ if (_this5.$refs.scroll_container_wrapper.scrollLeft + _this5.$refs.scroll_container_wrapper.offsetWidth > _this5.$refs.scroll_container_wrapper.scrollWidth - 2) {
9008
+ _this5.options.to_start = _this5.options.to_start.add(1, "months");
7404
9009
 
7405
- _this5.$emit("update:to_start", _this5.options.to_start.format("YYYY-MM-DD")); //this.render();
9010
+ _this5.$emit("update:to_start", _this5.options.to_start.format("YYYY-MM-DD")); //this.render();
9011
+
9012
+ }
9013
+ };
7406
9014
 
9015
+ case 4:
9016
+ case "end":
9017
+ return _context.stop();
9018
+ }
7407
9019
  }
7408
- };
7409
- });
9020
+ }, _callee);
9021
+ })));
7410
9022
  }
7411
9023
  });
7412
9024
  // CONCATENATED MODULE: ./src/components/gant-board.vue?vue&type=script&lang=js&
7413
9025
  /* harmony default export */ var components_gant_boardvue_type_script_lang_js_ = (gant_boardvue_type_script_lang_js_);
7414
- // EXTERNAL MODULE: ./src/components/gant-board.vue?vue&type=style&index=0&id=7a0dcb1e&scoped=true&lang=css&
7415
- var gant_boardvue_type_style_index_0_id_7a0dcb1e_scoped_true_lang_css_ = __webpack_require__("9810");
9026
+ // EXTERNAL MODULE: ./src/components/gant-board.vue?vue&type=style&index=0&id=adbac98a&scoped=true&lang=css&
9027
+ var gant_boardvue_type_style_index_0_id_adbac98a_scoped_true_lang_css_ = __webpack_require__("a9a2");
7416
9028
 
7417
9029
  // CONCATENATED MODULE: ./src/components/gant-board.vue
7418
9030
 
@@ -7425,11 +9037,11 @@ var gant_boardvue_type_style_index_0_id_7a0dcb1e_scoped_true_lang_css_ = __webpa
7425
9037
 
7426
9038
  var gant_board_component = normalizeComponent(
7427
9039
  components_gant_boardvue_type_script_lang_js_,
7428
- gant_boardvue_type_template_id_7a0dcb1e_scoped_true_render,
9040
+ gant_boardvue_type_template_id_adbac98a_scoped_true_render,
7429
9041
  staticRenderFns,
7430
9042
  false,
7431
9043
  null,
7432
- "7a0dcb1e",
9044
+ "adbac98a",
7433
9045
  null
7434
9046
 
7435
9047
  )
@@ -7601,6 +9213,16 @@ module.exports = NATIVE_SYMBOL
7601
9213
  && typeof Symbol.iterator == 'symbol';
7602
9214
 
7603
9215
 
9216
+ /***/ }),
9217
+
9218
+ /***/ "fea9":
9219
+ /***/ (function(module, exports, __webpack_require__) {
9220
+
9221
+ var global = __webpack_require__("da84");
9222
+
9223
+ module.exports = global.Promise;
9224
+
9225
+
7604
9226
  /***/ })
7605
9227
 
7606
9228
  /******/ });