Files
divkit/schema/div-actionable.json
T
nikita-kladov 3db3e2182e Add view press and release support
commit_hash:2290b921240dc00be79c6e650d981b465674bf12
2024-12-20 16:51:58 +03:00

94 lines
2.2 KiB
JSON

{
"properties": {
"action": {
"$ref": "div-action.json",
"$description": "translations.json#/div_actionable_action"
},
"actions": {
"type": "array",
"items": {
"$ref": "div-action.json"
},
"$description": "translations.json#/div_actionable_actions"
},
"longtap_actions": {
"type": "array",
"items": {
"$ref": "div-action.json"
},
"$description": "translations.json#/div_actionable_longtap_actions",
"platforms": [
"android",
"ios",
"web"
]
},
"doubletap_actions": {
"type": "array",
"items": {
"$ref": "div-action.json"
},
"$description": "translations.json#/div_actionable_doubletap_actions",
"platforms": [
"android",
"ios",
"web"
]
},
"press_start_actions": {
"type": "array",
"items": {
"$ref": "div-action.json"
},
"$description": "translations.json#/div_actionable_press_start_actions",
"platforms": [
"web",
"android"
]
},
"press_end_actions": {
"type": "array",
"items": {
"$ref": "div-action.json"
},
"$description": "translations.json#/div_actionable_press_end_actions",
"platforms": [
"web",
"android"
]
},
"hover_start_actions": {
"type": "array",
"items": {
"$ref": "div-action.json"
},
"$description": "translations.json#/div_actionable_hover_start_actions",
"platforms": [
"web",
"android"
]
},
"hover_end_actions": {
"type": "array",
"items": {
"$ref": "div-action.json"
},
"$description": "translations.json#/div_actionable_hover_end_actions",
"platforms": [
"web",
"android"
]
},
"action_animation": {
"$ref": "div-animation.json",
"default_value": "{\"name\": \"fade\", \"start_value\": 1, \"end_value\": 0.6, \"duration\": 100 }",
"$description": "translations.json#/div_actionable_action_animation",
"platforms": [
"android",
"ios",
"web"
]
}
}
}