mxcad-app 1.0.20 → 1.0.21

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
package/dist/index.cjs.gz CHANGED
Binary file
package/dist/index.d.ts CHANGED
@@ -236,11 +236,17 @@ declare module '@tiptap/core' {
236
236
  }
237
237
 
238
238
 
239
- declare module "@tiptap/core" {
239
+ declare module '@tiptap/core' {
240
240
  interface Commands<ReturnType> {
241
- selectedText: {
242
- setSelectedText: (from: number, to: number) => ReturnType;
243
- unsetSelectedText: (from: number, to: number) => ReturnType;
241
+ TextDecoration: {
242
+ /**
243
+ * Set the font size attribute
244
+ */
245
+ setTextDecoration: (textDecoration: string) => ReturnType;
246
+ /**
247
+ * Unset the font size attribute
248
+ */
249
+ unsetTextDecoration: () => ReturnType;
244
250
  };
245
251
  }
246
252
  }
@@ -274,18 +280,11 @@ declare module '@tiptap/core' {
274
280
  }
275
281
 
276
282
 
277
- declare module '@tiptap/core' {
283
+ declare module "@tiptap/core" {
278
284
  interface Commands<ReturnType> {
279
- Strike: {
280
- /**
281
- * Set the font size attribute
282
- */
283
- setStrike: () => ReturnType;
284
- /**
285
- * Unset the font size attribute
286
- */
287
- unsetStrike: () => ReturnType;
288
- toggleStrike: () => 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mxcad-app",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "main": "./dist/index.cjs",
5
5
  "module": "./dist/index.js",
6
6
  "browser": "./dist/index.umd.js",