Pro Angular: Table Component
An abstraction of Angular Material’s table that speeds up development time and gives you quick access to features such as type safe columns, row selection, copy on click, expandable rows, intent based sorting, and more!
Preview the live demo below to see the Pro Table Components in action:
https://www.ProAngular.com/demos/pro-table
[ Index ]
@proangular/pro-table is a type-safe, Angular abstraction over Angular
Material’s table. It’s designed for apps using standalone components, signals,
and the new control-flow syntax so you can wire up data grids quickly without
giving up control of your data model or rendering.
The component keeps Material’s performance, accessibility, and theming surface, while adding strongly-typed columns, selection, copy-on-click, expandable detail rows, and a clean sorting contract that emits intent instead of mutating data.
-
Compile-time guarantees for columns & data
Columns are declared asTableColumn<T>, wherekeyis tied to your row modelT. That prevents typos and drift between your data and headers. -
Sorting as a pure UI signal
The table does not reorder your data. Instead it emits aTableSortChangeEvent<T>with a typed key and direction; you decide how to sort (or not) in your host component. This keeps business logic out of the view layer and plays well with signals/NgRx/etc. -
Expandable rows that are template-driven
Provide aTemplateRefper row and the table renders it in a dedicated detail row usingmultiTemplateDataRows. Expansion is reference-based, so you can attach any context object you like. -
Selection with guardrails
Built-in single/multi select with a master checkbox, an optional max selectable limit, and an emitted list of selected rows without leaking table internals to the host. -
Great DX for common table chores
One-line copy-to-clipboard per column (with tooltip and snack-bar feedback), sticky headers, row click events, and cell placeholders for empty values. These affordances reduce the “glue code” you normally write aroundMatTable. -
Built for Angular 20+ patterns
Uses OnPush change detection,@if/@for/@letin templates, and small reactive streams (BehaviorSubject/ReplaySubject+shareReplay) to keep updates efficient. The example shows signals +effect()integrating cleanly with the component’s inputs.
- Strong typing for both column definitions and row data (
TableColumn<T>) - Opt-in selection with max count and
rowSelectChangeevents - Click-to-copy per column with tooltip and snackbar feedback
- Sticky header option
- Expandable detail rows via
TemplateRef+multiTemplateDataRowswith animations - Sort intent via
sortChangeevents no data mutation, you stay in control - Works seamlessly with standalone components, signals, and Material’s
MatSort/MatTable
[ Index ]
Using Node Package Manager (NPM) in a new terminal window run the following commands to install the required dependencies.
Angular Material
More information on theming Angular Material: https://material.angular.io/guide/theming
ng add @angular/materialng add @proangular/pro-table@latestor
npm install @proangular/pro-table --save[ Index ]
Import the table component to use in your Angular application where used:
+ import { TableComponent } from '@proangular/pro-table';
// For modules
@NgModule({
...
imports: [
+ TableComponent,
...
],
})
// For standalone components
@Component({
...
imports: [
+ TableComponent,
...
],
})
// Markup usage
+ <pro-table [columns]="columns" [data]="data" />[ Index ]
<pro-table [columns]="columns()" [data]="rowsWithDetailTemplate()" />
<ng-template #detailTemplate let-data="data">
<pre>{{ data | json }}</pre>
</ng-template>Map your data to include a template field typed as
TableTemplateReferenceExpandableObject if you want per-row detail. The table
uses multiTemplateDataRows and a detail row with expandedDetail to render
the template when expanded.
[ Index ]
Input Bindings
| Input | Type | Default Value | Required | Description |
|---|---|---|---|---|
columns |
TableColumn[] |
N/A | True | Table column definitions mapped to keys in the data. |
data |
any[] |
N/A | True | Table data array to display. |
highlightOddRows |
boolean |
false |
False | Highlight odd rows. |
maxSelectableRows |
number |
No limit | False | Maximum number of selectable rows. |
placeholderEmptyData |
string |
N/A |
False | Placeholder text when no data is available for a cell. |
placeholderEmptyList |
string |
No items to display. |
False | Placeholder text when data array is empty. |
placeholderLoading |
string |
Loading... |
False | Placeholder text when data is loading. |
rowClickEnabled |
boolean |
false |
False | Enable row click event. |
selectable |
boolean |
false |
False | Enable row selection. |
stickyHeader |
boolean |
false |
False | Enable sticky table header. |
trackByFn |
function |
Default trackBy (id) |
False | Custom trackBy function for rows. |
Event Handling
| Event | Description |
|---|---|
rowClick |
Emits if a row is clicked when rowClickEnabled is true. |
rowSelectChange |
Emits if a row selection changes when selectable is true. |
sortChange |
Emits when sort changes. |
[ Index ]
| Angular version | @proangular/pro-table | Install |
|---|---|---|
| v20 | v20.x.x | ng add @proangular/pro-table@^20 |
| v19 | ------ | Untested |
| v18 | ------ | Untested |
| v17 | ------ | Untested |
[ Index ]
Please submit all issues, and feature requests here: https://github.com/ProAngular/pro-table/issues
Contribution:
- Clone the repo and create a new branch:
git clone https://github.com/ProAngular/pro-table.gitgit checkout -b username/feature-or-bug-description
- Bump up the version of package in
package.jsonandpackage-lock.json, commit all changes, push.
git add -Agit commit -m "My commit message"git push origin username/feature-or-bug-description
- Submit code in published PR for review and approval. Add a good description and link any possible user stories or bugs.
- Allow CI actions to completely run and verify files.
- Add/ping reviewers and await approval.
Thank you for any and all contributions!
[ Index ]
This project is licensed under the MIT License. See the LICENSE file for the pertaining license text.
SPDX-License-Identifier: MIT
[ Index ]
Thank you to the entire Angular team and community for such a great framework to build upon. If you have any questions, please let me know by opening an issue here.
| Type | Info |
|---|---|
| webmaster@codytolene.com | |
| https://github.com/sponsors/CodyTolene | |
| https://www.buymeacoffee.com/codytolene | |
| bc1qfx3lvspkj0q077u3gnrnxqkqwyvcku2nml86wmudy7yf2u8edmqq0a5vnt |
Fin. Happy programming friend!
Cody Tolene