@colijnit/sharedcomponents 254.1.8 → 254.1.10
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/bundles/colijnit-sharedcomponents.umd.js +8 -1
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/activity-list/activity-list.component.js +11 -5
- package/fesm2015/colijnit-sharedcomponents.js +10 -4
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/activity-list/activity-list.component.d.ts +1 -0
- package/lib/components/activity-list/style/_layout.scss +3 -1
- package/lib/components/open-activity-list/style/_layout.scss +5 -2
- package/lib/components/task-creator/style/_layout.scss +52 -1
- package/package.json +2 -2
- package/3rdpartylicenses.txt +0 -1408
- package/favicon.ico +0 -0
- package/index.html +0 -12
- package/main.c58564f9965eba887216.js +0 -1
- package/polyfills.907fe9d1887c5de17993.js +0 -1
- package/runtime.8aac21847ed3d3829cca.js +0 -1
- package/styles.089aaa872e2614a9b432.css +0 -1
|
@@ -30,6 +30,7 @@ export declare class ActivityListComponent implements OnInit {
|
|
|
30
30
|
getRelationKind(author: RelationSmallObject): RelationKind;
|
|
31
31
|
getDateString(date: Date): string;
|
|
32
32
|
getActivityIcon(activity: Activity): Icon;
|
|
33
|
+
showTriggers(activity: Activity): boolean;
|
|
33
34
|
showAttachments(activity: Activity): boolean;
|
|
34
35
|
showWorkedTime(activity: Activity): boolean;
|
|
35
36
|
getWorkedTime(activity: Activity): number;
|
|
@@ -2,11 +2,14 @@
|
|
|
2
2
|
.co-component-activity-list {
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-direction: column;
|
|
5
|
-
height:
|
|
5
|
+
height: 100%;
|
|
6
6
|
padding: 30px 0;
|
|
7
7
|
|
|
8
8
|
.activity-list-content {
|
|
9
|
-
height:
|
|
9
|
+
height: 100px;
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
column-gap: 5px;
|
|
10
13
|
overflow: hidden;
|
|
11
14
|
}
|
|
12
15
|
.activity-wrapper {
|
|
@@ -8,9 +8,10 @@
|
|
|
8
8
|
width: 100%;
|
|
9
9
|
align-items: center;
|
|
10
10
|
gap: 15px;
|
|
11
|
-
.
|
|
11
|
+
.task-input-fields {
|
|
12
12
|
display: flex;
|
|
13
13
|
flex-direction: column;
|
|
14
|
+
width: 100%;
|
|
14
15
|
}
|
|
15
16
|
.co-input-text {
|
|
16
17
|
width: 100%;
|
|
@@ -36,5 +37,55 @@
|
|
|
36
37
|
height: 30px;
|
|
37
38
|
}
|
|
38
39
|
}
|
|
40
|
+
|
|
41
|
+
.co-files-upload {
|
|
42
|
+
width: 100%;
|
|
43
|
+
min-height: auto;
|
|
44
|
+
overflow-x: auto;
|
|
45
|
+
.co-drag-drop-container {
|
|
46
|
+
padding-top: 30px;
|
|
47
|
+
position: relative;
|
|
48
|
+
margin-top: 0;
|
|
49
|
+
gap: 5px;
|
|
50
|
+
align-items: flex-start;
|
|
51
|
+
.add-file {
|
|
52
|
+
top: 0;
|
|
53
|
+
.co-tile-render {
|
|
54
|
+
display: flex;
|
|
55
|
+
align-items: center;
|
|
56
|
+
flex-direction: row-reverse;
|
|
57
|
+
.add-button {
|
|
58
|
+
position: unset;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
.description {
|
|
62
|
+
font-weight: bold;
|
|
63
|
+
font-size: 12px;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
.tile {
|
|
67
|
+
padding: 10px;
|
|
68
|
+
border-radius: 5px;
|
|
69
|
+
border: 1px solid #CCCCCC;
|
|
70
|
+
height: 100%;
|
|
71
|
+
.info {
|
|
72
|
+
max-width: 100px;
|
|
73
|
+
.description {
|
|
74
|
+
font-size: 10px;
|
|
75
|
+
display: -webkit-box;
|
|
76
|
+
-webkit-line-clamp: 2;
|
|
77
|
+
-webkit-box-orient: vertical;
|
|
78
|
+
overflow: hidden;
|
|
79
|
+
text-overflow: ellipsis;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
.trash {
|
|
83
|
+
width: 20px;
|
|
84
|
+
height: 20px;
|
|
85
|
+
padding: 2px;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
39
90
|
}
|
|
40
91
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/sharedcomponents",
|
|
3
|
-
"version": "254.1.
|
|
3
|
+
"version": "254.1.10",
|
|
4
4
|
"private": false,
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"chart.js": "4.3.0",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@angular/core": ">=12.2.0",
|
|
12
12
|
"@colijnit/articleapi": ">=254.1.1",
|
|
13
13
|
"@colijnit/mainapi": ">=254.1.6",
|
|
14
|
-
"@colijnit/corecomponents_v12": ">=254.1.
|
|
14
|
+
"@colijnit/corecomponents_v12": ">=254.1.10",
|
|
15
15
|
"@colijnit/ioneconnector": ">=254.1.1",
|
|
16
16
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
17
17
|
"@colijnit/relationapi": ">=1.0.14",
|