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
|
@@ -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>;
|