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

@linagora/twake-mui

v1.6.1

Published

MUI v7 theme system for Twake applications

Readme

twake-mui

MUI v7 theme system for Twake Calendar and other Twake applications.

Requirements

You need to use Node 24+

Installation

npm install @linagora/twake-mui

Don't forget to also install peerDependencies (see package.json)

Usage

Basic Usage

Wrap your app with the Provider to get the Material-UI theme

import { TwakeMuiThemeProvider } from '@linagora/twake-mui'

function App() {
  return (
    <TwakeMuiThemeProvider>{/* Your application */}</TwakeMuiThemeProvider>
  )
}

Then you can use Material-UI components from Twake-mui

import { Button } from '@linagora/twake-mui'

function Component() {
  return (
    <Button>Label</Button>
  )
}

Accessing Theme

import { useTheme } from '@linagora/twake-mui'

function MyComponent() {
  const theme = useTheme()
  const primaryColor = theme.palette.primary.main
  // ...
}

Features

  • Palette System: Techno-independent color definitions
  • Component Overrides: Pre-styled Button, TextField, Dialog components
  • MUI v7 Compatible: Built for Material-UI v7

Development

This package is part of the twake-ui monorepo.

Build

npm run build

Storybook

Use Storybook for isolated component development and visual testing:

# Start Storybook development server
npm run doc

# Build static Storybook
npm run build:doc

Stories are located in:

  • src/components/**/*.stories.tsx - Component stories (e.g., Avatar)
  • src/stories/*.stories.tsx - Override showcase stories (Button, Input, Dialog, etc.)

Access Storybook at http://localhost:6006

Visual Regression Testing

We use Argos for visual regression testing. Screenshots are automatically captured from Storybook stories during CI.

To run visual tests locally (requires ARGOS_TOKEN):

npm run build:doc
npm run screenshots

To add visual regression coverage to a story:

export const MyStory = {
  tags: ['argos']
}

Local Development

To use this package locally in another project:

# In twake-ui/packages/twake-mui
npm link

# In your project
npm link twake-mui

Or use file path in package.json:

{
  "dependencies": {
    "@linagora/twake-mui": "file:../twake-ui/packages/twake-mui"
  }
}

About dependencies

Because of inter-dependencies between these packages:

  • storybook, @storybook/*
  • vite, @vitejs/*
  • vitest, @vitest/*
  • @argos-ci/*, playwright

you may encounter problem to install packages. So you can:

rm -rf node_modules packages/twake-mui/node_modules package-lock.json
npm install

We can maybe use pnpm in the future that support hoisting disabling via .npmrc

License

MIT