build-dxf 0.0.19 → 0.0.20-10

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.
Files changed (39) hide show
  1. package/README.md +30 -0
  2. package/package.json +1 -3
  3. package/src/build.d.ts +23 -1
  4. package/src/build.js +70 -16
  5. package/src/index.css +661 -1
  6. package/src/index.js +4 -2
  7. package/src/index2.js +9 -3681
  8. package/src/index3.js +1546 -410
  9. package/src/pages/Editor.vue.d.ts +3 -1
  10. package/src/selectLocalFile.js +444 -21
  11. package/src/utils/CommandManager/CommandFlow.d.ts +16 -0
  12. package/src/utils/CommandManager/CommandManager.d.ts +23 -0
  13. package/src/utils/ComponentManager/Component.d.ts +1 -0
  14. package/src/utils/ComponentManager/ComponentManager.d.ts +1 -1
  15. package/src/utils/DxfSystem/components/Dxf.d.ts +1 -0
  16. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/CommandFlowComponent.d.ts +13 -3
  17. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/ConnectionLine.d.ts +33 -0
  18. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/Default.d.ts +5 -19
  19. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DeleteSelectLine.d.ts +28 -0
  20. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DeleteSelectWindow.d.ts +33 -0
  21. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawDoorLine.d.ts +19 -3
  22. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawLine.d.ts +22 -5
  23. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawWindow.d.ts +22 -2
  24. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/IntersectionConnectionLine.d.ts +33 -0
  25. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/MergeLine.d.ts +32 -0
  26. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag.d.ts +16 -2
  27. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/SelectAll.d.ts +30 -0
  28. package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/VerticalCorrection.d.ts +63 -0
  29. package/src/utils/DxfSystem/plugin/Editor/components/Editor.d.ts +7 -0
  30. package/src/utils/DxfSystem/plugin/Editor/components/index.d.ts +1 -0
  31. package/src/utils/DxfSystem/plugin/Editor/index.d.ts +8 -1
  32. package/src/utils/DxfSystem/plugin/Editor/pages/EditorTool.vue.d.ts +5 -1
  33. package/src/utils/DxfSystem/plugin/RenderPlugin/components/DomEventRegister.d.ts +28 -6
  34. package/src/utils/DxfSystem/plugin/RenderPlugin/components/Renderer.d.ts +1 -1
  35. package/src/utils/DxfSystem/plugin/RenderPlugin/index.d.ts +2 -1
  36. package/src/utils/Quadtree/LineSegment.d.ts +2 -1
  37. package/src/utils/Quadtree/Point.d.ts +2 -1
  38. package/src/components/Editor.vue.d.ts +0 -26
  39. package/src/pages/Editor02.vue.d.ts +0 -4
package/src/index.js CHANGED
@@ -1,8 +1,10 @@
1
- import { D, M, i, c } from "./build.js";
2
1
  import "three";
2
+ import { D, M, i, c, g, d } from "./build.js";
3
3
  export {
4
4
  D as DxfSystem,
5
5
  M as ModelDataPlugin,
6
6
  i as components,
7
- c as createEditor
7
+ c as createEditor,
8
+ g as getFileAll,
9
+ d as getGlobalDxfSystem
8
10
  };