Split embedded and standalone chart surfaces

This commit is contained in:
Mikhail Chusavitin
2026-03-15 21:41:38 +03:00
parent df91e24fea
commit 5ce37f9997
15 changed files with 1039 additions and 86 deletions

View File

@@ -4,7 +4,6 @@ type pageData struct {
Title string
HasSnapshot bool
Error string
InputJSON string
Meta []fieldRow
Sections []sectionView
}
@@ -16,6 +15,7 @@ type sectionView struct {
Rows []fieldRow
Columns []string
Items []tableRow
Groups []tableGroupView
}
type fieldRow struct {
@@ -28,3 +28,9 @@ type tableRow struct {
Cells map[string]string
RawCells map[string]any
}
type tableGroupView struct {
Title string
Columns []string
Items []tableRow
}