mxdraw 0.1.199 → 0.1.200
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 +3 -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
|
@@ -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;
|