build-dxf 0.1.115 → 0.1.116
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 +1 -1
- package/src/DomEventRegister.js +1 -1
- package/src/build.js +178 -153
- package/src/constants.d.ts +1 -1
- package/src/dxf-system/plugins/editor/Command/ClippingLine.d.ts +26 -0
- package/src/dxf-system/plugins/editor/{components/CommandFlow/CFComponent.d.ts → Command/Command.d.ts} +18 -17
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/DefaultCommand.d.ts +12 -13
- package/src/dxf-system/plugins/editor/Command/DeleteSelectLine.d.ts +25 -0
- package/src/dxf-system/plugins/editor/Command/DrawDoorLine.d.ts +8 -0
- package/src/dxf-system/plugins/editor/Command/DrawHole.d.ts +49 -0
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/DrawLine.d.ts +4 -4
- package/src/dxf-system/plugins/editor/Command/DrawWindow.d.ts +11 -0
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/ManualDistance.d.ts +4 -4
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/MergeLine.d.ts +3 -3
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/PointDrag/index.d.ts +3 -3
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/PointDrag/modifyDoor.d.ts +2 -2
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/PointDrag/modifyLine.d.ts +2 -2
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/PointDrag/modifyWindow.d.ts +4 -4
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/PropertiesPanel.d.ts +6 -6
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/RayDistance.d.ts +4 -4
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/SelectAll.d.ts +4 -4
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/TwoLineConnectionLine.d.ts +3 -3
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/TwoPointConnection.d.ts +3 -3
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/VerticalCorr.d.ts +6 -6
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/VerticalCorrContinue.d.ts +4 -4
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/VerticalReferenceLine.d.ts +3 -3
- package/src/dxf-system/plugins/editor/{components/CommandFlow → Command}/ViewAngle.d.ts +3 -3
- package/src/dxf-system/plugins/editor/{components/Editor.d.ts → Editor.d.ts} +6 -6
- package/src/dxf-system/plugins/editor/{components/RenderManager.d.ts → RenderManager.d.ts} +10 -10
- package/src/dxf-system/plugins/editor/index.d.ts +9 -3
- package/src/dxf-system/plugins/editor/us-service/LineSelector.d.ts +98 -0
- package/src/dxf-system/plugins/editor/utils/Wall2D.d.ts +2 -1
- package/src/dxf-system/type.d.ts +11 -4
- package/src/dxf-system/utils/WallHole.d.ts +111 -0
- package/src/dxf-system/utils/{WallInsertObjectDrawData.d.ts → WallHoleDrawData.d.ts} +1 -10
- package/src/dxf-system/utils/line-clipping.d.ts +7 -1
- package/src/dxf-system/utils/tools.d.ts +2 -2
- package/src/index.css +21 -17
- package/src/index.js +10 -10
- package/src/index3.js +4326 -4391
- package/src/utils/algorithms/UndirectedGraph.d.ts +4 -0
- package/src/utils/command/CommandFlow.d.ts +4 -4
- package/src/utils/tools/createVueApp.d.ts +1 -0
- package/src/dxf-system/plugins/editor/EditorPlugin.d.ts +0 -9
- package/src/dxf-system/plugins/editor/components/CommandFlow/ClippingLine.d.ts +0 -52
- package/src/dxf-system/plugins/editor/components/CommandFlow/DeleteSelectLine.d.ts +0 -24
- package/src/dxf-system/plugins/editor/components/CommandFlow/DrawDoorLine.d.ts +0 -44
- package/src/dxf-system/plugins/editor/components/CommandFlow/DrawHole.d.ts +0 -38
- package/src/dxf-system/plugins/editor/components/CommandFlow/DrawWindow.d.ts +0 -48
- package/src/dxf-system/plugins/editor/components/UIService.d.ts +0 -2
- package/src/dxf-system/plugins/editor/components/index.d.ts +0 -7
- package/src/dxf-system/plugins/index.d.ts +0 -1
- package/src/dxf-system/utils/WallInsertObject.d.ts +0 -109
package/package.json
CHANGED
package/src/DomEventRegister.js
CHANGED
|
@@ -7,7 +7,7 @@ import { CSS3DObject, CSS3DSprite, CSS3DRenderer } from "three/addons/renderers/
|
|
|
7
7
|
import { CSS2DObject, CSS2DRenderer } from "three/addons/renderers/CSS2DRenderer.js";
|
|
8
8
|
import { OrbitControls } from "three/addons/controls/OrbitControls.js";
|
|
9
9
|
import * as TWEEN from "@tweenjs/tween.js";
|
|
10
|
-
import { C as Component,
|
|
10
|
+
import { C as Component, P as Point, g as getDefaultExportFromCjs, A as ArrayMap, V as Variable } from "./build.js";
|
|
11
11
|
import { ref } from "vue";
|
|
12
12
|
const css = `
|
|
13
13
|
.overlay {
|