mxcad 1.0.258 → 1.0.260
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/mxcad.d.ts +8 -0
- package/dist/mxcad.es.js +362 -243
- package/dist/mxcad.umd.js +1 -1
- package/dist/wasm/2d/mxdrawassembly_min.js +1679 -1678
- package/dist/wasm/2d/mxdrawassembly_min.wasm +0 -0
- package/dist/wasm/2d-st/mxdrawassembly_min.js +1679 -1678
- package/dist/wasm/2d-st/mxdrawassembly_minst.wasm +0 -0
- package/dist/wasm/3d/mxdraw3d_min.js +1 -1
- package/dist/wasm/3d/mxdraw3d_min.wasm +0 -0
- package/package.json +2 -2
package/dist/mxcad.d.ts
CHANGED
|
@@ -10929,6 +10929,7 @@ export declare class McObject {
|
|
|
10929
10929
|
private currentFileName;
|
|
10930
10930
|
/** 是否是第一次打开文件 */
|
|
10931
10931
|
private firstTimeOpenFile;
|
|
10932
|
+
private authorized_service;
|
|
10932
10933
|
/**
|
|
10933
10934
|
* 构造函数
|
|
10934
10935
|
* @param imp 对象实现
|
|
@@ -12244,6 +12245,10 @@ export declare class McObject {
|
|
|
12244
12245
|
* @param sRegist 注册数据
|
|
12245
12246
|
*/
|
|
12246
12247
|
initRegist(sRegist: string): void;
|
|
12248
|
+
/**
|
|
12249
|
+
* 初始化用户授权服务url.
|
|
12250
|
+
*/
|
|
12251
|
+
iniAuthorizedService(sUrl: string): void;
|
|
12247
12252
|
/**
|
|
12248
12253
|
* 当前程序是否是试用版本.
|
|
12249
12254
|
*/
|
|
@@ -13451,6 +13456,7 @@ export declare function MxCheckTheBrowser(): {
|
|
|
13451
13456
|
error: string;
|
|
13452
13457
|
var: any;
|
|
13453
13458
|
};
|
|
13459
|
+
export declare function Mx_About(): void;
|
|
13454
13460
|
/**
|
|
13455
13461
|
* createMxCad 的参数配置
|
|
13456
13462
|
* @example
|
|
@@ -13527,6 +13533,8 @@ export interface MxCadConfig {
|
|
|
13527
13533
|
registdata?: string;
|
|
13528
13534
|
/**注册文件 */
|
|
13529
13535
|
registfile?: string;
|
|
13536
|
+
/**授权服务 */
|
|
13537
|
+
authorized_service?: string;
|
|
13530
13538
|
/**
|
|
13531
13539
|
* 视区背景颜色
|
|
13532
13540
|
*/
|