rm-build-dxf 0.1.186 → 0.1.188
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/package.json +50 -50
- package/src/api/index.d.ts +8 -3
- package/src/build.js +1 -1
- package/src/dxf-system/build.d.ts +2 -0
- package/src/dxf-system/components/Dxf.d.ts +31 -5
- package/src/dxf-system/components/RunJian.d.ts +33 -0
- package/src/dxf-system/utils/DimensionLine.d.ts +46 -0
- package/src/dxf-system/utils/RunJianPipeline.d.ts +6 -0
- package/src/dxf-system/utils/cad/DxfDataPlugin.d.ts +1 -0
- package/src/dxf-system/utils/cad/DxfDrawPlugin.d.ts +2 -0
- package/src/dxf-system/utils/tools.d.ts +2 -6
- package/src/utils/algorithms/LineSegment.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "rm-build-dxf",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "./src/index.js",
|
|
6
|
-
"types": "./src/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
9
|
-
},
|
|
10
|
-
"exports": {
|
|
11
|
-
".": {
|
|
12
|
-
"import": {
|
|
13
|
-
"types": "./src/build.d.ts",
|
|
14
|
-
"default": "./src/index.js",
|
|
15
|
-
"style": "./src/index.css"
|
|
16
|
-
},
|
|
17
|
-
"require": {
|
|
18
|
-
"types": "./src/build.d.ts",
|
|
19
|
-
"default": "./src/index.js"
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
"./RenderPlugin": {
|
|
23
|
-
"import": {
|
|
24
|
-
"types": "./src/utils/DxfSystem/plugin/RenderPlugin/index.d.ts",
|
|
25
|
-
"default": "./src/index2.js"
|
|
26
|
-
},
|
|
27
|
-
"require": {
|
|
28
|
-
"types": "./src/index.d.ts",
|
|
29
|
-
"default": "./src/index2.js"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
"./index.css": "./src/index.css"
|
|
33
|
-
},
|
|
34
|
-
"style": "src/index.css",
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"@tweenjs/tween.js": ">=25.0.0",
|
|
37
|
-
"clipper-lib": ">=6.4.2",
|
|
38
|
-
"dxf-writer": ">=1.18.4",
|
|
39
|
-
"vue": ">=3.0.0",
|
|
40
|
-
"canvas": "3.2.0",
|
|
41
|
-
"three-mesh-bvh": ">=0.6.6",
|
|
42
|
-
"three-bvh-csg": ">=0.0.17",
|
|
43
|
-
"three-csg-ts": ">=3.2.0",
|
|
44
|
-
"three": ">=0.181.0",
|
|
45
|
-
"node-three-gltf": "2.1.0",
|
|
46
|
-
"concaveman": "^2.0.0"
|
|
47
|
-
},
|
|
48
|
-
"author": "夏过初秋",
|
|
49
|
-
"license": "UNLICENSED"
|
|
50
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "rm-build-dxf",
|
|
3
|
+
"version": "0.1.188",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "./src/index.js",
|
|
6
|
+
"types": "./src/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
9
|
+
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": {
|
|
13
|
+
"types": "./src/build.d.ts",
|
|
14
|
+
"default": "./src/index.js",
|
|
15
|
+
"style": "./src/index.css"
|
|
16
|
+
},
|
|
17
|
+
"require": {
|
|
18
|
+
"types": "./src/build.d.ts",
|
|
19
|
+
"default": "./src/index.js"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"./RenderPlugin": {
|
|
23
|
+
"import": {
|
|
24
|
+
"types": "./src/utils/DxfSystem/plugin/RenderPlugin/index.d.ts",
|
|
25
|
+
"default": "./src/index2.js"
|
|
26
|
+
},
|
|
27
|
+
"require": {
|
|
28
|
+
"types": "./src/index.d.ts",
|
|
29
|
+
"default": "./src/index2.js"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"./index.css": "./src/index.css"
|
|
33
|
+
},
|
|
34
|
+
"style": "src/index.css",
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@tweenjs/tween.js": ">=25.0.0",
|
|
37
|
+
"clipper-lib": ">=6.4.2",
|
|
38
|
+
"dxf-writer": ">=1.18.4",
|
|
39
|
+
"vue": ">=3.0.0",
|
|
40
|
+
"canvas": "3.2.0",
|
|
41
|
+
"three-mesh-bvh": ">=0.6.6",
|
|
42
|
+
"three-bvh-csg": ">=0.0.17",
|
|
43
|
+
"three-csg-ts": ">=3.2.0",
|
|
44
|
+
"three": ">=0.181.0",
|
|
45
|
+
"node-three-gltf": "2.1.0",
|
|
46
|
+
"concaveman": "^2.0.0"
|
|
47
|
+
},
|
|
48
|
+
"author": "夏过初秋",
|
|
49
|
+
"license": "UNLICENSED"
|
|
50
|
+
}
|
package/src/api/index.d.ts
CHANGED
|
@@ -16,9 +16,14 @@ export declare function getRegionListAllApi(): Promise<{
|
|
|
16
16
|
*/
|
|
17
17
|
export declare function updateThreeJiaJsonApi(body: {
|
|
18
18
|
schemeContent: string;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
id: string;
|
|
20
|
+
}): Promise<boolean>;
|
|
21
|
+
/**
|
|
22
|
+
* 更新润健json
|
|
23
|
+
*/
|
|
24
|
+
export declare function updateRunJianJsonApi(body: {
|
|
25
|
+
schemeContentV2: string;
|
|
26
|
+
id: string;
|
|
22
27
|
}): Promise<boolean>;
|
|
23
28
|
export declare function getModelsApi(idRegion: string): Promise<{
|
|
24
29
|
models: IModelItem[];
|