npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@coderic-labs/mui-tanstack-table

v0.0.11

Published

Material-UI rendering components for TanStack Table, with modular UI pieces and headless table integration.

Readme

📋 MUI TanStack Table

Material UI components for TanStack Table. You own the logic — we handle the UI.

Demo

🤔 Why MUI TanStack Table?

Define your table with TanStack Table. Render it with MTT.

No hidden state • No lock-in • Full control

📚 Documentation

See the Documentation for examples and detailed API documentation.

⚠️ This library assumes familiarity with @tanstack/react-table. Be sure to review the TanStack Table docs at https://tanstack.com/table/v8

⭐ Key Features

  • 🔧 Modular & Composable – Use only what you need. Mix features freely.
  • 🔐 Zero Coupling – Full separation between logic and UI.
  • 📊 Render-Only Components – Pure UI, powered by TanStack Table state.
  • ⚡ Built on TanStack Table – Keep full control of your data and behavior.
  • 🎨 Material UI – Consistent, accessible design out of the box.

🚀 Quick Start

Install package and peer dependencies.

npm install @coderic-labs/mui-tanstack-table @mui/material @mui/x-date-pickers @tanstack/react-table react react-dom @mui/icons-material @emotion/react @emotion/styled react-intl

Define columns.

import * as MTT from '@coderic-labs/mui-tanstack-table';
import { createColumnHelper } from '@tanstack/react-table';

const columnHelper = createColumnHelper<Developer>();

const columns = [
  columnHelper.display({
    id: 'select',
    header: MTT.TableRowSelectionHeader,
    cell: MTT.TableRowSelectionCell,
  }),
  columnHelper.accessor('name', {
    header: MTT.TableHeader,
    filter: MTT.predefinedColumnFilters.TextFilter,
    filterFn: 'includesString',
  })
];

Create a TanStack table.

import { useReactTable, getCoreRowModel, getFilteredRowModel, getPaginationRowModel, getSortedRowModel } from '@tanstack/react-table';

const table = useReactTable({
  data,
  columns,
  getCoreRowModel: getCoreRowModel(),
  getFilteredRowModel: getFilteredRowModel(),
  getPaginationRowModel: getPaginationRowModel(),
  getSortedRowModel: getSortedRowModel(),
});

Render table.

import * as MTT from '@coderic-labs/mui-tanstack-table';

<Stack>
  <MTT.TableToolbar>
    <MTT.TableResultsLabel table={table} />
    <MTT.TableColumnVisibilityToggle table={table} />
  </MTT.TableToolbar>
  <TableContainer component={Paper}>
    <MTT.Table table={table} />
  </TableContainer>
  <MTT.TablePaginationV2 table={table} />
</Stack>

🏗️ Architecture: Clean Separation

⚠️ CRITICAL PRINCIPLE: This library follows a strict render-only philosophy. Table logic and UI rendering are completely isolated.

Responsibility Breakdown

| Layer | Responsibility | Framework | | --- | --- | --- | | Table Logic | All filtering, sorting, pagination, state | TanStack Table (useReactTable) | | Table Render | Table UI | MTT Components |

✅ Features that are present

These are implemented or demonstrated in the current library:

  • Sorting
  • Filtering
  • Pagination
  • Row selection and bulk operations
  • Row expansion with detail rows
  • Row highlighting
  • Column visibility
  • Column pinning
  • Column ordering
  • Columns resizing
  • Sticky header/footer
  • Client-side and server-side usage
  • Ready-to-use filters and table controls.

❌ Features missing

These common table capabilities are not yet provided by the UI layer:

  • Virtualization - no row virtualization integration
  • Grouping/aggregation - no grouping or aggregation of rows and columns
  • Inline editing - not tested for editable cell components
  • Global filter input - not tested for top-level search/global filter component

❤️ Support

If this project helps you, consider supporting its development.

👉 https://github.com/sponsors/ErikParso

Suggestions, feedback, and contributions are welcome!