mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
34cfd715ad
div-radial-gradient params
32 lines
655 B
JSON
32 lines
655 B
JSON
{
|
|
"type": "object",
|
|
"$description": "translations.json#/div_gradient_linear",
|
|
"properties": {
|
|
"colors": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "common.json#/color"
|
|
},
|
|
"minItems": 2,
|
|
"clientMinItems": 2,
|
|
"$description": "translations.json#/div_gradient_colors"
|
|
},
|
|
"angle": {
|
|
"type": "integer",
|
|
"constraint": "number >= 0 && number <= 360",
|
|
"default_value": "0",
|
|
"$description": "translations.json#/div_gradient_linear_angle"
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"gradient"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"colors",
|
|
"type"
|
|
]
|
|
}
|