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

@freedom-code-compliance/fcc-redesign

v0.1.64

Published

Reusable FCC design system components and theme for fccPRO and fccOPS.

Downloads

2,709

Readme

FCC Redesign

Design system and component library for FCC, built with React + Vite. It now supports both:

  • local demo development via the Vite app
  • packaged component-library builds for reuse in fccPRO and fccOPS

FCC Redesign Preview

Getting Started

npm install
npm run dev

Library Build

Build the publishable component package:

npm run build

This emits:

  • dist/index.js for ESM consumers
  • dist/index.cjs for CommonJS consumers
  • dist/styles.css for the shared FCC theme and component styles

If you still want a static build of the demo app, use:

npm run build:demo

Using In Other Projects

Install the published package in fccPRO or fccOPS, then import the styles and components:

import '@freedom-code-compliance/fcc-redesign/styles.css'
import { FCCDesignProvider, Button, Card } from '@freedom-code-compliance/fcc-redesign'

function App() {
  return (
    <FCCDesignProvider>
      <Card>
        <Button>Open inspection</Button>
      </Card>
    </FCCDesignProvider>
  )
}

FCCDesignProvider wraps ThemeProvider and ToastProvider so consuming apps can adopt the design system with a single provider. If an app needs custom theme wiring, ThemeProvider, useTheme, ToastProvider, and useToast are also exported individually.

Shared Calls Sidepanel

FCCCallsSidePanel is the reusable calls panel surface for fccPRO and fccOPS. It is data-driven, so each app can keep its own Twilio/Supabase logic and pass normalized call history, voicemail, callback, and handler props into the shared UI.

import { FCCCallsSidePanel } from '@freedom-code-compliance/fcc-redesign'

<FCCCallsSidePanel
  history={recentCalls}
  voicemails={voicemails}
  callbacks={callbacks}
  currentUserId={user.id}
  onDial={(number) => startOutboundCall(number)}
  onOpenTicket={(item) => openTicket(item.ticket)}
  onClose={closeCallsPanel}
/>

Shared App Shell

The library also exports a reusable FCC page shell for fccOPS and fccPRO:

  • FCCAppShell
  • FCCSidebar
  • FCCMainWindow
  • FCCWorkspaceHeader
  • FCCBreadcrumbs
  • FCCHeaderStatus
  • FCCBrandLogo
  • FCCThemeToggle

Example:

import '@freedom-code-compliance/fcc-redesign/styles.css'
import {
  FCCAppShell,
  FCCBrandLogo,
  FCCThemeToggle,
} from '@freedom-code-compliance/fcc-redesign'
import { LayoutGrid, ClipboardCheck } from 'lucide-react'

const navItems = [
  { key: 'dashboard', label: 'Dashboard', icon: <LayoutGrid size={18} /> },
  { key: 'inspections', label: 'Inspections', icon: <ClipboardCheck size={18} /> },
]

export function AppFrame({ page, onNavigate, children }) {
  return (
    <FCCAppShell
      appName="fccOPS"
      logo={<FCCBrandLogo darkSrc="/light-gradient-logo.png" lightSrc="/fccgradientlogodark.png" />}
      navItems={navItems}
      activeNavKey={page}
      onNavigate={(item) => onNavigate(item.key)}
      user={{ initials: 'PM', name: 'Piotr Malicki' }}
      breadcrumbs={[
        { label: 'FCC', onClick: () => onNavigate('dashboard') },
        { label: 'Inspections', current: true },
      ]}
      status={{ label: 'Available', tone: 'success' }}
      headerActions={<FCCThemeToggle />}
    >
      {children}
    </FCCAppShell>
  )
}

Publish Flow

  1. Make component or theme changes in this repo.
  2. Run npm run build and verify the package output.
  3. Log in to the public npm registry with an account that can publish under the @freedom-code-compliance scope.
  4. Publish a new package version.
  5. Update the dependency version in fccPRO or fccOPS.
  6. Reinstall dependencies in the consuming app to pick up the latest library release.

Publish commands:

npm login
npm publish

The package metadata is configured for the public npm registry and publishes as a scoped public package.