fl-web-component 1.4.8 → 2.0.0-beta.1

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 (37) hide show
  1. package/README.md +1 -30
  2. package/dist/fl-web-component.common.1.js +2 -2
  3. package/dist/fl-web-component.common.1.js.map +1 -1
  4. package/dist/fl-web-component.common.2.js.map +1 -1
  5. package/dist/fl-web-component.common.js +77408 -47295
  6. package/dist/fl-web-component.common.js.map +1 -1
  7. package/dist/fl-web-component.css +1 -1
  8. package/package.json +12 -4
  9. package/packages/components/com-graphics/box.json +77 -0
  10. package/packages/components/com-graphics/component/ann-tool.vue +465 -0
  11. package/packages/components/com-graphics/index copy.vue +1679 -0
  12. package/packages/components/com-graphics/index.vue +3890 -301
  13. package/packages/components/com-graphics/pid.vue +210 -44
  14. package/packages/components/com-graphics/test.html +127 -0
  15. package/packages/components/com-tiles/index.vue +187 -0
  16. package/packages/utils/StreamLoader.js +1498 -0
  17. package/packages/utils/StreamLoaderParser.worker.js +595 -0
  18. package/patches/camera-controls+2.9.0.patch +63 -63
  19. package/src/main.js +9 -1
  20. package/src/static/ann-img/mark_circle@2x.png +0 -0
  21. package/src/static/ann-img/mark_clear@2x.png +0 -0
  22. package/src/static/ann-img/mark_cloud@2x.png +0 -0
  23. package/src/static/ann-img/mark_color@2x.png +0 -0
  24. package/src/static/ann-img/mark_eraser@2x.png +0 -0
  25. package/src/static/ann-img/mark_exit@2x.png +0 -0
  26. package/src/static/ann-img/mark_finish@2x.png +0 -0
  27. package/src/static/ann-img/mark_font@2x.png +0 -0
  28. package/src/static/ann-img/mark_polyline@2x.png +0 -0
  29. package/src/static/ann-img/mark_rectangle@2x.png +0 -0
  30. package/src/static/ann-img/mark_zoomin@2x.png +0 -0
  31. package/src/static/ann-img/mark_zoomout@2x.png +0 -0
  32. package/src/utils/cloud.js +110 -0
  33. package/src/utils/cursor.js +10 -0
  34. package/src/utils/flgltf-parser.js +245 -193
  35. package/src/utils/instance-parser.js +718 -170
  36. package/dist/fl-web-component.common.3.js +0 -7740
  37. package/dist/fl-web-component.common.3.js.map +0 -1
package/README.md CHANGED
@@ -45,36 +45,7 @@ Vue.use(FlWebComponent)
45
45
  ## 贡献
46
46
  欢迎贡献代码和问题反馈。
47
47
 
48
- ## 更新日志
49
- - 1.4.8 2026-02-28
50
- pid 垂直居中调整
51
- - 1.4.7 2026-02-02
52
- 1. 模型加载后默认居中
53
- 2. 修复browserslist兼容性问题
54
- - 1.4.5 2026-01-26
55
- 修复轴网不显示问题
56
- - 1.4.4 2026-01-21
57
- 修复图纸bug
58
- - 1.4.3 2026-01-19
59
- 1. 图纸及三维模型新增双击滚轮居中、按下滚轮可拖动模型
60
- - 1.3.22 2025-11-13
61
- 1. 修复楼板显示问题
62
- - 1.3.21 2025-11-03
63
- 1. 修复pid问题
64
- - 1.3.19 2025-10-31
65
- 1. 修复多引用问题
66
- - 1.3.18 2025-10-30
67
- 1. 修复pidbug
68
- - 1.3.17 2025-09-28
69
- 1. 修复pidbug
70
- - 1.3.16 2025-09-18
71
- 1. 相机设置自动调整
72
- 2. 处理多渲染实例的问题
73
- 3. 添加transp透明度
74
- - 1.3.15 2025-09-16
75
- 1. 更新全局剖切UI
76
- - 1.3.13 2025-09-04
77
- 1. PID阶段图纸集放大缩小
48
+ ## 更新日志
78
49
  - 1.3.12 2025-08-13
79
50
  1. 支持esc取消测量操作,按下esc键,结束测量,清空标识
80
51
  2. 解决测量时,点和提示框不跟随鼠标问题
@@ -11256,10 +11256,10 @@ var defineGlobalProperty = __webpack_require__("6374");
11256
11256
  var SHARED = '__core-js_shared__';
11257
11257
  var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
11258
11258
  (store.versions || (store.versions = [])).push({
11259
- version: '3.44.0',
11259
+ version: '3.45.1',
11260
11260
  mode: IS_PURE ? 'pure' : 'global',
11261
11261
  copyright: '© 2014-2025 Denis Pushkarev (zloirock.ru)',
11262
- license: 'https://github.com/zloirock/core-js/blob/v3.44.0/LICENSE',
11262
+ license: 'https://github.com/zloirock/core-js/blob/v3.45.1/LICENSE',
11263
11263
  source: 'https://github.com/zloirock/core-js'
11264
11264
  });
11265
11265