mxdraw 0.1.205 → 0.1.207
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/dist/mxdraw.d.ts +9 -0
- package/dist/mxdraw.esm.js +1 -1
- package/dist/mxdraw.umd.js +1 -1
- package/package.json +1 -1
package/dist/mxdraw.d.ts
CHANGED
|
@@ -2743,6 +2743,15 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
|
|
|
2743
2743
|
* ```
|
|
2744
2744
|
*/
|
|
2745
2745
|
clearAllObject(): any;
|
|
2746
|
+
/**
|
|
2747
|
+
* 设置点选支持多选,默认不支持。
|
|
2748
|
+
* @example
|
|
2749
|
+
* ```typescript
|
|
2750
|
+
*
|
|
2751
|
+
*
|
|
2752
|
+
* ```
|
|
2753
|
+
*/
|
|
2754
|
+
setPointMultipleSelect(isMultipleSelect?: boolean): void;
|
|
2746
2755
|
}
|
|
2747
2756
|
|
|
2748
2757
|
/**
|