@reltio/components 1.4.2190 → 1.4.2191
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/ProfileBand/ProfileBand.d.ts +5 -4
- package/ProfileBand/ProfileBand.js +4 -5
- package/ProfileBand/ProfileBand.module.css.js +9 -0
- package/cjs/ProfileBand/ProfileBand.d.ts +5 -4
- package/cjs/ProfileBand/ProfileBand.js +14 -15
- package/cjs/ProfileBand/ProfileBand.module.css.js +9 -0
- package/cjs/contexts/MdmModuleContext/context.d.ts +2 -0
- package/cjs/contexts/MdmModuleContext/hooks.d.ts +1 -0
- package/cjs/contexts/MdmModuleContext/hooks.js +3 -1
- package/cjs/contexts/MdmModuleContext/index.d.ts +1 -1
- package/cjs/contexts/MdmModuleContext/index.js +2 -1
- package/cjs/features/history/HistoryRow/styles.d.ts +1 -1
- package/cjs/features/workflow/ChangeRequestEditor/ChangeRequestEditor.d.ts +8 -0
- package/cjs/features/workflow/ChangeRequestEditor/ChangeRequestEditor.js +18 -0
- package/cjs/features/workflow/ChangeRequestEditor/ChangeRequestEditor.module.css.js +9 -0
- package/cjs/features/workflow/ChangeRequestEditor/index.d.ts +1 -0
- package/cjs/features/workflow/ChangeRequestEditor/index.js +5 -0
- package/cjs/features/workflow/ReviewDCRButton/ReviewDCRButton.d.ts +6 -0
- package/cjs/features/workflow/ReviewDCRButton/ReviewDCRButton.js +19 -0
- package/cjs/features/workflow/ReviewDCRButton/ReviewDCRButton.module.css.js +9 -0
- package/cjs/features/workflow/ReviewDCRButton/index.d.ts +1 -0
- package/cjs/features/workflow/ReviewDCRButton/index.js +5 -0
- package/cjs/features/workflow/ReviewDCRDialog/ReviewDCRDialog.d.ts +11 -0
- package/cjs/features/workflow/ReviewDCRDialog/ReviewDCRDialog.js +63 -0
- package/cjs/features/workflow/ReviewDCRDialog/ReviewDCRDialog.module.css.js +9 -0
- package/cjs/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.d.ts +8 -0
- package/cjs/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.js +73 -0
- package/cjs/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.module.css.js +9 -0
- package/cjs/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/index.d.ts +1 -0
- package/cjs/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/index.js +5 -0
- package/cjs/features/workflow/ReviewDCRDialog/components/DCRSummaryInfo/DCRSummaryInfo.d.ts +9 -0
- package/cjs/features/workflow/ReviewDCRDialog/components/DCRSummaryInfo/DCRSummaryInfo.js +40 -0
- package/cjs/features/workflow/ReviewDCRDialog/components/DCRSummaryInfo/DCRSummaryInfo.module.css.js +9 -0
- package/cjs/features/workflow/ReviewDCRDialog/helpers/calculateDCRChanges.d.ts +3 -0
- package/cjs/features/workflow/ReviewDCRDialog/helpers/calculateDCRChanges.js +19 -0
- package/cjs/features/workflow/ReviewDCRDialog/helpers/calculateDCRChanges.test.d.ts +1 -0
- package/cjs/features/workflow/ReviewDCRDialog/helpers/calculateDCRChanges.test.js +124 -0
- package/cjs/features/workflow/ReviewDCRDialog/helpers/index.d.ts +1 -0
- package/cjs/features/workflow/ReviewDCRDialog/helpers/index.js +5 -0
- package/cjs/features/workflow/ReviewDCRDialog/index.d.ts +1 -0
- package/cjs/features/workflow/ReviewDCRDialog/index.js +5 -0
- package/cjs/features/workflow/WorkflowActionButtons/WorkflowActionButtons.d.ts +12 -0
- package/cjs/features/workflow/WorkflowActionButtons/WorkflowActionButtons.js +57 -0
- package/cjs/features/workflow/WorkflowActionButtons/index.d.ts +1 -0
- package/cjs/features/workflow/WorkflowActionButtons/index.js +5 -0
- package/cjs/features/workflow/WorkflowComments/WorkflowComments.d.ts +7 -1
- package/cjs/features/workflow/WorkflowComments/WorkflowComments.js +15 -31
- package/cjs/features/workflow/WorkflowComments/WorkflowComments.module.css.js +9 -0
- package/cjs/features/workflow/WorkflowTaskCard/components/DataChangeRequestTaskCard/DataChangeRequestTaskCard.js +46 -6
- package/cjs/features/workflow/WorkflowTaskCard/components/GenericWorkflowTaskCard/GenericWorkflowTaskCard.d.ts +2 -1
- package/cjs/features/workflow/WorkflowTaskCard/components/GenericWorkflowTaskCard/GenericWorkflowTaskCard.js +30 -29
- package/cjs/features/workflow/WorkflowTaskCard/components/GenericWorkflowTaskCard/GenericWorkflowTaskCard.module.css.js +9 -0
- package/cjs/features/workflow/WorkflowTaskCard/components/GenericWorkflowTaskCard/GenericWorkflowTaskCard.spec.js +20 -2
- package/cjs/features/workflow/index.d.ts +2 -0
- package/cjs/features/workflow/index.js +5 -1
- package/cjs/icons/RequestSummary.d.ts +3 -0
- package/cjs/icons/RequestSummary.js +24 -0
- package/cjs/icons/ReviewDCR.d.ts +3 -0
- package/cjs/icons/ReviewDCR.js +22 -0
- package/contexts/MdmModuleContext/context.d.ts +2 -0
- package/contexts/MdmModuleContext/hooks.d.ts +1 -0
- package/contexts/MdmModuleContext/hooks.js +1 -0
- package/contexts/MdmModuleContext/index.d.ts +1 -1
- package/contexts/MdmModuleContext/index.js +1 -1
- package/features/history/HistoryRow/styles.d.ts +1 -1
- package/features/workflow/ChangeRequestEditor/ChangeRequestEditor.d.ts +8 -0
- package/features/workflow/ChangeRequestEditor/ChangeRequestEditor.js +11 -0
- package/features/workflow/ChangeRequestEditor/ChangeRequestEditor.module.css.js +9 -0
- package/features/workflow/ChangeRequestEditor/index.d.ts +1 -0
- package/features/workflow/ChangeRequestEditor/index.js +1 -0
- package/features/workflow/ReviewDCRButton/ReviewDCRButton.d.ts +6 -0
- package/features/workflow/ReviewDCRButton/ReviewDCRButton.js +12 -0
- package/features/workflow/ReviewDCRButton/ReviewDCRButton.module.css.js +9 -0
- package/features/workflow/ReviewDCRButton/index.d.ts +1 -0
- package/features/workflow/ReviewDCRButton/index.js +1 -0
- package/features/workflow/ReviewDCRDialog/ReviewDCRDialog.d.ts +11 -0
- package/features/workflow/ReviewDCRDialog/ReviewDCRDialog.js +56 -0
- package/features/workflow/ReviewDCRDialog/ReviewDCRDialog.module.css.js +9 -0
- package/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.d.ts +8 -0
- package/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.js +43 -0
- package/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.module.css.js +9 -0
- package/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/index.d.ts +1 -0
- package/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/index.js +1 -0
- package/features/workflow/ReviewDCRDialog/components/DCRSummaryInfo/DCRSummaryInfo.d.ts +9 -0
- package/features/workflow/ReviewDCRDialog/components/DCRSummaryInfo/DCRSummaryInfo.js +33 -0
- package/features/workflow/ReviewDCRDialog/components/DCRSummaryInfo/DCRSummaryInfo.module.css.js +9 -0
- package/features/workflow/ReviewDCRDialog/helpers/calculateDCRChanges.d.ts +3 -0
- package/features/workflow/ReviewDCRDialog/helpers/calculateDCRChanges.js +15 -0
- package/features/workflow/ReviewDCRDialog/helpers/calculateDCRChanges.test.d.ts +1 -0
- package/features/workflow/ReviewDCRDialog/helpers/calculateDCRChanges.test.js +122 -0
- package/features/workflow/ReviewDCRDialog/helpers/index.d.ts +1 -0
- package/features/workflow/ReviewDCRDialog/helpers/index.js +1 -0
- package/features/workflow/ReviewDCRDialog/index.d.ts +1 -0
- package/features/workflow/ReviewDCRDialog/index.js +1 -0
- package/features/workflow/WorkflowActionButtons/WorkflowActionButtons.d.ts +12 -0
- package/features/workflow/WorkflowActionButtons/WorkflowActionButtons.js +27 -0
- package/features/workflow/WorkflowActionButtons/index.d.ts +1 -0
- package/features/workflow/WorkflowActionButtons/index.js +1 -0
- package/features/workflow/WorkflowComments/WorkflowComments.d.ts +7 -1
- package/features/workflow/WorkflowComments/WorkflowComments.js +13 -29
- package/features/workflow/WorkflowComments/WorkflowComments.module.css.js +9 -0
- package/features/workflow/WorkflowTaskCard/components/DataChangeRequestTaskCard/DataChangeRequestTaskCard.js +23 -6
- package/features/workflow/WorkflowTaskCard/components/GenericWorkflowTaskCard/GenericWorkflowTaskCard.d.ts +2 -1
- package/features/workflow/WorkflowTaskCard/components/GenericWorkflowTaskCard/GenericWorkflowTaskCard.js +8 -7
- package/features/workflow/WorkflowTaskCard/components/GenericWorkflowTaskCard/GenericWorkflowTaskCard.module.css.js +9 -0
- package/features/workflow/WorkflowTaskCard/components/GenericWorkflowTaskCard/GenericWorkflowTaskCard.spec.js +20 -2
- package/features/workflow/index.d.ts +2 -0
- package/features/workflow/index.js +2 -0
- package/icons/RequestSummary.d.ts +3 -0
- package/icons/RequestSummary.js +19 -0
- package/icons/ReviewDCR.d.ts +3 -0
- package/icons/ReviewDCR.js +17 -0
- package/package.json +2 -2
- package/ProfileBand/styles.d.ts +0 -1
- package/ProfileBand/styles.js +0 -87
- package/cjs/ProfileBand/styles.d.ts +0 -1
- package/cjs/ProfileBand/styles.js +0 -90
- package/cjs/features/workflow/WorkflowComments/styles.d.ts +0 -1
- package/cjs/features/workflow/WorkflowComments/styles.js +0 -42
- package/cjs/features/workflow/WorkflowTaskCard/components/GenericWorkflowTaskCard/styles.d.ts +0 -3
- package/cjs/features/workflow/WorkflowTaskCard/components/GenericWorkflowTaskCard/styles.js +0 -113
- package/features/workflow/WorkflowComments/styles.d.ts +0 -1
- package/features/workflow/WorkflowComments/styles.js +0 -39
- package/features/workflow/WorkflowTaskCard/components/GenericWorkflowTaskCard/styles.d.ts +0 -3
- package/features/workflow/WorkflowTaskCard/components/GenericWorkflowTaskCard/styles.js +0 -110
package/cjs/features/workflow/WorkflowTaskCard/components/GenericWorkflowTaskCard/styles.d.ts
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export declare const useStyles: (props: {
|
|
2
|
-
color: string;
|
|
3
|
-
}) => import("@mui/styles").ClassNameMap<"flex" | "caption" | "icon" | "title" | "header" | "line" | "date" | "info" | "priority" | "comments" | "infoBlock" | "flag" | "mainInfo" | "card" | "withBackground" | "lineWrapper" | "commentsInfo" | "commentsIcon" | "infoValue" | "controlsBox" | "controlsInRow">;
|
|
@@ -1,113 +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)(function (theme) { return ({
|
|
6
|
-
card: {
|
|
7
|
-
borderBottom: '1px solid rgba(0,0,0,0.06)'
|
|
8
|
-
},
|
|
9
|
-
withBackground: {
|
|
10
|
-
backgroundColor: 'rgba(0, 0, 0, 0.03)'
|
|
11
|
-
},
|
|
12
|
-
lineWrapper: {
|
|
13
|
-
position: 'relative'
|
|
14
|
-
},
|
|
15
|
-
icon: {
|
|
16
|
-
position: 'absolute',
|
|
17
|
-
top: '8px',
|
|
18
|
-
left: '16px',
|
|
19
|
-
width: '32px',
|
|
20
|
-
height: '32px',
|
|
21
|
-
zIndex: 1
|
|
22
|
-
},
|
|
23
|
-
line: function (_a) {
|
|
24
|
-
var color = _a.color;
|
|
25
|
-
return ({
|
|
26
|
-
borderLeft: "3px solid ".concat(color),
|
|
27
|
-
position: 'absolute',
|
|
28
|
-
left: 0,
|
|
29
|
-
top: 0,
|
|
30
|
-
bottom: 0
|
|
31
|
-
});
|
|
32
|
-
},
|
|
33
|
-
info: {
|
|
34
|
-
fontSize: '13px',
|
|
35
|
-
color: theme.palette.text.secondary,
|
|
36
|
-
wordWrap: 'break-word',
|
|
37
|
-
lineHeight: '15px'
|
|
38
|
-
},
|
|
39
|
-
commentsInfo: {
|
|
40
|
-
display: 'flex',
|
|
41
|
-
alignItems: 'center',
|
|
42
|
-
marginBottom: '-4px',
|
|
43
|
-
marginTop: '7px'
|
|
44
|
-
},
|
|
45
|
-
commentsIcon: {
|
|
46
|
-
width: '11px',
|
|
47
|
-
height: '11px',
|
|
48
|
-
marginLeft: '2px',
|
|
49
|
-
marginRight: '6px',
|
|
50
|
-
marginTop: '-2px'
|
|
51
|
-
},
|
|
52
|
-
infoValue: {
|
|
53
|
-
color: theme.palette.text.primary
|
|
54
|
-
},
|
|
55
|
-
infoBlock: {
|
|
56
|
-
display: 'flex',
|
|
57
|
-
flexDirection: 'row',
|
|
58
|
-
marginBottom: '5px'
|
|
59
|
-
},
|
|
60
|
-
header: {
|
|
61
|
-
display: 'flex',
|
|
62
|
-
flexDirection: 'row',
|
|
63
|
-
paddingBottom: '12px'
|
|
64
|
-
},
|
|
65
|
-
flex: {
|
|
66
|
-
flex: 1
|
|
67
|
-
},
|
|
68
|
-
caption: {
|
|
69
|
-
fontSize: '16px',
|
|
70
|
-
color: theme.palette.text.primary
|
|
71
|
-
},
|
|
72
|
-
title: {
|
|
73
|
-
display: 'flex',
|
|
74
|
-
flexDirection: 'row',
|
|
75
|
-
alignItems: 'center',
|
|
76
|
-
marginBottom: '-4px'
|
|
77
|
-
},
|
|
78
|
-
flag: {
|
|
79
|
-
height: '13px',
|
|
80
|
-
width: '13px',
|
|
81
|
-
marginTop: '-2px',
|
|
82
|
-
stroke: '#000000',
|
|
83
|
-
fill: 'none',
|
|
84
|
-
margin: '2px 5px 0 5px'
|
|
85
|
-
},
|
|
86
|
-
date: {
|
|
87
|
-
fontSize: '13px',
|
|
88
|
-
color: theme.palette.text.primary
|
|
89
|
-
},
|
|
90
|
-
mainInfo: {
|
|
91
|
-
display: 'flex',
|
|
92
|
-
flexDirection: 'column',
|
|
93
|
-
flex: 1
|
|
94
|
-
},
|
|
95
|
-
controlsBox: {
|
|
96
|
-
marginRight: '16px',
|
|
97
|
-
marginBottom: '12px',
|
|
98
|
-
marginTop: '13px'
|
|
99
|
-
},
|
|
100
|
-
controlsInRow: {
|
|
101
|
-
display: 'flex',
|
|
102
|
-
flexDirection: 'row',
|
|
103
|
-
alignItems: 'center',
|
|
104
|
-
justifyContent: 'space-between',
|
|
105
|
-
marginBottom: '20px'
|
|
106
|
-
},
|
|
107
|
-
priority: {
|
|
108
|
-
width: '162px'
|
|
109
|
-
},
|
|
110
|
-
comments: {
|
|
111
|
-
marginLeft: '11px'
|
|
112
|
-
}
|
|
113
|
-
}); });
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"container" | "title" | "filledInputRoot" | "commentsContainer" | "modeSwitcherWrapper" | "sendButton">;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from '@mui/styles';
|
|
2
|
-
export var useStyles = makeStyles(function (_theme) { return ({
|
|
3
|
-
container: {
|
|
4
|
-
padding: '5px 0',
|
|
5
|
-
display: 'flex',
|
|
6
|
-
flexDirection: 'column'
|
|
7
|
-
},
|
|
8
|
-
commentsContainer: {
|
|
9
|
-
maxHeight: '300px',
|
|
10
|
-
overflowY: 'auto'
|
|
11
|
-
},
|
|
12
|
-
title: {
|
|
13
|
-
margin: '0 0 8px 5px',
|
|
14
|
-
fontSize: '14px',
|
|
15
|
-
color: 'rgba(0, 0, 0, 0.87)'
|
|
16
|
-
},
|
|
17
|
-
filledInputRoot: {
|
|
18
|
-
backgroundColor: 'rgba(0, 0, 0, 0.03)',
|
|
19
|
-
padding: '10px 6px',
|
|
20
|
-
minHeight: '40px',
|
|
21
|
-
margin: '10px 17px 0 6px',
|
|
22
|
-
fontSize: '14px',
|
|
23
|
-
'&:hover': {
|
|
24
|
-
backgroundColor: 'rgba(0, 0, 0, 0.03)'
|
|
25
|
-
},
|
|
26
|
-
'&.focused': {
|
|
27
|
-
backgroundColor: 'rgba(0, 0, 0, 0.03)'
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
modeSwitcherWrapper: {
|
|
31
|
-
marginLeft: 'auto',
|
|
32
|
-
marginRight: '16px',
|
|
33
|
-
marginTop: '8px'
|
|
34
|
-
},
|
|
35
|
-
sendButton: {
|
|
36
|
-
alignSelf: 'end',
|
|
37
|
-
marginBottom: '10px'
|
|
38
|
-
}
|
|
39
|
-
}); });
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export declare const useStyles: (props: {
|
|
2
|
-
color: string;
|
|
3
|
-
}) => import("@mui/styles").ClassNameMap<"flex" | "caption" | "icon" | "title" | "header" | "line" | "date" | "info" | "priority" | "comments" | "infoBlock" | "flag" | "mainInfo" | "card" | "withBackground" | "lineWrapper" | "commentsInfo" | "commentsIcon" | "infoValue" | "controlsBox" | "controlsInRow">;
|
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from '@mui/styles';
|
|
2
|
-
export var useStyles = makeStyles(function (theme) { return ({
|
|
3
|
-
card: {
|
|
4
|
-
borderBottom: '1px solid rgba(0,0,0,0.06)'
|
|
5
|
-
},
|
|
6
|
-
withBackground: {
|
|
7
|
-
backgroundColor: 'rgba(0, 0, 0, 0.03)'
|
|
8
|
-
},
|
|
9
|
-
lineWrapper: {
|
|
10
|
-
position: 'relative'
|
|
11
|
-
},
|
|
12
|
-
icon: {
|
|
13
|
-
position: 'absolute',
|
|
14
|
-
top: '8px',
|
|
15
|
-
left: '16px',
|
|
16
|
-
width: '32px',
|
|
17
|
-
height: '32px',
|
|
18
|
-
zIndex: 1
|
|
19
|
-
},
|
|
20
|
-
line: function (_a) {
|
|
21
|
-
var color = _a.color;
|
|
22
|
-
return ({
|
|
23
|
-
borderLeft: "3px solid ".concat(color),
|
|
24
|
-
position: 'absolute',
|
|
25
|
-
left: 0,
|
|
26
|
-
top: 0,
|
|
27
|
-
bottom: 0
|
|
28
|
-
});
|
|
29
|
-
},
|
|
30
|
-
info: {
|
|
31
|
-
fontSize: '13px',
|
|
32
|
-
color: theme.palette.text.secondary,
|
|
33
|
-
wordWrap: 'break-word',
|
|
34
|
-
lineHeight: '15px'
|
|
35
|
-
},
|
|
36
|
-
commentsInfo: {
|
|
37
|
-
display: 'flex',
|
|
38
|
-
alignItems: 'center',
|
|
39
|
-
marginBottom: '-4px',
|
|
40
|
-
marginTop: '7px'
|
|
41
|
-
},
|
|
42
|
-
commentsIcon: {
|
|
43
|
-
width: '11px',
|
|
44
|
-
height: '11px',
|
|
45
|
-
marginLeft: '2px',
|
|
46
|
-
marginRight: '6px',
|
|
47
|
-
marginTop: '-2px'
|
|
48
|
-
},
|
|
49
|
-
infoValue: {
|
|
50
|
-
color: theme.palette.text.primary
|
|
51
|
-
},
|
|
52
|
-
infoBlock: {
|
|
53
|
-
display: 'flex',
|
|
54
|
-
flexDirection: 'row',
|
|
55
|
-
marginBottom: '5px'
|
|
56
|
-
},
|
|
57
|
-
header: {
|
|
58
|
-
display: 'flex',
|
|
59
|
-
flexDirection: 'row',
|
|
60
|
-
paddingBottom: '12px'
|
|
61
|
-
},
|
|
62
|
-
flex: {
|
|
63
|
-
flex: 1
|
|
64
|
-
},
|
|
65
|
-
caption: {
|
|
66
|
-
fontSize: '16px',
|
|
67
|
-
color: theme.palette.text.primary
|
|
68
|
-
},
|
|
69
|
-
title: {
|
|
70
|
-
display: 'flex',
|
|
71
|
-
flexDirection: 'row',
|
|
72
|
-
alignItems: 'center',
|
|
73
|
-
marginBottom: '-4px'
|
|
74
|
-
},
|
|
75
|
-
flag: {
|
|
76
|
-
height: '13px',
|
|
77
|
-
width: '13px',
|
|
78
|
-
marginTop: '-2px',
|
|
79
|
-
stroke: '#000000',
|
|
80
|
-
fill: 'none',
|
|
81
|
-
margin: '2px 5px 0 5px'
|
|
82
|
-
},
|
|
83
|
-
date: {
|
|
84
|
-
fontSize: '13px',
|
|
85
|
-
color: theme.palette.text.primary
|
|
86
|
-
},
|
|
87
|
-
mainInfo: {
|
|
88
|
-
display: 'flex',
|
|
89
|
-
flexDirection: 'column',
|
|
90
|
-
flex: 1
|
|
91
|
-
},
|
|
92
|
-
controlsBox: {
|
|
93
|
-
marginRight: '16px',
|
|
94
|
-
marginBottom: '12px',
|
|
95
|
-
marginTop: '13px'
|
|
96
|
-
},
|
|
97
|
-
controlsInRow: {
|
|
98
|
-
display: 'flex',
|
|
99
|
-
flexDirection: 'row',
|
|
100
|
-
alignItems: 'center',
|
|
101
|
-
justifyContent: 'space-between',
|
|
102
|
-
marginBottom: '20px'
|
|
103
|
-
},
|
|
104
|
-
priority: {
|
|
105
|
-
width: '162px'
|
|
106
|
-
},
|
|
107
|
-
comments: {
|
|
108
|
-
marginLeft: '11px'
|
|
109
|
-
}
|
|
110
|
-
}); });
|