@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 CHANGED
@@ -1,4 +1,7 @@
1
1
  # CHANGELOG
2
+ ## 3.49.12
3
+ - fix(Sculpt): 3.49.11 的 tip 支持中文。
4
+
2
5
  ## 3.49.11
3
6
  - fix(Sculpt): 绘制点时,实时预览点的位置;点和线 支持设置 tip。
4
7
 
@@ -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;