@logicflow/core 2.2.0-alpha.4 → 2.2.0-alpha.6
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/.turbo/turbo-build$colon$dev.log +2 -2
- package/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +15 -0
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/es/LogicFlow.js +0 -1
- package/es/model/GraphModel.js +1 -1
- package/es/model/edge/PolylineEdgeModel.d.ts +1 -0
- package/es/model/edge/PolylineEdgeModel.js +113 -6
- package/es/util/edge.d.ts +39 -0
- package/es/util/edge.js +41 -7
- package/es/view/edge/BaseEdge.js +9 -0
- package/es/view/node/BaseNode.js +2 -3
- package/es/view/overlay/OutlineOverlay.js +1 -1
- package/lib/LogicFlow.js +0 -1
- package/lib/model/GraphModel.js +1 -1
- package/lib/model/edge/PolylineEdgeModel.d.ts +1 -0
- package/lib/model/edge/PolylineEdgeModel.js +113 -6
- package/lib/util/edge.d.ts +39 -0
- package/lib/util/edge.js +41 -7
- package/lib/view/edge/BaseEdge.js +9 -0
- package/lib/view/node/BaseNode.js +1 -2
- package/lib/view/overlay/OutlineOverlay.js +1 -1
- package/package.json +1 -1
- package/src/LogicFlow.tsx +0 -1
- package/src/model/GraphModel.ts +2 -1
- package/src/model/edge/PolylineEdgeModel.ts +136 -16
- package/src/util/edge.ts +40 -7
- package/src/view/edge/BaseEdge.tsx +10 -0
- package/src/view/node/BaseNode.tsx +2 -3
- package/src/view/overlay/OutlineOverlay.tsx +1 -1
- package/stats.html +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
|
|
2
|
-
> @logicflow/core@2.2.0-alpha.
|
|
2
|
+
> @logicflow/core@2.2.0-alpha.5 build:dev /Users/didi/Desktop/github/LogicFlow/packages/core
|
|
3
3
|
> rss
|
|
4
4
|
|
|
5
5
|
> [build:dev] pnpm run --if-present build:less && run-p -s build:cjs build:esm
|
|
6
6
|
|
|
7
|
-
> @logicflow/core@2.2.0-alpha.
|
|
7
|
+
> @logicflow/core@2.2.0-alpha.5 build:less /Users/didi/Desktop/github/LogicFlow/packages/core
|
|
8
8
|
> rss
|
|
9
9
|
|
|
10
10
|
> [build:less] ./scripts/build-less
|
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
|
|
2
|
-
> @logicflow/core@2.2.0-alpha.
|
|
2
|
+
> @logicflow/core@2.2.0-alpha.5 prebuild /Users/didi/Desktop/github/LogicFlow/packages/core
|
|
3
3
|
> rss
|
|
4
4
|
|
|
5
5
|
> [prebuild] run-s -s clean:build
|
|
6
6
|
> [clean:build] rimraf dist es lib
|
|
7
7
|
|
|
8
|
-
> @logicflow/core@2.2.0-alpha.
|
|
8
|
+
> @logicflow/core@2.2.0-alpha.5 build /Users/didi/Desktop/github/LogicFlow/packages/core
|
|
9
9
|
> rss
|
|
10
10
|
|
|
11
11
|
> [build] run-p -s build:dev build:umd
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
| [32m[1mBundle Format:[22m[39m [33mumd[39m |
|
|
21
21
|
| [32m[1mBundle Name:[22m[39m [33mCore[39m |
|
|
22
22
|
| [32m[1mDestination:[22m[39m [33mdist/index.min.js[39m |
|
|
23
|
-
| [32m[1mBundle Size:[22m[39m [
|
|
24
|
-
| [32m[1mMinified Size:[22m[39m [
|
|
25
|
-
| [32m[1mGZipped Size:[22m[39m [
|
|
23
|
+
| [32m[1mBundle Size:[22m[39m [33m409.85 KB[39m |
|
|
24
|
+
| [32m[1mMinified Size:[22m[39m [33m408.6 KB[39m |
|
|
25
|
+
| [32m[1mGZipped Size:[22m[39m [33m117.26 KB[39m |
|
|
26
26
|
| |
|
|
27
27
|
+------------------------------------+
|
|
28
28
|
[1m[33m(!) Circular dependencies[39m[22m
|
|
@@ -30,4 +30,4 @@ src/index.ts -> src/LogicFlow.tsx -> src/index.ts
|
|
|
30
30
|
src/util/index.ts -> src/util/edge.ts -> src/util/index.ts
|
|
31
31
|
src/util/index.ts -> src/util/edge.ts -> src/algorithm/index.ts -> src/algorithm/outline.ts -> src/util/index.ts
|
|
32
32
|
...and 19 more
|
|
33
|
-
[32mcreated [1mdist/index.min.js[22m in [1m18.
|
|
33
|
+
[32mcreated [1mdist/index.min.js[22m in [1m18.6s[22m[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 2.2.0-alpha.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: 修复来自内部反馈的边问题
|
|
8
|
+
|
|
9
|
+
## 2.2.0-alpha.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- fix: 修复已知问题
|
|
14
|
+
- 销毁实例时不清空主题配置
|
|
15
|
+
- 修复在撤销步骤中将渐进连线算入操作历史的问题
|
|
16
|
+
- 优化requestAnimationFrame兼容代码的实现
|
|
17
|
+
|
|
3
18
|
## 2.2.0-alpha.4
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|