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

@miurajs/miura-ui

v0.1.9

Published

A modern, unstyled, accessible UI component library for [miura](https://github.com/miura). Build beautiful, accessible web apps with composable primitives—your way.

Readme

miura UI

A modern, unstyled, accessible UI component library for miura. Build beautiful, accessible web apps with composable primitives—your way.


✨ Philosophy

  • Unstyled by default: Bring your own design system, CSS, or utility classes. miura UI provides only structure and accessibility.
  • Accessible: All components are WAI-ARIA compliant, keyboard navigable, and screen reader friendly.
  • Composable: Designed for flexible composition and slotting.
  • Themeable: Use CSS custom properties or your own classes for theming.
  • Type-safe: Full TypeScript support.

🚀 Features

  • Unstyled, accessible primitives
  • Easy to style with CSS, Tailwind, or any system
  • Composable APIs and slot support
  • Focus on accessibility and developer experience
  • Ready for theming and customization

🧩 Component Primitives & Advanced Components

Primitives & Inputs

  • Button (<mui-button>)
  • IconButton (<mui-icon-button>)
  • Input (<mui-input>)
  • Textarea (<mui-textarea>)
  • Checkbox (<mui-checkbox>)
  • Radio (<mui-radio>)
  • Switch/Toggle (<mui-switch>)
  • Select/Dropdown (<mui-select>)
  • Slider (<mui-slider>)
  • Pin Input (<mui-pin-input>)
  • File Upload (<mui-file-upload>)
  • Combobox (<mui-combobox>)
  • Autocomplete (<mui-autocomplete>)
  • Segmented Control (<mui-segmented-control>)

Navigation

  • Tabs (<mui-tabs>)
  • Breadcrumbs (<mui-breadcrumbs>)
  • Pagination (<mui-pagination>)
  • Menu (<mui-menu>)
  • Dropdown (<mui-dropdown>)
  • Accordion (<mui-accordion>)
  • Stepper (<mui-stepper>)
  • Navigation Drawer (<mui-nav-drawer>)
  • Sidebar (<mui-sidebar>)
  • Command Bar (<mui-command-bar>)
  • Toolbar (<mui-toolbar>)

Overlay & Feedback

  • Dialog / Modal (<mui-dialog>)
  • Drawer (<mui-drawer>)
  • Popover (<mui-popover>)
  • Tooltip (<mui-tooltip>)
  • Alert (<mui-alert>)
  • Snackbar / Toast (<mui-snackbar>)
  • Progress (Linear, Circular) (<mui-progress>)
  • Spinner / Loader (<mui-spinner>)
  • Backdrop (<mui-backdrop>)
  • MessageBar (<mui-message-bar>)
  • TeachingBubble (<mui-teaching-bubble>)

Data Display

  • List (<mui-list>)
  • Table (<mui-table>)
  • Avatar (<mui-avatar>)
  • Badge (<mui-badge>)
  • Card (<mui-card>)
  • Divider (<mui-divider>)
  • Calendar (<mui-calendar>)
  • Date Picker (<mui-date-picker>)
  • Time Picker (<mui-time-picker>)
  • Tag / Chip (<mui-tag>)
  • Collapse (<mui-collapse>)
  • Timeline (<mui-timeline>)
  • DetailsList (<mui-details-list>)
  • Persona (<mui-persona>)
  • Shimmer (<mui-shimmer>)

Layout & Utility

  • Stack (vertical/horizontal) (<mui-stack>)
  • Grid (<mui-grid>)
  • Box (<mui-box>)
  • Container (<mui-container>)
  • Spacer (<mui-spacer>)
  • Portal (<mui-portal>)
  • Visually Hidden (<mui-visually-hidden>)
  • Scroll Area (<mui-scroll-area>)
  • Resizable (<mui-resizable>)
  • Draggable (<mui-draggable>)
  • FocusTrapZone (<mui-focus-trap-zone>)
  • Overlay (<mui-overlay>)

Typography

  • Text (<mui-text>)
  • Heading (<mui-heading>)
  • Link (<mui-link>)
  • Code (<mui-code>)
  • Kbd (Keyboard key) (<mui-kbd>)
  • Blockquote (<mui-blockquote>)
  • Label (<mui-label>)


📦 Installation

npm install @miurajs/ui

🛠 Usage Example

import '@miurajs/ui/button';
<mui-button>Click me</mui-button>

Styling

miura UI components are unstyled by default. Style them however you like:

mui-button button {
  background: #0078d4;
  color: #fff;
  border-radius: 4px;
  padding: 0.5em 1em;
}

Or use utility classes:

<mui-button class="bg-blue-600 text-white rounded px-4 py-2">Save</mui-button>

🎨 Theming

Override CSS custom properties or add your own classes for theming. Example:

:root {
  --mui-primary: #0078d4;
  --mui-radius: 4px;
}

♿ Accessibility

All components are:

  • WAI-ARIA compliant
  • Keyboard navigable
  • Screen reader friendly

🛤 Roadmap

  • [ ] Add more primitives and advanced components (see list above)
  • [ ] Provide accessibility documentation for each component
  • [ ] Add Storybook with usage and styling examples
  • [ ] Support for dark mode and theming tokens

🤝 Contributing

Contributions are welcome! Please open issues or PRs for new components, bug fixes, or documentation improvements.


📄 License

MIT