Files
divkit/schema/div-focus.json
T
saabrosov 83401480c1 Added div-focus.next_focus_ids.forward support.
commit_hash:bb7c5bfa4c9750f354b2473f954797a83b31dca2
2024-10-21 16:18:02 +03:00

69 lines
1.4 KiB
JSON

{
"type": "object",
"$description": "translations.json#/div_focus",
"properties": {
"background": {
"type": "array",
"items": {
"$ref": "div-background.json"
},
"$description": "translations.json#/div_focus_background"
},
"border": {
"$ref": "div-border.json",
"$description": "translations.json#/div_focus_border"
},
"on_focus": {
"type": "array",
"items": {
"$ref": "div-action.json"
},
"$description": "translations.json#/div_focus_on_focus"
},
"on_blur": {
"type": "array",
"items": {
"$ref": "div-action.json"
},
"$description": "translations.json#/div_focus_on_blur"
},
"next_focus_ids": {
"type": "object",
"$description": "translations.json#/div_focus_next_focus_ids",
"properties": {
"forward": {
"type": "string",
"platforms": [
"android",
"ios"
]
},
"right": {
"type": "string",
"platforms": [
"android"
]
},
"down": {
"type": "string",
"platforms": [
"android"
]
},
"left": {
"type": "string",
"platforms": [
"android"
]
},
"up": {
"type": "string",
"platforms": [
"android"
]
}
}
}
}
}