mxcad-app 1.0.64 → 1.0.65

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