Skip to content

Commit 439169d

Browse files
Release v0.0.109
1 parent 82e4241 commit 439169d

File tree

7 files changed

+15
-4
lines changed

7 files changed

+15
-4
lines changed

dist/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -48701,6 +48701,9 @@ var SchemaDesigner = class {
4870148701
this.mxGraph.view.validate(edge);
4870248702
}
4870348703
}
48704+
get activeCellState() {
48705+
return this._activeCellState;
48706+
}
4870448707
/**
4870548708
* Sets the current cell under edit
4870648709
*/

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.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ export declare class SchemaDesigner {
7171
* Redraws the edges in the schema designer
7272
*/
7373
private redrawEdges;
74+
get activeCellState(): mxCellState;
7475
/**
7576
* Sets the current cell under edit
7677
*/

dist/src/ts/schemaDesigner/schemaDesigner.js

+3
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,9 @@ class SchemaDesigner {
528528
this.mxGraph.view.validate(edge);
529529
}
530530
}
531+
get activeCellState() {
532+
return this._activeCellState;
533+
}
531534
/**
532535
* Sets the current cell under edit
533536
*/

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

src/ts/schemaDesigner/schemaDesigner.ts

+4
Original file line numberDiff line numberDiff line change
@@ -613,6 +613,10 @@ export class SchemaDesigner {
613613
}
614614
}
615615

616+
public get activeCellState(): mxCellState {
617+
return this._activeCellState;
618+
}
619+
616620
/**
617621
* Sets the current cell under edit
618622
*/

0 commit comments

Comments
 (0)