monkey-front-core 0.0.465 → 0.0.467

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.
@@ -3,7 +3,7 @@ export declare type MonkeyEcxPaginationActions = 'first' | 'next' | 'prev' | 'la
3
3
  export interface MonkeyEcxPagination {
4
4
  action: MonkeyEcxPaginationActions;
5
5
  }
6
- interface MonkeyEcxTypedLink extends Link {
6
+ export interface MonkeyEcxTypedLink extends Link {
7
7
  url: string;
8
8
  }
9
9
  export interface MonkeyEcxPaginationData {
@@ -23,4 +23,3 @@ export interface MonkeyEcxPage {
23
23
  totalPages: number;
24
24
  number: number;
25
25
  }
26
- export {};
@@ -1,4 +1,4 @@
1
- import { MonkeyEcxLinks, MonkeyEcxPage, MonkeyEcxPagination, MonkeyEcxStoreControl } from '../../interfaces';
1
+ import { MonkeyEcxPage, MonkeyEcxPagination, MonkeyEcxPaginationData, MonkeyEcxStoreControl } from '../../interfaces';
2
2
  export declare abstract class MonkeyEcxCommonsActions {
3
3
  static getActions<T>(actionName: string): {
4
4
  clear: import("@ngrx/store").ActionCreator<`[${string}] Clear All`, (props: {
@@ -43,9 +43,9 @@ export declare abstract class MonkeyEcxCommonsActions {
43
43
  data: MonkeyEcxStoreControl;
44
44
  } & import("@ngrx/store/src/models").TypedAction<`[${string}] Update Control`>>;
45
45
  updateLinks: import("@ngrx/store").ActionCreator<`[${string}] Update Links`, (props: {
46
- data: MonkeyEcxLinks;
46
+ data: MonkeyEcxPaginationData;
47
47
  }) => {
48
- data: MonkeyEcxLinks;
48
+ data: MonkeyEcxPaginationData;
49
49
  } & import("@ngrx/store/src/models").TypedAction<`[${string}] Update Links`>>;
50
50
  updatePage: import("@ngrx/store").ActionCreator<`[${string}] Update Page`, (props: {
51
51
  data: MonkeyEcxPage;
@@ -16,9 +16,6 @@ export declare abstract class MonkeyEcxCommonsSelectors {
16
16
  selectByIdentifier: <T extends Identifiable>(props: {
17
17
  identifier: string;
18
18
  }) => import("@ngrx/store").MemoizedSelector<unknown, T[], import("@ngrx/store").DefaultProjectorFn<T[]>>;
19
- selectPagination: (props: {
20
- identifier: string;
21
- }) => import("@ngrx/store").MemoizedSelector<object, any, import("@ngrx/store").DefaultProjectorFn<any>>;
22
19
  selectPage: (props: {
23
20
  identifier: string;
24
21
  }) => import("@ngrx/store").MemoizedSelector<object, any, import("@ngrx/store").DefaultProjectorFn<any>>;
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monkey-front-core",
3
- "version": "0.0.465",
3
+ "version": "0.0.467",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^13.1.1",
6
6
  "@angular/common": "^13.1.1",
Binary file