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

oge-ui

v0.12.0

Published

Umbrella package for the MIT-licensed OGE Angular UI suite — installs and re-exports the open-source @oge-ui/* packages: Data Grid, Tree List, Select Box, Buttons, Inputs and Overlay. The commercial Pivot Grid (@oge-ui/pivot) is installed separately.

Readme


npm install oge-ui

One install, one import path:

import { OgeGrid, OgeColumn, OgeSelectBox, OgeTagBox, OgeButton } from 'oge-ui';

What's inside

| Component family | Highlights | Docs | | ------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------- | | Data Grid (@oge-ui/grid) | Row + column virtualization into the millions, sorting, filtering, grouping, editing, master-detail, remote data, CSV/Excel/PDF export | demos | | Tree List (@oge-ui/tree-list) | The grid feature set on hierarchical data: lazy loading, tri-state selection, drag & drop | demos | | Select Box & Tag Box (@oge-ui/inputs) | WAI-ARIA combobox family: search, grouping, custom values, avatars, multi-select chips, autocomplete | demos | | Inputs (@oge-ui/inputs) | TextBox, TextArea, NumberBox, CheckBox, Switch, RadioGroup, Calendar, DateBox, DateRangeBox — one field chrome, all three form systems | demos | | Buttons (@oge-ui/buttons) | Async actions with auto loading, click guards, hold-to-confirm, groups, split buttons | demos | | Overlay (@oge-ui/overlay) | Flip-aware anchored popups, menus, tooltips, context menus, modal dialogs, toasts | demos | | Core (@oge-ui/core) | Framework-free data engine: sorting/filtering/pivot/virtualization math | — |

Looking for the Pivot Grid? It lives in the separate, commercially licensed @oge-ui/pivot package (free for evaluation and development) and is installed on its own: npm install @oge-ui/pivotdemos.

Quick start

import { Component, signal } from '@angular/core';
import { OgeColumn, OgeGrid, OgeTagBox } from 'oge-ui';

@Component({
  selector: 'app-orders',
  imports: [OgeGrid, OgeColumn, OgeTagBox],
  template: `
    <oge-tag-box label="Regions" [items]="regions" [searchEnabled]="true" [(value)]="selected" />

    <oge-grid [data]="orders()" keyField="id" [filterRow]="true">
      <oge-column field="product" caption="Product" />
      <oge-column field="amount" caption="Amount" dataType="number" />
    </oge-grid>
  `,
})
export class Orders {
  readonly regions = ['EMEA', 'APAC', 'Americas'];
  readonly selected = signal<readonly unknown[]>(['EMEA']);
  readonly orders = signal([{ id: 1, product: 'Aurora Display', amount: 1249 }]);
}

No modules, no forms boilerplate — [(value)] binds straight to a signal(); the same editors also plug into Signal Forms ([formField]) and reactive forms (formControl).

Why the umbrella?

  • Zero decision fatigue — one npm install, every component importable from 'oge-ui'.
  • Versions always in sync — the umbrella pins every @oge-ui/* package to the exact same release.
  • Still tree-shakeable — everything is standalone ESM with sideEffects: false; unused components never reach your bundle.
  • Not a lock-in — the scoped packages remain the canonical à-la-carte path (npm install @oge-ui/grid) when you want the smallest possible dependency tree.

Theming

One set of CSS design tokens drives every component:

:root {
  --oge-accent: #6366f1;
  --oge-radius: 8px;
}

Bundled bridges: dark (add .oge-theme-dark to any ancestor), Tailwind and Bootstrapstyling guide. All user-facing strings (aria labels included) are overridable via provideOge<X>Config()localization guide.

Good to know

  • Requires Angular ≥ 22 (standalone components, signals, zoneless).
  • Excel/PDF export libraries (exceljs, jspdf) are optional peers: nothing is installed, bundled or executed unless you opt in.
  • MIT licensed — and the umbrella and every package in it will stay MIT. The commercial @oge-ui/pivot package is not included. Source: github.com/oge-ui/oge-ui.

For AI coding assistants

The complete machine-readable API reference ships inside the package at node_modules/oge-ui/llms.txt — conventions, every documented member and copy-pasteable demos in one file. Online: https://ogeui.com/llms.txt (index) and https://ogeui.com/llms-full.txt (the whole suite).