Skip to content

Commit 3f15309

Browse files
committed
fix: updated readme
1 parent dbeff5c commit 3f15309

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

packages/vyuh_node_flow/CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
## 0.3.10
22

33
- **FIX**: updated icons on demo, adjusted padding in node.
4-
- **FEAT**: refactoring and renaming across the board for better semantic naming.
5-
- **FEAT**: using LabelTheme.light/dark directly.
4+
- **BREAKING**: renamed types for better semantic clarity:
5+
- `HitType``HitTarget`
6+
- `AnnotationDependencyType``AnnotationBehavior`
7+
- `MinimapPosition``CornerPosition`
8+
- `ShapeOrientation``ShapeDirection`
9+
- `PathParameters``ConnectionPathParameters`
10+
- **FEAT**: using LabelTheme.light/dark static constants directly in NodeFlowTheme.
611

712
## 0.3.9
813

packages/vyuh_node_flow/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1754,7 +1754,7 @@ final controller = NodeFlowController<T>(
17541754
config: NodeFlowConfig(
17551755
showMinimap: true, // Enable minimap
17561756
isMinimapInteractive: true, // Allow click-to-navigate
1757-
minimapPosition: MinimapPosition.bottomRight, // Position on screen
1757+
minimapPosition: CornerPosition.bottomRight, // Position on screen
17581758
minimapSize: const Size(200, 150), // Minimap dimensions
17591759
),
17601760
);
@@ -1774,7 +1774,7 @@ You can also toggle the minimap at runtime:
17741774
controller.config.toggleMinimap();
17751775
17761776
// Change minimap position
1777-
controller.config.setMinimapPosition(MinimapPosition.topLeft);
1777+
controller.config.setMinimapPosition(CornerPosition.topLeft);
17781778
```
17791779

17801780
> [!TIP] The minimap automatically updates as you pan, zoom, and modify the

0 commit comments

Comments
 (0)