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

@hotosm/ui

v0.9.0

Published

Shared UI components with HOT theming.

Readme

HOT Shared UI


Overview

Shared Web Components built with Lit and themed for HOTOSM tools using WebAwesome primitives.

Goals:

  • Reduce code duplication across HOT tools.
  • Provide a consistent HOT look-and-feel out of the box.
  • Keep the component set small and focused (header, sidebar, footer, etc.).

WebAwesome version: 3.2.1


Installation

pnpm install @hotosm/ui @awesome.me/[email protected]

[!NOTE] @awesome.me/webawesome is a peer dependency. Always pin it to the version shown above to avoid conflicts between HOT components and WebAwesome internals.


Loading Styles

Two CSS files are published. Choose the one that fits your setup.

Option A - Bundled (recommended for simplicity)

A single self-contained file with WebAwesome base styles + HOT theme already inlined. Nothing else to load.

<link rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/@hotosm/[email protected]/dist/style.css">

Or from a bundler:

import '@hotosm/ui/dist/style.css';

Option B - Split / CDN-optimised (recommended for multi-tool caching)

If you run several HOT tools (FMTM, Tasking Manager, etc.) and want the browser to cache WebAwesome CSS once across all of them, load WebAwesome from CDN separately and use the slim HOT-only stylesheet:

<!-- WebAwesome CSS - shared across all HOT tools via browser cache -->
<link rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/@awesome.me/[email protected]/dist/styles/native.css">
<link rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/@awesome.me/[email protected]/dist/styles/utilities.css">
<link rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/@awesome.me/[email protected]/dist/styles/themes/default.css">

<!-- HOT theme only (fonts + design tokens + WebAwesome overrides) -->
<link rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/@hotosm/[email protected]/dist/style-core.css">

Or from a bundler:

// WebAwesome (resolve from node_modules)
import '@awesome.me/webawesome/dist/styles/native.css';
import '@awesome.me/webawesome/dist/styles/utilities.css';
import '@awesome.me/webawesome/dist/styles/themes/default.css';

// HOT theme only
import '@hotosm/ui/dist/style-core.css';

| File | Size | Contains | | --- | --- | --- | | style.css | ~105 KB | WebAwesome + fonts + HOT theme (everything) | | style-core.css | ~21 KB | Fonts + HOT theme only (no WebAwesome) |

[!TIP] Which should I pick?

  • Building a single standalone app? Use Option A - zero config.
  • Running multiple HOT tools on the same domain or expecting users to navigate between them? Use Option B - the ~84 KB of shared WebAwesome CSS is fetched once and cached by the browser.

HTML Setup

Add the required WebAwesome classes to your <html> element:

<!DOCTYPE html>
<html class="wa-theme-default wa-palette-hotosm">
  <head>...</head>
  <body>...</body>
</html>

[!IMPORTANT] These classes activate the HOT colour palette and light theme for every WebAwesome component on the page. Do not remove them.


Using Components

Via Bundler (Vite, Webpack, etc.)

Import individual components - your bundler will tree-shake the rest:

import '@hotosm/ui/dist/components/header/header.js';
<hot-header title="My App"></hot-header>

Via CDN / Plain HTML / HTMX

The recommended approach for HTMX and plain-HTML apps loads WebAwesome styles and components from CDN so the browser can cache them once across all HOT tools (Option B from the styles section above):

<!DOCTYPE html>
<html class="wa-theme-default wa-palette-hotosm">
<head>
  <!-- WebAwesome CSS - cached once across all HOT tools at this WA version -->
  <link rel="stylesheet"
    href="https://cdn.jsdelivr.net/npm/@awesome.me/[email protected]/dist/styles/native.css">
  <link rel="stylesheet"
    href="https://cdn.jsdelivr.net/npm/@awesome.me/[email protected]/dist/styles/utilities.css">
  <link rel="stylesheet"
    href="https://cdn.jsdelivr.net/npm/@awesome.me/[email protected]/dist/styles/themes/default.css">

  <!-- HOT UI theme (fonts + HOT design tokens + WebAwesome overrides, ~21 KB) -->
  <link rel="stylesheet"
    href="https://cdn.jsdelivr.net/npm/@hotosm/[email protected]/dist/style-core.css">

  <!-- Import map: resolves WebAwesome bare-module specifiers
       inside hotosm-ui.js -->
  <!-- WA components load lazily from CDN only when first used;
       no separate loader needed -->
  <script type="importmap">
    {
      "imports": {
        "@awesome.me/webawesome/dist/components/":
          "https://cdn.jsdelivr.net/npm/@awesome.me/[email protected]/dist-cdn/components/"
      }
    }
  </script>

  <!-- HOT UI web components -->
  <script type="module"
    src="https://cdn.jsdelivr.net/npm/@hotosm/[email protected]/dist/hotosm-ui.js">
  </script>
</head>

<body>
  <hot-header id="hdr" title="My App" size="small" show-login></hot-header>

  <script>
    // Boolean props default to false.
    // Include the attribute to make it true.
    const hdr = document.getElementById('hdr');
    hdr.drawer = true;        // enable the hamburger drawer
  </script>
</body>
</html>

[!TIP] If you need only a single self-contained stylesheet instead of the three WA links above, you can use Option A (style.css) - but then the ~84 KB of WebAwesome CSS is bundled into the HOT package and cannot be shared across tools as a single cached resource.

React

Web Components work in React with a small caveat - use ref callbacks for custom events if React's synthetic event system doesn't forward them:

import '@hotosm/ui/dist/components/header/header.js';

function App() {
  return (
    <hot-header
      title="My App"
      ref={(el) => {
        if (el) el.addEventListener('login', () => console.log('logged in'));
      }}
    />
  );
}

Using HOT Design Tokens

The HOT theme exposes CSS custom properties you can reference in your own stylesheets:

.my-card {
  background: var(--hot-color-primary-50);
  color: var(--hot-color-neutral-900);
  font-family: var(--hot-font-sans);
  padding: var(--hot-spacing-medium);
  border-radius: var(--hot-border-radius-large);
}

See all available tokens in src/themes/hot.css.


Component Guides

  • Header: see header.md for detailed integration, styling, and framework examples.

Contributing

git clone [email protected]:hotosm/ui.git
cd ui
pnpm install
pnpm run dev        # starts Storybook on localhost:3001

Styling files (under src/themes/):

| File | Purpose | | --- | --- | | hot.css | HOT design tokens (colours, typography, spacing) | | hot-wa.css | WebAwesome variable overrides to apply the HOT palette |


License

HOT UI is free and open source software. You may use any HOT UI project under the terms of the GNU Affero General Public License (AGPL) Version 3.