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

@imola-solutions/ui

v0.4.2

Published

Reusable UI components (tables, drawers, forms, editors) extracted from BOPC-ITMP.

Downloads

1,260

Readme

@imola-solutions/ui

Reusable UI component library extracted from BOPC-ITMP. Pure MUI-based components with no domain coupling — safe to consume across Imola products.

Install

npm install @imola-solutions/ui

Peer dependencies (host-provided — you already have these in a React + MUI app):

  • react >=18, react-dom >=18
  • @mui/material >=5, @emotion/react, @emotion/styled

Everything else (dayjs, @phosphor-icons/react, tiptap, dnd-kit, react-hook-form, sonner, highlight.js, react-pdf, etc.) ships as a regular dependency and is installed for you automatically. You don't have to touch peer-dep resolution yourself.

Vite integration (important)

@imola-solutions/ui re-exports libraries whose transitive graph mixes ESM and CJS (hoist-non-react-statics, lowlight, @babel/runtime/regenerator, base64-js, unicode-trie). Vite's default optimizer works for most of them, but if you see errors like SyntaxError: The requested module '...' does not provide an export named 'default' or require is not defined, add this to your vite.config.{ts,js}:

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";

export default defineConfig({
  plugins: [react()],
  optimizeDeps: {
    include: [
      "@imola-solutions/ui",
      "@imola-solutions/ui > highlight.js",
      "@imola-solutions/ui > highlight.js/lib/core",
      "@imola-solutions/ui > react-pdf",
      "@imola-solutions/ui > lowlight",
      "hoist-non-react-statics",
    ],
  },
  ssr: {
    // If you use SSR/Next: mark the package as noExternal so its CJS deps
    // are bundled instead of required at runtime.
    noExternal: ["@imola-solutions/ui"],
  },
});

Consumers who ran npx @imola-solutions/setup v0.2.0+ have this snippet noted in their setup outro.

Usage

import { DataTable, DetailDrawer, PageHeader, Toaster } from "@imola-solutions/ui";

What's included

Tables & data

  • DataTable, EnhancedDataTable, TableToolbar, TableLegend, TableExportMenu

Drawers, dialogs, popovers

  • DetailDrawer, Dropdown, DropdownPopover, DropdownTrigger

Forms & inputs

  • MultiSelect, MultiSelectMenu, PhoneField, PronounSelect, FileDropzone, Option

Layout & feedback

  • PageHeader, UtilityHeader, EmptyStateGuide, StatCard, QuickLinkCard, PropertyList, PropertyItem, Presence, Tip

Providers

  • ThemeProvider, I18nProvider, LocalizationProvider, Rtl, SettingsProvider, UserConfigProvider

Editors & viewers

  • TextEditor, TextEditorToolbar, PDFViewer, CodeHighlighter

Error handling

  • RouteErrorBoundary, SectionErrorBoundary

Utilities

  • logger, dayjs (re-exported so @imola-solutions/chat shares the singleton)
  • formatDate, formatDateTime, formatCurrency, formatStatus
  • exportToCsv

Hooks

  • useMediaQuery, usePopover, useCountUp

What's NOT included (kept in BOPC or extracted separately)

  • AI-assisted components (feature gates, extract panels) — depend on AI service
  • Analytics — BOPC-specific
  • Domain-specific search bars (records-search-bar) — extract with domain package
  • Logos / legal footers — brand-specific

Building

npm run build

Outputs both ESM (dist/index.js) and CJS (dist/index.cjs).