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

@quable/ui

v0.0.16

Published

A TypeScript React component library with Material-UI integration and custom styling

Readme

@quable/ui

A modern TypeScript React component library built on top of MUI v5 with a consistent look-and-feel and sensible defaults.

Features

  • 🚀 TypeScript types included
  • ⚛️ React 18 and 19 compatible
  • 🎨 MUI v5 theming out-of-the-box
  • 💅 Prebuilt CSS with SCSS-based styles in source
  • 📦 ESM-first with CJS fallback for Node bundlers
  • 🧪 Storybook and Jest test setup

Installation

🤝 We prefer pnpm but feel free to use npm, yarn, bun, or whatever package manager you like:

pnpm add @quable/ui

Additional peer dependencies

The library depends on several peer packages. Most are required by the library (install them in your host application). The Froala editor is optional and only needed if you use the RichTextEditor component.

Install required peers:

# UI & core
pnpm add @mui/material@^5 @emotion/react @emotion/styled @mui/icons-material@^5

# MUI extras
pnpm add @mui/x-data-grid-pro@^6 @mui/x-date-pickers-pro@^6

# Utilities & common extras
pnpm add moment react-arborist react-beautiful-dnd @types/react-beautiful-dnd react-dropzone react-i18next react-sortable-hoc react-toastify

Optional (only if you use RichTextEditor):

pnpm add froala-editor react-froala-wysiwyg

Usage

  1. Import the theme provider and styles in your app entry:
import { ThemeContextProvider } from '@quable/ui/theme'

import '@quable/ui/theme/index.css'
import '@quable/ui/index.css'
  1. Wrap your app with the ThemeContextProvider to get the exact theme:
import { ThemeContextProvider } from '@quable/ui/theme'
import { Button } from '@quable/ui'

import '@quable/ui/theme/index.css'
import '@quable/ui/index.css'

export function App() {
  return (
    <ThemeContextProvider>
      <Button color="primary">Click me!</Button>
    </ThemeContextProvider>
  )
}
  1. Import and use components as named imports:
import { Button, TextField, Autocomplete } from '@quable/ui'

export function MyComponent() {
  return (
    <div>
      <TextField label="Name" />
      <Button>Submit</Button>
    </div>
  )
}

Available components (selection)

  • Actions: Button
  • Forms: Autocomplete, Checkbox, Chip, ChoiceList, ColorPicker, DateField, DateRangePicker, DropZone, InlineError, Label, ListItems, NumberField, PasswordField, Radio, RichTextEditor, Select, Switch, TextArea, TextField, TimeField, ToggleButtonGroup
  • Table: TransferListInput

📖 Explore them all in our live Storybook documentation: https://quable-ui-storybook.web.app/

Special Component Documentation

Some components require additional setup or have specific considerations:

  • RichTextEditor - Comprehensive guide for using the rich text editor, including SSR setup for Next.js

Peer dependencies

Ensure the following are installed in your host app:

Required:

  • react >= 18.0.0 < 20.0.0
  • react-dom >= 18.0.0 < 20.0.0
  • @mui/material >= 5.18.0 < 8.0.0
  • @emotion/react ^11.14.0
  • @emotion/styled ^11.14.0
  • @mui/icons-material ^5.18.0

Optional (depending on components used):

  • @mui/x-data-grid-pro ^6.20.4
  • @mui/x-date-pickers-pro ^6.20.2
  • @types/react-beautiful-dnd ^13.1.8
  • froala-editor ^4.6.2
  • moment ^2.30.1
  • react-arborist ^3.4.3
  • react-beautiful-dnd ^13.1.1
  • react-dropzone ^14.3.8
  • react-froala-wysiwyg ^4.6.2
  • react-i18next >= 11.0.0 < 16.0.0
  • react-sortable-hoc ^2.0.0
  • react-toastify ^11.0.5

Project scripts

# Install dependencies
pnpm install

# Storybook (component docs & playground)
pnpm storybook

# Run tests
pnpm test

# Build the library (dist/)
pnpm build

# Lint & format
pnpm lint
pnpm format

Packaging

  • ESM entry: index.js
  • CJS entry: index.cjs
  • Types: index.d.ts
  • Theme provider: @quable/ui/theme
  • Styles: @quable/ui/theme/index.css and @quable/ui/index.css

License

MIT © Quable Team