mxcad-app 1.0.30 → 1.0.31

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
@@ -222,26 +222,15 @@ declare module '@howdyjs/to-drag' {
222
222
 
223
223
  declare module '@tiptap/core' {
224
224
  interface Commands<ReturnType> {
225
- Overline: {
225
+ TextDecoration: {
226
226
  /**
227
227
  * Set the font size attribute
228
228
  */
229
- setOverline: () => ReturnType;
229
+ setTextDecoration: (textDecoration: string) => ReturnType;
230
230
  /**
231
231
  * Unset the font size attribute
232
232
  */
233
- unsetOverline: () => ReturnType;
234
- toggleOverline: () => ReturnType;
235
- };
236
- }
237
- }
238
-
239
-
240
- declare module "@tiptap/core" {
241
- interface Commands<ReturnType> {
242
- selectedText: {
243
- setSelectedText: (from: number, to: number) => ReturnType;
244
- unsetSelectedText: (from: number, to: number) => ReturnType;
233
+ unsetTextDecoration: () => ReturnType;
245
234
  };
246
235
  }
247
236
  }
@@ -275,17 +264,28 @@ declare module '@tiptap/core' {
275
264
  }
276
265
 
277
266
 
267
+ declare module "@tiptap/core" {
268
+ interface Commands<ReturnType> {
269
+ selectedText: {
270
+ setSelectedText: (from: number, to: number) => ReturnType;
271
+ unsetSelectedText: (from: number, to: number) => ReturnType;
272
+ };
273
+ }
274
+ }
275
+
276
+
278
277
  declare module '@tiptap/core' {
279
278
  interface Commands<ReturnType> {
280
- fontSize: {
279
+ Overline: {
281
280
  /**
282
281
  * Set the font size attribute
283
282
  */
284
- setFontSize: (size: string) => ReturnType;
283
+ setOverline: () => ReturnType;
285
284
  /**
286
285
  * Unset the font size attribute
287
286
  */
288
- unsetFontSize: () => ReturnType;
287
+ unsetOverline: () => ReturnType;
288
+ toggleOverline: () => ReturnType;
289
289
  };
290
290
  }
291
291
  }
@@ -293,15 +293,15 @@ declare module '@tiptap/core' {
293
293
 
294
294
  declare module '@tiptap/core' {
295
295
  interface Commands<ReturnType> {
296
- TextDecoration: {
296
+ fontSize: {
297
297
  /**
298
298
  * Set the font size attribute
299
299
  */
300
- setTextDecoration: (textDecoration: string) => ReturnType;
300
+ setFontSize: (size: string) => ReturnType;
301
301
  /**
302
302
  * Unset the font size attribute
303
303
  */
304
- unsetTextDecoration: () => ReturnType;
304
+ unsetFontSize: () => 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.30",
3
+ "version": "1.0.31",
4
4
  "main": "./dist/index.cjs",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",