@realsee/dnalogel 3.50.12 → 3.50.13
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 +3 -0
- package/dist/PanoTagPlugin/controller/Tag/BaseTag.d.ts +3 -3
- package/dist/PanoTagPlugin/controller/TagRender.d.ts +0 -3
- package/dist/PanoTagPlugin/controller/index.d.ts +4 -0
- package/dist/base/BasePlugin.d.ts +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.js +18 -20
- package/dist/index.umd.js +3 -3
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.d.ts +3 -3
- package/libs/PanoTagPlugin/controller/TagRender.d.ts +0 -3
- package/libs/PanoTagPlugin/controller/TagRender.js +80 -110
- package/libs/PanoTagPlugin/controller/index.d.ts +4 -0
- package/libs/PanoTagPlugin/controller/index.js +41 -29
- package/libs/base/BasePlugin.d.ts +1 -1
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -153,8 +153,8 @@ export declare abstract class BaseTag<C extends TagContentType = TagContentType,
|
|
|
153
153
|
}): TagConfig;
|
|
154
154
|
getDistance(fiveState?: Partial<FiveState>, accurate?: number): number;
|
|
155
155
|
getVisible(fiveState?: Partial<FiveState>): boolean;
|
|
156
|
-
getUnfoldedByPanoIndex(panoIndex?: number):
|
|
157
|
-
getUnfoldedByCamera():
|
|
156
|
+
getUnfoldedByPanoIndex(panoIndex?: number): boolean;
|
|
157
|
+
getUnfoldedByCamera(): boolean;
|
|
158
158
|
can(action: 'show' | 'hide' | 'fold' | 'unfold'): boolean;
|
|
159
159
|
onClick(params: Pick<TagClickParams, 'target'>): void;
|
|
160
160
|
abstract computeNormal(): THREE.Vector3 | undefined;
|
|
@@ -204,7 +204,7 @@ export declare abstract class BaseTag<C extends TagContentType = TagContentType,
|
|
|
204
204
|
* @description 获取是否展开
|
|
205
205
|
*/
|
|
206
206
|
protected computeUnfoldedByPanoIndex(panoIndex?: number): boolean;
|
|
207
|
-
protected computeUnfoldedByCamera():
|
|
207
|
+
protected computeUnfoldedByCamera(): boolean;
|
|
208
208
|
protected computeTagProject(): {
|
|
209
209
|
x: number;
|
|
210
210
|
y: number;
|
|
@@ -29,7 +29,6 @@ export declare abstract class TagRender extends TagUtil {
|
|
|
29
29
|
usePoint?: boolean;
|
|
30
30
|
}): void;
|
|
31
31
|
bindRenderer(contentType: string, builtInRenderer: TagContentType): void;
|
|
32
|
-
clearTags(): void;
|
|
33
32
|
/**
|
|
34
33
|
* @description 渲染3D贴片
|
|
35
34
|
*/
|
|
@@ -39,8 +38,6 @@ export declare abstract class TagRender extends TagUtil {
|
|
|
39
38
|
* @param model 模型
|
|
40
39
|
*/
|
|
41
40
|
updateTagCss3DObjectMatrix<S extends 'Model' | 'Plane' = 'Model'>(tag: TagInstance<TagContentType, S>, model: Object3D): void;
|
|
42
|
-
/** 添加模型标签 */
|
|
43
|
-
protected addMediaModelTag(tags: TagInstance[]): Promise<void>;
|
|
44
41
|
protected disposeAllCSS3DContainer(): void;
|
|
45
42
|
/**
|
|
46
43
|
* @description 检查并销毁不用的3D贴片
|