undo simpler testing

This commit is contained in:
Gavin Nishizawa 2023-09-27 16:57:22 -07:00
parent 7b28c9290c
commit 6deac9b5bd
No known key found for this signature in database
GPG key ID: AE3B177777CE55CD

View file

@ -1,45 +1,48 @@
direction: right direction: right
# outer-grid -> outer-container outer-grid -> outer-container
# outer-grid: { outer-grid: {
grid-columns: 1 grid-columns: 1
# okok # -> container # -> etc inner-grid -> container -> etc
container: { container: {
label.near: top-left label.near: top-left
# edges not yet supported here since they must be direct grid children # edges not yet supported here since they must be direct grid children
a a
b b
# c c
a -> b a -> b
} }
# inner-grid: { inner-grid: {
# # grid-rows: 1 grid-rows: 1
# # 1 1
# # 2 2
# # 3 3
# # edges here are not supported yet since this is inside another grid # edges here are not supported yet since this is inside another grid
# }
# }
# outer-container: { # TODO should work now, update compile check
# grid -> container
# grid: {
# grid-rows: 1
# # direct child edges ok in least nested grid
# 1 -> 2 -> 3 # 1 -> 2 -> 3
# } }
}
# container: { outer-container: {
# # non grid edges ok grid -> container
# 4 -> 5 -> 6
# nested container: { grid: {
# # nested non grid edges ok grid-rows: 1
# 7 -> 8 # direct child edges ok in least nested grid
# } 1 -> 2 -> 3
# } }
# }
container: {
# non grid edges ok
4 -> 5 -> 6
nested container: {
# nested non grid edges ok
7 -> 8
}
}
}