mxcad-app 1.0.35 → 1.0.36
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/index10.js.gz +0 -0
- package/dist/chunks/index11.js.gz +0 -0
- package/dist/chunks/index12.js.gz +0 -0
- package/dist/chunks/index16.js.gz +0 -0
- package/dist/chunks/index18.js.gz +0 -0
- package/dist/chunks/index2.js.gz +0 -0
- package/dist/chunks/index20.js.gz +0 -0
- package/dist/chunks/index21.js.gz +0 -0
- package/dist/chunks/index26.js.gz +0 -0
- package/dist/chunks/index28.js.gz +0 -0
- package/dist/chunks/index30.js.gz +0 -0
- package/dist/chunks/index32.js.gz +0 -0
- package/dist/chunks/index34.js.gz +0 -0
- package/dist/chunks/index35.js.gz +0 -0
- package/dist/chunks/index39.js.gz +0 -0
- package/dist/chunks/index4.js.gz +0 -0
- package/dist/chunks/index41.js.gz +0 -0
- package/dist/chunks/index6.js.gz +0 -0
- package/dist/chunks/index7.js.gz +0 -0
- package/dist/chunks/index9.js.gz +0 -0
- 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/chunks/sandbox.js.gz +0 -0
- package/dist/chunks/vuetify.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/mxcad.umd.js.gz +0 -0
- package/dist/mxcadAppAssets/mxdraw.umd.js.gz +0 -0
- 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/dist/styles/style.css.gz +0 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/chunks/index2.js.gz
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/chunks/index4.js.gz
CHANGED
|
Binary file
|
|
Binary file
|
package/dist/chunks/index6.js.gz
CHANGED
|
Binary file
|
package/dist/chunks/index7.js.gz
CHANGED
|
Binary file
|
package/dist/chunks/index9.js.gz
CHANGED
|
Binary file
|
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
|
|
Binary file
|
|
Binary file
|
package/dist/index.cjs.gz
CHANGED
|
Binary file
|
package/dist/index.d.ts
CHANGED
|
@@ -220,22 +220,17 @@ declare module '@howdyjs/to-drag' {
|
|
|
220
220
|
}
|
|
221
221
|
|
|
222
222
|
|
|
223
|
-
declare module "@tiptap/core" {
|
|
224
|
-
interface Commands<ReturnType> {
|
|
225
|
-
selectedText: {
|
|
226
|
-
setSelectedText: (from: number, to: number) => ReturnType;
|
|
227
|
-
unsetSelectedText: (from: number, to: number) => ReturnType;
|
|
228
|
-
};
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
|
|
233
223
|
declare module '@tiptap/core' {
|
|
234
224
|
interface Commands<ReturnType> {
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
225
|
+
fontSize: {
|
|
226
|
+
/**
|
|
227
|
+
* Set the font size attribute
|
|
228
|
+
*/
|
|
229
|
+
setFontSize: (size: string) => ReturnType;
|
|
230
|
+
/**
|
|
231
|
+
* Unset the font size attribute
|
|
232
|
+
*/
|
|
233
|
+
unsetFontSize: () => ReturnType;
|
|
239
234
|
};
|
|
240
235
|
}
|
|
241
236
|
}
|
|
@@ -243,16 +238,26 @@ declare module '@tiptap/core' {
|
|
|
243
238
|
|
|
244
239
|
declare module '@tiptap/core' {
|
|
245
240
|
interface Commands<ReturnType> {
|
|
246
|
-
|
|
241
|
+
TextDecoration: {
|
|
247
242
|
/**
|
|
248
243
|
* Set the font size attribute
|
|
249
244
|
*/
|
|
250
|
-
|
|
245
|
+
setTextDecoration: (textDecoration: string) => ReturnType;
|
|
251
246
|
/**
|
|
252
247
|
* Unset the font size attribute
|
|
253
248
|
*/
|
|
254
|
-
|
|
255
|
-
|
|
249
|
+
unsetTextDecoration: () => ReturnType;
|
|
250
|
+
};
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
declare module '@tiptap/core' {
|
|
256
|
+
interface Commands<ReturnType> {
|
|
257
|
+
Underline: {
|
|
258
|
+
setUnderline: () => ReturnType;
|
|
259
|
+
unsetUnderline: () => ReturnType;
|
|
260
|
+
toggleUnderline: () => ReturnType;
|
|
256
261
|
};
|
|
257
262
|
}
|
|
258
263
|
}
|
|
@@ -275,17 +280,11 @@ declare module '@tiptap/core' {
|
|
|
275
280
|
}
|
|
276
281
|
|
|
277
282
|
|
|
278
|
-
declare module
|
|
283
|
+
declare module "@tiptap/core" {
|
|
279
284
|
interface Commands<ReturnType> {
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
*/
|
|
284
|
-
setFontSize: (size: string) => ReturnType;
|
|
285
|
-
/**
|
|
286
|
-
* Unset the font size attribute
|
|
287
|
-
*/
|
|
288
|
-
unsetFontSize: () => ReturnType;
|
|
285
|
+
selectedText: {
|
|
286
|
+
setSelectedText: (from: number, to: number) => ReturnType;
|
|
287
|
+
unsetSelectedText: (from: number, to: number) => ReturnType;
|
|
289
288
|
};
|
|
290
289
|
}
|
|
291
290
|
}
|
|
@@ -293,15 +292,16 @@ declare module '@tiptap/core' {
|
|
|
293
292
|
|
|
294
293
|
declare module '@tiptap/core' {
|
|
295
294
|
interface Commands<ReturnType> {
|
|
296
|
-
|
|
295
|
+
Strike: {
|
|
297
296
|
/**
|
|
298
297
|
* Set the font size attribute
|
|
299
298
|
*/
|
|
300
|
-
|
|
299
|
+
setStrike: () => ReturnType;
|
|
301
300
|
/**
|
|
302
301
|
* Unset the font size attribute
|
|
303
302
|
*/
|
|
304
|
-
|
|
303
|
+
unsetStrike: () => ReturnType;
|
|
304
|
+
toggleStrike: () => ReturnType;
|
|
305
305
|
};
|
|
306
306
|
}
|
|
307
307
|
}
|
package/dist/index.umd.js.gz
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/styles/style.css.gz
CHANGED
|
Binary file
|