You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: support multiple destinations per source in link config
- Add LinkMap custom type with YAML unmarshaling for backward compatibility
- Support both old format (single string) and new format (array of strings)
- Update link manager to handle multiple destinations per source
- Update state tracking for multiple destinations
- Update all tests to use new LinkMap type
- Add documentation for multiple link destinations
Example usage:
link:
# Old format still works
"source": "dest"
# New format for multiple destinations
"source": ["dest1", "dest2", "dest3"]
Both formats can be mixed in the same component. The old format (`source: dest`) is automatically converted to a single-item array for backward compatibility.
0 commit comments