@realsee/dnalogel 3.50.10 → 3.50.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,10 @@
1
1
  # CHANGELOG
2
+ ## 3.50.12
3
+ - chore(Sculpt): fix typo `createline`
4
+
5
+ ## 3.50.11
6
+ - fix(PanoTagPlugin): 修复 3.42.0 导致的 hide 后没有隐藏 css3D 渲染的 Dom 的问题。
7
+
2
8
  ## 3.50.10
3
9
  - chore(floorplan): 修改户型图标尺透明度。
4
10
 
@@ -140,7 +140,11 @@ export declare class Sculpt extends Subscribe<Event> {
140
140
  /**
141
141
  * @description: 开始绘制线段
142
142
  */
143
- createline(params?: Parameters<Line['create']>[0]): Promise<Line>;
143
+ createLine(params?: Parameters<Line['create']>[0]): Promise<Line>;
144
+ /**
145
+ * @deprecated use createLine instead
146
+ */
147
+ createline(...params: any[]): Promise<void>;
144
148
  /**
145
149
  * @description: 开始绘制空间折线
146
150
  */