@xatlas/rainbow-core 1.8.5 → 1.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core.common.js +211 -234
- package/dist/core.common.js.map +1 -1
- package/dist/core.css +1 -1
- package/dist/core.umd.js +211 -234
- package/dist/core.umd.js.map +1 -1
- package/dist/core.umd.min.js +4 -4
- package/dist/core.umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/core.common.js
CHANGED
|
@@ -104,6 +104,17 @@ module.exports =
|
|
|
104
104
|
!function(n,t){ true?module.exports=t(__webpack_require__("336c")):undefined}(window,function(n){return function(n){var t={};function e(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return n[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}return e.m=n,e.c=t,e.d=function(n,t,r){e.o(n,t)||Object.defineProperty(n,t,{enumerable:!0,get:r})},e.r=function(n){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(n,"__esModule",{value:!0})},e.t=function(n,t){if(1&t&&(n=e(n)),8&t)return n;if(4&t&&"object"==typeof n&&n&&n.__esModule)return n;var r=Object.create(null);if(e.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:n}),2&t&&"string"!=typeof n)for(var o in n)e.d(r,o,function(t){return n[t]}.bind(null,o));return r},e.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return e.d(t,"a",t),t},e.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},e.p="",e(e.s=587)}([,,,function(t,e){t.exports=n},,,,function(n,t,e){var r;try{r={cloneDeep:e(472),constant:e(103),defaults:e(471),each:e(218),filter:e(215),find:e(470),flatten:e(188),forEach:e(217),forIn:e(466),has:e(204),isUndefined:e(203),last:e(465),map:e(202),mapValues:e(464),max:e(463),merge:e(461),min:e(455),minBy:e(454),now:e(253),pick:e(453),range:e(448),reduce:e(200),sortBy:e(445),uniqueId:e(440),values:e(195),zipObject:e(439)}}catch(n){}r||(r=window._),n.exports=r},,,,function(n,t){var e=Array.isArray;n.exports=e},,,,function(n,t,e){"use strict";var r=e(7),o=e(22).Graph;function i(n,t,e,o){var i;do{i=r.uniqueId(o)}while(n.hasNode(i));return e.dummy=t,n.setNode(i,e),i}function u(n){return r.max(r.map(n.nodes(),function(t){var e=n.node(t).rank;if(!r.isUndefined(e))return e}))}n.exports={addDummyNode:i,simplify:function(n){var t=(new o).setGraph(n.graph());return r.forEach(n.nodes(),function(e){t.setNode(e,n.node(e))}),r.forEach(n.edges(),function(e){var r=t.edge(e.v,e.w)||{weight:0,minlen:1},o=n.edge(e);t.setEdge(e.v,e.w,{weight:r.weight+o.weight,minlen:Math.max(r.minlen,o.minlen)})}),t},asNonCompoundGraph:function(n){var t=new o({multigraph:n.isMultigraph()}).setGraph(n.graph());return r.forEach(n.nodes(),function(e){n.children(e).length||t.setNode(e,n.node(e))}),r.forEach(n.edges(),function(e){t.setEdge(e,n.edge(e))}),t},successorWeights:function(n){var t=r.map(n.nodes(),function(t){var e={};return r.forEach(n.outEdges(t),function(t){e[t.w]=(e[t.w]||0)+n.edge(t).weight}),e});return r.zipObject(n.nodes(),t)},predecessorWeights:function(n){var t=r.map(n.nodes(),function(t){var e={};return r.forEach(n.inEdges(t),function(t){e[t.v]=(e[t.v]||0)+n.edge(t).weight}),e});return r.zipObject(n.nodes(),t)},intersectRect:function(n,t){var e,r,o=n.x,i=n.y,u=t.x-o,a=t.y-i,c=n.width/2,f=n.height/2;if(!u&&!a)throw new Error("Not possible to find intersection inside of the rectangle");Math.abs(a)*c>Math.abs(u)*f?(a<0&&(f=-f),e=f*u/a,r=f):(u<0&&(c=-c),e=c,r=c*a/u);return{x:o+e,y:i+r}},buildLayerMatrix:function(n){var t=r.map(r.range(u(n)+1),function(){return[]});return r.forEach(n.nodes(),function(e){var o=n.node(e),i=o.rank;r.isUndefined(i)||(t[i][o.order]=e)}),t},normalizeRanks:function(n){var t=r.min(r.map(n.nodes(),function(t){return n.node(t).rank}));r.forEach(n.nodes(),function(e){var o=n.node(e);r.has(o,"rank")&&(o.rank-=t)})},removeEmptyRanks:function(n){var t=r.min(r.map(n.nodes(),function(t){return n.node(t).rank})),e=[];r.forEach(n.nodes(),function(r){var o=n.node(r).rank-t;e[o]||(e[o]=[]),e[o].push(r)});var o=0,i=n.graph().nodeRankFactor;r.forEach(e,function(t,e){r.isUndefined(t)&&e%i!=0?--o:o&&r.forEach(t,function(t){n.node(t).rank+=o})})},addBorderNode:function(n,t,e,r){var o={width:0,height:0};arguments.length>=4&&(o.rank=e,o.order=r);return i(n,"border",o,t)},maxRank:u,partition:function(n,t){var e={lhs:[],rhs:[]};return r.forEach(n,function(n){t(n)?e.lhs.push(n):e.rhs.push(n)}),e},time:function(n,t){var e=r.now();try{return t()}finally{console.log(n+" time: "+(r.now()-e)+"ms")}},notime:function(n,t){return t()}}},function(n,t){n.exports=function(n){var t=typeof n;return null!=n&&("object"==t||"function"==t)}},,function(n,t,e){var r;try{r={clone:e(582),constant:e(103),each:e(218),filter:e(215),has:e(204),isArray:e(11),isEmpty:e(508),isFunction:e(57),isUndefined:e(203),keys:e(33),map:e(202),reduce:e(200),size:e(505),transform:e(499),union:e(498),values:e(195)}}catch(n){}r||(r=window._),n.exports=r},,function(n,t,e){var r=e(117),o="object"==typeof self&&self&&self.Object===Object&&self,i=r||o||Function("return this")();n.exports=i},,function(n,t,e){var r;try{r=e(584)}catch(n){}r||(r=window.graphlib),n.exports=r},function(n,t){n.exports=function(n){return null!=n&&"object"==typeof n}},,,,,function(n,t,e){var r=e(528),o=e(518),i=e(36),u=e(11),a=e(511);n.exports=function(n){return"function"==typeof n?n:null==n?i:"object"==typeof n?u(n)?o(n[0],n[1]):r(n):a(n)}},function(n,t,e){var r=e(57),o=e(109);n.exports=function(n){return null!=n&&o(n.length)&&!r(n)}},,,,function(n,t,e){var r=e(232),o=e(107),i=e(29);n.exports=function(n){return i(n)?r(n):o(n)}},function(n,t,e){var r=e(38),o=e(250),i=e(249),u="[object Null]",a="[object Undefined]",c=r?r.toStringTag:void 0;n.exports=function(n){return null==n?void 0===n?a:u:c&&c in Object(n)?o(n):i(n)}},,function(n,t){n.exports=function(n){return n}},function(n,t,e){var r=e(571),o=e(568);n.exports=function(n,t){var e=o(n,t);return r(e)?e:void 0}},function(n,t,e){var r=e(20).Symbol;n.exports=r},function(n,t,e){var r=e(34),o=e(23),i="[object Symbol]";n.exports=function(n){return"symbol"==typeof n||o(n)&&r(n)==i}},function(n,t,e){var r=e(543),o=e(113),i=e(542),u=e(223),a=e(541),c=e(34),f=e(234),s=f(r),d=f(o),p=f(i),h=f(u),v=f(a),l=c;(r&&"[object DataView]"!=l(new r(new ArrayBuffer(1)))||o&&"[object Map]"!=l(new o)||i&&"[object Promise]"!=l(i.resolve())||u&&"[object Set]"!=l(new u)||a&&"[object WeakMap]"!=l(new a))&&(l=function(n){var t=c(n),e="[object Object]"==t?n.constructor:void 0,r=e?f(e):"";if(r)switch(r){case s:return"[object DataView]";case d:return"[object Map]";case p:return"[object Promise]";case h:return"[object Set]";case v:return"[object WeakMap]"}return t}),n.exports=l},function(n,t,e){var r=e(232),o=e(548),i=e(29);n.exports=function(n){return i(n)?r(n,!0):o(n)}},function(n,t,e){(function(n){var r=e(20),o=e(552),i="object"==typeof t&&t&&!t.nodeType&&t,u=i&&"object"==typeof n&&n&&!n.nodeType&&n,a=u&&u.exports===i?r.Buffer:void 0,c=(a?a.isBuffer:void 0)||o;n.exports=c}).call(this,e(110)(n))},function(n,t){n.exports=function(n,t){return n===t||n!=n&&t!=t}},,,,,,,,,,function(n,t,e){var r=e(39),o=1/0;n.exports=function(n){if("string"==typeof n||r(n))return n;var t=n+"";return"0"==t&&1/n==-o?"-0":t}},function(n,t,e){var r=e(551),o=e(75),i=e(108),u=i&&i.isTypedArray,a=u?o(u):r;n.exports=a},function(n,t,e){var r=e(553),o=e(23),i=Object.prototype,u=i.hasOwnProperty,a=i.propertyIsEnumerable,c=r(function(){return arguments}())?r:function(n){return o(n)&&u.call(n,"callee")&&!a.call(n,"callee")};n.exports=c},function(n,t,e){var r=e(78),o=e(77);n.exports=function(n,t,e,i){var u=!e;e||(e={});for(var a=-1,c=t.length;++a<c;){var f=t[a],s=i?i(e[f],n[f],f,e,n):void 0;void 0===s&&(s=n[f]),u?o(e,f,s):r(e,f,s)}return e}},function(n,t,e){var r=e(34),o=e(16),i="[object AsyncFunction]",u="[object Function]",a="[object GeneratorFunction]",c="[object Proxy]";n.exports=function(n){if(!o(n))return!1;var t=r(n);return t==u||t==a||t==i||t==c}},,,,,,,,,,function(n,t,e){"use strict";var r=e(7);n.exports={longestPath:function(n){var t={};r.forEach(n.sources(),function e(o){var i=n.node(o);if(r.has(t,o))return i.rank;t[o]=!0;var u=r.min(r.map(n.outEdges(o),function(t){return e(t.w)-n.edge(t).minlen}));u!==Number.POSITIVE_INFINITY&&void 0!==u&&null!==u||(u=0);return i.rank=u})},slack:function(n,t){return n.node(t.w).rank-n.node(t.v).rank-n.edge(t).minlen}}},function(n,t,e){var r=e(43),o=e(29),i=e(76),u=e(16);n.exports=function(n,t,e){if(!u(e))return!1;var a=typeof t;return!!("number"==a?o(e)&&i(t,e.length):"string"==a&&t in e)&&r(e[t],n)}},function(n,t,e){var r=e(36),o=e(199),i=e(198);n.exports=function(n,t){return i(o(n,t,r),n+"")}},function(n,t){n.exports=function(n,t){for(var e=-1,r=null==n?0:n.length,o=Array(r);++e<r;)o[e]=t(n[e],e,n);return o}},function(n,t,e){var r=e(11),o=e(98),i=e(516),u=e(208);n.exports=function(n,t){return r(n)?n:o(n,t)?[n]:i(u(n))}},function(n,t,e){var r=e(102),o=e(530)(r);n.exports=o},function(n,t,e){var r=e(231)(Object.getPrototypeOf,Object);n.exports=r},function(n,t){var e=Object.prototype;n.exports=function(n){var t=n&&n.constructor;return n===("function"==typeof t&&t.prototype||e)}},function(n,t){n.exports=function(n){return function(t){return n(t)}}},function(n,t){var e=9007199254740991,r=/^(?:0|[1-9]\d*)$/;n.exports=function(n,t){var o=typeof n;return!!(t=null==t?e:t)&&("number"==o||"symbol"!=o&&r.test(n))&&n>-1&&n%1==0&&n<t}},function(n,t,e){var r=e(233);n.exports=function(n,t,e){"__proto__"==t&&r?r(n,t,{configurable:!0,enumerable:!0,value:e,writable:!0}):n[t]=e}},function(n,t,e){var r=e(77),o=e(43),i=Object.prototype.hasOwnProperty;n.exports=function(n,t,e){var u=n[t];i.call(n,t)&&o(u,e)&&(void 0!==e||t in n)||r(n,t,e)}},function(n,t,e){var r=e(559);n.exports=function(n,t){var e=n.__data__;return r(t)?e["string"==typeof t?"string":"hash"]:e.map}},function(n,t,e){var r=e(37)(Object,"create");n.exports=r},function(n,t,e){var r=e(43);n.exports=function(n,t){for(var e=n.length;e--;)if(r(n[e][0],t))return e;return-1}},function(n,t,e){var r=e(581),o=e(580),i=e(579),u=e(578),a=e(577);function c(n){var t=-1,e=null==n?0:n.length;for(this.clear();++t<e;){var r=n[t];this.set(r[0],r[1])}}c.prototype.clear=r,c.prototype.delete=o,c.prototype.get=i,c.prototype.has=u,c.prototype.set=a,n.exports=c},function(n,t,e){var r=e(82),o=e(576),i=e(575),u=e(574),a=e(573),c=e(572);function f(n){var t=this.__data__=new r(n);this.size=t.size}f.prototype.clear=o,f.prototype.delete=i,f.prototype.get=u,f.prototype.has=a,f.prototype.set=c,n.exports=f},,,,,,,,,,,,,function(n,t,e){var r=e(39);n.exports=function(n,t,e){for(var o=-1,i=n.length;++o<i;){var u=n[o],a=t(u);if(null!=a&&(void 0===c?a==a&&!r(a):e(a,c)))var c=a,f=u}return f}},function(n,t,e){var r=e(105),o=e(497);n.exports=function n(t,e,i,u,a){var c=-1,f=t.length;for(i||(i=o),a||(a=[]);++c<f;){var s=t[c];e>0&&i(s)?e>1?n(s,e-1,i,u,a):r(a,s):u||(a[a.length]=s)}return a}},function(n,t,e){var r=e(11),o=e(39),i=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,u=/^\w*$/;n.exports=function(n,t){if(r(n))return!1;var e=typeof n;return!("number"!=e&&"symbol"!=e&&"boolean"!=e&&null!=n&&!o(n))||u.test(n)||!i.test(n)||null!=t&&n in Object(t)}},function(n,t,e){var r=e(71),o=e(53);n.exports=function(n,t){for(var e=0,i=(t=r(t,n)).length;null!=n&&e<i;)n=n[o(t[e++])];return e&&e==i?n:void 0}},function(n,t){n.exports=function(n){var t=-1,e=Array(n.size);return n.forEach(function(n){e[++t]=n}),e}},function(n,t,e){var r=e(531)();n.exports=r},function(n,t,e){var r=e(101),o=e(33);n.exports=function(n,t){return n&&r(n,t,o)}},function(n,t){n.exports=function(n){return function(){return n}}},function(n,t,e){var r=e(222);n.exports=function(n){var t=new n.constructor(n.byteLength);return new r(t).set(new r(n)),t}},function(n,t){n.exports=function(n,t){for(var e=-1,r=t.length,o=n.length;++e<r;)n[o+e]=t[e];return n}},function(n,t,e){var r=e(228),o=e(227),i=Object.prototype.propertyIsEnumerable,u=Object.getOwnPropertySymbols,a=u?function(n){return null==n?[]:(n=Object(n),r(u(n),function(t){return i.call(n,t)}))}:o;n.exports=a},function(n,t,e){var r=e(74),o=e(550),i=Object.prototype.hasOwnProperty;n.exports=function(n){if(!r(n))return o(n);var t=[];for(var e in Object(n))i.call(n,e)&&"constructor"!=e&&t.push(e);return t}},function(n,t,e){(function(n){var r=e(117),o="object"==typeof t&&t&&!t.nodeType&&t,i=o&&"object"==typeof n&&n&&!n.nodeType&&n,u=i&&i.exports===o&&r.process,a=function(){try{var n=i&&i.require&&i.require("util").types;return n||u&&u.binding&&u.binding("util")}catch(n){}}();n.exports=a}).call(this,e(110)(n))},function(n,t){var e=9007199254740991;n.exports=function(n){return"number"==typeof n&&n>-1&&n%1==0&&n<=e}},function(n,t){n.exports=function(n){return n.webpackPolyfill||(n.deprecate=function(){},n.paths=[],n.children||(n.children=[]),Object.defineProperty(n,"loaded",{enumerable:!0,get:function(){return n.l}}),Object.defineProperty(n,"id",{enumerable:!0,get:function(){return n.i}}),n.webpackPolyfill=1),n}},function(n,t){n.exports=function(n,t){for(var e=-1,r=null==n?0:n.length;++e<r&&!1!==t(n[e],e,n););return n}},function(n,t,e){var r=e(567),o=e(560),i=e(558),u=e(557),a=e(556);function c(n){var t=-1,e=null==n?0:n.length;for(this.clear();++t<e;){var r=n[t];this.set(r[0],r[1])}}c.prototype.clear=r,c.prototype.delete=o,c.prototype.get=i,c.prototype.has=u,c.prototype.set=a,n.exports=c},function(n,t,e){var r=e(37)(e(20),"Map");n.exports=r},function(n,t,e){"use strict";var r=e(18);n.exports=a;var o="\0",i="\0",u="";function a(n){this._isDirected=!r.has(n,"directed")||n.directed,this._isMultigraph=!!r.has(n,"multigraph")&&n.multigraph,this._isCompound=!!r.has(n,"compound")&&n.compound,this._label=void 0,this._defaultNodeLabelFn=r.constant(void 0),this._defaultEdgeLabelFn=r.constant(void 0),this._nodes={},this._isCompound&&(this._parent={},this._children={},this._children[i]={}),this._in={},this._preds={},this._out={},this._sucs={},this._edgeObjs={},this._edgeLabels={}}function c(n,t){n[t]?n[t]++:n[t]=1}function f(n,t){--n[t]||delete n[t]}function s(n,t,e,i){var a=""+t,c=""+e;if(!n&&a>c){var f=a;a=c,c=f}return a+u+c+u+(r.isUndefined(i)?o:i)}function d(n,t){return s(n,t.v,t.w,t.name)}a.prototype._nodeCount=0,a.prototype._edgeCount=0,a.prototype.isDirected=function(){return this._isDirected},a.prototype.isMultigraph=function(){return this._isMultigraph},a.prototype.isCompound=function(){return this._isCompound},a.prototype.setGraph=function(n){return this._label=n,this},a.prototype.graph=function(){return this._label},a.prototype.setDefaultNodeLabel=function(n){return r.isFunction(n)||(n=r.constant(n)),this._defaultNodeLabelFn=n,this},a.prototype.nodeCount=function(){return this._nodeCount},a.prototype.nodes=function(){return r.keys(this._nodes)},a.prototype.sources=function(){var n=this;return r.filter(this.nodes(),function(t){return r.isEmpty(n._in[t])})},a.prototype.sinks=function(){var n=this;return r.filter(this.nodes(),function(t){return r.isEmpty(n._out[t])})},a.prototype.setNodes=function(n,t){var e=arguments,o=this;return r.each(n,function(n){e.length>1?o.setNode(n,t):o.setNode(n)}),this},a.prototype.setNode=function(n,t){return r.has(this._nodes,n)?(arguments.length>1&&(this._nodes[n]=t),this):(this._nodes[n]=arguments.length>1?t:this._defaultNodeLabelFn(n),this._isCompound&&(this._parent[n]=i,this._children[n]={},this._children[i][n]=!0),this._in[n]={},this._preds[n]={},this._out[n]={},this._sucs[n]={},++this._nodeCount,this)},a.prototype.node=function(n){return this._nodes[n]},a.prototype.hasNode=function(n){return r.has(this._nodes,n)},a.prototype.removeNode=function(n){var t=this;if(r.has(this._nodes,n)){var e=function(n){t.removeEdge(t._edgeObjs[n])};delete this._nodes[n],this._isCompound&&(this._removeFromParentsChildList(n),delete this._parent[n],r.each(this.children(n),function(n){t.setParent(n)}),delete this._children[n]),r.each(r.keys(this._in[n]),e),delete this._in[n],delete this._preds[n],r.each(r.keys(this._out[n]),e),delete this._out[n],delete this._sucs[n],--this._nodeCount}return this},a.prototype.setParent=function(n,t){if(!this._isCompound)throw new Error("Cannot set parent in a non-compound graph");if(r.isUndefined(t))t=i;else{for(var e=t+="";!r.isUndefined(e);e=this.parent(e))if(e===n)throw new Error("Setting "+t+" as parent of "+n+" would create a cycle");this.setNode(t)}return this.setNode(n),this._removeFromParentsChildList(n),this._parent[n]=t,this._children[t][n]=!0,this},a.prototype._removeFromParentsChildList=function(n){delete this._children[this._parent[n]][n]},a.prototype.parent=function(n){if(this._isCompound){var t=this._parent[n];if(t!==i)return t}},a.prototype.children=function(n){if(r.isUndefined(n)&&(n=i),this._isCompound){var t=this._children[n];if(t)return r.keys(t)}else{if(n===i)return this.nodes();if(this.hasNode(n))return[]}},a.prototype.predecessors=function(n){var t=this._preds[n];if(t)return r.keys(t)},a.prototype.successors=function(n){var t=this._sucs[n];if(t)return r.keys(t)},a.prototype.neighbors=function(n){var t=this.predecessors(n);if(t)return r.union(t,this.successors(n))},a.prototype.isLeaf=function(n){return 0===(this.isDirected()?this.successors(n):this.neighbors(n)).length},a.prototype.filterNodes=function(n){var t=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});t.setGraph(this.graph());var e=this;r.each(this._nodes,function(e,r){n(r)&&t.setNode(r,e)}),r.each(this._edgeObjs,function(n){t.hasNode(n.v)&&t.hasNode(n.w)&&t.setEdge(n,e.edge(n))});var o={};return this._isCompound&&r.each(t.nodes(),function(n){t.setParent(n,function n(r){var i=e.parent(r);return void 0===i||t.hasNode(i)?(o[r]=i,i):i in o?o[i]:n(i)}(n))}),t},a.prototype.setDefaultEdgeLabel=function(n){return r.isFunction(n)||(n=r.constant(n)),this._defaultEdgeLabelFn=n,this},a.prototype.edgeCount=function(){return this._edgeCount},a.prototype.edges=function(){return r.values(this._edgeObjs)},a.prototype.setPath=function(n,t){var e=this,o=arguments;return r.reduce(n,function(n,r){return o.length>1?e.setEdge(n,r,t):e.setEdge(n,r),r}),this},a.prototype.setEdge=function(){var n,t,e,o,i=!1,u=arguments[0];"object"==typeof u&&null!==u&&"v"in u?(n=u.v,t=u.w,e=u.name,2===arguments.length&&(o=arguments[1],i=!0)):(n=u,t=arguments[1],e=arguments[3],arguments.length>2&&(o=arguments[2],i=!0)),n=""+n,t=""+t,r.isUndefined(e)||(e=""+e);var a=s(this._isDirected,n,t,e);if(r.has(this._edgeLabels,a))return i&&(this._edgeLabels[a]=o),this;if(!r.isUndefined(e)&&!this._isMultigraph)throw new Error("Cannot set a named edge when isMultigraph = false");this.setNode(n),this.setNode(t),this._edgeLabels[a]=i?o:this._defaultEdgeLabelFn(n,t,e);var f=function(n,t,e,r){var o=""+t,i=""+e;if(!n&&o>i){var u=o;o=i,i=u}var a={v:o,w:i};r&&(a.name=r);return a}(this._isDirected,n,t,e);return n=f.v,t=f.w,Object.freeze(f),this._edgeObjs[a]=f,c(this._preds[t],n),c(this._sucs[n],t),this._in[t][a]=f,this._out[n][a]=f,this._edgeCount++,this},a.prototype.edge=function(n,t,e){var r=1===arguments.length?d(this._isDirected,arguments[0]):s(this._isDirected,n,t,e);return this._edgeLabels[r]},a.prototype.hasEdge=function(n,t,e){var o=1===arguments.length?d(this._isDirected,arguments[0]):s(this._isDirected,n,t,e);return r.has(this._edgeLabels,o)},a.prototype.removeEdge=function(n,t,e){var r=1===arguments.length?d(this._isDirected,arguments[0]):s(this._isDirected,n,t,e),o=this._edgeObjs[r];return o&&(n=o.v,t=o.w,delete this._edgeLabels[r],delete this._edgeObjs[r],f(this._preds[t],n),f(this._sucs[n],t),delete this._in[t][r],delete this._out[n][r],this._edgeCount--),this},a.prototype.inEdges=function(n,t){var e=this._in[n];if(e){var o=r.values(e);return t?r.filter(o,function(n){return n.v===t}):o}},a.prototype.outEdges=function(n,t){var e=this._out[n];if(e){var o=r.values(e);return t?r.filter(o,function(n){return n.w===t}):o}},a.prototype.nodeEdges=function(n,t){var e=this.inEdges(n,t);if(e)return e.concat(this.outEdges(n,t))}},,,function(n,t,e){(function(t){var e="object"==typeof t&&t&&t.Object===Object&&t;n.exports=e}).call(this,e(252))},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(n,t,e){"use strict";var r=e(7),o=e(22).Graph,i=e(67).slack;function u(n,t){return r.forEach(n.nodes(),function e(o){r.forEach(t.nodeEdges(o),function(r){var u=r.v,a=o===u?r.w:u;n.hasNode(a)||i(t,r)||(n.setNode(a,{}),n.setEdge(o,a,{}),e(a))})}),n.nodeCount()}function a(n,t){return r.minBy(t.edges(),function(e){if(n.hasNode(e.v)!==n.hasNode(e.w))return i(t,e)})}function c(n,t,e){r.forEach(n.nodes(),function(n){t.node(n).rank+=e})}n.exports=function(n){var t,e,r=new o({directed:!1}),f=n.nodes()[0],s=n.nodeCount();r.setNode(f,{});for(;u(r,n)<s;)t=a(r,n),e=r.hasNode(t.v)?i(n,t):-i(n,t),c(r,n,e);return r}},function(n,t){n.exports=function(n,t){return n<t}},function(n,t){n.exports=function(n,t){if("__proto__"!=t)return n[t]}},function(n,t,e){var r=e(77),o=e(43);n.exports=function(n,t,e){(void 0===e||o(n[t],e))&&(void 0!==e||t in n)||r(n,t,e)}},function(n,t,e){var r=e(97);n.exports=function(n){return null!=n&&n.length?r(n,1):[]}},function(n,t,e){var r=e(251),o=1/0,i=1.7976931348623157e308;n.exports=function(n){return n?(n=r(n))===o||n===-o?(n<0?-1:1)*i:n==n?n:0:0===n?n:0}},function(n,t,e){var r=e(18);n.exports=function(n,t,e){r.isArray(t)||(t=[t]);var o=(n.isDirected()?n.successors:n.neighbors).bind(n),i=[],u={};return r.each(t,function(t){if(!n.hasNode(t))throw new Error("Graph does not have node: "+t);!function n(t,e,o,i,u,a){r.has(i,e)||(i[e]=!0,o||a.push(e),r.each(u(e),function(e){n(t,e,o,i,u,a)}),o&&a.push(e))}(n,t,"post"===e,u,o,i)}),i}},function(n,t,e){var r=e(18);function o(n){var t={},e={},o=[];if(r.each(n.sinks(),function u(a){if(r.has(e,a))throw new i;r.has(t,a)||(e[a]=!0,t[a]=!0,r.each(n.predecessors(a),u),delete e[a],o.push(a))}),r.size(t)!==n.nodeCount())throw new i;return o}function i(){}n.exports=o,o.CycleException=i,i.prototype=new Error},function(n,t,e){var r=e(18);n.exports=function(n){var t=0,e=[],o={},i=[];return n.nodes().forEach(function(u){r.has(o,u)||function u(a){var c=o[a]={onStack:!0,lowlink:t,index:t++};if(e.push(a),n.successors(a).forEach(function(n){r.has(o,n)?o[n].onStack&&(c.lowlink=Math.min(c.lowlink,o[n].index)):(u(n),c.lowlink=Math.min(c.lowlink,o[n].lowlink))}),c.lowlink===c.index){var f,s=[];do{f=e.pop(),o[f].onStack=!1,s.push(f)}while(a!==f);i.push(s)}}(u)}),i}},function(n,t,e){var r=e(18);function o(){this._arr=[],this._keyIndices={}}n.exports=o,o.prototype.size=function(){return this._arr.length},o.prototype.keys=function(){return this._arr.map(function(n){return n.key})},o.prototype.has=function(n){return r.has(this._keyIndices,n)},o.prototype.priority=function(n){var t=this._keyIndices[n];if(void 0!==t)return this._arr[t].priority},o.prototype.min=function(){if(0===this.size())throw new Error("Queue underflow");return this._arr[0].key},o.prototype.add=function(n,t){var e=this._keyIndices;if(n=String(n),!r.has(e,n)){var o=this._arr,i=o.length;return e[n]=i,o.push({key:n,priority:t}),this._decrease(i),!0}return!1},o.prototype.removeMin=function(){this._swap(0,this._arr.length-1);var n=this._arr.pop();return delete this._keyIndices[n.key],this._heapify(0),n.key},o.prototype.decrease=function(n,t){var e=this._keyIndices[n];if(t>this._arr[e].priority)throw new Error("New priority is greater than current priority. Key: "+n+" Old: "+this._arr[e].priority+" New: "+t);this._arr[e].priority=t,this._decrease(e)},o.prototype._heapify=function(n){var t=this._arr,e=2*n,r=e+1,o=n;e<t.length&&(o=t[e].priority<t[o].priority?e:o,r<t.length&&(o=t[r].priority<t[o].priority?r:o),o!==n&&(this._swap(n,o),this._heapify(o)))},o.prototype._decrease=function(n){for(var t,e=this._arr,r=e[n].priority;0!==n&&!(e[t=n>>1].priority<r);)this._swap(n,t),n=t},o.prototype._swap=function(n,t){var e=this._arr,r=this._keyIndices,o=e[n],i=e[t];e[n]=i,e[t]=o,r[i.key]=n,r[o.key]=t}},function(n,t,e){var r=e(18),o=e(193);n.exports=function(n,t,e,r){return function(n,t,e,r){var i,u,a={},c=new o,f=function(n){var t=n.v!==i?n.v:n.w,r=a[t],o=e(n),f=u.distance+o;if(o<0)throw new Error("dijkstra does not allow negative edge weights. Bad edge: "+n+" Weight: "+o);f<r.distance&&(r.distance=f,r.predecessor=i,c.decrease(t,f))};n.nodes().forEach(function(n){var e=n===t?0:Number.POSITIVE_INFINITY;a[n]={distance:e},c.add(n,e)});for(;c.size()>0&&(i=c.removeMin(),(u=a[i]).distance!==Number.POSITIVE_INFINITY);)r(i).forEach(f);return a}(n,String(t),e||i,r||function(t){return n.outEdges(t)})};var i=r.constant(1)},function(n,t,e){var r=e(485),o=e(33);n.exports=function(n){return null==n?[]:r(n,o(n))}},function(n,t,e){var r=e(29),o=e(23);n.exports=function(n){return o(n)&&r(n)}},function(n,t){n.exports=function(n,t,e,r){for(var o=n.length,i=e+(r?1:-1);r?i--:++i<o;)if(t(n[i],i,n))return i;return-1}},function(n,t,e){var r=e(495),o=e(494)(r);n.exports=o},function(n,t,e){var r=e(496),o=Math.max;n.exports=function(n,t,e){return t=o(void 0===t?n.length-1:t,0),function(){for(var i=arguments,u=-1,a=o(i.length-t,0),c=Array(a);++u<a;)c[u]=i[t+u];u=-1;for(var f=Array(t+1);++u<t;)f[u]=i[u];return f[t]=e(c),r(n,this,f)}}},function(n,t,e){var r=e(507),o=e(72),i=e(28),u=e(506),a=e(11);n.exports=function(n,t,e){var c=a(n)?r:u,f=arguments.length<3;return c(n,i(t,4),e,f,o)}},function(n,t,e){var r=e(72),o=e(29);n.exports=function(n,t){var e=-1,i=o(n)?Array(n.length):[];return r(n,function(n,r,o){i[++e]=t(n,r,o)}),i}},function(n,t,e){var r=e(70),o=e(28),i=e(201),u=e(11);n.exports=function(n,t){return(u(n)?r:i)(n,o(t,3))}},function(n,t){n.exports=function(n){return void 0===n}},function(n,t,e){var r=e(509),o=e(206);n.exports=function(n,t){return null!=n&&o(n,t,r)}},function(n,t){n.exports=function(n){return function(t){return null==t?void 0:t[n]}}},function(n,t,e){var r=e(71),o=e(55),i=e(11),u=e(76),a=e(109),c=e(53);n.exports=function(n,t,e){for(var f=-1,s=(t=r(t,n)).length,d=!1;++f<s;){var p=c(t[f]);if(!(d=null!=n&&e(n,p)))break;n=n[p]}return d||++f!=s?d:!!(s=null==n?0:n.length)&&a(s)&&u(p,s)&&(i(n)||o(n))}},function(n,t,e){var r=e(512),o=e(206);n.exports=function(n,t){return null!=n&&o(n,t,r)}},function(n,t,e){var r=e(513);n.exports=function(n){return null==n?"":r(n)}},function(n,t){n.exports=function(n,t){return function(e){return null!=e&&e[n]===t&&(void 0!==t||n in Object(e))}}},function(n,t,e){var r=e(16);n.exports=function(n){return n==n&&!r(n)}},function(n,t){n.exports=function(n,t){return n.has(t)}},function(n,t,e){var r=e(112),o=e(525),i=e(524);function u(n){var t=-1,e=null==n?0:n.length;for(this.__data__=new r;++t<e;)this.add(n[t])}u.prototype.add=u.prototype.push=o,u.prototype.has=i,n.exports=u},function(n,t,e){var r=e(212),o=e(523),i=e(211),u=1,a=2;n.exports=function(n,t,e,c,f,s){var d=e&u,p=n.length,h=t.length;if(p!=h&&!(d&&h>p))return!1;var v=s.get(n);if(v&&s.get(t))return v==t;var l=-1,g=!0,y=e&a?new r:void 0;for(s.set(n,t),s.set(t,n);++l<p;){var b=n[l],x=t[l];if(c)var m=d?c(x,b,l,t,n,s):c(b,x,l,n,t,s);if(void 0!==m){if(m)continue;g=!1;break}if(y){if(!o(t,function(n,t){if(!i(y,t)&&(b===n||f(b,n,e,c,s)))return y.push(t)})){g=!1;break}}else if(b!==x&&!f(b,x,e,c,s)){g=!1;break}}return s.delete(n),s.delete(t),g}},function(n,t,e){var r=e(526),o=e(23);n.exports=function n(t,e,i,u,a){return t===e||(null==t||null==e||!o(t)&&!o(e)?t!=t&&e!=e:r(t,e,i,u,n,a))}},function(n,t,e){var r=e(228),o=e(529),i=e(28),u=e(11);n.exports=function(n,t){return(u(n)?r:o)(n,i(t,3))}},function(n,t,e){var r=e(36);n.exports=function(n){return"function"==typeof n?n:r}},function(n,t,e){var r=e(111),o=e(72),i=e(216),u=e(11);n.exports=function(n,t){return(u(n)?r:o)(n,i(t))}},function(n,t,e){n.exports=e(217)},function(n,t,e){var r=e(16),o=Object.create,i=function(){function n(){}return function(t){if(!r(t))return{};if(o)return o(t);n.prototype=t;var e=new n;return n.prototype=void 0,e}}();n.exports=i},function(n,t,e){var r=e(219),o=e(73),i=e(74);n.exports=function(n){return"function"!=typeof n.constructor||i(n)?{}:r(o(n))}},function(n,t,e){var r=e(104);n.exports=function(n,t){var e=t?r(n.buffer):n.buffer;return new n.constructor(e,n.byteOffset,n.length)}},function(n,t,e){var r=e(20).Uint8Array;n.exports=r},function(n,t,e){var r=e(37)(e(20),"Set");n.exports=r},function(n,t,e){var r=e(105),o=e(11);n.exports=function(n,t,e){var i=t(n);return o(n)?i:r(i,e(n))}},function(n,t,e){var r=e(224),o=e(106),i=e(33);n.exports=function(n){return r(n,i,o)}},function(n,t,e){var r=e(105),o=e(73),i=e(106),u=e(227),a=Object.getOwnPropertySymbols?function(n){for(var t=[];n;)r(t,i(n)),n=o(n);return t}:u;n.exports=a},function(n,t){n.exports=function(){return[]}},function(n,t){n.exports=function(n,t){for(var e=-1,r=null==n?0:n.length,o=0,i=[];++e<r;){var u=n[e];t(u,e,n)&&(i[o++]=u)}return i}},function(n,t){n.exports=function(n,t){var e=-1,r=n.length;for(t||(t=Array(r));++e<r;)t[e]=n[e];return t}},function(n,t,e){(function(n){var r=e(20),o="object"==typeof t&&t&&!t.nodeType&&t,i=o&&"object"==typeof n&&n&&!n.nodeType&&n,u=i&&i.exports===o?r.Buffer:void 0,a=u?u.allocUnsafe:void 0;n.exports=function(n,t){if(t)return n.slice();var e=n.length,r=a?a(e):new n.constructor(e);return n.copy(r),r}}).call(this,e(110)(n))},function(n,t){n.exports=function(n,t){return function(e){return n(t(e))}}},function(n,t,e){var r=e(554),o=e(55),i=e(11),u=e(42),a=e(76),c=e(54),f=Object.prototype.hasOwnProperty;n.exports=function(n,t){var e=i(n),s=!e&&o(n),d=!e&&!s&&u(n),p=!e&&!s&&!d&&c(n),h=e||s||d||p,v=h?r(n.length,String):[],l=v.length;for(var g in n)!t&&!f.call(n,g)||h&&("length"==g||d&&("offset"==g||"parent"==g)||p&&("buffer"==g||"byteLength"==g||"byteOffset"==g)||a(g,l))||v.push(g);return v}},function(n,t,e){var r=e(37),o=function(){try{var n=r(Object,"defineProperty");return n({},"",{}),n}catch(n){}}();n.exports=o},function(n,t){var e=Function.prototype.toString;n.exports=function(n){if(null!=n){try{return e.call(n)}catch(n){}try{return n+""}catch(n){}}return""}},function(n,t,e){var r=e(83),o=e(111),i=e(78),u=e(555),a=e(549),c=e(230),f=e(229),s=e(546),d=e(545),p=e(225),h=e(544),v=e(40),l=e(540),g=e(539),y=e(220),b=e(11),x=e(42),m=e(535),w=e(16),_=e(533),E=e(33),j=1,k=2,O=4,N="[object Arguments]",I="[object Function]",C="[object GeneratorFunction]",P="[object Object]",M={};M[N]=M["[object Array]"]=M["[object ArrayBuffer]"]=M["[object DataView]"]=M["[object Boolean]"]=M["[object Date]"]=M["[object Float32Array]"]=M["[object Float64Array]"]=M["[object Int8Array]"]=M["[object Int16Array]"]=M["[object Int32Array]"]=M["[object Map]"]=M["[object Number]"]=M[P]=M["[object RegExp]"]=M["[object Set]"]=M["[object String]"]=M["[object Symbol]"]=M["[object Uint8Array]"]=M["[object Uint8ClampedArray]"]=M["[object Uint16Array]"]=M["[object Uint32Array]"]=!0,M["[object Error]"]=M[I]=M["[object WeakMap]"]=!1,n.exports=function n(t,e,S,A,L,T){var z,R=e&j,F=e&k,D=e&O;if(S&&(z=L?S(t,A,L,T):S(t)),void 0!==z)return z;if(!w(t))return t;var U=b(t);if(U){if(z=l(t),!R)return f(t,z)}else{var V=v(t),B=V==I||V==C;if(x(t))return c(t,R);if(V==P||V==N||B&&!L){if(z=F||B?{}:y(t),!R)return F?d(t,a(z,t)):s(t,u(z,t))}else{if(!M[V])return L?t:{};z=g(t,V,R)}}T||(T=new r);var G=T.get(t);if(G)return G;if(T.set(t,z),_(t))return t.forEach(function(r){z.add(n(r,e,S,r,t,T))}),z;if(m(t))return t.forEach(function(r,o){z.set(o,n(r,e,S,o,t,T))}),z;var q=D?F?h:p:F?keysIn:E,$=U?void 0:q(t);return o($||t,function(r,o){$&&(r=t[o=r]),i(z,o,n(r,e,S,o,t,T))}),z}},,,,,,,,,,,,,,function(n,t){var e=Object.prototype.toString;n.exports=function(n){return e.call(n)}},function(n,t,e){var r=e(38),o=Object.prototype,i=o.hasOwnProperty,u=o.toString,a=r?r.toStringTag:void 0;n.exports=function(n){var t=i.call(n,a),e=n[a];try{n[a]=void 0;var r=!0}catch(n){}var o=u.call(n);return r&&(t?n[a]=e:delete n[a]),o}},function(n,t,e){var r=e(16),o=e(39),i=NaN,u=/^\s+|\s+$/g,a=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,f=/^0o[0-7]+$/i,s=parseInt;n.exports=function(n){if("number"==typeof n)return n;if(o(n))return i;if(r(n)){var t="function"==typeof n.valueOf?n.valueOf():n;n=r(t)?t+"":t}if("string"!=typeof n)return 0===n?n:+n;n=n.replace(u,"");var e=c.test(n);return e||f.test(n)?s(n.slice(2),e?2:8):a.test(n)?i:+n}},function(n,t){var e;e=function(){return this}();try{e=e||Function("return this")()||(0,eval)("this")}catch(n){"object"==typeof window&&(e=window)}n.exports=e},function(n,t,e){var r=e(20);n.exports=function(){return r.Date.now()}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(n,t){n.exports="0.8.4"},function(n,t,e){var r=e(7),o=e(15),i=e(22).Graph;n.exports={debugOrdering:function(n){var t=o.buildLayerMatrix(n),e=new i({compound:!0,multigraph:!0}).setGraph({});return r.forEach(n.nodes(),function(t){e.setNode(t,{label:t}),e.setParent(t,"layer"+n.node(t).rank)}),r.forEach(n.edges(),function(n){e.setEdge(n.v,n.w,{},n.name)}),r.forEach(t,function(n,t){var o="layer"+t;e.setNode(o,{rank:"same"}),r.reduce(n,function(n,t){return e.setEdge(n,t,{style:"invis"}),t})}),e}}},function(n,t,e){"use strict";var r=e(7),o=e(22).Graph,i=e(15);function u(n,t){var e={};return r.reduce(t,function(t,o){var i=0,u=0,a=t.length,f=r.last(o);return r.forEach(o,function(t,s){var d=function(n,t){if(n.node(t).dummy)return r.find(n.predecessors(t),function(t){return n.node(t).dummy})}(n,t),p=d?n.node(d).order:a;(d||t===f)&&(r.forEach(o.slice(u,s+1),function(t){r.forEach(n.predecessors(t),function(r){var o=n.node(r),u=o.order;!(u<i||p<u)||o.dummy&&n.node(t).dummy||c(e,r,t)})}),u=s+1,i=p)}),o}),e}function a(n,t){var e={};function o(t,o,i,u,a){var f;r.forEach(r.range(o,i),function(o){f=t[o],n.node(f).dummy&&r.forEach(n.predecessors(f),function(t){var r=n.node(t);r.dummy&&(r.order<u||r.order>a)&&c(e,t,f)})})}return r.reduce(t,function(t,e){var i,u=-1,a=0;return r.forEach(e,function(r,c){if("border"===n.node(r).dummy){var f=n.predecessors(r);f.length&&(i=n.node(f[0]).order,o(e,a,c,u,i),a=c,u=i)}o(e,a,e.length,i,t.length)}),e}),e}function c(n,t,e){if(t>e){var r=t;t=e,e=r}var o=n[t];o||(n[t]=o={}),o[e]=!0}function f(n,t,e){if(t>e){var o=t;t=e,e=o}return r.has(n[t],e)}function s(n,t,e,o){var i={},u={},a={};return r.forEach(t,function(n){r.forEach(n,function(n,t){i[n]=n,u[n]=n,a[n]=t})}),r.forEach(t,function(n){var t=-1;r.forEach(n,function(n){var c=o(n);if(c.length)for(var s=((c=r.sortBy(c,function(n){return a[n]})).length-1)/2,d=Math.floor(s),p=Math.ceil(s);d<=p;++d){var h=c[d];u[n]===n&&t<a[h]&&!f(e,n,h)&&(u[h]=n,u[n]=i[n]=i[h],t=a[h])}})}),{root:i,align:u}}function d(n,t,e,i,u){var a={},c=function(n,t,e,i){var u=new o,a=n.graph(),c=function(n,t,e){return function(o,i,u){var a,c=o.node(i),f=o.node(u),s=0;if(s+=c.width/2,r.has(c,"labelpos"))switch(c.labelpos.toLowerCase()){case"l":a=-c.width/2;break;case"r":a=c.width/2}if(a&&(s+=e?a:-a),a=0,s+=(c.dummy?t:n)/2,s+=(f.dummy?t:n)/2,s+=f.width/2,r.has(f,"labelpos"))switch(f.labelpos.toLowerCase()){case"l":a=f.width/2;break;case"r":a=-f.width/2}return a&&(s+=e?a:-a),a=0,s}}(a.nodesep,a.edgesep,i);return r.forEach(t,function(t){var o;r.forEach(t,function(t){var r=e[t];if(u.setNode(r),o){var i=e[o],a=u.edge(i,r);u.setEdge(i,r,Math.max(c(n,t,o),a||0))}o=t})}),u}(n,t,e,u),f=u?"borderLeft":"borderRight";function s(n,t){for(var e=c.nodes(),r=e.pop(),o={};r;)o[r]?n(r):(o[r]=!0,e.push(r),e=e.concat(t(r))),r=e.pop()}return s(function(n){a[n]=c.inEdges(n).reduce(function(n,t){return Math.max(n,a[t.v]+c.edge(t))},0)},c.predecessors.bind(c)),s(function(t){var e=c.outEdges(t).reduce(function(n,t){return Math.min(n,a[t.w]-c.edge(t))},Number.POSITIVE_INFINITY),r=n.node(t);e!==Number.POSITIVE_INFINITY&&r.borderType!==f&&(a[t]=Math.max(a[t],e))},c.successors.bind(c)),r.forEach(i,function(n){a[n]=a[e[n]]}),a}function p(n,t){return r.minBy(r.values(t),function(t){var e=Number.NEGATIVE_INFINITY,o=Number.POSITIVE_INFINITY;return r.forIn(t,function(t,r){var i=function(n,t){return n.node(t).width}(n,r)/2;e=Math.max(t+i,e),o=Math.min(t-i,o)}),e-o})}function h(n,t){var e=r.values(t),o=r.min(e),i=r.max(e);r.forEach(["u","d"],function(e){r.forEach(["l","r"],function(u){var a,c=e+u,f=n[c];if(f!==t){var s=r.values(f);(a="l"===u?o-r.min(s):i-r.max(s))&&(n[c]=r.mapValues(f,function(n){return n+a}))}})})}function v(n,t){return r.mapValues(n.ul,function(e,o){if(t)return n[t.toLowerCase()][o];var i=r.sortBy(r.map(n,o));return(i[1]+i[2])/2})}n.exports={positionX:function(n){var t,e=i.buildLayerMatrix(n),o=r.merge(u(n,e),a(n,e)),c={};r.forEach(["u","d"],function(i){t="u"===i?e:r.values(e).reverse(),r.forEach(["l","r"],function(e){"r"===e&&(t=r.map(t,function(n){return r.values(n).reverse()}));var u=("u"===i?n.predecessors:n.successors).bind(n),a=s(n,t,o,u),f=d(n,t,a.root,a.align,"r"===e);"r"===e&&(f=r.mapValues(f,function(n){return-n})),c[i+e]=f})});var f=p(n,c);return h(c,f),v(c,n.graph().align)},findType1Conflicts:u,findType2Conflicts:a,addConflict:c,hasConflict:f,verticalAlignment:s,horizontalCompaction:d,alignCoordinates:h,findSmallestWidthAlignment:p,balance:v}},function(n,t,e){"use strict";var r=e(7),o=e(15),i=e(417).positionX;n.exports=function(n){(function(n){var t=o.buildLayerMatrix(n),e=n.graph().ranksep,i=0;r.forEach(t,function(t){var o=r.max(r.map(t,function(t){return n.node(t).height}));r.forEach(t,function(t){n.node(t).y=i+o/2}),i+=o+e})})(n=o.asNonCompoundGraph(n)),r.forEach(i(n),function(t,e){n.node(e).x=t})}},function(n,t,e){var r=e(7);n.exports=function(n,t,e){var o,i={};r.forEach(e,function(e){for(var r,u,a=n.parent(e);a;){if((r=n.parent(a))?(u=i[r],i[r]=a):(u=o,o=a),u&&u!==a)return void t.setEdge(u,a);a=r}})}},function(n,t,e){var r=e(7),o=e(22).Graph;n.exports=function(n,t,e){var i=function(n){var t;for(;n.hasNode(t=r.uniqueId("_root")););return t}(n),u=new o({compound:!0}).setGraph({root:i}).setDefaultNodeLabel(function(t){return n.node(t)});return r.forEach(n.nodes(),function(o){var a=n.node(o),c=n.parent(o);(a.rank===t||a.minRank<=t&&t<=a.maxRank)&&(u.setNode(o),u.setParent(o,c||i),r.forEach(n[e](o),function(t){var e=t.v===o?t.w:t.v,i=u.edge(e,o),a=r.isUndefined(i)?0:i.weight;u.setEdge(e,o,{weight:n.edge(t).weight+a})}),r.has(a,"minRank")&&u.setNode(o,{borderLeft:a.borderLeft[t],borderRight:a.borderRight[t]}))}),u}},function(n,t,e){var r=e(7),o=e(15);function i(n,t,e){for(var o;t.length&&(o=r.last(t)).i<=e;)t.pop(),n.push(o.vs),e++;return e}n.exports=function(n,t){var e=o.partition(n,function(n){return r.has(n,"barycenter")}),u=e.lhs,a=r.sortBy(e.rhs,function(n){return-n.i}),c=[],f=0,s=0,d=0;u.sort(function(n){return function(t,e){return t.barycenter<e.barycenter?-1:t.barycenter>e.barycenter?1:n?e.i-t.i:t.i-e.i}}(!!t)),d=i(c,a,d),r.forEach(u,function(n){d+=n.vs.length,c.push(n.vs),f+=n.barycenter*n.weight,s+=n.weight,d=i(c,a,d)});var p={vs:r.flatten(c,!0)};s&&(p.barycenter=f/s,p.weight=s);return p}},function(n,t,e){"use strict";var r=e(7);n.exports=function(n,t){var e={};return r.forEach(n,function(n,t){var o=e[n.v]={indegree:0,in:[],out:[],vs:[n.v],i:t};r.isUndefined(n.barycenter)||(o.barycenter=n.barycenter,o.weight=n.weight)}),r.forEach(t.edges(),function(n){var t=e[n.v],o=e[n.w];r.isUndefined(t)||r.isUndefined(o)||(o.indegree++,t.out.push(e[n.w]))}),function(n){var t=[];function e(n){return function(t){t.merged||(r.isUndefined(t.barycenter)||r.isUndefined(n.barycenter)||t.barycenter>=n.barycenter)&&function(n,t){var e=0,r=0;n.weight&&(e+=n.barycenter*n.weight,r+=n.weight),t.weight&&(e+=t.barycenter*t.weight,r+=t.weight),n.vs=t.vs.concat(n.vs),n.barycenter=e/r,n.weight=r,n.i=Math.min(t.i,n.i),t.merged=!0}(n,t)}}function o(t){return function(e){e.in.push(t),0==--e.indegree&&n.push(e)}}for(;n.length;){var i=n.pop();t.push(i),r.forEach(i.in.reverse(),e(i)),r.forEach(i.out,o(i))}return r.map(r.filter(t,function(n){return!n.merged}),function(n){return r.pick(n,["vs","i","barycenter","weight"])})}(r.filter(e,function(n){return!n.indegree}))}},function(n,t,e){var r=e(7);n.exports=function(n,t){return r.map(t,function(t){var e=n.inEdges(t);if(e.length){var o=r.reduce(e,function(t,e){var r=n.edge(e),o=n.node(e.v);return{sum:t.sum+r.weight*o.order,weight:t.weight+r.weight}},{sum:0,weight:0});return{v:t,barycenter:o.sum/o.weight,weight:o.weight}}return{v:t}})}},function(n,t,e){var r=e(7),o=e(423),i=e(422),u=e(421);n.exports=function n(t,e,a,c){var f=t.children(e),s=t.node(e),d=s?s.borderLeft:void 0,p=s?s.borderRight:void 0,h={};d&&(f=r.filter(f,function(n){return n!==d&&n!==p}));var v=o(t,f);r.forEach(v,function(e){if(t.children(e.v).length){var o=n(t,e.v,a,c);h[e.v]=o,r.has(o,"barycenter")&&function(n,t){r.isUndefined(n.barycenter)?(n.barycenter=t.barycenter,n.weight=t.weight):(n.barycenter=(n.barycenter*n.weight+t.barycenter*t.weight)/(n.weight+t.weight),n.weight+=t.weight)}(e,o)}});var l=i(v,a);!function(n,t){r.forEach(n,function(n){n.vs=r.flatten(n.vs.map(function(n){return t[n]?t[n].vs:n}),!0)})}(l,h);var g=u(l,c);if(d&&(g.vs=r.flatten([d,g.vs,p],!0),t.predecessors(d).length)){var y=t.node(t.predecessors(d)[0]),b=t.node(t.predecessors(p)[0]);r.has(g,"barycenter")||(g.barycenter=0,g.weight=0),g.barycenter=(g.barycenter*g.weight+y.order+b.order)/(g.weight+2),g.weight+=2}return g}},function(n,t,e){"use strict";var r=e(7);function o(n,t,e){for(var o=r.zipObject(e,r.map(e,function(n,t){return t})),i=r.flatten(r.map(t,function(t){return r.sortBy(r.map(n.outEdges(t),function(t){return{pos:o[t.w],weight:n.edge(t).weight}}),"pos")}),!0),u=1;u<e.length;)u<<=1;var a=2*u-1;u-=1;var c=r.map(new Array(a),function(){return 0}),f=0;return r.forEach(i.forEach(function(n){var t=n.pos+u;c[t]+=n.weight;for(var e=0;t>0;)t%2&&(e+=c[t+1]),c[t=t-1>>1]+=n.weight;f+=n.weight*e})),f}n.exports=function(n,t){for(var e=0,r=1;r<t.length;++r)e+=o(n,t[r-1],t[r]);return e}},function(n,t,e){"use strict";var r=e(7);n.exports=function(n){var t={},e=r.filter(n.nodes(),function(t){return!n.children(t).length}),o=r.max(r.map(e,function(t){return n.node(t).rank})),i=r.map(r.range(o+1),function(){return[]});var u=r.sortBy(e,function(t){return n.node(t).rank});return r.forEach(u,function e(o){if(!r.has(t,o)){t[o]=!0;var u=n.node(o);i[u.rank].push(o),r.forEach(n.successors(o),e)}}),i}},function(n,t,e){"use strict";var r=e(7),o=e(426),i=e(425),u=e(424),a=e(420),c=e(419),f=e(22).Graph,s=e(15);function d(n,t,e){return r.map(t,function(t){return a(n,t,e)})}function p(n,t){var e=new f;r.forEach(n,function(n){var o=n.graph().root,i=u(n,o,e,t);r.forEach(i.vs,function(t,e){n.node(t).order=e}),c(n,e,i.vs)})}function h(n,t){r.forEach(t,function(t){r.forEach(t,function(t,e){n.node(t).order=e})})}n.exports=function(n){var t=s.maxRank(n),e=d(n,r.range(1,t+1),"inEdges"),u=d(n,r.range(t-1,-1,-1),"outEdges"),a=o(n);h(n,a);for(var c,f=Number.POSITIVE_INFINITY,v=0,l=0;l<4;++v,++l){p(v%2?e:u,v%4>=2),a=s.buildLayerMatrix(n);var g=i(n,a);g<f&&(l=0,c=r.cloneDeep(a),f=g)}h(n,c)}},function(n,t,e){"use strict";var r=e(7);function o(n){r.forEach(n.nodes(),function(t){i(n.node(t))}),r.forEach(n.edges(),function(t){i(n.edge(t))})}function i(n){var t=n.width;n.width=n.height,n.height=t}function u(n){n.y=-n.y}function a(n){var t=n.x;n.x=n.y,n.y=t}n.exports={adjust:function(n){var t=n.graph().rankdir.toLowerCase();"lr"!==t&&"rl"!==t||o(n)},undo:function(n){var t=n.graph().rankdir.toLowerCase();"bt"!==t&&"rl"!==t||function(n){r.forEach(n.nodes(),function(t){u(n.node(t))}),r.forEach(n.edges(),function(t){var e=n.edge(t);r.forEach(e.points,u),r.has(e,"y")&&u(e)})}(n);"lr"!==t&&"rl"!==t||(!function(n){r.forEach(n.nodes(),function(t){a(n.node(t))}),r.forEach(n.edges(),function(t){var e=n.edge(t);r.forEach(e.points,a),r.has(e,"x")&&a(e)})}(n),o(n))}}},function(n,t,e){var r=e(7),o=e(15);function i(n,t,e,r,i,u){var a={width:0,height:0,rank:u,borderType:t},c=i[t][u-1],f=o.addDummyNode(n,"border",a,e);i[t][u]=f,n.setParent(f,r),c&&n.setEdge(c,f,{weight:1})}n.exports=function(n){r.forEach(n.children(),function t(e){var o=n.children(e),u=n.node(e);o.length&&r.forEach(o,t);if(r.has(u,"minRank")){u.borderLeft=[],u.borderRight=[];for(var a=u.minRank,c=u.maxRank+1;a<c;++a)i(n,"borderLeft","_bl",e,u,a),i(n,"borderRight","_br",e,u,a)}})}},function(n,t,e){var r=e(7),o=e(15);n.exports={run:function(n){var t=o.addDummyNode(n,"root",{},"_root"),e=function(n){var t={};return r.forEach(n.children(),function(e){!function e(o,i){var u=n.children(o);u&&u.length&&r.forEach(u,function(n){e(n,i+1)}),t[o]=i}(e,1)}),t}(n),i=r.max(r.values(e))-1,u=2*i+1;n.graph().nestingRoot=t,r.forEach(n.edges(),function(t){n.edge(t).minlen*=u});var a=function(n){return r.reduce(n.edges(),function(t,e){return t+n.edge(e).weight},0)}(n)+1;r.forEach(n.children(),function(c){!function n(t,e,i,u,a,c,f){var s=t.children(f);if(!s.length)return void(f!==e&&t.setEdge(e,f,{weight:0,minlen:i}));var d=o.addBorderNode(t,"_bt"),p=o.addBorderNode(t,"_bb"),h=t.node(f);t.setParent(d,f);h.borderTop=d;t.setParent(p,f);h.borderBottom=p;r.forEach(s,function(r){n(t,e,i,u,a,c,r);var o=t.node(r),s=o.borderTop?o.borderTop:r,h=o.borderBottom?o.borderBottom:r,v=o.borderTop?u:2*u,l=s!==h?1:a-c[f]+1;t.setEdge(d,s,{weight:v,minlen:l,nestingEdge:!0}),t.setEdge(h,p,{weight:v,minlen:l,nestingEdge:!0})});t.parent(f)||t.setEdge(e,d,{weight:0,minlen:a+c[f]})}(n,t,u,a,i,e,c)}),n.graph().nodeRankFactor=u},cleanup:function(n){var t=n.graph();n.removeNode(t.nestingRoot),delete t.nestingRoot,r.forEach(n.edges(),function(t){var e=n.edge(t);e.nestingEdge&&n.removeEdge(t)})}}},function(n,t,e){var r=e(7);n.exports=function(n){var t=function(n){var t={},e=0;return r.forEach(n.children(),function o(i){var u=e;r.forEach(n.children(i),o),t[i]={low:u,lim:e++}}),t}(n);r.forEach(n.graph().dummyChains,function(e){for(var r=n.node(e),o=r.edgeObj,i=function(n,t,e,r){var o,i,u=[],a=[],c=Math.min(t[e].low,t[r].low),f=Math.max(t[e].lim,t[r].lim);o=e;do{o=n.parent(o),u.push(o)}while(o&&(t[o].low>c||f>t[o].lim));i=o,o=r;for(;(o=n.parent(o))!==i;)a.push(o);return{path:u.concat(a.reverse()),lca:i}}(n,t,o.v,o.w),u=i.path,a=i.lca,c=0,f=u[c],s=!0;e!==o.w;){if(r=n.node(e),s){for(;(f=u[c])!==a&&n.node(f).maxRank<r.rank;)c++;f===a&&(s=!1)}if(!s){for(;c<u.length-1&&n.node(f=u[c+1]).minRank<=r.rank;)c++;f=u[c]}n.setParent(e,f),e=n.successors(e)[0]}})}},function(n,t,e){"use strict";var r=e(7),o=e(184),i=e(67).slack,u=e(67).longestPath,a=e(22).alg.preorder,c=e(22).alg.postorder,f=e(15).simplify;function s(n){n=f(n),u(n);var t,e=o(n);for(h(e),d(e,n);t=v(e);)g(e,n,t,l(e,n,t))}function d(n,t){var e=c(n,n.nodes());e=e.slice(0,e.length-1),r.forEach(e,function(e){!function(n,t,e){var r=n.node(e).parent;n.edge(e,r).cutvalue=p(n,t,e)}(n,t,e)})}function p(n,t,e){var o=n.node(e).parent,i=!0,u=t.edge(e,o),a=0;return u||(i=!1,u=t.edge(o,e)),a=u.weight,r.forEach(t.nodeEdges(e),function(r){var u=r.v===e,c=u?r.w:r.v;if(c!==o){var f=u===i,s=t.edge(r).weight;if(a+=f?s:-s,function(n,t,e){return n.hasEdge(t,e)}(n,e,c)){var d=n.edge(e,c).cutvalue;a+=f?-d:d}}}),a}function h(n,t){arguments.length<2&&(t=n.nodes()[0]),function n(t,e,o,i,u){var a=o,c=t.node(i);e[i]=!0;r.forEach(t.neighbors(i),function(u){r.has(e,u)||(o=n(t,e,o,u,i))});c.low=a;c.lim=o++;u?c.parent=u:delete c.parent;return o}(n,{},1,t)}function v(n){return r.find(n.edges(),function(t){return n.edge(t).cutvalue<0})}function l(n,t,e){var o=e.v,u=e.w;t.hasEdge(o,u)||(o=e.w,u=e.v);var a=n.node(o),c=n.node(u),f=a,s=!1;a.lim>c.lim&&(f=c,s=!0);var d=r.filter(t.edges(),function(t){return s===y(n,n.node(t.v),f)&&s!==y(n,n.node(t.w),f)});return r.minBy(d,function(n){return i(t,n)})}function g(n,t,e,o){var i=e.v,u=e.w;n.removeEdge(i,u),n.setEdge(o.v,o.w,{}),h(n),d(n,t),function(n,t){var e=r.find(n.nodes(),function(n){return!t.node(n).parent}),o=a(n,e);o=o.slice(1),r.forEach(o,function(e){var r=n.node(e).parent,o=t.edge(e,r),i=!1;o||(o=t.edge(r,e),i=!0),t.node(e).rank=t.node(r).rank+(i?o.minlen:-o.minlen)})}(n,t)}function y(n,t,e){return e.low<=t.lim&&t.lim<=e.lim}n.exports=s,s.initLowLimValues=h,s.initCutValues=d,s.calcCutValue=p,s.leaveEdge=v,s.enterEdge=l,s.exchangeEdges=g},function(n,t,e){"use strict";var r=e(67).longestPath,o=e(184),i=e(432);n.exports=function(n){switch(n.graph().ranker){case"network-simplex":a(n);break;case"tight-tree":!function(n){r(n),o(n)}(n);break;case"longest-path":u(n);break;default:a(n)}};var u=r;function a(n){i(n)}},function(n,t,e){"use strict";var r=e(7),o=e(15);n.exports={run:function(n){n.graph().dummyChains=[],r.forEach(n.edges(),function(t){!function(n,t){var e,r,i,u=t.v,a=n.node(u).rank,c=t.w,f=n.node(c).rank,s=t.name,d=n.edge(t),p=d.labelRank;if(f===a+1)return;for(n.removeEdge(t),i=0,++a;a<f;++i,++a)d.points=[],r={width:0,height:0,edgeLabel:d,edgeObj:t,rank:a},e=o.addDummyNode(n,"edge",r,"_d"),a===p&&(r.width=d.width,r.height=d.height,r.dummy="edge-label",r.labelpos=d.labelpos),n.setEdge(u,e,{weight:d.weight},s),0===i&&n.graph().dummyChains.push(e),u=e;n.setEdge(u,c,{weight:d.weight},s)}(n,t)})},undo:function(n){r.forEach(n.graph().dummyChains,function(t){var e,r=n.node(t),o=r.edgeLabel;for(n.setEdge(r.edgeObj,o);r.dummy;)e=n.successors(t)[0],n.removeNode(t),o.points.push({x:r.x,y:r.y}),"edge-label"===r.dummy&&(o.x=r.x,o.y=r.y,o.width=r.width,o.height=r.height),t=e,r=n.node(t)})}}},function(n,t){function e(){var n={};n._next=n._prev=n,this._sentinel=n}function r(n){n._prev._next=n._next,n._next._prev=n._prev,delete n._next,delete n._prev}function o(n,t){if("_next"!==n&&"_prev"!==n)return t}n.exports=e,e.prototype.dequeue=function(){var n=this._sentinel,t=n._prev;if(t!==n)return r(t),t},e.prototype.enqueue=function(n){var t=this._sentinel;n._prev&&n._next&&r(n),n._next=t._next,t._next._prev=n,t._next=n,n._prev=t},e.prototype.toString=function(){for(var n=[],t=this._sentinel,e=t._prev;e!==t;)n.push(JSON.stringify(e,o)),e=e._prev;return"["+n.join(", ")+"]"}},function(n,t,e){var r=e(7),o=e(22).Graph,i=e(435);n.exports=function(n,t){if(n.nodeCount()<=1)return[];var e=function(n,t){var e=new o,u=0,a=0;r.forEach(n.nodes(),function(n){e.setNode(n,{v:n,in:0,out:0})}),r.forEach(n.edges(),function(n){var r=e.edge(n.v,n.w)||0,o=t(n),i=r+o;e.setEdge(n.v,n.w,i),a=Math.max(a,e.node(n.v).out+=o),u=Math.max(u,e.node(n.w).in+=o)});var f=r.range(a+u+3).map(function(){return new i}),s=u+1;return r.forEach(e.nodes(),function(n){c(f,s,e.node(n))}),{graph:e,buckets:f,zeroIdx:s}}(n,t||u),f=function(n,t,e){var r,o=[],i=t[t.length-1],u=t[0];for(;n.nodeCount();){for(;r=u.dequeue();)a(n,t,e,r);for(;r=i.dequeue();)a(n,t,e,r);if(n.nodeCount())for(var c=t.length-2;c>0;--c)if(r=t[c].dequeue()){o=o.concat(a(n,t,e,r,!0));break}}return o}(e.graph,e.buckets,e.zeroIdx);return r.flatten(r.map(f,function(t){return n.outEdges(t.v,t.w)}),!0)};var u=r.constant(1);function a(n,t,e,o,i){var u=i?[]:void 0;return r.forEach(n.inEdges(o.v),function(r){var o=n.edge(r),a=n.node(r.v);i&&u.push({v:r.v,w:r.w}),a.out-=o,c(t,e,a)}),r.forEach(n.outEdges(o.v),function(r){var o=n.edge(r),i=r.w,u=n.node(i);u.in-=o,c(t,e,u)}),n.removeNode(o.v),u}function c(n,t,e){e.out?e.in?n[e.out-e.in+t].enqueue(e):n[n.length-1].enqueue(e):n[0].enqueue(e)}},function(n,t,e){"use strict";var r=e(7),o=e(436);n.exports={run:function(n){var t="greedy"===n.graph().acyclicer?o(n,function(n){return function(t){return n.edge(t).weight}}(n)):function(n){var t=[],e={},o={};return r.forEach(n.nodes(),function i(u){r.has(o,u)||(o[u]=!0,e[u]=!0,r.forEach(n.outEdges(u),function(n){r.has(e,n.w)?t.push(n):i(n.w)}),delete e[u])}),t}(n);r.forEach(t,function(t){var e=n.edge(t);n.removeEdge(t),e.forwardName=t.name,e.reversed=!0,n.setEdge(t.w,t.v,e,r.uniqueId("rev"))})},undo:function(n){r.forEach(n.edges(),function(t){var e=n.edge(t);if(e.reversed){n.removeEdge(t);var r=e.forwardName;delete e.reversed,delete e.forwardName,n.setEdge(t.w,t.v,e,r)}})}}},function(n,t){n.exports=function(n,t,e){for(var r=-1,o=n.length,i=t.length,u={};++r<o;){var a=r<i?t[r]:void 0;e(u,n[r],a)}return u}},function(n,t,e){var r=e(78),o=e(438);n.exports=function(n,t){return o(n||[],t||[],r)}},function(n,t,e){var r=e(208),o=0;n.exports=function(n){var t=++o;return r(n)+t}},function(n,t,e){var r=e(39);n.exports=function(n,t){if(n!==t){var e=void 0!==n,o=null===n,i=n==n,u=r(n),a=void 0!==t,c=null===t,f=t==t,s=r(t);if(!c&&!s&&!u&&n>t||u&&a&&f&&!c&&!s||o&&a&&f||!e&&f||!i)return 1;if(!o&&!u&&!s&&n<t||s&&e&&i&&!o&&!u||c&&e&&i||!a&&i||!f)return-1}return 0}},function(n,t,e){var r=e(441);n.exports=function(n,t,e){for(var o=-1,i=n.criteria,u=t.criteria,a=i.length,c=e.length;++o<a;){var f=r(i[o],u[o]);if(f)return o>=c?f:f*("desc"==e[o]?-1:1)}return n.index-t.index}},function(n,t){n.exports=function(n,t){var e=n.length;for(n.sort(t);e--;)n[e]=n[e].value;return n}},function(n,t,e){var r=e(70),o=e(28),i=e(201),u=e(443),a=e(75),c=e(442),f=e(36);n.exports=function(n,t,e){var s=-1;t=r(t.length?t:[f],a(o));var d=i(n,function(n,e,o){return{criteria:r(t,function(t){return t(n)}),index:++s,value:n}});return u(d,function(n,t){return c(n,t,e)})}},function(n,t,e){var r=e(97),o=e(444),i=e(69),u=e(68),a=i(function(n,t){if(null==n)return[];var e=t.length;return e>1&&u(n,t[0],t[1])?t=[]:e>2&&u(t[0],t[1],t[2])&&(t=[t[0]]),o(n,r(t,1),[])});n.exports=a},function(n,t){var e=Math.ceil,r=Math.max;n.exports=function(n,t,o,i){for(var u=-1,a=r(e((t-n)/(o||1)),0),c=Array(a);a--;)c[i?a:++u]=n,n+=o;return c}},function(n,t,e){var r=e(446),o=e(68),i=e(189);n.exports=function(n){return function(t,e,u){return u&&"number"!=typeof u&&o(t,e,u)&&(e=u=void 0),t=i(t),void 0===e?(e=t,t=0):e=i(e),u=void 0===u?t<e?1:-1:i(u),r(t,e,u,n)}}},function(n,t,e){var r=e(447)();n.exports=r},function(n,t,e){var r=e(188),o=e(199),i=e(198);n.exports=function(n){return i(o(n,void 0,r),n+"")}},function(n,t,e){var r=e(78),o=e(71),i=e(76),u=e(16),a=e(53);n.exports=function(n,t,e,c){if(!u(n))return n;for(var f=-1,s=(t=o(t,n)).length,d=s-1,p=n;null!=p&&++f<s;){var h=a(t[f]),v=e;if(f!=d){var l=p[h];void 0===(v=c?c(l,h,p):void 0)&&(v=u(l)?l:i(t[f+1])?[]:{})}r(p,h,v),p=p[h]}return n}},function(n,t,e){var r=e(99),o=e(450),i=e(71);n.exports=function(n,t,e){for(var u=-1,a=t.length,c={};++u<a;){var f=t[u],s=r(n,f);e(s,f)&&o(c,i(f,n),s)}return c}},function(n,t,e){var r=e(451),o=e(207);n.exports=function(n,t){return r(n,t,function(t,e){return o(n,e)})}},function(n,t,e){var r=e(452),o=e(449)(function(n,t){return null==n?{}:r(n,t)});n.exports=o},function(n,t,e){var r=e(96),o=e(28),i=e(185);n.exports=function(n,t){return n&&n.length?r(n,o(t,2),i):void 0}},function(n,t,e){var r=e(96),o=e(185),i=e(36);n.exports=function(n){return n&&n.length?r(n,i,o):void 0}},function(n,t,e){var r=e(69),o=e(68);n.exports=function(n){return r(function(t,e){var r=-1,i=e.length,u=i>1?e[i-1]:void 0,a=i>2?e[2]:void 0;for(u=n.length>3&&"function"==typeof u?(i--,u):void 0,a&&o(e[0],e[1],a)&&(u=i<3?void 0:u,i=1),t=Object(t);++r<i;){var c=e[r];c&&n(t,c,r,u)}return t})}},function(n,t,e){var r=e(56),o=e(41);n.exports=function(n){return r(n,o(n))}},function(n,t,e){var r=e(34),o=e(73),i=e(23),u="[object Object]",a=Function.prototype,c=Object.prototype,f=a.toString,s=c.hasOwnProperty,d=f.call(Object);n.exports=function(n){if(!i(n)||r(n)!=u)return!1;var t=o(n);if(null===t)return!0;var e=s.call(t,"constructor")&&t.constructor;return"function"==typeof e&&e instanceof e&&f.call(e)==d}},function(n,t,e){var r=e(187),o=e(230),i=e(221),u=e(229),a=e(220),c=e(55),f=e(11),s=e(196),d=e(42),p=e(57),h=e(16),v=e(458),l=e(54),g=e(186),y=e(457);n.exports=function(n,t,e,b,x,m,w){var _=g(n,e),E=g(t,e),j=w.get(E);if(j)r(n,e,j);else{var k=m?m(_,E,e+"",n,t,w):void 0,O=void 0===k;if(O){var N=f(E),I=!N&&d(E),C=!N&&!I&&l(E);k=E,N||I||C?f(_)?k=_:s(_)?k=u(_):I?(O=!1,k=o(E,!0)):C?(O=!1,k=i(E,!0)):k=[]:v(E)||c(E)?(k=_,c(_)?k=y(_):h(_)&&!p(_)||(k=a(E))):O=!1}O&&(w.set(E,k),x(k,E,b,m,w),w.delete(E)),r(n,e,k)}}},function(n,t,e){var r=e(83),o=e(187),i=e(101),u=e(459),a=e(16),c=e(41),f=e(186);n.exports=function n(t,e,s,d,p){t!==e&&i(e,function(i,c){if(a(i))p||(p=new r),u(t,e,c,s,n,d,p);else{var h=d?d(f(t,c),i,c+"",t,e,p):void 0;void 0===h&&(h=i),o(t,c,h)}},c)}},function(n,t,e){var r=e(460),o=e(456)(function(n,t,e){r(n,t,e)});n.exports=o},function(n,t){n.exports=function(n,t){return n>t}},function(n,t,e){var r=e(96),o=e(462),i=e(36);n.exports=function(n){return n&&n.length?r(n,i,o):void 0}},function(n,t,e){var r=e(77),o=e(102),i=e(28);n.exports=function(n,t){var e={};return t=i(t,3),o(n,function(n,o,i){r(e,o,t(n,o,i))}),e}},function(n,t){n.exports=function(n){var t=null==n?0:n.length;return t?n[t-1]:void 0}},function(n,t,e){var r=e(101),o=e(216),i=e(41);n.exports=function(n,t){return null==n?n:r(n,o(t),i)}},function(n,t,e){var r=e(189);n.exports=function(n){var t=r(n),e=t%1;return t==t?e?t-e:t:0}},function(n,t,e){var r=e(197),o=e(28),i=e(467),u=Math.max;n.exports=function(n,t,e){var a=null==n?0:n.length;if(!a)return-1;var c=null==e?0:i(e);return c<0&&(c=u(a+c,0)),r(n,o(t,3),c)}},function(n,t,e){var r=e(28),o=e(29),i=e(33);n.exports=function(n){return function(t,e,u){var a=Object(t);if(!o(t)){var c=r(e,3);t=i(t),e=function(n){return c(a[n],n,a)}}var f=n(t,e,u);return f>-1?a[c?t[f]:f]:void 0}}},function(n,t,e){var r=e(469)(e(468));n.exports=r},function(n,t,e){var r=e(69),o=e(43),i=e(68),u=e(41),a=Object.prototype,c=a.hasOwnProperty,f=r(function(n,t){n=Object(n);var e=-1,r=t.length,f=r>2?t[2]:void 0;for(f&&i(t[0],t[1],f)&&(r=1);++e<r;)for(var s=t[e],d=u(s),p=-1,h=d.length;++p<h;){var v=d[p],l=n[v];(void 0===l||o(l,a[v])&&!c.call(n,v))&&(n[v]=s[v])}return n});n.exports=f},function(n,t,e){var r=e(235),o=1,i=4;n.exports=function(n){return r(n,o|i)}},function(n,t,e){"use strict";var r=e(7),o=e(437),i=e(434),u=e(433),a=e(15).normalizeRanks,c=e(431),f=e(15).removeEmptyRanks,s=e(430),d=e(429),p=e(428),h=e(427),v=e(418),l=e(15),g=e(22).Graph;n.exports=function(n,t){var e=t&&t.debugTiming?l.time:l.notime;e("layout",function(){var t=e(" buildLayoutGraph",function(){return function(n){var t=new g({multigraph:!0,compound:!0}),e=O(n.graph());return t.setGraph(r.merge({},b,k(e,y),r.pick(e,x))),r.forEach(n.nodes(),function(e){var o=O(n.node(e));t.setNode(e,r.defaults(k(o,m),w)),t.setParent(e,n.parent(e))}),r.forEach(n.edges(),function(e){var o=O(n.edge(e));t.setEdge(e,r.merge({},E,k(o,_),r.pick(o,j)))}),t}(n)});e(" runLayout",function(){!function(n,t){t(" makeSpaceForEdgeLabels",function(){!function(n){var t=n.graph();t.ranksep/=2,r.forEach(n.edges(),function(e){var r=n.edge(e);r.minlen*=2,"c"!==r.labelpos.toLowerCase()&&("TB"===t.rankdir||"BT"===t.rankdir?r.width+=r.labeloffset:r.height+=r.labeloffset)})}(n)}),t(" removeSelfEdges",function(){!function(n){r.forEach(n.edges(),function(t){if(t.v===t.w){var e=n.node(t.v);e.selfEdges||(e.selfEdges=[]),e.selfEdges.push({e:t,label:n.edge(t)}),n.removeEdge(t)}})}(n)}),t(" acyclic",function(){o.run(n)}),t(" nestingGraph.run",function(){s.run(n)}),t(" rank",function(){u(l.asNonCompoundGraph(n))}),t(" injectEdgeLabelProxies",function(){!function(n){r.forEach(n.edges(),function(t){var e=n.edge(t);if(e.width&&e.height){var r=n.node(t.v),o=n.node(t.w),i={rank:(o.rank-r.rank)/2+r.rank,e:t};l.addDummyNode(n,"edge-proxy",i,"_ep")}})}(n)}),t(" removeEmptyRanks",function(){f(n)}),t(" nestingGraph.cleanup",function(){s.cleanup(n)}),t(" normalizeRanks",function(){a(n)}),t(" assignRankMinMax",function(){!function(n){var t=0;r.forEach(n.nodes(),function(e){var o=n.node(e);o.borderTop&&(o.minRank=n.node(o.borderTop).rank,o.maxRank=n.node(o.borderBottom).rank,t=r.max(t,o.maxRank))}),n.graph().maxRank=t}(n)}),t(" removeEdgeLabelProxies",function(){!function(n){r.forEach(n.nodes(),function(t){var e=n.node(t);"edge-proxy"===e.dummy&&(n.edge(e.e).labelRank=e.rank,n.removeNode(t))})}(n)}),t(" normalize.run",function(){i.run(n)}),t(" parentDummyChains",function(){c(n)}),t(" addBorderSegments",function(){d(n)}),t(" order",function(){h(n)}),t(" insertSelfEdges",function(){!function(n){var t=l.buildLayerMatrix(n);r.forEach(t,function(t){var e=0;r.forEach(t,function(t,o){var i=n.node(t);i.order=o+e,r.forEach(i.selfEdges,function(t){l.addDummyNode(n,"selfedge",{width:t.label.width,height:t.label.height,rank:i.rank,order:o+ ++e,e:t.e,label:t.label},"_se")}),delete i.selfEdges})})}(n)}),t(" adjustCoordinateSystem",function(){p.adjust(n)}),t(" position",function(){v(n)}),t(" positionSelfEdges",function(){!function(n){r.forEach(n.nodes(),function(t){var e=n.node(t);if("selfedge"===e.dummy){var r=n.node(e.e.v),o=r.x+r.width/2,i=r.y,u=e.x-o,a=r.height/2;n.setEdge(e.e,e.label),n.removeNode(t),e.label.points=[{x:o+2*u/3,y:i-a},{x:o+5*u/6,y:i-a},{x:o+u,y:i},{x:o+5*u/6,y:i+a},{x:o+2*u/3,y:i+a}],e.label.x=e.x,e.label.y=e.y}})}(n)}),t(" removeBorderNodes",function(){!function(n){r.forEach(n.nodes(),function(t){if(n.children(t).length){var e=n.node(t),o=n.node(e.borderTop),i=n.node(e.borderBottom),u=n.node(r.last(e.borderLeft)),a=n.node(r.last(e.borderRight));e.width=Math.abs(a.x-u.x),e.height=Math.abs(i.y-o.y),e.x=u.x+e.width/2,e.y=o.y+e.height/2}}),r.forEach(n.nodes(),function(t){"border"===n.node(t).dummy&&n.removeNode(t)})}(n)}),t(" normalize.undo",function(){i.undo(n)}),t(" fixupEdgeLabelCoords",function(){!function(n){r.forEach(n.edges(),function(t){var e=n.edge(t);if(r.has(e,"x"))switch("l"!==e.labelpos&&"r"!==e.labelpos||(e.width-=e.labeloffset),e.labelpos){case"l":e.x-=e.width/2+e.labeloffset;break;case"r":e.x+=e.width/2+e.labeloffset}})}(n)}),t(" undoCoordinateSystem",function(){p.undo(n)}),t(" translateGraph",function(){!function(n){var t=Number.POSITIVE_INFINITY,e=0,o=Number.POSITIVE_INFINITY,i=0,u=n.graph(),a=u.marginx||0,c=u.marginy||0;function f(n){var r=n.x,u=n.y,a=n.width,c=n.height;t=Math.min(t,r-a/2),e=Math.max(e,r+a/2),o=Math.min(o,u-c/2),i=Math.max(i,u+c/2)}r.forEach(n.nodes(),function(t){f(n.node(t))}),r.forEach(n.edges(),function(t){var e=n.edge(t);r.has(e,"x")&&f(e)}),t-=a,o-=c,r.forEach(n.nodes(),function(e){var r=n.node(e);r.x-=t,r.y-=o}),r.forEach(n.edges(),function(e){var i=n.edge(e);r.forEach(i.points,function(n){n.x-=t,n.y-=o}),r.has(i,"x")&&(i.x-=t),r.has(i,"y")&&(i.y-=o)}),u.width=e-t+a,u.height=i-o+c}(n)}),t(" assignNodeIntersects",function(){!function(n){r.forEach(n.edges(),function(t){var e,r,o=n.edge(t),i=n.node(t.v),u=n.node(t.w);o.points?(e=o.points[0],r=o.points[o.points.length-1]):(o.points=[],e=u,r=i),o.points.unshift(l.intersectRect(i,e)),o.points.push(l.intersectRect(u,r))})}(n)}),t(" reversePoints",function(){!function(n){r.forEach(n.edges(),function(t){var e=n.edge(t);e.reversed&&e.points.reverse()})}(n)}),t(" acyclic.undo",function(){o.undo(n)})}(t,e)}),e(" updateInputGraph",function(){!function(n,t){r.forEach(n.nodes(),function(e){var r=n.node(e),o=t.node(e);r&&(r.x=o.x,r.y=o.y,t.children(e).length&&(r.width=o.width,r.height=o.height))}),r.forEach(n.edges(),function(e){var o=n.edge(e),i=t.edge(e);o.points=i.points,r.has(i,"x")&&(o.x=i.x,o.y=i.y)}),n.graph().width=t.graph().width,n.graph().height=t.graph().height}(n,t)})})};var y=["nodesep","edgesep","ranksep","marginx","marginy"],b={ranksep:50,edgesep:20,nodesep:50,rankdir:"tb"},x=["acyclicer","ranker","rankdir","align"],m=["width","height"],w={width:0,height:0},_=["minlen","weight","width","height","labeloffset"],E={minlen:1,weight:1,width:0,height:0,labeloffset:10,labelpos:"r"},j=["labelpos"];function k(n,t){return r.mapValues(r.pick(n,t),Number)}function O(n){var t={};return r.forEach(n,function(n,e){t[e.toLowerCase()]=n}),t}},function(n,t,e){var r=e(18),o=e(114),i=e(193);n.exports=function(n,t){var e,u=new o,a={},c=new i;function f(n){var r=n.v===e?n.w:n.v,o=c.priority(r);if(void 0!==o){var i=t(n);i<o&&(a[r]=e,c.decrease(r,i))}}if(0===n.nodeCount())return u;r.each(n.nodes(),function(n){c.add(n,Number.POSITIVE_INFINITY),u.setNode(n)}),c.decrease(n.nodes()[0],0);var s=!1;for(;c.size()>0;){if(e=c.removeMin(),r.has(a,e))u.setEdge(e,a[e]);else{if(s)throw new Error("Input graph is not connected: "+n);s=!0}n.nodeEdges(e).forEach(f)}return u}},function(n,t,e){var r=e(190);n.exports=function(n,t){return r(n,t,"pre")}},function(n,t,e){var r=e(190);n.exports=function(n,t){return r(n,t,"post")}},function(n,t,e){var r=e(191);n.exports=function(n){try{r(n)}catch(n){if(n instanceof r.CycleException)return!1;throw n}return!0}},function(n,t,e){var r=e(18);n.exports=function(n,t,e){return function(n,t,e){var r={},o=n.nodes();return o.forEach(function(n){r[n]={},r[n][n]={distance:0},o.forEach(function(t){n!==t&&(r[n][t]={distance:Number.POSITIVE_INFINITY})}),e(n).forEach(function(e){var o=e.v===n?e.w:e.v,i=t(e);r[n][o]={distance:i,predecessor:n}})}),o.forEach(function(n){var t=r[n];o.forEach(function(e){var i=r[e];o.forEach(function(e){var r=i[n],o=t[e],u=i[e],a=r.distance+o.distance;a<u.distance&&(u.distance=a,u.predecessor=o.predecessor)})})}),r}(n,t||o,e||function(t){return n.outEdges(t)})};var o=r.constant(1)},function(n,t,e){var r=e(18),o=e(192);n.exports=function(n){return r.filter(o(n),function(t){return t.length>1||1===t.length&&n.hasEdge(t[0],t[0])})}},function(n,t,e){var r=e(194),o=e(18);n.exports=function(n,t,e){return o.transform(n.nodes(),function(o,i){o[i]=r(n,i,t,e)},{})}},function(n,t,e){var r=e(18);n.exports=function(n){var t,e={},o=[];function i(o){r.has(e,o)||(e[o]=!0,t.push(o),r.each(n.successors(o),i),r.each(n.predecessors(o),i))}return r.each(n.nodes(),function(n){t=[],i(n),t.length&&o.push(t)}),o}},function(n,t,e){n.exports={components:e(481),dijkstra:e(194),dijkstraAll:e(480),findCycles:e(479),floydWarshall:e(478),isAcyclic:e(477),postorder:e(476),preorder:e(475),prim:e(474),tarjan:e(192),topsort:e(191)}},function(n,t,e){var r=e(18),o=e(114);n.exports={write:function(n){var t={options:{directed:n.isDirected(),multigraph:n.isMultigraph(),compound:n.isCompound()},nodes:function(n){return r.map(n.nodes(),function(t){var e=n.node(t),o=n.parent(t),i={v:t};return r.isUndefined(e)||(i.value=e),r.isUndefined(o)||(i.parent=o),i})}(n),edges:function(n){return r.map(n.edges(),function(t){var e=n.edge(t),o={v:t.v,w:t.w};return r.isUndefined(t.name)||(o.name=t.name),r.isUndefined(e)||(o.value=e),o})}(n)};r.isUndefined(n.graph())||(t.value=r.clone(n.graph()));return t},read:function(n){var t=new o(n.options).setGraph(n.value);return r.each(n.nodes,function(n){t.setNode(n.v,n.value),n.parent&&t.setParent(n.v,n.parent)}),r.each(n.edges,function(n){t.setEdge({v:n.v,w:n.w,name:n.name},n.value)}),t}}},function(n,t){n.exports="2.1.7"},function(n,t,e){var r=e(70);n.exports=function(n,t){return r(t,function(t){return n[t]})}},function(n,t){n.exports=function(){}},function(n,t,e){var r=e(223),o=e(486),i=e(100),u=r&&1/i(new r([,-0]))[1]==1/0?function(n){return new r(n)}:o;n.exports=u},function(n,t){n.exports=function(n,t,e){for(var r=-1,o=null==n?0:n.length;++r<o;)if(e(t,n[r]))return!0;return!1}},function(n,t){n.exports=function(n,t,e){for(var r=e-1,o=n.length;++r<o;)if(n[r]===t)return r;return-1}},function(n,t){n.exports=function(n){return n!=n}},function(n,t,e){var r=e(197),o=e(490),i=e(489);n.exports=function(n,t,e){return t==t?i(n,t,e):r(n,o,e)}},function(n,t,e){var r=e(491);n.exports=function(n,t){return!(null==n||!n.length)&&r(n,t,0)>-1}},function(n,t,e){var r=e(212),o=e(492),i=e(488),u=e(211),a=e(487),c=e(100),f=200;n.exports=function(n,t,e){var s=-1,d=o,p=n.length,h=!0,v=[],l=v;if(e)h=!1,d=i;else if(p>=f){var g=t?null:a(n);if(g)return c(g);h=!1,d=u,l=new r}else l=t?[]:v;n:for(;++s<p;){var y=n[s],b=t?t(y):y;if(y=e||0!==y?y:0,h&&b==b){for(var x=l.length;x--;)if(l[x]===b)continue n;t&&l.push(b),v.push(y)}else d(l,b,e)||(l!==v&&l.push(b),v.push(y))}return v}},function(n,t){var e=800,r=16,o=Date.now;n.exports=function(n){var t=0,i=0;return function(){var u=o(),a=r-(u-i);if(i=u,a>0){if(++t>=e)return arguments[0]}else t=0;return n.apply(void 0,arguments)}}},function(n,t,e){var r=e(103),o=e(233),i=e(36),u=o?function(n,t){return o(n,"toString",{configurable:!0,enumerable:!1,value:r(t),writable:!0})}:i;n.exports=u},function(n,t){n.exports=function(n,t,e){switch(e.length){case 0:return n.call(t);case 1:return n.call(t,e[0]);case 2:return n.call(t,e[0],e[1]);case 3:return n.call(t,e[0],e[1],e[2])}return n.apply(t,e)}},function(n,t,e){var r=e(38),o=e(55),i=e(11),u=r?r.isConcatSpreadable:void 0;n.exports=function(n){return i(n)||o(n)||!!(u&&n&&n[u])}},function(n,t,e){var r=e(97),o=e(69),i=e(493),u=e(196),a=o(function(n){return i(r(n,1,u,!0))});n.exports=a},function(n,t,e){var r=e(111),o=e(219),i=e(102),u=e(28),a=e(73),c=e(11),f=e(42),s=e(57),d=e(16),p=e(54);n.exports=function(n,t,e){var h=c(n),v=h||f(n)||p(n);if(t=u(t,4),null==e){var l=n&&n.constructor;e=v?h?new l:[]:d(n)&&s(l)?o(a(n)):{}}return(v?r:i)(n,function(n,r,o){return t(e,n,r,o)}),e}},function(n,t){var e="[\\ud800-\\udfff]",r="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",o="\\ud83c[\\udffb-\\udfff]",i="[^\\ud800-\\udfff]",u="(?:\\ud83c[\\udde6-\\uddff]){2}",a="[\\ud800-\\udbff][\\udc00-\\udfff]",c="(?:"+r+"|"+o+")"+"?",f="[\\ufe0e\\ufe0f]?"+c+("(?:\\u200d(?:"+[i,u,a].join("|")+")[\\ufe0e\\ufe0f]?"+c+")*"),s="(?:"+[i+r+"?",r,u,a,e].join("|")+")",d=RegExp(o+"(?="+o+")|"+s+f,"g");n.exports=function(n){for(var t=d.lastIndex=0;d.test(n);)++t;return t}},function(n,t){var e=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]");n.exports=function(n){return e.test(n)}},function(n,t,e){var r=e(205)("length");n.exports=r},function(n,t,e){var r=e(502),o=e(501),i=e(500);n.exports=function(n){return o(n)?i(n):r(n)}},function(n,t,e){var r=e(34),o=e(11),i=e(23),u="[object String]";n.exports=function(n){return"string"==typeof n||!o(n)&&i(n)&&r(n)==u}},function(n,t,e){var r=e(107),o=e(40),i=e(29),u=e(504),a=e(503),c="[object Map]",f="[object Set]";n.exports=function(n){if(null==n)return 0;if(i(n))return u(n)?a(n):n.length;var t=o(n);return t==c||t==f?n.size:r(n).length}},function(n,t){n.exports=function(n,t,e,r,o){return o(n,function(n,o,i){e=r?(r=!1,n):t(e,n,o,i)}),e}},function(n,t){n.exports=function(n,t,e,r){var o=-1,i=null==n?0:n.length;for(r&&i&&(e=n[++o]);++o<i;)e=t(e,n[o],o,n);return e}},function(n,t,e){var r=e(107),o=e(40),i=e(55),u=e(11),a=e(29),c=e(42),f=e(74),s=e(54),d="[object Map]",p="[object Set]",h=Object.prototype.hasOwnProperty;n.exports=function(n){if(null==n)return!0;if(a(n)&&(u(n)||"string"==typeof n||"function"==typeof n.splice||c(n)||s(n)||i(n)))return!n.length;var t=o(n);if(t==d||t==p)return!n.size;if(f(n))return!r(n).length;for(var e in n)if(h.call(n,e))return!1;return!0}},function(n,t){var e=Object.prototype.hasOwnProperty;n.exports=function(n,t){return null!=n&&e.call(n,t)}},function(n,t,e){var r=e(99);n.exports=function(n){return function(t){return r(t,n)}}},function(n,t,e){var r=e(205),o=e(510),i=e(98),u=e(53);n.exports=function(n){return i(n)?r(u(n)):o(n)}},function(n,t){n.exports=function(n,t){return null!=n&&t in Object(n)}},function(n,t,e){var r=e(38),o=e(70),i=e(11),u=e(39),a=1/0,c=r?r.prototype:void 0,f=c?c.toString:void 0;n.exports=function n(t){if("string"==typeof t)return t;if(i(t))return o(t,n)+"";if(u(t))return f?f.call(t):"";var e=t+"";return"0"==e&&1/t==-a?"-0":e}},function(n,t,e){var r=e(112),o="Expected a function";function i(n,t){if("function"!=typeof n||null!=t&&"function"!=typeof t)throw new TypeError(o);var e=function(){var r=arguments,o=t?t.apply(this,r):r[0],i=e.cache;if(i.has(o))return i.get(o);var u=n.apply(this,r);return e.cache=i.set(o,u)||i,u};return e.cache=new(i.Cache||r),e}i.Cache=r,n.exports=i},function(n,t,e){var r=e(514),o=500;n.exports=function(n){var t=r(n,function(n){return e.size===o&&e.clear(),n}),e=t.cache;return t}},function(n,t,e){var r=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,o=/\\(\\)?/g,i=e(515)(function(n){var t=[];return 46===n.charCodeAt(0)&&t.push(""),n.replace(r,function(n,e,r,i){t.push(r?i.replace(o,"$1"):e||n)}),t});n.exports=i},function(n,t,e){var r=e(99);n.exports=function(n,t,e){var o=null==n?void 0:r(n,t);return void 0===o?e:o}},function(n,t,e){var r=e(214),o=e(517),i=e(207),u=e(98),a=e(210),c=e(209),f=e(53),s=1,d=2;n.exports=function(n,t){return u(n)&&a(t)?c(f(n),t):function(e){var u=o(e,n);return void 0===u&&u===t?i(e,n):r(t,u,s|d)}}},function(n,t,e){var r=e(210),o=e(33);n.exports=function(n){for(var t=o(n),e=t.length;e--;){var i=t[e],u=n[i];t[e]=[i,u,r(u)]}return t}},function(n,t,e){var r=e(225),o=1,i=Object.prototype.hasOwnProperty;n.exports=function(n,t,e,u,a,c){var f=e&o,s=r(n),d=s.length;if(d!=r(t).length&&!f)return!1;for(var p=d;p--;){var h=s[p];if(!(f?h in t:i.call(t,h)))return!1}var v=c.get(n);if(v&&c.get(t))return v==t;var l=!0;c.set(n,t),c.set(t,n);for(var g=f;++p<d;){var y=n[h=s[p]],b=t[h];if(u)var x=f?u(b,y,h,t,n,c):u(y,b,h,n,t,c);if(!(void 0===x?y===b||a(y,b,e,u,c):x)){l=!1;break}g||(g="constructor"==h)}if(l&&!g){var m=n.constructor,w=t.constructor;m!=w&&"constructor"in n&&"constructor"in t&&!("function"==typeof m&&m instanceof m&&"function"==typeof w&&w instanceof w)&&(l=!1)}return c.delete(n),c.delete(t),l}},function(n,t){n.exports=function(n){var t=-1,e=Array(n.size);return n.forEach(function(n,r){e[++t]=[r,n]}),e}},function(n,t,e){var r=e(38),o=e(222),i=e(43),u=e(213),a=e(521),c=e(100),f=1,s=2,d="[object Boolean]",p="[object Date]",h="[object Error]",v="[object Map]",l="[object Number]",g="[object RegExp]",y="[object Set]",b="[object String]",x="[object Symbol]",m="[object ArrayBuffer]",w="[object DataView]",_=r?r.prototype:void 0,E=_?_.valueOf:void 0;n.exports=function(n,t,e,r,_,j,k){switch(e){case w:if(n.byteLength!=t.byteLength||n.byteOffset!=t.byteOffset)return!1;n=n.buffer,t=t.buffer;case m:return!(n.byteLength!=t.byteLength||!j(new o(n),new o(t)));case d:case p:case l:return i(+n,+t);case h:return n.name==t.name&&n.message==t.message;case g:case b:return n==t+"";case v:var O=a;case y:var N=r&f;if(O||(O=c),n.size!=t.size&&!N)return!1;var I=k.get(n);if(I)return I==t;r|=s,k.set(n,t);var C=u(O(n),O(t),r,_,j,k);return k.delete(n),C;case x:if(E)return E.call(n)==E.call(t)}return!1}},function(n,t){n.exports=function(n,t){for(var e=-1,r=null==n?0:n.length;++e<r;)if(t(n[e],e,n))return!0;return!1}},function(n,t){n.exports=function(n){return this.__data__.has(n)}},function(n,t){var e="__lodash_hash_undefined__";n.exports=function(n){return this.__data__.set(n,e),this}},function(n,t,e){var r=e(83),o=e(213),i=e(522),u=e(520),a=e(40),c=e(11),f=e(42),s=e(54),d=1,p="[object Arguments]",h="[object Array]",v="[object Object]",l=Object.prototype.hasOwnProperty;n.exports=function(n,t,e,g,y,b){var x=c(n),m=c(t),w=x?h:a(n),_=m?h:a(t),E=(w=w==p?v:w)==v,j=(_=_==p?v:_)==v,k=w==_;if(k&&f(n)){if(!f(t))return!1;x=!0,E=!1}if(k&&!E)return b||(b=new r),x||s(n)?o(n,t,e,g,y,b):i(n,t,w,e,g,y,b);if(!(e&d)){var O=E&&l.call(n,"__wrapped__"),N=j&&l.call(t,"__wrapped__");if(O||N){var I=O?n.value():n,C=N?t.value():t;return b||(b=new r),y(I,C,e,g,b)}}return!!k&&(b||(b=new r),u(n,t,e,g,y,b))}},function(n,t,e){var r=e(83),o=e(214),i=1,u=2;n.exports=function(n,t,e,a){var c=e.length,f=c,s=!a;if(null==n)return!f;for(n=Object(n);c--;){var d=e[c];if(s&&d[2]?d[1]!==n[d[0]]:!(d[0]in n))return!1}for(;++c<f;){var p=(d=e[c])[0],h=n[p],v=d[1];if(s&&d[2]){if(void 0===h&&!(p in n))return!1}else{var l=new r;if(a)var g=a(h,v,p,n,t,l);if(!(void 0===g?o(v,h,i|u,a,l):g))return!1}}return!0}},function(n,t,e){var r=e(527),o=e(519),i=e(209);n.exports=function(n){var t=o(n);return 1==t.length&&t[0][2]?i(t[0][0],t[0][1]):function(e){return e===n||r(e,n,t)}}},function(n,t,e){var r=e(72);n.exports=function(n,t){var e=[];return r(n,function(n,r,o){t(n,r,o)&&e.push(n)}),e}},function(n,t,e){var r=e(29);n.exports=function(n,t){return function(e,o){if(null==e)return e;if(!r(e))return n(e,o);for(var i=e.length,u=t?i:-1,a=Object(e);(t?u--:++u<i)&&!1!==o(a[u],u,a););return e}}},function(n,t){n.exports=function(n){return function(t,e,r){for(var o=-1,i=Object(t),u=r(t),a=u.length;a--;){var c=u[n?a:++o];if(!1===e(i[c],c,i))break}return t}}},function(n,t,e){var r=e(40),o=e(23),i="[object Set]";n.exports=function(n){return o(n)&&r(n)==i}},function(n,t,e){var r=e(532),o=e(75),i=e(108),u=i&&i.isSet,a=u?o(u):r;n.exports=a},function(n,t,e){var r=e(40),o=e(23),i="[object Map]";n.exports=function(n){return o(n)&&r(n)==i}},function(n,t,e){var r=e(534),o=e(75),i=e(108),u=i&&i.isMap,a=u?o(u):r;n.exports=a},function(n,t,e){var r=e(38),o=r?r.prototype:void 0,i=o?o.valueOf:void 0;n.exports=function(n){return i?Object(i.call(n)):{}}},function(n,t){var e=/\w*$/;n.exports=function(n){var t=new n.constructor(n.source,e.exec(n));return t.lastIndex=n.lastIndex,t}},function(n,t,e){var r=e(104);n.exports=function(n,t){var e=t?r(n.buffer):n.buffer;return new n.constructor(e,n.byteOffset,n.byteLength)}},function(n,t,e){var r=e(104),o=e(538),i=e(537),u=e(536),a=e(221),c="[object Boolean]",f="[object Date]",s="[object Map]",d="[object Number]",p="[object RegExp]",h="[object Set]",v="[object String]",l="[object Symbol]",g="[object ArrayBuffer]",y="[object DataView]",b="[object Float32Array]",x="[object Float64Array]",m="[object Int8Array]",w="[object Int16Array]",_="[object Int32Array]",E="[object Uint8Array]",j="[object Uint8ClampedArray]",k="[object Uint16Array]",O="[object Uint32Array]";n.exports=function(n,t,e){var N=n.constructor;switch(t){case g:return r(n);case c:case f:return new N(+n);case y:return o(n,e);case b:case x:case m:case w:case _:case E:case j:case k:case O:return a(n,e);case s:return new N;case d:case v:return new N(n);case p:return i(n);case h:return new N;case l:return u(n)}}},function(n,t){var e=Object.prototype.hasOwnProperty;n.exports=function(n){var t=n.length,r=new n.constructor(t);return t&&"string"==typeof n[0]&&e.call(n,"index")&&(r.index=n.index,r.input=n.input),r}},function(n,t,e){var r=e(37)(e(20),"WeakMap");n.exports=r},function(n,t,e){var r=e(37)(e(20),"Promise");n.exports=r},function(n,t,e){var r=e(37)(e(20),"DataView");n.exports=r},function(n,t,e){var r=e(224),o=e(226),i=e(41);n.exports=function(n){return r(n,i,o)}},function(n,t,e){var r=e(56),o=e(226);n.exports=function(n,t){return r(n,o(n),t)}},function(n,t,e){var r=e(56),o=e(106);n.exports=function(n,t){return r(n,o(n),t)}},function(n,t){n.exports=function(n){var t=[];if(null!=n)for(var e in Object(n))t.push(e);return t}},function(n,t,e){var r=e(16),o=e(74),i=e(547),u=Object.prototype.hasOwnProperty;n.exports=function(n){if(!r(n))return i(n);var t=o(n),e=[];for(var a in n)("constructor"!=a||!t&&u.call(n,a))&&e.push(a);return e}},function(n,t,e){var r=e(56),o=e(41);n.exports=function(n,t){return n&&r(t,o(t),n)}},function(n,t,e){var r=e(231)(Object.keys,Object);n.exports=r},function(n,t,e){var r=e(34),o=e(109),i=e(23),u={};u["[object Float32Array]"]=u["[object Float64Array]"]=u["[object Int8Array]"]=u["[object Int16Array]"]=u["[object Int32Array]"]=u["[object Uint8Array]"]=u["[object Uint8ClampedArray]"]=u["[object Uint16Array]"]=u["[object Uint32Array]"]=!0,u["[object Arguments]"]=u["[object Array]"]=u["[object ArrayBuffer]"]=u["[object Boolean]"]=u["[object DataView]"]=u["[object Date]"]=u["[object Error]"]=u["[object Function]"]=u["[object Map]"]=u["[object Number]"]=u["[object Object]"]=u["[object RegExp]"]=u["[object Set]"]=u["[object String]"]=u["[object WeakMap]"]=!1,n.exports=function(n){return i(n)&&o(n.length)&&!!u[r(n)]}},function(n,t){n.exports=function(){return!1}},function(n,t,e){var r=e(34),o=e(23),i="[object Arguments]";n.exports=function(n){return o(n)&&r(n)==i}},function(n,t){n.exports=function(n,t){for(var e=-1,r=Array(n);++e<n;)r[e]=t(e);return r}},function(n,t,e){var r=e(56),o=e(33);n.exports=function(n,t){return n&&r(t,o(t),n)}},function(n,t,e){var r=e(79);n.exports=function(n,t){var e=r(this,n),o=e.size;return e.set(n,t),this.size+=e.size==o?0:1,this}},function(n,t,e){var r=e(79);n.exports=function(n){return r(this,n).has(n)}},function(n,t,e){var r=e(79);n.exports=function(n){return r(this,n).get(n)}},function(n,t){n.exports=function(n){var t=typeof n;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==n:null===n}},function(n,t,e){var r=e(79);n.exports=function(n){var t=r(this,n).delete(n);return this.size-=t?1:0,t}},function(n,t,e){var r=e(80),o="__lodash_hash_undefined__";n.exports=function(n,t){var e=this.__data__;return this.size+=this.has(n)?0:1,e[n]=r&&void 0===t?o:t,this}},function(n,t,e){var r=e(80),o=Object.prototype.hasOwnProperty;n.exports=function(n){var t=this.__data__;return r?void 0!==t[n]:o.call(t,n)}},function(n,t,e){var r=e(80),o="__lodash_hash_undefined__",i=Object.prototype.hasOwnProperty;n.exports=function(n){var t=this.__data__;if(r){var e=t[n];return e===o?void 0:e}return i.call(t,n)?t[n]:void 0}},function(n,t){n.exports=function(n){var t=this.has(n)&&delete this.__data__[n];return this.size-=t?1:0,t}},function(n,t,e){var r=e(80);n.exports=function(){this.__data__=r?r(null):{},this.size=0}},function(n,t,e){var r=e(565),o=e(564),i=e(563),u=e(562),a=e(561);function c(n){var t=-1,e=null==n?0:n.length;for(this.clear();++t<e;){var r=n[t];this.set(r[0],r[1])}}c.prototype.clear=r,c.prototype.delete=o,c.prototype.get=i,c.prototype.has=u,c.prototype.set=a,n.exports=c},function(n,t,e){var r=e(566),o=e(82),i=e(113);n.exports=function(){this.size=0,this.__data__={hash:new r,map:new(i||o),string:new r}}},function(n,t){n.exports=function(n,t){return null==n?void 0:n[t]}},function(n,t,e){var r=e(20)["__core-js_shared__"];n.exports=r},function(n,t,e){var r=e(569),o=function(){var n=/[^.]+$/.exec(r&&r.keys&&r.keys.IE_PROTO||"");return n?"Symbol(src)_1."+n:""}();n.exports=function(n){return!!o&&o in n}},function(n,t,e){var r=e(57),o=e(570),i=e(16),u=e(234),a=/^\[object .+?Constructor\]$/,c=Function.prototype,f=Object.prototype,s=c.toString,d=f.hasOwnProperty,p=RegExp("^"+s.call(d).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");n.exports=function(n){return!(!i(n)||o(n))&&(r(n)?p:a).test(u(n))}},function(n,t,e){var r=e(82),o=e(113),i=e(112),u=200;n.exports=function(n,t){var e=this.__data__;if(e instanceof r){var a=e.__data__;if(!o||a.length<u-1)return a.push([n,t]),this.size=++e.size,this;e=this.__data__=new i(a)}return e.set(n,t),this.size=e.size,this}},function(n,t){n.exports=function(n){return this.__data__.has(n)}},function(n,t){n.exports=function(n){return this.__data__.get(n)}},function(n,t){n.exports=function(n){var t=this.__data__,e=t.delete(n);return this.size=t.size,e}},function(n,t,e){var r=e(82);n.exports=function(){this.__data__=new r,this.size=0}},function(n,t,e){var r=e(81);n.exports=function(n,t){var e=this.__data__,o=r(e,n);return o<0?(++this.size,e.push([n,t])):e[o][1]=t,this}},function(n,t,e){var r=e(81);n.exports=function(n){return r(this.__data__,n)>-1}},function(n,t,e){var r=e(81);n.exports=function(n){var t=this.__data__,e=r(t,n);return e<0?void 0:t[e][1]}},function(n,t,e){var r=e(81),o=Array.prototype.splice;n.exports=function(n){var t=this.__data__,e=r(t,n);return!(e<0||(e==t.length-1?t.pop():o.call(t,e,1),--this.size,0))}},function(n,t){n.exports=function(){this.__data__=[],this.size=0}},function(n,t,e){var r=e(235),o=4;n.exports=function(n){return r(n,o)}},function(n,t,e){n.exports={Graph:e(114),version:e(484)}},function(n,t,e){var r=e(583);n.exports={Graph:r.Graph,json:e(483),alg:e(482),version:r.version}},function(n,t,e){n.exports={graphlib:e(22),layout:e(473),debug:e(416),util:{time:e(15).time,notime:e(15).notime},version:e(415)}},function(n,t,e){var r=e(3),o=e(585),i=r.Util,u=function(){function n(n){i.mix(this,{rankdir:"TB",align:void 0,nodesep:50,edgesep:10,ranksep:50,marginx:0,marginy:0,acyclicer:void 0,useEdgeControlPoint:!0,ranker:"network-simplex",callback:null},n)}var t=n.prototype;return t.getValue=function(n){var t=this[n];return i.isFunction(t)?t():t},t.execute=function(){var n=this.nodes,t=this.edges,e={},r=new o.graphlib.Graph,i=this.useEdgeControlPoint;r.setGraph({rankdir:this.getValue("rankdir"),align:this.getValue("align"),nodesep:this.getValue("nodesep"),edgesep:this.getValue("edgesep"),ranksep:this.getValue("ranksep"),marginx:this.getValue("marginx"),marginy:this.getValue("marginy"),acyclicer:this.getValue("acyclicer"),ranker:this.getValue("ranker")}),r.setDefaultEdgeLabel(function(){return{}}),n.forEach(function(n){r.setNode(n.id,{width:n.width,height:n.height}),e[n.id]=n}),t.forEach(function(n){r.setEdge(n.source,n.target)}),o.layout(r),r.nodes().forEach(function(n){var t=r.node(n);e[n].x=t.x,e[n].y=t.y}),r.edges().forEach(function(n,e){var o=r.edge(n);i&&(t[e].controlPoints=o.points.slice(1,o.points.length-1))})},n}();n.exports=u},function(n,t,e){var r=e(3),o=e(586);r.Layouts.Dagre=o;var i=function(){function n(n){this.options=n}return n.prototype.init=function(){var n=this,t=this.graph;t.on("beforeinit",function(){var e=new o(n.options);t.set("layout",e)})},n}();r.Plugins["layout.dagre"]=i,n.exports=i}])});
|
|
105
105
|
//# sourceMappingURL=plugin.layout.dagre.js.map
|
|
106
106
|
|
|
107
|
+
/***/ }),
|
|
108
|
+
|
|
109
|
+
/***/ "07aa":
|
|
110
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
111
|
+
|
|
112
|
+
"use strict";
|
|
113
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_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_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_WorkflowReport_vue_vue_type_style_index_0_id_59d6f112_prod_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("8c12");
|
|
114
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_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_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_WorkflowReport_vue_vue_type_style_index_0_id_59d6f112_prod_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_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_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_WorkflowReport_vue_vue_type_style_index_0_id_59d6f112_prod_lang_css___WEBPACK_IMPORTED_MODULE_0__);
|
|
115
|
+
/* unused harmony reexport * */
|
|
116
|
+
|
|
117
|
+
|
|
107
118
|
/***/ }),
|
|
108
119
|
|
|
109
120
|
/***/ "15a5":
|
|
@@ -1925,7 +1936,7 @@ function list_defineProperty(obj, key, value) { if (key in obj) { Object.defineP
|
|
|
1925
1936
|
width: configs['list.width'],
|
|
1926
1937
|
fixed: configs['list.fixed'] || false,
|
|
1927
1938
|
ellipsis: configs['list.ellipsis'] === 'true',
|
|
1928
|
-
customRender: function customRender(text, record) {
|
|
1939
|
+
customRender: function customRender(text, record, index) {
|
|
1929
1940
|
return h("Cell", {
|
|
1930
1941
|
"on": {
|
|
1931
1942
|
"profile": function profile() {
|
|
@@ -1940,7 +1951,8 @@ function list_defineProperty(obj, key, value) { if (key in obj) { Object.defineP
|
|
|
1940
1951
|
"row": record,
|
|
1941
1952
|
"schema": attr,
|
|
1942
1953
|
"editable": _this.configs['list.actionRowNotEditing.key'] && _this.configs['list.actionRowNotEditing.value'] ? _this.actionRowEditing && !_this.configs['list.actionRowNotEditing.value'].split(',').includes(record[_this.configs['list.actionRowNotEditing.key']]) : _this.actionRowEditing,
|
|
1943
|
-
"idName": _this.idName
|
|
1954
|
+
"idName": _this.idName,
|
|
1955
|
+
"rowIndex": index
|
|
1944
1956
|
}
|
|
1945
1957
|
});
|
|
1946
1958
|
}
|
|
@@ -4681,8 +4693,8 @@ function form_base_defineProperty(obj, key, value) { if (key in obj) { Object.de
|
|
|
4681
4693
|
}
|
|
4682
4694
|
}
|
|
4683
4695
|
});
|
|
4684
|
-
// CONCATENATED MODULE: ../node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19ac1e06-vue-loader-template"}!../node_modules/cache-loader/dist/cjs.js??ref--13-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib!../node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!../node_modules/cache-loader/dist/cjs.js??ref--1-0!../node_modules/vue-loader/lib??vue-loader-options!../src/web/components/forms/Item.vue?vue&type=template&id=
|
|
4685
|
-
var
|
|
4696
|
+
// CONCATENATED MODULE: ../node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19ac1e06-vue-loader-template"}!../node_modules/cache-loader/dist/cjs.js??ref--13-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib!../node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!../node_modules/cache-loader/dist/cjs.js??ref--1-0!../node_modules/vue-loader/lib??vue-loader-options!../src/web/components/forms/Item.vue?vue&type=template&id=5eddf4e5&
|
|
4697
|
+
var Itemvue_type_template_id_5eddf4e5_render = function render() {
|
|
4686
4698
|
var _vm = this,
|
|
4687
4699
|
_c = _vm._self._c;
|
|
4688
4700
|
|
|
@@ -5243,7 +5255,8 @@ var Itemvue_type_template_id_58c66b73_render = function render() {
|
|
|
5243
5255
|
attrs: {
|
|
5244
5256
|
"value": _vm.formModel[_vm.schema.name],
|
|
5245
5257
|
"placeholder": _vm.placeholder,
|
|
5246
|
-
"disabled": _vm.readonly
|
|
5258
|
+
"disabled": _vm.readonly,
|
|
5259
|
+
"params": _vm.schema.params || undefined
|
|
5247
5260
|
},
|
|
5248
5261
|
on: {
|
|
5249
5262
|
"change": function change(val) {
|
|
@@ -5423,9 +5436,9 @@ var Itemvue_type_template_id_58c66b73_render = function render() {
|
|
|
5423
5436
|
}, 'PickerTransfer', _vm.pickerViewTransferOptions, false)) : _vm._e()], 1) : _vm._e()], 2) : _vm._e();
|
|
5424
5437
|
};
|
|
5425
5438
|
|
|
5426
|
-
var
|
|
5439
|
+
var Itemvue_type_template_id_5eddf4e5_staticRenderFns = [];
|
|
5427
5440
|
|
|
5428
|
-
// CONCATENATED MODULE: ../src/web/components/forms/Item.vue?vue&type=template&id=
|
|
5441
|
+
// CONCATENATED MODULE: ../src/web/components/forms/Item.vue?vue&type=template&id=5eddf4e5&
|
|
5429
5442
|
|
|
5430
5443
|
// CONCATENATED MODULE: ../src/core/form/item.js
|
|
5431
5444
|
function item_typeof(obj) { "@babel/helpers - typeof"; return item_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, item_typeof(obj); }
|
|
@@ -6184,8 +6197,8 @@ function item_defineProperty(obj, key, value) { if (key in obj) { Object.defineP
|
|
|
6184
6197
|
}
|
|
6185
6198
|
}
|
|
6186
6199
|
});
|
|
6187
|
-
// CONCATENATED MODULE: ../node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19ac1e06-vue-loader-template"}!../node_modules/cache-loader/dist/cjs.js??ref--13-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib!../node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!../node_modules/cache-loader/dist/cjs.js??ref--1-0!../node_modules/vue-loader/lib??vue-loader-options!../src/web/components/cell/QuillEditor/Index.vue?vue&type=template&id=
|
|
6188
|
-
var
|
|
6200
|
+
// CONCATENATED MODULE: ../node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19ac1e06-vue-loader-template"}!../node_modules/cache-loader/dist/cjs.js??ref--13-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib!../node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!../node_modules/cache-loader/dist/cjs.js??ref--1-0!../node_modules/vue-loader/lib??vue-loader-options!../src/web/components/cell/QuillEditor/Index.vue?vue&type=template&id=48274586&
|
|
6201
|
+
var Indexvue_type_template_id_48274586_render = function render() {
|
|
6189
6202
|
var _vm = this,
|
|
6190
6203
|
_c = _vm._self._c;
|
|
6191
6204
|
|
|
@@ -6218,9 +6231,9 @@ var Indexvue_type_template_id_dc7f2fae_render = function render() {
|
|
|
6218
6231
|
})], 1);
|
|
6219
6232
|
};
|
|
6220
6233
|
|
|
6221
|
-
var
|
|
6234
|
+
var Indexvue_type_template_id_48274586_staticRenderFns = [];
|
|
6222
6235
|
|
|
6223
|
-
// CONCATENATED MODULE: ../src/web/components/cell/QuillEditor/Index.vue?vue&type=template&id=
|
|
6236
|
+
// CONCATENATED MODULE: ../src/web/components/cell/QuillEditor/Index.vue?vue&type=template&id=48274586&
|
|
6224
6237
|
|
|
6225
6238
|
// EXTERNAL MODULE: ../node_modules/quill/dist/quill.core.css
|
|
6226
6239
|
var quill_core = __webpack_require__("690b");
|
|
@@ -6269,24 +6282,83 @@ function Indexvue_type_script_lang_js_arrayLikeToArray(arr, len) { if (len == nu
|
|
|
6269
6282
|
},
|
|
6270
6283
|
disabled: {
|
|
6271
6284
|
type: Boolean
|
|
6285
|
+
},
|
|
6286
|
+
params: {
|
|
6287
|
+
type: Object
|
|
6272
6288
|
}
|
|
6273
6289
|
},
|
|
6274
6290
|
components: {
|
|
6275
6291
|
quillEditor: vue_quill_editor["quillEditor"]
|
|
6276
6292
|
},
|
|
6293
|
+
computed: {
|
|
6294
|
+
editorParams: function editorParams() {
|
|
6295
|
+
return this.params && this.params.control && this.params.control.toolbar ? JSON.parse(this.params.control.toolbar) : null;
|
|
6296
|
+
}
|
|
6297
|
+
},
|
|
6277
6298
|
data: function data() {
|
|
6278
6299
|
return {
|
|
6279
6300
|
content: this.value,
|
|
6280
6301
|
editorOption: {
|
|
6281
|
-
placeholder: this.disabled ? '当前为不可编辑状态' : this.placeholder
|
|
6302
|
+
placeholder: this.disabled ? '当前为不可编辑状态' : this.placeholder,
|
|
6303
|
+
modules: {
|
|
6304
|
+
toolbar: [// 加粗 斜体 下划线 删除线 -----['bold', 'italic', 'underline', 'strike']
|
|
6305
|
+
['bold', 'italic', 'underline', 'strike'], // 引用 代码块-----['blockquote', 'code-block']
|
|
6306
|
+
['blockquote', 'code-block'], // 1、2 级标题-----[{ header: 1 }, { header: 2 }]
|
|
6307
|
+
[{
|
|
6308
|
+
header: 1
|
|
6309
|
+
}, {
|
|
6310
|
+
header: 2
|
|
6311
|
+
}], // 有序、无序列表-----[{ list: 'ordered' }, { list: 'bullet' }]
|
|
6312
|
+
[{
|
|
6313
|
+
list: 'ordered'
|
|
6314
|
+
}, {
|
|
6315
|
+
list: 'bullet'
|
|
6316
|
+
}], // 上标/下标-----[{ script: 'sub' }, { script: 'super' }]
|
|
6317
|
+
[{
|
|
6318
|
+
script: 'sub'
|
|
6319
|
+
}, {
|
|
6320
|
+
script: 'super'
|
|
6321
|
+
}], // 缩进-----[{ indent: '-1' }, { indent: '+1' }]
|
|
6322
|
+
[{
|
|
6323
|
+
indent: '-1'
|
|
6324
|
+
}, {
|
|
6325
|
+
indent: '+1'
|
|
6326
|
+
}], // 文本方向-----[{'direction': 'rtl'}]
|
|
6327
|
+
[{
|
|
6328
|
+
direction: 'rtl'
|
|
6329
|
+
}], // 字体大小-----[{ size: ['small', false, 'large', 'huge'] }]
|
|
6330
|
+
[{
|
|
6331
|
+
size: ['small', false, 'large', 'huge']
|
|
6332
|
+
}], // 标题-----[{ header: [1, 2, 3, 4, 5, 6, false] }]
|
|
6333
|
+
[{
|
|
6334
|
+
header: [1, 2, 3, 4, 5, 6, false]
|
|
6335
|
+
}], // 字体颜色、字体背景颜色-----[{ color: [] }, { background: [] }]
|
|
6336
|
+
[{
|
|
6337
|
+
color: []
|
|
6338
|
+
}, {
|
|
6339
|
+
background: []
|
|
6340
|
+
}], // 字体种类-----[{ font: [] }]
|
|
6341
|
+
[{
|
|
6342
|
+
font: []
|
|
6343
|
+
}], // 对齐方式-----[{ align: [] }]
|
|
6344
|
+
[{
|
|
6345
|
+
align: []
|
|
6346
|
+
}], // 清除文本格式-----['clean']
|
|
6347
|
+
['clean'], // 链接、图片、视频-----['link', 'image', 'video']
|
|
6348
|
+
['image', 'video']]
|
|
6349
|
+
}
|
|
6282
6350
|
},
|
|
6283
6351
|
baseUrl: window.location.origin,
|
|
6284
6352
|
quill: null,
|
|
6285
6353
|
pos: 0
|
|
6286
6354
|
};
|
|
6287
6355
|
},
|
|
6356
|
+
created: function created() {
|
|
6357
|
+
if (this.editorParams) {
|
|
6358
|
+
this.editorOption.modules.toolbar = this.editorParams;
|
|
6359
|
+
}
|
|
6360
|
+
},
|
|
6288
6361
|
mounted: function mounted() {
|
|
6289
|
-
// console.log(this.$refs.quillEditor.quill.getModule('toolbar'))
|
|
6290
6362
|
this.$refs.quillEditor.quill.getModule('toolbar').addHandler('image', this.handleImage);
|
|
6291
6363
|
this.quill = this.$refs.quillEditor.quill;
|
|
6292
6364
|
|
|
@@ -6380,8 +6452,8 @@ function Indexvue_type_script_lang_js_arrayLikeToArray(arr, len) { if (len == nu
|
|
|
6380
6452
|
});
|
|
6381
6453
|
// CONCATENATED MODULE: ../src/web/components/cell/QuillEditor/Index.vue?vue&type=script&lang=js&
|
|
6382
6454
|
/* harmony default export */ var QuillEditor_Indexvue_type_script_lang_js_ = (Indexvue_type_script_lang_js_);
|
|
6383
|
-
// EXTERNAL MODULE: ../src/web/components/cell/QuillEditor/Index.vue?vue&type=style&index=0&id=
|
|
6384
|
-
var
|
|
6455
|
+
// EXTERNAL MODULE: ../src/web/components/cell/QuillEditor/Index.vue?vue&type=style&index=0&id=48274586&prod&lang=less&
|
|
6456
|
+
var Indexvue_type_style_index_0_id_48274586_prod_lang_less_ = __webpack_require__("2f24");
|
|
6385
6457
|
|
|
6386
6458
|
// CONCATENATED MODULE: ../src/web/components/cell/QuillEditor/Index.vue
|
|
6387
6459
|
|
|
@@ -6394,8 +6466,8 @@ var Indexvue_type_style_index_0_id_dc7f2fae_prod_lang_less_ = __webpack_require_
|
|
|
6394
6466
|
|
|
6395
6467
|
var Index_component = normalizeComponent(
|
|
6396
6468
|
QuillEditor_Indexvue_type_script_lang_js_,
|
|
6397
|
-
|
|
6398
|
-
|
|
6469
|
+
Indexvue_type_template_id_48274586_render,
|
|
6470
|
+
Indexvue_type_template_id_48274586_staticRenderFns,
|
|
6399
6471
|
false,
|
|
6400
6472
|
null,
|
|
6401
6473
|
null,
|
|
@@ -8167,8 +8239,8 @@ var Popup_component = normalizeComponent(
|
|
|
8167
8239
|
});
|
|
8168
8240
|
// CONCATENATED MODULE: ../src/web/components/forms/Item.vue?vue&type=script&lang=js&
|
|
8169
8241
|
/* harmony default export */ var forms_Itemvue_type_script_lang_js_ = (Itemvue_type_script_lang_js_);
|
|
8170
|
-
// EXTERNAL MODULE: ../src/web/components/forms/Item.vue?vue&type=style&index=0&id=
|
|
8171
|
-
var
|
|
8242
|
+
// EXTERNAL MODULE: ../src/web/components/forms/Item.vue?vue&type=style&index=0&id=5eddf4e5&prod&lang=less&
|
|
8243
|
+
var Itemvue_type_style_index_0_id_5eddf4e5_prod_lang_less_ = __webpack_require__("3f2c");
|
|
8172
8244
|
|
|
8173
8245
|
// CONCATENATED MODULE: ../src/web/components/forms/Item.vue
|
|
8174
8246
|
|
|
@@ -8181,8 +8253,8 @@ var Itemvue_type_style_index_0_id_58c66b73_prod_lang_less_ = __webpack_require__
|
|
|
8181
8253
|
|
|
8182
8254
|
var Item_component = normalizeComponent(
|
|
8183
8255
|
forms_Itemvue_type_script_lang_js_,
|
|
8184
|
-
|
|
8185
|
-
|
|
8256
|
+
Itemvue_type_template_id_5eddf4e5_render,
|
|
8257
|
+
Itemvue_type_template_id_5eddf4e5_staticRenderFns,
|
|
8186
8258
|
false,
|
|
8187
8259
|
null,
|
|
8188
8260
|
null,
|
|
@@ -8465,8 +8537,8 @@ var Size_component = normalizeComponent(
|
|
|
8465
8537
|
)
|
|
8466
8538
|
|
|
8467
8539
|
/* harmony default export */ var Size = (Size_component.exports);
|
|
8468
|
-
// CONCATENATED MODULE: ../node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19ac1e06-vue-loader-template"}!../node_modules/cache-loader/dist/cjs.js??ref--13-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib!../node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!../node_modules/cache-loader/dist/cjs.js??ref--1-0!../node_modules/vue-loader/lib??vue-loader-options!../src/web/components/cell/Cell.vue?vue&type=template&id=
|
|
8469
|
-
var
|
|
8540
|
+
// CONCATENATED MODULE: ../node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19ac1e06-vue-loader-template"}!../node_modules/cache-loader/dist/cjs.js??ref--13-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib!../node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!../node_modules/cache-loader/dist/cjs.js??ref--1-0!../node_modules/vue-loader/lib??vue-loader-options!../src/web/components/cell/Cell.vue?vue&type=template&id=6cfd75db&
|
|
8541
|
+
var Cellvue_type_template_id_6cfd75db_render = function render() {
|
|
8470
8542
|
var _vm = this,
|
|
8471
8543
|
_c = _vm._self._c;
|
|
8472
8544
|
|
|
@@ -8511,9 +8583,9 @@ var Cellvue_type_template_id_2ea0125a_render = function render() {
|
|
|
8511
8583
|
}, [_vm._v(" " + _vm._s(_vm.text) + " ")]) : _c('span', [_vm._v(_vm._s(_vm.text))])], 1);
|
|
8512
8584
|
};
|
|
8513
8585
|
|
|
8514
|
-
var
|
|
8586
|
+
var Cellvue_type_template_id_6cfd75db_staticRenderFns = [];
|
|
8515
8587
|
|
|
8516
|
-
// CONCATENATED MODULE: ../src/web/components/cell/Cell.vue?vue&type=template&id=
|
|
8588
|
+
// CONCATENATED MODULE: ../src/web/components/cell/Cell.vue?vue&type=template&id=6cfd75db&
|
|
8517
8589
|
|
|
8518
8590
|
// 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/web/components/cell/Cell.vue?vue&type=script&lang=js&
|
|
8519
8591
|
function Cellvue_type_script_lang_js_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
@@ -8529,7 +8601,7 @@ function Cellvue_type_script_lang_js_defineProperty(obj, key, value) { if (key i
|
|
|
8529
8601
|
components: {
|
|
8530
8602
|
Item: Item
|
|
8531
8603
|
},
|
|
8532
|
-
props: ['editable', 'value', 'row', 'schema', 'mode', 'viewURL', 'idName', 'vid'],
|
|
8604
|
+
props: ['editable', 'value', 'row', 'schema', 'mode', 'viewURL', 'idName', 'vid', 'rowIndex'],
|
|
8533
8605
|
data: function data() {
|
|
8534
8606
|
return {
|
|
8535
8607
|
component: null,
|
|
@@ -8553,7 +8625,7 @@ function Cellvue_type_script_lang_js_defineProperty(obj, key, value) { if (key i
|
|
|
8553
8625
|
this.script = this.schema.format;
|
|
8554
8626
|
} else {
|
|
8555
8627
|
this.component = {
|
|
8556
|
-
props: ['editable', 'value', 'row', 'schema', 'mode', 'viewURL', 'idName', 'text', 'vid'],
|
|
8628
|
+
props: ['editable', 'value', 'row', 'schema', 'mode', 'viewURL', 'idName', 'text', 'vid', 'rowIndex'],
|
|
8557
8629
|
data: function data() {
|
|
8558
8630
|
return {
|
|
8559
8631
|
model: {}
|
|
@@ -8589,8 +8661,8 @@ function Cellvue_type_script_lang_js_defineProperty(obj, key, value) { if (key i
|
|
|
8589
8661
|
|
|
8590
8662
|
var Cell_component = normalizeComponent(
|
|
8591
8663
|
cell_Cellvue_type_script_lang_js_,
|
|
8592
|
-
|
|
8593
|
-
|
|
8664
|
+
Cellvue_type_template_id_6cfd75db_render,
|
|
8665
|
+
Cellvue_type_template_id_6cfd75db_staticRenderFns,
|
|
8594
8666
|
false,
|
|
8595
8667
|
null,
|
|
8596
8668
|
null,
|
|
@@ -14515,8 +14587,8 @@ var PickerSelectView_component = normalizeComponent(
|
|
|
14515
14587
|
)
|
|
14516
14588
|
|
|
14517
14589
|
/* harmony default export */ var PickerSelectView = (PickerSelectView_component.exports);
|
|
14518
|
-
// CONCATENATED MODULE: ../node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19ac1e06-vue-loader-template"}!../node_modules/cache-loader/dist/cjs.js??ref--13-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib!../node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!../node_modules/cache-loader/dist/cjs.js??ref--1-0!../node_modules/vue-loader/lib??vue-loader-options!../src/web/components/forms/WorkflowReport.vue?vue&type=template&id=
|
|
14519
|
-
var
|
|
14590
|
+
// CONCATENATED MODULE: ../node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19ac1e06-vue-loader-template"}!../node_modules/cache-loader/dist/cjs.js??ref--13-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib!../node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!../node_modules/cache-loader/dist/cjs.js??ref--1-0!../node_modules/vue-loader/lib??vue-loader-options!../src/web/components/forms/WorkflowReport.vue?vue&type=template&id=59d6f112&
|
|
14591
|
+
var WorkflowReportvue_type_template_id_59d6f112_render = function render() {
|
|
14520
14592
|
var _vm = this,
|
|
14521
14593
|
_c = _vm._self._c;
|
|
14522
14594
|
|
|
@@ -14695,7 +14767,7 @@ var WorkflowReportvue_type_template_id_5dbb6123_render = function render() {
|
|
|
14695
14767
|
return _c('div', {
|
|
14696
14768
|
key: todo.todo_id
|
|
14697
14769
|
}, [_vm.actionModel.flow_action_name ? _c('h4', [_vm._v("后续步骤")]) : _vm._e(), _c('div', {
|
|
14698
|
-
staticClass: "ant-table ant-table-scroll-position-left ant-table-small"
|
|
14770
|
+
staticClass: "ant-table ant-table-scroll-position-left ant-table-small workflow-table"
|
|
14699
14771
|
}, [_c('div', {
|
|
14700
14772
|
staticClass: "ant-table-content"
|
|
14701
14773
|
}, [_c('div', {
|
|
@@ -14715,108 +14787,49 @@ var WorkflowReportvue_type_template_id_5dbb6123_render = function render() {
|
|
|
14715
14787
|
staticClass: "ant-table-tbody"
|
|
14716
14788
|
}, [_c('tr', {
|
|
14717
14789
|
staticClass: "ant-table-row ant-table-row-level-0"
|
|
14718
|
-
}, [_c('td', [
|
|
14790
|
+
}, [_c('td', [_c('p', {
|
|
14791
|
+
staticStyle: {
|
|
14792
|
+
"padding": "12px 0"
|
|
14793
|
+
}
|
|
14794
|
+
}, [_vm._v(_vm._s(index + 1))])]), _c('td', [_c('p', {
|
|
14795
|
+
staticStyle: {
|
|
14796
|
+
"padding": "12px 0"
|
|
14797
|
+
}
|
|
14798
|
+
}, [_vm._v(" " + _vm._s(todo.current_step.step_name) + " ")])]), _c('td', [_c('a-input-search', {
|
|
14799
|
+
staticStyle: {
|
|
14800
|
+
"margin-bottom": "8px"
|
|
14801
|
+
},
|
|
14719
14802
|
attrs: {
|
|
14720
|
-
"
|
|
14803
|
+
"placeholder": "搜索名称",
|
|
14804
|
+
"size": "small",
|
|
14805
|
+
"enter-button": ""
|
|
14806
|
+
},
|
|
14807
|
+
on: {
|
|
14808
|
+
"search": _vm.onSearchOperator
|
|
14809
|
+
}
|
|
14810
|
+
}), _c('a-table', {
|
|
14811
|
+
attrs: {
|
|
14812
|
+
"dataSource": _vm.filterOperators(todo.todo_actors.map(function (a) {
|
|
14721
14813
|
return a.operator;
|
|
14722
|
-
}),
|
|
14814
|
+
})),
|
|
14723
14815
|
"rowKey": "actor_id",
|
|
14724
14816
|
"rowSelection": _vm.rowSelection,
|
|
14725
14817
|
"pagination": false,
|
|
14726
|
-
"columns": _vm.TodoActorColumns,
|
|
14727
14818
|
"size": "middle"
|
|
14728
|
-
}
|
|
14729
|
-
|
|
14730
|
-
|
|
14731
|
-
|
|
14732
|
-
|
|
14733
|
-
|
|
14734
|
-
|
|
14735
|
-
|
|
14736
|
-
|
|
14737
|
-
|
|
14738
|
-
|
|
14739
|
-
|
|
14740
|
-
|
|
14741
|
-
|
|
14742
|
-
directives: [{
|
|
14743
|
-
name: "ant-ref",
|
|
14744
|
-
rawName: "v-ant-ref",
|
|
14745
|
-
value: function value(c) {
|
|
14746
|
-
return _vm.searchInput = c;
|
|
14747
|
-
},
|
|
14748
|
-
expression: "(c) => (searchInput = c)"
|
|
14749
|
-
}],
|
|
14750
|
-
staticStyle: {
|
|
14751
|
-
"width": "188px",
|
|
14752
|
-
"margin-bottom": "8px",
|
|
14753
|
-
"display": "block"
|
|
14754
|
-
},
|
|
14755
|
-
attrs: {
|
|
14756
|
-
"placeholder": "\u641C\u7D22".concat(column.title),
|
|
14757
|
-
"value": selectedKeys[0]
|
|
14758
|
-
},
|
|
14759
|
-
on: {
|
|
14760
|
-
"change": function change(e) {
|
|
14761
|
-
return setSelectedKeys(e.target.value ? [e.target.value] : []);
|
|
14762
|
-
},
|
|
14763
|
-
"pressEnter": function pressEnter() {
|
|
14764
|
-
return _vm.handleSearch(selectedKeys, confirm, column.dataIndex);
|
|
14765
|
-
}
|
|
14766
|
-
}
|
|
14767
|
-
}), _c('a-button', {
|
|
14768
|
-
staticStyle: {
|
|
14769
|
-
"width": "90px",
|
|
14770
|
-
"margin-right": "8px"
|
|
14771
|
-
},
|
|
14772
|
-
attrs: {
|
|
14773
|
-
"type": "primary",
|
|
14774
|
-
"icon": "search",
|
|
14775
|
-
"size": "small"
|
|
14776
|
-
},
|
|
14777
|
-
on: {
|
|
14778
|
-
"click": function click() {
|
|
14779
|
-
return _vm.handleSearch(selectedKeys, confirm, column.dataIndex);
|
|
14780
|
-
}
|
|
14781
|
-
}
|
|
14782
|
-
}, [_vm._v(" 搜索 ")]), _c('a-button', {
|
|
14783
|
-
staticStyle: {
|
|
14784
|
-
"width": "90px"
|
|
14785
|
-
},
|
|
14786
|
-
attrs: {
|
|
14787
|
-
"size": "small"
|
|
14788
|
-
},
|
|
14789
|
-
on: {
|
|
14790
|
-
"click": function click() {
|
|
14791
|
-
return _vm.handleReset(clearFilters);
|
|
14792
|
-
}
|
|
14793
|
-
}
|
|
14794
|
-
}, [_vm._v(" 清空 ")])], 1);
|
|
14795
|
-
}
|
|
14796
|
-
}, {
|
|
14797
|
-
key: "filterIcon",
|
|
14798
|
-
fn: function fn(filtered) {
|
|
14799
|
-
return _c('a-icon', {
|
|
14800
|
-
style: {
|
|
14801
|
-
color: filtered ? '#108ee9' : undefined
|
|
14802
|
-
},
|
|
14803
|
-
attrs: {
|
|
14804
|
-
"type": "search"
|
|
14805
|
-
}
|
|
14806
|
-
});
|
|
14807
|
-
}
|
|
14808
|
-
}, {
|
|
14809
|
-
key: "customRender",
|
|
14810
|
-
fn: function fn(text, record, index, column) {
|
|
14811
|
-
return [_vm.searchText && _vm.searchedColumn === column.dataIndex ? _c('span', [_vm._l(text.toString().split(new RegExp("(?<=".concat(_vm.searchText, ")|(?=").concat(_vm.searchText, ")"), 'i')), function (fragment, i) {
|
|
14812
|
-
return [fragment.toLowerCase() === _vm.searchText.toLowerCase() ? _c('mark', {
|
|
14813
|
-
key: i,
|
|
14814
|
-
staticClass: "highlight"
|
|
14815
|
-
}, [_vm._v(_vm._s(fragment))]) : [_vm._v(_vm._s(fragment))]];
|
|
14816
|
-
})], 2) : [_vm._v(" " + _vm._s(text) + " ")]];
|
|
14817
|
-
}
|
|
14818
|
-
}], null, true)
|
|
14819
|
-
})], 1)])])])])])])]);
|
|
14819
|
+
}
|
|
14820
|
+
}, [_c('a-table-column', {
|
|
14821
|
+
key: "actor_name",
|
|
14822
|
+
attrs: {
|
|
14823
|
+
"title": "姓名",
|
|
14824
|
+
"dataIndex": "actor_name"
|
|
14825
|
+
}
|
|
14826
|
+
}), _c('a-table-column', {
|
|
14827
|
+
key: "actor_org_name",
|
|
14828
|
+
attrs: {
|
|
14829
|
+
"title": "所在单位",
|
|
14830
|
+
"dataIndex": "actor_org_name"
|
|
14831
|
+
}
|
|
14832
|
+
})], 1)], 1)])])])])])])]);
|
|
14820
14833
|
}) : _vm._e()], 2) : _vm._e(), _c('a-tab-pane', {
|
|
14821
14834
|
key: _vm.actionModel.confirm ? '2' : '1',
|
|
14822
14835
|
attrs: {
|
|
@@ -14905,9 +14918,9 @@ var WorkflowReportvue_type_template_id_5dbb6123_render = function render() {
|
|
|
14905
14918
|
})])], 1)], 1)], 1);
|
|
14906
14919
|
};
|
|
14907
14920
|
|
|
14908
|
-
var
|
|
14921
|
+
var WorkflowReportvue_type_template_id_59d6f112_staticRenderFns = [];
|
|
14909
14922
|
|
|
14910
|
-
// CONCATENATED MODULE: ../src/web/components/forms/WorkflowReport.vue?vue&type=template&id=
|
|
14923
|
+
// CONCATENATED MODULE: ../src/web/components/forms/WorkflowReport.vue?vue&type=template&id=59d6f112&
|
|
14911
14924
|
|
|
14912
14925
|
// EXTERNAL MODULE: external {"root":"@antv/g6","commonjs2":"@antv/g6","commonjs":"@antv/g6","amd":"@antv/g6"}
|
|
14913
14926
|
var g6_ = __webpack_require__("336c");
|
|
@@ -14941,8 +14954,6 @@ var Plugin = __webpack_require__("019f");
|
|
|
14941
14954
|
Item: Item
|
|
14942
14955
|
},
|
|
14943
14956
|
data: function data() {
|
|
14944
|
-
var _this = this;
|
|
14945
|
-
|
|
14946
14957
|
return {
|
|
14947
14958
|
actionModel: WorkflowReportvue_type_script_lang_js_objectSpread(WorkflowReportvue_type_script_lang_js_objectSpread({}, this.values), {}, {
|
|
14948
14959
|
is_over: false
|
|
@@ -14965,39 +14976,11 @@ var Plugin = __webpack_require__("019f");
|
|
|
14965
14976
|
selectedRowKeys: [] || false || false
|
|
14966
14977
|
},
|
|
14967
14978
|
activeName: '1',
|
|
14968
|
-
|
|
14969
|
-
title: '姓名',
|
|
14970
|
-
dataIndex: 'actor_name',
|
|
14971
|
-
key: 'actor_name',
|
|
14972
|
-
width: '20%',
|
|
14973
|
-
scopedSlots: {
|
|
14974
|
-
filterDropdown: 'filterDropdown',
|
|
14975
|
-
filterIcon: 'filterIcon',
|
|
14976
|
-
customRender: 'customRender'
|
|
14977
|
-
},
|
|
14978
|
-
onFilter: function onFilter(value, record) {
|
|
14979
|
-
return record.actor_name.toString().toLowerCase().includes(value.toLowerCase());
|
|
14980
|
-
},
|
|
14981
|
-
onFilterDropdownVisibleChange: function onFilterDropdownVisibleChange(visible) {
|
|
14982
|
-
if (visible) {
|
|
14983
|
-
setTimeout(function () {
|
|
14984
|
-
_this.searchInput.focus();
|
|
14985
|
-
}, 0);
|
|
14986
|
-
}
|
|
14987
|
-
}
|
|
14988
|
-
}, {
|
|
14989
|
-
title: '所在单位',
|
|
14990
|
-
dataIndex: 'actor_org_name',
|
|
14991
|
-
key: 'actor_org_name',
|
|
14992
|
-
width: '80%'
|
|
14993
|
-
}],
|
|
14994
|
-
searchText: '',
|
|
14995
|
-
searchInput: null,
|
|
14996
|
-
searchedColumn: ''
|
|
14979
|
+
operatorNameValue: ''
|
|
14997
14980
|
};
|
|
14998
14981
|
},
|
|
14999
14982
|
created: function created() {
|
|
15000
|
-
var
|
|
14983
|
+
var _this = this;
|
|
15001
14984
|
|
|
15002
14985
|
if (this.todos && this.todos.length === 1 && this.todos[0].todo_actors && this.todos[0].todo_actors.length === 1) {
|
|
15003
14986
|
this.rowSelection.selectedRowKeys = this.params.flow.flow_data.todo && this.params.flow.flow_data.todo[0] && this.params.flow.flow_data.todo[0].todo_actors && this.params.flow.flow_data.todo[0].todo_actors.map(function (a) {
|
|
@@ -15012,10 +14995,10 @@ var Plugin = __webpack_require__("019f");
|
|
|
15012
14995
|
var todoActorsId = e.todo_actors.map(function (a) {
|
|
15013
14996
|
return a.operator.actor_id;
|
|
15014
14997
|
});
|
|
15015
|
-
|
|
14998
|
+
_this.rowSelection.selectedRowKeys = todoActorsId.filter(function (item) {
|
|
15016
14999
|
return e.next_default_actor === item;
|
|
15017
15000
|
});
|
|
15018
|
-
|
|
15001
|
+
_this.actionModel.todo_actors = _this.rowSelection.selectedRowKeys;
|
|
15019
15002
|
}
|
|
15020
15003
|
});
|
|
15021
15004
|
}
|
|
@@ -15027,44 +15010,38 @@ var Plugin = __webpack_require__("019f");
|
|
|
15027
15010
|
}
|
|
15028
15011
|
},
|
|
15029
15012
|
mounted: function mounted() {
|
|
15030
|
-
var
|
|
15013
|
+
var _this2 = this;
|
|
15031
15014
|
|
|
15032
15015
|
setTimeout(function () {
|
|
15033
|
-
|
|
15016
|
+
_this2.renderGraph();
|
|
15034
15017
|
}, 50);
|
|
15035
15018
|
},
|
|
15036
15019
|
methods: {
|
|
15037
15020
|
handleSelectionChange: function handleSelectionChange(selectedRowKeys) {
|
|
15038
15021
|
this.rowSelection.selectedRowKeys = this.actionModel.todo_actors = selectedRowKeys;
|
|
15039
15022
|
},
|
|
15040
|
-
|
|
15041
|
-
|
|
15042
|
-
this.searchText = selectedKeys[0];
|
|
15043
|
-
this.searchedColumn = dataIndex;
|
|
15044
|
-
},
|
|
15045
|
-
handleReset: function handleReset(clearFilters) {
|
|
15046
|
-
clearFilters();
|
|
15047
|
-
this.searchText = '';
|
|
15023
|
+
onSearchOperator: function onSearchOperator(value) {
|
|
15024
|
+
this.operatorNameValue = value;
|
|
15048
15025
|
},
|
|
15049
15026
|
handleCommit: function handleCommit() {
|
|
15050
|
-
var
|
|
15027
|
+
var _this3 = this;
|
|
15051
15028
|
|
|
15052
15029
|
return WorkflowReportvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/WorkflowReportvue_type_script_lang_js_regeneratorRuntime().mark(function _callee() {
|
|
15053
15030
|
return WorkflowReportvue_type_script_lang_js_regeneratorRuntime().wrap(function _callee$(_context) {
|
|
15054
15031
|
while (1) {
|
|
15055
15032
|
switch (_context.prev = _context.next) {
|
|
15056
15033
|
case 0:
|
|
15057
|
-
if (!(
|
|
15034
|
+
if (!(_this3.todos[0].todo_actors.length && !_this3.actionModel.todo_actors.length && !['back', 'reassign'].includes(_this3.actionModel.flow_action_name) && !_this3.params.todoActorsNotRequired)) {
|
|
15058
15035
|
_context.next = 3;
|
|
15059
15036
|
break;
|
|
15060
15037
|
}
|
|
15061
15038
|
|
|
15062
|
-
|
|
15039
|
+
_this3.$message.error('请选择下一步审批者');
|
|
15063
15040
|
|
|
15064
15041
|
return _context.abrupt("return");
|
|
15065
15042
|
|
|
15066
15043
|
case 3:
|
|
15067
|
-
|
|
15044
|
+
_this3.$emit('commit', _this3.actionModel);
|
|
15068
15045
|
|
|
15069
15046
|
case 4:
|
|
15070
15047
|
case "end":
|
|
@@ -15075,7 +15052,7 @@ var Plugin = __webpack_require__("019f");
|
|
|
15075
15052
|
}))();
|
|
15076
15053
|
},
|
|
15077
15054
|
handleItemChange: function handleItemChange(value, _ref) {
|
|
15078
|
-
var
|
|
15055
|
+
var _this4 = this;
|
|
15079
15056
|
|
|
15080
15057
|
return WorkflowReportvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/WorkflowReportvue_type_script_lang_js_regeneratorRuntime().mark(function _callee2() {
|
|
15081
15058
|
var name, fd, res, data;
|
|
@@ -15098,7 +15075,7 @@ var Plugin = __webpack_require__("019f");
|
|
|
15098
15075
|
fd = new FormData();
|
|
15099
15076
|
fd.append(name, value[0]);
|
|
15100
15077
|
_context2.next = 7;
|
|
15101
|
-
return
|
|
15078
|
+
return _this4.$api.post('/upload', fd);
|
|
15102
15079
|
|
|
15103
15080
|
case 7:
|
|
15104
15081
|
res = _context2.sent;
|
|
@@ -15115,14 +15092,14 @@ var Plugin = __webpack_require__("019f");
|
|
|
15115
15092
|
|
|
15116
15093
|
case 14:
|
|
15117
15094
|
if (value instanceof Date) {
|
|
15118
|
-
value =
|
|
15095
|
+
value = _this4.moment(value).format('YYYY-MM-DD');
|
|
15119
15096
|
}
|
|
15120
15097
|
|
|
15121
15098
|
case 15:
|
|
15122
15099
|
// this.actionModel.data[name] = value
|
|
15123
|
-
data = WorkflowReportvue_type_script_lang_js_objectSpread({},
|
|
15100
|
+
data = WorkflowReportvue_type_script_lang_js_objectSpread({}, _this4.actionModel.data);
|
|
15124
15101
|
data[name] = value;
|
|
15125
|
-
|
|
15102
|
+
_this4.actionModel.data = WorkflowReportvue_type_script_lang_js_objectSpread({}, data); // this.$set(this.actionModel.data, name, value)
|
|
15126
15103
|
// this.actionModel.todo_actors = this.rowSelection.selectedRowKeys
|
|
15127
15104
|
// this.setModel(`data.${name}`, value)
|
|
15128
15105
|
// this.$emit('change', this.actionModel)
|
|
@@ -15136,7 +15113,7 @@ var Plugin = __webpack_require__("019f");
|
|
|
15136
15113
|
}))();
|
|
15137
15114
|
},
|
|
15138
15115
|
renderGraph: function renderGraph() {
|
|
15139
|
-
var
|
|
15116
|
+
var _this5 = this;
|
|
15140
15117
|
|
|
15141
15118
|
g6_default.a.registerNode('rect', {
|
|
15142
15119
|
getPath: function getPath(item) {
|
|
@@ -15156,9 +15133,9 @@ var Plugin = __webpack_require__("019f");
|
|
|
15156
15133
|
};
|
|
15157
15134
|
}),
|
|
15158
15135
|
edges: this.steps.slice(1).map(function (step) {
|
|
15159
|
-
var source =
|
|
15136
|
+
var source = _this5.steps.find(function (item) {
|
|
15160
15137
|
return item.step_id === step.before_step_id;
|
|
15161
|
-
}) ||
|
|
15138
|
+
}) || _this5.steps.find(function (item) {
|
|
15162
15139
|
return item.after_step_id === step.step_id;
|
|
15163
15140
|
});
|
|
15164
15141
|
|
|
@@ -15186,7 +15163,7 @@ var Plugin = __webpack_require__("019f");
|
|
|
15186
15163
|
},
|
|
15187
15164
|
style: function style(model) {
|
|
15188
15165
|
return {
|
|
15189
|
-
stroke:
|
|
15166
|
+
stroke: _this5.stepIndex > model.stepIndex ? '#0285cd' : _this5.stepIndex === model.stepIndex ? '#52c41a' : '#999',
|
|
15190
15167
|
fill: '#999',
|
|
15191
15168
|
fillOpacity: 0.3,
|
|
15192
15169
|
lineWidth: 2
|
|
@@ -15199,6 +15176,17 @@ var Plugin = __webpack_require__("019f");
|
|
|
15199
15176
|
}
|
|
15200
15177
|
});
|
|
15201
15178
|
graph.read(data);
|
|
15179
|
+
},
|
|
15180
|
+
filterOperators: function filterOperators(operators) {
|
|
15181
|
+
var _this6 = this;
|
|
15182
|
+
|
|
15183
|
+
if (this.operatorNameValue) {
|
|
15184
|
+
return operators.filter(function (o) {
|
|
15185
|
+
return o.actor_name.toString().toLowerCase().includes(_this6.operatorNameValue.toLowerCase());
|
|
15186
|
+
});
|
|
15187
|
+
}
|
|
15188
|
+
|
|
15189
|
+
return operators;
|
|
15202
15190
|
}
|
|
15203
15191
|
},
|
|
15204
15192
|
computed: {
|
|
@@ -15301,8 +15289,8 @@ var Plugin = __webpack_require__("019f");
|
|
|
15301
15289
|
});
|
|
15302
15290
|
// CONCATENATED MODULE: ../src/web/components/forms/WorkflowReport.vue?vue&type=script&lang=js&
|
|
15303
15291
|
/* harmony default export */ var forms_WorkflowReportvue_type_script_lang_js_ = (WorkflowReportvue_type_script_lang_js_);
|
|
15304
|
-
// EXTERNAL MODULE: ../src/web/components/forms/WorkflowReport.vue?vue&type=style&index=0&id=
|
|
15305
|
-
var
|
|
15292
|
+
// EXTERNAL MODULE: ../src/web/components/forms/WorkflowReport.vue?vue&type=style&index=0&id=59d6f112&prod&lang=css&
|
|
15293
|
+
var WorkflowReportvue_type_style_index_0_id_59d6f112_prod_lang_css_ = __webpack_require__("07aa");
|
|
15306
15294
|
|
|
15307
15295
|
// CONCATENATED MODULE: ../src/web/components/forms/WorkflowReport.vue
|
|
15308
15296
|
|
|
@@ -15315,8 +15303,8 @@ var WorkflowReportvue_type_style_index_0_id_5dbb6123_prod_lang_css_ = __webpack_
|
|
|
15315
15303
|
|
|
15316
15304
|
var WorkflowReport_component = normalizeComponent(
|
|
15317
15305
|
forms_WorkflowReportvue_type_script_lang_js_,
|
|
15318
|
-
|
|
15319
|
-
|
|
15306
|
+
WorkflowReportvue_type_template_id_59d6f112_render,
|
|
15307
|
+
WorkflowReportvue_type_template_id_59d6f112_staticRenderFns,
|
|
15320
15308
|
false,
|
|
15321
15309
|
null,
|
|
15322
15310
|
null,
|
|
@@ -16802,17 +16790,6 @@ var style = __webpack_require__("517c");
|
|
|
16802
16790
|
|
|
16803
16791
|
|
|
16804
16792
|
|
|
16805
|
-
/***/ }),
|
|
16806
|
-
|
|
16807
|
-
/***/ "2183":
|
|
16808
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
16809
|
-
|
|
16810
|
-
"use strict";
|
|
16811
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_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_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_WorkflowReport_vue_vue_type_style_index_0_id_5dbb6123_prod_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("9885");
|
|
16812
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_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_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_WorkflowReport_vue_vue_type_style_index_0_id_5dbb6123_prod_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_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_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_WorkflowReport_vue_vue_type_style_index_0_id_5dbb6123_prod_lang_css___WEBPACK_IMPORTED_MODULE_0__);
|
|
16813
|
-
/* unused harmony reexport * */
|
|
16814
|
-
|
|
16815
|
-
|
|
16816
16793
|
/***/ }),
|
|
16817
16794
|
|
|
16818
16795
|
/***/ "2364":
|
|
@@ -16978,6 +16955,17 @@ function fromByteArray (uint8) {
|
|
|
16978
16955
|
}
|
|
16979
16956
|
|
|
16980
16957
|
|
|
16958
|
+
/***/ }),
|
|
16959
|
+
|
|
16960
|
+
/***/ "2f24":
|
|
16961
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
16962
|
+
|
|
16963
|
+
"use strict";
|
|
16964
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_style_index_0_id_48274586_prod_lang_less___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("63ce");
|
|
16965
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_style_index_0_id_48274586_prod_lang_less___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_style_index_0_id_48274586_prod_lang_less___WEBPACK_IMPORTED_MODULE_0__);
|
|
16966
|
+
/* unused harmony reexport * */
|
|
16967
|
+
|
|
16968
|
+
|
|
16981
16969
|
/***/ }),
|
|
16982
16970
|
|
|
16983
16971
|
/***/ "336c":
|
|
@@ -16987,21 +16975,28 @@ module.exports = require("@antv/g6");
|
|
|
16987
16975
|
|
|
16988
16976
|
/***/ }),
|
|
16989
16977
|
|
|
16990
|
-
/***/ "
|
|
16978
|
+
/***/ "37eb":
|
|
16979
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
16980
|
+
|
|
16981
|
+
!function(t,e){ true?module.exports=e(__webpack_require__("788a")):undefined}(this,function(t){return function(t){function e(i){if(n[i])return n[i].exports;var l=n[i]={i:i,l:!1,exports:{}};return t[i].call(l.exports,l,l.exports,e),l.l=!0,l.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,i){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:i})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="/",e(e.s=2)}([function(e,n){e.exports=t},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(4),l=n.n(i),o=n(6),r=n(5),u=r(l.a,o.a,!1,null,null,null);e.default=u.exports},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0}),e.install=e.quillEditor=e.Quill=void 0;var l=n(0),o=i(l),r=n(1),u=i(r),s=window.Quill||o.default,a=function(t,e){e&&(u.default.props.globalOptions.default=function(){return e}),t.component(u.default.name,u.default)},c={Quill:s,quillEditor:u.default,install:a};e.default=c,e.Quill=s,e.quillEditor=u.default,e.install=a},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={theme:"snow",boundary:document.body,modules:{toolbar:[["bold","italic","underline","strike"],["blockquote","code-block"],[{header:1},{header:2}],[{list:"ordered"},{list:"bullet"}],[{script:"sub"},{script:"super"}],[{indent:"-1"},{indent:"+1"}],[{direction:"rtl"}],[{size:["small",!1,"large","huge"]}],[{header:[1,2,3,4,5,6,!1]}],[{color:[]},{background:[]}],[{font:[]}],[{align:[]}],["clean"],["link","image","video"]]},placeholder:"Insert text here ...",readOnly:!1}},function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var l=n(0),o=i(l),r=n(3),u=i(r),s=window.Quill||o.default;"function"!=typeof Object.assign&&Object.defineProperty(Object,"assign",{value:function(t,e){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var n=Object(t),i=1;i<arguments.length;i++){var l=arguments[i];if(null!=l)for(var o in l)Object.prototype.hasOwnProperty.call(l,o)&&(n[o]=l[o])}return n},writable:!0,configurable:!0}),e.default={name:"quill-editor",data:function(){return{_options:{},_content:"",defaultOptions:u.default}},props:{content:String,value:String,disabled:{type:Boolean,default:!1},options:{type:Object,required:!1,default:function(){return{}}},globalOptions:{type:Object,required:!1,default:function(){return{}}}},mounted:function(){this.initialize()},beforeDestroy:function(){this.quill=null,delete this.quill},methods:{initialize:function(){var t=this;this.$el&&(this._options=Object.assign({},this.defaultOptions,this.globalOptions,this.options),this.quill=new s(this.$refs.editor,this._options),this.quill.enable(!1),(this.value||this.content)&&this.quill.pasteHTML(this.value||this.content),this.disabled||this.quill.enable(!0),this.quill.on("selection-change",function(e){e?t.$emit("focus",t.quill):t.$emit("blur",t.quill)}),this.quill.on("text-change",function(e,n,i){var l=t.$refs.editor.children[0].innerHTML,o=t.quill,r=t.quill.getText();"<p><br></p>"===l&&(l=""),t._content=l,t.$emit("input",t._content),t.$emit("change",{html:l,text:r,quill:o})}),this.$emit("ready",this.quill))}},watch:{content:function(t,e){this.quill&&(t&&t!==this._content?(this._content=t,this.quill.pasteHTML(t)):t||this.quill.setText(""))},value:function(t,e){this.quill&&(t&&t!==this._content?(this._content=t,this.quill.pasteHTML(t)):t||this.quill.setText(""))},disabled:function(t,e){this.quill&&this.quill.enable(!t)}}}},function(t,e){t.exports=function(t,e,n,i,l,o){var r,u=t=t||{},s=typeof t.default;"object"!==s&&"function"!==s||(r=t,u=t.default);var a="function"==typeof u?u.options:u;e&&(a.render=e.render,a.staticRenderFns=e.staticRenderFns,a._compiled=!0),n&&(a.functional=!0),l&&(a._scopeId=l);var c;if(o?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},a._ssrRegister=c):i&&(c=i),c){var d=a.functional,f=d?a.render:a.beforeCreate;d?(a._injectStyles=c,a.render=function(t,e){return c.call(e),f(t,e)}):a.beforeCreate=f?[].concat(f,c):[c]}return{esModule:r,exports:u,options:a}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"quill-editor"},[t._t("toolbar"),t._v(" "),n("div",{ref:"editor"})],2)},l=[],o={render:i,staticRenderFns:l};e.a=o}])});
|
|
16982
|
+
|
|
16983
|
+
/***/ }),
|
|
16984
|
+
|
|
16985
|
+
/***/ "3f2c":
|
|
16991
16986
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
16992
16987
|
|
|
16993
16988
|
"use strict";
|
|
16994
|
-
/* harmony import */ var
|
|
16995
|
-
/* harmony import */ var
|
|
16989
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Item_vue_vue_type_style_index_0_id_5eddf4e5_prod_lang_less___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("4195");
|
|
16990
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Item_vue_vue_type_style_index_0_id_5eddf4e5_prod_lang_less___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Item_vue_vue_type_style_index_0_id_5eddf4e5_prod_lang_less___WEBPACK_IMPORTED_MODULE_0__);
|
|
16996
16991
|
/* unused harmony reexport * */
|
|
16997
16992
|
|
|
16998
16993
|
|
|
16999
16994
|
/***/ }),
|
|
17000
16995
|
|
|
17001
|
-
/***/ "
|
|
16996
|
+
/***/ "4195":
|
|
17002
16997
|
/***/ (function(module, exports, __webpack_require__) {
|
|
17003
16998
|
|
|
17004
|
-
|
|
16999
|
+
// extracted by mini-css-extract-plugin
|
|
17005
17000
|
|
|
17006
17001
|
/***/ }),
|
|
17007
17002
|
|
|
@@ -17076,6 +17071,13 @@ module.exports = require("vue-router");
|
|
|
17076
17071
|
|
|
17077
17072
|
/***/ }),
|
|
17078
17073
|
|
|
17074
|
+
/***/ "63ce":
|
|
17075
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
17076
|
+
|
|
17077
|
+
// extracted by mini-css-extract-plugin
|
|
17078
|
+
|
|
17079
|
+
/***/ }),
|
|
17080
|
+
|
|
17079
17081
|
/***/ "690b":
|
|
17080
17082
|
/***/ (function(module, exports, __webpack_require__) {
|
|
17081
17083
|
|
|
@@ -28675,14 +28677,14 @@ module.exports = require("vue");
|
|
|
28675
28677
|
|
|
28676
28678
|
/***/ }),
|
|
28677
28679
|
|
|
28678
|
-
/***/ "
|
|
28680
|
+
/***/ "8c12":
|
|
28679
28681
|
/***/ (function(module, exports, __webpack_require__) {
|
|
28680
28682
|
|
|
28681
28683
|
// extracted by mini-css-extract-plugin
|
|
28682
28684
|
|
|
28683
28685
|
/***/ }),
|
|
28684
28686
|
|
|
28685
|
-
/***/ "
|
|
28687
|
+
/***/ "8ef6":
|
|
28686
28688
|
/***/ (function(module, exports, __webpack_require__) {
|
|
28687
28689
|
|
|
28688
28690
|
// extracted by mini-css-extract-plugin
|
|
@@ -28699,24 +28701,6 @@ module.exports = Array.isArray || function (arr) {
|
|
|
28699
28701
|
};
|
|
28700
28702
|
|
|
28701
28703
|
|
|
28702
|
-
/***/ }),
|
|
28703
|
-
|
|
28704
|
-
/***/ "9885":
|
|
28705
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
28706
|
-
|
|
28707
|
-
// extracted by mini-css-extract-plugin
|
|
28708
|
-
|
|
28709
|
-
/***/ }),
|
|
28710
|
-
|
|
28711
|
-
/***/ "99a1":
|
|
28712
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
28713
|
-
|
|
28714
|
-
"use strict";
|
|
28715
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Item_vue_vue_type_style_index_0_id_58c66b73_prod_lang_less___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("8fba");
|
|
28716
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Item_vue_vue_type_style_index_0_id_58c66b73_prod_lang_less___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Item_vue_vue_type_style_index_0_id_58c66b73_prod_lang_less___WEBPACK_IMPORTED_MODULE_0__);
|
|
28717
|
-
/* unused harmony reexport * */
|
|
28718
|
-
|
|
28719
|
-
|
|
28720
28704
|
/***/ }),
|
|
28721
28705
|
|
|
28722
28706
|
/***/ "9f89":
|
|
@@ -30742,13 +30726,6 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
30742
30726
|
/* unused harmony reexport * */
|
|
30743
30727
|
|
|
30744
30728
|
|
|
30745
|
-
/***/ }),
|
|
30746
|
-
|
|
30747
|
-
/***/ "df81":
|
|
30748
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
30749
|
-
|
|
30750
|
-
// extracted by mini-css-extract-plugin
|
|
30751
|
-
|
|
30752
30729
|
/***/ }),
|
|
30753
30730
|
|
|
30754
30731
|
/***/ "e1f1":
|