mxdraw 0.1.150 → 0.1.152
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/lib/MxModule/MrxDbgUiPrPoint/index.d.ts +14 -0
- package/dist/lib/MxModule/MrxDbgUiPrPoint/index.js +1 -1
- package/dist/lib/MxModule/MxDbSplineCurve/draw.d.ts +1 -0
- package/dist/lib/MxModule/MxDbSplineCurve/draw.js +1 -0
- package/dist/lib/MxModule/MxDbSplineCurve/index.d.ts +22 -0
- package/dist/lib/MxModule/MxDbSplineCurve/index.js +1 -0
- package/dist/lib/MxModule/loadCoreCode/mxfun.es5.js +1 -1
- package/dist/lib/MxModule.d.ts +14 -0
- package/dist/mxdraw.es.js +1 -1
- package/dist/mxdraw.umd.js +1 -1
- package/package.json +1 -1
package/dist/lib/MxModule.d.ts
CHANGED
|
@@ -3172,6 +3172,11 @@ declare enum MrxDbgUiPrBaseReturn {
|
|
|
3172
3172
|
|
|
3173
3173
|
/** @module MrxDbgUiPrPointClass */
|
|
3174
3174
|
|
|
3175
|
+
declare enum MxCursorType {
|
|
3176
|
+
kNormal = 0,
|
|
3177
|
+
kRect = 1,
|
|
3178
|
+
kCross = 2
|
|
3179
|
+
}
|
|
3175
3180
|
/**
|
|
3176
3181
|
* MrxDbgUiPrPoint 用于构建一个取点对象
|
|
3177
3182
|
* @example ```typescript
|
|
@@ -3179,6 +3184,7 @@ declare enum MrxDbgUiPrBaseReturn {
|
|
|
3179
3184
|
* ```
|
|
3180
3185
|
*/
|
|
3181
3186
|
declare class MrxDbgUiPrPoint {
|
|
3187
|
+
private _MrxDbgUiPrPoint;
|
|
3182
3188
|
constructor();
|
|
3183
3189
|
/**
|
|
3184
3190
|
* 返回关键字列表
|
|
@@ -3279,6 +3285,14 @@ declare class MrxDbgUiPrPoint {
|
|
|
3279
3285
|
* 返回需要的Touche输入类型
|
|
3280
3286
|
*/
|
|
3281
3287
|
getInputToucheType(): number;
|
|
3288
|
+
/**
|
|
3289
|
+
* 设置光标类型
|
|
3290
|
+
*/
|
|
3291
|
+
setCursorType(type: MxCursorType): void;
|
|
3292
|
+
/**
|
|
3293
|
+
* 返回光标类型
|
|
3294
|
+
*/
|
|
3295
|
+
getCursorType(): MxCursorType;
|
|
3282
3296
|
}
|
|
3283
3297
|
|
|
3284
3298
|
declare function drawMxDbImage(): void;
|