mxdraw 0.1.311 → 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;
@@ -1182,6 +1185,13 @@ declare class MxFunClass {
1182
1185
  * ```
1183
1186
  */
1184
1187
  setMxServer(MXSERVER?: string): void;
1188
+ /**
1189
+ * 设置加载图片回调函数。
1190
+ * @example
1191
+ * ``` typescript
1192
+ * ```
1193
+ */
1194
+ setloadImageFuction(call: (url: string, onLoad?: (texture: any) => void, onError?: (event: any) => void) => void): void;
1185
1195
  /**
1186
1196
  * MxFun 模块
1187
1197
  * mxdraw模块初始化同步
@@ -1759,6 +1769,11 @@ interface iniConfig {
1759
1769
  inputRectWidth?: number;
1760
1770
  /** 夹点颜色 */
1761
1771
  gripPointColor?: number;
1772
+ /** 1,使用EnableGripEidt设置,默认值是1
1773
+ ** 2 启用CAD对象夹点编辑
1774
+ ** 0 禁用AD对象夹点编辑
1775
+ */
1776
+ EnableCADEntityGripEidt?: number;
1762
1777
  }
1763
1778
  type MxFunType = MxFunClass;
1764
1779