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

@open-ui-kit/core

v2.2.0

Published

A comprehensive React component library built on Material-UI

Readme

Open UI Kit Core

A React component library and theme system built on Material UI, with Open UI Kit defaults for product interfaces.

npm Storybook License

What you get

  • Production-ready components for application screens, forms, navigation, feedback, data display, and charts.
  • Open UI Kit light/dark and IoC themes through ThemeProvider.
  • Material UI compatibility for sx, slots, theme overrides, and familiar component APIs.
  • TypeScript support with exported component and theme types.
  • Interactive examples in Storybook for component states, variants, and composition patterns.

Installation

Install the package and required Material UI peers:

npm install @open-ui-kit/core @mui/material @emotion/react @emotion/styled
yarn add @open-ui-kit/core @mui/material @emotion/react @emotion/styled
pnpm add @open-ui-kit/core @mui/material @emotion/react @emotion/styled

Required runtime peers:

  • react >=18
  • react-dom >=18
  • @mui/material >=7
  • @emotion/react >=11
  • @emotion/styled >=11

Some components need additional peers, such as icons, date pickers, routing, motion, toast, or virtualization packages. Install those only when your app uses the related components.

Basic usage

Import the typography CSS once near your app root, then wrap the app with ThemeProvider.

import "@open-ui-kit/core/typography.css";
import { Button, Stack, ThemeProvider, Typography } from "@open-ui-kit/core";

export function App() {
  return (
    <ThemeProvider>
      <Stack spacing={2} sx={{ maxWidth: 420 }}>
        <Typography variant="h4">Open UI Kit is ready</Typography>
        <Typography color="text.secondary">
          The button below uses Open UI Kit theme tokens and Material UI props.
        </Typography>
        <Button variant="primary">Create project</Button>
      </Stack>
    </ThemeProvider>
  );
}

Theme mode

Use useThemeMode() inside ThemeProvider to read or change the active built-in theme. Open UI Kit ships ThemeMode.Light, ThemeMode.Dark, and ThemeMode.IoC.

import {
  Button,
  ThemeMode,
  ThemeProvider,
  useThemeMode,
} from "@open-ui-kit/core";
import type { ReactNode } from "react";

export function ThemeSelector() {
  const { mode, setTheme } = useThemeMode();

  return (
    <Button
      variant="outlined"
      onClick={() =>
        setTheme(mode === ThemeMode.IoC ? ThemeMode.Light : ThemeMode.IoC)
      }
    >
      Use {mode === ThemeMode.IoC ? "light" : "IoC"} theme
    </Button>
  );
}

export function IocApp({ children }: { children: ReactNode }) {
  return <ThemeProvider defaultMode={ThemeMode.IoC}>{children}</ThemeProvider>;
}

Use defaultMode={ThemeMode.Dark} on ThemeProvider when an app needs to start in dark mode. Use defaultMode={ThemeMode.IoC} when an app should start with the IoC theme.

IoC palette helpers such as iocGradients, iocGlows, and iocShape are exported for IoC-specific product surfaces. Reusable Open UI Kit components still read semantic colors from theme.palette.vars.

Local development

From the repository root:

yarn install
yarn build
yarn workspace @open-ui-kit/core storybook

Useful package commands:

yarn workspace @open-ui-kit/core build
yarn workspace @open-ui-kit/core test
yarn workspace @open-ui-kit/core storybook:build

Documentation

  • Storybook: https://main--68cc22452afe30d90e4ca977.chromatic.com
  • Installation guide: https://github.com/outshift-open/open-ui-kit/blob/main/docs/data/material/getting-started/installation/installation.md
  • Usage guide: https://github.com/outshift-open/open-ui-kit/blob/main/docs/data/material/getting-started/usage/usage.md
  • Theming guide: https://github.com/outshift-open/open-ui-kit/blob/main/docs/data/material/getting-started/theming/theming.md
  • Migration notes: https://github.com/outshift-open/open-ui-kit/blob/main/MIGRATION.md
  • Contributing: https://github.com/outshift-open/open-ui-kit/blob/main/CONTRIBUTING.md

License

Open UI Kit Core is licensed under the Apache License 2.0.