@realsee/dnalogel 3.50.4 → 3.50.6

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,10 @@
1
1
  # CHANGELOG
2
+ ## 3.50.6
3
+ - change(Sculpt): 距离和tip颜色默认和mesh颜色一致。
4
+
5
+ ## 3.50.5
6
+ - fix(measure): 兼容five react。
7
+
2
8
  ## 3.50.4
3
9
  - change(floorplan): 户型图展示/隐藏时,除之前设置 five canvas 透明度的逻辑外,同步设置five相关dom的透明度(使用 dataset-infive 标识)
4
10
 
@@ -12,6 +12,12 @@ export declare class PointMesh extends IObject3D {
12
12
  name: string;
13
13
  get color(): THREE.Color;
14
14
  get size(): number;
15
+ get style(): {
16
+ color: THREE.Color;
17
+ size: number;
18
+ occlusionVisibility: boolean;
19
+ occlusionMode: string;
20
+ };
15
21
  dom: LightTag;
16
22
  private opacityBeforeHighlight;
17
23
  private highlighted;
@@ -1 +1,3 @@
1
- export declare function getLengthHTML(text: string): string;
1
+ export declare function getLengthHTML(text: string, params?: {
2
+ style?: string;
3
+ }): string;