mxcad-app 1.0.74 → 1.0.75

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.
Binary file
Binary file
Binary file
Binary file
Binary file
package/dist/index.cjs.gz CHANGED
Binary file
package/dist/index.d.ts CHANGED
@@ -1178,7 +1178,7 @@ id: number;
1178
1178
  value?: null | string | undefined;
1179
1179
  };
1180
1180
  lineWeight: McDb.LineWeight;
1181
- } | number, isSave?: boolean) => void;
1181
+ } | number) => void;
1182
1182
  parseJSON: (jsonText?: string) => void;
1183
1183
  stringifyJSON: () => string;
1184
1184
  initLayerList: () => void;
@@ -1846,7 +1846,7 @@ id: number;
1846
1846
  value?: null | string | undefined;
1847
1847
  };
1848
1848
  lineWeight: McDb.LineWeight;
1849
- } | number, isSave?: boolean) => void;
1849
+ } | number) => void;
1850
1850
  parseJSON: (jsonText?: string) => void;
1851
1851
  stringifyJSON: () => string;
1852
1852
  initLayerList: () => void;
@@ -2514,7 +2514,7 @@ id: number;
2514
2514
  value?: null | string | undefined;
2515
2515
  };
2516
2516
  lineWeight: McDb.LineWeight;
2517
- } | number, isSave?: boolean) => void;
2517
+ } | number) => void;
2518
2518
  parseJSON: (jsonText?: string) => void;
2519
2519
  stringifyJSON: () => string;
2520
2520
  initLayerList: () => void;
@@ -2638,28 +2638,22 @@ declare module '@howdyjs/to-drag' {
2638
2638
  }
2639
2639
 
2640
2640
 
2641
- declare module '@tiptap/core' {
2641
+ declare module "@tiptap/core" {
2642
2642
  interface Commands<ReturnType> {
2643
- Strike: {
2644
- /**
2645
- * Set the font size attribute
2646
- */
2647
- setStrike: () => ReturnType;
2648
- /**
2649
- * Unset the font size attribute
2650
- */
2651
- unsetStrike: () => ReturnType;
2652
- toggleStrike: () => ReturnType;
2643
+ selectedText: {
2644
+ setSelectedText: (from: number, to: number) => ReturnType;
2645
+ unsetSelectedText: (from: number, to: number) => ReturnType;
2653
2646
  };
2654
2647
  }
2655
2648
  }
2656
2649
 
2657
2650
 
2658
- declare module "@tiptap/core" {
2651
+ declare module '@tiptap/core' {
2659
2652
  interface Commands<ReturnType> {
2660
- selectedText: {
2661
- setSelectedText: (from: number, to: number) => ReturnType;
2662
- unsetSelectedText: (from: number, to: number) => ReturnType;
2653
+ Underline: {
2654
+ setUnderline: () => ReturnType;
2655
+ unsetUnderline: () => ReturnType;
2656
+ toggleUnderline: () => ReturnType;
2663
2657
  };
2664
2658
  }
2665
2659
  }
@@ -2683,15 +2677,16 @@ declare module '@tiptap/core' {
2683
2677
 
2684
2678
  declare module '@tiptap/core' {
2685
2679
  interface Commands<ReturnType> {
2686
- TextDecoration: {
2680
+ Strike: {
2687
2681
  /**
2688
2682
  * Set the font size attribute
2689
2683
  */
2690
- setTextDecoration: (textDecoration: string) => ReturnType;
2684
+ setStrike: () => ReturnType;
2691
2685
  /**
2692
2686
  * Unset the font size attribute
2693
2687
  */
2694
- unsetTextDecoration: () => ReturnType;
2688
+ unsetStrike: () => ReturnType;
2689
+ toggleStrike: () => ReturnType;
2695
2690
  };
2696
2691
  }
2697
2692
  }
@@ -2699,10 +2694,15 @@ declare module '@tiptap/core' {
2699
2694
 
2700
2695
  declare module '@tiptap/core' {
2701
2696
  interface Commands<ReturnType> {
2702
- Underline: {
2703
- setUnderline: () => ReturnType;
2704
- unsetUnderline: () => ReturnType;
2705
- toggleUnderline: () => ReturnType;
2697
+ TextDecoration: {
2698
+ /**
2699
+ * Set the font size attribute
2700
+ */
2701
+ setTextDecoration: (textDecoration: string) => ReturnType;
2702
+ /**
2703
+ * Unset the font size attribute
2704
+ */
2705
+ unsetTextDecoration: () => ReturnType;
2706
2706
  };
2707
2707
  }
2708
2708
  }
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mxcad-app",
3
- "version": "1.0.74",
3
+ "version": "1.0.75",
4
4
  "main": "./dist/index.cjs",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",