@manycore/custom-sdk 1.13.12-alpha.1 → 1.13.12
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/index.d.ts +15 -0
- package/index.js +10 -10
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -966,6 +966,16 @@ export declare class FittingDesignService extends BaseService {
|
|
|
966
966
|
* @param id 待删除标识信息的模型ID,默认清空所有
|
|
967
967
|
*/
|
|
968
968
|
clearFittingHint(id?: string | string[]): void;
|
|
969
|
+
/**
|
|
970
|
+
* 设置五金突出展示
|
|
971
|
+
*/
|
|
972
|
+
setFittingHardwareHint(conf: Record<string, IHintBase>): void;
|
|
973
|
+
/**
|
|
974
|
+
* 清空当前已经配置的标识信息
|
|
975
|
+
*
|
|
976
|
+
* @param id 待删除标识信息的模型ID,默认清空所有
|
|
977
|
+
*/
|
|
978
|
+
clearFittingHardwareHint(id?: string | string[]): void;
|
|
969
979
|
}
|
|
970
980
|
|
|
971
981
|
/**
|
|
@@ -3436,6 +3446,11 @@ export declare class FittingDesignService extends BaseService {
|
|
|
3436
3446
|
* @param flag
|
|
3437
3447
|
*/
|
|
3438
3448
|
toggleModelTransparent(flag: boolean): void;
|
|
3449
|
+
/**
|
|
3450
|
+
* 设置模型为全透明模式
|
|
3451
|
+
* @param flag
|
|
3452
|
+
*/
|
|
3453
|
+
toggleModelFullTransparent(flag: boolean): void;
|
|
3439
3454
|
/**
|
|
3440
3455
|
* 配置模型展示信息
|
|
3441
3456
|
* - 交界面、交接体颜色
|