mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
56 lines
1018 B
JSON
56 lines
1018 B
JSON
{
|
|
"description": "Template with array link",
|
|
"templates": {
|
|
"row": {
|
|
"type": "container",
|
|
"orientation": "horizontal",
|
|
"$items": "children"
|
|
}
|
|
},
|
|
"card": {
|
|
"log_id": "test",
|
|
"states": [
|
|
{
|
|
"state_id": 0,
|
|
"div": {
|
|
"type": "row",
|
|
"children": [
|
|
{
|
|
"type": "text",
|
|
"text": "Item 1"
|
|
},
|
|
{
|
|
"type": "text",
|
|
"text": "Item 2"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"expected": {
|
|
"card": {
|
|
"log_id": "test",
|
|
"states": [
|
|
{
|
|
"state_id": 0,
|
|
"div": {
|
|
"type": "container",
|
|
"orientation": "horizontal",
|
|
"items": [
|
|
{
|
|
"type": "text",
|
|
"text": "Item 1"
|
|
},
|
|
{
|
|
"type": "text",
|
|
"text": "Item 2"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|