vue-safe-force-graph 1.0.0 → 1.0.2
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/CHANGELOG.md +9 -0
- package/README.md +8 -4
- package/lib/style.css +1 -4290
- package/lib/vue-safe-force-graph.mjs +28604 -44476
- package/lib/vue-safe-force-graph.mjs.map +1 -1
- package/lib/vue-safe-force-graph.umd.js +133 -57285
- package/lib/vue-safe-force-graph.umd.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [1.0.1](https://w.src.corp.qihoo.net/cloudweb/fe_force_graph/compare/v1.0.0...v1.0.1) (2023-03-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* 增加防抖 ([3161edc](https://w.src.corp.qihoo.net/cloudweb/fe_force_graph/commits/3161edcfa6532972d03bd177fa72c23e0cf6eb95))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
# [1.0.0](https://w.src.corp.qihoo.net/cloudweb/fe_force_graph/compare/v1.0.0-beta.6...v1.0.0) (2023-03-28)
|
|
2
11
|
|
|
3
12
|
|
package/README.md
CHANGED
|
@@ -78,10 +78,14 @@ export default {
|
|
|
78
78
|
|
|
79
79
|
### To build the library
|
|
80
80
|
|
|
81
|
-
npm run build
|
|
81
|
+
`npm run build`
|
|
82
82
|
|
|
83
83
|
### To publish a new version
|
|
84
84
|
|
|
85
|
-
npm run patch
|
|
86
|
-
npm run lib
|
|
87
|
-
npm publish
|
|
85
|
+
`npm run patch`
|
|
86
|
+
`npm run lib`
|
|
87
|
+
`npm publish`
|
|
88
|
+
|
|
89
|
+
### 开发人员手册
|
|
90
|
+
|
|
91
|
+
[开发请看这里](./开发请看这里.md)
|