@reltio/components 1.4.878 → 1.4.879
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/CollaborationItem/Comment/styles.d.ts +1 -1
- package/components/DropDownSelector/DropDownSelector.d.ts +16 -15
- package/components/DropDownSelector/DropDownSelector.js +2 -1
- package/components/DropDownSelector/styles.d.ts +1 -1
- package/components/ImageDetailsView/ImageDetailsViewSidebar/styles.d.ts +1 -1
- package/components/ImageGalleryDialog/styles.d.ts +1 -1
- package/components/MatchRulesBlock/MatchRulesTooltip/styles.d.ts +1 -1
- package/components/PotentialMatchReviewCard/styles.d.ts +1 -1
- package/components/SidePanel/styles.js +1 -1
- package/components/UploadImageDialog/styles.d.ts +1 -1
- package/components/attributes/PivotingAttributes/styles.d.ts +1 -1
- package/components/editors/DateEditor/DateEditor.d.ts +4 -2
- package/components/editors/DateEditor/DateEditor.js +6 -9
- package/components/index.d.ts +1 -0
- package/components/index.js +1 -0
- package/components/workflow/cards/DataChangeRequestTaskCard/DataChangeRequestTaskCard.d.ts +7 -0
- package/components/workflow/cards/DataChangeRequestTaskCard/DataChangeRequestTaskCard.js +28 -0
- package/components/workflow/cards/GenericWorkflowTaskCard/GenericWorkflowTaskCard.d.ts +10 -0
- package/components/workflow/cards/GenericWorkflowTaskCard/GenericWorkflowTaskCard.js +76 -0
- package/components/workflow/cards/GenericWorkflowTaskCard/styles.d.ts +3 -0
- package/components/workflow/cards/GenericWorkflowTaskCard/styles.js +110 -0
- package/components/workflow/cards/WorkflowTaskCard.d.ts +3 -0
- package/components/workflow/cards/WorkflowTaskCard.js +5 -0
- package/components/workflow/cards/WorkflowTaskCardsFactory.d.ts +9 -0
- package/components/workflow/cards/WorkflowTaskCardsFactory.js +27 -0
- package/components/workflow/components/AssigneeSelector/AssigneeSelector.d.ts +5 -0
- package/components/workflow/components/AssigneeSelector/AssigneeSelector.js +14 -0
- package/components/workflow/components/DueDateField/DueDateField.d.ts +7 -0
- package/components/workflow/components/DueDateField/DueDateField.js +14 -0
- package/components/workflow/components/DueDateField/styles.d.ts +1 -0
- package/components/workflow/components/DueDateField/styles.js +13 -0
- package/components/workflow/components/LineDecorator/LineDecorator.d.ts +11 -0
- package/components/workflow/components/LineDecorator/LineDecorator.js +14 -0
- package/components/workflow/components/LineDecorator/styles.d.ts +1 -0
- package/components/workflow/components/LineDecorator/styles.js +59 -0
- package/components/workflow/components/PrioritySelector/PrioritySelector.d.ts +7 -0
- package/components/workflow/components/PrioritySelector/PrioritySelector.js +12 -0
- package/components/workflow/components/TaskActions/TaskActions.d.ts +5 -0
- package/components/workflow/components/TaskActions/TaskActions.js +15 -0
- package/components/workflow/components/WorkflowComments/CollapsedComments.d.ts +16 -0
- package/components/workflow/components/WorkflowComments/CollapsedComments.js +34 -0
- package/components/workflow/components/WorkflowComments/Comment.d.ts +20 -0
- package/components/workflow/components/WorkflowComments/Comment.js +29 -0
- package/components/workflow/components/WorkflowComments/ExpandedComments.d.ts +14 -0
- package/components/workflow/components/WorkflowComments/ExpandedComments.js +20 -0
- package/components/workflow/components/WorkflowComments/WorkflowComments.d.ts +16 -0
- package/components/workflow/components/WorkflowComments/WorkflowComments.js +42 -0
- package/components/workflow/components/WorkflowComments/index.d.ts +1 -0
- package/components/workflow/components/WorkflowComments/index.js +1 -0
- package/components/workflow/components/WorkflowComments/styles.d.ts +4 -0
- package/components/workflow/components/WorkflowComments/styles.js +105 -0
- package/components/workflow/helpers/errors.d.ts +2 -0
- package/components/workflow/helpers/errors.js +14 -0
- package/components/workflow/helpers/index.d.ts +3 -0
- package/components/workflow/helpers/index.js +10 -0
- package/components/workflow/hooks/useWorkflowActions.d.ts +10 -0
- package/components/workflow/hooks/useWorkflowActions.js +57 -0
- package/components/workflow/hooks/useWorkflowAssignee.d.ts +13 -0
- package/components/workflow/hooks/useWorkflowAssignee.js +83 -0
- package/components/workflow/hooks/useWorkflowCheckPermission.d.ts +1 -0
- package/components/workflow/hooks/useWorkflowCheckPermission.js +84 -0
- package/components/workflow/hooks/useWorkflowColor.d.ts +3 -0
- package/components/workflow/hooks/useWorkflowColor.js +31 -0
- package/components/workflow/hooks/useWorkflowComments.d.ts +7 -0
- package/components/workflow/hooks/useWorkflowComments.js +50 -0
- package/components/workflow/hooks/useWorkflowDueDate.d.ts +6 -0
- package/components/workflow/hooks/useWorkflowDueDate.js +39 -0
- package/components/workflow/hooks/useWorkflowPriority.d.ts +12 -0
- package/components/workflow/hooks/useWorkflowPriority.js +59 -0
- package/components/workflow/index.d.ts +5 -0
- package/components/workflow/index.js +5 -0
- package/contexts/WorkflowTasksContext/index.d.ts +9 -0
- package/contexts/WorkflowTasksContext/index.js +3 -0
- package/contexts/index.d.ts +15 -14
- package/contexts/index.js +1 -0
- package/hooks/index.d.ts +1 -0
- package/hooks/index.js +1 -0
- package/hooks/useWorkflowTasks.d.ts +8 -0
- package/hooks/useWorkflowTasks.js +65 -0
- package/icons/CollaborationIcon.d.ts +3 -0
- package/icons/CollaborationIcon.js +22 -0
- package/icons/DcrTaskIcon.d.ts +3 -0
- package/icons/DcrTaskIcon.js +19 -0
- package/icons/DefaultTaskIcon.d.ts +3 -0
- package/icons/DefaultTaskIcon.js +19 -0
- package/icons/DeleteRequestTaskIcon.d.ts +3 -0
- package/icons/DeleteRequestTaskIcon.js +19 -0
- package/icons/PmTaskIcon.d.ts +3 -0
- package/icons/PmTaskIcon.js +19 -0
- package/icons/index.d.ts +11 -2
- package/icons/index.js +11 -2
- package/package.json +3 -3
package/icons/index.js
CHANGED
|
@@ -1,30 +1,39 @@
|
|
|
1
1
|
export { default as Add } from './Add';
|
|
2
2
|
export { default as AddComment } from './AddComment';
|
|
3
3
|
export { default as Calendar } from './Calendar';
|
|
4
|
+
export { default as CollaborationIcon } from './CollaborationIcon';
|
|
4
5
|
export { default as Comment } from './Comment';
|
|
5
6
|
export { default as CommentBubble } from './CommentBubble';
|
|
7
|
+
export { default as Copy } from './Copy';
|
|
6
8
|
export { default as Create } from './Create';
|
|
9
|
+
export { default as DcrTaskIcon } from './DcrTaskIcon';
|
|
7
10
|
export { default as DefaultImage } from './DefaultImage';
|
|
11
|
+
export { default as DefaultTaskIcon } from './DefaultTaskIcon';
|
|
12
|
+
export { default as DeleteRequestTaskIcon } from './DeleteRequestTaskIcon';
|
|
8
13
|
export { default as Details } from './Details';
|
|
9
14
|
export { default as Download } from './Download';
|
|
15
|
+
export { default as Draw } from './Draw';
|
|
10
16
|
export { default as EmptySearchResults } from './EmptySearchResults';
|
|
11
17
|
export { default as Filter } from './Filter';
|
|
12
18
|
export { default as Ignored } from './Ignored';
|
|
13
19
|
export { default as IgnoredOutlined } from './IgnoredOutlined';
|
|
14
20
|
export { default as LogIn } from './LogIn';
|
|
15
21
|
export { default as LogOut } from './LogOut';
|
|
16
|
-
export { default as MlMatch } from './MlMatch';
|
|
17
22
|
export { default as Merge } from './Merge';
|
|
23
|
+
export { default as MlMatch } from './MlMatch';
|
|
18
24
|
export { default as NestedAttribute } from './NestedAttribute';
|
|
19
25
|
export { default as NoData } from './NoData';
|
|
20
26
|
export { default as NoDataSearch } from './NoDataSearch';
|
|
21
27
|
export { default as NoMatches } from './NoMatches';
|
|
22
|
-
export { default as PmIcon } from './PmIcon';
|
|
23
28
|
export { default as Pin } from './Pin';
|
|
24
29
|
export { default as PinOutlined } from './PinOutlined';
|
|
25
30
|
export { default as PivotingIcon } from './PivotingIcon';
|
|
31
|
+
export { default as PmIcon } from './PmIcon';
|
|
32
|
+
export { default as PmTaskIcon } from './PmTaskIcon';
|
|
33
|
+
export { default as Polygon } from './Polygon';
|
|
26
34
|
export { default as PotentialMatch } from './PotentialMatch';
|
|
27
35
|
export { default as Profile } from './Profile';
|
|
36
|
+
export { default as Radius } from './Radius';
|
|
28
37
|
export { default as Recommended } from './Recommended';
|
|
29
38
|
export { default as ReferenceAttribute } from './ReferenceAttribute';
|
|
30
39
|
export { default as Remove } from './Remove';
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reltio/components",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.879",
|
|
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.879",
|
|
10
|
+
"@reltio/mdm-sdk": "^1.4.879",
|
|
11
11
|
"classnames": "^2.2.5",
|
|
12
12
|
"frontend-collective-react-dnd-scrollzone": "^1.0.2",
|
|
13
13
|
"nanoid": "^2.0.0",
|