-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(core): init table and swimlane #858
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -71,6 +79,7 @@ export interface PlaitGeometry extends PlaitElement { | |||
|
|||
angle: number; | |||
opacity: number; | |||
swimlaneId?: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
如果是元素关联泳道那么泳道或者表格的数据结构就不可以包含 relatedIds 了
packages/draw/src/engines/index.ts
Outdated
[FlowchartSymbols.noteSquare]: NoteSquareEngine, | ||
[SwimlaneSymbols.horizontal]: TableEngine, | ||
[SwimlaneSymbols.vertical]: TableEngine, | ||
[SwimlaneSymbols.separatorHorizontal]: SwimlaneSeparatorEngine, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
先不用
shape: SwimlaneSymbols.horizontal; | ||
} | ||
|
||
export interface PlaitSwimlaneSeparatorVertical extends PlaitSwimlane { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
不需要
}[]; | ||
cells: PlaitTableCell[]; | ||
groupId?: string; | ||
relatedIds: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
删除
No description provided.