@likec4/generators
Advanced tools
Changelog
1.5.0 (2024-07-12)
Customize relationships per view
include
// Include elements if they have any relationships
// and customize these relationships
cloud.* <-> amazon.* with {
color red
line solid
},
// or only directed
customer -> cloud.* with {
// Override label
title 'Customer uses cloud'
}
<->
relationships (98c8b1f)monaco-vscode
(36be81e)Changelog
1.2.1 (2024-06-14)
Changelog
1.2.0 (2024-06-12)
Dynamic Views [Experimental]
Describe a particular use-case or scenario, with ad-hoc interactions (without polluting the model).
dynamic view example {
title 'Dynamic View Example'
customer -> web 'opens in browser'
web -> api 'POST request'
web <- api 'returns JSON'
}
Check example