@realsee/dnalogel 3.33.1-dev.1 → 3.34.0-dev.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/CHANGELOG.md +2 -0
- package/dist/PanoTagPlugin/controller/TagUtil.d.ts +6 -0
- package/dist/PanoTagPlugin/controller/index.d.ts +1 -2
- package/dist/index.cjs.js +7 -7
- package/dist/index.js +38 -25
- package/dist/index.umd.js +7 -7
- package/libs/CSS3DRenderPlugin/Controller.js +10 -10
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRender.js +14 -17
- package/libs/CSS3DRenderPlugin/utils/three/CSS3DRenderer.js +1 -1
- package/libs/GuideLinePlugin/GuideLineModeItem/index.js +5 -5
- package/libs/PanoTagPlugin/Components/TagContainer.js +114 -99
- package/libs/PanoTagPlugin/controller/TagRender.js +8 -7
- package/libs/PanoTagPlugin/controller/TagUtil.d.ts +6 -0
- package/libs/PanoTagPlugin/controller/TagUtil.js +2 -0
- package/libs/PanoTagPlugin/controller/index.d.ts +1 -2
- package/libs/PanoTagPlugin/controller/index.js +0 -2
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,12 @@ export declare abstract class TagUtil extends TagCache {
|
|
|
16
16
|
workUtil: WorkUtil;
|
|
17
17
|
set workCode(workCode: string);
|
|
18
18
|
get workCode(): string;
|
|
19
|
+
/** 插件参数 */
|
|
20
|
+
protected params: {
|
|
21
|
+
config: Pick<Tags, 'contentTypeConfig' | 'globalConfig'>;
|
|
22
|
+
debug: boolean;
|
|
23
|
+
containerZIndex?: number;
|
|
24
|
+
};
|
|
19
25
|
protected mediaStore: MediaStore;
|
|
20
26
|
/** css3DRenderPlugin */
|
|
21
27
|
protected get css3DRenderPlugin(): import("../../CSS3DRenderPlugin/Controller").default;
|
|
@@ -12,14 +12,13 @@ declare class PanoTagPluginController extends TagRender {
|
|
|
12
12
|
enabled: boolean;
|
|
13
13
|
visible: boolean;
|
|
14
14
|
};
|
|
15
|
-
/** 插件参数 */
|
|
16
|
-
private params;
|
|
17
15
|
/** debug */
|
|
18
16
|
private debug;
|
|
19
17
|
private debugUtil;
|
|
20
18
|
constructor(five: Five, params?: {
|
|
21
19
|
config?: Pick<Tags, 'contentTypeConfig' | 'globalConfig'>;
|
|
22
20
|
debug?: boolean;
|
|
21
|
+
containerZIndex?: number;
|
|
23
22
|
});
|
|
24
23
|
appendTo(wrapper: Element): void;
|
|
25
24
|
/**
|