org.atsui.Stack
Schema Diff
+12 -15
1
1
{
2
2
"id": "org.atsui.Stack",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
-
"required": [
10
-
"children"
11
-
],
12
9
"properties": {
13
10
"gap": {
14
-
"enum": [
11
+
"type": "string",
12
+
"default": "medium",
13
+
"description": "Space between children.",
14
+
"knownValues": [
15
15
"small",
16
16
"medium",
17
17
"large"
18
-
],
19
-
"type": "string",
20
-
"default": "medium",
21
-
"description": "Space between children."
18
+
]
22
19
},
23
20
"align": {
24
-
"enum": [
21
+
"type": "string",
22
+
"default": "stretch",
23
+
"description": "Cross-axis alignment of children.",
24
+
"knownValues": [
25
25
"start",
26
26
"center",
27
27
"end",
28
28
"stretch"
29
-
],
30
-
"type": "string",
31
-
"default": "stretch",
32
-
"description": "Cross-axis alignment of children."
29
+
]
33
30
},
34
31
"children": {
35
32
"type": "array",
36
33
"items": {
37
-
"ref": "at.inlay.defs#node",
34
+
"ref": "at.inlay.defs#element",
38
35
"type": "ref"
39
36
}
40
37
}
41
38
}
42
39
},
43
40
"encoding": "application/json"
44
41
},
45
-
"description": "Arranges children vertically with consistent spacing. The host controls visual presentation."
42
+
"description": "Arranges children vertically with consistent spacing."
46
43
}
47
44
},
48
45
"$type": "com.atproto.lexicon.schema",
49
46
"lexicon": 1
50
47
}