@colijnit/sharedcomponents 261.20.5 → 261.20.7
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/fesm2022/colijnit-sharedcomponents.mjs +193 -302
- package/fesm2022/colijnit-sharedcomponents.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/components/activity-overview-component/style/_layout.scss +3 -10
- package/lib/components/task-creator/style/_layout.scss +2 -2
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -3437,6 +3437,7 @@ declare class ComponentActivityListComponent extends BaseActivityListComponent i
|
|
|
3437
3437
|
}): void;
|
|
3438
3438
|
openFirstTask(): void;
|
|
3439
3439
|
tryOpenTaskByTaskId(taskId: number): boolean;
|
|
3440
|
+
hasTaskActivity(activities: any[]): boolean;
|
|
3440
3441
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentActivityListComponent, never>;
|
|
3441
3442
|
static ɵcmp: i0.ɵɵComponentDeclaration<ComponentActivityListComponent, "co-component-activity-list", never, { "table": { "alias": "table"; "required": false; }; "key": { "alias": "key"; "required": false; }; "showActivityHeader": { "alias": "showActivityHeader"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; "noFreeTasks": { "alias": "noFreeTasks"; "required": false; }; "customTitle": { "alias": "customTitle"; "required": false; }; "userGroupId": { "alias": "userGroupId"; "required": false; }; "relationId": { "alias": "relationId"; "required": false; }; "branchNo": { "alias": "branchNo"; "required": false; }; "componentActivitiesMethod": { "alias": "componentActivitiesMethod"; "required": false; }; "setHasPausedNotificationsForWorkflowProcessOperation": { "alias": "setHasPausedNotificationsForWorkflowProcessOperation"; "required": false; }; "activitiesList": { "alias": "activitiesList"; "required": false; }; }, { "openLinkClick": "openLinkClick"; "amountActivityChanged": "amountActivityChanged"; "linkClicked": "linkClicked"; "formCreated": "formCreated"; "refreshRequested": "refreshRequested"; "showUsergroupActivitiesChanged": "showUsergroupActivitiesChanged"; }, never, never, false, never>;
|
|
3442
3443
|
}
|
|
@@ -1,24 +1,17 @@
|
|
|
1
1
|
@include export-module('co-component-activity-overview-layout') {
|
|
2
2
|
.co-component-activity-overview {
|
|
3
|
-
user-select: none;
|
|
4
|
-
display: block;
|
|
5
|
-
background: rgba(255, 255, 255, 0);
|
|
6
|
-
transition: all .2s ease-in-out;
|
|
7
|
-
box-shadow: inset 0 0 1px rgba(1, 1, 1, 0.3);
|
|
8
|
-
padding: 10px;
|
|
9
|
-
overflow: hidden;
|
|
10
|
-
margin-bottom: 15px;
|
|
11
3
|
.overview-wrapper {
|
|
12
4
|
display: flex;
|
|
13
|
-
flex-direction:
|
|
5
|
+
flex-direction: column;
|
|
14
6
|
align-items: flex-start;
|
|
15
|
-
gap:
|
|
7
|
+
gap: 15px;
|
|
16
8
|
justify-content: space-between;
|
|
17
9
|
.overview-current {
|
|
18
10
|
display: flex;
|
|
19
11
|
align-items: center;
|
|
20
12
|
gap: 15px;
|
|
21
13
|
.overview-wrapper-icons {
|
|
14
|
+
display: none;
|
|
22
15
|
.activity-icon {
|
|
23
16
|
border-radius: 100%;
|
|
24
17
|
display: flex;
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
}
|
|
92
92
|
.co-input-textarea {
|
|
93
93
|
&.large-remark {
|
|
94
|
-
min-height:
|
|
94
|
+
min-height: 60px;
|
|
95
95
|
width: 100%;
|
|
96
96
|
border-bottom: 4px solid #f5f5fc;
|
|
97
97
|
}
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
textarea {
|
|
106
106
|
margin-top: 0;
|
|
107
107
|
padding-top: 30px;
|
|
108
|
-
min-height:
|
|
108
|
+
min-height: 60px;
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
111
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/sharedcomponents",
|
|
3
|
-
"version": "261.20.
|
|
3
|
+
"version": "261.20.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"chart.js": "4.3.0",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"jspdf-autotable": "5.0.7",
|
|
22
22
|
"moment": "^2.30.1",
|
|
23
23
|
"pdf-lib": ">=1.17.1",
|
|
24
|
-
"pdfjs-dist": "
|
|
24
|
+
"pdfjs-dist": "5.4.530",
|
|
25
25
|
"rxjs": ">=7.4.0",
|
|
26
26
|
"signature_pad": "^5.1.3",
|
|
27
27
|
"zone.js": ">=0.15.1"
|