Grid Table v1.0.8: Mobile Layout Control + Server Pagination
@forgedevstack/grid-table just shipped v1.0.8, and this release is all about production workflows. Instead of adding random surface area, we focused on what usually breaks first in real products: m...

Source: DEV Community
@forgedevstack/grid-table just shipped v1.0.8, and this release is all about production workflows. Instead of adding random surface area, we focused on what usually breaks first in real products: mobile table behavior server-driven data paging UX polish for high-density grids docs/demos that are actually implementation-ready Highlights 1) New mobileLayout prop You can now choose mobile behavior explicitly: "scroll" (default): keep full table semantics with horizontal scroll "stacked": card-like row layout for narrow viewports <GridTable data={rows} columns={columns} mobileBreakpoint="tablet" mobileLayout="stacked" /> This gives product teams control instead of forcing one “mobile table” opinion. 2) Manual pagination for API slices Server paging is now first-class: paginationConfig.manualPagination paginationConfig.totalRowCount <GridTable data={rowsFromApi} columns={columns} paginationConfig={{ manualPagination: true, totalRowCount: totalFromApi, initialPage: 1, initialPageSiz