mxcad-app 1.0.68 → 1.0.70
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 +25 -25
- 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
|
@@ -2635,25 +2635,32 @@ declare module '@howdyjs/to-drag' {
|
|
|
2635
2635
|
|
|
2636
2636
|
declare module '@tiptap/core' {
|
|
2637
2637
|
interface Commands<ReturnType> {
|
|
2638
|
-
|
|
2638
|
+
Overline: {
|
|
2639
2639
|
/**
|
|
2640
2640
|
* Set the font size attribute
|
|
2641
2641
|
*/
|
|
2642
|
-
|
|
2642
|
+
setOverline: () => ReturnType;
|
|
2643
2643
|
/**
|
|
2644
2644
|
* Unset the font size attribute
|
|
2645
2645
|
*/
|
|
2646
|
-
|
|
2646
|
+
unsetOverline: () => ReturnType;
|
|
2647
|
+
toggleOverline: () => ReturnType;
|
|
2647
2648
|
};
|
|
2648
2649
|
}
|
|
2649
2650
|
}
|
|
2650
2651
|
|
|
2651
2652
|
|
|
2652
|
-
declare module
|
|
2653
|
+
declare module '@tiptap/core' {
|
|
2653
2654
|
interface Commands<ReturnType> {
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2655
|
+
fontSize: {
|
|
2656
|
+
/**
|
|
2657
|
+
* Set the font size attribute
|
|
2658
|
+
*/
|
|
2659
|
+
setFontSize: (size: string) => ReturnType;
|
|
2660
|
+
/**
|
|
2661
|
+
* Unset the font size attribute
|
|
2662
|
+
*/
|
|
2663
|
+
unsetFontSize: () => ReturnType;
|
|
2657
2664
|
};
|
|
2658
2665
|
}
|
|
2659
2666
|
}
|
|
@@ -2661,16 +2668,15 @@ declare module "@tiptap/core" {
|
|
|
2661
2668
|
|
|
2662
2669
|
declare module '@tiptap/core' {
|
|
2663
2670
|
interface Commands<ReturnType> {
|
|
2664
|
-
|
|
2671
|
+
TextDecoration: {
|
|
2665
2672
|
/**
|
|
2666
2673
|
* Set the font size attribute
|
|
2667
2674
|
*/
|
|
2668
|
-
|
|
2675
|
+
setTextDecoration: (textDecoration: string) => ReturnType;
|
|
2669
2676
|
/**
|
|
2670
2677
|
* Unset the font size attribute
|
|
2671
2678
|
*/
|
|
2672
|
-
|
|
2673
|
-
toggleStrike: () => ReturnType;
|
|
2679
|
+
unsetTextDecoration: () => ReturnType;
|
|
2674
2680
|
};
|
|
2675
2681
|
}
|
|
2676
2682
|
}
|
|
@@ -2689,32 +2695,26 @@ declare module '@tiptap/core' {
|
|
|
2689
2695
|
|
|
2690
2696
|
declare module '@tiptap/core' {
|
|
2691
2697
|
interface Commands<ReturnType> {
|
|
2692
|
-
|
|
2698
|
+
Strike: {
|
|
2693
2699
|
/**
|
|
2694
2700
|
* Set the font size attribute
|
|
2695
2701
|
*/
|
|
2696
|
-
|
|
2702
|
+
setStrike: () => ReturnType;
|
|
2697
2703
|
/**
|
|
2698
2704
|
* Unset the font size attribute
|
|
2699
2705
|
*/
|
|
2700
|
-
|
|
2701
|
-
|
|
2706
|
+
unsetStrike: () => ReturnType;
|
|
2707
|
+
toggleStrike: () => ReturnType;
|
|
2702
2708
|
};
|
|
2703
2709
|
}
|
|
2704
2710
|
}
|
|
2705
2711
|
|
|
2706
2712
|
|
|
2707
|
-
declare module
|
|
2713
|
+
declare module "@tiptap/core" {
|
|
2708
2714
|
interface Commands<ReturnType> {
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
*/
|
|
2713
|
-
setFontSize: (size: string) => ReturnType;
|
|
2714
|
-
/**
|
|
2715
|
-
* Unset the font size attribute
|
|
2716
|
-
*/
|
|
2717
|
-
unsetFontSize: () => ReturnType;
|
|
2715
|
+
selectedText: {
|
|
2716
|
+
setSelectedText: (from: number, to: number) => ReturnType;
|
|
2717
|
+
unsetSelectedText: (from: number, to: number) => 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
|