@colijnit/sharedcomponents 255.1.12 → 255.1.14
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 +24 -5
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/activity-overview-component/component-activity-overview.component.js +36 -12
- package/esm2015/lib/components/activity-overview-component/components/base-activity-overview.component.js +6 -1
- package/esm2015/lib/components/modify-task-form/modify-task-form.component.js +8 -2
- package/esm2015/lib/components/open-activity-list/component-activity-list.component.js +11 -3
- package/esm2015/lib/components/task-modifyer/task-modifier.component.js +7 -1
- package/fesm2015/colijnit-sharedcomponents.js +63 -14
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/index.html +2 -2
- package/lib/components/activity-overview-component/components/base-activity-overview.component.d.ts +2 -0
- package/lib/components/activity-overview-component/style/_layout.scss +63 -39
- package/lib/components/modify-task-form/modify-task-form.component.d.ts +2 -0
- package/lib/components/open-activity-list/component-activity-list.component.d.ts +1 -0
- package/lib/components/task-modifyer/task-modifier.component.d.ts +2 -0
- package/{main.fb2a972348d07d7127fb.js → main.f010af331eeb875858fe.js} +1 -1
- package/package.json +2 -2
- package/{styles.8fce26887e7ff9657567.css → styles.eab53d84c672390d990a.css} +1 -1
package/index.html
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
<base href="/">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
6
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
7
|
-
<style>@charset "UTF-8";@import url(https://fonts.googleapis.com/css2?family=Public+Sans:wght@100;200;300;400;500;600;800;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Public+Sans&display=swap);body,html{margin:0;overflow:hidden}body,html{width:100%;height:100%}*{box-sizing:border-box;padding:0;margin:0}</style><link rel="stylesheet" href="styles.
|
|
7
|
+
<style>@charset "UTF-8";@import url(https://fonts.googleapis.com/css2?family=Public+Sans:wght@100;200;300;400;500;600;800;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Public+Sans&display=swap);body,html{margin:0;overflow:hidden}body,html{width:100%;height:100%}*{box-sizing:border-box;padding:0;margin:0}</style><link rel="stylesheet" href="styles.eab53d84c672390d990a.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.eab53d84c672390d990a.css"></noscript></head>
|
|
8
8
|
<body>
|
|
9
9
|
<app-root></app-root>
|
|
10
|
-
<script src="runtime.8aac21847ed3d3829cca.js" defer></script><script src="polyfills.907fe9d1887c5de17993.js" defer></script><script src="main.
|
|
10
|
+
<script src="runtime.8aac21847ed3d3829cca.js" defer></script><script src="polyfills.907fe9d1887c5de17993.js" defer></script><script src="main.f010af331eeb875858fe.js" defer></script>
|
|
11
11
|
|
|
12
12
|
</body></html>
|
package/lib/components/activity-overview-component/components/base-activity-overview.component.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export declare abstract class BaseActivityOverviewComponent {
|
|
|
33
33
|
triggerFired: EventEmitter<Activity>;
|
|
34
34
|
genericTriggerFired: EventEmitter<Activity>;
|
|
35
35
|
formCreated: EventEmitter<void>;
|
|
36
|
+
formTriggerFired: EventEmitter<void>;
|
|
36
37
|
openLink: EventEmitter<Activity>;
|
|
37
38
|
linkClicked: EventEmitter<{
|
|
38
39
|
module: string;
|
|
@@ -70,6 +71,7 @@ export declare abstract class BaseActivityOverviewComponent {
|
|
|
70
71
|
handleOpenLinkOrUrl(event: MouseEvent): void;
|
|
71
72
|
startModifyingTask(): void;
|
|
72
73
|
showTaskFormAndWorkLog(): void;
|
|
74
|
+
handleFormTriggerFired(): void;
|
|
73
75
|
onSaveActivity(activity: Activity): void;
|
|
74
76
|
onDeleteActivity(activity: Activity): void;
|
|
75
77
|
private _prepareData;
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
font-size: 12px;
|
|
28
28
|
padding: 4px 15px;
|
|
29
29
|
border-radius: 5px;
|
|
30
|
-
background: #
|
|
31
|
-
border: 1px solid #
|
|
30
|
+
background: #D0A46B99;
|
|
31
|
+
border: 1px solid #D0A46B;
|
|
32
32
|
white-space: nowrap;
|
|
33
33
|
color: #FFF;
|
|
34
34
|
}
|
|
@@ -86,47 +86,47 @@
|
|
|
86
86
|
align-items: center;
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
.button-trigger-icon {
|
|
108
|
-
background-color: #FFFFFF;
|
|
109
|
-
border: 1px solid #5FDCB3;
|
|
110
|
-
height: auto;
|
|
111
|
-
padding: 5px 15px;
|
|
112
|
-
cursor: pointer;
|
|
113
|
-
margin-right: auto;
|
|
114
|
-
span {
|
|
115
|
-
font-size: 10px;
|
|
116
|
-
color: #5FDCB3;
|
|
117
|
-
font-weight: bold;
|
|
118
|
-
}
|
|
119
|
-
.co-icon {
|
|
120
|
-
height: 10px;
|
|
121
|
-
svg [fill] {
|
|
122
|
-
fill: #5FDCB3;
|
|
89
|
+
.activity-buttons {
|
|
90
|
+
display: flex;
|
|
91
|
+
gap: 5px;
|
|
92
|
+
flex-wrap: wrap;
|
|
93
|
+
.button-trigger {
|
|
94
|
+
background-color: #FFFFFF;
|
|
95
|
+
border: 1px solid #D0A46B;
|
|
96
|
+
height: auto;
|
|
97
|
+
padding: 5px 15px;
|
|
98
|
+
cursor: pointer;
|
|
99
|
+
&:after {
|
|
100
|
+
display: none;
|
|
101
|
+
}
|
|
102
|
+
span {
|
|
103
|
+
font-size: 10px;
|
|
104
|
+
color: #D0A46B;
|
|
105
|
+
font-weight: bold;
|
|
123
106
|
}
|
|
124
107
|
}
|
|
125
|
-
|
|
126
|
-
|
|
108
|
+
.button-trigger-icon {
|
|
109
|
+
background-color: #FFFFFF;
|
|
110
|
+
border: 1px solid #D0A46B;
|
|
111
|
+
height: auto;
|
|
112
|
+
padding: 5px 15px;
|
|
113
|
+
cursor: pointer;
|
|
114
|
+
span {
|
|
115
|
+
font-size: 10px;
|
|
116
|
+
color: #D0A46B;
|
|
117
|
+
font-weight: bold;
|
|
118
|
+
}
|
|
119
|
+
.co-icon {
|
|
120
|
+
height: 10px;
|
|
121
|
+
svg [fill] {
|
|
122
|
+
fill: #5FDCB3;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
&:after {
|
|
126
|
+
display: none;
|
|
127
|
+
}
|
|
127
128
|
}
|
|
128
129
|
}
|
|
129
|
-
|
|
130
130
|
.date-divider {
|
|
131
131
|
margin: 0 5px;
|
|
132
132
|
font-weight: bold;
|
|
@@ -148,6 +148,30 @@
|
|
|
148
148
|
background: #FAFAFA;
|
|
149
149
|
color: #171721;
|
|
150
150
|
}
|
|
151
|
+
.overview-task-wrapper {
|
|
152
|
+
.button-trigger {
|
|
153
|
+
background: #5FDCB399;
|
|
154
|
+
border: 1px solid #5FDCB3;
|
|
155
|
+
height: auto;
|
|
156
|
+
padding: 5px 15px;
|
|
157
|
+
cursor: pointer;
|
|
158
|
+
margin-right: auto;
|
|
159
|
+
color: #FFF;
|
|
160
|
+
}
|
|
161
|
+
.button-trigger-icon {
|
|
162
|
+
background: #5FDCB399;
|
|
163
|
+
border: 1px solid #5FDCB3;
|
|
164
|
+
height: auto;
|
|
165
|
+
padding: 5px 15px;
|
|
166
|
+
cursor: pointer;
|
|
167
|
+
margin-right: auto;
|
|
168
|
+
color: #FFF;
|
|
169
|
+
}
|
|
170
|
+
.task-box {
|
|
171
|
+
display: flex;
|
|
172
|
+
flex-direction: column;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
151
175
|
}
|
|
152
176
|
}
|
|
153
177
|
|
|
@@ -24,6 +24,7 @@ export declare class ModifyTaskFormComponent implements OnInit, ScreenConfigAdap
|
|
|
24
24
|
activityChange: EventEmitter<Activity>;
|
|
25
25
|
statusChange: EventEmitter<boolean>;
|
|
26
26
|
showWorkLog: EventEmitter<void>;
|
|
27
|
+
triggerFired: EventEmitter<void>;
|
|
27
28
|
selectedMenu: string;
|
|
28
29
|
activities: Activity[];
|
|
29
30
|
table: TableName;
|
|
@@ -48,6 +49,7 @@ export declare class ModifyTaskFormComponent implements OnInit, ScreenConfigAdap
|
|
|
48
49
|
handleShowWorkLow(): void;
|
|
49
50
|
handleEditTags(): void;
|
|
50
51
|
handleSaveTags(tags: TagTreeItem[]): void;
|
|
52
|
+
handleTriggerFired(): void;
|
|
51
53
|
private _updateTaskObject;
|
|
52
54
|
private _getActivities;
|
|
53
55
|
private _getTags;
|
|
@@ -56,6 +56,7 @@ export declare class ComponentActivityListComponent extends BaseActivityListComp
|
|
|
56
56
|
showUsergroupActivitiesChange(): void;
|
|
57
57
|
handleTriggerFired(activity: Activity): void;
|
|
58
58
|
handleGenericTriggerFired(activity: Activity): void;
|
|
59
|
+
handleFormTriggerFired(): void;
|
|
59
60
|
handleFormCreation(): void;
|
|
60
61
|
handleChangedActivity(idx: number, activity: Activity): void;
|
|
61
62
|
deleteActivity(activity: Activity): void;
|
|
@@ -34,6 +34,7 @@ export declare class TaskModifierComponent implements OnDestroy {
|
|
|
34
34
|
readonly showWorkLog: EventEmitter<void>;
|
|
35
35
|
readonly taskCreated: EventEmitter<Task>;
|
|
36
36
|
readonly taskModified: EventEmitter<Task>;
|
|
37
|
+
readonly triggerFired: EventEmitter<void>;
|
|
37
38
|
showClass(): boolean;
|
|
38
39
|
get showForm(): boolean;
|
|
39
40
|
get header(): string;
|
|
@@ -61,5 +62,6 @@ export declare class TaskModifierComponent implements OnDestroy {
|
|
|
61
62
|
_createClone(): void;
|
|
62
63
|
doHandleStatusChange(editting: boolean): void;
|
|
63
64
|
updateEditActivity(activity: Activity): void;
|
|
65
|
+
handleTriggerFired(): void;
|
|
64
66
|
protected readonly Icon: typeof Icon;
|
|
65
67
|
}
|