@one-paragon/angular-utilities 2.7.0 → 2.7.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/package.json
CHANGED
|
@@ -385,7 +385,6 @@ interface BaseMeta<T = any> {
|
|
|
385
385
|
*/
|
|
386
386
|
groupByHeader?: (groupByVal: any) => string;
|
|
387
387
|
};
|
|
388
|
-
customCell?: boolean;
|
|
389
388
|
/**
|
|
390
389
|
* @deprecated Use `map`
|
|
391
390
|
*/
|
|
@@ -1077,6 +1076,7 @@ declare class TableStore extends ComponentStore<TableState> {
|
|
|
1077
1076
|
$userDefinedPageSize: Signal<number | undefined>;
|
|
1078
1077
|
$currentPage: Signal<number>;
|
|
1079
1078
|
$pageSize: Signal<number>;
|
|
1079
|
+
addFooter: (observableOrValue: string | Observable<string>) => rxjs.Subscription;
|
|
1080
1080
|
$tableSettings: Signal<NonFunctionProperties<PersistedTableSettings & NotPersistedTableSettings>>;
|
|
1081
1081
|
$notPersistedTableSettings: Signal<NotPersistedTableSettings>;
|
|
1082
1082
|
tableSettings$: Observable<NonFunctionProperties<PersistedTableSettings & NotPersistedTableSettings>>;
|
|
@@ -1946,7 +1946,6 @@ declare class FilterComponent {
|
|
|
1946
1946
|
$enteredFilterType: _angular_core.WritableSignal<FilterType | undefined>;
|
|
1947
1947
|
$currentFilterType: _angular_core.Signal<FilterType | undefined>;
|
|
1948
1948
|
$availableFilterTypes: _angular_core.Signal<FilterType[]>;
|
|
1949
|
-
$filterBy: _angular_core.Signal<((t: any) => any) | undefined>;
|
|
1950
1949
|
onEnter(filter: FilterInfo, event: any): void;
|
|
1951
1950
|
addFilter(filter: FilterInfo): void;
|
|
1952
1951
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilterComponent, never>;
|