mxdraw 0.1.278 → 0.1.279
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 -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
|
@@ -1744,6 +1744,10 @@ interface iniConfig {
|
|
|
1744
1744
|
IntelliSelectType?: number;
|
|
1745
1745
|
/** 禁用动态输入框 */
|
|
1746
1746
|
ForbiddenDynInput?: boolean;
|
|
1747
|
+
/** 夹点和拾取框的大小,单位是屏幕上的像素 */
|
|
1748
|
+
inputRectWidth?: number;
|
|
1749
|
+
/** 夹点颜色 */
|
|
1750
|
+
gripPointColor?: number;
|
|
1747
1751
|
}
|
|
1748
1752
|
type MxFunType = MxFunClass;
|
|
1749
1753
|
|