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

56 lines
1.2 KiB
JSON

{
"java_extends": "DivBlockWithId",
"$description": "translations.json#/div_separator",
"definitions": {
"style": {
"type": "object",
"properties": {
"color": {
"$ref": "common.json#/color",
"default_value": "#14000000",
"$description": "translations.json#/div_separator_style_color"
},
"orientation": {
"type": "string",
"enum": [
"vertical",
"horizontal"
],
"default_value": "horizontal",
"$description": "translations.json#/div_separator_style_orientation"
}
}
}
},
"allOf": [
{
"$ref": "div-base.json"
},
{
"$ref": "div-actionable.json"
},
{
"properties": {
"delimiter_style": {
"$ref": "#/definitions/style",
"$description": "translations.json#/div_separator_delimiter_style"
},
"type": {
"type": "string",
"enum": [
"separator"
]
}
},
"platforms": [
"android",
"ios",
"web"
],
"required": [
"type"
]
}
]
}