We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currenly only buttons of the number type are supported.
number
It would be great to support other atomic types: integer, string, boolean:
integer
string
boolean
{ "title": "Configuration title", "type": "object", "properties": { "int_button_field": { "description": "Button description", "title": "Int Button Field", "type": "integer", "dial:widget": "buttons", "oneOf": [ { "const": 10, "title": "Title1", "dial:widgetOptions": { "confirmationMessage": null, "populateText": null, "submit": false } }, { "const": 20, "title": "Title2", "dial:widgetOptions": { "confirmationMessage": null, "populateText": null, "submit": false } } ] } }, "additionalProperties": false }
{ "title": "Configuration title", "type": "object", "properties": { "int_button_field": { "description": "Button description", "title": "Int Button Field", "type": "string", "dial:widget": "buttons", "oneOf": [ { "const": "A", "title": "Title1", "dial:widgetOptions": { "confirmationMessage": null, "populateText": null, "submit": false } }, { "const": "B", "title": "Title2", "dial:widgetOptions": { "confirmationMessage": null, "populateText": null, "submit": false } } ] } }, "additionalProperties": false }
{ "title": "Configuration title", "type": "object", "properties": { "int_button_field": { "description": "Button description", "title": "Int Button Field", "type": "boolean", "dial:widget": "buttons", "oneOf": [ { "const": true, "title": "Title1", "dial:widgetOptions": { "confirmationMessage": null, "populateText": null, "submit": false } }, { "const": false, "title": "Title2", "dial:widgetOptions": { "confirmationMessage": null, "populateText": null, "submit": false } } ] } }, "additionalProperties": false }
The text was updated successfully, but these errors were encountered:
Gimir
No branches or pull requests
Currenly only buttons of the
number
type are supported.It would be great to support other atomic types:
integer
,string
,boolean
:integer
string
boolean
The text was updated successfully, but these errors were encountered: