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.
Files changed (34) hide show
  1. package/dist/chunks/identificationFrame.js.gz +0 -0
  2. package/dist/chunks/index10.js.gz +0 -0
  3. package/dist/chunks/index17.js.gz +0 -0
  4. package/dist/chunks/index20.js.gz +0 -0
  5. package/dist/chunks/index25.js.gz +0 -0
  6. package/dist/chunks/index28.js.gz +0 -0
  7. package/dist/chunks/index29.js.gz +0 -0
  8. package/dist/chunks/index34.js.gz +0 -0
  9. package/dist/chunks/index36.js.gz +0 -0
  10. package/dist/chunks/index37.js.gz +0 -0
  11. package/dist/chunks/index38.js.gz +0 -0
  12. package/dist/chunks/index4.js.gz +0 -0
  13. package/dist/chunks/index42.js +1 -1
  14. package/dist/chunks/index44.js.gz +0 -0
  15. package/dist/chunks/index45.js.gz +0 -0
  16. package/dist/chunks/index9.js.gz +0 -0
  17. package/dist/chunks/lib.js.gz +0 -0
  18. package/dist/chunks/mxcad.js.gz +0 -0
  19. package/dist/chunks/mxdraw.js.gz +0 -0
  20. package/dist/index.cjs.gz +0 -0
  21. package/dist/index.d.ts +25 -25
  22. package/dist/index.umd.js.gz +0 -0
  23. package/dist/mxcad.d.ts +6 -1
  24. package/dist/mxcadAppAssets/wasm/2d/mxdrawassembly_min.js.gz +0 -0
  25. package/dist/mxcadAppAssets/wasm/2d/mxdrawassembly_min.wasm.gz +0 -0
  26. package/dist/mxcadAppAssets/wasm/2d-st/mxdrawassembly_min.js.gz +0 -0
  27. package/dist/mxcadAppAssets/wasm/2d-st/mxdrawassembly_minst.wasm.gz +0 -0
  28. package/dist/mxcadAppAssets/wasm/2d-x64/mxdrawassembly_min.js.gz +0 -0
  29. package/dist/mxcadAppAssets/wasm/2d-x64/mxdrawassembly_min.wasm.gz +0 -0
  30. package/dist/mxcadAppAssets/wasm/2d-x64-st/mxdrawassembly_min.js.gz +0 -0
  31. package/dist/mxcadAppAssets/wasm/2d-x64-st/mxdrawassembly_minst.wasm.gz +0 -0
  32. package/dist/mxdraw.d.ts +5 -0
  33. package/dist/styles/style.css.gz +0 -0
  34. 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
@@ -1,4 +1,4 @@
1
- import { I as o } from "./mxcad.js";
1
+ import { H as o } from "./mxcad.js";
2
2
  import { T as r, h as s, s as b } from "./lib.js";
3
3
  export {
4
4
  o as McDbXlsxTable,
Binary file
Binary file
Binary file
Binary file
Binary file
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
- TextDecoration: {
2638
+ Overline: {
2639
2639
  /**
2640
2640
  * Set the font size attribute
2641
2641
  */
2642
- setTextDecoration: (textDecoration: string) => ReturnType;
2642
+ setOverline: () => ReturnType;
2643
2643
  /**
2644
2644
  * Unset the font size attribute
2645
2645
  */
2646
- unsetTextDecoration: () => ReturnType;
2646
+ unsetOverline: () => ReturnType;
2647
+ toggleOverline: () => ReturnType;
2647
2648
  };
2648
2649
  }
2649
2650
  }
2650
2651
 
2651
2652
 
2652
- declare module "@tiptap/core" {
2653
+ declare module '@tiptap/core' {
2653
2654
  interface Commands<ReturnType> {
2654
- selectedText: {
2655
- setSelectedText: (from: number, to: number) => ReturnType;
2656
- unsetSelectedText: (from: number, to: number) => ReturnType;
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
- Strike: {
2671
+ TextDecoration: {
2665
2672
  /**
2666
2673
  * Set the font size attribute
2667
2674
  */
2668
- setStrike: () => ReturnType;
2675
+ setTextDecoration: (textDecoration: string) => ReturnType;
2669
2676
  /**
2670
2677
  * Unset the font size attribute
2671
2678
  */
2672
- unsetStrike: () => ReturnType;
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
- Overline: {
2698
+ Strike: {
2693
2699
  /**
2694
2700
  * Set the font size attribute
2695
2701
  */
2696
- setOverline: () => ReturnType;
2702
+ setStrike: () => ReturnType;
2697
2703
  /**
2698
2704
  * Unset the font size attribute
2699
2705
  */
2700
- unsetOverline: () => ReturnType;
2701
- toggleOverline: () => ReturnType;
2706
+ unsetStrike: () => ReturnType;
2707
+ toggleStrike: () => ReturnType;
2702
2708
  };
2703
2709
  }
2704
2710
  }
2705
2711
 
2706
2712
 
2707
- declare module '@tiptap/core' {
2713
+ declare module "@tiptap/core" {
2708
2714
  interface Commands<ReturnType> {
2709
- fontSize: {
2710
- /**
2711
- * Set the font size attribute
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
  }
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 提示消息
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 选择的关键字
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mxcad-app",
3
- "version": "1.0.68",
3
+ "version": "1.0.70",
4
4
  "main": "./dist/index.cjs",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",