mxcad-app 1.0.64 → 1.0.65
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/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 +30 -30
- 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_min.js.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d-st/mxdrawassembly_minst.wasm.gz +0 -0
- package/package.json +1 -1
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
|
@@ -224,15 +224,16 @@ declare module '@howdyjs/to-drag' {
|
|
|
224
224
|
|
|
225
225
|
declare module '@tiptap/core' {
|
|
226
226
|
interface Commands<ReturnType> {
|
|
227
|
-
|
|
227
|
+
Strike: {
|
|
228
228
|
/**
|
|
229
229
|
* Set the font size attribute
|
|
230
230
|
*/
|
|
231
|
-
|
|
231
|
+
setStrike: () => ReturnType;
|
|
232
232
|
/**
|
|
233
233
|
* Unset the font size attribute
|
|
234
234
|
*/
|
|
235
|
-
|
|
235
|
+
unsetStrike: () => ReturnType;
|
|
236
|
+
toggleStrike: () => ReturnType;
|
|
236
237
|
};
|
|
237
238
|
}
|
|
238
239
|
}
|
|
@@ -240,20 +241,15 @@ declare module '@tiptap/core' {
|
|
|
240
241
|
|
|
241
242
|
declare module '@tiptap/core' {
|
|
242
243
|
interface Commands<ReturnType> {
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
declare module "@tiptap/core" {
|
|
253
|
-
interface Commands<ReturnType> {
|
|
254
|
-
selectedText: {
|
|
255
|
-
setSelectedText: (from: number, to: number) => ReturnType;
|
|
256
|
-
unsetSelectedText: (from: number, to: number) => ReturnType;
|
|
244
|
+
fontSize: {
|
|
245
|
+
/**
|
|
246
|
+
* Set the font size attribute
|
|
247
|
+
*/
|
|
248
|
+
setFontSize: (size: string) => ReturnType;
|
|
249
|
+
/**
|
|
250
|
+
* Unset the font size attribute
|
|
251
|
+
*/
|
|
252
|
+
unsetFontSize: () => ReturnType;
|
|
257
253
|
};
|
|
258
254
|
}
|
|
259
255
|
}
|
|
@@ -261,16 +257,25 @@ declare module "@tiptap/core" {
|
|
|
261
257
|
|
|
262
258
|
declare module '@tiptap/core' {
|
|
263
259
|
interface Commands<ReturnType> {
|
|
264
|
-
|
|
260
|
+
TextDecoration: {
|
|
265
261
|
/**
|
|
266
262
|
* Set the font size attribute
|
|
267
263
|
*/
|
|
268
|
-
|
|
264
|
+
setTextDecoration: (textDecoration: string) => ReturnType;
|
|
269
265
|
/**
|
|
270
266
|
* Unset the font size attribute
|
|
271
267
|
*/
|
|
272
|
-
|
|
273
|
-
|
|
268
|
+
unsetTextDecoration: () => ReturnType;
|
|
269
|
+
};
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
declare module "@tiptap/core" {
|
|
275
|
+
interface Commands<ReturnType> {
|
|
276
|
+
selectedText: {
|
|
277
|
+
setSelectedText: (from: number, to: number) => ReturnType;
|
|
278
|
+
unsetSelectedText: (from: number, to: number) => ReturnType;
|
|
274
279
|
};
|
|
275
280
|
}
|
|
276
281
|
}
|
|
@@ -278,15 +283,10 @@ declare module '@tiptap/core' {
|
|
|
278
283
|
|
|
279
284
|
declare module '@tiptap/core' {
|
|
280
285
|
interface Commands<ReturnType> {
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
setFontSize: (size: string) => ReturnType;
|
|
286
|
-
/**
|
|
287
|
-
* Unset the font size attribute
|
|
288
|
-
*/
|
|
289
|
-
unsetFontSize: () => ReturnType;
|
|
286
|
+
Underline: {
|
|
287
|
+
setUnderline: () => ReturnType;
|
|
288
|
+
unsetUnderline: () => ReturnType;
|
|
289
|
+
toggleUnderline: () => ReturnType;
|
|
290
290
|
};
|
|
291
291
|
}
|
|
292
292
|
}
|
package/dist/index.umd.js.gz
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|