gant-board 1.0.54 → 1.0.56

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.
@@ -262,22 +262,6 @@ module.exports = function (obj) {
262
262
  };
263
263
 
264
264
 
265
- /***/ }),
266
-
267
- /***/ "087b":
268
- /***/ (function(module, exports, __webpack_require__) {
269
-
270
- // style-loader: Adds some css to the DOM by adding a <style> tag
271
-
272
- // load the styles
273
- var content = __webpack_require__("d241");
274
- if(content.__esModule) content = content.default;
275
- if(typeof content === 'string') content = [[module.i, content, '']];
276
- if(content.locals) module.exports = content.locals;
277
- // add the styles to the DOM
278
- var add = __webpack_require__("499e").default
279
- var update = add("57d13925", content, true, {"sourceMap":false,"shadowMode":false});
280
-
281
265
  /***/ }),
282
266
 
283
267
  /***/ "0b42":
@@ -495,6 +479,22 @@ module.exports = Object.hasOwn || function hasOwn(it, key) {
495
479
  };
496
480
 
497
481
 
482
+ /***/ }),
483
+
484
+ /***/ "1ab2":
485
+ /***/ (function(module, exports, __webpack_require__) {
486
+
487
+ // style-loader: Adds some css to the DOM by adding a <style> tag
488
+
489
+ // load the styles
490
+ var content = __webpack_require__("bc71");
491
+ if(content.__esModule) content = content.default;
492
+ if(typeof content === 'string') content = [[module.i, content, '']];
493
+ if(content.locals) module.exports = content.locals;
494
+ // add the styles to the DOM
495
+ var add = __webpack_require__("499e").default
496
+ var update = add("492e4548", content, true, {"sourceMap":false,"shadowMode":false});
497
+
498
498
  /***/ }),
499
499
 
500
500
  /***/ "1be4":
@@ -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":
@@ -1191,6 +1321,21 @@ module.exports = function (key) {
1191
1321
  };
1192
1322
 
1193
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
+
1194
1339
  /***/ }),
1195
1340
 
1196
1341
  /***/ "466d":
@@ -1246,6 +1391,26 @@ fixRegExpWellKnownSymbolLogic('match', function (MATCH, nativeMatch, maybeCallNa
1246
1391
  });
1247
1392
 
1248
1393
 
1394
+ /***/ }),
1395
+
1396
+ /***/ "4840":
1397
+ /***/ (function(module, exports, __webpack_require__) {
1398
+
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
+ };
1412
+
1413
+
1249
1414
  /***/ }),
1250
1415
 
1251
1416
  /***/ "485a":
@@ -1699,17 +1864,6 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
1699
1864
  };
1700
1865
 
1701
1866
 
1702
- /***/ }),
1703
-
1704
- /***/ "4e2b":
1705
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
1706
-
1707
- "use strict";
1708
- /* 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_grid_sidebar_vue_vue_type_style_index_0_id_67c526bd_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("c195");
1709
- /* 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_grid_sidebar_vue_vue_type_style_index_0_id_67c526bd_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_grid_sidebar_vue_vue_type_style_index_0_id_67c526bd_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__);
1710
- /* unused harmony reexport * */
1711
-
1712
-
1713
1867
  /***/ }),
1714
1868
 
1715
1869
  /***/ "4e82":
@@ -1863,6 +2017,24 @@ module.exports = (FAILS_ON_PRIMITIVES || ARRAY_BUFFER_NON_EXTENSIBLE) ? function
1863
2017
  } : $isExtensible;
1864
2018
 
1865
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
+
1866
2038
  /***/ }),
1867
2039
 
1868
2040
  /***/ "50c4":
@@ -2001,6 +2173,17 @@ module.exports = function (argument) {
2001
2173
 
2002
2174
  !function(t,e){ true?module.exports=e():undefined}(this,(function(){"use strict";var t=1e3,e=6e4,n=36e5,r="millisecond",i="second",s="minute",u="hour",a="day",o="week",f="month",h="quarter",c="year",d="date",$="Invalid Date",l=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,y=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,M={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_")},m=function(t,e,n){var r=String(t);return!r||r.length>=e?t:""+Array(e+1-r.length).join(n)+t},g={s:m,z:function(t){var e=-t.utcOffset(),n=Math.abs(e),r=Math.floor(n/60),i=n%60;return(e<=0?"+":"-")+m(r,2,"0")+":"+m(i,2,"0")},m:function t(e,n){if(e.date()<n.date())return-t(n,e);var r=12*(n.year()-e.year())+(n.month()-e.month()),i=e.clone().add(r,f),s=n-i<0,u=e.clone().add(r+(s?-1:1),f);return+(-(r+(n-i)/(s?i-u:u-i))||0)},a:function(t){return t<0?Math.ceil(t)||0:Math.floor(t)},p:function(t){return{M:f,y:c,w:o,d:a,D:d,h:u,m:s,s:i,ms:r,Q:h}[t]||String(t||"").toLowerCase().replace(/s$/,"")},u:function(t){return void 0===t}},D="en",v={};v[D]=M;var p=function(t){return t instanceof _},S=function(t,e,n){var r;if(!t)return D;if("string"==typeof t)v[t]&&(r=t),e&&(v[t]=e,r=t);else{var i=t.name;v[i]=t,r=i}return!n&&r&&(D=r),r||!n&&D},w=function(t,e){if(p(t))return t.clone();var n="object"==typeof e?e:{};return n.date=t,n.args=arguments,new _(n)},O=g;O.l=S,O.i=p,O.w=function(t,e){return w(t,{locale:e.$L,utc:e.$u,x:e.$x,$offset:e.$offset})};var _=function(){function M(t){this.$L=S(t.locale,null,!0),this.parse(t)}var m=M.prototype;return m.parse=function(t){this.$d=function(t){var e=t.date,n=t.utc;if(null===e)return new Date(NaN);if(O.u(e))return new Date;if(e instanceof Date)return new Date(e);if("string"==typeof e&&!/Z$/i.test(e)){var r=e.match(l);if(r){var i=r[2]-1||0,s=(r[7]||"0").substring(0,3);return n?new Date(Date.UTC(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,s)):new Date(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,s)}}return new Date(e)}(t),this.$x=t.x||{},this.init()},m.init=function(){var t=this.$d;this.$y=t.getFullYear(),this.$M=t.getMonth(),this.$D=t.getDate(),this.$W=t.getDay(),this.$H=t.getHours(),this.$m=t.getMinutes(),this.$s=t.getSeconds(),this.$ms=t.getMilliseconds()},m.$utils=function(){return O},m.isValid=function(){return!(this.$d.toString()===$)},m.isSame=function(t,e){var n=w(t);return this.startOf(e)<=n&&n<=this.endOf(e)},m.isAfter=function(t,e){return w(t)<this.startOf(e)},m.isBefore=function(t,e){return this.endOf(e)<w(t)},m.$g=function(t,e,n){return O.u(t)?this[e]:this.set(n,t)},m.unix=function(){return Math.floor(this.valueOf()/1e3)},m.valueOf=function(){return this.$d.getTime()},m.startOf=function(t,e){var n=this,r=!!O.u(e)||e,h=O.p(t),$=function(t,e){var i=O.w(n.$u?Date.UTC(n.$y,e,t):new Date(n.$y,e,t),n);return r?i:i.endOf(a)},l=function(t,e){return O.w(n.toDate()[t].apply(n.toDate("s"),(r?[0,0,0,0]:[23,59,59,999]).slice(e)),n)},y=this.$W,M=this.$M,m=this.$D,g="set"+(this.$u?"UTC":"");switch(h){case c:return r?$(1,0):$(31,11);case f:return r?$(1,M):$(0,M+1);case o:var D=this.$locale().weekStart||0,v=(y<D?y+7:y)-D;return $(r?m-v:m+(6-v),M);case a:case d:return l(g+"Hours",0);case u:return l(g+"Minutes",1);case s:return l(g+"Seconds",2);case i:return l(g+"Milliseconds",3);default:return this.clone()}},m.endOf=function(t){return this.startOf(t,!1)},m.$set=function(t,e){var n,o=O.p(t),h="set"+(this.$u?"UTC":""),$=(n={},n[a]=h+"Date",n[d]=h+"Date",n[f]=h+"Month",n[c]=h+"FullYear",n[u]=h+"Hours",n[s]=h+"Minutes",n[i]=h+"Seconds",n[r]=h+"Milliseconds",n)[o],l=o===a?this.$D+(e-this.$W):e;if(o===f||o===c){var y=this.clone().set(d,1);y.$d[$](l),y.init(),this.$d=y.set(d,Math.min(this.$D,y.daysInMonth())).$d}else $&&this.$d[$](l);return this.init(),this},m.set=function(t,e){return this.clone().$set(t,e)},m.get=function(t){return this[O.p(t)]()},m.add=function(r,h){var d,$=this;r=Number(r);var l=O.p(h),y=function(t){var e=w($);return O.w(e.date(e.date()+Math.round(t*r)),$)};if(l===f)return this.set(f,this.$M+r);if(l===c)return this.set(c,this.$y+r);if(l===a)return y(1);if(l===o)return y(7);var M=(d={},d[s]=e,d[u]=n,d[i]=t,d)[l]||1,m=this.$d.getTime()+r*M;return O.w(m,this)},m.subtract=function(t,e){return this.add(-1*t,e)},m.format=function(t){var e=this,n=this.$locale();if(!this.isValid())return n.invalidDate||$;var r=t||"YYYY-MM-DDTHH:mm:ssZ",i=O.z(this),s=this.$H,u=this.$m,a=this.$M,o=n.weekdays,f=n.months,h=function(t,n,i,s){return t&&(t[n]||t(e,r))||i[n].substr(0,s)},c=function(t){return O.s(s%12||12,t,"0")},d=n.meridiem||function(t,e,n){var r=t<12?"AM":"PM";return n?r.toLowerCase():r},l={YY:String(this.$y).slice(-2),YYYY:this.$y,M:a+1,MM:O.s(a+1,2,"0"),MMM:h(n.monthsShort,a,f,3),MMMM:h(f,a),D:this.$D,DD:O.s(this.$D,2,"0"),d:String(this.$W),dd:h(n.weekdaysMin,this.$W,o,2),ddd:h(n.weekdaysShort,this.$W,o,3),dddd:o[this.$W],H:String(s),HH:O.s(s,2,"0"),h:c(1),hh:c(2),a:d(s,u,!0),A:d(s,u,!1),m:String(u),mm:O.s(u,2,"0"),s:String(this.$s),ss:O.s(this.$s,2,"0"),SSS:O.s(this.$ms,3,"0"),Z:i};return r.replace(y,(function(t,e){return e||l[t]||i.replace(":","")}))},m.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},m.diff=function(r,d,$){var l,y=O.p(d),M=w(r),m=(M.utcOffset()-this.utcOffset())*e,g=this-M,D=O.m(this,M);return D=(l={},l[c]=D/12,l[f]=D,l[h]=D/3,l[o]=(g-m)/6048e5,l[a]=(g-m)/864e5,l[u]=g/n,l[s]=g/e,l[i]=g/t,l)[y]||g,$?D:O.a(D)},m.daysInMonth=function(){return this.endOf(f).$D},m.$locale=function(){return v[this.$L]},m.locale=function(t,e){if(!t)return this.$L;var n=this.clone(),r=S(t,e,!0);return r&&(n.$L=r),n},m.clone=function(){return O.w(this.$d,this)},m.toDate=function(){return new Date(this.valueOf())},m.toJSON=function(){return this.isValid()?this.toISOString():null},m.toISOString=function(){return this.$d.toISOString()},m.toString=function(){return this.$d.toUTCString()},M}(),b=_.prototype;return w.prototype=b,[["$ms",r],["$s",i],["$m",s],["$H",u],["$W",a],["$M",f],["$y",c],["$D",d]].forEach((function(t){b[t[1]]=function(e){return this.$g(e,t[0],t[1])}})),w.extend=function(t,e){return t.$i||(t(e,_,w),t.$i=!0),w},w.locale=S,w.isDayjs=p,w.unix=function(t){return w(1e3*t)},w.en=v[D],w.Ls=v,w.p={},w}));
2003
2175
 
2176
+ /***/ }),
2177
+
2178
+ /***/ "5a13":
2179
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
2180
+
2181
+ "use strict";
2182
+ /* 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_grid_sidebar_vue_vue_type_style_index_0_id_649f6daa_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("1ab2");
2183
+ /* 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_grid_sidebar_vue_vue_type_style_index_0_id_649f6daa_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_grid_sidebar_vue_vue_type_style_index_0_id_649f6daa_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__);
2184
+ /* unused harmony reexport * */
2185
+
2186
+
2004
2187
  /***/ }),
2005
2188
 
2006
2189
  /***/ "5c6c":
@@ -2040,6 +2223,25 @@ module.exports = {
2040
2223
  };
2041
2224
 
2042
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
+
2043
2245
  /***/ }),
2044
2246
 
2045
2247
  /***/ "6547":
@@ -3108,17 +3310,6 @@ if (!isCallable(store.inspectSource)) {
3108
3310
  module.exports = store.inspectSource;
3109
3311
 
3110
3312
 
3111
- /***/ }),
3112
-
3113
- /***/ "89b5":
3114
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
3115
-
3116
- "use strict";
3117
- /* 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_7998a226_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("087b");
3118
- /* 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_7998a226_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_7998a226_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__);
3119
- /* unused harmony reexport * */
3120
-
3121
-
3122
3313
  /***/ }),
3123
3314
 
3124
3315
  /***/ "8aa5":
@@ -3337,6 +3528,767 @@ var POLYFILL = isForced.POLYFILL = 'P';
3337
3528
  module.exports = isForced;
3338
3529
 
3339
3530
 
3531
+ /***/ }),
3532
+
3533
+ /***/ "96cf":
3534
+ /***/ (function(module, exports, __webpack_require__) {
3535
+
3536
+ /**
3537
+ * Copyright (c) 2014-present, Facebook, Inc.
3538
+ *
3539
+ * This source code is licensed under the MIT license found in the
3540
+ * LICENSE file in the root directory of this source tree.
3541
+ */
3542
+
3543
+ var runtime = (function (exports) {
3544
+ "use strict";
3545
+
3546
+ var Op = Object.prototype;
3547
+ var hasOwn = Op.hasOwnProperty;
3548
+ var undefined; // More compressible than void 0.
3549
+ var $Symbol = typeof Symbol === "function" ? Symbol : {};
3550
+ var iteratorSymbol = $Symbol.iterator || "@@iterator";
3551
+ var asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator";
3552
+ var toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
3553
+
3554
+ function define(obj, key, value) {
3555
+ Object.defineProperty(obj, key, {
3556
+ value: value,
3557
+ enumerable: true,
3558
+ configurable: true,
3559
+ writable: true
3560
+ });
3561
+ return obj[key];
3562
+ }
3563
+ try {
3564
+ // IE 8 has a broken Object.defineProperty that only works on DOM objects.
3565
+ define({}, "");
3566
+ } catch (err) {
3567
+ define = function(obj, key, value) {
3568
+ return obj[key] = value;
3569
+ };
3570
+ }
3571
+
3572
+ function wrap(innerFn, outerFn, self, tryLocsList) {
3573
+ // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.
3574
+ var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;
3575
+ var generator = Object.create(protoGenerator.prototype);
3576
+ var context = new Context(tryLocsList || []);
3577
+
3578
+ // The ._invoke method unifies the implementations of the .next,
3579
+ // .throw, and .return methods.
3580
+ generator._invoke = makeInvokeMethod(innerFn, self, context);
3581
+
3582
+ return generator;
3583
+ }
3584
+ exports.wrap = wrap;
3585
+
3586
+ // Try/catch helper to minimize deoptimizations. Returns a completion
3587
+ // record like context.tryEntries[i].completion. This interface could
3588
+ // have been (and was previously) designed to take a closure to be
3589
+ // invoked without arguments, but in all the cases we care about we
3590
+ // already have an existing method we want to call, so there's no need
3591
+ // to create a new function object. We can even get away with assuming
3592
+ // the method takes exactly one argument, since that happens to be true
3593
+ // in every case, so we don't have to touch the arguments object. The
3594
+ // only additional allocation required is the completion record, which
3595
+ // has a stable shape and so hopefully should be cheap to allocate.
3596
+ function tryCatch(fn, obj, arg) {
3597
+ try {
3598
+ return { type: "normal", arg: fn.call(obj, arg) };
3599
+ } catch (err) {
3600
+ return { type: "throw", arg: err };
3601
+ }
3602
+ }
3603
+
3604
+ var GenStateSuspendedStart = "suspendedStart";
3605
+ var GenStateSuspendedYield = "suspendedYield";
3606
+ var GenStateExecuting = "executing";
3607
+ var GenStateCompleted = "completed";
3608
+
3609
+ // Returning this object from the innerFn has the same effect as
3610
+ // breaking out of the dispatch switch statement.
3611
+ var ContinueSentinel = {};
3612
+
3613
+ // Dummy constructor functions that we use as the .constructor and
3614
+ // .constructor.prototype properties for functions that return Generator
3615
+ // objects. For full spec compliance, you may wish to configure your
3616
+ // minifier not to mangle the names of these two functions.
3617
+ function Generator() {}
3618
+ function GeneratorFunction() {}
3619
+ function GeneratorFunctionPrototype() {}
3620
+
3621
+ // This is a polyfill for %IteratorPrototype% for environments that
3622
+ // don't natively support it.
3623
+ var IteratorPrototype = {};
3624
+ define(IteratorPrototype, iteratorSymbol, function () {
3625
+ return this;
3626
+ });
3627
+
3628
+ var getProto = Object.getPrototypeOf;
3629
+ var NativeIteratorPrototype = getProto && getProto(getProto(values([])));
3630
+ if (NativeIteratorPrototype &&
3631
+ NativeIteratorPrototype !== Op &&
3632
+ hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {
3633
+ // This environment has a native %IteratorPrototype%; use it instead
3634
+ // of the polyfill.
3635
+ IteratorPrototype = NativeIteratorPrototype;
3636
+ }
3637
+
3638
+ var Gp = GeneratorFunctionPrototype.prototype =
3639
+ Generator.prototype = Object.create(IteratorPrototype);
3640
+ GeneratorFunction.prototype = GeneratorFunctionPrototype;
3641
+ define(Gp, "constructor", GeneratorFunctionPrototype);
3642
+ define(GeneratorFunctionPrototype, "constructor", GeneratorFunction);
3643
+ GeneratorFunction.displayName = define(
3644
+ GeneratorFunctionPrototype,
3645
+ toStringTagSymbol,
3646
+ "GeneratorFunction"
3647
+ );
3648
+
3649
+ // Helper for defining the .next, .throw, and .return methods of the
3650
+ // Iterator interface in terms of a single ._invoke method.
3651
+ function defineIteratorMethods(prototype) {
3652
+ ["next", "throw", "return"].forEach(function(method) {
3653
+ define(prototype, method, function(arg) {
3654
+ return this._invoke(method, arg);
3655
+ });
3656
+ });
3657
+ }
3658
+
3659
+ exports.isGeneratorFunction = function(genFun) {
3660
+ var ctor = typeof genFun === "function" && genFun.constructor;
3661
+ return ctor
3662
+ ? ctor === GeneratorFunction ||
3663
+ // For the native GeneratorFunction constructor, the best we can
3664
+ // do is to check its .name property.
3665
+ (ctor.displayName || ctor.name) === "GeneratorFunction"
3666
+ : false;
3667
+ };
3668
+
3669
+ exports.mark = function(genFun) {
3670
+ if (Object.setPrototypeOf) {
3671
+ Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);
3672
+ } else {
3673
+ genFun.__proto__ = GeneratorFunctionPrototype;
3674
+ define(genFun, toStringTagSymbol, "GeneratorFunction");
3675
+ }
3676
+ genFun.prototype = Object.create(Gp);
3677
+ return genFun;
3678
+ };
3679
+
3680
+ // Within the body of any async function, `await x` is transformed to
3681
+ // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test
3682
+ // `hasOwn.call(value, "__await")` to determine if the yielded value is
3683
+ // meant to be awaited.
3684
+ exports.awrap = function(arg) {
3685
+ return { __await: arg };
3686
+ };
3687
+
3688
+ function AsyncIterator(generator, PromiseImpl) {
3689
+ function invoke(method, arg, resolve, reject) {
3690
+ var record = tryCatch(generator[method], generator, arg);
3691
+ if (record.type === "throw") {
3692
+ reject(record.arg);
3693
+ } else {
3694
+ var result = record.arg;
3695
+ var value = result.value;
3696
+ if (value &&
3697
+ typeof value === "object" &&
3698
+ hasOwn.call(value, "__await")) {
3699
+ return PromiseImpl.resolve(value.__await).then(function(value) {
3700
+ invoke("next", value, resolve, reject);
3701
+ }, function(err) {
3702
+ invoke("throw", err, resolve, reject);
3703
+ });
3704
+ }
3705
+
3706
+ return PromiseImpl.resolve(value).then(function(unwrapped) {
3707
+ // When a yielded Promise is resolved, its final value becomes
3708
+ // the .value of the Promise<{value,done}> result for the
3709
+ // current iteration.
3710
+ result.value = unwrapped;
3711
+ resolve(result);
3712
+ }, function(error) {
3713
+ // If a rejected Promise was yielded, throw the rejection back
3714
+ // into the async generator function so it can be handled there.
3715
+ return invoke("throw", error, resolve, reject);
3716
+ });
3717
+ }
3718
+ }
3719
+
3720
+ var previousPromise;
3721
+
3722
+ function enqueue(method, arg) {
3723
+ function callInvokeWithMethodAndArg() {
3724
+ return new PromiseImpl(function(resolve, reject) {
3725
+ invoke(method, arg, resolve, reject);
3726
+ });
3727
+ }
3728
+
3729
+ return previousPromise =
3730
+ // If enqueue has been called before, then we want to wait until
3731
+ // all previous Promises have been resolved before calling invoke,
3732
+ // so that results are always delivered in the correct order. If
3733
+ // enqueue has not been called before, then it is important to
3734
+ // call invoke immediately, without waiting on a callback to fire,
3735
+ // so that the async generator function has the opportunity to do
3736
+ // any necessary setup in a predictable way. This predictability
3737
+ // is why the Promise constructor synchronously invokes its
3738
+ // executor callback, and why async functions synchronously
3739
+ // execute code before the first await. Since we implement simple
3740
+ // async functions in terms of async generators, it is especially
3741
+ // important to get this right, even though it requires care.
3742
+ previousPromise ? previousPromise.then(
3743
+ callInvokeWithMethodAndArg,
3744
+ // Avoid propagating failures to Promises returned by later
3745
+ // invocations of the iterator.
3746
+ callInvokeWithMethodAndArg
3747
+ ) : callInvokeWithMethodAndArg();
3748
+ }
3749
+
3750
+ // Define the unified helper method that is used to implement .next,
3751
+ // .throw, and .return (see defineIteratorMethods).
3752
+ this._invoke = enqueue;
3753
+ }
3754
+
3755
+ defineIteratorMethods(AsyncIterator.prototype);
3756
+ define(AsyncIterator.prototype, asyncIteratorSymbol, function () {
3757
+ return this;
3758
+ });
3759
+ exports.AsyncIterator = AsyncIterator;
3760
+
3761
+ // Note that simple async functions are implemented on top of
3762
+ // AsyncIterator objects; they just return a Promise for the value of
3763
+ // the final result produced by the iterator.
3764
+ exports.async = function(innerFn, outerFn, self, tryLocsList, PromiseImpl) {
3765
+ if (PromiseImpl === void 0) PromiseImpl = Promise;
3766
+
3767
+ var iter = new AsyncIterator(
3768
+ wrap(innerFn, outerFn, self, tryLocsList),
3769
+ PromiseImpl
3770
+ );
3771
+
3772
+ return exports.isGeneratorFunction(outerFn)
3773
+ ? iter // If outerFn is a generator, return the full iterator.
3774
+ : iter.next().then(function(result) {
3775
+ return result.done ? result.value : iter.next();
3776
+ });
3777
+ };
3778
+
3779
+ function makeInvokeMethod(innerFn, self, context) {
3780
+ var state = GenStateSuspendedStart;
3781
+
3782
+ return function invoke(method, arg) {
3783
+ if (state === GenStateExecuting) {
3784
+ throw new Error("Generator is already running");
3785
+ }
3786
+
3787
+ if (state === GenStateCompleted) {
3788
+ if (method === "throw") {
3789
+ throw arg;
3790
+ }
3791
+
3792
+ // Be forgiving, per 25.3.3.3.3 of the spec:
3793
+ // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume
3794
+ return doneResult();
3795
+ }
3796
+
3797
+ context.method = method;
3798
+ context.arg = arg;
3799
+
3800
+ while (true) {
3801
+ var delegate = context.delegate;
3802
+ if (delegate) {
3803
+ var delegateResult = maybeInvokeDelegate(delegate, context);
3804
+ if (delegateResult) {
3805
+ if (delegateResult === ContinueSentinel) continue;
3806
+ return delegateResult;
3807
+ }
3808
+ }
3809
+
3810
+ if (context.method === "next") {
3811
+ // Setting context._sent for legacy support of Babel's
3812
+ // function.sent implementation.
3813
+ context.sent = context._sent = context.arg;
3814
+
3815
+ } else if (context.method === "throw") {
3816
+ if (state === GenStateSuspendedStart) {
3817
+ state = GenStateCompleted;
3818
+ throw context.arg;
3819
+ }
3820
+
3821
+ context.dispatchException(context.arg);
3822
+
3823
+ } else if (context.method === "return") {
3824
+ context.abrupt("return", context.arg);
3825
+ }
3826
+
3827
+ state = GenStateExecuting;
3828
+
3829
+ var record = tryCatch(innerFn, self, context);
3830
+ if (record.type === "normal") {
3831
+ // If an exception is thrown from innerFn, we leave state ===
3832
+ // GenStateExecuting and loop back for another invocation.
3833
+ state = context.done
3834
+ ? GenStateCompleted
3835
+ : GenStateSuspendedYield;
3836
+
3837
+ if (record.arg === ContinueSentinel) {
3838
+ continue;
3839
+ }
3840
+
3841
+ return {
3842
+ value: record.arg,
3843
+ done: context.done
3844
+ };
3845
+
3846
+ } else if (record.type === "throw") {
3847
+ state = GenStateCompleted;
3848
+ // Dispatch the exception by looping back around to the
3849
+ // context.dispatchException(context.arg) call above.
3850
+ context.method = "throw";
3851
+ context.arg = record.arg;
3852
+ }
3853
+ }
3854
+ };
3855
+ }
3856
+
3857
+ // Call delegate.iterator[context.method](context.arg) and handle the
3858
+ // result, either by returning a { value, done } result from the
3859
+ // delegate iterator, or by modifying context.method and context.arg,
3860
+ // setting context.delegate to null, and returning the ContinueSentinel.
3861
+ function maybeInvokeDelegate(delegate, context) {
3862
+ var method = delegate.iterator[context.method];
3863
+ if (method === undefined) {
3864
+ // A .throw or .return when the delegate iterator has no .throw
3865
+ // method always terminates the yield* loop.
3866
+ context.delegate = null;
3867
+
3868
+ if (context.method === "throw") {
3869
+ // Note: ["return"] must be used for ES3 parsing compatibility.
3870
+ if (delegate.iterator["return"]) {
3871
+ // If the delegate iterator has a return method, give it a
3872
+ // chance to clean up.
3873
+ context.method = "return";
3874
+ context.arg = undefined;
3875
+ maybeInvokeDelegate(delegate, context);
3876
+
3877
+ if (context.method === "throw") {
3878
+ // If maybeInvokeDelegate(context) changed context.method from
3879
+ // "return" to "throw", let that override the TypeError below.
3880
+ return ContinueSentinel;
3881
+ }
3882
+ }
3883
+
3884
+ context.method = "throw";
3885
+ context.arg = new TypeError(
3886
+ "The iterator does not provide a 'throw' method");
3887
+ }
3888
+
3889
+ return ContinueSentinel;
3890
+ }
3891
+
3892
+ var record = tryCatch(method, delegate.iterator, context.arg);
3893
+
3894
+ if (record.type === "throw") {
3895
+ context.method = "throw";
3896
+ context.arg = record.arg;
3897
+ context.delegate = null;
3898
+ return ContinueSentinel;
3899
+ }
3900
+
3901
+ var info = record.arg;
3902
+
3903
+ if (! info) {
3904
+ context.method = "throw";
3905
+ context.arg = new TypeError("iterator result is not an object");
3906
+ context.delegate = null;
3907
+ return ContinueSentinel;
3908
+ }
3909
+
3910
+ if (info.done) {
3911
+ // Assign the result of the finished delegate to the temporary
3912
+ // variable specified by delegate.resultName (see delegateYield).
3913
+ context[delegate.resultName] = info.value;
3914
+
3915
+ // Resume execution at the desired location (see delegateYield).
3916
+ context.next = delegate.nextLoc;
3917
+
3918
+ // If context.method was "throw" but the delegate handled the
3919
+ // exception, let the outer generator proceed normally. If
3920
+ // context.method was "next", forget context.arg since it has been
3921
+ // "consumed" by the delegate iterator. If context.method was
3922
+ // "return", allow the original .return call to continue in the
3923
+ // outer generator.
3924
+ if (context.method !== "return") {
3925
+ context.method = "next";
3926
+ context.arg = undefined;
3927
+ }
3928
+
3929
+ } else {
3930
+ // Re-yield the result returned by the delegate method.
3931
+ return info;
3932
+ }
3933
+
3934
+ // The delegate iterator is finished, so forget it and continue with
3935
+ // the outer generator.
3936
+ context.delegate = null;
3937
+ return ContinueSentinel;
3938
+ }
3939
+
3940
+ // Define Generator.prototype.{next,throw,return} in terms of the
3941
+ // unified ._invoke helper method.
3942
+ defineIteratorMethods(Gp);
3943
+
3944
+ define(Gp, toStringTagSymbol, "Generator");
3945
+
3946
+ // A Generator should always return itself as the iterator object when the
3947
+ // @@iterator function is called on it. Some browsers' implementations of the
3948
+ // iterator prototype chain incorrectly implement this, causing the Generator
3949
+ // object to not be returned from this call. This ensures that doesn't happen.
3950
+ // See https://github.com/facebook/regenerator/issues/274 for more details.
3951
+ define(Gp, iteratorSymbol, function() {
3952
+ return this;
3953
+ });
3954
+
3955
+ define(Gp, "toString", function() {
3956
+ return "[object Generator]";
3957
+ });
3958
+
3959
+ function pushTryEntry(locs) {
3960
+ var entry = { tryLoc: locs[0] };
3961
+
3962
+ if (1 in locs) {
3963
+ entry.catchLoc = locs[1];
3964
+ }
3965
+
3966
+ if (2 in locs) {
3967
+ entry.finallyLoc = locs[2];
3968
+ entry.afterLoc = locs[3];
3969
+ }
3970
+
3971
+ this.tryEntries.push(entry);
3972
+ }
3973
+
3974
+ function resetTryEntry(entry) {
3975
+ var record = entry.completion || {};
3976
+ record.type = "normal";
3977
+ delete record.arg;
3978
+ entry.completion = record;
3979
+ }
3980
+
3981
+ function Context(tryLocsList) {
3982
+ // The root entry object (effectively a try statement without a catch
3983
+ // or a finally block) gives us a place to store values thrown from
3984
+ // locations where there is no enclosing try statement.
3985
+ this.tryEntries = [{ tryLoc: "root" }];
3986
+ tryLocsList.forEach(pushTryEntry, this);
3987
+ this.reset(true);
3988
+ }
3989
+
3990
+ exports.keys = function(object) {
3991
+ var keys = [];
3992
+ for (var key in object) {
3993
+ keys.push(key);
3994
+ }
3995
+ keys.reverse();
3996
+
3997
+ // Rather than returning an object with a next method, we keep
3998
+ // things simple and return the next function itself.
3999
+ return function next() {
4000
+ while (keys.length) {
4001
+ var key = keys.pop();
4002
+ if (key in object) {
4003
+ next.value = key;
4004
+ next.done = false;
4005
+ return next;
4006
+ }
4007
+ }
4008
+
4009
+ // To avoid creating an additional object, we just hang the .value
4010
+ // and .done properties off the next function object itself. This
4011
+ // also ensures that the minifier will not anonymize the function.
4012
+ next.done = true;
4013
+ return next;
4014
+ };
4015
+ };
4016
+
4017
+ function values(iterable) {
4018
+ if (iterable) {
4019
+ var iteratorMethod = iterable[iteratorSymbol];
4020
+ if (iteratorMethod) {
4021
+ return iteratorMethod.call(iterable);
4022
+ }
4023
+
4024
+ if (typeof iterable.next === "function") {
4025
+ return iterable;
4026
+ }
4027
+
4028
+ if (!isNaN(iterable.length)) {
4029
+ var i = -1, next = function next() {
4030
+ while (++i < iterable.length) {
4031
+ if (hasOwn.call(iterable, i)) {
4032
+ next.value = iterable[i];
4033
+ next.done = false;
4034
+ return next;
4035
+ }
4036
+ }
4037
+
4038
+ next.value = undefined;
4039
+ next.done = true;
4040
+
4041
+ return next;
4042
+ };
4043
+
4044
+ return next.next = next;
4045
+ }
4046
+ }
4047
+
4048
+ // Return an iterator with no values.
4049
+ return { next: doneResult };
4050
+ }
4051
+ exports.values = values;
4052
+
4053
+ function doneResult() {
4054
+ return { value: undefined, done: true };
4055
+ }
4056
+
4057
+ Context.prototype = {
4058
+ constructor: Context,
4059
+
4060
+ reset: function(skipTempReset) {
4061
+ this.prev = 0;
4062
+ this.next = 0;
4063
+ // Resetting context._sent for legacy support of Babel's
4064
+ // function.sent implementation.
4065
+ this.sent = this._sent = undefined;
4066
+ this.done = false;
4067
+ this.delegate = null;
4068
+
4069
+ this.method = "next";
4070
+ this.arg = undefined;
4071
+
4072
+ this.tryEntries.forEach(resetTryEntry);
4073
+
4074
+ if (!skipTempReset) {
4075
+ for (var name in this) {
4076
+ // Not sure about the optimal order of these conditions:
4077
+ if (name.charAt(0) === "t" &&
4078
+ hasOwn.call(this, name) &&
4079
+ !isNaN(+name.slice(1))) {
4080
+ this[name] = undefined;
4081
+ }
4082
+ }
4083
+ }
4084
+ },
4085
+
4086
+ stop: function() {
4087
+ this.done = true;
4088
+
4089
+ var rootEntry = this.tryEntries[0];
4090
+ var rootRecord = rootEntry.completion;
4091
+ if (rootRecord.type === "throw") {
4092
+ throw rootRecord.arg;
4093
+ }
4094
+
4095
+ return this.rval;
4096
+ },
4097
+
4098
+ dispatchException: function(exception) {
4099
+ if (this.done) {
4100
+ throw exception;
4101
+ }
4102
+
4103
+ var context = this;
4104
+ function handle(loc, caught) {
4105
+ record.type = "throw";
4106
+ record.arg = exception;
4107
+ context.next = loc;
4108
+
4109
+ if (caught) {
4110
+ // If the dispatched exception was caught by a catch block,
4111
+ // then let that catch block handle the exception normally.
4112
+ context.method = "next";
4113
+ context.arg = undefined;
4114
+ }
4115
+
4116
+ return !! caught;
4117
+ }
4118
+
4119
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
4120
+ var entry = this.tryEntries[i];
4121
+ var record = entry.completion;
4122
+
4123
+ if (entry.tryLoc === "root") {
4124
+ // Exception thrown outside of any try block that could handle
4125
+ // it, so set the completion value of the entire function to
4126
+ // throw the exception.
4127
+ return handle("end");
4128
+ }
4129
+
4130
+ if (entry.tryLoc <= this.prev) {
4131
+ var hasCatch = hasOwn.call(entry, "catchLoc");
4132
+ var hasFinally = hasOwn.call(entry, "finallyLoc");
4133
+
4134
+ if (hasCatch && hasFinally) {
4135
+ if (this.prev < entry.catchLoc) {
4136
+ return handle(entry.catchLoc, true);
4137
+ } else if (this.prev < entry.finallyLoc) {
4138
+ return handle(entry.finallyLoc);
4139
+ }
4140
+
4141
+ } else if (hasCatch) {
4142
+ if (this.prev < entry.catchLoc) {
4143
+ return handle(entry.catchLoc, true);
4144
+ }
4145
+
4146
+ } else if (hasFinally) {
4147
+ if (this.prev < entry.finallyLoc) {
4148
+ return handle(entry.finallyLoc);
4149
+ }
4150
+
4151
+ } else {
4152
+ throw new Error("try statement without catch or finally");
4153
+ }
4154
+ }
4155
+ }
4156
+ },
4157
+
4158
+ abrupt: function(type, arg) {
4159
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
4160
+ var entry = this.tryEntries[i];
4161
+ if (entry.tryLoc <= this.prev &&
4162
+ hasOwn.call(entry, "finallyLoc") &&
4163
+ this.prev < entry.finallyLoc) {
4164
+ var finallyEntry = entry;
4165
+ break;
4166
+ }
4167
+ }
4168
+
4169
+ if (finallyEntry &&
4170
+ (type === "break" ||
4171
+ type === "continue") &&
4172
+ finallyEntry.tryLoc <= arg &&
4173
+ arg <= finallyEntry.finallyLoc) {
4174
+ // Ignore the finally entry if control is not jumping to a
4175
+ // location outside the try/catch block.
4176
+ finallyEntry = null;
4177
+ }
4178
+
4179
+ var record = finallyEntry ? finallyEntry.completion : {};
4180
+ record.type = type;
4181
+ record.arg = arg;
4182
+
4183
+ if (finallyEntry) {
4184
+ this.method = "next";
4185
+ this.next = finallyEntry.finallyLoc;
4186
+ return ContinueSentinel;
4187
+ }
4188
+
4189
+ return this.complete(record);
4190
+ },
4191
+
4192
+ complete: function(record, afterLoc) {
4193
+ if (record.type === "throw") {
4194
+ throw record.arg;
4195
+ }
4196
+
4197
+ if (record.type === "break" ||
4198
+ record.type === "continue") {
4199
+ this.next = record.arg;
4200
+ } else if (record.type === "return") {
4201
+ this.rval = this.arg = record.arg;
4202
+ this.method = "return";
4203
+ this.next = "end";
4204
+ } else if (record.type === "normal" && afterLoc) {
4205
+ this.next = afterLoc;
4206
+ }
4207
+
4208
+ return ContinueSentinel;
4209
+ },
4210
+
4211
+ finish: function(finallyLoc) {
4212
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
4213
+ var entry = this.tryEntries[i];
4214
+ if (entry.finallyLoc === finallyLoc) {
4215
+ this.complete(entry.completion, entry.afterLoc);
4216
+ resetTryEntry(entry);
4217
+ return ContinueSentinel;
4218
+ }
4219
+ }
4220
+ },
4221
+
4222
+ "catch": function(tryLoc) {
4223
+ for (var i = this.tryEntries.length - 1; i >= 0; --i) {
4224
+ var entry = this.tryEntries[i];
4225
+ if (entry.tryLoc === tryLoc) {
4226
+ var record = entry.completion;
4227
+ if (record.type === "throw") {
4228
+ var thrown = record.arg;
4229
+ resetTryEntry(entry);
4230
+ }
4231
+ return thrown;
4232
+ }
4233
+ }
4234
+
4235
+ // The context.catch method must only be called with a location
4236
+ // argument that corresponds to a known catch block.
4237
+ throw new Error("illegal catch attempt");
4238
+ },
4239
+
4240
+ delegateYield: function(iterable, resultName, nextLoc) {
4241
+ this.delegate = {
4242
+ iterator: values(iterable),
4243
+ resultName: resultName,
4244
+ nextLoc: nextLoc
4245
+ };
4246
+
4247
+ if (this.method === "next") {
4248
+ // Deliberately forget the last sent value so that we don't
4249
+ // accidentally pass it on to the delegate.
4250
+ this.arg = undefined;
4251
+ }
4252
+
4253
+ return ContinueSentinel;
4254
+ }
4255
+ };
4256
+
4257
+ // Regardless of whether this script is executing as a CommonJS module
4258
+ // or not, return the runtime object so that we can declare the variable
4259
+ // regeneratorRuntime in the outer scope, which allows this module to be
4260
+ // injected easily by `bin/regenerator --include-runtime script.js`.
4261
+ return exports;
4262
+
4263
+ }(
4264
+ // If this script is executing as a CommonJS module, use module.exports
4265
+ // as the regeneratorRuntime namespace. Otherwise create a new empty
4266
+ // object. Either way, the resulting object will be used to initialize
4267
+ // the regeneratorRuntime variable at the top of this file.
4268
+ true ? module.exports : undefined
4269
+ ));
4270
+
4271
+ try {
4272
+ regeneratorRuntime = runtime;
4273
+ } catch (accidentalStrictMode) {
4274
+ // This module should not be running in strict mode, so the above
4275
+ // assignment should always work unless something is misconfigured. Just
4276
+ // in case runtime.js accidentally runs in strict mode, in modern engines
4277
+ // we can explicitly access globalThis. In older engines we can escape
4278
+ // strict mode using a global Function call. This could conceivably fail
4279
+ // if a Content Security Policy forbids using Function, but in that case
4280
+ // the proper solution is to fix the accidental strict mode problem. If
4281
+ // you've misconfigured your bundler to force strict mode and applied a
4282
+ // CSP to forbid Function, and you're not willing to fix either of those
4283
+ // problems, please detail your unique predicament in a GitHub issue.
4284
+ if (typeof globalThis === "object") {
4285
+ globalThis.regeneratorRuntime = runtime;
4286
+ } else {
4287
+ Function("r", "regeneratorRuntime = r")(runtime);
4288
+ }
4289
+ }
4290
+
4291
+
3340
4292
  /***/ }),
3341
4293
 
3342
4294
  /***/ "99af":
@@ -3542,20 +4494,6 @@ module.exports = function (argument) {
3542
4494
  };
3543
4495
 
3544
4496
 
3545
- /***/ }),
3546
-
3547
- /***/ "a2ac":
3548
- /***/ (function(module, exports, __webpack_require__) {
3549
-
3550
- // Imports
3551
- var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
3552
- exports = ___CSS_LOADER_API_IMPORT___(false);
3553
- // Module
3554
- exports.push([module.i, ".events-container[data-v-67c526bd]{height:200px;height:100%;position:relative}.event[data-v-67c526bd]{z-index:1;display:inline-block;background-color:#673ab7;color:#fff;position:absolute;border-radius:3px;padding:4px 4px;overflow:hidden;box-sizing:border-box;white-space:nowrap;display:flex;align-items:center;height:34px;cursor:pointer;border:.5px solid #fff;transition:all .25s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.event .event_drag[data-v-67c526bd]{min-width:10px}.event_title[data-v-67c526bd]{flex-grow:1;text-align:start;min-width:0;font-size:12px}.event[data-v-67c526bd]:hover{box-shadow:0 1px 4px rgba(0,0,0,.16)}.collaped_sidebar[data-v-67c526bd]{min-width:50px!important}.hide_segment[data-v-67c526bd]{--translate-x:0px!important}.noselect[data-v-67c526bd]{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.by-scroll-container[data-v-67c526bd]::-webkit-scrollbar-track{background-color:#fff}.by-scroll-container[data-v-67c526bd]::-webkit-scrollbar{width:10px;height:10px;background-color:#f5f5f5}.by-scroll-container[data-v-67c526bd]::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#999}", ""]);
3555
- // Exports
3556
- module.exports = exports;
3557
-
3558
-
3559
4497
  /***/ }),
3560
4498
 
3561
4499
  /***/ "a434":
@@ -3634,6 +4572,16 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
3634
4572
  });
3635
4573
 
3636
4574
 
4575
+ /***/ }),
4576
+
4577
+ /***/ "a4b4":
4578
+ /***/ (function(module, exports, __webpack_require__) {
4579
+
4580
+ var userAgent = __webpack_require__("342f");
4581
+
4582
+ module.exports = /web0s(?!.*chrome)/i.test(userAgent);
4583
+
4584
+
3637
4585
  /***/ }),
3638
4586
 
3639
4587
  /***/ "a4d3":
@@ -4201,6 +5149,98 @@ if (DESCRIPTORS && !FUNCTION_NAME_EXISTS) {
4201
5149
  }
4202
5150
 
4203
5151
 
5152
+ /***/ }),
5153
+
5154
+ /***/ "b575":
5155
+ /***/ (function(module, exports, __webpack_require__) {
5156
+
5157
+ var global = __webpack_require__("da84");
5158
+ var bind = __webpack_require__("0366");
5159
+ var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
5160
+ var macrotask = __webpack_require__("2cf4").set;
5161
+ var IS_IOS = __webpack_require__("1cdc");
5162
+ var IS_IOS_PEBBLE = __webpack_require__("d4c3");
5163
+ var IS_WEBOS_WEBKIT = __webpack_require__("a4b4");
5164
+ var IS_NODE = __webpack_require__("605d");
5165
+
5166
+ var MutationObserver = global.MutationObserver || global.WebKitMutationObserver;
5167
+ var document = global.document;
5168
+ var process = global.process;
5169
+ var Promise = global.Promise;
5170
+ // Node.js 11 shows ExperimentalWarning on getting `queueMicrotask`
5171
+ var queueMicrotaskDescriptor = getOwnPropertyDescriptor(global, 'queueMicrotask');
5172
+ var queueMicrotask = queueMicrotaskDescriptor && queueMicrotaskDescriptor.value;
5173
+
5174
+ var flush, head, last, notify, toggle, node, promise, then;
5175
+
5176
+ // modern engines have queueMicrotask method
5177
+ if (!queueMicrotask) {
5178
+ flush = function () {
5179
+ var parent, fn;
5180
+ if (IS_NODE && (parent = process.domain)) parent.exit();
5181
+ while (head) {
5182
+ fn = head.fn;
5183
+ head = head.next;
5184
+ try {
5185
+ fn();
5186
+ } catch (error) {
5187
+ if (head) notify();
5188
+ else last = undefined;
5189
+ throw error;
5190
+ }
5191
+ } last = undefined;
5192
+ if (parent) parent.enter();
5193
+ };
5194
+
5195
+ // browsers with MutationObserver, except iOS - https://github.com/zloirock/core-js/issues/339
5196
+ // also except WebOS Webkit https://github.com/zloirock/core-js/issues/898
5197
+ if (!IS_IOS && !IS_NODE && !IS_WEBOS_WEBKIT && MutationObserver && document) {
5198
+ toggle = true;
5199
+ node = document.createTextNode('');
5200
+ new MutationObserver(flush).observe(node, { characterData: true });
5201
+ notify = function () {
5202
+ node.data = toggle = !toggle;
5203
+ };
5204
+ // environments with maybe non-completely correct, but existent Promise
5205
+ } else if (!IS_IOS_PEBBLE && Promise && Promise.resolve) {
5206
+ // Promise.resolve without an argument throws an error in LG WebOS 2
5207
+ promise = Promise.resolve(undefined);
5208
+ // workaround of WebKit ~ iOS Safari 10.1 bug
5209
+ promise.constructor = Promise;
5210
+ then = bind(promise.then, promise);
5211
+ notify = function () {
5212
+ then(flush);
5213
+ };
5214
+ // Node.js without promises
5215
+ } else if (IS_NODE) {
5216
+ notify = function () {
5217
+ process.nextTick(flush);
5218
+ };
5219
+ // for other environments - macrotask based on:
5220
+ // - setImmediate
5221
+ // - MessageChannel
5222
+ // - window.postMessag
5223
+ // - onreadystatechange
5224
+ // - setTimeout
5225
+ } else {
5226
+ // strange IE + webpack dev server bug - use .bind(global)
5227
+ macrotask = bind(macrotask, global);
5228
+ notify = function () {
5229
+ macrotask(flush);
5230
+ };
5231
+ }
5232
+ }
5233
+
5234
+ module.exports = queueMicrotask || function (fn) {
5235
+ var task = { fn: fn, next: undefined };
5236
+ if (last) last.next = task;
5237
+ if (!head) {
5238
+ head = task;
5239
+ notify();
5240
+ } last = task;
5241
+ };
5242
+
5243
+
4204
5244
  /***/ }),
4205
5245
 
4206
5246
  /***/ "b622":
@@ -4312,6 +5352,17 @@ module.exports = {
4312
5352
  };
4313
5353
 
4314
5354
 
5355
+ /***/ }),
5356
+
5357
+ /***/ "b967":
5358
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
5359
+
5360
+ "use strict";
5361
+ /* 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_1f27e363_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("c379");
5362
+ /* 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_1f27e363_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_1f27e363_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__);
5363
+ /* unused harmony reexport * */
5364
+
5365
+
4315
5366
  /***/ }),
4316
5367
 
4317
5368
  /***/ "bb2f":
@@ -4325,6 +5376,20 @@ module.exports = !fails(function () {
4325
5376
  });
4326
5377
 
4327
5378
 
5379
+ /***/ }),
5380
+
5381
+ /***/ "bc71":
5382
+ /***/ (function(module, exports, __webpack_require__) {
5383
+
5384
+ // Imports
5385
+ var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
5386
+ exports = ___CSS_LOADER_API_IMPORT___(false);
5387
+ // Module
5388
+ exports.push([module.i, ".events-container[data-v-649f6daa]{height:200px;height:100%;position:relative}.event[data-v-649f6daa]{z-index:1;display:inline-block;background-color:#673ab7;color:#fff;position:absolute;border-radius:3px;padding:4px 4px;overflow:hidden;box-sizing:border-box;white-space:nowrap;display:flex;align-items:center;height:34px;cursor:pointer;border:.5px solid #fff;transition:all .25s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.event .event_drag[data-v-649f6daa]{min-width:10px}.event_title[data-v-649f6daa]{flex-grow:1;text-align:start;min-width:0;font-size:12px}.event[data-v-649f6daa]:hover{box-shadow:0 1px 4px rgba(0,0,0,.16)}.collaped_sidebar[data-v-649f6daa]{min-width:50px!important}.hide_segment[data-v-649f6daa]{--translate-x:0px!important}.noselect[data-v-649f6daa]{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.by-scroll-container[data-v-649f6daa]::-webkit-scrollbar-track{background-color:#fff}.by-scroll-container[data-v-649f6daa]::-webkit-scrollbar{width:10px;height:10px;background-color:#f5f5f5}.by-scroll-container[data-v-649f6daa]::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#999}", ""]);
5389
+ // Exports
5390
+ module.exports = exports;
5391
+
5392
+
4328
5393
  /***/ }),
4329
5394
 
4330
5395
  /***/ "c04e":
@@ -4360,35 +5425,35 @@ module.exports = function (input, pref) {
4360
5425
 
4361
5426
  /***/ }),
4362
5427
 
4363
- /***/ "c195":
5428
+ /***/ "c29a":
4364
5429
  /***/ (function(module, exports, __webpack_require__) {
4365
5430
 
4366
5431
  // style-loader: Adds some css to the DOM by adding a <style> tag
4367
5432
 
4368
5433
  // load the styles
4369
- var content = __webpack_require__("a2ac");
5434
+ var content = __webpack_require__("8ea3");
4370
5435
  if(content.__esModule) content = content.default;
4371
5436
  if(typeof content === 'string') content = [[module.i, content, '']];
4372
5437
  if(content.locals) module.exports = content.locals;
4373
5438
  // add the styles to the DOM
4374
5439
  var add = __webpack_require__("499e").default
4375
- var update = add("6cea9368", content, true, {"sourceMap":false,"shadowMode":false});
5440
+ var update = add("ecc984a8", content, true, {"sourceMap":false,"shadowMode":false});
4376
5441
 
4377
5442
  /***/ }),
4378
5443
 
4379
- /***/ "c29a":
5444
+ /***/ "c379":
4380
5445
  /***/ (function(module, exports, __webpack_require__) {
4381
5446
 
4382
5447
  // style-loader: Adds some css to the DOM by adding a <style> tag
4383
5448
 
4384
5449
  // load the styles
4385
- var content = __webpack_require__("8ea3");
5450
+ var content = __webpack_require__("f184");
4386
5451
  if(content.__esModule) content = content.default;
4387
5452
  if(typeof content === 'string') content = [[module.i, content, '']];
4388
5453
  if(content.locals) module.exports = content.locals;
4389
5454
  // add the styles to the DOM
4390
5455
  var add = __webpack_require__("499e").default
4391
- var update = add("ecc984a8", content, true, {"sourceMap":false,"shadowMode":false});
5456
+ var update = add("0e82a774", content, true, {"sourceMap":false,"shadowMode":false});
4392
5457
 
4393
5458
  /***/ }),
4394
5459
 
@@ -4537,6 +5602,25 @@ module.exports = function (it) {
4537
5602
  /* unused harmony reexport * */
4538
5603
 
4539
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
+
4540
5624
  /***/ }),
4541
5625
 
4542
5626
  /***/ "ce4e":
@@ -4617,20 +5701,6 @@ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
4617
5701
  } : $propertyIsEnumerable;
4618
5702
 
4619
5703
 
4620
- /***/ }),
4621
-
4622
- /***/ "d241":
4623
- /***/ (function(module, exports, __webpack_require__) {
4624
-
4625
- // Imports
4626
- var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
4627
- exports = ___CSS_LOADER_API_IMPORT___(false);
4628
- // Module
4629
- exports.push([module.i, ".events-container[data-v-7998a226]{height:200px;height:100%;position:relative}.event .event_drag[data-v-7998a226]{min-width:10px}.event_title[data-v-7998a226]{flex-grow:1;text-align:start;min-width:0;font-size:12px}.event[data-v-7998a226]:hover{box-shadow:0 1px 4px rgba(0,0,0,.16)}.hide[data-v-7998a226]{min-width:55px!important}.hide_segment[data-v-7998a226]{--translate-x:0px!important}.noselect[data-v-7998a226]{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.by-scroll-container[data-v-7998a226]::-webkit-scrollbar-track{background-color:#fff}.by-scroll-container[data-v-7998a226]::-webkit-scrollbar{width:10px;height:10px;background-color:#f5f5f5}.by-scroll-container[data-v-7998a226]::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#999}", ""]);
4630
- // Exports
4631
- module.exports = exports;
4632
-
4633
-
4634
5704
  /***/ }),
4635
5705
 
4636
5706
  /***/ "d28b":
@@ -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,33 @@ module.exports = function (it) {
5235
6736
  };
5236
6737
 
5237
6738
 
6739
+ /***/ }),
6740
+
6741
+ /***/ "f069":
6742
+ /***/ (function(module, exports, __webpack_require__) {
6743
+
6744
+ "use strict";
6745
+
6746
+ var aCallable = __webpack_require__("59ed");
6747
+
6748
+ var PromiseCapability = function (C) {
6749
+ var resolve, reject;
6750
+ this.promise = new C(function ($$resolve, $$reject) {
6751
+ if (resolve !== undefined || reject !== undefined) throw TypeError('Bad Promise constructor');
6752
+ resolve = $$resolve;
6753
+ reject = $$reject;
6754
+ });
6755
+ this.resolve = aCallable(resolve);
6756
+ this.reject = aCallable(reject);
6757
+ };
6758
+
6759
+ // `NewPromiseCapability` abstract operation
6760
+ // https://tc39.es/ecma262/#sec-newpromisecapability
6761
+ module.exports.f = function (C) {
6762
+ return new PromiseCapability(C);
6763
+ };
6764
+
6765
+
5238
6766
  /***/ }),
5239
6767
 
5240
6768
  /***/ "f183":
@@ -5331,6 +6859,20 @@ var meta = module.exports = {
5331
6859
  hiddenKeys[METADATA] = true;
5332
6860
 
5333
6861
 
6862
+ /***/ }),
6863
+
6864
+ /***/ "f184":
6865
+ /***/ (function(module, exports, __webpack_require__) {
6866
+
6867
+ // Imports
6868
+ var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
6869
+ exports = ___CSS_LOADER_API_IMPORT___(false);
6870
+ // Module
6871
+ exports.push([module.i, ".events-container[data-v-1f27e363]{height:200px;height:100%;position:relative}.event .event_drag[data-v-1f27e363]{min-width:10px}.event_title[data-v-1f27e363]{flex-grow:1;text-align:start;min-width:0;font-size:12px}.event[data-v-1f27e363]:hover{box-shadow:0 1px 4px rgba(0,0,0,.16)}.hide[data-v-1f27e363]{min-width:55px!important}.hide_segment[data-v-1f27e363]{--translate-x:0px!important}.noselect[data-v-1f27e363]{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.by-scroll-container[data-v-1f27e363]::-webkit-scrollbar-track{background-color:#fff}.by-scroll-container[data-v-1f27e363]::-webkit-scrollbar{width:10px;height:10px;background-color:#f5f5f5}.by-scroll-container[data-v-1f27e363]::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#999}", ""]);
6872
+ // Exports
6873
+ module.exports = exports;
6874
+
6875
+
5334
6876
  /***/ }),
5335
6877
 
5336
6878
  /***/ "f36a":
@@ -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=7998a226&scoped=true&
5433
- var gant_boardvue_type_template_id_7998a226_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=1f27e363&scoped=true&
6975
+ var gant_boardvue_type_template_id_1f27e363_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()}
5434
6976
  var staticRenderFns = []
5435
6977
 
5436
6978
 
5437
- // CONCATENATED MODULE: ./src/components/gant-board.vue?vue&type=template&id=7998a226&scoped=true&
6979
+ // CONCATENATED MODULE: ./src/components/gant-board.vue?vue&type=template&id=1f27e363&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
+
6989
+
5438
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
 
@@ -6178,12 +7765,12 @@ var grid_header_component = normalizeComponent(
6178
7765
  )
6179
7766
 
6180
7767
  /* harmony default export */ var grid_header = (grid_header_component.exports);
6181
- // 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/grid-sidebar.vue?vue&type=template&id=67c526bd&scoped=true&
6182
- var grid_sidebarvue_type_template_id_67c526bd_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:{ 'collaped_sidebar': !_vm.segment_view },staticStyle:{"position":"sticky","z-index":"2","height":"100%","display":"flex","left":"0px","top":"0px","min-width":"200px","background-color":"#fff","box-shadow":"rgb(0 0 0 / 43%) 0px -2px 6px"},style:({ 'height': _vm.container_height + 40 + 'px' })},[_c('div',{staticStyle:{"height":"40px","z-index":"1","top":"0px","position":"sticky","background-color":"#ffffff","display":"flex","align-items":"center","padding":"6px"}},[(_vm.segment_view)?_c('div',{staticStyle:{"cursor":"pointer","display":"flex","align-items":"center"},on:{"click":function($event){return _vm.$emit('update:segment_view', false)}}},[_c('svg',{attrs:{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","xmlns":"http://www.w3.org/2000/svg","aria-label":"Chiudi pannello"}},[_c('path',{attrs:{"d":"M15 6L9 12L15 18","stroke":"#444","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}})])]):_vm._e(),(!_vm.segment_view)?_c('div',{staticStyle:{"cursor":"pointer","display":"flex","align-items":"center"},on:{"click":function($event){return _vm.$emit('update:segment_view', true)}}},[_c('svg',{attrs:{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","xmlns":"http://www.w3.org/2000/svg","aria-label":"Apri pannello"}},[_c('path',{attrs:{"d":"M9 6L15 12L9 18","stroke":"#444","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}})])]):_vm._e()]),_vm._l((_vm.render_segments),function(segment){return _c('div',{key:segment.key.team_id + segment.key.team_type,staticStyle:{"position":"absolute","display":"flex","flex-direction":"column","border-bottom":"1px solid #eeeeee","width":"100%"},style:({ 'background-color': '#fff', 'top': segment.top + 40 + 'px', 'height': segment.height + 'px' })},[_c('div',{staticStyle:{"padding":"10px","font-size":"16px","align-items":"center","display":"flex","gap":"5px","white-space":"nowrap"},attrs:{"title":segment.key.name}},[(segment.key.image != null)?_c('img',{staticStyle:{"width":"30px","height":"30px","border-radius":"50%","border":"1.5px solid white","min-width":"30px","min-height":"30px","background-size":"cover"},style:({'background-image': 'url(' + segment.key.image + ')'})}):_c('div',{staticStyle:{"width":"30px","height":"30px","border-radius":"50%","border":"1.5px solid white","min-width":"30px","min-height":"30px","background-color":"#bdbdbd","display":"flex","align-items":"center","justify-content":"center","font-weight":"bold","color":"white","font-size":"16px","background-size":"cover"}},[_vm._v(" "+_vm._s(segment.key.name.charAt(0).toUpperCase())+" ")]),_c('div',{staticStyle:{"text-overflow":"ellipsis","overflow":"hidden"}},[_vm._v(" "+_vm._s(segment.key.name)+" ")])])])})],2)}
6183
- var grid_sidebarvue_type_template_id_67c526bd_scoped_true_staticRenderFns = []
7768
+ // 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/grid-sidebar.vue?vue&type=template&id=649f6daa&scoped=true&
7769
+ var grid_sidebarvue_type_template_id_649f6daa_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:{ 'collaped_sidebar': !_vm.segment_view },staticStyle:{"position":"sticky","z-index":"2","height":"100%","display":"flex","left":"0px","top":"0px","min-width":"200px","background-color":"#fff","box-shadow":"rgb(0 0 0 / 43%) 0px -2px 6px"},style:({ 'height': _vm.container_height + 40 + 'px' })},[_c('div',{staticStyle:{"height":"40px","z-index":"1","top":"0px","position":"sticky","background-color":"#ffffff","display":"flex","align-items":"center","padding":"6px"}},[(_vm.segment_view)?_c('div',{staticStyle:{"cursor":"pointer","display":"flex","align-items":"center"},on:{"click":function($event){return _vm.$emit('update:segment_view', false)}}},[_c('svg',{attrs:{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","xmlns":"http://www.w3.org/2000/svg","aria-label":"Chiudi pannello"}},[_c('path',{attrs:{"d":"M15 6L9 12L15 18","stroke":"#444","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}})])]):_vm._e(),(!_vm.segment_view)?_c('div',{staticStyle:{"cursor":"pointer","display":"flex","align-items":"center"},on:{"click":function($event){return _vm.$emit('update:segment_view', true)}}},[_c('svg',{attrs:{"width":"20","height":"20","viewBox":"0 0 24 24","fill":"none","xmlns":"http://www.w3.org/2000/svg","aria-label":"Apri pannello"}},[_c('path',{attrs:{"d":"M9 6L15 12L9 18","stroke":"#444","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}})])]):_vm._e()]),_vm._l((_vm.render_segments),function(segment){return _c('div',{key:segment.key.team_id + segment.key.team_type,staticStyle:{"position":"absolute","display":"flex","flex-direction":"column","border-bottom":"1px solid #eeeeee","width":"100%"},style:({ 'background-color': '#fff', 'top': segment.top + 40 + 'px', 'height': segment.height + 'px' })},[_c('div',{staticStyle:{"padding":"10px","font-size":"16px","align-items":"center","display":"flex","gap":"5px","white-space":"nowrap"},attrs:{"title":segment.key.name}},[(segment.key.image != null && segment.key.image != '')?_c('img',{staticStyle:{"width":"30px","height":"30px","border-radius":"50%","border":"1.5px solid white","min-width":"30px","min-height":"30px","background-size":"cover"},style:({'background-image': 'url(' + segment.key.image + ')'})}):_c('div',{staticStyle:{"width":"30px","height":"30px","border-radius":"50%","border":"1.5px solid white","min-width":"30px","min-height":"30px","background-color":"#bdbdbd","display":"flex","align-items":"center","justify-content":"center","font-weight":"bold","color":"white","font-size":"16px","background-size":"cover"}},[_vm._v(" "+_vm._s(segment.key.name.charAt(0).toUpperCase())+" ")]),_c('div',{staticStyle:{"text-overflow":"ellipsis","overflow":"hidden"}},[_vm._v(" "+_vm._s(segment.key.name)+" ")])])])})],2)}
7770
+ var grid_sidebarvue_type_template_id_649f6daa_scoped_true_staticRenderFns = []
6184
7771
 
6185
7772
 
6186
- // CONCATENATED MODULE: ./src/components/grid-sidebar.vue?vue&type=template&id=67c526bd&scoped=true&
7773
+ // CONCATENATED MODULE: ./src/components/grid-sidebar.vue?vue&type=template&id=649f6daa&scoped=true&
6187
7774
 
6188
7775
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/grid-sidebar.vue?vue&type=script&lang=js&
6189
7776
  //
@@ -6278,8 +7865,8 @@ var grid_sidebarvue_type_template_id_67c526bd_scoped_true_staticRenderFns = []
6278
7865
  });
6279
7866
  // CONCATENATED MODULE: ./src/components/grid-sidebar.vue?vue&type=script&lang=js&
6280
7867
  /* harmony default export */ var components_grid_sidebarvue_type_script_lang_js_ = (grid_sidebarvue_type_script_lang_js_);
6281
- // EXTERNAL MODULE: ./src/components/grid-sidebar.vue?vue&type=style&index=0&id=67c526bd&scoped=true&lang=css&
6282
- var grid_sidebarvue_type_style_index_0_id_67c526bd_scoped_true_lang_css_ = __webpack_require__("4e2b");
7868
+ // EXTERNAL MODULE: ./src/components/grid-sidebar.vue?vue&type=style&index=0&id=649f6daa&scoped=true&lang=css&
7869
+ var grid_sidebarvue_type_style_index_0_id_649f6daa_scoped_true_lang_css_ = __webpack_require__("5a13");
6283
7870
 
6284
7871
  // CONCATENATED MODULE: ./src/components/grid-sidebar.vue
6285
7872
 
@@ -6292,11 +7879,11 @@ var grid_sidebarvue_type_style_index_0_id_67c526bd_scoped_true_lang_css_ = __web
6292
7879
 
6293
7880
  var grid_sidebar_component = normalizeComponent(
6294
7881
  components_grid_sidebarvue_type_script_lang_js_,
6295
- grid_sidebarvue_type_template_id_67c526bd_scoped_true_render,
6296
- grid_sidebarvue_type_template_id_67c526bd_scoped_true_staticRenderFns,
7882
+ grid_sidebarvue_type_template_id_649f6daa_scoped_true_render,
7883
+ grid_sidebarvue_type_template_id_649f6daa_scoped_true_staticRenderFns,
6297
7884
  false,
6298
7885
  null,
6299
- "67c526bd",
7886
+ "649f6daa",
6300
7887
  null
6301
7888
 
6302
7889
  )
@@ -6590,6 +8177,9 @@ var grid_drag_element_component = normalizeComponent(
6590
8177
 
6591
8178
 
6592
8179
 
8180
+
8181
+
8182
+
6593
8183
  //
6594
8184
  //
6595
8185
  //
@@ -7378,53 +8968,60 @@ var grid_drag_element_component = normalizeComponent(
7378
8968
  this.options.from_start = dayjs_min_default()(this.from_start);
7379
8969
  this.options.to_start = dayjs_min_default()(this.to_start);
7380
8970
  this.render();
7381
- this.$nextTick(function () {
7382
- var _iterator10 = _createForOfIteratorHelper(_this5.render_segments),
7383
- _step10;
8971
+ this.$nextTick( /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
8972
+ var grid_view_ref;
8973
+ return regeneratorRuntime.wrap(function _callee$(_context) {
8974
+ while (1) {
8975
+ switch (_context.prev = _context.next) {
8976
+ case 0:
8977
+ _context.next = 2;
8978
+ return new Promise(function (r) {
8979
+ return setTimeout(r, 500);
8980
+ });
7384
8981
 
7385
- try {
7386
- for (_iterator10.s(); !(_step10 = _iterator10.n()).done;) {
7387
- var segment = _step10.value;
7388
- var grid_view_ref = _this5.$refs['grid_view_' + segment.key.team_id + segment.key.team_type];
8982
+ case 2:
8983
+ if (_this5.render_segments.length > 0) {
8984
+ grid_view_ref = _this5.$refs['grid_view_' + _this5.render_segments[0].key.team_id + _this5.render_segments[0].key.team_type];
7389
8985
 
7390
- if (grid_view_ref && grid_view_ref.length > 0) {
7391
- grid_view_ref[0].scrollToDay(_this5.$refs.scroll_container_wrapper);
7392
- }
7393
- } //this.$refs.grid_view.scrollToDay(this.$refs.scroll_container_wrapper);
8986
+ if (grid_view_ref && grid_view_ref.length > 0) {
8987
+ grid_view_ref[0].scrollToDay(_this5.$refs.scroll_container_wrapper);
8988
+ }
8989
+ }
7394
8990
 
7395
- } catch (err) {
7396
- _iterator10.e(err);
7397
- } finally {
7398
- _iterator10.f();
7399
- }
8991
+ _this5.$refs.scroll_container_wrapper.onscroll = function () {
8992
+ if (_this5.$refs.scroll_container_wrapper.scrollLeft == 0) {
8993
+ var cur_scroll = _this5.$refs.scroll_container_wrapper.scrollWidth;
8994
+ _this5.options.from_start = _this5.options.from_start.add(-1, "months");
7400
8995
 
7401
- _this5.$refs.scroll_container_wrapper.onscroll = function () {
7402
- if (_this5.$refs.scroll_container_wrapper.scrollLeft == 0) {
7403
- var cur_scroll = _this5.$refs.scroll_container_wrapper.scrollWidth;
7404
- _this5.options.from_start = _this5.options.from_start.add(-1, "months");
8996
+ _this5.$emit("update:from_start", _this5.options.from_start.format("YYYY-MM-DD"));
7405
8997
 
7406
- _this5.$emit("update:from_start", _this5.options.from_start.format("YYYY-MM-DD"));
8998
+ _this5.$nextTick(function () {
8999
+ var diff = _this5.$refs.scroll_container_wrapper.scrollWidth - cur_scroll;
9000
+ _this5.$refs.scroll_container_wrapper.scrollLeft = diff; //this.render();
9001
+ });
9002
+ }
7407
9003
 
7408
- _this5.$nextTick(function () {
7409
- var diff = _this5.$refs.scroll_container_wrapper.scrollWidth - cur_scroll;
7410
- _this5.$refs.scroll_container_wrapper.scrollLeft = diff; //this.render();
7411
- });
7412
- }
9004
+ if (_this5.$refs.scroll_container_wrapper.scrollLeft + _this5.$refs.scroll_container_wrapper.offsetWidth > _this5.$refs.scroll_container_wrapper.scrollWidth - 2) {
9005
+ _this5.options.to_start = _this5.options.to_start.add(1, "months");
7413
9006
 
7414
- if (_this5.$refs.scroll_container_wrapper.scrollLeft + _this5.$refs.scroll_container_wrapper.offsetWidth > _this5.$refs.scroll_container_wrapper.scrollWidth - 2) {
7415
- _this5.options.to_start = _this5.options.to_start.add(1, "months");
9007
+ _this5.$emit("update:to_start", _this5.options.to_start.format("YYYY-MM-DD")); //this.render();
7416
9008
 
7417
- _this5.$emit("update:to_start", _this5.options.to_start.format("YYYY-MM-DD")); //this.render();
9009
+ }
9010
+ };
7418
9011
 
9012
+ case 4:
9013
+ case "end":
9014
+ return _context.stop();
9015
+ }
7419
9016
  }
7420
- };
7421
- });
9017
+ }, _callee);
9018
+ })));
7422
9019
  }
7423
9020
  });
7424
9021
  // CONCATENATED MODULE: ./src/components/gant-board.vue?vue&type=script&lang=js&
7425
9022
  /* harmony default export */ var components_gant_boardvue_type_script_lang_js_ = (gant_boardvue_type_script_lang_js_);
7426
- // EXTERNAL MODULE: ./src/components/gant-board.vue?vue&type=style&index=0&id=7998a226&scoped=true&lang=css&
7427
- var gant_boardvue_type_style_index_0_id_7998a226_scoped_true_lang_css_ = __webpack_require__("89b5");
9023
+ // EXTERNAL MODULE: ./src/components/gant-board.vue?vue&type=style&index=0&id=1f27e363&scoped=true&lang=css&
9024
+ var gant_boardvue_type_style_index_0_id_1f27e363_scoped_true_lang_css_ = __webpack_require__("b967");
7428
9025
 
7429
9026
  // CONCATENATED MODULE: ./src/components/gant-board.vue
7430
9027
 
@@ -7437,11 +9034,11 @@ var gant_boardvue_type_style_index_0_id_7998a226_scoped_true_lang_css_ = __webpa
7437
9034
 
7438
9035
  var gant_board_component = normalizeComponent(
7439
9036
  components_gant_boardvue_type_script_lang_js_,
7440
- gant_boardvue_type_template_id_7998a226_scoped_true_render,
9037
+ gant_boardvue_type_template_id_1f27e363_scoped_true_render,
7441
9038
  staticRenderFns,
7442
9039
  false,
7443
9040
  null,
7444
- "7998a226",
9041
+ "1f27e363",
7445
9042
  null
7446
9043
 
7447
9044
  )
@@ -7613,6 +9210,16 @@ module.exports = NATIVE_SYMBOL
7613
9210
  && typeof Symbol.iterator == 'symbol';
7614
9211
 
7615
9212
 
9213
+ /***/ }),
9214
+
9215
+ /***/ "fea9":
9216
+ /***/ (function(module, exports, __webpack_require__) {
9217
+
9218
+ var global = __webpack_require__("da84");
9219
+
9220
+ module.exports = global.Promise;
9221
+
9222
+
7616
9223
  /***/ })
7617
9224
 
7618
9225
  /******/ });