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

@resolve-components/theme

v1.2.9

Published

Fully customizable Angular UI component library with 40+ standalone components, design tokens, and dark mode support.

Readme

resolve-components

Fully customizable Angular UI component library – 40+ standalone, fully typed, OnPush components with a comprehensive theming system.

  • 🎨 40+ Components — buttons, inputs, dialogs, tables, trees, virtual scroll, and more
  • 🎭 Design Tokens — flat-map SCSS themes emit CSS custom properties at runtime
  • 🌙 Dark Mode — built-in default and dark themes; create your own
  • Standalone — every component is standalone with OnPush change detection
  • 📦 Zero Dependencies — uses only Angular CDK overlay for dialogs
  • 🚀 ng add Schematic — automatic setup with a single command

📖 Documentation | 🎨 Component Library | 📦 npm


Quick Start

Automatic Setup (Recommended)

ng add @resolve-components/theme

The schematic will:

  • ✅ Install the package
  • ✅ Configure angular.json
  • ✅ Update app.config.ts
  • ✅ Add @resolve-components entry to styles

Then start building! 🎉

Manual Setup

1. Install the package & Angular CDK

npm install @resolve-components/theme @angular/cdk eva-icons

2. Configure angular.json

Add the CDK overlay stylesheet to your build styles and register the styles/ folder as a Sass include path:

{
  "projects": {
    "<your-project>": {
      "architect": {
        "build": {
          "options": {
            "styles": ["node_modules/@angular/cdk/overlay-prebuilt.css", "node_modules/@resolve-components/theme/styles/resolve-components.scss"],
            "stylePreprocessorOptions": {
              "includePaths": ["node_modules/@resolve-components/theme/styles"]
            }
          }
        }
      }
    }
  }
}

3. Register the theme provider

Add provideRcTheme() to your application providers in app.config.ts:

import { provideRcTheme } from '@resolve-components/theme';

export const appConfig: ApplicationConfig = {
  providers: [
    provideRcTheme({ name: 'default' }),
    // ...other providers
  ],
};

4. Wrap your root template with <rc-layout>

The layout component listens to theme changes and applies the correct CSS class to <body>:

<!-- app.html -->
<rc-layout>
  <rc-navbar position="fixed">...</rc-navbar>
  <router-outlet />
</rc-layout>

Import RcLayout in your root component:

import { RcLayout } from '@resolve-components/theme';

@Component({
  imports: [RcLayout /* , ... */],
})
export class AppComponent {}

What's Included

40+ Components

All standalone, fully typed, with OnPush change detection:

  • Layout & Display: Layout, Navbar, Sidenav, Card, Alert, Badge, Icon
  • Forms: Input, Select, Checkbox, Radio, Toggle, Datepicker, File Upload
  • Content: Table, Tree, Paginator, Infinite Scroll, Virtual Scroll
  • Feedback: Toast, Dialog, Tooltip, Menu
  • Input Patterns: Autocomplete, Slider, Tabs, Accordion
  • Progress: Spinner, Progress Bar
  • And more!Browse all components

Design Tokens

Flat-map SCSS theming system:

  • Emit CSS custom properties at runtime
  • Swap themes instantly with a single class change on <body>
  • Fully customizable — extend the default theme or create your own

Built-in Themes

  • Default — light mode with professional neutral colors
  • Dark — dark mode optimized for low-light environments

Coming Soon 🚀

  • Pro Components (Q3 2026) — Advanced, production-grade components for data grids, charts, and complex business patterns
  • Figma UI Kit (Q2 2026) — Complete design system with all components, tokens, and variants for seamless design-to-code workflow

import { RcButtonComponent } from '@resolve-components/theme';

@Component({
  selector: 'app-example',
  standalone: true,
  imports: [RcButtonComponent],
  template: `
    <button rcButton variant="filled" status="primary">Click me</button>
    <button rcButton variant="outline">Secondary</button>
    <button rcButton variant="ghost">Ghost</button>
  `,
})
export class ExampleComponent {}

Peer Dependencies

  • @angular/common ≥ 17.0.0
  • @angular/core ≥ 17.0.0
  • @angular/forms ≥ 17.0.0
  • @angular/cdk ≥ 17.0.0
  • @angular/platform-browser ≥ 17.0.0
  • rxjs ≥ 7.4.0

Resources


Made with ❤️ using Angular, Angular CDK, and SCSS