@one-paragon/angular-utilities 2.5.0 → 2.5.2
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/index.d.ts
CHANGED
|
@@ -784,6 +784,7 @@ interface CustomFilter<T = any> extends FilterState {
|
|
|
784
784
|
predicate: Predicate<T>;
|
|
785
785
|
filterType: typeof FilterType.Custom;
|
|
786
786
|
chipLabel?: string;
|
|
787
|
+
notSavable?: boolean;
|
|
787
788
|
}
|
|
788
789
|
declare function isCustomFilter(filter: FilterInfo | CustomFilter): filter is CustomFilter;
|
|
789
790
|
declare function isFilterInfo(filter: FilterInfo | CustomFilter): filter is FilterInfo;
|
|
@@ -1550,6 +1551,9 @@ declare class GenericTableComponent {
|
|
|
1550
1551
|
toggleGroupMessage: (amountOfItems: number, allSelected: boolean) => string;
|
|
1551
1552
|
getCustomGroupRowTemplate: (groupingKey: string) => _angular_core.Signal<_angular_core.TemplateRef<any>>;
|
|
1552
1553
|
addSelectFilter(e: boolean): void;
|
|
1554
|
+
$selectFilterKey: _angular_core.Signal<string | undefined>;
|
|
1555
|
+
$hasSelectFilter: _angular_core.Signal<boolean>;
|
|
1556
|
+
_onSelect: _angular_core.EffectRef;
|
|
1553
1557
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GenericTableComponent, never>;
|
|
1554
1558
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericTableComponent, "tb-generic-table", never, { "$displayDataLength": { "alias": "displayDataLength"; "required": true; "isSignal": true; }; "$data": { "alias": "data"; "required": true; "isSignal": true; }; "$rows": { "alias": "rows"; "required": false; "isSignal": true; }; "$columnInfos": { "alias": "columnInfos"; "required": true; "isSignal": true; }; "$dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; "$trackBy": { "alias": "trackBy"; "required": false; "isSignal": true; }; }, { "selection$": "selection"; }, never, never, true, never>;
|
|
1555
1559
|
}
|