generator-nitro
Version:
Yeoman generator for the nitro frontend framework
33 lines (32 loc) • 612 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "/atom/checkbox",
"title": "checkbox",
"description": "A checkbox atom with optional label",
"type": "object",
"properties": {
"tag": {
"enum": ["div", "li", "span"]
},
"label": {
"type": "string"
},
"inputId": {
"type": "string"
},
"inputName": {
"type": "string"
},
"inputValue": {
"type": "string"
},
"checked": {
"type": "boolean"
},
"state": {
"enum": ["", "disabled"]
}
},
"required": ["tag", "inputId", "inputName", "inputValue"],
"dependencies": {}
}