@reltio/components 1.4.1152 → 1.4.1155
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/cjs/components/ProfileBand/styles.d.ts +1 -1
- package/cjs/components/ProfileMatchCard/ProfileMatchCard.js +1 -2
- package/cjs/components/ReactSelect/styles.d.ts +1 -1
- package/esm/components/ProfileBand/styles.d.ts +1 -1
- package/esm/components/ProfileMatchCard/ProfileMatchCard.js +1 -2
- package/esm/components/ReactSelect/styles.d.ts +1 -1
- package/package.json +3 -3
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default useStyles;
|
|
2
|
-
declare const useStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"label" | "entityType" | "secondaryLabel" | "inactive" | "entityId" | "badge" | "profileIcon" | "businessCard" | "profileBandWrapper" | "
|
|
2
|
+
declare const useStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"label" | "entityType" | "profileBand" | "secondaryLabel" | "inactive" | "entityId" | "badge" | "profileIcon" | "businessCard" | "profileBandWrapper" | "imageProfileIcon" | "profileInfo" | "specialInfo">;
|
|
@@ -16,7 +16,6 @@ var ProfileMatchCard = function (_a) {
|
|
|
16
16
|
react_1.default.createElement("div", { className: styles.profileCardWrapper },
|
|
17
17
|
react_1.default.createElement(ProfileCard_1.default, { entity: match.object, classes: { container: styles.profileCardContainer } }),
|
|
18
18
|
children),
|
|
19
|
-
react_1.default.createElement("div", { className: styles.rulesContainer },
|
|
20
|
-
react_1.default.createElement(MatchRulesBlock_1.default, { match: match, metadata: metadata, entitiesMap: entitiesMap, entity: entity }))));
|
|
19
|
+
react_1.default.createElement("div", { className: styles.rulesContainer }, match.matchRules && (react_1.default.createElement(MatchRulesBlock_1.default, { match: match, metadata: metadata, entitiesMap: entitiesMap, entity: entity })))));
|
|
21
20
|
};
|
|
22
21
|
exports.ProfileMatchCard = ProfileMatchCard;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare var _default: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"option" | "
|
|
1
|
+
declare var _default: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"option" | "singleValue" | "menu" | "placeholder" | "control" | "valueContainer" | "multiValue" | "noOptionsMessage" | "clearIndicator" | "dropdownIndicator" | "option--selected" | "groupHeading" | "multiValue__label" | "option--item" | "valueContainer--multi">;
|
|
2
2
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default useStyles;
|
|
2
|
-
declare const useStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"label" | "entityType" | "secondaryLabel" | "inactive" | "entityId" | "badge" | "profileIcon" | "businessCard" | "profileBandWrapper" | "
|
|
2
|
+
declare const useStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"label" | "entityType" | "profileBand" | "secondaryLabel" | "inactive" | "entityId" | "badge" | "profileIcon" | "businessCard" | "profileBandWrapper" | "imageProfileIcon" | "profileInfo" | "specialInfo">;
|
|
@@ -10,6 +10,5 @@ export var ProfileMatchCard = function (_a) {
|
|
|
10
10
|
React.createElement("div", { className: styles.profileCardWrapper },
|
|
11
11
|
React.createElement(ProfileCard, { entity: match.object, classes: { container: styles.profileCardContainer } }),
|
|
12
12
|
children),
|
|
13
|
-
React.createElement("div", { className: styles.rulesContainer },
|
|
14
|
-
React.createElement(MatchRulesBlock, { match: match, metadata: metadata, entitiesMap: entitiesMap, entity: entity }))));
|
|
13
|
+
React.createElement("div", { className: styles.rulesContainer }, match.matchRules && (React.createElement(MatchRulesBlock, { match: match, metadata: metadata, entitiesMap: entitiesMap, entity: entity })))));
|
|
15
14
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare var _default: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"option" | "
|
|
1
|
+
declare var _default: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"option" | "singleValue" | "menu" | "placeholder" | "control" | "valueContainer" | "multiValue" | "noOptionsMessage" | "clearIndicator" | "dropdownIndicator" | "option--selected" | "groupHeading" | "multiValue__label" | "option--item" | "valueContainer--multi">;
|
|
2
2
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reltio/components",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1155",
|
|
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
9
|
"@react-google-maps/api": "2.7.0",
|
|
10
|
-
"@reltio/mdm-module": "^1.4.
|
|
11
|
-
"@reltio/mdm-sdk": "^1.4.
|
|
10
|
+
"@reltio/mdm-module": "^1.4.1155",
|
|
11
|
+
"@reltio/mdm-sdk": "^1.4.1155",
|
|
12
12
|
"classnames": "^2.2.5",
|
|
13
13
|
"d3-cloud": "^1.2.5",
|
|
14
14
|
"d3-geo": "^2.0.1",
|