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

@mui-toolpad-extended-tuni/core

v3.3.3

Published

Core shared dependencies for MUI Toolpad Extended TUNI microservices

Readme

@mui-toolpad-extended-tuni/core

Core shared package for MUI Toolpad Extended TUNI microservices.

This package contains shared dependencies used by all microservices in the MUI Toolpad Extended TUNI ecosystem.

Installation

npm install @mui-toolpad-extended-tuni/core

Note: This package is typically installed as a peer dependency of @mui-toolpad-extended-tuni/main or other extension packages. You usually don't need to install it directly unless you're using it standalone.

Required Peer Dependencies

This package requires the following peer dependencies to be installed:

React & UI Framework

  • @emotion/react: ^11.0.0
  • @emotion/styled: ^11.0.0
  • @mui/icons-material: ^7.0.0
  • @mui/material: ^7.0.0
  • @mui/x-date-pickers: ^7.0.0
  • @toolpad/core: ^0.16.0
  • react: ^19.0.0
  • react-dom: ^19.0.0
  • react-router-dom: ^7.0.0
  • zustand: ^4.5.0

Installation Example

npm install @mui-toolpad-extended-tuni/core \
  @emotion/react @emotion/styled \
  @mui/icons-material @mui/material @mui/x-date-pickers \
  @toolpad/core \
  react react-dom react-router-dom zustand

Features

Events

  • EventBus: Global event bus for application-wide communication
  • UserBus: User-specific event bus with hooks for user management
  • Hooks: useCurrentUser, useUserActions, useUserPreferences

Navigation

  • NavigationRegistry: Microservice registration and routing
  • Navigation stores and hooks for managing application navigation
  • Hooks: useMicroserviceRoutes, useMicroserviceNavigation, useNavigationSectionManager, useSyncNavigationFilters

Common UI Components

  • GridLayout components and utilities
  • Panel system (Expandable, Movable, Resizable, Scrollable)
  • Scroller component
  • LoadingScreen, CenteredHeading, CollapsingButtons, CompoundPanel
  • SpeedDialButton

Dialogs

  • DialogOpener, FormDialog, ExtendedDialog
  • Dialog registry system

Notifications

  • Notification component and store
  • Integration with notistack

Utilities

  • Case conversion utilities
  • Date parsing utilities
  • Cookie utilities
  • API prefix utilities
  • String utilities (slugify)

Usage

import {
  // Events
  EventBus,
  eventBus,
  userBus,
  useCurrentUser,
  
  // Navigation
  registerMicroservice,
  useMicroserviceNavigation,
  useNavigationStore,
  
  // Components
  GridItemProvider,
  ResponsiveGridLayout,
  Panel,
  
  // Dialogs
  DialogOpener,
  FormDialog,
  
  // Notifications
  Notifications,
  useNotificationStore,
  
  // Utils
  parseDate,
  slugify,
  getCookie,
} from '@mui-toolpad-extended-tuni/core';

License

MIT