zimjs 16.3.3 → 16.3.5
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/package.json +1 -1
- package/src/zim.js +1417 -1237
- package/ts-src/typings/zim/index.d.ts +2 -1
|
@@ -2662,6 +2662,7 @@ declare namespace zim {
|
|
|
2662
2662
|
resize(): this
|
|
2663
2663
|
readonly data: any[]
|
|
2664
2664
|
readonly labels: Label[]
|
|
2665
|
+
readonly placeMenu: Container
|
|
2665
2666
|
selectedLabel: Label
|
|
2666
2667
|
selectedIndex: number
|
|
2667
2668
|
keys: Container
|
|
@@ -2714,7 +2715,7 @@ declare namespace zim {
|
|
|
2714
2715
|
// dispose():boolean // now added to Container, etc.
|
|
2715
2716
|
enabled: boolean
|
|
2716
2717
|
// END ZIM Component Interface
|
|
2717
|
-
addNode(x: number, y: number,
|
|
2718
|
+
addNode(x: number|DisplayObject, y: number|[], startNode?:boolean, endNode?:boolean, startLength?:number, endLength?:number): this
|
|
2718
2719
|
removeNode(node: DisplayObject): this
|
|
2719
2720
|
removeConnectors(): this
|
|
2720
2721
|
selectNode(node: DisplayObject, children?: boolean): this
|