mn-angular-lib 1.0.166 → 1.0.167
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
|
@@ -5580,6 +5580,13 @@ declare class MnTable<T = object> extends MnSelectableCollectionBase<T, TableDat
|
|
|
5580
5580
|
visibleRowActions(column: ColumnDefinition<T>, row: T): MnTableRowAction<T>[];
|
|
5581
5581
|
/** Whether a row has any visible actions at all; when false its cell is left empty. */
|
|
5582
5582
|
hasRowActions(column: ColumnDefinition<T>, row: T): boolean;
|
|
5583
|
+
/**
|
|
5584
|
+
* Whether a row's actions fold into the ⋯ menu below 450px. They do unless the row has
|
|
5585
|
+
* exactly one visible action that renders as a bare icon: that button is narrower than the
|
|
5586
|
+
* ⋯ trigger it would hide behind, so collapsing it only puts a second tap in front of the
|
|
5587
|
+
* one command the row has.
|
|
5588
|
+
*/
|
|
5589
|
+
collapsesRowActions(column: ColumnDefinition<T>, row: T): boolean;
|
|
5583
5590
|
/**
|
|
5584
5591
|
* Resolves a {@link MnRowValue}: either the fixed value, or the accessor applied to
|
|
5585
5592
|
* the row. Every per-row presentation field goes through here so the fixed and derived
|