Files
divkit/schema/div-action-set-cursor-position.json
grechka62 d7136391e3 Support set_cursor_position action
commit_hash:ceac23ba85c9d1528e011df0b0b85e2ba302c054
2026-04-24 17:26:20 +03:00

53 lines
976 B
JSON

{
"definitions": {
"position": {
"type": "object",
"$description": "translations.json#/div_action_set_cursor_position_position",
"properties": {
"type": {
"type": "string",
"enum": [
"absolute"
]
},
"start": {
"type": "integer"
},
"end": {
"type": "integer"
}
},
"required": [
"type",
"start"
]
}
},
"type": "object",
"$description": "translations.json#/div_action_set_cursor_position",
"properties": {
"type": {
"type": "string",
"enum": [
"set_cursor_position"
]
},
"id": {
"type": "string",
"$description": "translations.json#/div_action_set_cursor_position_id"
},
"position": {
"$ref": "#/definitions/position"
}
},
"platforms": [
"android",
"web"
],
"required": [
"type",
"id",
"position"
]
}