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

@bridgephasenpm/pylon-ui

v0.0.37

Published

Pylon UI contains the frontend React components used as part of the standard BridgePhase Tech Challenge toolkit.

Readme

Pylon UI

Pylon UI contains the frontend React components used as part of the standard BridgePhase Tech Challenge toolkit.

Pylon UI is being significantly enhanced to allow React development using the Mantine component library but with a custom theme applied which applies styling and DOM class name conventions which adhere to the USWDS design system. The motivation for this is that Mantine has proven to be a more convenient library for quickly standing up frontends than existing React implementations of USWDS (e.g. trussworks/react-uswds).

Running Sample App

Pylon UI has been written and tested using Node v.24. It contains a .nvmrc which specifies this version target, so that if you have the Node Version Manager (NVM) tool installed (e.g. via the Homebrew package manager with brew install nvm) you can switch to it by just running nvm use.

nvm use
npm install
npm run dev

Using Pylon UI in Another Project

Pylon UI is published as a public package on the npm registry, so consuming projects do not need a GitHub Packages token or project-level .npmrc registry mapping.

  • In your project, install Pylon UI by running: npm install @bridgephasenpm/pylon-ui

Known Issues

  • Mantine Grid container doesn't work with USWDS styles imported (SimpleGrid does work)
  • Alerts don't support USWDS slim or headingLevel properties
  • DateInput is not USWDS themed yet
    • May require a custom component?

USWDS Component Targets

Components used in Waves application:

| USWDS | Mantine | Status | | ----------------- | ---------------------- | ------------------------------------------------------ | | Accordion | Accordion | | | Address | PylonFooterItems | | | Alert | Alert | | | Breadcrumb | Breadcrumbs* | | | BreadcrumbItem | Breadcrumbs* | | | Button | Button | | | ButtonGroup | Group | | | Card | Card | | | CardBody | Card.Section** | | | CardGroup | PylonCardGroup | | | CardHeader | Card.Section** | | | Checkbox | Checkbox | | | Collection | PylonCollection | | | CollectionHeading | PylonCollectionHeading | | | CollectionItem | PylonCollectionItem | | | CollectionMeta | PylonCollectionMeta | | | DatePicker | DateInput | | | ErrorMessage | Input.Error | | | Footer | PylonFooter | | | Grid | Grid | | | GridContainer | Container | | | Header | AppShell.Header | | | Icon | Icon | | | InputGroup | FieldSet | | | InputSuffix | TextInput | | | Label | PylonLabel | | | Link | Anchor | | | Logo | PylonFooter | | | Modal | Modal | | | ModalRef | useModalsStack | | | NavMenuButton | Burger | | | Pagination | Pagination | | | PrimaryNav | PylonHeaderNav | | | RequiredMarker | – | | | Select | Select | | | StepIndicator | Stepper | | | StepIndicatorStep | Stepper.Step | | | Table | Table | | | Tag | Badge | | | TextInput | TextInput | | | TextInputMask | PylonMaskedTextInput | | | Title | AppShellHeaderTitle | |

Packaging Release

To package a new release of Pylon UI to the public npm registry:

  • Merge contributor pull requests into main using conventional commit messages, such as fix: correct button styles or feat: add date picker variant
  • The Release action will automatically create or update a release pull request
  • Review and merge the release pull request when maintainers are ready to publish
  • Release Please creates the matching version tag and GitHub release
  • The same action builds and publishes the package to npm using the NPM_TOKEN repository secret