@reltio/components 1.4.1038 → 1.4.1039

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.
@@ -26,7 +26,7 @@ exports.PivotingTooltip = void 0;
26
26
  var react_1 = __importStar(require("react"));
27
27
  var react_redux_1 = require("react-redux");
28
28
  var Tooltip_1 = __importDefault(require("@material-ui/core/Tooltip"));
29
- var mdm_module_1 = __importDefault(require("@reltio/mdm-module"));
29
+ var mdm_module_1 = __importStar(require("@reltio/mdm-module"));
30
30
  var mdm_sdk_1 = require("@reltio/mdm-sdk");
31
31
  var ramda_1 = require("ramda");
32
32
  var contexts_1 = require("../../../contexts");
@@ -38,6 +38,7 @@ var PivotingTooltip = function (_a) {
38
38
  var value = _a.value, attributeType = _a.attributeType, children = _a.children, className = _a.className;
39
39
  var styles = styles_1.usePivotingTooltipStyles();
40
40
  var contentStyles = styles_1.useStyles();
41
+ var dispatch = react_redux_1.useDispatch();
41
42
  var pivotingAttributesList = react_1.useContext(contexts_1.PivotingAttributeContext) || [];
42
43
  var isNestedAttribute = mdm_sdk_1.isNested(attributeType);
43
44
  var metadata = react_redux_1.useSelector(mdm_module_1.default.selectors.getMetadata) || {};
@@ -54,9 +55,15 @@ var PivotingTooltip = function (_a) {
54
55
  var uri = _a.uri;
55
56
  return uri === attributeType.uri;
56
57
  });
57
- return isPivotingAttribute ? (react_1.default.createElement(Tooltip_1.default, { interactive: true, arrow: true, placement: "right-start", classes: styles, title: react_1.default.createElement(PivotingTooltipContent_1.PivotingTooltipContent, { value: pivotingValue, attributeType: attributeType, config: pivotingAttribute.popup }) },
58
+ var handleSeeAllClick = function () {
59
+ var generatedValue = Array.isArray(pivotingValue)
60
+ ? helpers_1.convertNestedAttributePivotingValue(pivotingValue)
61
+ : helpers_1.convertSimpleAttributePivotingValue(attributeType, pivotingValue);
62
+ dispatch(mdm_module_1.ui.actions.openPivotingPerspective({ value: generatedValue, attributeType: attributeType }));
63
+ };
64
+ return isPivotingAttribute ? (react_1.default.createElement(Tooltip_1.default, { interactive: true, arrow: true, placement: "right-start", classes: styles, title: react_1.default.createElement(PivotingTooltipContent_1.PivotingTooltipContent, { value: pivotingValue, attributeType: attributeType, config: pivotingAttribute.popup, onSeeAllClick: handleSeeAllClick }) },
58
65
  react_1.default.createElement("span", { className: className },
59
66
  react_1.default.createElement(PivotingIcon_1.default, { className: contentStyles.icon }),
60
- react_1.default.createElement("span", { className: contentStyles.content }, children)))) : (react_1.default.createElement(react_1.default.Fragment, null, children));
67
+ react_1.default.createElement("span", { className: contentStyles.content, onClick: handleSeeAllClick }, children)))) : (react_1.default.createElement(react_1.default.Fragment, null, children));
61
68
  };
62
69
  exports.PivotingTooltip = PivotingTooltip;
@@ -1,12 +1,13 @@
1
1
  /// <reference types="react" />
2
- import { AttributeType } from '@reltio/mdm-sdk';
2
+ import { AttributeType, PrimitiveValue } from '@reltio/mdm-sdk';
3
3
  import { PivotingValue } from './helpers';
4
4
  export declare type Props = {
5
- value: PivotingValue[] | string | number | boolean;
5
+ value: PivotingValue[] | PrimitiveValue;
6
6
  attributeType: AttributeType;
7
7
  config: {
8
8
  label?: string;
9
9
  entityType?: string;
10
10
  };
11
+ onSeeAllClick: () => void;
11
12
  };
12
- export declare const PivotingTooltipContent: ({ value, attributeType, config }: Props) => JSX.Element;
13
+ export declare const PivotingTooltipContent: ({ value, attributeType, config, onSeeAllClick }: Props) => JSX.Element;
@@ -37,21 +37,20 @@ exports.PivotingTooltipContent = void 0;
37
37
  var react_1 = __importStar(require("react"));
38
38
  var react_redux_1 = require("react-redux");
39
39
  var ui_i18n_1 = __importDefault(require("ui-i18n"));
40
- var mdm_module_1 = __importStar(require("@reltio/mdm-module"));
40
+ var mdm_module_1 = __importDefault(require("@reltio/mdm-module"));
41
41
  var mdm_sdk_1 = require("@reltio/mdm-sdk");
42
42
  var EntityAvatar_1 = __importDefault(require("../../EntityAvatar/EntityAvatar"));
43
43
  var EntityUriLink_1 = __importDefault(require("../../EntityUriLink/EntityUriLink"));
44
- var styles_1 = require("./styles");
45
44
  var helpers_1 = require("./helpers");
46
45
  var hooks_1 = require("../../../hooks");
46
+ var styles_1 = require("./styles");
47
47
  var MAX_ENTITIES_PIVOTING_TOOLTIP = 6;
48
48
  var PivotingTooltipContent = function (_a) {
49
- var value = _a.value, attributeType = _a.attributeType, _b = _a.config, config = _b === void 0 ? {} : _b;
49
+ var value = _a.value, attributeType = _a.attributeType, _b = _a.config, config = _b === void 0 ? {} : _b, onSeeAllClick = _a.onSeeAllClick;
50
50
  var _c = react_1.useState([]), entities = _c[0], setEntities = _c[1];
51
51
  var _d = react_1.useState(0), total = _d[0], setTotal = _d[1];
52
52
  var entity = react_redux_1.useSelector(mdm_module_1.default.selectors.getEntity) || {};
53
53
  var safePromise = hooks_1.useSafePromise();
54
- var dispatch = react_redux_1.useDispatch();
55
54
  var styles = styles_1.useStyles();
56
55
  var globalSearchRequestOptions = react_redux_1.useSelector(mdm_module_1.default.selectors.getGlobalSearchRequestOptions) || {};
57
56
  var entityType = config.entityType || entity.type;
@@ -70,12 +69,6 @@ var PivotingTooltipContent = function (_a) {
70
69
  setTotal(0);
71
70
  });
72
71
  }, []);
73
- var handleClickSeeAll = function () {
74
- var generatedValue = Array.isArray(value)
75
- ? helpers_1.convertNestedAttributePivotingValue(value)
76
- : helpers_1.convertSimpleAttributePivotingValue(attributeType, value);
77
- dispatch(mdm_module_1.ui.actions.openPivotingPerspective({ value: generatedValue, attributeType: attributeType }));
78
- };
79
72
  var hasEntityTypeLabel = Boolean(config.label);
80
73
  return (react_1.default.createElement("div", { className: styles.container },
81
74
  react_1.default.createElement("div", { className: styles.header },
@@ -87,6 +80,6 @@ var PivotingTooltipContent = function (_a) {
87
80
  react_1.default.createElement(EntityAvatar_1.default, { entity: visibleEntity, avatarClassName: styles.profileIcon }),
88
81
  react_1.default.createElement(EntityUriLink_1.default, { className: styles.entityLabel, value: mdm_sdk_1.getEntityUriForLink(visibleEntity) }, mdm_sdk_1.getLabel(visibleEntity.label)))); })),
89
82
  shouldShowSeeAllButton && (react_1.default.createElement("div", { className: styles.footer },
90
- react_1.default.createElement("a", { className: styles.seeAllButton, onClick: handleClickSeeAll }, ui_i18n_1.default.text('See all'))))));
83
+ react_1.default.createElement("a", { className: styles.seeAllButton, onClick: onSeeAllClick }, ui_i18n_1.default.text('See all'))))));
91
84
  };
92
85
  exports.PivotingTooltipContent = PivotingTooltipContent;
@@ -1,11 +1,11 @@
1
- import { AttributeType, SearchFilter, Metadata, PivotingAttribute, RecordAttributesType } from '@reltio/mdm-sdk';
1
+ import { AttributeType, SearchFilter, Metadata, PivotingAttribute, RecordAttributesType, PrimitiveValue } from '@reltio/mdm-sdk';
2
2
  export declare type PivotingValue = {
3
3
  [uri: string]: string[] | PivotingValue[];
4
4
  };
5
- export declare const getParamsFilteringEntities: (values: string | number | boolean | PivotingValue[], attributeType: AttributeType, entityType?: string) => SearchFilter[];
5
+ export declare const getParamsFilteringEntities: (values: PrimitiveValue | PivotingValue[], attributeType: AttributeType, entityType?: string) => SearchFilter[];
6
6
  export declare const generatePivotingValue: (attributeType: AttributeType, value: RecordAttributesType, pivotingAttributes: PivotingAttribute[], metadata: Metadata) => PivotingValue[];
7
- export declare const convertSimpleAttributePivotingValue: (attrType: AttributeType, value: string | number | boolean) => {
8
- [x: string]: string | number | boolean;
7
+ export declare const convertSimpleAttributePivotingValue: (attrType: AttributeType, value: PrimitiveValue) => {
8
+ [x: string]: PrimitiveValue;
9
9
  }[];
10
10
  export declare const convertNestedAttributePivotingValue: (values: PivotingValue[]) => any[];
11
- export declare const preparePivotingAttributeValue: (value: any, attributeType: any) => any;
11
+ export declare const preparePivotingAttributeValue: (value: PrimitiveValue, attributeType: AttributeType) => PrimitiveValue;
@@ -76,7 +76,8 @@ exports.useStyles = styles_1.makeStyles(function (theme) { return ({
76
76
  margin: 'auto 8px auto 0'
77
77
  },
78
78
  content: {
79
- color: theme.palette.primary.main
79
+ color: theme.palette.primary.main,
80
+ cursor: 'pointer'
80
81
  },
81
82
  seeAllButton: {
82
83
  cursor: 'pointer'
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { RequestNextPageOfAttributeValuesPayload } from '@reltio/mdm-module';
3
- import { AttributeError, AttributeType, AttributeValue, Crosswalk, ImageAttributeValue, Mode, NestedAttributeValue, Paging, ReferenceAttributeValue, SimpleAttributeValue } from '@reltio/mdm-sdk';
3
+ import { AttributeError, AttributeType, AttributeValue, Crosswalk, ImageAttributeValue, Mode, NestedAttributeValue, Paging, ReferenceAttributeValue, SimpleAttributeValue, PrimitiveValue } from '@reltio/mdm-sdk';
4
4
  import AttributesPager from './AttributesPager';
5
5
  import CardinalityMessage from './CardinalityMessage';
6
6
  export declare type AttributeItem = {
@@ -8,7 +8,7 @@ export declare type AttributeItem = {
8
8
  parentUri?: string;
9
9
  index?: number;
10
10
  attributeType: AttributeType;
11
- value?: Partial<AttributeValue> | ImageAttributeValue['value'] | string | boolean | number;
11
+ value?: Partial<AttributeValue> | ImageAttributeValue['value'] | PrimitiveValue;
12
12
  };
13
13
  declare type StateProps = {
14
14
  errorMessage: string;
@@ -1,4 +1,4 @@
1
- import { Crosswalk, Entity, NestedAttributeValue, ReferenceAttributeValue, Relation, SimpleAttributeValue } from '@reltio/mdm-sdk';
1
+ import { Crosswalk, Entity, NestedAttributeValue, ReferenceAttributeValue, Relation, SimpleAttributeValue, PrimitiveValue } from '@reltio/mdm-sdk';
2
2
  import { DCRTypes } from '../constants/operations';
3
3
  export declare type ChangeRequest = {
4
4
  changes: DCRChanges;
@@ -38,7 +38,7 @@ export declare type DCRObjectsInfo = {
38
38
  export declare type DCRAttributes = {
39
39
  [attributeName: string]: (ChangeValue | DCRChange)[];
40
40
  };
41
- export declare type Value = DCRAttributes | DCRChange | string | boolean | number;
41
+ export declare type Value = DCRAttributes | DCRChange | PrimitiveValue;
42
42
  export declare type DCRAttributeValue = Omit<SimpleAttributeValue | NestedAttributeValue | ReferenceAttributeValue, 'uri' | 'value'> & {
43
43
  value: Value;
44
44
  refObjectURI?: string;
@@ -1,11 +1,11 @@
1
1
  import React, { useContext } from 'react';
2
- import { useSelector } from 'react-redux';
2
+ import { useDispatch, useSelector } from 'react-redux';
3
3
  import Tooltip from '@material-ui/core/Tooltip';
4
- import mdm from '@reltio/mdm-module';
4
+ import mdm, { ui as mdmModuleUi } from '@reltio/mdm-module';
5
5
  import { isNested } from '@reltio/mdm-sdk';
6
6
  import { isNil } from 'ramda';
7
7
  import { PivotingAttributeContext } from '../../../contexts';
8
- import { generatePivotingValue, preparePivotingAttributeValue } from './helpers';
8
+ import { convertNestedAttributePivotingValue, convertSimpleAttributePivotingValue, generatePivotingValue, preparePivotingAttributeValue } from './helpers';
9
9
  import PivotingIcon from '../../../icons/PivotingIcon';
10
10
  import { PivotingTooltipContent } from './PivotingTooltipContent';
11
11
  import { usePivotingTooltipStyles, useStyles } from './styles';
@@ -13,6 +13,7 @@ export var PivotingTooltip = function (_a) {
13
13
  var value = _a.value, attributeType = _a.attributeType, children = _a.children, className = _a.className;
14
14
  var styles = usePivotingTooltipStyles();
15
15
  var contentStyles = useStyles();
16
+ var dispatch = useDispatch();
16
17
  var pivotingAttributesList = useContext(PivotingAttributeContext) || [];
17
18
  var isNestedAttribute = isNested(attributeType);
18
19
  var metadata = useSelector(mdm.selectors.getMetadata) || {};
@@ -29,8 +30,14 @@ export var PivotingTooltip = function (_a) {
29
30
  var uri = _a.uri;
30
31
  return uri === attributeType.uri;
31
32
  });
32
- return isPivotingAttribute ? (React.createElement(Tooltip, { interactive: true, arrow: true, placement: "right-start", classes: styles, title: React.createElement(PivotingTooltipContent, { value: pivotingValue, attributeType: attributeType, config: pivotingAttribute.popup }) },
33
+ var handleSeeAllClick = function () {
34
+ var generatedValue = Array.isArray(pivotingValue)
35
+ ? convertNestedAttributePivotingValue(pivotingValue)
36
+ : convertSimpleAttributePivotingValue(attributeType, pivotingValue);
37
+ dispatch(mdmModuleUi.actions.openPivotingPerspective({ value: generatedValue, attributeType: attributeType }));
38
+ };
39
+ return isPivotingAttribute ? (React.createElement(Tooltip, { interactive: true, arrow: true, placement: "right-start", classes: styles, title: React.createElement(PivotingTooltipContent, { value: pivotingValue, attributeType: attributeType, config: pivotingAttribute.popup, onSeeAllClick: handleSeeAllClick }) },
33
40
  React.createElement("span", { className: className },
34
41
  React.createElement(PivotingIcon, { className: contentStyles.icon }),
35
- React.createElement("span", { className: contentStyles.content }, children)))) : (React.createElement(React.Fragment, null, children));
42
+ React.createElement("span", { className: contentStyles.content, onClick: handleSeeAllClick }, children)))) : (React.createElement(React.Fragment, null, children));
36
43
  };
@@ -1,12 +1,13 @@
1
1
  /// <reference types="react" />
2
- import { AttributeType } from '@reltio/mdm-sdk';
2
+ import { AttributeType, PrimitiveValue } from '@reltio/mdm-sdk';
3
3
  import { PivotingValue } from './helpers';
4
4
  export declare type Props = {
5
- value: PivotingValue[] | string | number | boolean;
5
+ value: PivotingValue[] | PrimitiveValue;
6
6
  attributeType: AttributeType;
7
7
  config: {
8
8
  label?: string;
9
9
  entityType?: string;
10
10
  };
11
+ onSeeAllClick: () => void;
11
12
  };
12
- export declare const PivotingTooltipContent: ({ value, attributeType, config }: Props) => JSX.Element;
13
+ export declare const PivotingTooltipContent: ({ value, attributeType, config, onSeeAllClick }: Props) => JSX.Element;
@@ -10,23 +10,22 @@ var __assign = (this && this.__assign) || function () {
10
10
  return __assign.apply(this, arguments);
11
11
  };
12
12
  import React, { useEffect, useState } from 'react';
13
- import { useDispatch, useSelector } from 'react-redux';
13
+ import { useSelector } from 'react-redux';
14
14
  import i18n from 'ui-i18n';
15
- import mdm, { ui as mdmModuleUi } from '@reltio/mdm-module';
15
+ import mdm from '@reltio/mdm-module';
16
16
  import { getEntityUriForLink, getFilteredEntities, getLabel, getTotals } from '@reltio/mdm-sdk';
17
17
  import EntityAvatar from '../../EntityAvatar/EntityAvatar';
18
18
  import EntityUriLink from '../../EntityUriLink/EntityUriLink';
19
- import { useStyles } from './styles';
20
- import { convertNestedAttributePivotingValue, convertSimpleAttributePivotingValue, getParamsFilteringEntities } from './helpers';
19
+ import { getParamsFilteringEntities } from './helpers';
21
20
  import { useSafePromise } from '../../../hooks';
21
+ import { useStyles } from './styles';
22
22
  var MAX_ENTITIES_PIVOTING_TOOLTIP = 6;
23
23
  export var PivotingTooltipContent = function (_a) {
24
- var value = _a.value, attributeType = _a.attributeType, _b = _a.config, config = _b === void 0 ? {} : _b;
24
+ var value = _a.value, attributeType = _a.attributeType, _b = _a.config, config = _b === void 0 ? {} : _b, onSeeAllClick = _a.onSeeAllClick;
25
25
  var _c = useState([]), entities = _c[0], setEntities = _c[1];
26
26
  var _d = useState(0), total = _d[0], setTotal = _d[1];
27
27
  var entity = useSelector(mdm.selectors.getEntity) || {};
28
28
  var safePromise = useSafePromise();
29
- var dispatch = useDispatch();
30
29
  var styles = useStyles();
31
30
  var globalSearchRequestOptions = useSelector(mdm.selectors.getGlobalSearchRequestOptions) || {};
32
31
  var entityType = config.entityType || entity.type;
@@ -45,12 +44,6 @@ export var PivotingTooltipContent = function (_a) {
45
44
  setTotal(0);
46
45
  });
47
46
  }, []);
48
- var handleClickSeeAll = function () {
49
- var generatedValue = Array.isArray(value)
50
- ? convertNestedAttributePivotingValue(value)
51
- : convertSimpleAttributePivotingValue(attributeType, value);
52
- dispatch(mdmModuleUi.actions.openPivotingPerspective({ value: generatedValue, attributeType: attributeType }));
53
- };
54
47
  var hasEntityTypeLabel = Boolean(config.label);
55
48
  return (React.createElement("div", { className: styles.container },
56
49
  React.createElement("div", { className: styles.header },
@@ -62,5 +55,5 @@ export var PivotingTooltipContent = function (_a) {
62
55
  React.createElement(EntityAvatar, { entity: visibleEntity, avatarClassName: styles.profileIcon }),
63
56
  React.createElement(EntityUriLink, { className: styles.entityLabel, value: getEntityUriForLink(visibleEntity) }, getLabel(visibleEntity.label)))); })),
64
57
  shouldShowSeeAllButton && (React.createElement("div", { className: styles.footer },
65
- React.createElement("a", { className: styles.seeAllButton, onClick: handleClickSeeAll }, i18n.text('See all'))))));
58
+ React.createElement("a", { className: styles.seeAllButton, onClick: onSeeAllClick }, i18n.text('See all'))))));
66
59
  };
@@ -1,11 +1,11 @@
1
- import { AttributeType, SearchFilter, Metadata, PivotingAttribute, RecordAttributesType } from '@reltio/mdm-sdk';
1
+ import { AttributeType, SearchFilter, Metadata, PivotingAttribute, RecordAttributesType, PrimitiveValue } from '@reltio/mdm-sdk';
2
2
  export declare type PivotingValue = {
3
3
  [uri: string]: string[] | PivotingValue[];
4
4
  };
5
- export declare const getParamsFilteringEntities: (values: string | number | boolean | PivotingValue[], attributeType: AttributeType, entityType?: string) => SearchFilter[];
5
+ export declare const getParamsFilteringEntities: (values: PrimitiveValue | PivotingValue[], attributeType: AttributeType, entityType?: string) => SearchFilter[];
6
6
  export declare const generatePivotingValue: (attributeType: AttributeType, value: RecordAttributesType, pivotingAttributes: PivotingAttribute[], metadata: Metadata) => PivotingValue[];
7
- export declare const convertSimpleAttributePivotingValue: (attrType: AttributeType, value: string | number | boolean) => {
8
- [x: string]: string | number | boolean;
7
+ export declare const convertSimpleAttributePivotingValue: (attrType: AttributeType, value: PrimitiveValue) => {
8
+ [x: string]: PrimitiveValue;
9
9
  }[];
10
10
  export declare const convertNestedAttributePivotingValue: (values: PivotingValue[]) => any[];
11
- export declare const preparePivotingAttributeValue: (value: any, attributeType: any) => any;
11
+ export declare const preparePivotingAttributeValue: (value: PrimitiveValue, attributeType: AttributeType) => PrimitiveValue;
@@ -73,7 +73,8 @@ export var useStyles = makeStyles(function (theme) { return ({
73
73
  margin: 'auto 8px auto 0'
74
74
  },
75
75
  content: {
76
- color: theme.palette.primary.main
76
+ color: theme.palette.primary.main,
77
+ cursor: 'pointer'
77
78
  },
78
79
  seeAllButton: {
79
80
  cursor: 'pointer'
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { RequestNextPageOfAttributeValuesPayload } from '@reltio/mdm-module';
3
- import { AttributeError, AttributeType, AttributeValue, Crosswalk, ImageAttributeValue, Mode, NestedAttributeValue, Paging, ReferenceAttributeValue, SimpleAttributeValue } from '@reltio/mdm-sdk';
3
+ import { AttributeError, AttributeType, AttributeValue, Crosswalk, ImageAttributeValue, Mode, NestedAttributeValue, Paging, ReferenceAttributeValue, SimpleAttributeValue, PrimitiveValue } from '@reltio/mdm-sdk';
4
4
  import AttributesPager from './AttributesPager';
5
5
  import CardinalityMessage from './CardinalityMessage';
6
6
  export declare type AttributeItem = {
@@ -8,7 +8,7 @@ export declare type AttributeItem = {
8
8
  parentUri?: string;
9
9
  index?: number;
10
10
  attributeType: AttributeType;
11
- value?: Partial<AttributeValue> | ImageAttributeValue['value'] | string | boolean | number;
11
+ value?: Partial<AttributeValue> | ImageAttributeValue['value'] | PrimitiveValue;
12
12
  };
13
13
  declare type StateProps = {
14
14
  errorMessage: string;
@@ -1,4 +1,4 @@
1
- import { Crosswalk, Entity, NestedAttributeValue, ReferenceAttributeValue, Relation, SimpleAttributeValue } from '@reltio/mdm-sdk';
1
+ import { Crosswalk, Entity, NestedAttributeValue, ReferenceAttributeValue, Relation, SimpleAttributeValue, PrimitiveValue } from '@reltio/mdm-sdk';
2
2
  import { DCRTypes } from '../constants/operations';
3
3
  export declare type ChangeRequest = {
4
4
  changes: DCRChanges;
@@ -38,7 +38,7 @@ export declare type DCRObjectsInfo = {
38
38
  export declare type DCRAttributes = {
39
39
  [attributeName: string]: (ChangeValue | DCRChange)[];
40
40
  };
41
- export declare type Value = DCRAttributes | DCRChange | string | boolean | number;
41
+ export declare type Value = DCRAttributes | DCRChange | PrimitiveValue;
42
42
  export declare type DCRAttributeValue = Omit<SimpleAttributeValue | NestedAttributeValue | ReferenceAttributeValue, 'uri' | 'value'> & {
43
43
  value: Value;
44
44
  refObjectURI?: string;
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@reltio/components",
3
- "version": "1.4.1038",
3
+ "version": "1.4.1039",
4
4
  "license": "SEE LICENSE IN LICENSE FILE",
5
5
  "main": "./cjs/index.js",
6
6
  "module": "./esm/index.js",
7
7
  "dependencies": {
8
8
  "@date-io/moment": "^1.3.5",
9
- "@react-google-maps/api": "^2.7.0",
10
- "@reltio/mdm-module": "^1.4.1038",
11
- "@reltio/mdm-sdk": "^1.4.1038",
9
+ "@react-google-maps/api": "2.7.0",
10
+ "@reltio/mdm-module": "^1.4.1039",
11
+ "@reltio/mdm-sdk": "^1.4.1039",
12
12
  "classnames": "^2.2.5",
13
13
  "d3-cloud": "^1.2.5",
14
14
  "d3-geo": "^2.0.1",
@@ -35,7 +35,7 @@
35
35
  "react-virtualized": "^9.21.2",
36
36
  "react-window": "^1.8.5",
37
37
  "recharts": "^1.8.5",
38
- "ui-i18n": "bitbucket:reltio-ondemand/ui-i18n#v1.3.0"
38
+ "ui-i18n": "bitbucket:reltio-ondemand/ui-i18n#v1.3.1"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "moment": "2.24.0",