refactor: reorganize Financials toolbar and flatten UI

- Group toolbar controls by function (Statement, Period, Mode, Scale)
- Move Trend Chart above Matrix, hidden by default
- Add chart toggle to toolbar actions
- Flatten all sections: remove card styling, use subtle dividers
- Update StatementRowInspector and NormalizationSummary with flat layout
This commit is contained in:
2026-03-16 22:31:45 -04:00
parent 4da9a04993
commit f4a0014572
5 changed files with 1148 additions and 646 deletions

View File

@@ -10,6 +10,8 @@ type IndexCardProps = {
positive?: boolean;
};
export type { IndexCardProps };
type IndexCardRowProps = {
cards: IndexCardProps[];
className?: string;