@reltio/dashboard 1.4.2208 → 1.4.2210
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/bundle.js +1 -1
- package/package.json +4 -4
- package/types/components/src/constants/index.d.ts +1 -0
- package/types/components/src/constants/segmantation.d.ts +15 -0
- package/types/components/src/hooks/useSegmentsSizesLoader/useSegmentsSizesLoader.d.ts +6 -1
- package/types/dashboard/src/services/filters.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reltio/dashboard",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2210",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE FILE",
|
|
5
5
|
"main": "bundle.js",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@reltio/components": "^1.4.
|
|
9
|
-
"@reltio/mdm-module": "^1.4.
|
|
10
|
-
"@reltio/mdm-sdk": "^1.4.
|
|
8
|
+
"@reltio/components": "^1.4.2172",
|
|
9
|
+
"@reltio/mdm-module": "^1.4.2023",
|
|
10
|
+
"@reltio/mdm-sdk": "^1.4.1985",
|
|
11
11
|
"object-hash": "^2.1.1"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
@@ -7,3 +7,4 @@ export { POPUP_Z_INDEX } from './common';
|
|
|
7
7
|
export { ReactSelectOptionFilters } from './reactSelect';
|
|
8
8
|
export { editingModeOption, suggestingModeOption, viewingModeOption } from './modeOptions';
|
|
9
9
|
export { theme, darkTheme } from './theme';
|
|
10
|
+
export { SegmentationColumnId } from './segmantation';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare enum SegmentationColumnId {
|
|
2
|
+
Label = "label",
|
|
3
|
+
Status = "status",
|
|
4
|
+
Description = "description",
|
|
5
|
+
Sharing = "sharing",
|
|
6
|
+
Type = "type",
|
|
7
|
+
Owner = "owner",
|
|
8
|
+
LastEvaluationDate = "lastEvaluationDate",
|
|
9
|
+
AudienceCount = "audienceCount",
|
|
10
|
+
AudienceCountBar = "audienceCountBar",
|
|
11
|
+
NextRefreshOn = "nextRefreshOn",
|
|
12
|
+
RefreshSchedule = "refreshSchedule",
|
|
13
|
+
Destinations = "destinations",
|
|
14
|
+
Actions = "actions"
|
|
15
|
+
}
|
|
@@ -2,5 +2,10 @@ import { NewSegment } from '@reltio/mdm-sdk';
|
|
|
2
2
|
type SegmentsSizes = {
|
|
3
3
|
[id: string]: number;
|
|
4
4
|
};
|
|
5
|
-
|
|
5
|
+
type SegmentsSizesLoaderProps = {
|
|
6
|
+
segments: NewSegment[];
|
|
7
|
+
signal?: AbortSignal;
|
|
8
|
+
enabled?: boolean;
|
|
9
|
+
};
|
|
10
|
+
export declare const useSegmentsSizesLoader: ({ segments, signal, enabled }: SegmentsSizesLoaderProps) => SegmentsSizes;
|
|
6
11
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DashboardViewFilter, SearchFilter } from '@reltio/mdm-sdk';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const buildFilters: (filters: DashboardViewFilter[], globalFilter?: string) => string;
|
|
3
3
|
export declare const createNotEqualFilter: any;
|
|
4
4
|
export declare const convertSearchFilterToDashboardConfigFilter: (searchFilter: SearchFilter) => DashboardViewFilter;
|
|
5
5
|
export declare const createEntityTypeFilter: (entityTypeUri: string) => {
|