Extensions to the components provided by [@angular/material](https://material.angular.io/)
npm install angular-material-extensionsExtensions to the components provided by @angular/material
!CI
Add this library to your project with
``shell script`
ng add angular-material-extensions
directive to the header row.`ts
dataSource = [{a: 1, b: 'one'}, {a: 2, b: 'two'}, {a: 3, b: 'three'}];
displayedColumns = ['a', 'b'];
``html
A
{{ row.a }}
B
{{ row.b }}
`MatSelectionColumnComponent
A component which registers both a header cell def and a cell def for a column that provides checkboxes to select rows based on a SelectionModel.$3
This component is not compatible with the flex-layout table!$3
`ts
dataSource = [1,2,3];
displayedColumns = ['select', 'data'];
selection = new SelectionModel(true);
``html
Data
{{ row }}
``