@reltio/dashboard 1.4.2189 → 1.4.2191
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/SegmentIdLink/SegmentIdLink.d.ts +1 -0
- package/types/components/src/contexts/MdmModuleContext/context.d.ts +2 -0
- package/types/components/src/contexts/MdmModuleContext/hooks.d.ts +1 -0
- package/types/components/src/contexts/UrlGeneratorsContext/index.d.ts +1 -0
- package/types/components/src/helpers/segments.d.ts +0 -5
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reltio/dashboard",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2191",
|
|
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.2153",
|
|
9
|
+
"@reltio/mdm-module": "^1.4.2012",
|
|
10
|
+
"@reltio/mdm-sdk": "^1.4.1974",
|
|
11
11
|
"object-hash": "^2.1.1"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
@@ -2,4 +2,5 @@ import React from 'react';
|
|
|
2
2
|
export declare const SegmentIdLink: React.ForwardRefExoticComponent<Omit<Omit<React.HTMLProps<HTMLAnchorElement>, "target" | "href" | "onClick"> & {
|
|
3
3
|
segmentId: string;
|
|
4
4
|
shouldOpenInNewTab?: boolean;
|
|
5
|
+
parentId?: string;
|
|
5
6
|
}, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
@@ -79,6 +79,7 @@ export type MdmModuleActionsContextProps = Partial<{
|
|
|
79
79
|
openSegment: (payload: {
|
|
80
80
|
segmentId: string;
|
|
81
81
|
tabId?: string;
|
|
82
|
+
parentId?: string;
|
|
82
83
|
}) => void;
|
|
83
84
|
setDefaultProfilePicForModifiedEntity: (payload: {
|
|
84
85
|
entityUri: string;
|
|
@@ -154,6 +155,7 @@ export declare const MdmModuleActionsContext: import("@fluentui/react-context-se
|
|
|
154
155
|
openSegment: (payload: {
|
|
155
156
|
segmentId: string;
|
|
156
157
|
tabId?: string;
|
|
158
|
+
parentId?: string;
|
|
157
159
|
}) => void;
|
|
158
160
|
setDefaultProfilePicForModifiedEntity: (payload: {
|
|
159
161
|
entityUri: string;
|
|
@@ -94,6 +94,7 @@ export declare const useMdmAction: <T extends keyof MdmModuleActionsContextProps
|
|
|
94
94
|
openSegment: (payload: {
|
|
95
95
|
segmentId: string;
|
|
96
96
|
tabId?: string;
|
|
97
|
+
parentId?: string;
|
|
97
98
|
}) => void;
|
|
98
99
|
setDefaultProfilePicForModifiedEntity: (payload: {
|
|
99
100
|
entityUri: string;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { NewSegment } from '@reltio/mdm-sdk';
|
|
2
|
-
export declare const buildSegmentsFilterString: any;
|
|
3
|
-
export declare const isActiveFilter: any;
|
|
4
|
-
export declare const isFolder: (segment: Pick<NewSegment, "itemType">) => boolean;
|
|
5
|
-
export declare const isSegment: (segment: Pick<NewSegment, "itemType">) => boolean;
|