sunmao-ui/examples/tabs/index.json
Yanzhen Yu bae3f5d5b7 feat(runtime): use render set to check all the slot elements hidden or not
only attach fallback element to the last hidden slot
2022-07-13 22:22:55 +08:00

123 lines
2.9 KiB
JSON

{
"app": {
"version": "example/v1",
"metadata": {
"name": "nested_components",
"description": "nested components example"
},
"spec": {
"components": [
{
"id": "root",
"type": "chakra_ui/v1/root",
"properties": {},
"traits": []
},
{
"id": "tabs",
"type": "chakra_ui/v1/tabs",
"properties": {
"tabNames": ["Tab One", "Tab Two"],
"initialSelectedTabIndex": 1
},
"traits": [
{
"type": "core/v1/slot",
"properties": {
"container": {
"id": "root",
"slot": "root"
}
}
}
]
},
{
"id": "btn",
"type": "chakra_ui/v1/button",
"properties": {
"text": {
"raw": "only in tab {{ $slot.tabIndex + 1 }}",
"format": "plain"
}
},
"traits": [
{
"type": "core/v1/slot",
"properties": {
"container": {
"id": "tabs",
"slot": "content"
},
"ifCondition": "{{ $slot.tabIndex === 0 }}"
}
}
]
},
{
"id": "text",
"type": "core/v1/text",
"properties": {
"value": {
"raw": "in tab3",
"format": "plain"
}
},
"traits": [
{
"type": "core/v1/slot",
"properties": {
"container": {
"id": "nested_tabs",
"slot": "content"
},
"ifCondition": "{{ $slot.tabIndex === 0 }}"
}
}
]
},
{
"id": "text_2",
"type": "core/v1/text",
"properties": {
"value": {
"raw": "also in tab3",
"format": "plain"
}
},
"traits": [
{
"type": "core/v1/slot",
"properties": {
"container": {
"id": "nested_tabs",
"slot": "content"
},
"ifCondition": "{{ $slot.tabIndex === 0 }}"
}
}
]
},
{
"id": "nested_tabs",
"type": "chakra_ui/v1/tabs",
"properties": {
"tabNames": ["Tab Three", "Tab Four"]
},
"traits": [
{
"type": "core/v1/slot",
"properties": {
"container": {
"id": "tabs",
"slot": "content"
}
}
}
]
}
]
}
}
}