mxcad-app 1.0.35 → 1.0.36

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 (36) hide show
  1. package/dist/chunks/index10.js.gz +0 -0
  2. package/dist/chunks/index11.js.gz +0 -0
  3. package/dist/chunks/index12.js.gz +0 -0
  4. package/dist/chunks/index16.js.gz +0 -0
  5. package/dist/chunks/index18.js.gz +0 -0
  6. package/dist/chunks/index2.js.gz +0 -0
  7. package/dist/chunks/index20.js.gz +0 -0
  8. package/dist/chunks/index21.js.gz +0 -0
  9. package/dist/chunks/index26.js.gz +0 -0
  10. package/dist/chunks/index28.js.gz +0 -0
  11. package/dist/chunks/index30.js.gz +0 -0
  12. package/dist/chunks/index32.js.gz +0 -0
  13. package/dist/chunks/index34.js.gz +0 -0
  14. package/dist/chunks/index35.js.gz +0 -0
  15. package/dist/chunks/index39.js.gz +0 -0
  16. package/dist/chunks/index4.js.gz +0 -0
  17. package/dist/chunks/index41.js.gz +0 -0
  18. package/dist/chunks/index6.js.gz +0 -0
  19. package/dist/chunks/index7.js.gz +0 -0
  20. package/dist/chunks/index9.js.gz +0 -0
  21. package/dist/chunks/lib.js.gz +0 -0
  22. package/dist/chunks/mxcad.js.gz +0 -0
  23. package/dist/chunks/mxdraw.js.gz +0 -0
  24. package/dist/chunks/sandbox.js.gz +0 -0
  25. package/dist/chunks/vuetify.js.gz +0 -0
  26. package/dist/index.cjs.gz +0 -0
  27. package/dist/index.d.ts +31 -31
  28. package/dist/index.umd.js.gz +0 -0
  29. package/dist/mxcadAppAssets/mxcad.umd.js.gz +0 -0
  30. package/dist/mxcadAppAssets/mxdraw.umd.js.gz +0 -0
  31. package/dist/mxcadAppAssets/wasm/2d/mxdrawassembly_min.js.gz +0 -0
  32. package/dist/mxcadAppAssets/wasm/2d/mxdrawassembly_min.wasm.gz +0 -0
  33. package/dist/mxcadAppAssets/wasm/2d-st/mxdrawassembly_min.js.gz +0 -0
  34. package/dist/mxcadAppAssets/wasm/2d-st/mxdrawassembly_minst.wasm.gz +0 -0
  35. package/dist/styles/style.css.gz +0 -0
  36. 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
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
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
@@ -220,22 +220,17 @@ declare module '@howdyjs/to-drag' {
220
220
  }
221
221
 
222
222
 
223
- declare module "@tiptap/core" {
224
- interface Commands<ReturnType> {
225
- selectedText: {
226
- setSelectedText: (from: number, to: number) => ReturnType;
227
- unsetSelectedText: (from: number, to: number) => ReturnType;
228
- };
229
- }
230
- }
231
-
232
-
233
223
  declare module '@tiptap/core' {
234
224
  interface Commands<ReturnType> {
235
- Underline: {
236
- setUnderline: () => ReturnType;
237
- unsetUnderline: () => ReturnType;
238
- toggleUnderline: () => ReturnType;
225
+ fontSize: {
226
+ /**
227
+ * Set the font size attribute
228
+ */
229
+ setFontSize: (size: string) => ReturnType;
230
+ /**
231
+ * Unset the font size attribute
232
+ */
233
+ unsetFontSize: () => ReturnType;
239
234
  };
240
235
  }
241
236
  }
@@ -243,16 +238,26 @@ declare module '@tiptap/core' {
243
238
 
244
239
  declare module '@tiptap/core' {
245
240
  interface Commands<ReturnType> {
246
- Strike: {
241
+ TextDecoration: {
247
242
  /**
248
243
  * Set the font size attribute
249
244
  */
250
- setStrike: () => ReturnType;
245
+ setTextDecoration: (textDecoration: string) => ReturnType;
251
246
  /**
252
247
  * Unset the font size attribute
253
248
  */
254
- unsetStrike: () => ReturnType;
255
- toggleStrike: () => ReturnType;
249
+ unsetTextDecoration: () => ReturnType;
250
+ };
251
+ }
252
+ }
253
+
254
+
255
+ declare module '@tiptap/core' {
256
+ interface Commands<ReturnType> {
257
+ Underline: {
258
+ setUnderline: () => ReturnType;
259
+ unsetUnderline: () => ReturnType;
260
+ toggleUnderline: () => ReturnType;
256
261
  };
257
262
  }
258
263
  }
@@ -275,17 +280,11 @@ declare module '@tiptap/core' {
275
280
  }
276
281
 
277
282
 
278
- declare module '@tiptap/core' {
283
+ declare module "@tiptap/core" {
279
284
  interface Commands<ReturnType> {
280
- fontSize: {
281
- /**
282
- * Set the font size attribute
283
- */
284
- setFontSize: (size: string) => ReturnType;
285
- /**
286
- * Unset the font size attribute
287
- */
288
- unsetFontSize: () => ReturnType;
285
+ selectedText: {
286
+ setSelectedText: (from: number, to: number) => ReturnType;
287
+ unsetSelectedText: (from: number, to: number) => ReturnType;
289
288
  };
290
289
  }
291
290
  }
@@ -293,15 +292,16 @@ declare module '@tiptap/core' {
293
292
 
294
293
  declare module '@tiptap/core' {
295
294
  interface Commands<ReturnType> {
296
- TextDecoration: {
295
+ Strike: {
297
296
  /**
298
297
  * Set the font size attribute
299
298
  */
300
- setTextDecoration: (textDecoration: string) => ReturnType;
299
+ setStrike: () => ReturnType;
301
300
  /**
302
301
  * Unset the font size attribute
303
302
  */
304
- unsetTextDecoration: () => ReturnType;
303
+ unsetStrike: () => ReturnType;
304
+ toggleStrike: () => ReturnType;
305
305
  };
306
306
  }
307
307
  }
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mxcad-app",
3
- "version": "1.0.35",
3
+ "version": "1.0.36",
4
4
  "main": "./dist/index.cjs",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",