@one-paragon/angular-utilities 2.3.1 → 2.3.3

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: {
@@ -1038,6 +1042,7 @@ declare class TableStore extends ComponentStore<TableState> {
1038
1042
  keys: string[];
1039
1043
  }>) => rxjs.Subscription;
1040
1044
  readonly setLinkMaps: (() => void) | ((observableOrValue: any) => rxjs.Subscription);
1045
+ updateRowProps: (observableOrValue: Pick<NotPersistedTableSettings, "rowClasses" | "rowStyles" | "rowClick"> | Observable<Pick<NotPersistedTableSettings, "rowClasses" | "rowStyles" | "rowClick">>) => rxjs.Subscription;
1041
1046
  on: <V>(srcObservable: Observable<V>, func: (obj: V) => void) => this;
1042
1047
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableStore, never>;
1043
1048
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<TableStore>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@one-paragon/angular-utilities",
3
- "version": "2.3.1",
3
+ "version": "2.3.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "20.0.3",
6
6
  "@angular/core": "20.0.3",