
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
ngx-zen-table
Advanced tools
Lightweight infinite-scroll Angular Material table with skeleton rows, selection, and auto-fill.
Lightweight infinite-scroll Angular Material table with skeleton loading, sticky headers, and row selection — built for Angular 20 and Signals.
npm install ngx-zen-table
Peer dependencies required:
npm install @angular/core @angular/common @angular/material
🧩 Usage example
import { Component, signal } from '@angular/core';
import { ZenTableComponent } from 'ngx-zen-table';
@Component({
selector: 'app-demo',
standalone: true,
imports: [ZenTableComponent],
template: `
<zen-table
[columns]="cols"
[fetchPage]="fetchPage"
[selectable]="true"
[stickyHeader]="true"
(selectionChange)="onSelect($event)">
</zen-table>
`,
})
export class DemoComponent {
cols = [
{ id: 'id', header: 'ID', width: 80, cell: (r: any) => r.id },
{ id: 'name', header: 'Name', cell: (r: any) => r.name },
];
fetchPage = async ({ page, pageSize }: any) => {
const total = 100;
const start = page * pageSize;
const items = Array.from({ length: Math.min(pageSize, total - start) }, (_, i) => ({
id: start + i + 1,
name: `Row ${start + i + 1}`,
}));
return { items, hasNext: start + pageSize < total };
};
onSelect(rows: any[]) {
console.log('Selected rows:', rows);
}
}
⚙️ Inputs & Outputs
| Input | Type | Default | Description |
|---|---|---|---|
columns | ZenColumn<T>[] | — | Column definitions |
fetchPage | (params) => Promise<PageResult> | — | Async page loader |
pageSizeHint | number | 25 | Initial page size |
autoFill | boolean | true | Auto-compute rows to fill viewport |
pageSizeCap | number | 200 | Max rows per auto-fill cycle |
stickyHeader | boolean | false | Enables sticky header |
selectable | boolean | false | Enables row selection |
selectionMode | 'single' | 'multiple' | 'multiple' | Selection mode |
getRowKey | (row: T) => unknown | — | Unique key for selection |
resetKey | number | 0 | Force internal reset |
selectionChange | EventEmitter<T[]> | — | Emits current selection |
🧠 Notes
🪄 Roadmap
📝 License MIT © Cédric Sterkendries
FAQs
Lightweight infinite-scroll Angular Material table with skeleton rows, selection, and auto-fill.
The npm package ngx-zen-table receives a total of 0 weekly downloads. As such, ngx-zen-table popularity was classified as not popular.
We found that ngx-zen-table demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.