@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.
Files changed (241) hide show
  1. package/ProfileResizablePanes/ProfileResizablePanes.js +1 -1
  2. package/ProfileResizablePanes/ProfileResizablePanes.spec.js +16 -2
  3. package/RequestedData/RequestedData.d.ts +12 -0
  4. package/RequestedData/RequestedData.js +26 -0
  5. package/RequestedData/RequestedData.module.css.js +9 -0
  6. package/RequestedData/index.d.ts +1 -0
  7. package/RequestedData/index.js +1 -0
  8. package/RolesEditor/RolesEditor.js +5 -20
  9. package/RolesEditor/RolesEditor.module.css.js +2 -2
  10. package/RolesInput/RolesInput.d.ts +8 -0
  11. package/RolesInput/RolesInput.js +31 -0
  12. package/RolesInput/RolesInput.module.css.js +9 -0
  13. package/TagsEditor/TagsEditor.js +4 -67
  14. package/TagsInput/TagsInput.d.ts +8 -0
  15. package/TagsInput/TagsInput.js +71 -0
  16. package/cjs/ProfileResizablePanes/ProfileResizablePanes.js +1 -1
  17. package/cjs/ProfileResizablePanes/ProfileResizablePanes.spec.js +16 -2
  18. package/cjs/RequestedData/RequestedData.d.ts +12 -0
  19. package/cjs/RequestedData/RequestedData.js +33 -0
  20. package/cjs/RequestedData/RequestedData.module.css.js +9 -0
  21. package/cjs/RequestedData/index.d.ts +1 -0
  22. package/cjs/RequestedData/index.js +5 -0
  23. package/cjs/RolesEditor/RolesEditor.js +2 -17
  24. package/cjs/RolesEditor/RolesEditor.module.css.js +2 -2
  25. package/cjs/RolesInput/RolesInput.d.ts +8 -0
  26. package/cjs/RolesInput/RolesInput.js +61 -0
  27. package/cjs/RolesInput/RolesInput.module.css.js +9 -0
  28. package/cjs/TagsEditor/TagsEditor.js +2 -65
  29. package/cjs/TagsInput/TagsInput.d.ts +8 -0
  30. package/cjs/TagsInput/TagsInput.js +98 -0
  31. package/cjs/features/activity-log/ActivitiesFactory/ActivitiesFactory.js +5 -0
  32. package/cjs/features/activity-log/ActivitiesFactory/components/InteractionActivity/InteractionActivity.d.ts +8 -0
  33. package/cjs/features/activity-log/ActivitiesFactory/components/InteractionActivity/InteractionActivity.js +20 -0
  34. package/cjs/features/activity-log/ActivitiesFactory/components/InteractionActivity/index.d.ts +1 -0
  35. package/cjs/features/activity-log/ActivitiesFactory/components/InteractionActivity/index.js +5 -0
  36. package/cjs/features/activity-log/ActivityFilterEditor/helpers.test.js +3 -2
  37. package/cjs/features/activity-log/ActivityLog/helpers.js +1 -1
  38. package/cjs/features/activity-log/InteractionRecord/InteractionRecord.d.ts +7 -0
  39. package/cjs/features/activity-log/InteractionRecord/InteractionRecord.js +17 -0
  40. package/cjs/features/activity-log/InteractionRecord/index.d.ts +1 -0
  41. package/cjs/features/activity-log/InteractionRecord/index.js +5 -0
  42. package/cjs/features/activity-log/types.d.ts +3 -1
  43. package/cjs/features/activity-log/types.js +2 -0
  44. package/cjs/features/activity-log/utils/activities.js +2 -0
  45. package/cjs/features/history/types.d.ts +2 -0
  46. package/cjs/features/workflow/AttributesChanges/AttributesChanges.js +9 -48
  47. package/cjs/features/workflow/AttributesChanges/AttributesChanges.module.css.js +9 -0
  48. package/cjs/features/workflow/AttributesChanges/components/ChangeView/ChangeView.js +7 -9
  49. package/cjs/features/workflow/AttributesChanges/components/ChangeView/ChangeView.module.css.js +9 -0
  50. package/cjs/features/workflow/AttributesChanges/components/DCRChangesList/DCRChangesList.d.ts +1 -1
  51. package/cjs/features/workflow/AttributesChanges/components/DiffRenderer/DiffRenderer.d.ts +2 -2
  52. package/cjs/features/workflow/AttributesChanges/components/DiffRenderer/DiffRenderer.js +19 -40
  53. package/cjs/features/workflow/AttributesChanges/components/DiffRenderer/DiffRenderer.module.css.js +9 -0
  54. package/cjs/features/workflow/AttributesChanges/useCollapsibleList.d.ts +1 -1
  55. package/cjs/features/workflow/ChangeRequestEditor/ChangeRequestEditor.d.ts +3 -2
  56. package/cjs/features/workflow/ChangeRequestEditor/ChangeRequestEditor.js +11 -6
  57. package/cjs/features/workflow/ChangeRequestEditor/ChangeRequestEditor.module.css.js +2 -2
  58. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemEditor.d.ts +10 -0
  59. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemEditor.js +72 -0
  60. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemEditor.module.css.js +9 -0
  61. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemLabel.d.ts +9 -0
  62. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemLabel.js +19 -0
  63. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemOldValue.d.ts +7 -0
  64. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemOldValue.js +32 -0
  65. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditor.d.ts +9 -0
  66. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditor.js +44 -0
  67. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditorFactory.d.ts +12 -0
  68. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditorFactory.js +38 -0
  69. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/SkeletonChangeItemEditorLoader.d.ts +2 -0
  70. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/SkeletonChangeItemEditorLoader.js +20 -0
  71. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/index.d.ts +3 -0
  72. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/index.js +9 -0
  73. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemRow/ChangeItemRow.d.ts +10 -0
  74. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemRow/ChangeItemRow.js +27 -0
  75. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemRow/ChangeItemRow.module.css.js +9 -0
  76. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemRow/index.d.ts +1 -0
  77. package/cjs/features/workflow/ChangeRequestEditor/components/ChangeItemRow/index.js +5 -0
  78. package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/EntityChangesGroup.d.ts +10 -0
  79. package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/EntityChangesGroup.js +61 -0
  80. package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/EntityChangesGroup.module.css.js +9 -0
  81. package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/SkeletonEntityChangesGroupLoader.d.ts +2 -0
  82. package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/SkeletonEntityChangesGroupLoader.js +23 -0
  83. package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/index.d.ts +2 -0
  84. package/cjs/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/index.js +7 -0
  85. package/cjs/features/workflow/ChangeRequestEditor/helpers.d.ts +3 -0
  86. package/cjs/features/workflow/ChangeRequestEditor/helpers.js +16 -0
  87. package/cjs/features/workflow/DCREntityUriLink/DCREntityUriLink.d.ts +10 -0
  88. package/cjs/features/workflow/DCREntityUriLink/DCREntityUriLink.js +21 -0
  89. package/cjs/features/workflow/DCREntityUriLink/DCREntityUriLink.module.css.js +9 -0
  90. package/cjs/features/workflow/OperationChip/OperationChip.d.ts +10 -0
  91. package/cjs/features/workflow/OperationChip/OperationChip.js +16 -0
  92. package/cjs/features/workflow/OperationChip/OperationChip.module.css.js +9 -0
  93. package/cjs/features/workflow/OperationChip/index.d.ts +1 -0
  94. package/cjs/features/workflow/OperationChip/index.js +5 -0
  95. package/cjs/features/workflow/RelationEntityLink/RelationEntityLink.d.ts +9 -0
  96. package/cjs/features/workflow/RelationEntityLink/RelationEntityLink.js +67 -0
  97. package/cjs/features/workflow/RelationEntityLink/RelationEntityLink.module.css.js +9 -0
  98. package/cjs/features/workflow/RelationEntityLink/index.d.ts +1 -0
  99. package/cjs/features/workflow/RelationEntityLink/index.js +5 -0
  100. package/cjs/features/workflow/ReviewDCRDialog/ReviewDCRDialog.js +1 -1
  101. package/cjs/features/workflow/ReviewDCRDialog/ReviewDCRDialog.module.css.js +1 -1
  102. package/cjs/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.js +3 -17
  103. package/cjs/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.module.css.js +1 -1
  104. package/cjs/features/workflow/ReviewDCRDialog/helpers/calculateDCRChanges.js +1 -1
  105. package/cjs/features/workflow/WorkflowComments/components/Comment/Comment.js +9 -10
  106. package/cjs/features/workflow/WorkflowComments/components/Comment/Comment.module.css.js +9 -0
  107. package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/attributes.js +13 -10
  108. package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/attributes.test.js +19 -9
  109. package/cjs/features/workflow/helpers/common.d.ts +2 -1
  110. package/cjs/features/workflow/helpers/common.js +6 -1
  111. package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/merge.js +3 -4
  112. package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/merge.test.js +5 -3
  113. package/cjs/features/workflow/hooks/useChangesList.d.ts +9 -0
  114. package/cjs/features/workflow/hooks/useChangesList.js +24 -0
  115. package/cjs/features/workflow/types.d.ts +16 -0
  116. package/cjs/icons/SuggestedChanges.d.ts +3 -0
  117. package/cjs/icons/SuggestedChanges.js +27 -0
  118. package/cjs/index.d.ts +1 -0
  119. package/cjs/index.js +6 -4
  120. package/features/activity-log/ActivitiesFactory/ActivitiesFactory.js +5 -0
  121. package/features/activity-log/ActivitiesFactory/components/InteractionActivity/InteractionActivity.d.ts +8 -0
  122. package/features/activity-log/ActivitiesFactory/components/InteractionActivity/InteractionActivity.js +13 -0
  123. package/features/activity-log/ActivitiesFactory/components/InteractionActivity/index.d.ts +1 -0
  124. package/features/activity-log/ActivitiesFactory/components/InteractionActivity/index.js +1 -0
  125. package/features/activity-log/ActivityFilterEditor/helpers.test.js +3 -2
  126. package/features/activity-log/ActivityLog/helpers.js +1 -1
  127. package/features/activity-log/InteractionRecord/InteractionRecord.d.ts +7 -0
  128. package/features/activity-log/InteractionRecord/InteractionRecord.js +10 -0
  129. package/features/activity-log/InteractionRecord/index.d.ts +1 -0
  130. package/features/activity-log/InteractionRecord/index.js +1 -0
  131. package/features/activity-log/types.d.ts +3 -1
  132. package/features/activity-log/types.js +2 -0
  133. package/features/activity-log/utils/activities.js +2 -0
  134. package/features/history/types.d.ts +2 -0
  135. package/features/workflow/AttributesChanges/AttributesChanges.js +7 -23
  136. package/features/workflow/AttributesChanges/AttributesChanges.module.css.js +9 -0
  137. package/features/workflow/AttributesChanges/components/ChangeView/ChangeView.js +3 -5
  138. package/features/workflow/AttributesChanges/components/ChangeView/ChangeView.module.css.js +9 -0
  139. package/features/workflow/AttributesChanges/components/DCRChangesList/DCRChangesList.d.ts +1 -1
  140. package/features/workflow/AttributesChanges/components/DiffRenderer/DiffRenderer.d.ts +2 -2
  141. package/features/workflow/AttributesChanges/components/DiffRenderer/DiffRenderer.js +22 -43
  142. package/features/workflow/AttributesChanges/components/DiffRenderer/DiffRenderer.module.css.js +9 -0
  143. package/features/workflow/AttributesChanges/useCollapsibleList.d.ts +1 -1
  144. package/features/workflow/ChangeRequestEditor/ChangeRequestEditor.d.ts +3 -2
  145. package/features/workflow/ChangeRequestEditor/ChangeRequestEditor.js +11 -6
  146. package/features/workflow/ChangeRequestEditor/ChangeRequestEditor.module.css.js +2 -2
  147. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemEditor.d.ts +10 -0
  148. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemEditor.js +42 -0
  149. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemEditor.module.css.js +9 -0
  150. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemLabel.d.ts +9 -0
  151. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemLabel.js +12 -0
  152. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemOldValue.d.ts +7 -0
  153. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/ChangeItemOldValue.js +25 -0
  154. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditor.d.ts +9 -0
  155. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditor.js +14 -0
  156. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditorFactory.d.ts +12 -0
  157. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/DCRValueEditorFactory.js +32 -0
  158. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/SkeletonChangeItemEditorLoader.d.ts +2 -0
  159. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/SkeletonChangeItemEditorLoader.js +13 -0
  160. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/index.d.ts +3 -0
  161. package/features/workflow/ChangeRequestEditor/components/ChangeItemEditor/index.js +3 -0
  162. package/features/workflow/ChangeRequestEditor/components/ChangeItemRow/ChangeItemRow.d.ts +10 -0
  163. package/features/workflow/ChangeRequestEditor/components/ChangeItemRow/ChangeItemRow.js +20 -0
  164. package/features/workflow/ChangeRequestEditor/components/ChangeItemRow/ChangeItemRow.module.css.js +9 -0
  165. package/features/workflow/ChangeRequestEditor/components/ChangeItemRow/index.d.ts +1 -0
  166. package/features/workflow/ChangeRequestEditor/components/ChangeItemRow/index.js +1 -0
  167. package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/EntityChangesGroup.d.ts +10 -0
  168. package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/EntityChangesGroup.js +31 -0
  169. package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/EntityChangesGroup.module.css.js +9 -0
  170. package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/SkeletonEntityChangesGroupLoader.d.ts +2 -0
  171. package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/SkeletonEntityChangesGroupLoader.js +16 -0
  172. package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/index.d.ts +2 -0
  173. package/features/workflow/ChangeRequestEditor/components/EntityChangesGroup/index.js +2 -0
  174. package/features/workflow/ChangeRequestEditor/helpers.d.ts +3 -0
  175. package/features/workflow/ChangeRequestEditor/helpers.js +12 -0
  176. package/features/workflow/DCREntityUriLink/DCREntityUriLink.d.ts +10 -0
  177. package/features/workflow/DCREntityUriLink/DCREntityUriLink.js +14 -0
  178. package/features/workflow/DCREntityUriLink/DCREntityUriLink.module.css.js +9 -0
  179. package/features/workflow/OperationChip/OperationChip.d.ts +10 -0
  180. package/features/workflow/OperationChip/OperationChip.js +9 -0
  181. package/features/workflow/OperationChip/OperationChip.module.css.js +9 -0
  182. package/features/workflow/OperationChip/index.d.ts +1 -0
  183. package/features/workflow/OperationChip/index.js +1 -0
  184. package/features/workflow/RelationEntityLink/RelationEntityLink.d.ts +9 -0
  185. package/features/workflow/RelationEntityLink/RelationEntityLink.js +37 -0
  186. package/features/workflow/RelationEntityLink/RelationEntityLink.module.css.js +9 -0
  187. package/features/workflow/RelationEntityLink/index.d.ts +1 -0
  188. package/features/workflow/RelationEntityLink/index.js +1 -0
  189. package/features/workflow/ReviewDCRDialog/ReviewDCRDialog.js +1 -1
  190. package/features/workflow/ReviewDCRDialog/ReviewDCRDialog.module.css.js +1 -1
  191. package/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.js +2 -16
  192. package/features/workflow/ReviewDCRDialog/components/DCRChangesSummary/DCRChangesSummary.module.css.js +1 -1
  193. package/features/workflow/ReviewDCRDialog/helpers/calculateDCRChanges.js +1 -1
  194. package/features/workflow/WorkflowComments/components/Comment/Comment.js +1 -2
  195. package/features/workflow/WorkflowComments/components/Comment/Comment.module.css.js +9 -0
  196. package/features/workflow/{AttributesChanges/helpers → helpers}/attributes.js +13 -10
  197. package/features/workflow/{AttributesChanges/helpers → helpers}/attributes.test.js +19 -9
  198. package/features/workflow/helpers/common.d.ts +2 -1
  199. package/features/workflow/helpers/common.js +6 -2
  200. package/features/workflow/{AttributesChanges/helpers → helpers}/merge.js +4 -5
  201. package/features/workflow/{AttributesChanges/helpers → helpers}/merge.test.js +5 -3
  202. package/features/workflow/hooks/useChangesList.d.ts +9 -0
  203. package/features/workflow/hooks/useChangesList.js +17 -0
  204. package/features/workflow/types.d.ts +16 -0
  205. package/icons/SuggestedChanges.d.ts +3 -0
  206. package/icons/SuggestedChanges.js +22 -0
  207. package/index.d.ts +1 -0
  208. package/index.js +1 -0
  209. package/package.json +2 -2
  210. package/cjs/features/workflow/AttributesChanges/components/ChangeView/styles.d.ts +0 -1
  211. package/cjs/features/workflow/AttributesChanges/components/ChangeView/styles.js +0 -49
  212. package/cjs/features/workflow/AttributesChanges/components/DiffRenderer/styles.d.ts +0 -5
  213. package/cjs/features/workflow/AttributesChanges/components/DiffRenderer/styles.js +0 -31
  214. package/cjs/features/workflow/AttributesChanges/styles.d.ts +0 -1
  215. package/cjs/features/workflow/AttributesChanges/styles.js +0 -28
  216. package/cjs/features/workflow/AttributesChanges/types.d.ts +0 -14
  217. package/cjs/features/workflow/AttributesChanges/types.js +0 -2
  218. package/cjs/features/workflow/WorkflowComments/components/Comment/styles.d.ts +0 -1
  219. package/cjs/features/workflow/WorkflowComments/components/Comment/styles.js +0 -49
  220. package/features/workflow/AttributesChanges/components/ChangeView/styles.d.ts +0 -1
  221. package/features/workflow/AttributesChanges/components/ChangeView/styles.js +0 -46
  222. package/features/workflow/AttributesChanges/components/DiffRenderer/styles.d.ts +0 -5
  223. package/features/workflow/AttributesChanges/components/DiffRenderer/styles.js +0 -28
  224. package/features/workflow/AttributesChanges/styles.d.ts +0 -1
  225. package/features/workflow/AttributesChanges/styles.js +0 -25
  226. package/features/workflow/AttributesChanges/types.d.ts +0 -14
  227. package/features/workflow/AttributesChanges/types.js +0 -1
  228. package/features/workflow/WorkflowComments/components/Comment/styles.d.ts +0 -1
  229. package/features/workflow/WorkflowComments/components/Comment/styles.js +0 -46
  230. /package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/attributes.d.ts +0 -0
  231. /package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/attributes.test.d.ts +0 -0
  232. /package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/merge.d.ts +0 -0
  233. /package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/merge.test.d.ts +0 -0
  234. /package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/metadata.test-data.d.ts +0 -0
  235. /package/cjs/features/workflow/{AttributesChanges/helpers → helpers}/metadata.test-data.js +0 -0
  236. /package/features/workflow/{AttributesChanges/helpers → helpers}/attributes.d.ts +0 -0
  237. /package/features/workflow/{AttributesChanges/helpers → helpers}/attributes.test.d.ts +0 -0
  238. /package/features/workflow/{AttributesChanges/helpers → helpers}/merge.d.ts +0 -0
  239. /package/features/workflow/{AttributesChanges/helpers → helpers}/merge.test.d.ts +0 -0
  240. /package/features/workflow/{AttributesChanges/helpers → helpers}/metadata.test-data.d.ts +0 -0
  241. /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,5 +0,0 @@
1
- type StylesProps = {
2
- level: number;
3
- };
4
- export declare const useStyles: (props: StylesProps) => import("@mui/styles").ClassNameMap<"label" | "change" | "linkLabel" | "linkContainer" | "disabledLink">;
5
- export {};
@@ -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
- });