@realsee/dnalogel 3.49.11 → 3.49.12
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/Sculpt/Meshes/Point.d.ts +2 -1
- package/dist/index.cjs.js +25 -24
- package/dist/index.js +491 -487
- package/dist/index.umd.js +27 -26
- package/libs/Sculpt/Meshes/Point.d.ts +2 -1
- package/libs/Sculpt/Meshes/Point.js +1 -1
- package/libs/Sculpt/utils/Meshes/getLengthHTML.js +1 -0
- package/libs/Sculpt/utils/removeAllTag.js +8 -5
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,7 @@ import * as THREE from 'three';
|
|
|
2
2
|
import { type ColorStyle, type DisplayInfoConfig, type OcclusionStyle } from '../typings/style';
|
|
3
3
|
import { IObject3D } from '../../shared-utils/three/IObject3D';
|
|
4
4
|
import type { PointData } from '../utils/data';
|
|
5
|
+
import { LightTag } from '../../shared-utils/tag';
|
|
5
6
|
export type { PointData } from '../utils/data';
|
|
6
7
|
export declare const circleImageURL: string;
|
|
7
8
|
export type PointStyle = ColorStyle & {
|
|
@@ -11,13 +12,13 @@ export declare class PointMesh extends IObject3D {
|
|
|
11
12
|
name: string;
|
|
12
13
|
get color(): THREE.Color;
|
|
13
14
|
get size(): number;
|
|
15
|
+
dom: LightTag;
|
|
14
16
|
private opacityBeforeHighlight;
|
|
15
17
|
private highlighted;
|
|
16
18
|
private fontMesh;
|
|
17
19
|
private backgroundMesh;
|
|
18
20
|
private lastRenderDomItem;
|
|
19
21
|
private paramsStyle;
|
|
20
|
-
private dom;
|
|
21
22
|
private get five();
|
|
22
23
|
constructor(params?: Partial<PointStyle & PointData>);
|
|
23
24
|
setStyle(params: Partial<PointStyle>): void;
|