Row labels still did not fit, because the override was landing on the wrong column. restore_column_size_overrides maps the key "__ROW_PATH__" to index tree_header_offset - 1, which with two group_by levels is index 2 — the first data column. That column is the grand total, which the stylesheet hides, so pinning it changed nothing visible. The row labels are separate columns (rt-col-0 and rt-col-1 here, one per group_by level), so each is measured on its own and set by index through regular-table's saveColumnSizes / restoreColumnSizes, which are index-based and public. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| public | ||
| src | ||
| vendor | ||
| .gitignore | ||
| eslint.config.js | ||
| index.html | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| vite.config.js | ||
React + Vite
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Oxc
- @vitejs/plugin-react-swc uses SWC
React Compiler
The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.
Expanding the ESLint configuration
If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the TS template for information on how to integrate TypeScript and typescript-eslint in your project.