@realsee/dnalogel 2.28.1 → 2.28.2
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/AreaMakerPlugin/index.d.ts +1 -1
- package/dist/AreaMakerPlugin/utils/Item.d.ts +2 -0
- package/dist/index.cjs.js +3 -3
- package/dist/index.js +11 -7
- package/dist/index.umd.js +3 -3
- package/libs/AreaMakerPlugin/Controller.js +2 -2
- package/libs/AreaMakerPlugin/index.d.ts +1 -1
- package/libs/AreaMakerPlugin/index.js +3 -3
- package/libs/AreaMakerPlugin/utils/Item.d.ts +2 -0
- package/libs/AreaMakerPlugin/utils/Item.js +10 -6
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { Five } from '@realsee/five';
|
|
2
2
|
import type * as AreaMakerPluginType from './typing';
|
|
3
|
-
export declare const AreaMakerPlugin: (five: Five) => AreaMakerPluginType.AreaMakerController;
|
|
3
|
+
export declare const AreaMakerPlugin: (five: Five, params?: AreaMakerPluginType.Params) => AreaMakerPluginType.AreaMakerController;
|
|
4
4
|
export type { AreaMakerPluginType };
|
|
@@ -94,6 +94,8 @@ export declare class AreaMakerItem {
|
|
|
94
94
|
private doOpacityAnime;
|
|
95
95
|
/** 插件 Config 变化时更新自身 depthTest */
|
|
96
96
|
private onPluginConfigChange;
|
|
97
|
+
/** 插件整体可见性变化时,需要更新自身可见性 */
|
|
98
|
+
private onPluginStateChange;
|
|
97
99
|
/** 更新标注可见性 */
|
|
98
100
|
private updateVisible;
|
|
99
101
|
/** 检测标注是否可见 */
|