mxcad-app 1.0.50 → 1.0.52
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/en-US.js.gz +0 -0
- package/dist/chunks/index14.js.gz +0 -0
- package/dist/chunks/ko-KR.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/zh-TW.js.gz +0 -0
- package/dist/index.cjs.gz +0 -0
- package/dist/index.d.ts +24 -24
- package/dist/index.umd.js.gz +0 -0
- package/dist/mxcad.d.ts +1 -1
- package/dist/mxcadAppAssets/languages/mx-cad-app-vuetify3/messages/en-US.ts +2 -1
- package/dist/mxcadAppAssets/languages/mx-cad-app-vuetify3/messages/idMap.json.gz +0 -0
- package/dist/mxcadAppAssets/languages/mx-cad-app-vuetify3/messages/ko-KR.ts +2 -1
- package/dist/mxcadAppAssets/languages/mx-cad-app-vuetify3/messages/zh-CN.ts +2 -1
- package/dist/mxcadAppAssets/languages/mx-cad-app-vuetify3/messages/zh-TW.ts +2 -1
- package/dist/mxcadAppAssets/mxSketchesAndNotesUiConfig.json.gz +0 -0
- package/dist/mxcadAppAssets/mxUiConfig.json.gz +0 -0
- package/dist/mxcadAppAssets/mxcadUiConfig.json.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
package/dist/chunks/en-US.js.gz
CHANGED
|
Binary file
|
|
Binary file
|
package/dist/chunks/ko-KR.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
|
package/dist/chunks/zh-TW.js.gz
CHANGED
|
Binary file
|
package/dist/index.cjs.gz
CHANGED
|
Binary file
|
package/dist/index.d.ts
CHANGED
|
@@ -222,15 +222,16 @@ declare module '@howdyjs/to-drag' {
|
|
|
222
222
|
|
|
223
223
|
declare module '@tiptap/core' {
|
|
224
224
|
interface Commands<ReturnType> {
|
|
225
|
-
|
|
225
|
+
Overline: {
|
|
226
226
|
/**
|
|
227
227
|
* Set the font size attribute
|
|
228
228
|
*/
|
|
229
|
-
|
|
229
|
+
setOverline: () => ReturnType;
|
|
230
230
|
/**
|
|
231
231
|
* Unset the font size attribute
|
|
232
232
|
*/
|
|
233
|
-
|
|
233
|
+
unsetOverline: () => ReturnType;
|
|
234
|
+
toggleOverline: () => ReturnType;
|
|
234
235
|
};
|
|
235
236
|
}
|
|
236
237
|
}
|
|
@@ -238,15 +239,15 @@ declare module '@tiptap/core' {
|
|
|
238
239
|
|
|
239
240
|
declare module '@tiptap/core' {
|
|
240
241
|
interface Commands<ReturnType> {
|
|
241
|
-
|
|
242
|
+
TextDecoration: {
|
|
242
243
|
/**
|
|
243
244
|
* Set the font size attribute
|
|
244
245
|
*/
|
|
245
|
-
|
|
246
|
+
setTextDecoration: (textDecoration: string) => ReturnType;
|
|
246
247
|
/**
|
|
247
248
|
* Unset the font size attribute
|
|
248
249
|
*/
|
|
249
|
-
|
|
250
|
+
unsetTextDecoration: () => ReturnType;
|
|
250
251
|
};
|
|
251
252
|
}
|
|
252
253
|
}
|
|
@@ -254,16 +255,16 @@ declare module '@tiptap/core' {
|
|
|
254
255
|
|
|
255
256
|
declare module '@tiptap/core' {
|
|
256
257
|
interface Commands<ReturnType> {
|
|
257
|
-
|
|
258
|
+
Strike: {
|
|
258
259
|
/**
|
|
259
260
|
* Set the font size attribute
|
|
260
261
|
*/
|
|
261
|
-
|
|
262
|
+
setStrike: () => ReturnType;
|
|
262
263
|
/**
|
|
263
264
|
* Unset the font size attribute
|
|
264
265
|
*/
|
|
265
|
-
|
|
266
|
-
|
|
266
|
+
unsetStrike: () => ReturnType;
|
|
267
|
+
toggleStrike: () => ReturnType;
|
|
267
268
|
};
|
|
268
269
|
}
|
|
269
270
|
}
|
|
@@ -271,10 +272,15 @@ declare module '@tiptap/core' {
|
|
|
271
272
|
|
|
272
273
|
declare module '@tiptap/core' {
|
|
273
274
|
interface Commands<ReturnType> {
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
275
|
+
fontSize: {
|
|
276
|
+
/**
|
|
277
|
+
* Set the font size attribute
|
|
278
|
+
*/
|
|
279
|
+
setFontSize: (size: string) => ReturnType;
|
|
280
|
+
/**
|
|
281
|
+
* Unset the font size attribute
|
|
282
|
+
*/
|
|
283
|
+
unsetFontSize: () => ReturnType;
|
|
278
284
|
};
|
|
279
285
|
}
|
|
280
286
|
}
|
|
@@ -282,16 +288,10 @@ declare module '@tiptap/core' {
|
|
|
282
288
|
|
|
283
289
|
declare module '@tiptap/core' {
|
|
284
290
|
interface Commands<ReturnType> {
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
setStrike: () => ReturnType;
|
|
290
|
-
/**
|
|
291
|
-
* Unset the font size attribute
|
|
292
|
-
*/
|
|
293
|
-
unsetStrike: () => ReturnType;
|
|
294
|
-
toggleStrike: () => ReturnType;
|
|
291
|
+
Underline: {
|
|
292
|
+
setUnderline: () => ReturnType;
|
|
293
|
+
unsetUnderline: () => ReturnType;
|
|
294
|
+
toggleUnderline: () => ReturnType;
|
|
295
295
|
};
|
|
296
296
|
}
|
|
297
297
|
}
|
package/dist/index.umd.js.gz
CHANGED
|
Binary file
|
package/dist/mxcad.d.ts
CHANGED
|
@@ -2657,7 +2657,7 @@ declare module "mxcad" {
|
|
|
2657
2657
|
* @param dX - 坐标点的 X 坐标值
|
|
2658
2658
|
* @param dY - 坐标点的 Y 坐标值
|
|
2659
2659
|
* @param dZ - 坐标点的 Z 坐标值
|
|
2660
|
-
* @param dSearhRange -
|
|
2660
|
+
* @param dSearhRange - 设置选取范围,默认为 -1 表示自适应,或者输入对应的CAD坐标长度
|
|
2661
2661
|
* @param filter - 过滤器,用于过滤查找到的图形对象,默认为 null(表示不进行过滤)
|
|
2662
2662
|
* @returns 返回查找到的图形对象的 ID
|
|
2663
2663
|
* @example
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/styles/style.css.gz
CHANGED
|
Binary file
|