Merge branch 'master' into develop

This commit is contained in:
Knut Sveidqvist
2019-12-01 07:54:02 +01:00
18 changed files with 249 additions and 30 deletions

View File

@@ -1,4 +1,4 @@
import dagreD3 from 'dagre-d3';
import dagreD3 from 'dagre-d3-unofficial';
function question(parent, bbox, node) {
const w = bbox.width;

View File

@@ -6,11 +6,10 @@ import flow from './parser/flow';
import { getConfig } from '../../config';
const newDagreD3 = true;
import dagreD3 from 'dagre-d3';
import dagreD3 from 'dagre-d3-unofficial';
// const newDagreD3 = false;
// import dagreD3 from '../../../../dagre-d3-renderer/dist/dagre-d3.core.js';
import addHtmlLabel from 'dagre-d3/lib/label/add-html-label.js';
import addHtmlLabel from 'dagre-d3-unofficial/lib/label/add-html-label.js';
import { logger } from '../../logger';
import { interpolateToCurve } from '../../utils';
import flowChartShapes from './flowChartShapes';