@one-paragon/angular-utilities 2.3.1 → 2.3.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
|
@@ -1010,7 +1010,11 @@ declare class TableStore extends ComponentStore<TableState> {
|
|
|
1010
1010
|
readonly setTableWidth: (observableOrValue: number | Observable<number>) => rxjs.Subscription;
|
|
1011
1011
|
readonly setInitializationState: (observableOrValue: InitializationState | Observable<InitializationState>) => rxjs.Subscription;
|
|
1012
1012
|
readonly toggleCollapseHeader: () => void;
|
|
1013
|
-
readonly toggleCollapseFooter: () => void
|
|
1013
|
+
readonly toggleCollapseFooter: (() => void) | ((observableOrValue: void | {
|
|
1014
|
+
collapseFooter: boolean;
|
|
1015
|
+
} | Observable<void | {
|
|
1016
|
+
collapseFooter: boolean;
|
|
1017
|
+
} | undefined> | undefined) => rxjs.Subscription);
|
|
1014
1018
|
readonly addGroupByKey: (observableOrValue: string | Observable<string>) => rxjs.Subscription;
|
|
1015
1019
|
readonly removeGroupByKey: (observableOrValue: string | Observable<string>) => rxjs.Subscription;
|
|
1016
1020
|
readonly updateExpandedGroups: (observableOrValue: {
|