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

60 lines
1.2 KiB
JSON

{
"app": {
"version": "example/v1",
"metadata": {
"name": "tooltip",
"description": "tooltip"
},
"spec": {
"components": [
{
"id": "root",
"type": "chakra_ui/v1/root",
"properties": {},
"traits": []
},
{
"id": "tooltip",
"type": "chakra_ui/v1/tooltip",
"properties": {
"text": "hello, tooltip!",
"shouldWrapChildren": true
},
"traits": [
{
"type": "core/v1/slot",
"properties": {
"container": {
"id": "root",
"slot": "root"
}
}
}
]
},
{
"id": "button",
"type": "chakra_ui/v1/button",
"properties": {
"text": {
"raw": "hover me!",
"format": "plain"
}
},
"traits": [
{
"type": "core/v1/slot",
"properties": {
"container": {
"id": "tooltip",
"slot": "content"
}
}
}
]
}
]
}
}
}