forked from divkit/divkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiv-rounded-rectangle-shape.json
More file actions
37 lines (37 loc) · 1.02 KB
/
div-rounded-rectangle-shape.json
File metadata and controls
37 lines (37 loc) · 1.02 KB
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
{
"$description": "translations.json#/div_rounded_rectangle_shape",
"allOf": [
{
"$ref": "div-shape-base.json"
},
{
"type": "object",
"properties": {
"item_width": {
"$ref": "div-fixed-size.json",
"default_value": "{\"type\":\"fixed\",\"value\":10}",
"$description": "translations.json#/div_rounded_rectangle_shape_item_width"
},
"item_height": {
"$ref": "div-fixed-size.json",
"default_value": "{\"type\":\"fixed\",\"value\":10}",
"$description": "translations.json#/div_rounded_rectangle_shape_item_height"
},
"corner_radius": {
"$ref": "div-fixed-size.json",
"default_value": "{\"type\":\"fixed\",\"value\":5}",
"$description": "translations.json#/div_rounded_rectangle_shape_corner_radius"
},
"type": {
"type": "string",
"enum": [
"rounded_rectangle"
]
}
}
}
],
"required": [
"type"
]
}