File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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:
17741774controller.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
You can’t perform that action at this time.
0 commit comments