Skip to content

Commit 2776959

Browse files
Release v0.0.90
1 parent 6ca8abb commit 2776959

6 files changed

Lines changed: 7 additions & 5 deletions

File tree

dist/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43764,6 +43764,7 @@ var SchemaDesigner = class {
4376443764
this.mxGraph.getStylesheet().getDefaultEdgeStyle()["cellHighlightColor"] = this.config.colors.cellHighlight;
4376543765
this.mxGraph.getStylesheet().getDefaultEdgeStyle()["strokeColor"] = this.config.colors.edge;
4376643766
mxGraphFactory.mxConstants.OUTLINE_HANDLE_FILLCOLOR = this.config.colors.outlineHandleFill;
43767+
mxGraphFactory.mxConstants.OUTLINE_HANDLE_STROKECOLOR = this.config.colors.outlineHandleFill;
4376743768
mxGraphFactory.mxConstants.OUTLINE_COLOR = this.config.colors.outline;
4376843769
this.mxGraph.graphHandler.previewColor = this.config.colors.graphHandlePreview;
4376943770
}

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/schemaDesigner.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ class SchemaDesigner {
5757
this.mxGraph.getStylesheet().getDefaultEdgeStyle()['cellHighlightColor'] = this.config.colors.cellHighlight;
5858
this.mxGraph.getStylesheet().getDefaultEdgeStyle()["strokeColor"] = this.config.colors.edge;
5959
mx_1.mxGraphFactory.mxConstants.OUTLINE_HANDLE_FILLCOLOR = this.config.colors.outlineHandleFill;
60+
mx_1.mxGraphFactory.mxConstants.OUTLINE_HANDLE_STROKECOLOR = this.config.colors.outlineHandleFill;
6061
mx_1.mxGraphFactory.mxConstants.OUTLINE_COLOR = this.config.colors.outline;
6162
this.mxGraph.graphHandler.previewColor = this.config.colors.graphHandlePreview;
6263
}

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

src/ts/schemaDesigner/schemaDesigner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export class SchemaDesigner {
9292
this.mxGraph.getStylesheet().getDefaultEdgeStyle()["strokeColor"] = this.config.colors.edge;
9393

9494
mx.mxConstants.OUTLINE_HANDLE_FILLCOLOR = this.config.colors.outlineHandleFill
95-
95+
mx.mxConstants.OUTLINE_HANDLE_STROKECOLOR = this.config.colors.outlineHandleFill;
9696
mx.mxConstants.OUTLINE_COLOR = this.config.colors.outline;
9797

9898
this.mxGraph.graphHandler.previewColor = this.config.colors.graphHandlePreview;

0 commit comments

Comments
 (0)