build-dxf 0.1.117 → 0.1.119
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 -0
- package/src/build.js +3618 -3385
- package/src/constants.d.ts +1 -0
- package/src/dxf-system/DxfSystem.d.ts +2 -2
- package/src/dxf-system/build.d.ts +5 -4
- package/src/dxf-system/plugins/editor/Command/Command.d.ts +5 -45
- package/src/dxf-system/plugins/editor/Command/DeleteSelectLine.d.ts +2 -2
- package/src/dxf-system/plugins/editor/Command/DrawHole.d.ts +2 -2
- package/src/dxf-system/plugins/editor/Command/DrawLine.d.ts +8 -3
- package/src/dxf-system/plugins/editor/Command/ManualDistance.d.ts +2 -2
- package/src/dxf-system/plugins/editor/Command/MergeLine.d.ts +2 -2
- package/src/dxf-system/plugins/editor/Command/PointDrag/index.d.ts +2 -2
- package/src/dxf-system/plugins/editor/Command/PropertiesPanel.d.ts +2 -2
- package/src/dxf-system/plugins/editor/Command/RayDistance.d.ts +2 -2
- package/src/dxf-system/plugins/editor/Command/SelectAll.d.ts +2 -2
- package/src/dxf-system/plugins/editor/Command/TwoLineConnectionLine.d.ts +2 -2
- package/src/dxf-system/plugins/editor/Command/TwoPointConnection.d.ts +2 -2
- package/src/dxf-system/plugins/editor/Command/VerticalCorr.d.ts +2 -2
- package/src/dxf-system/plugins/editor/Command/VerticalCorrContinue.d.ts +2 -2
- package/src/dxf-system/plugins/editor/Command/ViewAngle.d.ts +2 -2
- package/src/dxf-system/plugins/editor/us-service/DragControlPoint.d.ts +48 -0
- package/src/dxf-system/plugins/editor/us-service/LineSelector.d.ts +11 -65
- package/src/dxf-system/plugins/editor/us-service/PointerFollowMove.d.ts +85 -0
- package/src/dxf-system/plugins/editor/us-service/SnapController.d.ts +32 -0
- package/src/dxf-system/plugins/model3d/components/DxfLineModel.d.ts +2 -2
- package/src/dxf-system/plugins/model3d/components/WhiteModel.d.ts +2 -2
- package/src/dxf-system/plugins/renderer/components/EventInput.d.ts +2 -2
- package/src/dxf-system/plugins/renderer/components/ModelDataRender.d.ts +4 -4
- package/src/dxf-system/type.d.ts +2 -1
- package/src/dxf-system/utils/{DoubleWallHelper.d.ts → DoubleWallFinder.d.ts} +17 -1
- package/src/dxf-system/utils/WallHole.d.ts +17 -5
- package/src/dxf-system/utils/index.d.ts +1 -1
- package/src/dxf-system/utils/line-clipping.d.ts +1 -0
- package/src/dxf-system/utils/line-pipeline/builtin/init.d.ts +1 -1
- package/src/dxf-system/utils/line-pipeline/index.d.ts +1 -1
- package/src/index.css +4 -8
- package/src/index.js +10 -10
- package/src/index3.js +476 -451
- package/src/utils/algorithms/AlignToParallelSegments.d.ts +0 -8
- package/src/utils/algorithms/LineSegmentUtils.d.ts +12 -1
- package/src/utils/algorithms/PointUtils.d.ts +11 -0
- package/src/utils/algorithms/UndirectedGraph.d.ts +16 -2
- package/src/utils/ecs/Component.d.ts +6 -6
- package/src/utils/ecs/{ComponentSystem.d.ts → Container.d.ts} +1 -1
- package/src/utils/ecs/index.d.ts +1 -1
- package/src/dxf-system/plugins/editor/Command/VerticalReferenceLine.d.ts +0 -21
package/package.json
CHANGED