mxcad-app 1.0.68 → 1.0.69
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/identificationFrame.js.gz +0 -0
- package/dist/chunks/index10.js.gz +0 -0
- package/dist/chunks/index17.js.gz +0 -0
- package/dist/chunks/index20.js.gz +0 -0
- package/dist/chunks/index25.js.gz +0 -0
- package/dist/chunks/index28.js.gz +0 -0
- package/dist/chunks/index29.js.gz +0 -0
- package/dist/chunks/index34.js.gz +0 -0
- package/dist/chunks/index36.js.gz +0 -0
- package/dist/chunks/index37.js.gz +0 -0
- package/dist/chunks/index38.js.gz +0 -0
- package/dist/chunks/index4.js.gz +0 -0
- package/dist/chunks/index42.js +1 -1
- package/dist/chunks/index44.js.gz +0 -0
- package/dist/chunks/index45.js.gz +0 -0
- package/dist/chunks/index9.js.gz +0 -0
- package/dist/chunks/lib.js.gz +0 -0
- 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 +23 -23
- package/dist/index.umd.js.gz +0 -0
- package/dist/mxcad.d.ts +6 -1
- 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/dist/mxcadAppAssets/wasm/2d-x64/mxdrawassembly_min.js.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d-x64/mxdrawassembly_min.wasm.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d-x64-st/mxdrawassembly_min.js.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d-x64-st/mxdrawassembly_minst.wasm.gz +0 -0
- package/dist/mxdraw.d.ts +5 -0
- package/dist/styles/style.css.gz +0 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/chunks/index4.js.gz
CHANGED
|
Binary file
|
package/dist/chunks/index42.js
CHANGED
|
Binary file
|
|
Binary file
|
package/dist/chunks/index9.js.gz
CHANGED
|
Binary file
|
package/dist/chunks/lib.js.gz
CHANGED
|
Binary file
|
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
|
@@ -2633,22 +2633,6 @@ declare module '@howdyjs/to-drag' {
|
|
|
2633
2633
|
}
|
|
2634
2634
|
|
|
2635
2635
|
|
|
2636
|
-
declare module '@tiptap/core' {
|
|
2637
|
-
interface Commands<ReturnType> {
|
|
2638
|
-
TextDecoration: {
|
|
2639
|
-
/**
|
|
2640
|
-
* Set the font size attribute
|
|
2641
|
-
*/
|
|
2642
|
-
setTextDecoration: (textDecoration: string) => ReturnType;
|
|
2643
|
-
/**
|
|
2644
|
-
* Unset the font size attribute
|
|
2645
|
-
*/
|
|
2646
|
-
unsetTextDecoration: () => ReturnType;
|
|
2647
|
-
};
|
|
2648
|
-
}
|
|
2649
|
-
}
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
2636
|
declare module "@tiptap/core" {
|
|
2653
2637
|
interface Commands<ReturnType> {
|
|
2654
2638
|
selectedText: {
|
|
@@ -2689,16 +2673,15 @@ declare module '@tiptap/core' {
|
|
|
2689
2673
|
|
|
2690
2674
|
declare module '@tiptap/core' {
|
|
2691
2675
|
interface Commands<ReturnType> {
|
|
2692
|
-
|
|
2676
|
+
fontSize: {
|
|
2693
2677
|
/**
|
|
2694
2678
|
* Set the font size attribute
|
|
2695
2679
|
*/
|
|
2696
|
-
|
|
2680
|
+
setFontSize: (size: string) => ReturnType;
|
|
2697
2681
|
/**
|
|
2698
2682
|
* Unset the font size attribute
|
|
2699
2683
|
*/
|
|
2700
|
-
|
|
2701
|
-
toggleOverline: () => ReturnType;
|
|
2684
|
+
unsetFontSize: () => ReturnType;
|
|
2702
2685
|
};
|
|
2703
2686
|
}
|
|
2704
2687
|
}
|
|
@@ -2706,15 +2689,32 @@ declare module '@tiptap/core' {
|
|
|
2706
2689
|
|
|
2707
2690
|
declare module '@tiptap/core' {
|
|
2708
2691
|
interface Commands<ReturnType> {
|
|
2709
|
-
|
|
2692
|
+
TextDecoration: {
|
|
2710
2693
|
/**
|
|
2711
2694
|
* Set the font size attribute
|
|
2712
2695
|
*/
|
|
2713
|
-
|
|
2696
|
+
setTextDecoration: (textDecoration: string) => ReturnType;
|
|
2714
2697
|
/**
|
|
2715
2698
|
* Unset the font size attribute
|
|
2716
2699
|
*/
|
|
2717
|
-
|
|
2700
|
+
unsetTextDecoration: () => ReturnType;
|
|
2701
|
+
};
|
|
2702
|
+
}
|
|
2703
|
+
}
|
|
2704
|
+
|
|
2705
|
+
|
|
2706
|
+
declare module '@tiptap/core' {
|
|
2707
|
+
interface Commands<ReturnType> {
|
|
2708
|
+
Overline: {
|
|
2709
|
+
/**
|
|
2710
|
+
* Set the font size attribute
|
|
2711
|
+
*/
|
|
2712
|
+
setOverline: () => ReturnType;
|
|
2713
|
+
/**
|
|
2714
|
+
* Unset the font size attribute
|
|
2715
|
+
*/
|
|
2716
|
+
unsetOverline: () => ReturnType;
|
|
2717
|
+
toggleOverline: () => ReturnType;
|
|
2718
2718
|
};
|
|
2719
2719
|
}
|
|
2720
2720
|
}
|
package/dist/index.umd.js.gz
CHANGED
|
Binary file
|
package/dist/mxcad.d.ts
CHANGED
|
@@ -3093,7 +3093,12 @@ declare module "mxcad" {
|
|
|
3093
3093
|
getPoint.setLastInputPoint(new McGePoint3d(0,0,0));
|
|
3094
3094
|
* ```
|
|
3095
3095
|
*/
|
|
3096
|
-
setLastInputPoint(pt: McGePoint3d): void;
|
|
3096
|
+
setLastInputPoint(pt: McGePoint3d | undefined): void;
|
|
3097
|
+
/**
|
|
3098
|
+
* 返回上一次的输入点。
|
|
3099
|
+
* @returns 选择的关键字
|
|
3100
|
+
*/
|
|
3101
|
+
getLastInputPoint(): McGePoint3d | undefined;
|
|
3097
3102
|
/**
|
|
3098
3103
|
* 提示字符串
|
|
3099
3104
|
* @returns 提示消息
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/mxdraw.d.ts
CHANGED
|
@@ -3794,6 +3794,11 @@ declare module "mxdraw" {
|
|
|
3794
3794
|
* @returns 选择的关键字
|
|
3795
3795
|
*/
|
|
3796
3796
|
setLastInputPoint(pt: THREE.Vector3 | undefined): void;
|
|
3797
|
+
/**
|
|
3798
|
+
* 返回上一次的输入点。
|
|
3799
|
+
* @returns 选择的关键字
|
|
3800
|
+
*/
|
|
3801
|
+
getLastInputPoint(): THREE.Vector3 | undefined;
|
|
3797
3802
|
/**
|
|
3798
3803
|
* 返回用户选择的关键字
|
|
3799
3804
|
* @returns 选择的关键字
|
package/dist/styles/style.css.gz
CHANGED
|
Binary file
|