@reltio/dashboard 1.4.2242 → 1.4.2244

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.2242",
3
+ "version": "1.4.2244",
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.2202",
9
- "@reltio/mdm-module": "^1.4.2045",
10
- "@reltio/mdm-sdk": "^1.4.2005",
8
+ "@reltio/components": "^1.4.2204",
9
+ "@reltio/mdm-module": "^1.4.2046",
10
+ "@reltio/mdm-sdk": "^1.4.2006",
11
11
  "object-hash": "^2.1.1"
12
12
  },
13
13
  "peerDependencies": {
@@ -4,6 +4,7 @@ type Props = {
4
4
  updates: ActivityDelta[];
5
5
  recordId: string;
6
6
  isSegment?: boolean;
7
+ isInteraction?: boolean;
7
8
  };
8
9
  export declare const RecordUpdates: ({ updates, recordId, isSegment }: Props) => React.JSX.Element;
9
10
  export {};
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { ActivityDelta } from '../../../types';
2
+ import { type ActivityDelta } from '../../../types';
3
3
  type Props = {
4
4
  delta: ActivityDelta;
5
5
  };
@@ -61,6 +61,11 @@ export declare enum DeltaTypes {
61
61
  ATTRIBUTE_ADDED = "added",
62
62
  ATTRIBUTE_REMOVED = "deleted"
63
63
  }
64
+ export declare enum MemberDeltaTypes {
65
+ MEMBER_CHANGED = "edited",
66
+ MEMBER_ADDED = "added",
67
+ MEMBER_REMOVED = "deleted"
68
+ }
64
69
  export type ActivityDelta = {
65
70
  type: string;
66
71
  attributeType: string;
@@ -1 +0,0 @@
1
- export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"arrow" | "chip">;