Update react-table to v8 (#2131)

Updating react-table to v8. 
- Migrating the existing table to v8
- Preserving the visuals and logic

What's done?
- Cell components are moved under `Cells` folder
- Old styles for react-table-6 is removed.
- Old types are removed
- All logic was preserved
- Some cell components are removed for simplicity


Fixes: https://github.com/grafana/oss-big-tent-squad/issues/125
This commit is contained in:
ismail simsek
2025-12-10 19:25:04 +01:00
committed by GitHub
parent e073382983
commit cc492b916d
20 changed files with 931 additions and 745 deletions

View File

@@ -0,0 +1,6 @@
export const DEFAULT_OK_COLOR = 'rgb(56, 189, 113)';
export const DEFAULT_PROBLEM_COLOR = 'rgb(215, 0, 0)';
export const EVENT_POINT_SIZE = 16;
export const INNER_POINT_SIZE = 0.6;
export const HIGHLIGHTED_POINT_SIZE = 1.1;
export const EVENT_REGION_HEIGHT = Math.round(EVENT_POINT_SIZE * 0.6);