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

@gremorie/ng-overlays

v0.6.0

Published

Overlay primitives for Angular - Dialog, AlertDialog, Sheet, Drawer, Popover, HoverCard, Tooltip, DropdownMenu, ContextMenu, Command and Sonner. Built on Spartan-ng brain. Part of Gremorie.

Readme

@gremorie/ng-overlays

Overlay primitives for Angular: Dialog, AlertDialog, Sheet, Drawer, Popover, HoverCard, Tooltip, DropdownMenu, ContextMenu, Command and Sonner. A companion to Spartan-ng that fills the gaps for layered surfaces. Part of Gremorie, an AI native design system.

The React reference is @gremorie/rx-overlays; this package is built at parity with it. Behavior is delegated to @spartan-ng/brain primitives (CDK overlay based).

Full documentation lives at gremorie.com.

Install

npm i @gremorie/ng-overlays @gremorie/ng-core @spartan-ng/brain @angular/cdk

Requires Angular 21 (@angular/core ^21.2.0). The overlays share the Gremorie tokens through @gremorie/ng-core.

Styles

These primitives are styled with the Gremorie design tokens, so import the core theme once in your global styles.css:

@import 'tailwindcss';
@import '@gremorie/ng-core/theme.css';

Usage

Brain overlays render their content from a <ng-template> referenced by the trigger — the documented divergence from Radix's portal model. For Dialog:

import { Component } from '@angular/core';
import {
  Dialog,
  DialogTrigger,
  DialogContent,
  DialogHeader,
  DialogTitle,
  DialogDescription,
  DialogFooter,
  DialogClose,
} from '@gremorie/ng-overlays';

@Component({
  selector: 'app-example',
  standalone: true,
  imports: [
    Dialog,
    DialogTrigger,
    DialogContent,
    DialogHeader,
    DialogTitle,
    DialogDescription,
    DialogFooter,
    DialogClose,
  ],
  template: `
    <gr-dialog #dialog>
      <button [grDialogTriggerFor]="dialog">Open</button>
      <ng-template grDialogContent>
        <gr-dialog-content>
          <gr-dialog-header>
            <gr-dialog-title>Edit profile</gr-dialog-title>
            <gr-dialog-description>Make changes here.</gr-dialog-description>
          </gr-dialog-header>
        </gr-dialog-content>
      </ng-template>
    </gr-dialog>
  `,
})
export class ExampleComponent {}

Components

  • Dialog / AlertDialog / Sheet / Drawer — modal surfaces on the brain dialog primitive (Drawer is a bottom-anchored Sheet variant since there is no Angular vaul).
  • Popover / HoverCard / Tooltip — anchored overlays.
  • DropdownMenu / ContextMenu — action menus built on the brain popover (brain ships no menu primitive).
  • Command — keyboard-first palette on the brain command primitive.
  • Sonner (Toaster + toast) — transient toasts on the brain sonner primitive.

License

MIT. See LICENSE.