mxdraw 0.1.199 → 0.1.201
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 +4 -1
- 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
|
@@ -1072,10 +1072,13 @@ declare class MxDynamicInput {
|
|
|
1072
1072
|
mValue2: string;
|
|
1073
1073
|
mValue2Pos: number[];
|
|
1074
1074
|
misShow: boolean;
|
|
1075
|
+
focusIndex: number;
|
|
1075
1076
|
mOnKeydownEvent: ((arg0: any) => void) | undefined;
|
|
1076
1077
|
mFocusValue: string;
|
|
1077
1078
|
setFocusValue: (value: string) => void;
|
|
1078
1079
|
getFocusValue: () => string;
|
|
1080
|
+
getFocusIndex: () => number;
|
|
1081
|
+
setFocusIndex: (index: number) => void;
|
|
1079
1082
|
mountKeydownEvent: (fun: ((arg0: any) => void) | undefined) => void;
|
|
1080
1083
|
onKeydown: (keyCode: any) => void;
|
|
1081
1084
|
setType: (type: number) => void;
|
|
@@ -1742,7 +1745,7 @@ declare class MxFunClass {
|
|
|
1742
1745
|
/**
|
|
1743
1746
|
* 触发一个系统事件的调用
|
|
1744
1747
|
* */
|
|
1745
|
-
callEvent: (eventName: string, param?: any) =>
|
|
1748
|
+
callEvent: (eventName: string, param?: any) => any;
|
|
1746
1749
|
/**
|
|
1747
1750
|
* 得到当前网页路径
|
|
1748
1751
|
* init 事件会在模块加载完成后触发。
|