mxdraw 0.1.312 → 0.1.314

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,15 @@ 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;
1044
+ getLockValuesMap(): Map<number, string>;
1045
+ clearLockValuesMap(): void;
1041
1046
  getFocusIndex: () => number;
1042
1047
  setFocusIndex: (index: number) => void;
1043
1048
  mountKeydownEvent: (fun: ((arg0: any) => number) | undefined) => void;
@@ -1766,6 +1771,11 @@ interface iniConfig {
1766
1771
  inputRectWidth?: number;
1767
1772
  /** 夹点颜色 */
1768
1773
  gripPointColor?: number;
1774
+ /** 1,使用EnableGripEidt设置,默认值是1
1775
+ ** 2 启用CAD对象夹点编辑
1776
+ ** 0 禁用AD对象夹点编辑
1777
+ */
1778
+ EnableCADEntityGripEidt?: number;
1769
1779
  }
1770
1780
  type MxFunType = MxFunClass;
1771
1781