org.atsui.Row
Schema Diff
+9 -0
1
1
{
2
2
"id": "org.atsui.Row",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"children"
11
11
],
12
12
"properties": {
13
13
"gap": {
14
14
"type": "string",
15
15
"default": "medium",
16
+
"maxLength": 32,
16
17
"description": "Space between children.",
17
18
"knownValues": [
18
19
"small",
19
20
"medium",
20
21
"large"
21
22
]
22
23
},
23
24
"align": {
24
25
"type": "string",
25
26
"default": "center",
27
+
"maxLength": 32,
26
28
"description": "Cross-axis (vertical) alignment of children.",
27
29
"knownValues": [
28
30
"start",
29
31
"center",
30
32
"end",
31
33
"stretch"
32
34
]
33
35
},
34
36
"inset": {
35
37
"type": "boolean",
36
38
"description": "Whether this container has inset padding. The theme controls the amount."
37
39
},
38
40
"children": {
39
41
"type": "array",
40
42
"items": {
41
43
"ref": "at.inlay.defs#element",
42
44
"type": "ref"
43
45
}
44
46
}
45
47
}
46
48
},
47
49
"encoding": "application/json"
48
50
},
51
+
"output": {
52
+
"schema": {
53
+
"ref": "at.inlay.defs#response",
54
+
"type": "ref"
55
+
},
56
+
"encoding": "application/json"
57
+
},
49
58
"description": "Arranges children horizontally with consistent spacing."
50
59
}
51
60
},
52
61
"$type": "com.atproto.lexicon.schema",
53
62
"lexicon": 1
54
63
}