@balkangraph/orgchart.js 8.2.67 → 8.2.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/orgchart.d.ts +18 -0
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -775,6 +775,9 @@ declare class OrgChart extends OrgChartBase {
|
|
|
775
775
|
static attr: any;
|
|
776
776
|
static toolbarUI: any;
|
|
777
777
|
static elements: any;
|
|
778
|
+
|
|
779
|
+
static expcollOpenTag: any;
|
|
780
|
+
static grCloseTag: any;
|
|
778
781
|
}
|
|
779
782
|
|
|
780
783
|
declare namespace OrgChart {
|
|
@@ -1982,6 +1985,21 @@ declare namespace OrgChart {
|
|
|
1982
1985
|
elements?: Array<OrgChart.editFormElement | Array<OrgChart.editFormElement>>
|
|
1983
1986
|
}
|
|
1984
1987
|
}
|
|
1988
|
+
|
|
1989
|
+
var ui: {
|
|
1990
|
+
defs(fromrender: string): string;
|
|
1991
|
+
lonely(config: Object): string;
|
|
1992
|
+
pointer(config: Object, action: OrgChart.action, scale: number): string;
|
|
1993
|
+
node(node: OrgChart.node, data: Object, animations: OrgChart.anim, config: Object, x: number | undefined, y: number | undefined, nodeBinding: Object | undefined, action: OrgChart.action, scale: number, sender: Object): string;
|
|
1994
|
+
nodeBtns(config: Object, node: OrgChart.node, action: OrgChart.action, t: Object, sender: Object): string;
|
|
1995
|
+
expandCollapseBtn(chart: OrgChart, node: OrgChart.node, layoutConfigs: any, action: OrgChart.action, scale: number): string;
|
|
1996
|
+
link(node: OrgChart.node, obj: Object, scale: number, bordersByRootIdAndLevel: Object, nodes: Object, action: OrgChart.action): Array<string>;
|
|
1997
|
+
svg(width: number, height: number, viewBox: Array<number>, config: Object, content: string, scale: number): string;
|
|
1998
|
+
menuButton(config: Object): string;
|
|
1999
|
+
|
|
2000
|
+
};
|
|
2001
|
+
|
|
2002
|
+
var t: any;
|
|
1985
2003
|
}
|
|
1986
2004
|
|
|
1987
2005
|
declare class OrgChartBase {
|