mxcad-app 1.0.59 → 1.0.61
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/lib.js.gz +0 -0
- 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 +30 -28
- package/dist/index.umd.js.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d/mxdrawassembly_min.wasm.gz +0 -0
- package/dist/mxcadAppAssets/wasm/2d-st/mxdrawassembly_minst.wasm.gz +0 -0
- package/package.json +1 -1
package/dist/chunks/lib.js.gz
CHANGED
|
Binary file
|
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
|
@@ -201,6 +201,8 @@ declare interface MxCADViewConfig {
|
|
|
201
201
|
rootContainer?: string | HTMLElement;
|
|
202
202
|
openFile?: string;
|
|
203
203
|
map?: boolean;
|
|
204
|
+
requestHeaders?: any;
|
|
205
|
+
fetchAttributes?: number;
|
|
204
206
|
}
|
|
205
207
|
|
|
206
208
|
export { }
|
|
@@ -222,16 +224,15 @@ declare module '@howdyjs/to-drag' {
|
|
|
222
224
|
|
|
223
225
|
declare module '@tiptap/core' {
|
|
224
226
|
interface Commands<ReturnType> {
|
|
225
|
-
|
|
227
|
+
fontSize: {
|
|
226
228
|
/**
|
|
227
229
|
* Set the font size attribute
|
|
228
230
|
*/
|
|
229
|
-
|
|
231
|
+
setFontSize: (size: string) => ReturnType;
|
|
230
232
|
/**
|
|
231
233
|
* Unset the font size attribute
|
|
232
234
|
*/
|
|
233
|
-
|
|
234
|
-
toggleStrike: () => ReturnType;
|
|
235
|
+
unsetFontSize: () => ReturnType;
|
|
235
236
|
};
|
|
236
237
|
}
|
|
237
238
|
}
|
|
@@ -256,15 +257,37 @@ declare module '@tiptap/core' {
|
|
|
256
257
|
|
|
257
258
|
declare module '@tiptap/core' {
|
|
258
259
|
interface Commands<ReturnType> {
|
|
259
|
-
|
|
260
|
+
Underline: {
|
|
261
|
+
setUnderline: () => ReturnType;
|
|
262
|
+
unsetUnderline: () => ReturnType;
|
|
263
|
+
toggleUnderline: () => ReturnType;
|
|
264
|
+
};
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
declare module "@tiptap/core" {
|
|
270
|
+
interface Commands<ReturnType> {
|
|
271
|
+
selectedText: {
|
|
272
|
+
setSelectedText: (from: number, to: number) => ReturnType;
|
|
273
|
+
unsetSelectedText: (from: number, to: number) => ReturnType;
|
|
274
|
+
};
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
declare module '@tiptap/core' {
|
|
280
|
+
interface Commands<ReturnType> {
|
|
281
|
+
Strike: {
|
|
260
282
|
/**
|
|
261
283
|
* Set the font size attribute
|
|
262
284
|
*/
|
|
263
|
-
|
|
285
|
+
setStrike: () => ReturnType;
|
|
264
286
|
/**
|
|
265
287
|
* Unset the font size attribute
|
|
266
288
|
*/
|
|
267
|
-
|
|
289
|
+
unsetStrike: () => ReturnType;
|
|
290
|
+
toggleStrike: () => ReturnType;
|
|
268
291
|
};
|
|
269
292
|
}
|
|
270
293
|
}
|
|
@@ -284,24 +307,3 @@ declare module '@tiptap/core' {
|
|
|
284
307
|
};
|
|
285
308
|
}
|
|
286
309
|
}
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
declare module "@tiptap/core" {
|
|
290
|
-
interface Commands<ReturnType> {
|
|
291
|
-
selectedText: {
|
|
292
|
-
setSelectedText: (from: number, to: number) => ReturnType;
|
|
293
|
-
unsetSelectedText: (from: number, to: number) => ReturnType;
|
|
294
|
-
};
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
declare module '@tiptap/core' {
|
|
300
|
-
interface Commands<ReturnType> {
|
|
301
|
-
Underline: {
|
|
302
|
-
setUnderline: () => ReturnType;
|
|
303
|
-
unsetUnderline: () => ReturnType;
|
|
304
|
-
toggleUnderline: () => ReturnType;
|
|
305
|
-
};
|
|
306
|
-
}
|
|
307
|
-
}
|
package/dist/index.umd.js.gz
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|