@realsee/dnalogel 3.10.3 → 3.11.0
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/typing.d.ts +8 -0
- package/dist/AreaMakerPlugin/utils/Item.d.ts +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.js +7 -5
- package/dist/index.umd.js +3 -3
- package/libs/AreaMakerPlugin/typing.d.ts +8 -0
- package/libs/AreaMakerPlugin/utils/Item.d.ts +1 -1
- package/libs/AreaMakerPlugin/utils/Item.js +12 -10
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
|
@@ -80,6 +80,14 @@ export type AreaMakerItemEventMap = {
|
|
|
80
80
|
target: AreaMakerItem;
|
|
81
81
|
nativeEvent: MouseEvent;
|
|
82
82
|
}) => void;
|
|
83
|
+
/**
|
|
84
|
+
* @description: 标注标签没有被遮挡,自动展示
|
|
85
|
+
*/
|
|
86
|
+
tagShow: () => void;
|
|
87
|
+
/**
|
|
88
|
+
* @description: 标注标签被模型遮挡,自动隐藏
|
|
89
|
+
*/
|
|
90
|
+
tagHide: () => void;
|
|
83
91
|
};
|
|
84
92
|
/** 动画相关的配置 */
|
|
85
93
|
export interface AnimeOptions {
|