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

54 lines
1.2 KiB
JSON

{
"app": {
"version": "example/v1",
"metadata": {
"name": "input_component",
"description": "input component example"
},
"spec": {
"components": [
{
"id": "root",
"type": "chakra_ui/v1/root",
"properties": {},
"traits": []
},
{
"id": "input",
"type": "chakra_ui/v1/input",
"properties": {
"variant": "filled",
"placeholder": "This a example",
"size": "lg",
"colorScheme": "pink",
"focusBorderColor": "pink.500",
"isDisabled": false,
"isRequired": true,
"left": {
"type": "addon",
"children": "https://"
},
"right": {
"type": "element",
"children": ".com",
"color": "red",
"fontSize": "16px"
}
},
"traits": [
{
"type": "core/v1/slot",
"properties": {
"container": {
"id": "root",
"slot": "root"
}
}
}
]
}
]
}
}
}