@logicflow/core 2.2.0-alpha.3 → 2.2.0-alpha.5
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 +19 -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 +29 -7
- package/es/tool/MultipleSelectTool.js +4 -0
- package/es/view/node/BaseNode.js +9 -1
- package/es/view/overlay/CanvasOverlay.js +5 -2
- package/es/view/overlay/OutlineOverlay.js +1 -1
- package/lib/LogicFlow.js +0 -1
- package/lib/model/GraphModel.js +29 -7
- package/lib/tool/MultipleSelectTool.js +4 -0
- package/lib/view/node/BaseNode.js +8 -0
- package/lib/view/overlay/CanvasOverlay.js +5 -2
- package/lib/view/overlay/OutlineOverlay.js +1 -1
- package/package.json +1 -1
- package/src/LogicFlow.tsx +0 -1
- package/src/model/EditConfigModel.ts +4 -4
- package/src/model/GraphModel.ts +31 -10
- package/src/model/node/BaseNodeModel.ts +3 -4
- package/src/tool/MultipleSelectTool.tsx +7 -0
- package/src/view/node/BaseNode.tsx +10 -1
- package/src/view/overlay/CanvasOverlay.tsx +4 -2
- 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.4 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.4 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.4 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.4 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 [33m116.
|
|
23
|
+
| [32m[1mBundle Size:[22m[39m [33m408.45 KB[39m |
|
|
24
|
+
| [32m[1mMinified Size:[22m[39m [33m407.21 KB[39m |
|
|
25
|
+
| [32m[1mGZipped Size:[22m[39m [33m116.84 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 [
|
|
33
|
+
[32mcreated [1mdist/index.min.js[22m in [1m38s[22m[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 2.2.0-alpha.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: 修复已知问题
|
|
8
|
+
- 销毁实例时不清空主题配置
|
|
9
|
+
- 修复在撤销步骤中将渐进连线算入操作历史的问题
|
|
10
|
+
- 优化requestAnimationFrame兼容代码的实现
|
|
11
|
+
|
|
12
|
+
## 2.2.0-alpha.4
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- fix: 修复已知问题
|
|
17
|
+
- 修复鼠标在画布上按下再放开会先触发画布点击事件问题
|
|
18
|
+
- 修复网格吸附导致的连线断开问题
|
|
19
|
+
- 添加DOM存在性和可见性检查防止resize错误
|
|
20
|
+
- 修复复制粘贴后第一次选中节点会失焦问题
|
|
21
|
+
|
|
3
22
|
## 2.2.0-alpha.3
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|