sunmao-ui/examples/checkbox/index.json
2021-11-06 11:22:01 +08:00

41 lines
1.1 KiB
JSON

{
"app": {
"version": "example/v1",
"metadata": { "name": "checkbox", "description": "checkbox" },
"spec": {
"components": [
{ "id": "root", "type": "chakra_ui/v1/root", "properties": {}, "traits": [] },
{
"id": "checkbox_1",
"type": "chakra_ui/v1/checkbox",
"properties": {
"text": { "raw": "Checkbox", "format": "plain" },
"defaultIsChecked": true
},
"traits": [
{
"type": "core/v1/slot",
"properties": { "container": { "id": "root", "slot": "root" } }
}
]
},
{
"id": "checkbox_2",
"type": "chakra_ui/v1/checkbox",
"properties": {
"text": { "raw": "Checkbox-disabled", "format": "plain" },
"defaultIsChecked": true,
"isDisabled": true
},
"traits": [
{
"type": "core/v1/slot",
"properties": { "container": { "id": "root", "slot": "root" } }
}
]
}
]
}
}
}