mxcad-app 1.0.23 → 1.0.24

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
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
- TextDecoration: {
225
+ fontSize: {
226
226
  /**
227
227
  * Set the font size attribute
228
228
  */
229
- setTextDecoration: (textDecoration: string) => ReturnType;
229
+ setFontSize: (size: string) => ReturnType;
230
230
  /**
231
231
  * Unset the font size attribute
232
232
  */
233
- unsetTextDecoration: () => ReturnType;
234
- };
235
- }
236
- }
237
-
238
-
239
- declare module '@tiptap/core' {
240
- interface Commands<ReturnType> {
241
- Underline: {
242
- setUnderline: () => ReturnType;
243
- unsetUnderline: () => ReturnType;
244
- toggleUnderline: () => ReturnType;
233
+ unsetFontSize: () => ReturnType;
245
234
  };
246
235
  }
247
236
  }
@@ -249,16 +238,25 @@ declare module '@tiptap/core' {
249
238
 
250
239
  declare module '@tiptap/core' {
251
240
  interface Commands<ReturnType> {
252
- Overline: {
241
+ TextDecoration: {
253
242
  /**
254
243
  * Set the font size attribute
255
244
  */
256
- setOverline: () => ReturnType;
245
+ setTextDecoration: (textDecoration: string) => ReturnType;
257
246
  /**
258
247
  * Unset the font size attribute
259
248
  */
260
- unsetOverline: () => ReturnType;
261
- toggleOverline: () => ReturnType;
249
+ unsetTextDecoration: () => ReturnType;
250
+ };
251
+ }
252
+ }
253
+
254
+
255
+ declare module "@tiptap/core" {
256
+ interface Commands<ReturnType> {
257
+ selectedText: {
258
+ setSelectedText: (from: number, to: number) => ReturnType;
259
+ unsetSelectedText: (from: number, to: number) => ReturnType;
262
260
  };
263
261
  }
264
262
  }
@@ -266,15 +264,10 @@ declare module '@tiptap/core' {
266
264
 
267
265
  declare module '@tiptap/core' {
268
266
  interface Commands<ReturnType> {
269
- fontSize: {
270
- /**
271
- * Set the font size attribute
272
- */
273
- setFontSize: (size: string) => ReturnType;
274
- /**
275
- * Unset the font size attribute
276
- */
277
- unsetFontSize: () => ReturnType;
267
+ Underline: {
268
+ setUnderline: () => ReturnType;
269
+ unsetUnderline: () => ReturnType;
270
+ toggleUnderline: () => ReturnType;
278
271
  };
279
272
  }
280
273
  }
@@ -297,11 +290,18 @@ declare module '@tiptap/core' {
297
290
  }
298
291
 
299
292
 
300
- declare module "@tiptap/core" {
293
+ declare module '@tiptap/core' {
301
294
  interface Commands<ReturnType> {
302
- selectedText: {
303
- setSelectedText: (from: number, to: number) => ReturnType;
304
- unsetSelectedText: (from: number, to: number) => ReturnType;
295
+ Overline: {
296
+ /**
297
+ * Set the font size attribute
298
+ */
299
+ setOverline: () => ReturnType;
300
+ /**
301
+ * Unset the font size attribute
302
+ */
303
+ unsetOverline: () => ReturnType;
304
+ toggleOverline: () => ReturnType;
305
305
  };
306
306
  }
307
307
  }
Binary file