forked from divkit/divkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiv-shadow.json
More file actions
29 lines (29 loc) · 748 Bytes
/
div-shadow.json
File metadata and controls
29 lines (29 loc) · 748 Bytes
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
{
"type": "object",
"$description": "translations.json#/div_shadow",
"properties": {
"color": {
"$ref": "common.json#/color",
"$description": "translations.json#/div_shadow_color",
"default_value": "#000000"
},
"offset": {
"$ref": "div-point.json",
"$description": "translations.json#/div_shadow_offset"
},
"blur": {
"$ref": "common.json#/non_negative_integer",
"$description": "translations.json#/div_shadow_blur",
"default_value": "2"
},
"alpha": {
"type": "number",
"default_value": "0.19",
"constraint": "number >= 0.0 && number <= 1.0",
"$description": "translations.json#/div_shadow_alpha"
}
},
"required": [
"offset"
]
}