Skip to content

Commit 7a019a6

Browse files
committed
chore(release): publish packages
- [email protected]
1 parent 7c12d7f commit 7a019a6

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

packages/vyuh_node_flow/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.7.1
2+
3+
- **FEAT**: Add startGap and endGap support for connections.
4+
15
## 0.7.0
26

37
- **FEAT**: Add animation support for temporary connections and update connection rendering logic, Add configurable gaps, colors, and borders for connection endpoints.

packages/vyuh_node_flow/lib/graph/layers/connection_labels_layer.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ class _ConnectionLabelWidget<T> extends StatelessWidget {
186186
labelTheme: currentTheme.labelTheme,
187187
pathCache: controller.connectionPainter.pathCache,
188188
portExtension: currentTheme.connectionTheme.portExtension,
189-
startGap: connection.startGap ?? currentTheme.connectionTheme.startGap,
189+
startGap:
190+
connection.startGap ?? currentTheme.connectionTheme.startGap,
190191
endGap: connection.endGap ?? currentTheme.connectionTheme.endGap,
191192
);
192193

packages/vyuh_node_flow/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: vyuh_node_flow
22
description: A flexible, high-performance node-based flow editor for Flutter. Build visual programming interfaces, workflow editors, diagrams, and data pipelines.
3-
version: 0.7.0
3+
version: 0.7.1
44

55
homepage: https://vyuh.tech
66
repository: https://github.com/vyuh-tech/vyuh_node_flow

0 commit comments

Comments
 (0)