
Research
Shai-Hulud Descends to Hades: Miasma Worm Campaign Spreads with New PyPI Wave
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.
mat-virtual-table
Advanced tools
Virtual scroll table based on angular material, with sticky columns, filtering ,sorting and resizing columns.
Virtual scroll table based on angular material, with sticky columns, filtering ,sorting and resizing columns.
run npm i mat-virtual-table
import {TableModule} from 'mat-virtual-table';
@NgModule({
imports: [
FormsModule,
ReactiveFormsModule,
MaterialModule,
CommonModule,
FlexLayoutModule,
RouterModule,
TableModule,
],
declarations: components,
exports: [TableModule, MaterialModule, FlexLayoutModule].concat(components),
})
export class ComponentsModule { }
<mat-virtual-table [rows]="rows">
<mat-virtual-table [rows]="rows" [columnsDef]="columns">
<mat-virtual-table [rows]="rows" [columnsDef]="columns">
<ng-template pCellDef column="name" let-row="row">
<b>{{row.name}}</b>
</ng-template>
</mat-virtual-table>
resize column with rtl support.
Set paginator true to add paginator.
<mat-virtual-table [rows]="rows" [paginator]="true">
</mat-virtual-table>
to custom lables, use CustomMatPaginatorIntl:
export class CustomMatPaginatorIntl extends MatPaginatorIntl {
nextPageLabel = 'הבא';
previousPageLabel = 'קודם';
getRangeLabel = (page, pageSize, length) => {
if (length === 0 || pageSize === 0) {
return '0 מתוך ' + length;
}
length = Math.max(length, 0);
const startIndex = page * pageSize;
const endIndex = startIndex < length ?
Math.min(startIndex + pageSize, length) :
startIndex + pageSize;
return startIndex + 1 + ' - ' + endIndex + ' מתוך ' + length;
};
}
@Input() rows; // table rows.
@Input() columnsDef; // columns definitions. each column it could be define title, isSortable, isFilterable, and width. default width is calculated by max value length.
@Input() isFilterable = true; // true by default, and filter all columns, Unless otherwise specified in the columnsDef.
@Input() filterPlaceholder = 'Filter';
@Input() isResizable = true; // true by default, rtl support. be aware that there is performace issue without build with production mode.
@Input() itemSize = 47;
@Input() headerSize = 56;
@Input() pageSize = 50;
@Input() paginator: boolean;
FAQs
Virtual scroll table based on angular material, with sticky columns, filtering ,sorting and resizing columns.
The npm package mat-virtual-table receives a total of 54 weekly downloads. As such, mat-virtual-table popularity was classified as not popular.
We found that mat-virtual-table demonstrated a not healthy version release cadence and project activity because the last version was released 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.

Research
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.