@reltio/dashboard 1.4.2190 → 1.4.2192

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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@reltio/dashboard",
3
- "version": "1.4.2190",
3
+ "version": "1.4.2192",
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.2152",
9
- "@reltio/mdm-module": "^1.4.2011",
10
- "@reltio/mdm-sdk": "^1.4.1973",
8
+ "@reltio/components": "^1.4.2154",
9
+ "@reltio/mdm-module": "^1.4.2013",
10
+ "@reltio/mdm-sdk": "^1.4.1975",
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;
@@ -18,6 +18,7 @@ type GenerateSegmentUrl = (params: {
18
18
  uiPath: string;
19
19
  segmentId: string;
20
20
  tabId?: string;
21
+ parentId?: string;
21
22
  }) => string;
22
23
  type UrlGenerators = {
23
24
  generateEntityUrl?: GenerateEntityUrl;
@@ -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;