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.
- package/dist/chunks/mxcad.js.gz +0 -0
- package/dist/chunks/mxdraw.js.gz +0 -0
- package/dist/index.cjs.gz +0 -0
- package/dist/index.d.ts +31 -31
- package/dist/index.umd.js.gz +0 -0
- package/dist/mxcadAppAssets/plugins/pluginIdentifyPattern/index.js +70 -70
- package/dist/mxcadAppAssets/wasm/2d/mxdrawassembly_min.js.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d/mxdrawassembly_min.wasm.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d-st/mxdrawassembly_min.js.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d-st/mxdrawassembly_minst.wasm.gz +0 -0
- package/package.json +1 -1
package/dist/chunks/mxcad.js.gz
CHANGED
|
Binary file
|
package/dist/chunks/mxdraw.js.gz
CHANGED
|
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
|
-
|
|
225
|
+
fontSize: {
|
|
226
226
|
/**
|
|
227
227
|
* Set the font size attribute
|
|
228
228
|
*/
|
|
229
|
-
|
|
229
|
+
setFontSize: (size: string) => ReturnType;
|
|
230
230
|
/**
|
|
231
231
|
* Unset the font size attribute
|
|
232
232
|
*/
|
|
233
|
-
|
|
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
|
-
|
|
241
|
+
TextDecoration: {
|
|
253
242
|
/**
|
|
254
243
|
* Set the font size attribute
|
|
255
244
|
*/
|
|
256
|
-
|
|
245
|
+
setTextDecoration: (textDecoration: string) => ReturnType;
|
|
257
246
|
/**
|
|
258
247
|
* Unset the font size attribute
|
|
259
248
|
*/
|
|
260
|
-
|
|
261
|
-
|
|
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
|
-
|
|
270
|
-
|
|
271
|
-
|
|
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
|
|
293
|
+
declare module '@tiptap/core' {
|
|
301
294
|
interface Commands<ReturnType> {
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
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
|
}
|
package/dist/index.umd.js.gz
CHANGED
|
Binary file
|