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

quartz-headless

v0.2.1

Published

Headless Angular 21 UI primitives — overlay, dialog, splitter, toast, drag-drop, tooltip, tree, listbox, virtual scroll, viewport

Readme

🪨 Quartz Headless

Unstyled, accessible Angular 21 UI primitives.

You own the styles — Quartz owns the behaviour.

npm version npm downloads CI/CD minzipped size Angular license

🌐 Live docs & demos · 📦 npm · 🐛 Report a bug


Quartz is the behaviour layer for Angular design systems — overlay positioning, focus traps, drag & drop, keyboard navigation and reactive state — with zero CSS opinions. It is Radix UI / Headless UI for Angular, combined with the shadcn/ui "copy the source into your project" distribution model.

// Behaviour in, styling yours.
import { OverlayTriggerDirective } from 'quartz-headless';

@Component({
  imports: [OverlayTriggerDirective],
  template: `
    <button qzOverlayTrigger [overlayTemplate]="menu" placement="bottom-start">Open</button>
    <ng-template #menu><div class="your-styles">…</div></ng-template>
  `,
})
export class Demo {}

✨ Why Quartz

| | | | ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | | 🎨 No visual theme | No theme or visual design opinions. Structural portal/layout styles only where behaviour requires them; use data-qz-* hooks for your UI. | | ⚡ Zoneless | Built for provideZonelessChangeDetection() — signals all the way down. | | ♿ Accessible | WAI-ARIA roles, focus management and full keyboard support baked in. | | 🌳 Tree-shakeable | Standalone directives & services with no import-time side effects. | | 🖥️ SSR-safe | Guards DOM access so it runs cleanly under Angular server rendering. | | 📦 Two ways to ship | Install the npm package or copy the raw source with the CLI — your call. |

🚀 Install

Option A — npm package

npm install quartz-headless   # or: pnpm add quartz-headless
// app.config.ts
import { provideZonelessChangeDetection } from '@angular/core';

export const appConfig: ApplicationConfig = {
  providers: [provideZonelessChangeDetection()],
};

Option B — copy the source (shadcn-style)

The CLI copies raw TypeScript into your project, so you own the code and can modify it freely. Transitive dependencies are resolved automatically.

git clone https://github.com/Andersseen/quartz.git
cd quartz && pnpm install

pnpm quartz list                    # see everything available
pnpm quartz add overlay             # add one primitive (+ its deps)
pnpm quartz add dialog splitter     # add several at once
pnpm quartz add toast --output src/app/ui

Files land in your project's src/lib/components/<name>/ (auto-detected) or the --output path.

🧩 Primitives

| Primitive | What it gives you | | -------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | | overlay | Portal-based positioning for dropdowns, menus and popovers | | dialog | Service-driven dialog & drawer with backdrop and focus trap | | splitter | Resizable panels with keyboard, touch and ARIA slider semantics | | toast | Notification system with position groups and auto-dismiss | | drag-drop | Native HTML drag & drop with sortable drop zones | | tooltip | Hover/focus tooltip with configurable placement | | tree | Tree view with roving tabindex, WAI-ARIA keyboard nav & lazy per-level loading | | listbox | Single/multi selection with WAI-ARIA keyboard navigation and type-ahead | | virtual-scroll | Windowed rendering for long lists | | viewport | Reactive breakpoint service + ViewportMatchDirective |

Every primitive is zoneless, standalone and tree-shakeable. Drag & drop follows the browser's native pointer-based HTML DnD model; keyboard drag-and-drop is intentionally deferred to a dedicated future primitive.

🛠 Example

import { Component, inject, ViewContainerRef, TemplateRef, viewChild } from '@angular/core';
import { DialogService } from 'quartz-headless';

@Component({
  template: `
    <button (click)="open()">Open dialog</button>
    <ng-template #tpl let-ref>
      <div class="your-modal">
        <h2>Delete item?</h2>
        <button (click)="ref.close()">Cancel</button>
      </div>
    </ng-template>
  `,
})
export class Example {
  private dialog = inject(DialogService);
  private vcr = inject(ViewContainerRef);
  private tpl = viewChild.required<TemplateRef<unknown>>('tpl');

  open() {
    this.dialog.open(this.tpl(), this.vcr, { position: 'center' });
  }
}

📋 Requirements

| Dependency | Version | | ----------------- | -------------------- | | @angular/core | ^21.0.0 (zoneless) | | @angular/common | ^21.0.0 | | Node.js | >= 20 |

No runtime dependencies beyond @angular/*, rxjs and tslib.

💻 Local development

pnpm install
pnpm start          # dev server → http://localhost:5173
pnpm build:lib      # build the library → dist/quartz/
pnpm test           # unit tests (Vitest)
pnpm e2e            # end-to-end tests (Playwright)
pnpm typecheck      # type check lib + app
pnpm lint           # lint

The demo/docs site is an AnalogJS app deployed to Cloudflare Pages (pnpm pages:deploy). See docs/ai/ for architecture and contribution notes.

Adding a primitive

  1. Create packages/quartz/src/lib/<name>/ following the existing pattern.
  2. Export it from packages/quartz/src/public-api.ts.
  3. Register it in cli/registry.js (name, files, optional deps).
  4. Add a demo page at src/app/pages/(docs)/<name>.page.ts.

🤝 Contributing

Issues and PRs are welcome. Run pnpm test, pnpm lint and pnpm typecheck before opening a PR — the pre-commit hook and CI enforce all three.

📄 License

MIT © Andersseen