mxcad-app 1.0.42 → 1.0.43

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,25 +222,27 @@ declare module '@howdyjs/to-drag' {
222
222
 
223
223
  declare module '@tiptap/core' {
224
224
  interface Commands<ReturnType> {
225
- fontSize: {
225
+ Strike: {
226
226
  /**
227
227
  * Set the font size attribute
228
228
  */
229
- setFontSize: (size: string) => ReturnType;
229
+ setStrike: () => ReturnType;
230
230
  /**
231
231
  * Unset the font size attribute
232
232
  */
233
- unsetFontSize: () => ReturnType;
233
+ unsetStrike: () => ReturnType;
234
+ toggleStrike: () => ReturnType;
234
235
  };
235
236
  }
236
237
  }
237
238
 
238
239
 
239
- declare module "@tiptap/core" {
240
+ declare module '@tiptap/core' {
240
241
  interface Commands<ReturnType> {
241
- selectedText: {
242
- setSelectedText: (from: number, to: number) => ReturnType;
243
- unsetSelectedText: (from: number, to: number) => ReturnType;
242
+ Underline: {
243
+ setUnderline: () => ReturnType;
244
+ unsetUnderline: () => ReturnType;
245
+ toggleUnderline: () => ReturnType;
244
246
  };
245
247
  }
246
248
  }
@@ -248,16 +250,15 @@ declare module "@tiptap/core" {
248
250
 
249
251
  declare module '@tiptap/core' {
250
252
  interface Commands<ReturnType> {
251
- Overline: {
253
+ fontSize: {
252
254
  /**
253
255
  * Set the font size attribute
254
256
  */
255
- setOverline: () => ReturnType;
257
+ setFontSize: (size: string) => ReturnType;
256
258
  /**
257
259
  * Unset the font size attribute
258
260
  */
259
- unsetOverline: () => ReturnType;
260
- toggleOverline: () => ReturnType;
261
+ unsetFontSize: () => ReturnType;
261
262
  };
262
263
  }
263
264
  }
@@ -265,32 +266,26 @@ declare module '@tiptap/core' {
265
266
 
266
267
  declare module '@tiptap/core' {
267
268
  interface Commands<ReturnType> {
268
- TextDecoration: {
269
+ Overline: {
269
270
  /**
270
271
  * Set the font size attribute
271
272
  */
272
- setTextDecoration: (textDecoration: string) => ReturnType;
273
+ setOverline: () => ReturnType;
273
274
  /**
274
275
  * Unset the font size attribute
275
276
  */
276
- unsetTextDecoration: () => ReturnType;
277
+ unsetOverline: () => ReturnType;
278
+ toggleOverline: () => ReturnType;
277
279
  };
278
280
  }
279
281
  }
280
282
 
281
283
 
282
- declare module '@tiptap/core' {
284
+ declare module "@tiptap/core" {
283
285
  interface Commands<ReturnType> {
284
- Strike: {
285
- /**
286
- * Set the font size attribute
287
- */
288
- setStrike: () => ReturnType;
289
- /**
290
- * Unset the font size attribute
291
- */
292
- unsetStrike: () => ReturnType;
293
- toggleStrike: () => ReturnType;
286
+ selectedText: {
287
+ setSelectedText: (from: number, to: number) => ReturnType;
288
+ unsetSelectedText: (from: number, to: number) => ReturnType;
294
289
  };
295
290
  }
296
291
  }
@@ -298,10 +293,15 @@ declare module '@tiptap/core' {
298
293
 
299
294
  declare module '@tiptap/core' {
300
295
  interface Commands<ReturnType> {
301
- Underline: {
302
- setUnderline: () => ReturnType;
303
- unsetUnderline: () => ReturnType;
304
- toggleUnderline: () => 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mxcad-app",
3
- "version": "1.0.42",
3
+ "version": "1.0.43",
4
4
  "main": "./dist/index.cjs",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",