fl-web-component 2.0.7 → 2.0.9

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 (30) hide show
  1. package/README.md +2 -0
  2. package/dist/fl-web-component.common.js +7223 -1277
  3. package/dist/fl-web-component.common.js.map +1 -1
  4. package/dist/fl-web-component.css +1 -1
  5. package/package.json +1 -1
  6. package/packages/components/com-flcanvas/index.vue +0 -2
  7. package/packages/components/com-graphics/component/context.js +123 -0
  8. package/packages/components/com-graphics/index.vue +1148 -69
  9. package/packages/utils/StreamLoader.js +73 -16
  10. package/src/utils/threejs/editor/command.js +36 -0
  11. package/src/utils/threejs/editor/commands/add-element-command.js +41 -0
  12. package/src/utils/threejs/editor/commands/add-group-command.js +10 -0
  13. package/src/utils/threejs/editor/commands/clone-element-command.js +100 -0
  14. package/src/utils/threejs/editor/commands/move-element-command.js +57 -0
  15. package/src/utils/threejs/editor/commands/multi-command.js +29 -0
  16. package/src/utils/threejs/editor/commands/remove-element-command.js +46 -0
  17. package/src/utils/threejs/editor/commands/reset-original-model-style-command.js +30 -0
  18. package/src/utils/threejs/editor/commands/set-geometry-params-command.js +41 -0
  19. package/src/utils/threejs/editor/commands/set-original-model-style-command.js +56 -0
  20. package/src/utils/threejs/editor/commands/set-position-command.js +54 -0
  21. package/src/utils/threejs/editor/commands/set-rotation-command.js +53 -0
  22. package/src/utils/threejs/editor/commands/set-scale-command.js +54 -0
  23. package/src/utils/threejs/editor/commands/set-value-command.js +107 -0
  24. package/src/utils/threejs/editor/constants.js +107 -0
  25. package/src/utils/threejs/editor/element-factory.js +163 -0
  26. package/src/utils/threejs/editor/event-bus.js +34 -0
  27. package/src/utils/threejs/editor/history.js +80 -0
  28. package/src/utils/threejs/editor/scene-command-service.js +1529 -0
  29. package/src/utils/threejs/editor/scene-event-bridge.js +32 -0
  30. package/src/utils/threejs/editor/scene-helpers.js +415 -0
package/README.md CHANGED
@@ -46,6 +46,8 @@ Vue.use(FlWebComponent)
46
46
  欢迎贡献代码和问题反馈。
47
47
 
48
48
  ## 更新日志
49
+ - 2.0.8 2026年5月25日
50
+ - 修复bug
49
51
  - 2.0.6 2026年5月21日
50
52
  - 修复bug
51
53
  - 2.0.4 2026-05-14