1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use ;
/// Direction for flex layout of child nodes.
///
/// This enum maps to CSS flexbox `flex-direction` values and determines
/// how child nodes are arranged within their parent container.
///
/// # Example
///
/// ```yaml
/// node_layout:
/// _root:
/// flex:
/// direction: "column_reverse"
/// wrap: true
/// gap: "4"
/// _processes_container:
/// flex:
/// direction: "row"
/// wrap: true
/// gap: "4"
/// proc_app_dev:
/// flex:
/// direction: "column"
/// wrap: false
/// gap: "2"
/// ```