fl-web-component 1.0.11 → 1.1.0
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/README.md +12 -1
- package/dist/fl-web-component.common.js +10677 -2954
- package/dist/fl-web-component.css +1 -1
- package/package.json +2 -1
- package/packages/components/com-flcanvas/index.vue +58 -9
- package/packages/components/com-graphics/index.vue +173 -69
- package/packages/components/com-graphics/pid.vue +31 -16
- package/src/main.js +5 -2
- package/src/utils/instance-parser.js +8 -2
- package/src/utils/threejs/measure-angle.js +40 -30
- package/src/utils/threejs/measure-area.js +52 -44
- package/src/utils/threejs/measure-distance.js +39 -29
- package/src/utils/threejs/rain-shader.js +58 -0
- package/src/utils/threejs/snow-shader.js +75 -0
package/README.md
CHANGED
|
@@ -43,4 +43,15 @@ Vue.use(FlWebComponent)
|
|
|
43
43
|
详细业务API文档、公共组件开发流程请联系前端开发人员
|
|
44
44
|
|
|
45
45
|
## 贡献
|
|
46
|
-
欢迎贡献代码和问题反馈。
|
|
46
|
+
欢迎贡献代码和问题反馈。
|
|
47
|
+
|
|
48
|
+
## 更新日志
|
|
49
|
+
- 2025-05-15 1.0.12
|
|
50
|
+
1. flcanvas组件更新
|
|
51
|
+
- 2025-05-15 1.0.11
|
|
52
|
+
1. 去除依赖方解析包,现在业务使用方无需配置解析器
|
|
53
|
+
2. 去除umd产物,提高打包速度
|
|
54
|
+
3. 优化打包产物,大幅减少产物体积
|
|
55
|
+
4. 优化打包产物为兼容语法
|
|
56
|
+
- 2025-05-12 1.0.0
|
|
57
|
+
1. 初始版本发布
|