mxcad-app 1.0.45 → 1.0.46

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
Binary file
Binary file
package/dist/index.cjs.gz CHANGED
Binary file
package/dist/index.d.ts CHANGED
@@ -220,18 +220,11 @@ declare module '@howdyjs/to-drag' {
220
220
  }
221
221
 
222
222
 
223
- declare module '@tiptap/core' {
223
+ declare module "@tiptap/core" {
224
224
  interface Commands<ReturnType> {
225
- Overline: {
226
- /**
227
- * Set the font size attribute
228
- */
229
- setOverline: () => ReturnType;
230
- /**
231
- * Unset the font size attribute
232
- */
233
- unsetOverline: () => ReturnType;
234
- toggleOverline: () => ReturnType;
225
+ selectedText: {
226
+ setSelectedText: (from: number, to: number) => ReturnType;
227
+ unsetSelectedText: (from: number, to: number) => ReturnType;
235
228
  };
236
229
  }
237
230
  }
@@ -239,15 +232,16 @@ declare module '@tiptap/core' {
239
232
 
240
233
  declare module '@tiptap/core' {
241
234
  interface Commands<ReturnType> {
242
- fontSize: {
235
+ Overline: {
243
236
  /**
244
237
  * Set the font size attribute
245
238
  */
246
- setFontSize: (size: string) => ReturnType;
239
+ setOverline: () => ReturnType;
247
240
  /**
248
241
  * Unset the font size attribute
249
242
  */
250
- unsetFontSize: () => ReturnType;
243
+ unsetOverline: () => ReturnType;
244
+ toggleOverline: () => ReturnType;
251
245
  };
252
246
  }
253
247
  }
@@ -272,15 +266,15 @@ declare module '@tiptap/core' {
272
266
 
273
267
  declare module '@tiptap/core' {
274
268
  interface Commands<ReturnType> {
275
- TextDecoration: {
269
+ fontSize: {
276
270
  /**
277
271
  * Set the font size attribute
278
272
  */
279
- setTextDecoration: (textDecoration: string) => ReturnType;
273
+ setFontSize: (size: string) => ReturnType;
280
274
  /**
281
275
  * Unset the font size attribute
282
276
  */
283
- unsetTextDecoration: () => ReturnType;
277
+ unsetFontSize: () => ReturnType;
284
278
  };
285
279
  }
286
280
  }
@@ -297,11 +291,17 @@ declare module '@tiptap/core' {
297
291
  }
298
292
 
299
293
 
300
- declare module "@tiptap/core" {
294
+ declare module '@tiptap/core' {
301
295
  interface Commands<ReturnType> {
302
- selectedText: {
303
- setSelectedText: (from: number, to: number) => ReturnType;
304
- unsetSelectedText: (from: number, to: number) => ReturnType;
296
+ TextDecoration: {
297
+ /**
298
+ * Set the font size attribute
299
+ */
300
+ setTextDecoration: (textDecoration: string) => ReturnType;
301
+ /**
302
+ * Unset the font size attribute
303
+ */
304
+ unsetTextDecoration: () => ReturnType;
305
305
  };
306
306
  }
307
307
  }
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mxcad-app",
3
- "version": "1.0.45",
3
+ "version": "1.0.46",
4
4
  "main": "./dist/index.cjs",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",