Skip to content

Commit f4dc9ae

Browse files
Release v0.0.103
1 parent 343bff1 commit f4dc9ae

File tree

6 files changed

+11
-4
lines changed

6 files changed

+11
-4
lines changed

dist/index.js

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

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
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ class SchemaDesigner {
6161
mx_1.mxGraphFactory.mxConstants.OUTLINE_HANDLE_STROKECOLOR = colors.outlineHandleFill;
6262
mx_1.mxGraphFactory.mxConstants.OUTLINE_COLOR = colors.outline;
6363
this.mxGraph.graphHandler.previewColor = colors.graphHandlePreview;
64+
this.mxGraph.refresh();
65+
this.mxGraph.view.refresh();
6466
}
6567
/**
6668
* Overwrites the default mxGraph settings

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

src/ts/schemaDesigner/schemaDesigner.ts

+3
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ export class SchemaDesigner {
9797
mx.mxConstants.OUTLINE_COLOR = colors.outline;
9898

9999
this.mxGraph.graphHandler.previewColor = colors.graphHandlePreview;
100+
101+
this.mxGraph.refresh();
102+
this.mxGraph.view.refresh();
100103
}
101104

102105
/**

0 commit comments

Comments
 (0)