Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
amcdnl committed Jul 22, 2021
1 parent c54538a commit 91a137f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.3.2 - 7/22/21
- [fix] reorder port position for drag node to be on top
- [fix] fix height / width in drag node being lost

# 3.3.1 - 7/22/21
- [feature] remove hardcoded height/width for dynamic cloning

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reaflow",
"version": "3.3.1",
"version": "3.3.2",
"description": "Node-based Visualizations for React",
"scripts": {
"build": "rollup -c",
Expand Down
2 changes: 1 addition & 1 deletion stories/Drag.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ export const NodePortRearranging = () => {
]);
}
}}
dragNode={dragType === 'node' ? <Node /> : null}
dragNode={dragType === 'node' ? <Node height={25} width={25} port={null} /> : null}
dragEdge={dragType === 'port' ? <Edge add={null} /> : null}
onCanvasClick={(event) => console.log('Canvas Clicked', event)}
onLayoutChange={layout => console.log('Layout', layout)}
Expand Down

0 comments on commit 91a137f

Please sign in to comment.