mn-angular-lib 1.0.160 → 1.0.161
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
|
@@ -5047,8 +5047,10 @@ declare class MnTable<T = object> extends MnSelectableCollectionBase<T, TableDat
|
|
|
5047
5047
|
* button and a stacked filter panel.
|
|
5048
5048
|
*/
|
|
5049
5049
|
protected filtersCollapsed: boolean;
|
|
5050
|
-
/** Whether the small-screen filter
|
|
5050
|
+
/** Whether the small-screen filter bottom sheet is currently open. */
|
|
5051
5051
|
protected filtersPanelOpen: boolean;
|
|
5052
|
+
/** Small-screen filter sheet, held so the close button can play its exit. */
|
|
5053
|
+
protected filtersSheet?: MnBottomSheet;
|
|
5052
5054
|
protected readonly componentName = "MnTable";
|
|
5053
5055
|
protected get trackedToolbarTemplate(): TemplateRef<unknown> | undefined;
|
|
5054
5056
|
protected collectionBody?: ElementRef<HTMLElement>;
|
|
@@ -5107,12 +5109,16 @@ declare class MnTable<T = object> extends MnSelectableCollectionBase<T, TableDat
|
|
|
5107
5109
|
get hasColumnFilters(): boolean;
|
|
5108
5110
|
/** Label for the "clear all filters" action in the small-screen panel. */
|
|
5109
5111
|
get clearFiltersButtonLabel(): string;
|
|
5112
|
+
/** Accessible label for the filter sheet's close button. */
|
|
5113
|
+
get filtersCloseLabel(): string;
|
|
5110
5114
|
/** Heading for the selection summary, with the count filled in. */
|
|
5111
5115
|
get selectionSummaryTitle(): string;
|
|
5112
5116
|
/** Label for the summary's clear-everything action. */
|
|
5113
5117
|
get selectionClearAllLabel(): string;
|
|
5114
|
-
/** Opens
|
|
5115
|
-
|
|
5118
|
+
/** Opens the small-screen filter bottom sheet. */
|
|
5119
|
+
openFiltersPanel(): void;
|
|
5120
|
+
/** Plays the sheet's slide-down exit, then unmounts it. */
|
|
5121
|
+
closeFiltersPanel(): Promise<void>;
|
|
5116
5122
|
private readonly baseTableClasses;
|
|
5117
5123
|
/**
|
|
5118
5124
|
* Column widths measured from the automatic layout and pinned, keyed by column
|