@realsee/dnalogel 3.49.7-alpha.0 → 3.49.8

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,11 @@
1
1
  # CHANGELOG
2
+ ## 3.49.8
3
+ - chore(sculpt): 导出工具函数。
4
+
5
+ ## 3.49.7
6
+ - fix(PanoTagPlugin): 修复360浏览器69版本下标签插件不显示的问题。
7
+ - fix(ModelMakerPlugin): 修复区域标注标签被缩小的问题。
8
+
2
9
  ## 3.49.6
3
10
  - feat(Sculpt): 支持点击出现删除按钮。
4
11
 
@@ -14,6 +14,15 @@ import { Box } from './Objects/Box';
14
14
  import type { BuiltInData, BuiltInItem, Theme } from './typings';
15
15
  import { Line } from './Objects/Line';
16
16
  export type { SculptData } from './typings';
17
+ export { createPoint } from './Objects/Point';
18
+ export { createLine } from './Objects/Line';
19
+ export { createPolyline } from './Objects/Polyline';
20
+ export { createPolygon } from './Objects/Polygon';
21
+ export { createPrism } from './Objects/Prism';
22
+ export { createRectangle } from './Objects/Rectangle';
23
+ export { createCircle } from './Objects/Circle';
24
+ export { createCylinder } from './Objects/Cylinder';
25
+ export { createBox } from './Objects/Box';
17
26
  interface Data {
18
27
  items: Array<BuiltInData>;
19
28
  }
@@ -68,12 +77,7 @@ export declare class Sculpt extends Subscribe<Event> {
68
77
  id: string;
69
78
  type: string;
70
79
  } | {
71
- readonly points: [number, number, number][]; /**
72
- * @description: 点击事件
73
- * @param {MouseEvent} e 鼠标事件
74
- * @param {BuiltInItem} item 点击的物体
75
- * 返回 false 来禁用 Five 默认行为
76
- */
80
+ readonly points: [number, number, number][];
77
81
  readonly heightPoint: [number, number, number];
78
82
  readonly style: {
79
83
  readonly color: number;