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

@typed-table/react

v0.2.4

Published

React integration package for typed-table.

Downloads

182

Readme

@typed-table/react

React integration for typed-table.

Installation

npm install @typed-table/react react

What It Provides

  • useTable
  • TableProvider
  • useTableContext
  • typed column helpers re-exported from the core package
  • local and remote table workflows with partial controlled state support
  • headless column sizing state and resolved header/cell width metadata
  • local row-order state through rowOrder, setRowOrder(...), moveRow(...), and clearRowOrder()
  • minimal row drag-and-drop helpers through getRowDropTargetIndex(...) and reorderRowIds(...)
  • minimal virtualization helpers for pin partitions and resolved width totals

Example

import { column, createColumns, useTable } from "@typed-table/react";

type User = {
  id: string;
  name: string;
  age: number;
};

const columns = createColumns<User>([
  column("name", { header: "Name", sortable: true, filterable: true }),
  column("age", { header: "Age", sortable: true }),
]);

export function UsersTable({ users }: { users: User[] }) {
  const table = useTable<User>({
    columns,
    data: users,
    getRowId: (row) => row.id,
    features: {
      sorting: true,
      filtering: true,
      pagination: true,
      rowOrdering: true,
    },
  });

  return (
    <table>
      <thead>
        <tr>
          {table.headers.map((header) => (
            <th key={header.id}>{header.label}</th>
          ))}
        </tr>
      </thead>
      <tbody>
        {table.rows.map((row) => (
          <tr key={row.id}>
            {row.cells.map((cell) => (
              <td key={cell.id}>{String(cell.render())}</td>
            ))}
          </tr>
        ))}
      </tbody>
    </table>
  );
}

Drag And Drop

import { reorderRowIds } from "@typed-table/react";

const orderedRowIds = users.map((user) => user.id);

function handleDragEnd(activeId: string, overId: string | null) {
  table.setRowOrder(reorderRowIds(orderedRowIds, activeId, overId));
}

Remote Features

  • mode: "remote" forwards pagination, sorting, filters, grouping, and grouped row-expansion state to your query function.
  • remoteLoading: { mode: "append" } supports append-oriented remote loading.
  • Optional dataset-level include/exclude selection is available through remoteRowSelection, including opt-in automatic resets when the remote query scope changes.

Notes

  • Grouping, grouped-row expansion, and faceting can stay local or be fulfilled by the remote query result when your server returns groupedRows and faceting metadata.
  • Visibility, ordering, pinning, and sizing changes in remote mode stay local and do not refetch.
  • Local row ordering requires an explicit getRowId(...) and acts as a base order before later local sorting or grouping.
  • The drag-and-drop helpers are library-agnostic and expect the caller to supply the flat row-id order for the reorder surface they are rendering.
  • Hidden columns do not automatically clear active sorting or filtering state.
  • The virtualization helpers stay library-agnostic; they partition pin state and derive widths, but they do not ship a virtualizer.

More