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

@aquera/ngx-smart-table

v0.0.34

Published

A powerful, feature-rich Angular smart table library with inline editing, validation, sorting, pagination, filtering, sticky columns, keyboard navigation, and more.

Downloads

821

Readme

NgxSmartTable

A powerful, feature-rich Angular smart table library with inline editing, validation, sorting, pagination, filtering, sticky columns, keyboard navigation, and more.

Features

  • Inline Cell Editing - Click to edit with multiple editor types
  • Column-Level Filtering - Multiple operators and custom dropdown filters
  • Sorting & Pagination - Server-side and client-side support
  • Sticky/Pinned Columns - Pin columns left or right with user controls
  • Column Management - Resize, reorder, show/hide, and pin columns
  • Keyboard Navigation - Excel-like arrow key navigation and editing
  • Virtual Scrolling - Handle millions of rows efficiently
  • Configuration Builder - Visual UI for building table configurations
  • Type-Safe - Full TypeScript support with comprehensive interfaces
  • Reactive - Event-driven architecture with RxJS

Installation

npm install @your-org/ngx-smart-table

Quick Start

import { Component } from '@angular/core';
import { TableConfig } from '@your-org/ngx-smart-table';

@Component({
  selector: 'app-my-table',
  template: `
    <st-table [config]="tableConfig" [data]="data"></st-table>
  `
})
export class MyTableComponent {
  tableConfig: TableConfig = {
    columns: [
      { key: 'id', header: 'ID', width: 80 },
      { key: 'name', header: 'Name', sortable: true, filterable: true },
      { key: 'email', header: 'Email', filterable: true }
    ],
    pagination: { enabled: true, pageSize: 25 },
    sorting: { enabled: true, mode: 'server' },
    features: {
      keyboardNavigation: { enabled: true }
    }
  };

  data = [
    { id: 1, name: 'John Doe', email: '[email protected]' },
    { id: 2, name: 'Jane Smith', email: '[email protected]' }
  ];
}

Documentation

For complete documentation, see the documentation folder:

Column Configuration

New Features

  • movable: Control if column can be reordered (default: true)
  • pinnable: Control if column can be pinned/unpinned (default: true)
  • enableMenu: Control if column menu button appears (default: true)

Example

const columns = [
  {
    key: 'id',
    header: 'ID',
    width: 80,
    sticky: 'left',        // Pin to left
    movable: false,        // Cannot reorder
    pinnable: false,       // Cannot unpin
    enableMenu: false      // No menu button
  },
  {
    key: 'name',
    header: 'Name',
    sortable: true,
    filterable: true,
    movable: true,         // Can reorder
    pinnable: true         // Can pin/unpin
  },
  {
    key: 'actions',
    header: 'Actions',
    width: 100,
    sticky: 'right',       // Pin to right
    sortable: false,
    enableMenu: false
  }
];

Keyboard Navigation

Enable Excel-like keyboard navigation:

{
  features: {
    keyboardNavigation: {
      enabled: true
    }
  }
}

Keyboard Shortcuts:

  • Arrow keys: Navigate cells
  • Tab/Shift+Tab: Move between cells
  • Enter: Edit/save and move down
  • Escape: Cancel editing
  • Alphanumeric keys: Start editing

Column Menu

The column menu (⋮) provides quick access to:

  • Sort ascending/descending
  • Clear sort
  • Filter (with multiple operators)
  • Pin left/right
  • Unpin
  • Move left/right

Menu options automatically show/hide based on column configuration.

License

MIT

Links


Built with ❤️ using Angular and TypeScript