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.
- package/dist/chunks/hooks2.js.gz +0 -0
- package/dist/chunks/index44.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/mxcadAppAssets/wasm/2d/mxdrawassembly_min.wasm.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d-st/mxdrawassembly_minst.wasm.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d-x64/mxdrawassembly_min.wasm.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d-x64-st/mxdrawassembly_minst.wasm.gz +0 -0
- package/dist/styles/style.css.gz +0 -0
- package/package.json +1 -1
package/dist/chunks/hooks2.js.gz
CHANGED
|
Binary file
|
|
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
|
@@ -1178,7 +1178,7 @@ id: number;
|
|
|
1178
1178
|
value?: null | string | undefined;
|
|
1179
1179
|
};
|
|
1180
1180
|
lineWeight: McDb.LineWeight;
|
|
1181
|
-
} | number
|
|
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
|
|
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
|
|
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
|
|
2641
|
+
declare module "@tiptap/core" {
|
|
2642
2642
|
interface Commands<ReturnType> {
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
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
|
|
2651
|
+
declare module '@tiptap/core' {
|
|
2659
2652
|
interface Commands<ReturnType> {
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
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
|
-
|
|
2680
|
+
Strike: {
|
|
2687
2681
|
/**
|
|
2688
2682
|
* Set the font size attribute
|
|
2689
2683
|
*/
|
|
2690
|
-
|
|
2684
|
+
setStrike: () => ReturnType;
|
|
2691
2685
|
/**
|
|
2692
2686
|
* Unset the font size attribute
|
|
2693
2687
|
*/
|
|
2694
|
-
|
|
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
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
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
|
}
|
package/dist/index.umd.js.gz
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/styles/style.css.gz
CHANGED
|
Binary file
|