@reltio/dashboard 1.4.2256 → 1.4.2257

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.2256",
3
+ "version": "1.4.2257",
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.2216",
9
- "@reltio/mdm-module": "^1.4.2055",
10
- "@reltio/mdm-sdk": "^1.4.2015",
8
+ "@reltio/components": "^1.4.2217",
9
+ "@reltio/mdm-module": "^1.4.2056",
10
+ "@reltio/mdm-sdk": "^1.4.2016",
11
11
  "object-hash": "^2.1.1"
12
12
  },
13
13
  "peerDependencies": {
@@ -130,6 +130,10 @@ export type MdmModuleActionsContextProps = Partial<{
130
130
  updateHiddenAttributes: (uri: string, hiddenAttributes: string[]) => void;
131
131
  resetHiddenAttributes: (uri: string) => void;
132
132
  updateControlAttributes: (controlAttributes: string[]) => void;
133
+ updateEntityAttributeValues: (payload: {
134
+ updatedEntity: Entity;
135
+ attributeTypeUris: string[];
136
+ }) => void;
133
137
  }>;
134
138
  export type MdmModuleListenersContextProps = Partial<{
135
139
  expandInvalidRelatonsListener: (callback: () => void) => (action: any) => void;
@@ -206,6 +210,10 @@ export declare const MdmModuleActionsContext: import("@fluentui/react-context-se
206
210
  updateHiddenAttributes: (uri: string, hiddenAttributes: string[]) => void;
207
211
  resetHiddenAttributes: (uri: string) => void;
208
212
  updateControlAttributes: (controlAttributes: string[]) => void;
213
+ updateEntityAttributeValues: (payload: {
214
+ updatedEntity: Entity;
215
+ attributeTypeUris: string[];
216
+ }) => void;
209
217
  }>>;
210
218
  export declare const MdmModuleValuesContext: import("@fluentui/react-context-selector").Context<Partial<{
211
219
  autoCloseInterval: number;
@@ -143,6 +143,10 @@ export declare const useMdmAction: <T extends keyof MdmModuleActionsContextProps
143
143
  updateHiddenAttributes: (uri: string, hiddenAttributes: string[]) => void;
144
144
  resetHiddenAttributes: (uri: string) => void;
145
145
  updateControlAttributes: (controlAttributes: string[]) => void;
146
+ updateEntityAttributeValues: (payload: {
147
+ updatedEntity: import("@reltio/mdm-sdk").Entity;
148
+ attributeTypeUris: string[];
149
+ }) => void;
146
150
  }>[T];
147
151
  export declare const useMdmListener: <T extends keyof MdmModuleListenersContextProps>(listener: T) => Partial<{
148
152
  expandInvalidRelatonsListener: (callback: () => void) => (action: any) => void;