Files
divkit/schema/div-action-scroll-by.json
4eb0da 3dde020817 Typed scroll actions
commit_hash:cb30e48693fa779f09a5a169639c1062ba9048cd
2025-03-10 13:18:15 +03:00

48 lines
1.0 KiB
JSON

{
"allOf": [
{
"$ref": "div-action-scroll-base.json"
},
{
"type": "object",
"$description": "translations.json#/div_action_scroll_by",
"properties": {
"type": {
"type": "string",
"enum": [
"scroll_by"
]
},
"overflow": {
"$description": "translations.json#/div_action_scroll_overflow",
"type": "string",
"enum": [
"clamp",
"ring"
],
"default_value": "clamp"
},
"offset": {
"$description": "translations.json#/div_action_scroll_by_offset",
"type": "integer",
"default_value": "0"
},
"item_count": {
"$description": "translations.json#/div_action_scroll_by_item_count",
"type": "integer",
"default_value": "0"
}
},
"platforms": [
"android",
"ios",
"web"
],
"required": [
"type",
"id"
]
}
]
}