@realsee/dnalogel 3.10.0 → 3.10.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/Controller.d.ts +0 -2
- package/dist/AreaMakerPlugin/utils/Item.d.ts +1 -0
- package/dist/PanoTagPlugin/utils/index.d.ts +0 -1
- package/dist/index.cjs.js +35 -35
- package/dist/index.js +753 -752
- package/dist/index.umd.js +34 -34
- package/libs/AreaMakerPlugin/Controller.d.ts +0 -2
- package/libs/AreaMakerPlugin/Controller.js +58 -59
- package/libs/AreaMakerPlugin/index.js +3 -2
- package/libs/AreaMakerPlugin/utils/Item.d.ts +1 -0
- package/libs/AreaMakerPlugin/utils/Item.js +35 -32
- package/libs/CruisePlugin/Work.js +1 -1
- package/libs/CruisePlugin/index.js +1 -1
- package/libs/GuideLinePlugin/Controller.js +1 -1
- package/libs/GuideLinePlugin/GuideLineItem.js +1 -1
- package/libs/GuideLinePlugin/GuideLineModeItem.js +1 -1
- package/libs/GuideLinePlugin/index.js +1 -1
- package/libs/PanoTagPlugin/controller/TagComputer.js +9 -8
- package/libs/PanoTagPlugin/controller/index.js +1 -1
- package/libs/PanoTagPlugin/index.js +1 -1
- package/libs/PanoTagPlugin/utils/index.d.ts +0 -1
- package/libs/PanoTagPlugin/utils/index.js +4 -6
- package/libs/base/BasePlugin.js +1 -1
- package/libs/index.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +2 -2
- /package/dist/{PanoTagPlugin/utils → shared-utils/dom}/resizeObserver.d.ts +0 -0
- /package/libs/{PanoTagPlugin/utils → shared-utils/dom}/resizeObserver.d.ts +0 -0
- /package/libs/{PanoTagPlugin/utils → shared-utils/dom}/resizeObserver.js +0 -0
|
@@ -16,8 +16,6 @@ export declare class Controller extends BasePlugin.Controller<PluginType.State,
|
|
|
16
16
|
data?: PluginType.PluginData;
|
|
17
17
|
/** tag 容器 */
|
|
18
18
|
tagDomContainer: HTMLDivElement;
|
|
19
|
-
/** 用于监听容器尺寸变化的 iframe */
|
|
20
|
-
resizeIframe: HTMLIFrameElement;
|
|
21
19
|
/** 插件配置项 */
|
|
22
20
|
get config(): {
|
|
23
21
|
modelDepthTest: boolean;
|
|
@@ -70,6 +70,7 @@ export declare class AreaMakerItem {
|
|
|
70
70
|
private isInContainerResizeAnimation;
|
|
71
71
|
/** 监听容器 resize 的计时器 id,用于判断 resize 过程是否结束 */
|
|
72
72
|
private containerResizeTimeoutID;
|
|
73
|
+
private resizeObserver?;
|
|
73
74
|
constructor(plugin: Controller, data: PluginType.ServerAreaMakerItem);
|
|
74
75
|
/** 挂载标注 */
|
|
75
76
|
mount(): void;
|