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.
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 +23 -23
  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
@@ -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
- Overline: {
2676
+ fontSize: {
2693
2677
  /**
2694
2678
  * Set the font size attribute
2695
2679
  */
2696
- setOverline: () => ReturnType;
2680
+ setFontSize: (size: string) => ReturnType;
2697
2681
  /**
2698
2682
  * Unset the font size attribute
2699
2683
  */
2700
- unsetOverline: () => ReturnType;
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
- fontSize: {
2692
+ TextDecoration: {
2710
2693
  /**
2711
2694
  * Set the font size attribute
2712
2695
  */
2713
- setFontSize: (size: string) => ReturnType;
2696
+ setTextDecoration: (textDecoration: string) => ReturnType;
2714
2697
  /**
2715
2698
  * Unset the font size attribute
2716
2699
  */
2717
- unsetFontSize: () => ReturnType;
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
  }
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.69",
4
4
  "main": "./dist/index.cjs",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",