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

@ringpublishing/mui-components

v1.3.0

Published

Ring Publishing UI Components library

Downloads

618

Readme

@ringpublishing/mui-components

Package includes Ring Publishing MUI Components library based on MUI Components intended for internal and Ring Publishing customers use in Ring Publishing projects. Ring Publishing MUI Components are not intended to function as a general-purpose UI toolkit — they are only useful in the context of integrating with the Ring Publishing system.

Installation

npm install @ringpublishing/mui-components @mui/material

To use MUI-X Components you also need to install MUI-X packages:

npm install @mui/x-license @mui/x-data-grid @mui/x-data-grid-pro @mui/x-date-pickers @mui/x-date-pickers-pro @mui/x-tree-view

Install only the packages required by the components you use:

| Component | Required MUI-X package(s) | |---|---| | DataGrid | @mui/x-data-grid @mui/x-data-grid-pro @mui/x-license | | MultimediaGrid | @mui/x-data-grid @mui/x-data-grid-pro @mui/x-license | | DatePicker | @mui/x-date-pickers @mui/x-date-pickers-pro @mui/x-license | | DateTimePicker | @mui/x-date-pickers @mui/x-date-pickers-pro @mui/x-license | | TimePicker | @mui/x-date-pickers @mui/x-date-pickers-pro @mui/x-license | | TreeView | @mui/x-tree-view @mui/x-license |

Set up Ring theme

You can set up theme in your app by adding following code to your App.jsx file

import { ThemeConfig } from '@ringpublishing/mui-components';

<ThemeConfig mode={'dark'}>
    <App />
</ThemeConfig>

Use component in your app

import { Typography } from '@ringpublishing/mui-components';
<Typography variant="body1">Text</Typography>

License

Ring UI Components is built on top of MUI-X, which requires a commercial license for Pro/Premium features. Components such as DataGrid, MultimediaGrid, DatePicker, DateTimePicker, TimePicker and TreeView will not work without a valid license key.

Using your own MUI-X license

If you use this library outside Ring Publishing, you need to obtain a license directly from MUI and register it in your app before rendering any MUI-X component:

import { LicenseInfo } from '@mui/x-license';

LicenseInfo.setLicenseKey('YOUR_LICENSE_KEY');

Ring Publishing internal users

If your application runs inside the Ring Publishing ecosystem, the license key is provided by the platform via RingSDK:

RingSDK.api.config.getComponentsLicenseKey();

For questions specific to Ring Publishing integration, contact the Components Team: [email protected].

Documentation

See our Storybook.