mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
e1d54eb3b9
commit_hash:59e735f799f3b0e12362e20e6ab4603111e7adc6
75 lines
1.7 KiB
JSON
75 lines
1.7 KiB
JSON
{
|
|
"$description": "translations.json#/div_select",
|
|
"definitions": {
|
|
"option": {
|
|
"type": "object",
|
|
"properties": {
|
|
"text": {
|
|
"type": "string",
|
|
"$description": "translations.json#/div_select_option_text"
|
|
},
|
|
"value": {
|
|
"type": "string",
|
|
"$description": "translations.json#/div_select_option_value"
|
|
}
|
|
},
|
|
"required": [
|
|
"value"
|
|
]
|
|
}
|
|
},
|
|
"allOf": [
|
|
{
|
|
"$ref": "div-base.json"
|
|
},
|
|
{
|
|
"$ref": "div-font-base.json"
|
|
},
|
|
{
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"select"
|
|
]
|
|
},
|
|
"options": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/option",
|
|
"$description": "translations.json#/div_select_option"
|
|
},
|
|
"minItems": 1
|
|
},
|
|
"value_variable": {
|
|
"$ref": "div-variable-name.json",
|
|
"$description": "translations.json#/div_select_value_variable"
|
|
},
|
|
"hint_text": {
|
|
"type": "string",
|
|
"$description": "translations.json#/div_select_hint_text"
|
|
},
|
|
"hint_color": {
|
|
"$ref": "common.json#/color",
|
|
"default_value": "#73000000",
|
|
"$description": "translations.json#/div_select_hint_color"
|
|
},
|
|
"line_height": {
|
|
"$ref": "common.json#/non_negative_integer",
|
|
"$description": "translations.json#/div_select_line_height"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"platforms": [
|
|
"android",
|
|
"ios",
|
|
"web"
|
|
],
|
|
"required": [
|
|
"type",
|
|
"options",
|
|
"value_variable"
|
|
]
|
|
}
|