mn-angular-lib 0.0.64 → 0.0.65

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mn-angular-lib",
3
- "version": "0.0.64",
3
+ "version": "0.0.65",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.3",
6
6
  "@angular/core": "^21.1.3"
@@ -1830,6 +1830,8 @@ interface TableDataSource<T> {
1830
1830
  selectionMode?: 'none' | 'single' | 'multi';
1831
1831
  selectedRows?: BehaviorSubject<T[]>;
1832
1832
  rowActions?: TableRowAction<T>[];
1833
+ /** Header label for the actions column. Defaults to 'Actions' if not provided. */
1834
+ actionsHeader?: string;
1833
1835
  onRowClick?: (row: T) => void;
1834
1836
  appearance?: TableAppearance;
1835
1837
  toolbarTemplate?: TemplateRef<any>;