@realsee/dnalogel 3.50.5 → 3.50.7

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.7
3
+ - chore(Sculpt): 3.50.6 中的 feature 添加默认参数。
4
+
5
+ ## 3.50.6
6
+ - change(Sculpt): 距离和tip颜色默认和mesh颜色一致。
7
+
2
8
  ## 3.50.5
3
9
  - fix(measure): 兼容five react。
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;