@balkangraph/orgchart.js 8.0.17 → 8.0.21
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 +4 -1
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ declare namespace OrgChart {
|
|
|
2
2
|
|
|
3
3
|
function isTrial(): boolean;
|
|
4
4
|
|
|
5
|
+
function t(templateName: string, minimized?: boolean, scale?: number ) : any;
|
|
6
|
+
|
|
5
7
|
enum orientation {
|
|
6
8
|
top,
|
|
7
9
|
left,
|
|
@@ -153,6 +155,8 @@ declare namespace OrgChart {
|
|
|
153
155
|
const RES: any;
|
|
154
156
|
|
|
155
157
|
const loc: Loc;
|
|
158
|
+
|
|
159
|
+
const grCloseTag: any;
|
|
156
160
|
}
|
|
157
161
|
|
|
158
162
|
interface State {
|
|
@@ -1991,5 +1995,4 @@ Code example:
|
|
|
1991
1995
|
*/
|
|
1992
1996
|
exportPNGProfile(options: Object, callback?: Function) : void;
|
|
1993
1997
|
|
|
1994
|
-
|
|
1995
1998
|
}export default OrgChart
|