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

@crudx/mui

v1.0.2

Published

Material UI + Emotion implementation of the `@crudx/core` CRUD surface. Drop `CrudPanelView` into a page and you get list, detail, create, update, delete, filtering, paging, and bulk actions out of the box — all driven by whatever transport adapter you wi

Readme

@crudx/mui

Material UI + Emotion implementation of the @crudx/core CRUD surface. Drop CrudPanelView into a page and you get list, detail, create, update, delete, filtering, paging, and bulk actions out of the box — all driven by whatever transport adapter you wire into the schema.

API-compatible with @crudx/shadcn; swap the import to switch UI stacks.


Installation

yarn add @crudx/mui @crudx/core @crudx/common \
  react react-dom \
  axios currency-symbol-map dayjs lodash numeral \
  @mui/material @mui/icons-material @emotion/react @emotion/styled \
  classnames react-hot-toast

# plus a transport adapter — choose one:
yarn add @crudx/graphql-apollo-adapter @apollo/client graphql
# or:
yarn add @crudx/rest-tanstack-adapter @tanstack/react-query

Everything in the first command is a peer dependency. The first row is the @crudx/* packages; the second row covers @crudx/{core,common}'s helpers (date / currency / numeric formatters, axios, lodash); the third is the MUI + Emotion stack; the fourth is the small utilities this package uses directly. Yarn 1 doesn't auto-install peer deps, so install them explicitly.

@crudx/mui no longer pulls in next/link directly — to keep client-side routing under Next.js, React Router, etc. wrap your app once with <LinkProvider Link={...} /> from @crudx/common. See @crudx/common for usage.

The transport choice only affects the schema slots fed into CrudPanelView; the component surface itself is transport-neutral.

See the main README for end-to-end live demos.


Core Component

| Name | Link | | --------------------- | --------------------------------------------------- | | CrudPanelView | link | | CrudFilterView | link | | CrudPageHeaderView | link | | CrudTableView | link | | CrudContentView | link | | CrudRowItemActions | link | | CrudContentHeaderView | link |

General Component

| Name | Link | | ---------------- | --------------------------------------------------- | | BreadcrumbView | link | | ButtonDropdown | link | | Dialog | link | | NumberFormatView | link | | RenderFlexView | link | | RenderNodeView | link | | TabView | link | | TooltipView | link |

Table Component

| Name | Link | | --------------------------- | -------------------------------------------------------------- | | Table | link | | TableSelectedBulkOptions | link | | TableSettingsDensityOptions | link | | TableSettingsOptions | link | | TableSettingsSortingOptions | link |