Skip to content

Commit fc0b435

Browse files
Release v0.0.77
1 parent 7448e17 commit fc0b435

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43486,7 +43486,7 @@ var SchemaDesignerLayout = class extends mxGraphFactory.mxHierarchicalLayout {
4348643486
this.orientation = mxGraphFactory.mxConstants.DIRECTION_WEST;
4348743487
super.execute(parent);
4348843488
let cells = this.graph.getModel().getChildCells(this.graph.getDefaultParent());
43489-
this.graph.moveCells(cells, 100, 0, false);
43489+
this.graph.moveCells(cells, 50, 50, false);
4349043490
cells = cells.filter((cell2) => !cell2.edge);
4349143491
const cellSet = new Set(cells.map((cell2) => cell2.id));
4349243492
const subGraphs = [];

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/ts/schemaDesigner/schemaDesignerLayout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class SchemaDesignerLayout extends mx_1.mxGraphFactory.mxHierarchicalLayout {
1313
super.execute(parent);
1414
// Move all cells to the right by 100px
1515
let cells = this.graph.getModel().getChildCells(this.graph.getDefaultParent());
16-
this.graph.moveCells(cells, 100, 0, false);
16+
this.graph.moveCells(cells, 50, 50, false);
1717
cells = cells.filter(cell => !cell.edge);
1818
const cellSet = new Set(cells.map(cell => cell.id));
1919
// Find all subgraphs

dist/tsconfig.tsbuildinfo

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "azdataGraph",
33
"description": "azdataGraph is a derivative of mxGraph, which is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
4-
"version": "0.0.76",
4+
"version": "0.0.77",
55
"homepage": "https://github.com/microsoft/azdataGraph",
66
"author": "Microsoft",
77
"license": "Apache-2.0",

src/ts/schemaDesigner/schemaDesignerLayout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class SchemaDesignerLayout extends mx.mxHierarchicalLayout {
1616

1717
// Move all cells to the right by 100px
1818
let cells = this.graph.getModel().getChildCells(this.graph.getDefaultParent());
19-
this.graph.moveCells(cells, 100, 0, false);
19+
this.graph.moveCells(cells, 50, 50, false);
2020

2121
cells = cells.filter(cell => !cell.edge);
2222
const cellSet = new Set(cells.map(cell => cell.id));

0 commit comments

Comments
 (0)