@reltio/components 1.4.827 → 1.4.831
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/components/attributes/inline/SimpleAttributeEditor/SimpleAttributeEditor.js +4 -1
- package/components/attributes/inline/SimpleAttributeEditor/styles.d.ts +1 -1
- package/components/attributes/inline/SimpleAttributeEditor/styles.js +6 -1
- package/components/crosswalks/CrosswalkDateEditor/styles.d.ts +1 -1
- package/components/editors/LookupEditor/entriesHelpers.js +6 -2
- package/components/history/HistoryFilterButton/HistoryFilterBitton.d.ts +3 -0
- package/components/history/HistoryFilterButton/HistoryFilterBitton.js +14 -0
- package/components/history/HistoryFilterButton/styles.d.ts +1 -0
- package/components/history/HistoryFilterButton/styles.js +9 -0
- package/components/history/HistoryHeader/HistoryHeader.d.ts +6 -0
- package/components/history/HistoryHeader/HistoryHeader.js +28 -0
- package/components/history/HistoryHeader/styles.d.ts +1 -0
- package/components/history/HistoryHeader/styles.js +21 -0
- package/components/history/HistoryMenuButton/HistoryMenuButton.d.ts +3 -0
- package/components/history/HistoryMenuButton/HistoryMenuButton.js +14 -0
- package/components/history/HistoryMenuButton/styles.d.ts +1 -0
- package/components/history/HistoryMenuButton/styles.js +9 -0
- package/components/history/HistoryView/HistoryView.d.ts +8 -0
- package/components/history/HistoryView/HistoryView.js +29 -0
- package/components/history/HistoryView/styles.d.ts +1 -0
- package/components/history/HistoryView/styles.js +9 -0
- package/components/history/hooks/useHistoricUris.d.ts +9 -0
- package/components/history/hooks/useHistoricUris.js +39 -0
- package/components/history/hooks/useHistoryWithTotal.d.ts +15 -0
- package/components/history/hooks/useHistoryWithTotal.js +61 -0
- package/components/history/index.d.ts +6 -0
- package/components/history/index.js +18 -0
- package/components/index.d.ts +1 -0
- package/components/index.js +1 -0
- package/package.json +3 -3
|
@@ -86,7 +86,10 @@ var SimpleAttributeEditor = function (_a) {
|
|
|
86
86
|
onClose();
|
|
87
87
|
};
|
|
88
88
|
return (react_1.default.createElement(Popover_1.default, { open: !!containerRef, anchorEl: containerRef.current, anchorOrigin: { vertical: 'top', horizontal: 'left' }, transformOrigin: { vertical: 'top', horizontal: 'left' }, classes: {
|
|
89
|
-
paper: classnames_1.default(styles.paper, (_b = {},
|
|
89
|
+
paper: classnames_1.default(styles.paper, (_b = {},
|
|
90
|
+
_b[styles.booleanEditor] = mdm_sdk_1.isBooleanType(dataTypeDefinition.type),
|
|
91
|
+
_b[styles.timestampEditor] = mdm_sdk_1.isTimestampBasedType(dataTypeDefinition.type),
|
|
92
|
+
_b)),
|
|
90
93
|
root: styles.popoverRoot
|
|
91
94
|
}, onKeyUp: onKeyUp, onBackdropClick: applyChangesAndClose },
|
|
92
95
|
react_1.default.createElement(editors_1.DataTypeValueEditor, { autoFocus: true, dataTypeDefinition: dataTypeDefinition, fieldName: mdm_sdk_1.attributeUriToSearchUri(attributeType.uri), onChange: changeEditorValue, TextFieldProps: TextFieldProps, value: editorValue, fullWidth: true })));
|
|
@@ -2,5 +2,5 @@ declare type StylesProps = {
|
|
|
2
2
|
color: string;
|
|
3
3
|
containerWidth: number;
|
|
4
4
|
};
|
|
5
|
-
export declare const useStyles: (props: StylesProps) => import("@material-ui/core/styles/withStyles").ClassNameMap<"input" | "paper" | "inputMultiline" | "textField" | "popoverRoot" | "
|
|
5
|
+
export declare const useStyles: (props: StylesProps) => import("@material-ui/core/styles/withStyles").ClassNameMap<"input" | "paper" | "inputMultiline" | "textField" | "popoverRoot" | "booleanEditor" | "timestampEditor">;
|
|
6
6
|
export {};
|
|
@@ -15,9 +15,14 @@ exports.useStyles = styles_1.makeStyles(function () { return ({
|
|
|
15
15
|
paddingBottom: 0
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
|
-
|
|
18
|
+
booleanEditor: {
|
|
19
19
|
paddingLeft: '10px'
|
|
20
20
|
},
|
|
21
|
+
timestampEditor: {
|
|
22
|
+
'&$paper': {
|
|
23
|
+
minWidth: '255px'
|
|
24
|
+
}
|
|
25
|
+
},
|
|
21
26
|
paper: function (_a) {
|
|
22
27
|
var color = _a.color, containerWidth = _a.containerWidth;
|
|
23
28
|
return ({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"timestampEditor" | "timestampEditorInput">;
|
|
@@ -4,8 +4,12 @@ exports.buildLookupEntries = void 0;
|
|
|
4
4
|
var ramda_1 = require("ramda");
|
|
5
5
|
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
6
6
|
var LOOKUP_URI_SEPARATOR = '.';
|
|
7
|
+
var splitOnce = ramda_1.curry(function (separator, string) {
|
|
8
|
+
var _a = string.split(separator), first = _a[0], other = _a.slice(1);
|
|
9
|
+
return [first, other.join(separator)];
|
|
10
|
+
});
|
|
7
11
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
8
|
-
var getLookupByUri = ramda_1.useWith(ramda_1.path, [
|
|
12
|
+
var getLookupByUri = ramda_1.useWith(ramda_1.path, [splitOnce(LOOKUP_URI_SEPARATOR)]);
|
|
9
13
|
var byLabel = ramda_1.ascend(ramda_1.prop('label'));
|
|
10
14
|
var buildLookupEntries = function (lookupTypeCode, lookups) {
|
|
11
15
|
var getLookupPath = function (uri) {
|
|
@@ -15,7 +19,7 @@ var buildLookupEntries = function (lookupTypeCode, lookups) {
|
|
|
15
19
|
var buildEntry = function (_a) {
|
|
16
20
|
var uri = _a[0], value = _a[1];
|
|
17
21
|
var lookup = getLookupByUri(uri, lookups);
|
|
18
|
-
var _b =
|
|
22
|
+
var _b = splitOnce(LOOKUP_URI_SEPARATOR, uri), code = _b[1];
|
|
19
23
|
var label = mdm_sdk_1.getLookupLabel(code, lookup.displayName);
|
|
20
24
|
return lookup === value ? { label: label, value: code } : { label: label, values: buildEntries(value) };
|
|
21
25
|
};
|
|
@@ -0,0 +1,14 @@
|
|
|
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 FilterList_1 = __importDefault(require("@material-ui/icons/FilterList"));
|
|
8
|
+
var SmallIconButton_1 = require("../../SmallIconButton");
|
|
9
|
+
var styles_1 = require("./styles");
|
|
10
|
+
var HistoryFilterButton = function () {
|
|
11
|
+
var styles = styles_1.useStyles();
|
|
12
|
+
return react_1.default.createElement(SmallIconButton_1.SmallIconButton, { icon: FilterList_1.default, size: "XS", onClick: function () { }, className: styles.icon });
|
|
13
|
+
};
|
|
14
|
+
exports.default = HistoryFilterButton;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"icon">;
|
|
@@ -0,0 +1,28 @@
|
|
|
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 Divider_1 = __importDefault(require("@material-ui/core/Divider"));
|
|
9
|
+
var Typography_1 = __importDefault(require("@material-ui/core/Typography"));
|
|
10
|
+
var ramda_1 = require("ramda");
|
|
11
|
+
var Spacer_1 = __importDefault(require("../../Spacer/Spacer"));
|
|
12
|
+
var HistoryFilterBitton_1 = __importDefault(require("../HistoryFilterButton/HistoryFilterBitton"));
|
|
13
|
+
var HistoryMenuButton_1 = __importDefault(require("../HistoryMenuButton/HistoryMenuButton"));
|
|
14
|
+
var styles_1 = require("./styles");
|
|
15
|
+
var HistoryHeader = function (_a) {
|
|
16
|
+
var total = _a.total;
|
|
17
|
+
var styles = styles_1.useStyles();
|
|
18
|
+
return (react_1.default.createElement("div", { className: styles.root },
|
|
19
|
+
react_1.default.createElement(Typography_1.default, { variant: "h6" }, ui_i18n_1.default.text('History')),
|
|
20
|
+
react_1.default.createElement(Divider_1.default, { orientation: "vertical", flexItem: true, className: styles.divider }),
|
|
21
|
+
!ramda_1.isNil(total) && (react_1.default.createElement(Typography_1.default, { variant: "body1", color: "textSecondary", className: styles.count }, total === 1
|
|
22
|
+
? ui_i18n_1.default.text('${count} contributing profile', { count: total })
|
|
23
|
+
: ui_i18n_1.default.text('${count} contributing profiles', { count: total }))),
|
|
24
|
+
react_1.default.createElement(Spacer_1.default, null),
|
|
25
|
+
react_1.default.createElement(HistoryFilterBitton_1.default, null),
|
|
26
|
+
react_1.default.createElement(HistoryMenuButton_1.default, null)));
|
|
27
|
+
};
|
|
28
|
+
exports.default = HistoryHeader;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"count" | "icon" | "root" | "divider">;
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
root: {
|
|
7
|
+
display: 'flex',
|
|
8
|
+
flex: 1,
|
|
9
|
+
alignItems: 'center'
|
|
10
|
+
},
|
|
11
|
+
icon: {
|
|
12
|
+
margin: 4
|
|
13
|
+
},
|
|
14
|
+
divider: {
|
|
15
|
+
backgroundColor: 'rgba(0,0,0,0.12)',
|
|
16
|
+
margin: '3px 19px'
|
|
17
|
+
},
|
|
18
|
+
count: {
|
|
19
|
+
fontSize: 14
|
|
20
|
+
}
|
|
21
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
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 MoreVert_1 = __importDefault(require("@material-ui/icons/MoreVert"));
|
|
8
|
+
var SmallIconButton_1 = require("../../SmallIconButton");
|
|
9
|
+
var styles_1 = require("./styles");
|
|
10
|
+
var HistoryMenuButton = function () {
|
|
11
|
+
var styles = styles_1.useStyles();
|
|
12
|
+
return react_1.default.createElement(SmallIconButton_1.SmallIconButton, { icon: MoreVert_1.default, size: "XS", onClick: function () { }, className: styles.icon });
|
|
13
|
+
};
|
|
14
|
+
exports.default = HistoryMenuButton;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"icon">;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { HistoryWithTotal } from '@reltio/mdm-sdk';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
declare type Props = {
|
|
4
|
+
isLoading: boolean;
|
|
5
|
+
historyWithTotal: HistoryWithTotal;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: React.MemoExoticComponent<({ isLoading, historyWithTotal }: Props) => JSX.Element>;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
var react_1 = __importStar(require("react"));
|
|
23
|
+
var styles_1 = require("./styles");
|
|
24
|
+
var HistoryView = function (_a) {
|
|
25
|
+
var isLoading = _a.isLoading, historyWithTotal = _a.historyWithTotal;
|
|
26
|
+
var styles = styles_1.useStyles();
|
|
27
|
+
return react_1.default.createElement("div", { className: styles.root }, !isLoading && react_1.default.createElement("div", null, "total: " + (historyWithTotal === null || historyWithTotal === void 0 ? void 0 : historyWithTotal.total)));
|
|
28
|
+
};
|
|
29
|
+
exports.default = react_1.memo(HistoryView);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"root">;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.useHistoricUris = void 0;
|
|
4
|
+
var react_1 = require("react");
|
|
5
|
+
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
6
|
+
var hooks_1 = require("../../../hooks");
|
|
7
|
+
var useHistoricUris = function (_a) {
|
|
8
|
+
var entityUri = _a.entityUri, _b = _a.enabled, enabled = _b === void 0 ? true : _b;
|
|
9
|
+
var _c = react_1.useState(null), historicUris = _c[0], setHistoricUris = _c[1];
|
|
10
|
+
var _d = react_1.useState(false), isLoading = _d[0], setIsLoading = _d[1];
|
|
11
|
+
var safePromise = hooks_1.useSafePromise();
|
|
12
|
+
var onError = function (e) {
|
|
13
|
+
console.warn('Failed to load historic URIs', e);
|
|
14
|
+
setHistoricUris(null);
|
|
15
|
+
};
|
|
16
|
+
var loadData = react_1.useCallback(function () {
|
|
17
|
+
if (entityUri) {
|
|
18
|
+
setIsLoading(true);
|
|
19
|
+
safePromise(mdm_sdk_1.getHistoricUris({ entityUri: entityUri }))
|
|
20
|
+
.then(function (results) {
|
|
21
|
+
setHistoricUris(results);
|
|
22
|
+
})
|
|
23
|
+
.catch(onError)
|
|
24
|
+
.finally(function () {
|
|
25
|
+
setIsLoading(false);
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
else {
|
|
29
|
+
setHistoricUris(null);
|
|
30
|
+
}
|
|
31
|
+
}, [entityUri]);
|
|
32
|
+
react_1.useEffect(function () {
|
|
33
|
+
if (enabled) {
|
|
34
|
+
loadData();
|
|
35
|
+
}
|
|
36
|
+
}, [loadData, enabled]);
|
|
37
|
+
return { isLoading: isLoading, historicUris: historicUris };
|
|
38
|
+
};
|
|
39
|
+
exports.useHistoricUris = useHistoricUris;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HistoryWithTotal } from '@reltio/mdm-sdk';
|
|
2
|
+
declare type Props = {
|
|
3
|
+
entityUri: string;
|
|
4
|
+
enabled?: boolean;
|
|
5
|
+
historicUris: string[];
|
|
6
|
+
max?: number;
|
|
7
|
+
offset?: number;
|
|
8
|
+
order?: string;
|
|
9
|
+
filter?: any;
|
|
10
|
+
};
|
|
11
|
+
export declare const useHistoryWithTotal: ({ entityUri, enabled, historicUris, ...options }: Props) => {
|
|
12
|
+
isLoading: boolean;
|
|
13
|
+
historyWithTotal: HistoryWithTotal;
|
|
14
|
+
};
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,61 @@
|
|
|
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 __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
exports.useHistoryWithTotal = void 0;
|
|
26
|
+
var react_1 = require("react");
|
|
27
|
+
var mdm_sdk_1 = require("@reltio/mdm-sdk");
|
|
28
|
+
var hooks_1 = require("../../../hooks");
|
|
29
|
+
var useHistoryWithTotal = function (_a) {
|
|
30
|
+
var entityUri = _a.entityUri, _b = _a.enabled, enabled = _b === void 0 ? true : _b, historicUris = _a.historicUris, options = __rest(_a, ["entityUri", "enabled", "historicUris"]);
|
|
31
|
+
var _c = react_1.useState(null), historyWithTotal = _c[0], setHistoryWithTotal = _c[1];
|
|
32
|
+
var _d = react_1.useState(false), isLoading = _d[0], setIsLoading = _d[1];
|
|
33
|
+
var safePromise = hooks_1.useSafePromise();
|
|
34
|
+
var onError = function (e) {
|
|
35
|
+
console.warn('Failed to load history', e);
|
|
36
|
+
setHistoryWithTotal(null);
|
|
37
|
+
};
|
|
38
|
+
var loadData = react_1.useCallback(function () {
|
|
39
|
+
if (entityUri && historicUris) {
|
|
40
|
+
setIsLoading(true);
|
|
41
|
+
safePromise(mdm_sdk_1.getHistoryWithTotal(__assign({ entityUri: entityUri, historicUris: historicUris }, options)))
|
|
42
|
+
.then(function (results) {
|
|
43
|
+
setHistoryWithTotal(results);
|
|
44
|
+
})
|
|
45
|
+
.catch(onError)
|
|
46
|
+
.finally(function () {
|
|
47
|
+
setIsLoading(false);
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
else {
|
|
51
|
+
setHistoryWithTotal(null);
|
|
52
|
+
}
|
|
53
|
+
}, [entityUri, historicUris]);
|
|
54
|
+
react_1.useEffect(function () {
|
|
55
|
+
if (enabled) {
|
|
56
|
+
loadData();
|
|
57
|
+
}
|
|
58
|
+
}, [loadData, enabled]);
|
|
59
|
+
return { isLoading: isLoading, historyWithTotal: historyWithTotal };
|
|
60
|
+
};
|
|
61
|
+
exports.useHistoryWithTotal = useHistoryWithTotal;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { useHistoricUris } from './hooks/useHistoricUris';
|
|
2
|
+
export { useHistoryWithTotal } from './hooks/useHistoryWithTotal';
|
|
3
|
+
export { default as HistoryView } from './HistoryView/HistoryView';
|
|
4
|
+
export { default as HistoryHeader } from './HistoryHeader/HistoryHeader';
|
|
5
|
+
export { default as HistoryFilterButton } from './HistoryFilterButton/HistoryFilterBitton';
|
|
6
|
+
export { default as HistoryMenuButton } from './HistoryMenuButton/HistoryMenuButton';
|
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
exports.HistoryMenuButton = exports.HistoryFilterButton = exports.HistoryHeader = exports.HistoryView = exports.useHistoryWithTotal = exports.useHistoricUris = void 0;
|
|
7
|
+
var useHistoricUris_1 = require("./hooks/useHistoricUris");
|
|
8
|
+
Object.defineProperty(exports, "useHistoricUris", { enumerable: true, get: function () { return useHistoricUris_1.useHistoricUris; } });
|
|
9
|
+
var useHistoryWithTotal_1 = require("./hooks/useHistoryWithTotal");
|
|
10
|
+
Object.defineProperty(exports, "useHistoryWithTotal", { enumerable: true, get: function () { return useHistoryWithTotal_1.useHistoryWithTotal; } });
|
|
11
|
+
var HistoryView_1 = require("./HistoryView/HistoryView");
|
|
12
|
+
Object.defineProperty(exports, "HistoryView", { enumerable: true, get: function () { return __importDefault(HistoryView_1).default; } });
|
|
13
|
+
var HistoryHeader_1 = require("./HistoryHeader/HistoryHeader");
|
|
14
|
+
Object.defineProperty(exports, "HistoryHeader", { enumerable: true, get: function () { return __importDefault(HistoryHeader_1).default; } });
|
|
15
|
+
var HistoryFilterBitton_1 = require("./HistoryFilterButton/HistoryFilterBitton");
|
|
16
|
+
Object.defineProperty(exports, "HistoryFilterButton", { enumerable: true, get: function () { return __importDefault(HistoryFilterBitton_1).default; } });
|
|
17
|
+
var HistoryMenuButton_1 = require("./HistoryMenuButton/HistoryMenuButton");
|
|
18
|
+
Object.defineProperty(exports, "HistoryMenuButton", { enumerable: true, get: function () { return __importDefault(HistoryMenuButton_1).default; } });
|
package/components/index.d.ts
CHANGED
package/components/index.js
CHANGED
|
@@ -252,3 +252,4 @@ var ReltioMap_1 = require("./ReltioMap");
|
|
|
252
252
|
Object.defineProperty(exports, "ReltioMap", { enumerable: true, get: function () { return ReltioMap_1.ReltioMap; } });
|
|
253
253
|
var ErrorMessage_1 = require("./ErrorWrapper/ErrorMessage");
|
|
254
254
|
Object.defineProperty(exports, "ErrorMessage", { enumerable: true, get: function () { return __importDefault(ErrorMessage_1).default; } });
|
|
255
|
+
__exportStar(require("./history"), exports);
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reltio/components",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.831",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE FILE",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@date-io/moment": "^1.3.5",
|
|
8
8
|
"@react-google-maps/api": "^2.7.0",
|
|
9
|
-
"@reltio/mdm-module": "^1.4.
|
|
10
|
-
"@reltio/mdm-sdk": "^1.4.
|
|
9
|
+
"@reltio/mdm-module": "^1.4.831",
|
|
10
|
+
"@reltio/mdm-sdk": "^1.4.831",
|
|
11
11
|
"classnames": "^2.2.5",
|
|
12
12
|
"frontend-collective-react-dnd-scrollzone": "^1.0.2",
|
|
13
13
|
"nanoid": "^2.0.0",
|