monkey-front-core 0.0.463 → 0.0.465
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/esm2020/lib/core/interfaces/monkeyecx-store.mjs +1 -1
- package/esm2020/lib/core/services/store/monkeyecx-store.actions.mjs +3 -1
- package/fesm2015/monkey-front-core.mjs +2 -0
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +2 -0
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/interfaces/monkeyecx-store.d.ts +2 -1
- package/lib/core/services/store/monkeyecx-store.actions.d.ts +8 -3
- package/monkey-front-core-0.0.465.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.463.tgz +0 -0
|
@@ -27,7 +27,8 @@ export interface MonkeyEcxControlStore {
|
|
|
27
27
|
[key: string]: any;
|
|
28
28
|
}
|
|
29
29
|
export interface MonkeyEcxLinks {
|
|
30
|
-
[key: string]: Link;
|
|
30
|
+
[key: string]: Link | string | undefined;
|
|
31
|
+
url?: string;
|
|
31
32
|
}
|
|
32
33
|
export interface MonkeyEcxStoreControl {
|
|
33
34
|
isLoading: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MonkeyEcxPage, MonkeyEcxPagination, MonkeyEcxStoreControl } from '../../interfaces';
|
|
1
|
+
import { MonkeyEcxLinks, MonkeyEcxPage, MonkeyEcxPagination, 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: {
|
|
@@ -32,15 +32,20 @@ export declare abstract class MonkeyEcxCommonsActions {
|
|
|
32
32
|
}) => {
|
|
33
33
|
data: T[];
|
|
34
34
|
} & import("@ngrx/store/src/models").TypedAction<`[${string}] Update All`>>;
|
|
35
|
+
updateOne: import("@ngrx/store").ActionCreator<`[${string}] Update One`, (props: {
|
|
36
|
+
data: T;
|
|
37
|
+
}) => {
|
|
38
|
+
data: T;
|
|
39
|
+
} & import("@ngrx/store/src/models").TypedAction<`[${string}] Update One`>>;
|
|
35
40
|
updateControl: import("@ngrx/store").ActionCreator<`[${string}] Update Control`, (props: {
|
|
36
41
|
data: MonkeyEcxStoreControl;
|
|
37
42
|
}) => {
|
|
38
43
|
data: MonkeyEcxStoreControl;
|
|
39
44
|
} & import("@ngrx/store/src/models").TypedAction<`[${string}] Update Control`>>;
|
|
40
45
|
updateLinks: import("@ngrx/store").ActionCreator<`[${string}] Update Links`, (props: {
|
|
41
|
-
data:
|
|
46
|
+
data: MonkeyEcxLinks;
|
|
42
47
|
}) => {
|
|
43
|
-
data:
|
|
48
|
+
data: MonkeyEcxLinks;
|
|
44
49
|
} & import("@ngrx/store/src/models").TypedAction<`[${string}] Update Links`>>;
|
|
45
50
|
updatePage: import("@ngrx/store").ActionCreator<`[${string}] Update Page`, (props: {
|
|
46
51
|
data: MonkeyEcxPage;
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|