@uxland/primary-shell 3.1.2 → 3.1.4
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/dist/index.js +6 -11
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +3 -3
- package/dist/index.umd.cjs.map +1 -1
- package/dist/primary/shell/src/index.d.ts +1 -0
- package/dist/primary/shell/src/internal-plugins/activity-history/index.d.ts +1 -0
- package/dist/primary/shell/src/internal-plugins/activity-history/infrastructure/store/store.d.ts +12 -12
- package/dist/primary/shell/src/internal-plugins/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/internal-plugins/activity-history/features/state.ts +2 -1
|
@@ -7,3 +7,4 @@ export * from './api/broker/primaria-broker';
|
|
|
7
7
|
export { PrimariaMenuItem } from './UI/shared-components/primaria-menu-item/primaria-menu-item';
|
|
8
8
|
export { confirmMixin } from './UI/shared-components/primaria-interaction';
|
|
9
9
|
export type { IConfirmMixin, CustomConfirmOptions, } from './UI/shared-components/primaria-interaction';
|
|
10
|
+
export * from './internal-plugins';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './domain/model';
|
package/dist/primary/shell/src/internal-plugins/activity-history/infrastructure/store/store.d.ts
CHANGED
|
@@ -2,30 +2,30 @@ export type RootState = ReturnType<typeof store.getState>;
|
|
|
2
2
|
export type AppDispatch = typeof store.dispatch;
|
|
3
3
|
export declare const store: import('@reduxjs/toolkit').EnhancedStore<{
|
|
4
4
|
activityHistory: {
|
|
5
|
-
busy: import('
|
|
6
|
-
error: import('
|
|
7
|
-
collections: Record<string, import('
|
|
5
|
+
busy: import('../..').IBusyHistoryItem[];
|
|
6
|
+
error: import('../..').IErrorHistoryItem[];
|
|
7
|
+
collections: Record<string, import('../..').IActivityHistoryItemCollection>;
|
|
8
8
|
};
|
|
9
9
|
}, import('@reduxjs/toolkit').UnknownAction, import('@reduxjs/toolkit').Tuple<[import('@reduxjs/toolkit').StoreEnhancer<{
|
|
10
10
|
dispatch: import('@reduxjs/toolkit').ThunkDispatch<{
|
|
11
11
|
activityHistory: {
|
|
12
|
-
busy: import('
|
|
13
|
-
error: import('
|
|
14
|
-
collections: Record<string, import('
|
|
12
|
+
busy: import('../..').IBusyHistoryItem[];
|
|
13
|
+
error: import('../..').IErrorHistoryItem[];
|
|
14
|
+
collections: Record<string, import('../..').IActivityHistoryItemCollection>;
|
|
15
15
|
};
|
|
16
16
|
}, undefined, import('@reduxjs/toolkit').UnknownAction>;
|
|
17
17
|
}>, import('@reduxjs/toolkit').StoreEnhancer]>>;
|
|
18
18
|
export declare const dispatch: import('@reduxjs/toolkit').ThunkDispatch<{
|
|
19
19
|
activityHistory: {
|
|
20
|
-
busy: import('
|
|
21
|
-
error: import('
|
|
22
|
-
collections: Record<string, import('
|
|
20
|
+
busy: import('../..').IBusyHistoryItem[];
|
|
21
|
+
error: import('../..').IErrorHistoryItem[];
|
|
22
|
+
collections: Record<string, import('../..').IActivityHistoryItemCollection>;
|
|
23
23
|
};
|
|
24
24
|
}, undefined, import('@reduxjs/toolkit').UnknownAction> & import('@reduxjs/toolkit').Dispatch<import('@reduxjs/toolkit').UnknownAction>;
|
|
25
25
|
export declare const getState: () => {
|
|
26
26
|
activityHistory: {
|
|
27
|
-
busy: import('
|
|
28
|
-
error: import('
|
|
29
|
-
collections: Record<string, import('
|
|
27
|
+
busy: import('../..').IBusyHistoryItem[];
|
|
28
|
+
error: import('../..').IErrorHistoryItem[];
|
|
29
|
+
collections: Record<string, import('../..').IActivityHistoryItemCollection>;
|
|
30
30
|
};
|
|
31
31
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './activity-history';
|
package/package.json
CHANGED
|
@@ -83,7 +83,8 @@ export const activityHistoryCollectionsSelector = (state: RootState) =>
|
|
|
83
83
|
export const activityHistoryGroupableCollections = createSelector(
|
|
84
84
|
activityHistoryCollectionsSelector,
|
|
85
85
|
(collections: Record<string, IActivityHistoryItemCollection>) => {
|
|
86
|
-
return
|
|
86
|
+
return collections;
|
|
87
|
+
//return pick(groupableCollections, collections);
|
|
87
88
|
},
|
|
88
89
|
);
|
|
89
90
|
|