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

@gnome-ui/react

v1.42.0

Published

React component library following GNOME Human Interface Guidelines

Readme

@gnome-ui/react

React component library following the GNOME Human Interface Guidelines, built on the Adwaita design language.

npm CI Storybook License: MIT

Live documentation: Storybook →

Installation

npm install @gnome-ui/react

Setup

Import the stylesheet once at the root of your app:

// main.tsx or App.tsx
import "@gnome-ui/react/styles";

Quick example

import { Button } from "@gnome-ui/react";

export default function App() {
  return (
    <Button variant="suggested" onClick={() => console.log("saved")}>
      Save Changes
    </Button>
  );
}

Provider & formatting

GnomeProvider supplies locale, text direction, and default Intl formatting options to gnome-ui components. When locale is omitted, the browser locale is used.

import { GnomeProvider } from "@gnome-ui/react";

export default function App() {
  return (
    <GnomeProvider
      locale="en-US"
      numberFormat={{ notation: "compact", compactDisplay: "short" }}
      dateTimeFormat={{ dateStyle: "medium" }}
    >
      {/* CounterCard, StatCard, charts, CountDownTimer, etc. inherit this. */}
    </GnomeProvider>
  );
}

Use compact notation for values like 1K; omit numberFormat or set notation: "standard" for full values like 1,000.

<GnomeProvider locale="en-US" numberFormat={{ notation: "standard" }}>
  {/* numbers render as 1,000 */}
</GnomeProvider>

Custom components can consume the same defaults:

import { useNumberFormatter, useDateTimeFormatter } from "@gnome-ui/react";

function Metric({ value, date }: { value: number; date: Date }) {
  const number = useNumberFormatter({ maximumFractionDigits: 1 });
  const day = useDateTimeFormatter({ weekday: "short" });

  return `${number.format(value)} · ${day.format(date)}`;
}

Tree-shaking

The package ships per-component entry points, so bundlers (webpack, Rollup, esbuild, Vite) can eliminate unused components automatically. Named imports from the root entry work with any bundler that respects "sideEffects":

// Only Button is included in the bundle
import { Button } from "@gnome-ui/react";

Per-component paths are also available for explicit control:

import { Button } from "@gnome-ui/react/components/Button";

Components

Controls

| Component | Description | |-----------|-------------| | Button | Default, Suggested, Destructive, Flat, Raised variants; osd overlay modifier; sm/md/lg sizes; pill and circular shapes | | IconButton | Accessible icon-only action button composed from Button, Icon, and optional Tooltip; supports variants, sizes, disabled state, and refs | | SplitButton | Primary action button with attached dropdown arrow; Default, Suggested, Destructive variants | | ButtonContent | Icon + label layout helper for buttons that contain both an icon and text | | Switch | On/off toggle for settings that apply immediately | | Checkbox | Multi-selection with checked, unchecked, and indeterminate states | | RadioButton | Single-selection within a group; keyboard arrow-key navigation | | TextField | Text input with label, helper text, and error state | | SpinButton | Numeric input with −/+ buttons, keyboard nav, decimal support | | Slider | Draggable range control with tick marks, decimal steps, and keyboard nav | | Dropdown | Expandable option list with keyboard nav, flip positioning, and descriptions | | SearchBar | Collapsible search bar with auto-focus, clear button, filter row, inline variant, and autocomplete popover (suggestions / loadingSuggestions) | | Link | Inline hyperlink with accent colour, animated underline, and external-URL variant | | ToggleGroup / ToggleGroupItem | Mutually-exclusive toggle buttons; icon-only, label-only, or icon + label | | InlineViewSwitcher / InlineViewSwitcherItem | Compact inline view switcher; default, flat, and round variants | | PathBar | Breadcrumb path bar for hierarchical navigation; ancestor segments are interactive buttons, current segment is highlighted |

Display

| Component | Description | |-----------|-------------| | Text | 12 Adwaita type styles: large-title, title-1…4, heading, body, caption… | | Icon | Inline SVG icon. Accepts @gnome-ui/icons definitions, simple-icons icons, or any { path } object; inherits currentColor | | Avatar | Circular user image with deterministic-color initials fallback | | AvatarRotator | Single avatar surface that crossfades through multiple image sources | | Badge | Counter or status dot, optionally anchored over another element | | Blockquote | Styled pull-quote with left-border accent; default, info, warning, error, success variants; optional icon and attribution | | Spinner | Indeterminate loading indicator; sm/md/lg sizes | | ProgressBar | Determinate (0–1) and indeterminate progress indicator | | Skeleton | Content-shaped loading placeholder; rectangular, circular, and multi-line text variants with optional shimmer | | CountDownTimer | Countdown timer showing remaining time until a specified date; date, time, or datetime formats; executes callback on completion | | StatusPage | Empty-state page with icon, title, description, and optional actions; compact prop for sidebars/popovers | | Separator | Horizontal/vertical dividing line between content groups | | Chip | Compact pill-shaped label for tags, filters, and multi-select; static, removable, and selectable modes | | ShortcutLabel | Renders keyboard shortcut tokens (e.g. Ctrl+S) as individual key cap pills | | WindowTitle | Two-line title + subtitle widget for use inside a HeaderBar | | Timeline | Ordered sequence of events connected by a visual connector line; vertical (activity feed) and horizontal (stepper) orientations; solid, dotted, and none variants |

Layout & containers

| Component | Description | |-----------|-------------| | Box | Flex layout primitive equivalent to GtkBox — vertical or horizontal, with GNOME HIG spacing scale | | Card | Elevated surface for grouping content; static or interactive (activatable) | | Frame | Bordered surface without background fill — mirrors GtkFrame | | Bin | Single-child transparent wrapper — mirrors AdwBin | | HeaderBar | Title bar with centered title and leading/trailing action slots | | Toolbar | Horizontal action bar with 6 px padding/gap for flat and raised buttons | | Spacer | Invisible flex: 1 filler to push trailing items to the end of a Toolbar | | ToolbarView | Layout with pinned top/bottom bars and scrollable center content — mirrors AdwToolbarView | | LinkedGroup | Renders children as a single connected unit with merged borders; horizontal and vertical | | Sidebar / SidebarSection / SidebarItem | Lateral navigation panel with named sections, suffix widgets, and context menus | | BoxedList | Rounded bordered list of rows — canonical GNOME settings pattern | | ActionRow | Settings row with title, subtitle, leading icon, and trailing widget | | ButtonRow | Full-width activatable row styled as a button inside a BoxedList; Default, Suggested, Destructive | | ExpanderRow | Collapsible ActionRow that reveals nested rows; controlled and uncontrolled | | SwitchRow | ActionRow with a built-in Switch trailing widget | | CheckRow | ActionRow with a built-in Checkbox trailing widget | | ComboRow | ActionRow with a built-in Dropdown for selecting a value | | EntryRow | Inline text entry row — title doubles as floating label | | PasswordEntryRow | EntryRow variant with show/hide password toggle | | SpinRow | ActionRow with a built-in SpinButton for numeric values | | WrapBox | Wrapping flex container for tag/chip lists that flows across multiple lines — mirrors AdwWrapBox | | TabBar / TabItem / TabPanel | Tab-based navigation with keyboard support, optional close buttons, and inline variant | | ViewSwitcher / ViewSwitcherItem | Segmented pill control for switching between 2–4 top-level views | | ViewSwitcherSidebar / ViewSwitcherSidebarItem | Sidebar-based view switcher — replaces GtkStackSidebar | | Carousel / CarouselIndicatorDots / CarouselIndicatorLines | Swipeable page carousel with dot or line indicators — mirrors AdwCarousel | | ShortcutsDialog | Modal listing keyboard shortcuts with integrated search |

Overlays

| Component | Description | |-----------|-------------| | Toast / Toaster | Non-blocking temporary notification with auto-dismiss, action, and queue support | | Dialog | Blocking modal with title, body, focus trap, and configurable buttons | | BottomSheet | Slide-up panel from the bottom of the viewport with drag handle and optional title | | Tooltip | Floating informational label on hover/focus with auto-flip positioning | | Popover | Floating interactive panel with arrow and auto-flip positioning | | Banner | Persistent message strip with optional action and dismiss |

Preferences

| Component | Description | |-----------|-------------| | PreferencesGroup | Titled BoxedList section with optional description and header suffix widget | | PreferencesPage | Named page that contains one or more PreferencesGroup sections | | PreferencesDialog | Tabbed preferences window — mirrors AdwPreferencesDialog |

Adaptive layout

| Component | Description | |-----------|-------------| | useBreakpoint | Hook tracking viewport width against GNOME breakpoints (400 / 550 / 860 px) | | Clamp | Constrains content to a max width, centering it — mirrors AdwClamp | | NavigationSplitView | Two-pane layout that collapses to a single pane at ≤ 400 px; sidebar shown first (mobile-first default) | | OverlaySplitView | Sidebar becomes slide-over overlay at ≤ 400 px; supports backdrop, Escape, and swipe-to-dismiss | | NavigationView / NavigationPage | Mobile-style navigation stack with forward/back slide transitions — mirrors AdwNavigationView | | ViewSwitcherBar | Bottom bar for ViewSwitcher items on narrow screens (≤ 550 px) | | BreakpointBin | Applies layout changes when the component crosses a size threshold — CSS container queries equivalent |

License

MIT