mxdraw 0.1.312 → 0.1.313

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 CHANGED
@@ -1034,10 +1034,13 @@ declare class MxDynamicInput {
1034
1034
  mValue2Pos: number[];
1035
1035
  misShow: boolean;
1036
1036
  focusIndex: number;
1037
+ mLockValues: Map<any, any>;
1037
1038
  mOnKeydownEvent: ((arg0: any) => number) | undefined;
1038
1039
  mFocusValue: string;
1039
1040
  setFocusValue: (value: string) => void;
1040
1041
  getFocusValue: () => string;
1042
+ setLockValues(index: number, value: string): void;
1043
+ getLockValues(index: number): string;
1041
1044
  getFocusIndex: () => number;
1042
1045
  setFocusIndex: (index: number) => void;
1043
1046
  mountKeydownEvent: (fun: ((arg0: any) => number) | undefined) => void;
@@ -1766,6 +1769,11 @@ interface iniConfig {
1766
1769
  inputRectWidth?: number;
1767
1770
  /** 夹点颜色 */
1768
1771
  gripPointColor?: number;
1772
+ /** 1,使用EnableGripEidt设置,默认值是1
1773
+ ** 2 启用CAD对象夹点编辑
1774
+ ** 0 禁用AD对象夹点编辑
1775
+ */
1776
+ EnableCADEntityGripEidt?: number;
1769
1777
  }
1770
1778
  type MxFunType = MxFunClass;
1771
1779