Files
divkit/schema/div-input.json
T
4eb0da 8252f2b56e Input is_enabled property support
680101352f797f282de61c39780e6de009d518b1
2024-04-16 13:10:38 +03:00

150 lines
4.5 KiB
JSON

{
"java_extends": "DivBlockWithId",
"$description": "translations.json#/div_input",
"definitions": {
"native_interface": {
"type": "object",
"properties": {
"color": {
"$ref": "common.json#/color",
"$description": "translations.json#/div_input_native_interface_color"
}
},
"required": [
"color"
]
}
},
"allOf": [
{
"$ref": "div-base.json"
},
{
"properties": {
"type": {
"type": "string",
"enum": [
"input"
]
},
"font_size": {
"$ref": "common.json#/non_negative_integer",
"default_value": "12",
"$description": "translations.json#/div_font_size"
},
"font_size_unit": {
"$ref": "div-size-unit.json",
"default_value": "sp",
"$description": "translations.json#/div_font_size_unit"
},
"font_family": {
"type": "string",
"$description": "translations.json#/div_font_family"
},
"font_weight": {
"$ref": "div-font-weight.json",
"default_value": "regular",
"$description": "translations.json#/div_font_weight"
},
"text_color": {
"$ref": "common.json#/color",
"default_value": "#FF000000",
"$description": "translations.json#/div_text_color"
},
"text_variable": {
"$ref": "div-variable-name.json",
"$description": "translations.json#/div_input_text_variable"
},
"text_alignment_horizontal": {
"$ref": "div-alignment-horizontal.json",
"default_value": "start",
"$description": "translations.json#/div_text_text_alignment_horizontal",
"platforms": [
"android",
"web"
]
},
"text_alignment_vertical": {
"$ref": "div-alignment-vertical.json",
"default_value": "center",
"$description": "translations.json#/div_text_text_alignment_vertical",
"platforms": [
"android",
"web"
]
},
"line_height": {
"$ref": "common.json#/non_negative_integer",
"$description": "translations.json#/div_input_line_height"
},
"max_visible_lines": {
"$ref": "common.json#/positive_integer",
"$description": "translations.json#/div_input_max_visible_lines"
},
"letter_spacing": {
"type": "number",
"default_value": "0",
"$description": "translations.json#/div_input_letter_spacing"
},
"hint_text": {
"type": "string",
"$description": "translations.json#/div_input_hint_text"
},
"hint_color": {
"$ref": "common.json#/color",
"default_value": "#73000000",
"$description": "translations.json#/div_input_hint_color"
},
"highlight_color": {
"$ref": "common.json#/color",
"$description": "translations.json#/div_input_highlight_color"
},
"native_interface": {
"$ref": "#/definitions/native_interface",
"$description": "translations.json#/div_input_native_interface",
"platforms": [
"android"
]
},
"keyboard_type": {
"type": "string",
"enum": [
"single_line_text", "multi_line_text", "phone", "number", "email", "uri", "password"
],
"default_value": "multi_line_text",
"$description": "translations.json#/div_input_keyboard_type"
},
"select_all_on_focus": {
"$ref": "common.json#/boolean_int",
"default_value": "false",
"$description": "translations.json#/div_input_select_all_on_focus"
},
"mask": {
"$ref": "div-input-mask.json",
"$description": "translations.json#/div_input_mask"
},
"validators": {
"type": "array",
"$description": "translations.json#/div_input_validators",
"platforms": [
"android",
"ios"
],
"items": {
"$ref": "div-input-validator.json"
}
},
"is_enabled": {
"$ref": "common.json#/boolean_int",
"default_value": "true",
"$description": "translations.json#/div_input_is_enabled"
}
}
}
],
"required": [
"type",
"text_variable"
]
}