@reltio/components 1.4.1198 → 1.4.1201
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/MatchRulesBlock/MatchRulesBlock.d.ts +6 -6
- package/cjs/components/MatchRulesBlock/MatchRulesBlock.js +20 -2
- package/cjs/components/MatchRulesBlock/NotMatchRule/NotMatchRule.d.ts +3 -0
- package/cjs/components/MatchRulesBlock/NotMatchRule/NotMatchRule.js +17 -0
- package/cjs/components/MatchRulesBlock/NotMatchRule/styles.d.ts +1 -0
- package/cjs/components/MatchRulesBlock/NotMatchRule/styles.js +13 -0
- package/cjs/components/MatchRulesBlock/SimpleMatchRules/SimpleMatchRules.js +1 -1
- package/cjs/components/MatchRulesBlock/SimpleMatchRulesBuilder/SimpleMatchRulesBuilder.d.ts +3 -2
- package/cjs/components/MatchRulesBlock/SimpleMatchRulesBuilder/SimpleMatchRulesBuilder.js +8 -4
- package/cjs/components/MatchRulesBlock/TransitiveMatchRules/TransitiveMatchRule.js +1 -1
- package/cjs/components/MatchRulesBlock/types/index.d.ts +7 -0
- package/cjs/components/MatchRulesBlock/types/index.js +9 -0
- package/cjs/components/ProfileMatchCard/ProfileMatchCard.d.ts +2 -2
- package/cjs/components/history/HistoryGraph/HistoryCircle.d.ts +1 -1
- package/cjs/components/history/HistoryGraph/HistoryGraph.d.ts +1 -1
- package/cjs/components/index.d.ts +1 -1
- package/cjs/components/index.js +3 -3
- package/cjs/hooks/useMatchesLoader.d.ts +2 -2
- package/cjs/icons/NotMatchRule.d.ts +3 -0
- package/cjs/icons/NotMatchRule.js +22 -0
- package/cjs/icons/index.d.ts +4 -3
- package/cjs/icons/index.js +10 -8
- package/esm/components/MatchRulesBlock/MatchRulesBlock.d.ts +6 -6
- package/esm/components/MatchRulesBlock/MatchRulesBlock.js +21 -3
- package/esm/components/MatchRulesBlock/NotMatchRule/NotMatchRule.d.ts +3 -0
- package/esm/components/MatchRulesBlock/NotMatchRule/NotMatchRule.js +12 -0
- package/esm/components/MatchRulesBlock/NotMatchRule/styles.d.ts +1 -0
- package/esm/components/MatchRulesBlock/NotMatchRule/styles.js +10 -0
- package/esm/components/MatchRulesBlock/SimpleMatchRules/SimpleMatchRules.js +1 -1
- package/esm/components/MatchRulesBlock/SimpleMatchRulesBuilder/SimpleMatchRulesBuilder.d.ts +3 -2
- package/esm/components/MatchRulesBlock/SimpleMatchRulesBuilder/SimpleMatchRulesBuilder.js +8 -4
- package/esm/components/MatchRulesBlock/TransitiveMatchRules/TransitiveMatchRule.js +1 -1
- package/esm/components/MatchRulesBlock/types/index.d.ts +7 -0
- package/esm/components/MatchRulesBlock/types/index.js +8 -1
- package/esm/components/ProfileMatchCard/ProfileMatchCard.d.ts +2 -2
- package/esm/components/history/HistoryGraph/HistoryCircle.d.ts +1 -1
- package/esm/components/history/HistoryGraph/HistoryGraph.d.ts +1 -1
- package/esm/components/index.d.ts +1 -1
- package/esm/components/index.js +1 -1
- package/esm/hooks/useMatchesLoader.d.ts +2 -2
- package/esm/icons/NotMatchRule.d.ts +3 -0
- package/esm/icons/NotMatchRule.js +17 -0
- package/esm/icons/index.d.ts +4 -3
- package/esm/icons/index.js +4 -3
- package/package.json +3 -3
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { Entity, Metadata,
|
|
2
|
+
import { Entity, Metadata, Match, EntitiesMap } from '@reltio/mdm-sdk';
|
|
3
|
+
import { MatchRuleVariant } from './types';
|
|
3
4
|
declare type Props = {
|
|
4
|
-
entitiesMap:
|
|
5
|
-
[key: string]: Pick<Entity, 'uri' | 'type' | 'label'>;
|
|
6
|
-
};
|
|
5
|
+
entitiesMap: EntitiesMap;
|
|
7
6
|
entity: Entity;
|
|
8
|
-
match:
|
|
7
|
+
match: Match;
|
|
9
8
|
metadata: Metadata;
|
|
9
|
+
variant?: MatchRuleVariant;
|
|
10
10
|
};
|
|
11
|
-
declare const MatchRulesBlock: ({ entitiesMap, entity, match, metadata }: Props) => JSX.Element;
|
|
11
|
+
declare const MatchRulesBlock: ({ entitiesMap, entity, match, metadata, variant }: Props) => JSX.Element;
|
|
12
12
|
export default MatchRulesBlock;
|
|
@@ -8,8 +8,26 @@ var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
|
8
8
|
var SimpleMatchRulesBlock_1 = __importDefault(require("./SimpleMatchRulesBlock/SimpleMatchRulesBlock"));
|
|
9
9
|
var TransitiveMatchBlock_1 = __importDefault(require("./TransitiveMatchBlock/TransitiveMatchBlock"));
|
|
10
10
|
var SimpleMatchRulesBuilder_1 = __importDefault(require("./SimpleMatchRulesBuilder/SimpleMatchRulesBuilder"));
|
|
11
|
+
var NotMatchRule_1 = __importDefault(require("./NotMatchRule/NotMatchRule"));
|
|
12
|
+
var types_1 = require("./types");
|
|
11
13
|
var MatchRulesBlock = function (_a) {
|
|
12
|
-
var entitiesMap = _a.entitiesMap, entity = _a.entity, match = _a.match, metadata = _a.metadata;
|
|
13
|
-
|
|
14
|
+
var entitiesMap = _a.entitiesMap, entity = _a.entity, match = _a.match, metadata = _a.metadata, _b = _a.variant, variant = _b === void 0 ? types_1.MatchRuleVariant.all : _b;
|
|
15
|
+
if (!match.matchRules) {
|
|
16
|
+
return null;
|
|
17
|
+
}
|
|
18
|
+
var isTransitive = mdm_sdk_1.isTransitiveMatch(match);
|
|
19
|
+
var matchRules = mdm_sdk_1.getMatchRules(metadata, entity.type, match.matchRules);
|
|
20
|
+
var rules = matchRules.filter(function (_a) {
|
|
21
|
+
var uri = _a.uri;
|
|
22
|
+
return uri !== mdm_sdk_1.NOT_MATCH;
|
|
23
|
+
});
|
|
24
|
+
var hasNotMatch = rules.length !== matchRules.length;
|
|
25
|
+
var showTransitive = isTransitive && variant !== types_1.MatchRuleVariant.ml;
|
|
26
|
+
var showSimple = !isTransitive && !hasNotMatch;
|
|
27
|
+
var showNotMatch = hasNotMatch && ![types_1.MatchRuleVariant.excludeNotMatch, types_1.MatchRuleVariant.ml].includes(variant);
|
|
28
|
+
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
29
|
+
showTransitive ? (react_1.default.createElement(TransitiveMatchBlock_1.default, { transitiveMatchRules: mdm_sdk_1.getTransitiveMatchRules(metadata, match, entitiesMap) })) : null,
|
|
30
|
+
showSimple ? (react_1.default.createElement(SimpleMatchRulesBuilder_1.default, { variant: variant, matchRules: matchRules, Component: SimpleMatchRulesBlock_1.default })) : null,
|
|
31
|
+
showNotMatch ? react_1.default.createElement(NotMatchRule_1.default, null) : null));
|
|
14
32
|
};
|
|
15
33
|
exports.default = MatchRulesBlock;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
var react_1 = __importDefault(require("react"));
|
|
7
|
+
var ui_i18n_1 = __importDefault(require("ui-i18n"));
|
|
8
|
+
var NotMatchRule_1 = __importDefault(require("../../../icons/NotMatchRule"));
|
|
9
|
+
var styles_1 = require("./styles");
|
|
10
|
+
var NotMatchRule = function () {
|
|
11
|
+
var styles = styles_1.useStyles();
|
|
12
|
+
return (react_1.default.createElement("div", { className: styles.notMatch },
|
|
13
|
+
react_1.default.createElement(NotMatchRule_1.default, null),
|
|
14
|
+
" ",
|
|
15
|
+
ui_i18n_1.default.text('Not a match')));
|
|
16
|
+
};
|
|
17
|
+
exports.default = NotMatchRule;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"notMatch">;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useStyles = void 0;
|
|
4
|
+
var styles_1 = require("@material-ui/core/styles");
|
|
5
|
+
exports.useStyles = styles_1.makeStyles({
|
|
6
|
+
notMatch: {
|
|
7
|
+
display: 'flex',
|
|
8
|
+
'& svg': {
|
|
9
|
+
width: '14px',
|
|
10
|
+
height: '14px'
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
});
|
|
@@ -10,7 +10,7 @@ var styles_1 = __importDefault(require("./styles"));
|
|
|
10
10
|
var SimpleMatchRules = function (_a) {
|
|
11
11
|
var isMlMatch = _a.isMlMatch, matchRules = _a.matchRules, className = _a.className;
|
|
12
12
|
var styles = styles_1.default();
|
|
13
|
-
return (react_1.default.createElement("div", { className: classnames_1.default(styles.container, className) },
|
|
13
|
+
return (react_1.default.createElement("div", { "data-reltio-id": "simple-match-rules", className: classnames_1.default(styles.container, className) },
|
|
14
14
|
react_1.default.createElement("div", { className: styles.title },
|
|
15
15
|
react_1.default.createElement(MatchRulesTitle_1.default, { isMlMatch: isMlMatch })),
|
|
16
16
|
react_1.default.createElement("div", { className: styles.labelsContainer }, matchRules.map(function (match) { return (react_1.default.createElement("div", { key: match.uri }, "- " + match.label)); }))));
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
|
-
import { MatchRules } from '../types';
|
|
3
|
+
import { MatchRules, MatchRuleVariant } from '../types';
|
|
4
4
|
declare type Props = {
|
|
5
5
|
matchRules: MatchRules;
|
|
6
6
|
Component: React.ElementType;
|
|
7
7
|
className?: string;
|
|
8
|
+
variant?: MatchRuleVariant;
|
|
8
9
|
};
|
|
9
10
|
declare const SimpleMatchRulesBuilder: {
|
|
10
|
-
({ matchRules, Component, ...otherProps }: Props): JSX.Element;
|
|
11
|
+
({ matchRules, Component, variant, ...otherProps }: Props): JSX.Element;
|
|
11
12
|
propTypes: {
|
|
12
13
|
matchRules: PropTypes.Requireable<PropTypes.InferProps<{
|
|
13
14
|
uri: PropTypes.Requireable<string>;
|
|
@@ -29,12 +29,16 @@ var react_1 = __importDefault(require("react"));
|
|
|
29
29
|
var prop_types_1 = __importDefault(require("prop-types"));
|
|
30
30
|
var ramda_1 = require("ramda");
|
|
31
31
|
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
32
|
+
var types_1 = require("../types");
|
|
32
33
|
var SimpleMatchRulesBuilder = function (_a) {
|
|
33
|
-
var matchRules = _a.matchRules, Component = _a.Component, otherProps = __rest(_a, ["matchRules", "Component"]);
|
|
34
|
-
var
|
|
34
|
+
var matchRules = _a.matchRules, Component = _a.Component, _b = _a.variant, variant = _b === void 0 ? types_1.MatchRuleVariant.all : _b, otherProps = __rest(_a, ["matchRules", "Component", "variant"]);
|
|
35
|
+
var _c = mdm_sdk_1.partitionByMlMatch(matchRules), MlMatchRules = _c[0], otherMatchRules = _c[1];
|
|
36
|
+
var all = types_1.MatchRuleVariant.all, simple = types_1.MatchRuleVariant.simple, ml = types_1.MatchRuleVariant.ml, excludeML = types_1.MatchRuleVariant.excludeML, excludeNotMatch = types_1.MatchRuleVariant.excludeNotMatch;
|
|
37
|
+
var showSimple = [all, simple, excludeML, excludeNotMatch].includes(variant) && !ramda_1.isEmpty(otherMatchRules);
|
|
38
|
+
var showML = [all, ml, excludeNotMatch, excludeNotMatch].includes(variant) && !ramda_1.isEmpty(MlMatchRules);
|
|
35
39
|
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
36
|
-
|
|
37
|
-
|
|
40
|
+
showSimple ? react_1.default.createElement(Component, __assign({ matchRules: otherMatchRules }, otherProps)) : null,
|
|
41
|
+
showML ? react_1.default.createElement(Component, __assign({ isMlMatch: true, matchRules: MlMatchRules }, otherProps)) : null));
|
|
38
42
|
};
|
|
39
43
|
SimpleMatchRulesBuilder.propTypes = {
|
|
40
44
|
matchRules: mdm_sdk_1.MatchRulesType,
|
|
@@ -32,7 +32,7 @@ var TransitiveMatchRule = function (_a) {
|
|
|
32
32
|
var styles = styles_1.default();
|
|
33
33
|
var _b = react_1.useState(false), expanded = _b[0], setExpanded = _b[1];
|
|
34
34
|
var handleOnExpand = react_1.useCallback(function () { return setExpanded(function (expand) { return !expand; }); }, []);
|
|
35
|
-
return (react_1.default.createElement("div", { className: styles.container },
|
|
35
|
+
return (react_1.default.createElement("div", { "data-reltio-id": "transitive-match-rule", className: styles.container },
|
|
36
36
|
react_1.default.createElement("div", { onClick: handleOnExpand, className: styles.badge },
|
|
37
37
|
react_1.default.createElement(ArrowExpandButton_1.default, { expanded: expanded }),
|
|
38
38
|
react_1.default.createElement("div", { className: styles.label }, label)),
|
|
@@ -3,6 +3,13 @@ declare type MatchRule = {
|
|
|
3
3
|
label: string;
|
|
4
4
|
};
|
|
5
5
|
export declare type MatchRules = MatchRule[];
|
|
6
|
+
export declare enum MatchRuleVariant {
|
|
7
|
+
all = "all",
|
|
8
|
+
ml = "ml",
|
|
9
|
+
simple = "simple",
|
|
10
|
+
excludeML = "excludeML",
|
|
11
|
+
excludeNotMatch = "excludeNotMatch"
|
|
12
|
+
}
|
|
6
13
|
export declare type TransitiveMatchRules = Array<{
|
|
7
14
|
label: string;
|
|
8
15
|
matchRules: MatchRules;
|
|
@@ -1,2 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MatchRuleVariant = void 0;
|
|
4
|
+
var MatchRuleVariant;
|
|
5
|
+
(function (MatchRuleVariant) {
|
|
6
|
+
MatchRuleVariant["all"] = "all";
|
|
7
|
+
MatchRuleVariant["ml"] = "ml";
|
|
8
|
+
MatchRuleVariant["simple"] = "simple";
|
|
9
|
+
MatchRuleVariant["excludeML"] = "excludeML";
|
|
10
|
+
MatchRuleVariant["excludeNotMatch"] = "excludeNotMatch";
|
|
11
|
+
})(MatchRuleVariant = exports.MatchRuleVariant || (exports.MatchRuleVariant = {}));
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { Entity, Metadata,
|
|
2
|
+
import { Entity, Metadata, Match } from '@reltio/mdm-sdk';
|
|
3
3
|
declare type Props = {
|
|
4
4
|
entitiesMap: {
|
|
5
5
|
[key: string]: Pick<Entity, 'uri' | 'type' | 'label'>;
|
|
6
6
|
};
|
|
7
7
|
entity: Entity;
|
|
8
|
-
match:
|
|
8
|
+
match: Match;
|
|
9
9
|
metadata: Metadata;
|
|
10
10
|
children?: React.ReactNode;
|
|
11
11
|
className?: string;
|
|
@@ -9,5 +9,5 @@ declare const _default: React.ForwardRefExoticComponent<Pick<{
|
|
|
9
9
|
isCollapsed?: boolean;
|
|
10
10
|
showCollapseIcon?: boolean;
|
|
11
11
|
showLine?: boolean;
|
|
12
|
-
} & React.SVGProps<SVGGElement>, "string" | "visibility" | "type" | "values" | "filter" | "operator" | "id" | "max" | "offset" | "children" | "radius" | "order" | "method" | "width" | "height" | "
|
|
12
|
+
} & React.SVGProps<SVGGElement>, "string" | "visibility" | "type" | "values" | "filter" | "operator" | "id" | "in" | "max" | "offset" | "children" | "radius" | "order" | "method" | "width" | "height" | "format" | "key" | "attributeName" | "name" | "mode" | "attributeType" | "direction" | "path" | "from" | "to" | "end" | "clipPath" | "color" | "cursor" | "display" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "imageRendering" | "letterSpacing" | "opacity" | "overflow" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "wordSpacing" | "writingMode" | "mask" | "textDecoration" | "clip" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "local" | "style" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "onScroll" | "className" | "y" | "d" | "origin" | "lang" | "tabIndex" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "href" | "media" | "target" | "min" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "numOctaves" | "orient" | "orientation" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "isDashed" | "isCollapsed" | "showCollapseIcon" | "showLine"> & React.RefAttributes<unknown>>;
|
|
13
13
|
export default _default;
|
|
@@ -16,7 +16,7 @@ export declare const HistoryCircleWithTooltip: React.ForwardRefExoticComponent<i
|
|
|
16
16
|
isCollapsed?: boolean;
|
|
17
17
|
showCollapseIcon?: boolean;
|
|
18
18
|
showLine?: boolean;
|
|
19
|
-
} & React.SVGProps<SVGGElement>, "string" | "visibility" | "type" | "values" | "filter" | "operator" | "id" | "max" | "offset" | "children" | "radius" | "order" | "method" | "width" | "height" | "
|
|
19
|
+
} & React.SVGProps<SVGGElement>, "string" | "visibility" | "type" | "values" | "filter" | "operator" | "id" | "in" | "max" | "offset" | "children" | "radius" | "order" | "method" | "width" | "height" | "format" | "key" | "attributeName" | "name" | "mode" | "attributeType" | "direction" | "path" | "from" | "to" | "end" | "clipPath" | "color" | "cursor" | "display" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "imageRendering" | "letterSpacing" | "opacity" | "overflow" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "wordSpacing" | "writingMode" | "mask" | "textDecoration" | "clip" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "local" | "style" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "onScroll" | "className" | "y" | "d" | "origin" | "lang" | "tabIndex" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "href" | "media" | "target" | "min" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "numOctaves" | "orient" | "orientation" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "isDashed" | "isCollapsed" | "showCollapseIcon" | "showLine"> & React.RefAttributes<unknown>>;
|
|
20
20
|
declare type Props = {
|
|
21
21
|
graphData: HistoryData;
|
|
22
22
|
onHistoryCircleMouseOver?: (uri: string, timestamp: number, index: number) => void;
|
|
@@ -69,8 +69,8 @@ export { default as LinearLoadIndicator } from './LinearLoadIndicator/LinearLoad
|
|
|
69
69
|
export { default as Link } from './Link/Link';
|
|
70
70
|
export { default as LoadingSpinner } from './LoadingSpinner/LoadingSpinner';
|
|
71
71
|
export { default as MatchRulesBlock } from './MatchRulesBlock/MatchRulesBlock';
|
|
72
|
+
export { MatchRuleVariant } from './MatchRulesBlock/types';
|
|
72
73
|
export { default as SimpleMatchRulesBlock } from './MatchRulesBlock/SimpleMatchRulesBlock/SimpleMatchRulesBlock';
|
|
73
|
-
export { default as SimpleMatchRulesBuilder } from './MatchRulesBlock/SimpleMatchRulesBuilder/SimpleMatchRulesBuilder';
|
|
74
74
|
export { default as TransitiveMatchBlock } from './MatchRulesBlock/TransitiveMatchBlock/TransitiveMatchBlock';
|
|
75
75
|
export { default as ModeSwitcher } from './ModeSwitcher/ModeSwitcher';
|
|
76
76
|
export { ModeSwitcherSelect } from './ModeSwitcherSelect';
|
package/cjs/components/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
14
14
|
};
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.EMPTY_STATE_VARIANTS = exports.EMPTY_STATE_ICONS = exports.EmptyState = exports.NoResults = exports.NoData = exports.DropDownSelector = exports.DropDownMenuButton = exports.Drawer = exports.DataTypeValue = exports.ConnectionRelationTypeSelector = exports.ConfigureColumnsPopup = exports.MenuWithPopper = exports.MenuList = exports.LoadMoreButton = exports.DropdownIndicatorWithIconButton = exports.DropdownIndicator = exports.CommentsContainer = exports.ColorBar = exports.CollapseButton = exports.CollaborationItem = exports.ClickAwayProvider = exports.BasicViewHeader = exports.BasicViewContent = exports.BasicView = exports.ProfileBandNavigation = exports.AvatarWithFallback = exports.AutoSizeList = exports.ReadOnlyAttributesPager = exports.SimpleAttribute = exports.ReferenceAttribute = exports.NestedAttribute = exports.EditableImageAttributesLine = exports.ImageAttributesLine = exports.ReadOnlyAttributesList = exports.ReadOnlyAttributeValuesBlock = exports.EditableAttribute = exports.ReadOnlyAttribute = exports.CardinalityMessage = exports.AttributesPager = exports.SimpleAttributeEditor = exports.RelationTypeSelector = exports.ReferenceAttributeEditor = exports.NestedAttributeEditor = exports.MoreAttributesButton = exports.EntitySelector = exports.EntityCreator = exports.AttributesList = exports.BranchDecorator = exports.AttributesView = exports.AttributeListItem = void 0;
|
|
17
|
-
exports.SidePanelEmptyState = exports.SideButtonsPanel = exports.SelectorWithOnlyOptionAutoSelect = exports.SelectionPopupPopper = exports.SelectionPopup = exports.useKeyboardNavigation = exports.WhiteSearchInput = exports.SearchInput = exports.ResizablePanes = exports.ReltioGridLayout = exports.ReactSortableTreeUtils = exports.ReactSortableTreeHandlers = exports.ReactSortableTree = exports.ReactSelectOptionFilters = exports.MultiSelect = exports.QueryBuilderRowsGroup = exports.QueryBuilderRow = exports.ProfileCard = exports.ProfileBand = exports.PotentialMatchReviewCard = exports.PopupWithArrow = exports.Popper = exports.MultipleInput = exports.ModeSwitcherSelect = exports.ModeSwitcher = exports.TransitiveMatchBlock = exports.
|
|
17
|
+
exports.SidePanelEmptyState = exports.SideButtonsPanel = exports.SelectorWithOnlyOptionAutoSelect = exports.SelectionPopupPopper = exports.SelectionPopup = exports.useKeyboardNavigation = exports.WhiteSearchInput = exports.SearchInput = exports.ResizablePanes = exports.ReltioGridLayout = exports.ReactSortableTreeUtils = exports.ReactSortableTreeHandlers = exports.ReactSortableTree = exports.ReactSelectOptionFilters = exports.MultiSelect = exports.QueryBuilderRowsGroup = exports.QueryBuilderRow = exports.ProfileCard = exports.ProfileBand = exports.PotentialMatchReviewCard = exports.PopupWithArrow = exports.Popper = exports.MultipleInput = exports.ModeSwitcherSelect = exports.ModeSwitcher = exports.TransitiveMatchBlock = exports.SimpleMatchRulesBlock = exports.MatchRuleVariant = exports.MatchRulesBlock = exports.LoadingSpinner = exports.Link = exports.LinearLoadIndicator = exports.ImportModes = exports.ImportButton = exports.ImageGalleryDialog = exports.Highlighter = exports.HierarchicalAttributeTooltip = exports.HideOnShrink = exports.FlipCard = exports.FacetViewHeader = exports.ExpandedValueTooltip = exports.ErrorWrapper = exports.ErrorPopup = exports.ErrorBoundary = exports.EntityUriLink = exports.RelationTypesSelector = exports.EntityTypesSelector = exports.EntityTypeIcon = exports.EntityTypeBadge = exports.EntityAvatar = void 0;
|
|
18
18
|
exports.MatchRulesSelector = exports.MultiValueSelector = exports.DragAndDrop = exports.ConnectionEditor = exports.AttributesFiltersBuilder = exports.AttributesFiltersButton = exports.AttributeGroupIcon = exports.BasicAttributeSelector = exports.ProfilesList = exports.ActionButtonMode = exports.ActionButton = exports.NotMatchButton = exports.MergeButton = exports.ProfileMatchCard = exports.RelationEditor = exports.OvIcon = exports.ErrorMessage = exports.ReltioMap = exports.ConfirmDeleteDialog = exports.ConfirmationDialog = exports.Marginator = exports.LightArrowTooltip = exports.ArrowExpandButton = exports.ScrollableTabs = exports.ExpandableSearchInput = exports.VirtualGroupedList = exports.ViewMoreToggle = exports.VerticalHeadingsTable = exports.VerticalDivider = exports.AttributeTitle = exports.Spacer = exports.SourceIcon = exports.SmallIconButtonWithTooltip = exports.SmallIconButton = exports.SimpleDropDownSelector = exports.SidePanelContentHeader = exports.SidePanel = void 0;
|
|
19
19
|
__exportStar(require("./activityLog"), exports);
|
|
20
20
|
var AttributeListItem_1 = require("./AttributeListItem/AttributeListItem");
|
|
@@ -159,10 +159,10 @@ var LoadingSpinner_1 = require("./LoadingSpinner/LoadingSpinner");
|
|
|
159
159
|
Object.defineProperty(exports, "LoadingSpinner", { enumerable: true, get: function () { return __importDefault(LoadingSpinner_1).default; } });
|
|
160
160
|
var MatchRulesBlock_1 = require("./MatchRulesBlock/MatchRulesBlock");
|
|
161
161
|
Object.defineProperty(exports, "MatchRulesBlock", { enumerable: true, get: function () { return __importDefault(MatchRulesBlock_1).default; } });
|
|
162
|
+
var types_1 = require("./MatchRulesBlock/types");
|
|
163
|
+
Object.defineProperty(exports, "MatchRuleVariant", { enumerable: true, get: function () { return types_1.MatchRuleVariant; } });
|
|
162
164
|
var SimpleMatchRulesBlock_1 = require("./MatchRulesBlock/SimpleMatchRulesBlock/SimpleMatchRulesBlock");
|
|
163
165
|
Object.defineProperty(exports, "SimpleMatchRulesBlock", { enumerable: true, get: function () { return __importDefault(SimpleMatchRulesBlock_1).default; } });
|
|
164
|
-
var SimpleMatchRulesBuilder_1 = require("./MatchRulesBlock/SimpleMatchRulesBuilder/SimpleMatchRulesBuilder");
|
|
165
|
-
Object.defineProperty(exports, "SimpleMatchRulesBuilder", { enumerable: true, get: function () { return __importDefault(SimpleMatchRulesBuilder_1).default; } });
|
|
166
166
|
var TransitiveMatchBlock_1 = require("./MatchRulesBlock/TransitiveMatchBlock/TransitiveMatchBlock");
|
|
167
167
|
Object.defineProperty(exports, "TransitiveMatchBlock", { enumerable: true, get: function () { return __importDefault(TransitiveMatchBlock_1).default; } });
|
|
168
168
|
var ModeSwitcher_1 = require("./ModeSwitcher/ModeSwitcher");
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Entity,
|
|
1
|
+
import { Entity, Match } from '@reltio/mdm-sdk';
|
|
2
2
|
declare type Props = {
|
|
3
3
|
enabled: boolean;
|
|
4
4
|
entity: Entity;
|
|
@@ -20,7 +20,7 @@ declare type Props = {
|
|
|
20
20
|
};
|
|
21
21
|
export declare const useMatchesLoader: ({ enabled, entity, filter, rules, onFinishLoading, onStartLoading, options, page, rowsPerPage, sorting, markMatchedValues }: Props) => {
|
|
22
22
|
total: number;
|
|
23
|
-
matches:
|
|
23
|
+
matches: Match[];
|
|
24
24
|
entitiesMap: {
|
|
25
25
|
[key: string]: Pick<Entity, "type" | "uri" | "label">;
|
|
26
26
|
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
var react_1 = __importDefault(require("react"));
|
|
18
|
+
var SvgNotMatchRule = function (props) {
|
|
19
|
+
return (react_1.default.createElement("svg", __assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props),
|
|
20
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 20h15.002L21 23l1.27-1.27-20-20.01L1 2.99l6.172 6.175a4.007 4.007 0 002.66 2.662l2.23 2.23A10.754 10.754 0 0011 14c-2.67 0-8 1.34-8 4v2zm8-16a3.987 3.987 0 00-2.795 1.137l5.656 5.659A3.999 3.999 0 0011 4z", fill: "#000", fillOpacity: 0.54 })));
|
|
21
|
+
};
|
|
22
|
+
exports.default = SvgNotMatchRule;
|
package/cjs/icons/index.d.ts
CHANGED
|
@@ -22,19 +22,20 @@ export { default as Ignored } from './Ignored';
|
|
|
22
22
|
export { default as IgnoredOutlined } from './IgnoredOutlined';
|
|
23
23
|
export { default as LogIn } from './LogIn';
|
|
24
24
|
export { default as LogOut } from './LogOut';
|
|
25
|
+
export { default as MlMatch } from './MlMatch';
|
|
25
26
|
export { default as Merge } from './Merge';
|
|
26
27
|
export { default as MergeDark } from './MergeDark';
|
|
27
|
-
export { default as MlMatch } from './MlMatch';
|
|
28
28
|
export { default as NestedAttribute } from './NestedAttribute';
|
|
29
29
|
export { default as NoData } from './NoData';
|
|
30
30
|
export { default as NoDataSearch } from './NoDataSearch';
|
|
31
31
|
export { default as NoMatches } from './NoMatches';
|
|
32
32
|
export { default as NotMatchDark } from './NotMatchDark';
|
|
33
|
+
export { default as NotMatchRule } from './NotMatchRule';
|
|
34
|
+
export { default as PmIcon } from './PmIcon';
|
|
35
|
+
export { default as PmTaskIcon } from './PmTaskIcon';
|
|
33
36
|
export { default as Pin } from './Pin';
|
|
34
37
|
export { default as PinOutlined } from './PinOutlined';
|
|
35
38
|
export { default as PivotingIcon } from './PivotingIcon';
|
|
36
|
-
export { default as PmIcon } from './PmIcon';
|
|
37
|
-
export { default as PmTaskIcon } from './PmTaskIcon';
|
|
38
39
|
export { default as Polygon } from './Polygon';
|
|
39
40
|
export { default as PotentialMatch } from './PotentialMatch';
|
|
40
41
|
export { default as Profile } from './Profile';
|
package/cjs/icons/index.js
CHANGED
|
@@ -3,8 +3,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
7
|
-
exports.UploadIcon = void 0;
|
|
6
|
+
exports.Table = exports.SimpleAttribute = exports.SelectAttributes = exports.Search = exports.ResizeIconInline = exports.Remove = exports.ReferenceAttribute = exports.Recommended = exports.Radius = exports.Profile = exports.PotentialMatch = exports.Polygon = exports.PivotingIcon = exports.PinOutlined = exports.Pin = exports.PmTaskIcon = exports.PmIcon = exports.NotMatchRule = exports.NotMatchDark = exports.NoMatches = exports.NoDataSearch = exports.NoData = exports.NestedAttribute = exports.MergeDark = exports.Merge = exports.MlMatch = exports.LogOut = exports.LogIn = exports.IgnoredOutlined = exports.Ignored = exports.Filter = exports.Error = exports.EmptySearchResults = exports.Duplicate = exports.Draw = exports.Download = exports.Details = exports.DeleteRequestTaskIcon = exports.DefaultTaskIcon = exports.DefaultImage = exports.DcrTaskIcon = exports.Create = exports.Copy = exports.CommentBubble = exports.Comment = exports.CollaborationIcon = exports.Calendar = exports.AttributesList = exports.AddComment = exports.Add = void 0;
|
|
7
|
+
exports.UploadIcon = exports.UnMerge = void 0;
|
|
8
8
|
var Add_1 = require("./Add");
|
|
9
9
|
Object.defineProperty(exports, "Add", { enumerable: true, get: function () { return __importDefault(Add_1).default; } });
|
|
10
10
|
var AddComment_1 = require("./AddComment");
|
|
@@ -53,12 +53,12 @@ var LogIn_1 = require("./LogIn");
|
|
|
53
53
|
Object.defineProperty(exports, "LogIn", { enumerable: true, get: function () { return __importDefault(LogIn_1).default; } });
|
|
54
54
|
var LogOut_1 = require("./LogOut");
|
|
55
55
|
Object.defineProperty(exports, "LogOut", { enumerable: true, get: function () { return __importDefault(LogOut_1).default; } });
|
|
56
|
+
var MlMatch_1 = require("./MlMatch");
|
|
57
|
+
Object.defineProperty(exports, "MlMatch", { enumerable: true, get: function () { return __importDefault(MlMatch_1).default; } });
|
|
56
58
|
var Merge_1 = require("./Merge");
|
|
57
59
|
Object.defineProperty(exports, "Merge", { enumerable: true, get: function () { return __importDefault(Merge_1).default; } });
|
|
58
60
|
var MergeDark_1 = require("./MergeDark");
|
|
59
61
|
Object.defineProperty(exports, "MergeDark", { enumerable: true, get: function () { return __importDefault(MergeDark_1).default; } });
|
|
60
|
-
var MlMatch_1 = require("./MlMatch");
|
|
61
|
-
Object.defineProperty(exports, "MlMatch", { enumerable: true, get: function () { return __importDefault(MlMatch_1).default; } });
|
|
62
62
|
var NestedAttribute_1 = require("./NestedAttribute");
|
|
63
63
|
Object.defineProperty(exports, "NestedAttribute", { enumerable: true, get: function () { return __importDefault(NestedAttribute_1).default; } });
|
|
64
64
|
var NoData_1 = require("./NoData");
|
|
@@ -69,16 +69,18 @@ var NoMatches_1 = require("./NoMatches");
|
|
|
69
69
|
Object.defineProperty(exports, "NoMatches", { enumerable: true, get: function () { return __importDefault(NoMatches_1).default; } });
|
|
70
70
|
var NotMatchDark_1 = require("./NotMatchDark");
|
|
71
71
|
Object.defineProperty(exports, "NotMatchDark", { enumerable: true, get: function () { return __importDefault(NotMatchDark_1).default; } });
|
|
72
|
+
var NotMatchRule_1 = require("./NotMatchRule");
|
|
73
|
+
Object.defineProperty(exports, "NotMatchRule", { enumerable: true, get: function () { return __importDefault(NotMatchRule_1).default; } });
|
|
74
|
+
var PmIcon_1 = require("./PmIcon");
|
|
75
|
+
Object.defineProperty(exports, "PmIcon", { enumerable: true, get: function () { return __importDefault(PmIcon_1).default; } });
|
|
76
|
+
var PmTaskIcon_1 = require("./PmTaskIcon");
|
|
77
|
+
Object.defineProperty(exports, "PmTaskIcon", { enumerable: true, get: function () { return __importDefault(PmTaskIcon_1).default; } });
|
|
72
78
|
var Pin_1 = require("./Pin");
|
|
73
79
|
Object.defineProperty(exports, "Pin", { enumerable: true, get: function () { return __importDefault(Pin_1).default; } });
|
|
74
80
|
var PinOutlined_1 = require("./PinOutlined");
|
|
75
81
|
Object.defineProperty(exports, "PinOutlined", { enumerable: true, get: function () { return __importDefault(PinOutlined_1).default; } });
|
|
76
82
|
var PivotingIcon_1 = require("./PivotingIcon");
|
|
77
83
|
Object.defineProperty(exports, "PivotingIcon", { enumerable: true, get: function () { return __importDefault(PivotingIcon_1).default; } });
|
|
78
|
-
var PmIcon_1 = require("./PmIcon");
|
|
79
|
-
Object.defineProperty(exports, "PmIcon", { enumerable: true, get: function () { return __importDefault(PmIcon_1).default; } });
|
|
80
|
-
var PmTaskIcon_1 = require("./PmTaskIcon");
|
|
81
|
-
Object.defineProperty(exports, "PmTaskIcon", { enumerable: true, get: function () { return __importDefault(PmTaskIcon_1).default; } });
|
|
82
84
|
var Polygon_1 = require("./Polygon");
|
|
83
85
|
Object.defineProperty(exports, "Polygon", { enumerable: true, get: function () { return __importDefault(Polygon_1).default; } });
|
|
84
86
|
var PotentialMatch_1 = require("./PotentialMatch");
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { Entity, Metadata,
|
|
2
|
+
import { Entity, Metadata, Match, EntitiesMap } from '@reltio/mdm-sdk';
|
|
3
|
+
import { MatchRuleVariant } from './types';
|
|
3
4
|
declare type Props = {
|
|
4
|
-
entitiesMap:
|
|
5
|
-
[key: string]: Pick<Entity, 'uri' | 'type' | 'label'>;
|
|
6
|
-
};
|
|
5
|
+
entitiesMap: EntitiesMap;
|
|
7
6
|
entity: Entity;
|
|
8
|
-
match:
|
|
7
|
+
match: Match;
|
|
9
8
|
metadata: Metadata;
|
|
9
|
+
variant?: MatchRuleVariant;
|
|
10
10
|
};
|
|
11
|
-
declare const MatchRulesBlock: ({ entitiesMap, entity, match, metadata }: Props) => JSX.Element;
|
|
11
|
+
declare const MatchRulesBlock: ({ entitiesMap, entity, match, metadata, variant }: Props) => JSX.Element;
|
|
12
12
|
export default MatchRulesBlock;
|
|
@@ -1,10 +1,28 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { getMatchRules, getTransitiveMatchRules, isTransitiveMatch } from '@reltio/mdm-sdk';
|
|
2
|
+
import { getMatchRules, getTransitiveMatchRules, isTransitiveMatch, NOT_MATCH } from '@reltio/mdm-sdk';
|
|
3
3
|
import SimpleMatchRulesBlock from './SimpleMatchRulesBlock/SimpleMatchRulesBlock';
|
|
4
4
|
import TransitiveMatchBlock from './TransitiveMatchBlock/TransitiveMatchBlock';
|
|
5
5
|
import SimpleMatchRulesBuilder from './SimpleMatchRulesBuilder/SimpleMatchRulesBuilder';
|
|
6
|
+
import NotMatchRule from './NotMatchRule/NotMatchRule';
|
|
7
|
+
import { MatchRuleVariant } from './types';
|
|
6
8
|
var MatchRulesBlock = function (_a) {
|
|
7
|
-
var entitiesMap = _a.entitiesMap, entity = _a.entity, match = _a.match, metadata = _a.metadata;
|
|
8
|
-
|
|
9
|
+
var entitiesMap = _a.entitiesMap, entity = _a.entity, match = _a.match, metadata = _a.metadata, _b = _a.variant, variant = _b === void 0 ? MatchRuleVariant.all : _b;
|
|
10
|
+
if (!match.matchRules) {
|
|
11
|
+
return null;
|
|
12
|
+
}
|
|
13
|
+
var isTransitive = isTransitiveMatch(match);
|
|
14
|
+
var matchRules = getMatchRules(metadata, entity.type, match.matchRules);
|
|
15
|
+
var rules = matchRules.filter(function (_a) {
|
|
16
|
+
var uri = _a.uri;
|
|
17
|
+
return uri !== NOT_MATCH;
|
|
18
|
+
});
|
|
19
|
+
var hasNotMatch = rules.length !== matchRules.length;
|
|
20
|
+
var showTransitive = isTransitive && variant !== MatchRuleVariant.ml;
|
|
21
|
+
var showSimple = !isTransitive && !hasNotMatch;
|
|
22
|
+
var showNotMatch = hasNotMatch && ![MatchRuleVariant.excludeNotMatch, MatchRuleVariant.ml].includes(variant);
|
|
23
|
+
return (React.createElement(React.Fragment, null,
|
|
24
|
+
showTransitive ? (React.createElement(TransitiveMatchBlock, { transitiveMatchRules: getTransitiveMatchRules(metadata, match, entitiesMap) })) : null,
|
|
25
|
+
showSimple ? (React.createElement(SimpleMatchRulesBuilder, { variant: variant, matchRules: matchRules, Component: SimpleMatchRulesBlock })) : null,
|
|
26
|
+
showNotMatch ? React.createElement(NotMatchRule, null) : null));
|
|
9
27
|
};
|
|
10
28
|
export default MatchRulesBlock;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import i18n from 'ui-i18n';
|
|
3
|
+
import NotMatchRuleIcon from '../../../icons/NotMatchRule';
|
|
4
|
+
import { useStyles } from './styles';
|
|
5
|
+
var NotMatchRule = function () {
|
|
6
|
+
var styles = useStyles();
|
|
7
|
+
return (React.createElement("div", { className: styles.notMatch },
|
|
8
|
+
React.createElement(NotMatchRuleIcon, null),
|
|
9
|
+
" ",
|
|
10
|
+
i18n.text('Not a match')));
|
|
11
|
+
};
|
|
12
|
+
export default NotMatchRule;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"notMatch">;
|
|
@@ -5,7 +5,7 @@ import useStyles from './styles';
|
|
|
5
5
|
var SimpleMatchRules = function (_a) {
|
|
6
6
|
var isMlMatch = _a.isMlMatch, matchRules = _a.matchRules, className = _a.className;
|
|
7
7
|
var styles = useStyles();
|
|
8
|
-
return (React.createElement("div", { className: classnames(styles.container, className) },
|
|
8
|
+
return (React.createElement("div", { "data-reltio-id": "simple-match-rules", className: classnames(styles.container, className) },
|
|
9
9
|
React.createElement("div", { className: styles.title },
|
|
10
10
|
React.createElement(MatchRulesTitle, { isMlMatch: isMlMatch })),
|
|
11
11
|
React.createElement("div", { className: styles.labelsContainer }, matchRules.map(function (match) { return (React.createElement("div", { key: match.uri }, "- " + match.label)); }))));
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
|
-
import { MatchRules } from '../types';
|
|
3
|
+
import { MatchRules, MatchRuleVariant } from '../types';
|
|
4
4
|
declare type Props = {
|
|
5
5
|
matchRules: MatchRules;
|
|
6
6
|
Component: React.ElementType;
|
|
7
7
|
className?: string;
|
|
8
|
+
variant?: MatchRuleVariant;
|
|
8
9
|
};
|
|
9
10
|
declare const SimpleMatchRulesBuilder: {
|
|
10
|
-
({ matchRules, Component, ...otherProps }: Props): JSX.Element;
|
|
11
|
+
({ matchRules, Component, variant, ...otherProps }: Props): JSX.Element;
|
|
11
12
|
propTypes: {
|
|
12
13
|
matchRules: PropTypes.Requireable<PropTypes.InferProps<{
|
|
13
14
|
uri: PropTypes.Requireable<string>;
|
|
@@ -24,12 +24,16 @@ import React from 'react';
|
|
|
24
24
|
import PropTypes from 'prop-types';
|
|
25
25
|
import { isEmpty } from 'ramda';
|
|
26
26
|
import { MatchRulesType, partitionByMlMatch } from '@reltio/mdm-sdk';
|
|
27
|
+
import { MatchRuleVariant } from '../types';
|
|
27
28
|
var SimpleMatchRulesBuilder = function (_a) {
|
|
28
|
-
var matchRules = _a.matchRules, Component = _a.Component, otherProps = __rest(_a, ["matchRules", "Component"]);
|
|
29
|
-
var
|
|
29
|
+
var matchRules = _a.matchRules, Component = _a.Component, _b = _a.variant, variant = _b === void 0 ? MatchRuleVariant.all : _b, otherProps = __rest(_a, ["matchRules", "Component", "variant"]);
|
|
30
|
+
var _c = partitionByMlMatch(matchRules), MlMatchRules = _c[0], otherMatchRules = _c[1];
|
|
31
|
+
var all = MatchRuleVariant.all, simple = MatchRuleVariant.simple, ml = MatchRuleVariant.ml, excludeML = MatchRuleVariant.excludeML, excludeNotMatch = MatchRuleVariant.excludeNotMatch;
|
|
32
|
+
var showSimple = [all, simple, excludeML, excludeNotMatch].includes(variant) && !isEmpty(otherMatchRules);
|
|
33
|
+
var showML = [all, ml, excludeNotMatch, excludeNotMatch].includes(variant) && !isEmpty(MlMatchRules);
|
|
30
34
|
return (React.createElement(React.Fragment, null,
|
|
31
|
-
|
|
32
|
-
|
|
35
|
+
showSimple ? React.createElement(Component, __assign({ matchRules: otherMatchRules }, otherProps)) : null,
|
|
36
|
+
showML ? React.createElement(Component, __assign({ isMlMatch: true, matchRules: MlMatchRules }, otherProps)) : null));
|
|
33
37
|
};
|
|
34
38
|
SimpleMatchRulesBuilder.propTypes = {
|
|
35
39
|
matchRules: MatchRulesType,
|
|
@@ -8,7 +8,7 @@ var TransitiveMatchRule = function (_a) {
|
|
|
8
8
|
var styles = useStyles();
|
|
9
9
|
var _b = useState(false), expanded = _b[0], setExpanded = _b[1];
|
|
10
10
|
var handleOnExpand = useCallback(function () { return setExpanded(function (expand) { return !expand; }); }, []);
|
|
11
|
-
return (React.createElement("div", { className: styles.container },
|
|
11
|
+
return (React.createElement("div", { "data-reltio-id": "transitive-match-rule", className: styles.container },
|
|
12
12
|
React.createElement("div", { onClick: handleOnExpand, className: styles.badge },
|
|
13
13
|
React.createElement(ArrowExpandButton, { expanded: expanded }),
|
|
14
14
|
React.createElement("div", { className: styles.label }, label)),
|
|
@@ -3,6 +3,13 @@ declare type MatchRule = {
|
|
|
3
3
|
label: string;
|
|
4
4
|
};
|
|
5
5
|
export declare type MatchRules = MatchRule[];
|
|
6
|
+
export declare enum MatchRuleVariant {
|
|
7
|
+
all = "all",
|
|
8
|
+
ml = "ml",
|
|
9
|
+
simple = "simple",
|
|
10
|
+
excludeML = "excludeML",
|
|
11
|
+
excludeNotMatch = "excludeNotMatch"
|
|
12
|
+
}
|
|
6
13
|
export declare type TransitiveMatchRules = Array<{
|
|
7
14
|
label: string;
|
|
8
15
|
matchRules: MatchRules;
|
|
@@ -1 +1,8 @@
|
|
|
1
|
-
export
|
|
1
|
+
export var MatchRuleVariant;
|
|
2
|
+
(function (MatchRuleVariant) {
|
|
3
|
+
MatchRuleVariant["all"] = "all";
|
|
4
|
+
MatchRuleVariant["ml"] = "ml";
|
|
5
|
+
MatchRuleVariant["simple"] = "simple";
|
|
6
|
+
MatchRuleVariant["excludeML"] = "excludeML";
|
|
7
|
+
MatchRuleVariant["excludeNotMatch"] = "excludeNotMatch";
|
|
8
|
+
})(MatchRuleVariant || (MatchRuleVariant = {}));
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { Entity, Metadata,
|
|
2
|
+
import { Entity, Metadata, Match } from '@reltio/mdm-sdk';
|
|
3
3
|
declare type Props = {
|
|
4
4
|
entitiesMap: {
|
|
5
5
|
[key: string]: Pick<Entity, 'uri' | 'type' | 'label'>;
|
|
6
6
|
};
|
|
7
7
|
entity: Entity;
|
|
8
|
-
match:
|
|
8
|
+
match: Match;
|
|
9
9
|
metadata: Metadata;
|
|
10
10
|
children?: React.ReactNode;
|
|
11
11
|
className?: string;
|
|
@@ -9,5 +9,5 @@ declare const _default: React.ForwardRefExoticComponent<Pick<{
|
|
|
9
9
|
isCollapsed?: boolean;
|
|
10
10
|
showCollapseIcon?: boolean;
|
|
11
11
|
showLine?: boolean;
|
|
12
|
-
} & React.SVGProps<SVGGElement>, "string" | "visibility" | "type" | "values" | "filter" | "operator" | "id" | "max" | "offset" | "children" | "radius" | "order" | "method" | "width" | "height" | "
|
|
12
|
+
} & React.SVGProps<SVGGElement>, "string" | "visibility" | "type" | "values" | "filter" | "operator" | "id" | "in" | "max" | "offset" | "children" | "radius" | "order" | "method" | "width" | "height" | "format" | "key" | "attributeName" | "name" | "mode" | "attributeType" | "direction" | "path" | "from" | "to" | "end" | "clipPath" | "color" | "cursor" | "display" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "imageRendering" | "letterSpacing" | "opacity" | "overflow" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "wordSpacing" | "writingMode" | "mask" | "textDecoration" | "clip" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "local" | "style" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "onScroll" | "className" | "y" | "d" | "origin" | "lang" | "tabIndex" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "href" | "media" | "target" | "min" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "numOctaves" | "orient" | "orientation" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "isDashed" | "isCollapsed" | "showCollapseIcon" | "showLine"> & React.RefAttributes<unknown>>;
|
|
13
13
|
export default _default;
|
|
@@ -16,7 +16,7 @@ export declare const HistoryCircleWithTooltip: React.ForwardRefExoticComponent<i
|
|
|
16
16
|
isCollapsed?: boolean;
|
|
17
17
|
showCollapseIcon?: boolean;
|
|
18
18
|
showLine?: boolean;
|
|
19
|
-
} & React.SVGProps<SVGGElement>, "string" | "visibility" | "type" | "values" | "filter" | "operator" | "id" | "max" | "offset" | "children" | "radius" | "order" | "method" | "width" | "height" | "
|
|
19
|
+
} & React.SVGProps<SVGGElement>, "string" | "visibility" | "type" | "values" | "filter" | "operator" | "id" | "in" | "max" | "offset" | "children" | "radius" | "order" | "method" | "width" | "height" | "format" | "key" | "attributeName" | "name" | "mode" | "attributeType" | "direction" | "path" | "from" | "to" | "end" | "clipPath" | "color" | "cursor" | "display" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "imageRendering" | "letterSpacing" | "opacity" | "overflow" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "wordSpacing" | "writingMode" | "mask" | "textDecoration" | "clip" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "local" | "style" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "onScroll" | "className" | "y" | "d" | "origin" | "lang" | "tabIndex" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "href" | "media" | "target" | "min" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "numOctaves" | "orient" | "orientation" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "isDashed" | "isCollapsed" | "showCollapseIcon" | "showLine"> & React.RefAttributes<unknown>>;
|
|
20
20
|
declare type Props = {
|
|
21
21
|
graphData: HistoryData;
|
|
22
22
|
onHistoryCircleMouseOver?: (uri: string, timestamp: number, index: number) => void;
|
|
@@ -69,8 +69,8 @@ export { default as LinearLoadIndicator } from './LinearLoadIndicator/LinearLoad
|
|
|
69
69
|
export { default as Link } from './Link/Link';
|
|
70
70
|
export { default as LoadingSpinner } from './LoadingSpinner/LoadingSpinner';
|
|
71
71
|
export { default as MatchRulesBlock } from './MatchRulesBlock/MatchRulesBlock';
|
|
72
|
+
export { MatchRuleVariant } from './MatchRulesBlock/types';
|
|
72
73
|
export { default as SimpleMatchRulesBlock } from './MatchRulesBlock/SimpleMatchRulesBlock/SimpleMatchRulesBlock';
|
|
73
|
-
export { default as SimpleMatchRulesBuilder } from './MatchRulesBlock/SimpleMatchRulesBuilder/SimpleMatchRulesBuilder';
|
|
74
74
|
export { default as TransitiveMatchBlock } from './MatchRulesBlock/TransitiveMatchBlock/TransitiveMatchBlock';
|
|
75
75
|
export { default as ModeSwitcher } from './ModeSwitcher/ModeSwitcher';
|
|
76
76
|
export { ModeSwitcherSelect } from './ModeSwitcherSelect';
|
package/esm/components/index.js
CHANGED
|
@@ -69,8 +69,8 @@ export { default as LinearLoadIndicator } from './LinearLoadIndicator/LinearLoad
|
|
|
69
69
|
export { default as Link } from './Link/Link';
|
|
70
70
|
export { default as LoadingSpinner } from './LoadingSpinner/LoadingSpinner';
|
|
71
71
|
export { default as MatchRulesBlock } from './MatchRulesBlock/MatchRulesBlock';
|
|
72
|
+
export { MatchRuleVariant } from './MatchRulesBlock/types';
|
|
72
73
|
export { default as SimpleMatchRulesBlock } from './MatchRulesBlock/SimpleMatchRulesBlock/SimpleMatchRulesBlock';
|
|
73
|
-
export { default as SimpleMatchRulesBuilder } from './MatchRulesBlock/SimpleMatchRulesBuilder/SimpleMatchRulesBuilder';
|
|
74
74
|
export { default as TransitiveMatchBlock } from './MatchRulesBlock/TransitiveMatchBlock/TransitiveMatchBlock';
|
|
75
75
|
export { default as ModeSwitcher } from './ModeSwitcher/ModeSwitcher';
|
|
76
76
|
export { ModeSwitcherSelect } from './ModeSwitcherSelect';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Entity,
|
|
1
|
+
import { Entity, Match } from '@reltio/mdm-sdk';
|
|
2
2
|
declare type Props = {
|
|
3
3
|
enabled: boolean;
|
|
4
4
|
entity: Entity;
|
|
@@ -20,7 +20,7 @@ declare type Props = {
|
|
|
20
20
|
};
|
|
21
21
|
export declare const useMatchesLoader: ({ enabled, entity, filter, rules, onFinishLoading, onStartLoading, options, page, rowsPerPage, sorting, markMatchedValues }: Props) => {
|
|
22
22
|
total: number;
|
|
23
|
-
matches:
|
|
23
|
+
matches: Match[];
|
|
24
24
|
entitiesMap: {
|
|
25
25
|
[key: string]: Pick<Entity, "type" | "uri" | "label">;
|
|
26
26
|
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import React from 'react';
|
|
13
|
+
var SvgNotMatchRule = function (props) {
|
|
14
|
+
return (React.createElement("svg", __assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props),
|
|
15
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 20h15.002L21 23l1.27-1.27-20-20.01L1 2.99l6.172 6.175a4.007 4.007 0 002.66 2.662l2.23 2.23A10.754 10.754 0 0011 14c-2.67 0-8 1.34-8 4v2zm8-16a3.987 3.987 0 00-2.795 1.137l5.656 5.659A3.999 3.999 0 0011 4z", fill: "#000", fillOpacity: 0.54 })));
|
|
16
|
+
};
|
|
17
|
+
export default SvgNotMatchRule;
|
package/esm/icons/index.d.ts
CHANGED
|
@@ -22,19 +22,20 @@ export { default as Ignored } from './Ignored';
|
|
|
22
22
|
export { default as IgnoredOutlined } from './IgnoredOutlined';
|
|
23
23
|
export { default as LogIn } from './LogIn';
|
|
24
24
|
export { default as LogOut } from './LogOut';
|
|
25
|
+
export { default as MlMatch } from './MlMatch';
|
|
25
26
|
export { default as Merge } from './Merge';
|
|
26
27
|
export { default as MergeDark } from './MergeDark';
|
|
27
|
-
export { default as MlMatch } from './MlMatch';
|
|
28
28
|
export { default as NestedAttribute } from './NestedAttribute';
|
|
29
29
|
export { default as NoData } from './NoData';
|
|
30
30
|
export { default as NoDataSearch } from './NoDataSearch';
|
|
31
31
|
export { default as NoMatches } from './NoMatches';
|
|
32
32
|
export { default as NotMatchDark } from './NotMatchDark';
|
|
33
|
+
export { default as NotMatchRule } from './NotMatchRule';
|
|
34
|
+
export { default as PmIcon } from './PmIcon';
|
|
35
|
+
export { default as PmTaskIcon } from './PmTaskIcon';
|
|
33
36
|
export { default as Pin } from './Pin';
|
|
34
37
|
export { default as PinOutlined } from './PinOutlined';
|
|
35
38
|
export { default as PivotingIcon } from './PivotingIcon';
|
|
36
|
-
export { default as PmIcon } from './PmIcon';
|
|
37
|
-
export { default as PmTaskIcon } from './PmTaskIcon';
|
|
38
39
|
export { default as Polygon } from './Polygon';
|
|
39
40
|
export { default as PotentialMatch } from './PotentialMatch';
|
|
40
41
|
export { default as Profile } from './Profile';
|
package/esm/icons/index.js
CHANGED
|
@@ -22,19 +22,20 @@ export { default as Ignored } from './Ignored';
|
|
|
22
22
|
export { default as IgnoredOutlined } from './IgnoredOutlined';
|
|
23
23
|
export { default as LogIn } from './LogIn';
|
|
24
24
|
export { default as LogOut } from './LogOut';
|
|
25
|
+
export { default as MlMatch } from './MlMatch';
|
|
25
26
|
export { default as Merge } from './Merge';
|
|
26
27
|
export { default as MergeDark } from './MergeDark';
|
|
27
|
-
export { default as MlMatch } from './MlMatch';
|
|
28
28
|
export { default as NestedAttribute } from './NestedAttribute';
|
|
29
29
|
export { default as NoData } from './NoData';
|
|
30
30
|
export { default as NoDataSearch } from './NoDataSearch';
|
|
31
31
|
export { default as NoMatches } from './NoMatches';
|
|
32
32
|
export { default as NotMatchDark } from './NotMatchDark';
|
|
33
|
+
export { default as NotMatchRule } from './NotMatchRule';
|
|
34
|
+
export { default as PmIcon } from './PmIcon';
|
|
35
|
+
export { default as PmTaskIcon } from './PmTaskIcon';
|
|
33
36
|
export { default as Pin } from './Pin';
|
|
34
37
|
export { default as PinOutlined } from './PinOutlined';
|
|
35
38
|
export { default as PivotingIcon } from './PivotingIcon';
|
|
36
|
-
export { default as PmIcon } from './PmIcon';
|
|
37
|
-
export { default as PmTaskIcon } from './PmTaskIcon';
|
|
38
39
|
export { default as Polygon } from './Polygon';
|
|
39
40
|
export { default as PotentialMatch } from './PotentialMatch';
|
|
40
41
|
export { default as Profile } from './Profile';
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reltio/components",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1201",
|
|
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.1201",
|
|
11
|
+
"@reltio/mdm-sdk": "^1.4.1201",
|
|
12
12
|
"classnames": "^2.2.5",
|
|
13
13
|
"d3-cloud": "^1.2.5",
|
|
14
14
|
"d3-geo": "^2.0.1",
|