Skip to content

Commit 5819bbb

Browse files
Release v0.0.117
1 parent 46f16e1 commit 5819bbb

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

dist/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -49082,7 +49082,7 @@ var SchemaDesigner = class {
4908249082
this.mxGraph.setSelectionCells([]);
4908349083
const width = this.mxGraph.getGraphBounds().width + 300;
4908449084
const height = this.mxGraph.getGraphBounds().height + 300;
49085-
this._outlineContainer.style.display = "none";
49085+
this._outlineContainer.style.visibility = "hidden";
4908649086
const fileContentPromise = new Promise((resolve) => {
4908749087
switch (format) {
4908849088
case "png":
@@ -49114,7 +49114,7 @@ var SchemaDesigner = class {
4911449114
}
4911549115
});
4911649116
this.mxGraph.setSelectionCells(selectedCells);
49117-
this._outlineContainer.style.display = "";
49117+
this._outlineContainer.style.visibility = "visible";
4911849118
return {
4911949119
fileContent: await fileContentPromise,
4912049120
format,

dist/index.js.map

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/ts/schemaDesigner/schemaDesigner.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@ class SchemaDesigner {
905905
this.mxGraph.setSelectionCells([]);
906906
const width = this.mxGraph.getGraphBounds().width + 300;
907907
const height = this.mxGraph.getGraphBounds().height + 300;
908-
this._outlineContainer.style.display = "none";
908+
this._outlineContainer.style.visibility = "hidden";
909909
const fileContentPromise = new Promise((resolve) => {
910910
switch (format) {
911911
case 'png':
@@ -937,7 +937,7 @@ class SchemaDesigner {
937937
}
938938
});
939939
this.mxGraph.setSelectionCells(selectedCells);
940-
this._outlineContainer.style.display = "";
940+
this._outlineContainer.style.visibility = "visible";
941941
return {
942942
fileContent: yield fileContentPromise,
943943
format: format,

dist/tsconfig.tsbuildinfo

+1-1
Large diffs are not rendered by default.

package.json

+1-1
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.116",
4+
"version": "0.0.117",
55
"homepage": "https://github.com/microsoft/azdataGraph",
66
"author": "Microsoft",
77
"license": "Apache-2.0",

src/ts/schemaDesigner/schemaDesigner.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1051,7 +1051,7 @@ export class SchemaDesigner {
10511051
this.mxGraph.setSelectionCells([]);
10521052
const width = this.mxGraph.getGraphBounds().width + 300;
10531053
const height = this.mxGraph.getGraphBounds().height + 300;
1054-
this._outlineContainer.style.display = "none";
1054+
this._outlineContainer.style.visibility = "hidden";
10551055
const fileContentPromise = new Promise<string>((resolve) => {
10561056
switch (format) {
10571057
case 'png':
@@ -1083,7 +1083,7 @@ export class SchemaDesigner {
10831083
}
10841084
});
10851085
this.mxGraph.setSelectionCells(selectedCells);
1086-
this._outlineContainer.style.display = "";
1086+
this._outlineContainer.style.visibility = "visible";
10871087
return {
10881088
fileContent: await fileContentPromise,
10891089
format: format,

0 commit comments

Comments
 (0)