Files
divkit/schema/div-tooltip.json
T
man-y 7f00e3b5aa Mark supported features of Flutter
e5a6a0f23d3e399f39c492c585359ca1666ccddf
2024-05-14 11:19:28 +03:00

65 lines
1.4 KiB
JSON

{
"type": "object",
"$description": "translations.json#/div_tooltip",
"platforms": [
"android",
"ios",
"web"
],
"properties": {
"id": {
"$ref": "common.json#/id",
"$description": "translations.json#/div_tooltip_id"
},
"div": {
"$ref": "div.json",
"$description": "translations.json#/div_tooltip_div"
},
"position": {
"type": "string",
"enum": [
"left",
"top-left",
"top",
"top-right",
"right",
"bottom-right",
"bottom",
"bottom-left",
"center"
],
"$description": "translations.json#/div_tooltip_position"
},
"duration": {
"$ref": "common.json#/non_negative_integer",
"default_value": "5000",
"$description": "translations.json#/div_tooltip_duration"
},
"offset": {
"$ref": "div-point.json",
"$description": "translations.json#/div_tooltip_offset"
},
"animation_in" : {
"$ref": "div-animation.json",
"$description": "translations.json#/div_tooltip_animation_in",
"platforms": [
"android",
"web"
]
},
"animation_out" : {
"$ref": "div-animation.json",
"$description": "translations.json#/div_tooltip_animation_out",
"platforms": [
"android",
"web"
]
}
},
"required": [
"id",
"div",
"position"
]
}