@balkangraph/orgchart.js 8.5.3 → 8.6.1
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 +19 -0
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -1147,6 +1147,25 @@ declare namespace OrgChart {
|
|
|
1147
1147
|
fullScreen?: boolean
|
|
1148
1148
|
}
|
|
1149
1149
|
|
|
1150
|
+
interface miniMap {
|
|
1151
|
+
colors?: Array<string>,
|
|
1152
|
+
selectorBackgroundColor?: string,
|
|
1153
|
+
backgroundColor?: string,
|
|
1154
|
+
focusStroke?: string,
|
|
1155
|
+
opacity?: Number,
|
|
1156
|
+
border?: string,
|
|
1157
|
+
width?: Number,
|
|
1158
|
+
height?: Number,
|
|
1159
|
+
padding?: Number,
|
|
1160
|
+
position?: OrgChart.position,
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
interface position {
|
|
1164
|
+
top?: string,
|
|
1165
|
+
left?: string,
|
|
1166
|
+
right?: string,
|
|
1167
|
+
bottom?: string
|
|
1168
|
+
}
|
|
1150
1169
|
|
|
1151
1170
|
interface exportOptions {
|
|
1152
1171
|
margin?: Array<number>,
|