Skip to content

Commit 8301991

Browse files
committed
build: release 0.57.0
1 parent 701771c commit 8301991

20 files changed

+67
-65
lines changed

.changeset/bright-turkeys-repair.md

-5
This file was deleted.

.changeset/curvy-penguins-help.md

-27
This file was deleted.

.changeset/fast-hornets-hear.md

-5
This file was deleted.

.changeset/popular-items-worry.md

-7
This file was deleted.

.changeset/pretty-beans-sit.md

-5
This file was deleted.

.changeset/rare-onions-collect.md

-9
This file was deleted.

packages/common/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @plait/common
22

3+
## 0.57.0
4+
35
## 0.56.2
46

57
### Patch Changes

packages/common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plait/common",
3-
"version": "0.56.2",
3+
"version": "0.57.0",
44
"peerDependencies": {
55
"@angular/common": "^17.2.4",
66
"@angular/core": "^17.2.4",

packages/core/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# plait
22

3+
## 0.57.0
4+
5+
### Minor Changes
6+
7+
- [#862](https://github.com/worktile/plait/pull/862) [`a1e2b94dc`](https://github.com/worktile/plait/commit/a1e2b94dc9d38fa503a62459f0fac51fa882836b) Thanks [@MissLixf](https://github.com/MissLixf)! - add getBoundingRectangleByElements function
8+
9+
* [#863](https://github.com/worktile/plait/pull/863) [`61d00e03a`](https://github.com/worktile/plait/commit/61d00e03a3cfb85db97d9c1cceabf61871de93c8) Thanks [@pubuzhixing8](https://github.com/pubuzhixing8)! - remove get component bridge officially 🎉🎉🎉
10+
11+
- remove ELEMENT_TO_COMPONENT
12+
13+
- remove getComponent method
14+
315
## 0.56.2
416

517
## 0.56.1

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plait/core",
3-
"version": "0.56.2",
3+
"version": "0.57.0",
44
"peerDependencies": {
55
"@angular/common": "^17.2.4",
66
"@angular/core": "^17.2.4",

packages/draw/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @plait/draw
22

3+
## 0.57.0
4+
5+
### Minor Changes
6+
7+
- [#865](https://github.com/worktile/plait/pull/865) [`dcb5263a9`](https://github.com/worktile/plait/commit/dcb5263a9110085a5b2e8db69be3f103937b6bce) Thanks [@MissLixf](https://github.com/MissLixf)! - add display shape for flowchart
8+
9+
* [#858](https://github.com/worktile/plait/pull/858) [`35418e50e`](https://github.com/worktile/plait/commit/35418e50e0d873515c7e21f1edbb02b7ca702691) Thanks [@huanhuanwa](https://github.com/huanhuanwa)! - init swimlane
10+
311
## 0.56.2
412

513
### Patch Changes

packages/draw/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plait/draw",
3-
"version": "0.56.2",
3+
"version": "0.57.0",
44
"peerDependencies": {
55
"@angular/common": "^17.2.4",
66
"@angular/core": "^17.2.4",

packages/flow/CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# @plait/flow
22

3+
## 0.57.0
4+
5+
### Minor Changes
6+
7+
- [#857](https://github.com/worktile/plait/pull/857) [`b4e7bb954`](https://github.com/worktile/plait/commit/b4e7bb954df70d2071fc128a339532d3c9782bf9) Thanks [@pubuzhixing8](https://github.com/pubuzhixing8)! - handle edge's g hierarchy logic
8+
9+
edge 层级需求:
10+
11+
1. 默认情况下 edge 的 label 部件层级应该高于其它 edge 连线
12+
2. 默认情况下 node 部件层级应该高于 edge 连线
13+
3. edge 元素处于 active(选中)/ highlight(选中关联节点)/ hovering 时给 edge 元素置于最高层,可以盖住其它 edge 的 label 和 其它任何 node 节点
14+
15+
处理思路:
16+
17+
1. 默认情况下将 edge 的「连线部件」放到 lowerHost 中,保证默认情况下 edge label 和 node 节点部件的层级高于 edge 的连线
18+
2. 其它情况(active/highlight/hovering)将 edge 的「连线部件」放到当前 edge 元素的 elementG 中,并且提升 elementG 整体层级(放到 upperHost 中,默认放到 host 中)
19+
20+
edge level requirements:
21+
22+
1. By default, the edge label component level should be higher than other edge connections.
23+
2. By default, the node component level should be higher than the edge connection
24+
3. When the edge element is active (selected)/highlight (selected associated node)/hovering, place the edge element at the top level, which can cover other edge labels and any other node nodes.
25+
26+
Processing ideas:
27+
28+
1. By default, the edge's "connection component" is placed in lowerHost to ensure that the edge label and node node components are higher than the edge's connection by default.
29+
2. In other cases (active/highlight/hovering), place the edge's "connection component" in elementG of the current edge element, and raise the overall level of elementG (put it in upperHost, by default it will be placed in host)
30+
31+
* [#857](https://github.com/worktile/plait/pull/857) [`d9cea82d2`](https://github.com/worktile/plait/commit/d9cea82d280e48b91952a5cfa983f2f468d49e24) Thanks [@pubuzhixing8](https://github.com/pubuzhixing8)! - refactor plait/flow's rendering
32+
33+
remove getComponent invoking in plait/flow
34+
335
## 0.56.2
436

537
## 0.56.1

packages/flow/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plait/flow",
3-
"version": "0.56.2",
3+
"version": "0.57.0",
44
"peerDependencies": {
55
"@angular/common": "^17.2.4",
66
"@angular/core": "^17.2.4"

packages/layouts/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# layouts
22

3+
## 0.57.0
4+
35
## 0.56.2
46

57
## 0.56.1

packages/layouts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plait/layouts",
3-
"version": "0.56.2",
3+
"version": "0.57.0",
44
"peerDependencies": {
55
"@angular/common": "^17.2.4",
66
"@angular/core": "^17.2.4"

packages/mind/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# mind
22

3+
## 0.57.0
4+
35
## 0.56.2
46

57
## 0.56.1

packages/mind/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plait/mind",
3-
"version": "0.56.2",
3+
"version": "0.57.0",
44
"peerDependencies": {
55
"@angular/common": "^17.2.4",
66
"@angular/core": "^17.2.4"

packages/text/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# text
22

3+
## 0.57.0
4+
35
## 0.56.2
46

57
### Patch Changes

packages/text/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plait/text",
3-
"version": "0.56.2",
3+
"version": "0.57.0",
44
"peerDependencies": {
55
"@angular/common": "^17.2.4",
66
"@angular/core": "^17.2.4",

0 commit comments

Comments
 (0)