added inputProps to text, checkbox widget type
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Sebastian Frank 2022-11-28 04:45:17 +00:00
parent bbc1881faf
commit 9e714c734e
Signed by: apairon
GPG Key ID: 9A9F8F10A937E426

View File

@ -11,13 +11,23 @@
{
"$ref": "#/definitions/minimum",
"patternProperties": {
"^x-.*|widget$": { "$comment": "stub for allOf" }
"^x-.*|widget|inputProps$": { "$comment": "stub for allOf" }
},
"allOf": [
{
"properties": {
"widget": { "enum": ["text", "checkbox"] }
}
},
{
"properties": {
"inputProps": {
"type": "object",
"properties": {
"multiline": { "type": "boolean" }
}
}
}
}
]
},