@one-paragon/angular-utilities 2.0.0-beta.10 → 2.0.0-beta.11
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/action-state/ngrx.d.ts
CHANGED
|
@@ -26,6 +26,6 @@ export interface State extends EntityState<ActionStatus> {
|
|
|
26
26
|
}
|
|
27
27
|
export declare const initialState: StatusState;
|
|
28
28
|
export declare const getStatusState: import("@ngrx/store").MemoizedSelector<object, State, import("@ngrx/store").DefaultProjectorFn<State>>;
|
|
29
|
-
export declare const selectIds: import("@ngrx/store").MemoizedSelector<object,
|
|
29
|
+
export declare const selectIds: import("@ngrx/store").MemoizedSelector<object, string[] | number[], (entityState: EntityState<ActionStatus>) => string[] | number[]>, selectEntities: import("@ngrx/store").MemoizedSelector<object, import("@ngrx/entity").Dictionary<ActionStatus>, (entityState: EntityState<ActionStatus>) => import("@ngrx/entity").Dictionary<ActionStatus>>, selectAll: import("@ngrx/store").MemoizedSelector<object, ActionStatus[], (entityState: EntityState<ActionStatus>) => ActionStatus[]>, selectTotal: import("@ngrx/store").MemoizedSelector<object, number, (entityState: EntityState<ActionStatus>) => number>;
|
|
30
30
|
export declare const selectEntity: (id: string) => import("@ngrx/store").MemoizedSelector<object, any, (s1: import("@ngrx/entity").Dictionary<ActionStatus>) => any>;
|
|
31
31
|
export declare function actionStatusReducer(state: StatusState | undefined, action: Action): StatusState;
|
|
@@ -1928,7 +1928,7 @@ class TableStore extends ComponentStore {
|
|
|
1928
1928
|
|| state.userDefined?.showAll);
|
|
1929
1929
|
$viewType = this.selectSignal(state => {
|
|
1930
1930
|
const usePaginator = state.notPersistedTableSettings.usePaginator;
|
|
1931
|
-
const showAll = state.showAll;
|
|
1931
|
+
const showAll = state.showAll || state.userDefined?.showAll;
|
|
1932
1932
|
const useVirtualScroll = state.notPersistedTableSettings.useVirtualScroll;
|
|
1933
1933
|
if (showAll || (useVirtualScroll && !usePaginator)) {
|
|
1934
1934
|
return 'virtual all';
|