@reltio/components 1.4.2199 → 1.4.2201
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/ProfileResizablePanes/ProfileResizablePanes.js +1 -1
- package/ProfileResizablePanes/ProfileResizablePanes.spec.js +16 -2
- package/RequestedData/RequestedData.d.ts +12 -0
- package/RequestedData/RequestedData.js +26 -0
- package/RequestedData/RequestedData.module.css.js +9 -0
- package/RequestedData/index.d.ts +1 -0
- package/RequestedData/index.js +1 -0
- package/RolesEditor/RolesEditor.js +5 -20
- package/RolesEditor/RolesEditor.module.css.js +2 -2
- package/RolesInput/RolesInput.d.ts +8 -0
- package/RolesInput/RolesInput.js +31 -0
- package/RolesInput/RolesInput.module.css.js +9 -0
- package/TagsEditor/TagsEditor.js +4 -67
- package/TagsInput/TagsInput.d.ts +8 -0
- package/TagsInput/TagsInput.js +71 -0
- package/cjs/ProfileResizablePanes/ProfileResizablePanes.js +1 -1
- package/cjs/ProfileResizablePanes/ProfileResizablePanes.spec.js +16 -2
- package/cjs/RequestedData/RequestedData.d.ts +12 -0
- package/cjs/RequestedData/RequestedData.js +33 -0
- package/cjs/RequestedData/RequestedData.module.css.js +9 -0
- package/cjs/RequestedData/index.d.ts +1 -0
- package/cjs/RequestedData/index.js +5 -0
- package/cjs/RolesEditor/RolesEditor.js +2 -17
- package/cjs/RolesEditor/RolesEditor.module.css.js +2 -2
- package/cjs/RolesInput/RolesInput.d.ts +8 -0
- package/cjs/RolesInput/RolesInput.js +61 -0
- package/cjs/RolesInput/RolesInput.module.css.js +9 -0
- package/cjs/TagsEditor/TagsEditor.js +2 -65
- package/cjs/TagsInput/TagsInput.d.ts +8 -0
- package/cjs/TagsInput/TagsInput.js +98 -0
- package/cjs/features/activity-log/ActivitiesFactory/ActivitiesFactory.js +5 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/InteractionActivity/InteractionActivity.d.ts +8 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/InteractionActivity/InteractionActivity.js +20 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/InteractionActivity/index.d.ts +1 -0
- package/cjs/features/activity-log/ActivitiesFactory/components/InteractionActivity/index.js +5 -0
- package/cjs/features/activity-log/ActivityFilterEditor/helpers.test.js +3 -2
- package/cjs/features/activity-log/ActivityLog/helpers.js +1 -1
- package/cjs/features/activity-log/InteractionRecord/InteractionRecord.d.ts +7 -0
- package/cjs/features/activity-log/InteractionRecord/InteractionRecord.js +17 -0
- package/cjs/features/activity-log/InteractionRecord/index.d.ts +1 -0
- package/cjs/features/activity-log/InteractionRecord/index.js +5 -0
- package/cjs/features/activity-log/types.d.ts +3 -1
- package/cjs/features/activity-log/types.js +2 -0
- package/cjs/features/activity-log/utils/activities.js +2 -0
- package/cjs/features/history/types.d.ts +2 -0
- package/cjs/features/workflow/AttributesChanges/AttributesChanges.js +9 -48
- package/cjs/features/workflow/AttributesChanges/AttributesChanges.module.css.js +9 -0
- package/cjs/features/workflow/AttributesChanges/components/ChangeView/ChangeView.js +7 -9
- package/cjs/features/workflow/AttributesChanges/components/ChangeView/ChangeView.module.css.js +9 -0
- package/cjs/features/workflow/AttributesChanges/components/DCRChangesList/DCRChangesList.d.ts +1 -1
- package/cjs/features/workflow/AttributesChanges/components/DiffRenderer/DiffRenderer.d.ts +2 -2
- package/cjs/features/workflow/AttributesChanges/components/DiffRenderer/DiffRenderer.js +19 -40
- package/cjs/features/workflow/AttributesChanges/components/DiffRenderer/DiffRenderer.module.css.js +9 -0
- package/cjs/features/workflow/AttributesChanges/useCollapsibleList.d.ts +1 -1
- package/cjs/features/workflow/ChangeRequestEditor/ChangeRequestEditor.d.ts +3 -2
- package/cjs/features/workflow/ChangeRequestEditor/ChangeRequestEditor.js +11 -6
- package/cjs/features/workflow/ChangeRequestEditor/ChangeRequestEditor.module.css.js +2 -2
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemEditor.d.ts +10 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemEditor.js +72 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemEditor.module.css.js +9 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemLabel.d.ts +9 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemLabel.js +19 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemOldValue.d.ts +7 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemOldValue.js +32 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditor.d.ts +9 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditor.js +44 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditorFactory.d.ts +12 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditorFactory.js +38 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/SkeletonChangeItemEditorLoader.d.ts +2 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/SkeletonChangeItemEditorLoader.js +20 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/index.d.ts +3 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/index.js +9 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemRow/ChangeItemRow.d.ts +10 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemRow/ChangeItemRow.js +27 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemRow/ChangeItemRow.module.css.js +9 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemRow/index.d.ts +1 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemRow/index.js +5 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/EntityChangesGroup.d.ts +10 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/EntityChangesGroup.js +61 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/EntityChangesGroup.module.css.js +9 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/SkeletonEntityChangesGroupLoader.d.ts +2 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/SkeletonEntityChangesGroupLoader.js +23 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/index.d.ts +2 -0
- package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/index.js +7 -0
- package/cjs/features/workflow/ChangeRequestEditor/helpers.d.ts +3 -0
- package/cjs/features/workflow/ChangeRequestEditor/helpers.js +16 -0
- package/cjs/features/workflow/DCREntityUriLink/DCREntityUriLink.d.ts +10 -0
- package/cjs/features/workflow/DCREntityUriLink/DCREntityUriLink.js +21 -0
- package/cjs/features/workflow/DCREntityUriLink/DCREntityUriLink.module.css.js +9 -0
- package/cjs/features/workflow/OperationChip/OperationChip.d.ts +10 -0
- package/cjs/features/workflow/OperationChip/OperationChip.js +16 -0
- package/cjs/features/workflow/OperationChip/OperationChip.module.css.js +9 -0
- package/cjs/features/workflow/OperationChip/index.d.ts +1 -0
- package/cjs/features/workflow/OperationChip/index.js +5 -0
- package/cjs/features/workflow/RelationEntityLink/RelationEntityLink.d.ts +9 -0
- package/cjs/features/workflow/RelationEntityLink/RelationEntityLink.js +67 -0
- package/cjs/features/workflow/RelationEntityLink/RelationEntityLink.module.css.js +9 -0
- package/cjs/features/workflow/RelationEntityLink/index.d.ts +1 -0
- package/cjs/features/workflow/RelationEntityLink/index.js +5 -0
- package/cjs/features/workflow/ReviewDCRDialog/ReviewDCRDialog.js +1 -1
- package/cjs/features/workflow/ReviewDCRDialog/ReviewDCRDialog.module.css.js +1 -1
- package/cjs/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.js +3 -17
- package/cjs/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.module.css.js +1 -1
- package/cjs/features/workflow/ReviewDCRDialog/helpers/calculateDCRChanges.js +1 -1
- package/cjs/features/workflow/WorkflowComments/components/Comment/Comment.js +9 -10
- package/cjs/features/workflow/WorkflowComments/components/Comment/Comment.module.css.js +9 -0
- package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/attributes.js +13 -10
- package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/attributes.test.js +19 -9
- package/cjs/features/workflow/helpers/common.d.ts +2 -1
- package/cjs/features/workflow/helpers/common.js +6 -1
- package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/merge.js +3 -4
- package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/merge.test.js +5 -3
- package/cjs/features/workflow/hooks/useChangesList.d.ts +9 -0
- package/cjs/features/workflow/hooks/useChangesList.js +24 -0
- package/cjs/features/workflow/types.d.ts +16 -0
- package/cjs/icons/SuggestedChanges.d.ts +3 -0
- package/cjs/icons/SuggestedChanges.js +27 -0
- package/cjs/index.d.ts +1 -0
- package/cjs/index.js +6 -4
- package/features/activity-log/ActivitiesFactory/ActivitiesFactory.js +5 -0
- package/features/activity-log/ActivitiesFactory/components/InteractionActivity/InteractionActivity.d.ts +8 -0
- package/features/activity-log/ActivitiesFactory/components/InteractionActivity/InteractionActivity.js +13 -0
- package/features/activity-log/ActivitiesFactory/components/InteractionActivity/index.d.ts +1 -0
- package/features/activity-log/ActivitiesFactory/components/InteractionActivity/index.js +1 -0
- package/features/activity-log/ActivityFilterEditor/helpers.test.js +3 -2
- package/features/activity-log/ActivityLog/helpers.js +1 -1
- package/features/activity-log/InteractionRecord/InteractionRecord.d.ts +7 -0
- package/features/activity-log/InteractionRecord/InteractionRecord.js +10 -0
- package/features/activity-log/InteractionRecord/index.d.ts +1 -0
- package/features/activity-log/InteractionRecord/index.js +1 -0
- package/features/activity-log/types.d.ts +3 -1
- package/features/activity-log/types.js +2 -0
- package/features/activity-log/utils/activities.js +2 -0
- package/features/history/types.d.ts +2 -0
- package/features/workflow/AttributesChanges/AttributesChanges.js +7 -23
- package/features/workflow/AttributesChanges/AttributesChanges.module.css.js +9 -0
- package/features/workflow/AttributesChanges/components/ChangeView/ChangeView.js +3 -5
- package/features/workflow/AttributesChanges/components/ChangeView/ChangeView.module.css.js +9 -0
- package/features/workflow/AttributesChanges/components/DCRChangesList/DCRChangesList.d.ts +1 -1
- package/features/workflow/AttributesChanges/components/DiffRenderer/DiffRenderer.d.ts +2 -2
- package/features/workflow/AttributesChanges/components/DiffRenderer/DiffRenderer.js +22 -43
- package/features/workflow/AttributesChanges/components/DiffRenderer/DiffRenderer.module.css.js +9 -0
- package/features/workflow/AttributesChanges/useCollapsibleList.d.ts +1 -1
- package/features/workflow/ChangeRequestEditor/ChangeRequestEditor.d.ts +3 -2
- package/features/workflow/ChangeRequestEditor/ChangeRequestEditor.js +11 -6
- package/features/workflow/ChangeRequestEditor/ChangeRequestEditor.module.css.js +2 -2
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemEditor.d.ts +10 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemEditor.js +42 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemEditor.module.css.js +9 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemLabel.d.ts +9 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemLabel.js +12 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemOldValue.d.ts +7 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemOldValue.js +25 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditor.d.ts +9 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditor.js +14 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditorFactory.d.ts +12 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditorFactory.js +32 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/SkeletonChangeItemEditorLoader.d.ts +2 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/SkeletonChangeItemEditorLoader.js +13 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/index.d.ts +3 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/index.js +3 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemRow/ChangeItemRow.d.ts +10 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemRow/ChangeItemRow.js +20 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemRow/ChangeItemRow.module.css.js +9 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemRow/index.d.ts +1 -0
- package/features/workflow/ChangeRequestEditor/components/ChangeItemRow/index.js +1 -0
- package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/EntityChangesGroup.d.ts +10 -0
- package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/EntityChangesGroup.js +31 -0
- package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/EntityChangesGroup.module.css.js +9 -0
- package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/SkeletonEntityChangesGroupLoader.d.ts +2 -0
- package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/SkeletonEntityChangesGroupLoader.js +16 -0
- package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/index.d.ts +2 -0
- package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/index.js +2 -0
- package/features/workflow/ChangeRequestEditor/helpers.d.ts +3 -0
- package/features/workflow/ChangeRequestEditor/helpers.js +12 -0
- package/features/workflow/DCREntityUriLink/DCREntityUriLink.d.ts +10 -0
- package/features/workflow/DCREntityUriLink/DCREntityUriLink.js +14 -0
- package/features/workflow/DCREntityUriLink/DCREntityUriLink.module.css.js +9 -0
- package/features/workflow/OperationChip/OperationChip.d.ts +10 -0
- package/features/workflow/OperationChip/OperationChip.js +9 -0
- package/features/workflow/OperationChip/OperationChip.module.css.js +9 -0
- package/features/workflow/OperationChip/index.d.ts +1 -0
- package/features/workflow/OperationChip/index.js +1 -0
- package/features/workflow/RelationEntityLink/RelationEntityLink.d.ts +9 -0
- package/features/workflow/RelationEntityLink/RelationEntityLink.js +37 -0
- package/features/workflow/RelationEntityLink/RelationEntityLink.module.css.js +9 -0
- package/features/workflow/RelationEntityLink/index.d.ts +1 -0
- package/features/workflow/RelationEntityLink/index.js +1 -0
- package/features/workflow/ReviewDCRDialog/ReviewDCRDialog.js +1 -1
- package/features/workflow/ReviewDCRDialog/ReviewDCRDialog.module.css.js +1 -1
- package/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.js +2 -16
- package/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.module.css.js +1 -1
- package/features/workflow/ReviewDCRDialog/helpers/calculateDCRChanges.js +1 -1
- package/features/workflow/WorkflowComments/components/Comment/Comment.js +1 -2
- package/features/workflow/WorkflowComments/components/Comment/Comment.module.css.js +9 -0
- package/features/workflow/{AttributesChanges/helpers → helpers}/attributes.js +13 -10
- package/features/workflow/{AttributesChanges/helpers → helpers}/attributes.test.js +19 -9
- package/features/workflow/helpers/common.d.ts +2 -1
- package/features/workflow/helpers/common.js +6 -2
- package/features/workflow/{AttributesChanges/helpers → helpers}/merge.js +4 -5
- package/features/workflow/{AttributesChanges/helpers → helpers}/merge.test.js +5 -3
- package/features/workflow/hooks/useChangesList.d.ts +9 -0
- package/features/workflow/hooks/useChangesList.js +17 -0
- package/features/workflow/types.d.ts +16 -0
- package/icons/SuggestedChanges.d.ts +3 -0
- package/icons/SuggestedChanges.js +22 -0
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/package.json +2 -2
- package/cjs/features/workflow/AttributesChanges/components/ChangeView/styles.d.ts +0 -1
- package/cjs/features/workflow/AttributesChanges/components/ChangeView/styles.js +0 -49
- package/cjs/features/workflow/AttributesChanges/components/DiffRenderer/styles.d.ts +0 -5
- package/cjs/features/workflow/AttributesChanges/components/DiffRenderer/styles.js +0 -31
- package/cjs/features/workflow/AttributesChanges/styles.d.ts +0 -1
- package/cjs/features/workflow/AttributesChanges/styles.js +0 -28
- package/cjs/features/workflow/AttributesChanges/types.d.ts +0 -14
- package/cjs/features/workflow/AttributesChanges/types.js +0 -2
- package/cjs/features/workflow/WorkflowComments/components/Comment/styles.d.ts +0 -1
- package/cjs/features/workflow/WorkflowComments/components/Comment/styles.js +0 -49
- package/features/workflow/AttributesChanges/components/ChangeView/styles.d.ts +0 -1
- package/features/workflow/AttributesChanges/components/ChangeView/styles.js +0 -46
- package/features/workflow/AttributesChanges/components/DiffRenderer/styles.d.ts +0 -5
- package/features/workflow/AttributesChanges/components/DiffRenderer/styles.js +0 -28
- package/features/workflow/AttributesChanges/styles.d.ts +0 -1
- package/features/workflow/AttributesChanges/styles.js +0 -25
- package/features/workflow/AttributesChanges/types.d.ts +0 -14
- package/features/workflow/AttributesChanges/types.js +0 -1
- package/features/workflow/WorkflowComments/components/Comment/styles.d.ts +0 -1
- package/features/workflow/WorkflowComments/components/Comment/styles.js +0 -46
- /package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/attributes.d.ts +0 -0
- /package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/attributes.test.d.ts +0 -0
- /package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/merge.d.ts +0 -0
- /package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/merge.test.d.ts +0 -0
- /package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/metadata.test-data.d.ts +0 -0
- /package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/metadata.test-data.js +0 -0
- /package/features/workflow/{AttributesChanges/helpers → helpers}/attributes.d.ts +0 -0
- /package/features/workflow/{AttributesChanges/helpers → helpers}/attributes.test.d.ts +0 -0
- /package/features/workflow/{AttributesChanges/helpers → helpers}/merge.d.ts +0 -0
- /package/features/workflow/{AttributesChanges/helpers → helpers}/merge.test.d.ts +0 -0
- /package/features/workflow/{AttributesChanges/helpers → helpers}/metadata.test-data.d.ts +0 -0
- /package/features/workflow/{AttributesChanges/helpers → helpers}/metadata.test-data.js +0 -0
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.useStyles = void 0;
|
|
4
|
-
var styles_1 = require("@mui/styles");
|
|
5
|
-
exports.useStyles = (0, styles_1.makeStyles)({
|
|
6
|
-
comment: {
|
|
7
|
-
display: 'flex',
|
|
8
|
-
flexDirection: 'row',
|
|
9
|
-
flex: 1,
|
|
10
|
-
marginLeft: '6px'
|
|
11
|
-
},
|
|
12
|
-
avatar: {
|
|
13
|
-
height: '24px',
|
|
14
|
-
width: '24px',
|
|
15
|
-
margin: '3px 13px 0 0'
|
|
16
|
-
},
|
|
17
|
-
icon: {
|
|
18
|
-
fill: '#537280',
|
|
19
|
-
backgroundColor: '#EAEDEE'
|
|
20
|
-
},
|
|
21
|
-
firstLine: {
|
|
22
|
-
display: 'flex',
|
|
23
|
-
flexDirection: 'row'
|
|
24
|
-
},
|
|
25
|
-
info: {
|
|
26
|
-
flex: 1
|
|
27
|
-
},
|
|
28
|
-
author: {
|
|
29
|
-
flex: 1,
|
|
30
|
-
fontWeight: 500,
|
|
31
|
-
color: 'rgba(0,0,0,0.87)',
|
|
32
|
-
fontSize: '13px',
|
|
33
|
-
lineHeight: '15px'
|
|
34
|
-
},
|
|
35
|
-
date: {
|
|
36
|
-
color: 'rgba(0, 0, 0, 0.54)',
|
|
37
|
-
fontSize: '11px',
|
|
38
|
-
marginRight: '17px',
|
|
39
|
-
lineHeight: '15px'
|
|
40
|
-
},
|
|
41
|
-
text: {
|
|
42
|
-
color: 'rgba(0, 0, 0, 0.6)',
|
|
43
|
-
fontSize: '13px',
|
|
44
|
-
wordWrap: 'break-word',
|
|
45
|
-
wordBreak: 'break-all',
|
|
46
|
-
paddingRight: '10px',
|
|
47
|
-
whiteSpace: 'pre-wrap'
|
|
48
|
-
}
|
|
49
|
-
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"difference" | "arrow" | "fieldName" | "field" | "chip">;
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from '@mui/styles';
|
|
2
|
-
export var useStyles = makeStyles(function (theme) { return ({
|
|
3
|
-
field: {
|
|
4
|
-
fontSize: '12px',
|
|
5
|
-
lineHeight: '20px',
|
|
6
|
-
color: theme.palette.text.primary,
|
|
7
|
-
marginTop: '6px',
|
|
8
|
-
overflow: 'hidden',
|
|
9
|
-
wordBreak: 'break-word'
|
|
10
|
-
},
|
|
11
|
-
fieldName: {
|
|
12
|
-
color: theme.palette.text.secondary,
|
|
13
|
-
marginRight: '8px'
|
|
14
|
-
},
|
|
15
|
-
difference: {
|
|
16
|
-
marginRight: '8px'
|
|
17
|
-
},
|
|
18
|
-
arrow: {
|
|
19
|
-
margin: '0 4px',
|
|
20
|
-
fontSize: '12px',
|
|
21
|
-
color: theme.palette.text.primary
|
|
22
|
-
},
|
|
23
|
-
chip: {
|
|
24
|
-
height: '20px',
|
|
25
|
-
fontSize: '10px',
|
|
26
|
-
fontWeight: 500,
|
|
27
|
-
lineHeight: '16px',
|
|
28
|
-
letterSpacing: 0,
|
|
29
|
-
flexShrink: 0,
|
|
30
|
-
textTransform: 'capitalize',
|
|
31
|
-
color: theme.palette.primary.main,
|
|
32
|
-
borderColor: theme.palette.primary.main,
|
|
33
|
-
'&.edited': {
|
|
34
|
-
color: '#CC7500',
|
|
35
|
-
borderColor: '#CC7500'
|
|
36
|
-
},
|
|
37
|
-
'&.added': {
|
|
38
|
-
color: '#599E0E',
|
|
39
|
-
borderColor: '#599E0E'
|
|
40
|
-
},
|
|
41
|
-
'&.deleted': {
|
|
42
|
-
color: '#CF0E26',
|
|
43
|
-
borderColor: '#CF0E26'
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}); });
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from '@mui/styles';
|
|
2
|
-
export var useStyles = makeStyles(function (theme) { return ({
|
|
3
|
-
linkContainer: {
|
|
4
|
-
textDecoration: 'none',
|
|
5
|
-
cursor: 'pointer',
|
|
6
|
-
marginLeft: '4px'
|
|
7
|
-
},
|
|
8
|
-
linkLabel: {
|
|
9
|
-
color: theme.palette.primary.main,
|
|
10
|
-
fontSize: '12px',
|
|
11
|
-
letterSpacing: 0,
|
|
12
|
-
lineHeight: '16px',
|
|
13
|
-
whiteSpace: 'break-spaces'
|
|
14
|
-
},
|
|
15
|
-
disabledLink: {
|
|
16
|
-
pointerEvents: 'none',
|
|
17
|
-
cursor: 'default'
|
|
18
|
-
},
|
|
19
|
-
label: {
|
|
20
|
-
color: theme.palette.text.primary
|
|
21
|
-
},
|
|
22
|
-
change: function (_a) {
|
|
23
|
-
var _b = _a.level, level = _b === void 0 ? 0 : _b;
|
|
24
|
-
return ({
|
|
25
|
-
marginLeft: "".concat(level * 16, "px")
|
|
26
|
-
});
|
|
27
|
-
}
|
|
28
|
-
}); });
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"container" | "label" | "uri" | "showMoreLink">;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from '@mui/styles';
|
|
2
|
-
export var useStyles = makeStyles(function (theme) { return ({
|
|
3
|
-
container: {
|
|
4
|
-
boxSizing: 'border-box',
|
|
5
|
-
border: '1px solid rgba(0,0,0,0.03)',
|
|
6
|
-
borderRadius: '3px',
|
|
7
|
-
backgroundColor: 'rgba(0,0,0,0.03)',
|
|
8
|
-
padding: '10px',
|
|
9
|
-
margin: '12px 16px 12px 0'
|
|
10
|
-
},
|
|
11
|
-
uri: {
|
|
12
|
-
color: theme.palette.primary.main,
|
|
13
|
-
textDecoration: 'none',
|
|
14
|
-
cursor: 'pointer'
|
|
15
|
-
},
|
|
16
|
-
label: {
|
|
17
|
-
fontSize: '12px',
|
|
18
|
-
letterSpacing: 0,
|
|
19
|
-
lineHeight: '16px',
|
|
20
|
-
whiteSpace: 'break-spaces'
|
|
21
|
-
},
|
|
22
|
-
showMoreLink: {
|
|
23
|
-
marginTop: '8px'
|
|
24
|
-
}
|
|
25
|
-
}); });
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { AttributeType, ChangeValue, DCRAttributeValue, DCROperationTypes, DCRRelationInfo } from '@reltio/mdm-sdk';
|
|
2
|
-
export type RelationAttributeValue = DCRAttributeValue & DCRRelationInfo;
|
|
3
|
-
export type Diff = {
|
|
4
|
-
level: number;
|
|
5
|
-
label: string;
|
|
6
|
-
attributeType: AttributeType;
|
|
7
|
-
attributeValue?: DCRAttributeValue | RelationAttributeValue;
|
|
8
|
-
newValue?: ChangeValue;
|
|
9
|
-
oldValue?: ChangeValue;
|
|
10
|
-
operation?: DCROperationTypes;
|
|
11
|
-
};
|
|
12
|
-
export type Title = {
|
|
13
|
-
label: string;
|
|
14
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"text" | "icon" | "date" | "info" | "comment" | "avatar" | "firstLine" | "author">;
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from '@mui/styles';
|
|
2
|
-
export var useStyles = makeStyles({
|
|
3
|
-
comment: {
|
|
4
|
-
display: 'flex',
|
|
5
|
-
flexDirection: 'row',
|
|
6
|
-
flex: 1,
|
|
7
|
-
marginLeft: '6px'
|
|
8
|
-
},
|
|
9
|
-
avatar: {
|
|
10
|
-
height: '24px',
|
|
11
|
-
width: '24px',
|
|
12
|
-
margin: '3px 13px 0 0'
|
|
13
|
-
},
|
|
14
|
-
icon: {
|
|
15
|
-
fill: '#537280',
|
|
16
|
-
backgroundColor: '#EAEDEE'
|
|
17
|
-
},
|
|
18
|
-
firstLine: {
|
|
19
|
-
display: 'flex',
|
|
20
|
-
flexDirection: 'row'
|
|
21
|
-
},
|
|
22
|
-
info: {
|
|
23
|
-
flex: 1
|
|
24
|
-
},
|
|
25
|
-
author: {
|
|
26
|
-
flex: 1,
|
|
27
|
-
fontWeight: 500,
|
|
28
|
-
color: 'rgba(0,0,0,0.87)',
|
|
29
|
-
fontSize: '13px',
|
|
30
|
-
lineHeight: '15px'
|
|
31
|
-
},
|
|
32
|
-
date: {
|
|
33
|
-
color: 'rgba(0, 0, 0, 0.54)',
|
|
34
|
-
fontSize: '11px',
|
|
35
|
-
marginRight: '17px',
|
|
36
|
-
lineHeight: '15px'
|
|
37
|
-
},
|
|
38
|
-
text: {
|
|
39
|
-
color: 'rgba(0, 0, 0, 0.6)',
|
|
40
|
-
fontSize: '13px',
|
|
41
|
-
wordWrap: 'break-word',
|
|
42
|
-
wordBreak: 'break-all',
|
|
43
|
-
paddingRight: '10px',
|
|
44
|
-
whiteSpace: 'pre-wrap'
|
|
45
|
-
}
|
|
46
|
-
});
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/metadata.test-data.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|