mxcad-app 1.0.48 → 1.0.49
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/chunks/mxcad.js.gz +0 -0
- package/dist/chunks/mxdraw.js.gz +0 -0
- package/dist/index.cjs.gz +0 -0
- package/dist/index.d.ts +21 -21
- package/dist/index.umd.js.gz +0 -0
- package/dist/mxcad.d.ts +15 -1
- package/dist/mxcadAppAssets/plugins/test.js.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d/mxdrawassembly_min.js.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d/mxdrawassembly_min.wasm.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d-st/mxdrawassembly_min.js.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d-st/mxdrawassembly_minst.wasm.gz +0 -0
- package/package.json +1 -1
package/dist/chunks/mxcad.js.gz
CHANGED
|
Binary file
|
package/dist/chunks/mxdraw.js.gz
CHANGED
|
Binary file
|
package/dist/index.cjs.gz
CHANGED
|
Binary file
|
package/dist/index.d.ts
CHANGED
|
@@ -236,27 +236,6 @@ declare module '@tiptap/core' {
|
|
|
236
236
|
}
|
|
237
237
|
|
|
238
238
|
|
|
239
|
-
declare module "@tiptap/core" {
|
|
240
|
-
interface Commands<ReturnType> {
|
|
241
|
-
selectedText: {
|
|
242
|
-
setSelectedText: (from: number, to: number) => ReturnType;
|
|
243
|
-
unsetSelectedText: (from: number, to: number) => ReturnType;
|
|
244
|
-
};
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
declare module '@tiptap/core' {
|
|
250
|
-
interface Commands<ReturnType> {
|
|
251
|
-
Underline: {
|
|
252
|
-
setUnderline: () => ReturnType;
|
|
253
|
-
unsetUnderline: () => ReturnType;
|
|
254
|
-
toggleUnderline: () => ReturnType;
|
|
255
|
-
};
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
|
|
260
239
|
declare module '@tiptap/core' {
|
|
261
240
|
interface Commands<ReturnType> {
|
|
262
241
|
Overline: {
|
|
@@ -274,6 +253,17 @@ declare module '@tiptap/core' {
|
|
|
274
253
|
}
|
|
275
254
|
|
|
276
255
|
|
|
256
|
+
declare module '@tiptap/core' {
|
|
257
|
+
interface Commands<ReturnType> {
|
|
258
|
+
Underline: {
|
|
259
|
+
setUnderline: () => ReturnType;
|
|
260
|
+
unsetUnderline: () => ReturnType;
|
|
261
|
+
toggleUnderline: () => ReturnType;
|
|
262
|
+
};
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
|
|
277
267
|
declare module '@tiptap/core' {
|
|
278
268
|
interface Commands<ReturnType> {
|
|
279
269
|
Strike: {
|
|
@@ -305,3 +295,13 @@ declare module '@tiptap/core' {
|
|
|
305
295
|
};
|
|
306
296
|
}
|
|
307
297
|
}
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
declare module "@tiptap/core" {
|
|
301
|
+
interface Commands<ReturnType> {
|
|
302
|
+
selectedText: {
|
|
303
|
+
setSelectedText: (from: number, to: number) => ReturnType;
|
|
304
|
+
unsetSelectedText: (from: number, to: number) => ReturnType;
|
|
305
|
+
};
|
|
306
|
+
}
|
|
307
|
+
}
|
package/dist/index.umd.js.gz
CHANGED
|
Binary file
|
package/dist/mxcad.d.ts
CHANGED
|
@@ -8557,7 +8557,21 @@ declare module "mxcad" {
|
|
|
8557
8557
|
* }
|
|
8558
8558
|
* ```
|
|
8559
8559
|
*/
|
|
8560
|
-
setClipBoundary(type: McDb.ClipBoundaryType, aryPoint: McGePoint3dArray): boolean;
|
|
8560
|
+
setClipBoundary(type: McDb.ClipBoundaryType, aryPoint: McGePoint3dArray, isWroldCoords?: boolean): boolean;
|
|
8561
|
+
/**
|
|
8562
|
+
* 图片是否使用剪切边界
|
|
8563
|
+
* @example
|
|
8564
|
+
* ```ts
|
|
8565
|
+
* ```
|
|
8566
|
+
*/
|
|
8567
|
+
isClip(): boolean;
|
|
8568
|
+
/**
|
|
8569
|
+
* 设置图片使用剪切边界
|
|
8570
|
+
* @example
|
|
8571
|
+
* ```ts
|
|
8572
|
+
* ```
|
|
8573
|
+
*/
|
|
8574
|
+
setClip(isClip: boolean): void;
|
|
8561
8575
|
/**
|
|
8562
8576
|
* 获取图像对象的裁剪边界
|
|
8563
8577
|
* @example
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|