org.atsui.Stack
Schema Diff
+13 -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
+
"center",
26
27
"end",
27
28
"stretch"
28
-
],
29
-
"type": "string",
30
-
"default": "stretch",
31
-
"description": "Cross-axis alignment of children."
29
+
]
32
30
},
33
31
"children": {
34
32
"type": "array",
35
33
"items": {
36
-
"ref": "at.inlay.defs#node",
34
+
"ref": "at.inlay.defs#element",
37
35
"type": "ref"
38
36
}
39
37
}
40
38
}
41
39
},
42
40
"encoding": "application/json"
43
41
},
44
-
"description": "Arranges children vertically with consistent spacing. The host controls visual presentation."
42
+
"description": "Arranges children vertically with consistent spacing."
45
43
}
46
44
},
47
45
"$type": "com.atproto.lexicon.schema",
48
46
"lexicon": 1
49
47
}