@soonspacejs/plugin-drawing-shape 2.2.36 → 2.3.0

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/README.md CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  > Drawing-shape plugin for SoonSpace.js
4
4
 
5
- Document: [http://www.xwbuilders.com:9018/soonspacejs/Docs/2.x/plugin/drawing-shape.html](http://www.xwbuilders.com:9018/soonspacejs/Docs/2.x/plugin/drawing-shape.html)
5
+ Document: [http://www.xwbuilders.com:8800/plugin/drawing-shape.html](http://www.xwbuilders.com:8800/plugin/drawing-shape.html)
package/dist/index.d.ts CHANGED
@@ -1,5 +1,4 @@
1
- import SoonSpace from 'soonspacejs';
2
- import { SetOptionsPointInfo, SetOptionsLineInfo, SetOptionsPolygonInfo, SetOptionsCircleInfo } from 'soonspacejs/types/Library';
1
+ import SoonSpace, { SetOptionsPointInfo, SetOptionsLineInfo, SetOptionsPolygonInfo, SetOptionsCircleInfo } from 'soonspacejs';
3
2
  export declare type DrawingPointInfo = SetOptionsPointInfo;
4
3
  export interface DrawingPointEvents {
5
4
  onCancel?: () => void;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@soonspacejs/plugin-drawing-shape",
3
3
  "pluginName": "DrawingShapePlugin",
4
- "version": "2.2.36",
4
+ "version": "2.3.0",
5
5
  "description": "DrawingShapePlugin plugin for SoonSpace.js",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.esm.js",
@@ -13,5 +13,5 @@
13
13
  ],
14
14
  "author": "xuek",
15
15
  "license": "UNLICENSED",
16
- "gitHead": "6e6f9cb486a777590d9b4ed0f4faf837d425e98e"
16
+ "gitHead": "e7643ba28c03a34b117241f7b2ab18adf65c8904"
17
17
  }
package/src/index.ts CHANGED
@@ -1,5 +1,4 @@
1
- import SoonSpace, { Position } from 'soonspacejs';
2
- import { SetOptionsPointInfo, SetOptionsLineInfo, SetOptionsPolygonInfo, SetOptionsCircleInfo } from 'soonspacejs/types/Library';
1
+ import SoonSpace, { Position, SetOptionsPointInfo, SetOptionsLineInfo, SetOptionsPolygonInfo, SetOptionsCircleInfo } from 'soonspacejs';
3
2
  import { Vector3 } from 'three'
4
3
 
5
4
  export type DrawingPointInfo = SetOptionsPointInfo