@colijnit/sharedcomponents 255.1.11 → 255.1.13
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/3rdpartylicenses.txt +1405 -0
- 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 +3 -2
- 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 +7 -1
- package/esm2015/lib/components/task-modifyer/task-modifier.component.js +7 -1
- package/favicon.ico +0 -0
- package/fesm2015/colijnit-sharedcomponents.js +26 -2
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/index.html +12 -0
- package/lib/components/activity-list/style/_layout.scss +4 -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 +4 -2
- 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.e4088c92fb309d6af37a.js +1 -0
- package/package.json +2 -2
- package/polyfills.907fe9d1887c5de17993.js +1 -0
- package/runtime.8aac21847ed3d3829cca.js +1 -0
- package/styles.8fce26887e7ff9657567.css +1 -0
package/index.html
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head>
|
|
2
|
+
<meta charset="utf-8">
|
|
3
|
+
<title>Sharedcomponents</title>
|
|
4
|
+
<base href="/">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
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.8fce26887e7ff9657567.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.8fce26887e7ff9657567.css"></noscript></head>
|
|
8
|
+
<body>
|
|
9
|
+
<app-root></app-root>
|
|
10
|
+
<script src="runtime.8aac21847ed3d3829cca.js" defer></script><script src="polyfills.907fe9d1887c5de17993.js" defer></script><script src="main.e4088c92fb309d6af37a.js" defer></script>
|
|
11
|
+
|
|
12
|
+
</body></html>
|
|
@@ -57,12 +57,11 @@
|
|
|
57
57
|
|
|
58
58
|
.activity-fired-triggers {
|
|
59
59
|
position: absolute;
|
|
60
|
-
left:
|
|
60
|
+
left: 0px;
|
|
61
61
|
display: flex;
|
|
62
62
|
flex-direction: row;
|
|
63
63
|
column-gap: 5px;
|
|
64
64
|
align-items: center;
|
|
65
|
-
|
|
66
65
|
.activity-fired-trigger {
|
|
67
66
|
border-radius: 5px;
|
|
68
67
|
background-color: $sc-color-trigger;
|
|
@@ -71,6 +70,9 @@
|
|
|
71
70
|
padding-bottom: 5px;
|
|
72
71
|
padding-left: 20px;
|
|
73
72
|
padding-right: 20px;
|
|
73
|
+
span {
|
|
74
|
+
color: #FFF;
|
|
75
|
+
}
|
|
74
76
|
}
|
|
75
77
|
}
|
|
76
78
|
.icon-indicators {
|
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,7 +27,7 @@
|
|
|
27
27
|
font-size: 12px;
|
|
28
28
|
padding: 4px 15px;
|
|
29
29
|
border-radius: 5px;
|
|
30
|
-
background: #
|
|
30
|
+
background: #5FDCB399;
|
|
31
31
|
border: 1px solid #5FDCB3;
|
|
32
32
|
white-space: nowrap;
|
|
33
33
|
color: #FFF;
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
.overview-main {
|
|
77
77
|
display: flex;
|
|
78
78
|
width: 100%;
|
|
79
|
-
flex-direction:
|
|
79
|
+
flex-direction: column;
|
|
80
80
|
flex-wrap: wrap;
|
|
81
81
|
column-gap: 10px;
|
|
82
82
|
row-gap: 5px;
|
|
@@ -93,6 +93,7 @@
|
|
|
93
93
|
height: auto;
|
|
94
94
|
padding: 5px 15px;
|
|
95
95
|
cursor: pointer;
|
|
96
|
+
margin-right: auto;
|
|
96
97
|
&:after {
|
|
97
98
|
display: none;
|
|
98
99
|
}
|
|
@@ -109,6 +110,7 @@
|
|
|
109
110
|
height: auto;
|
|
110
111
|
padding: 5px 15px;
|
|
111
112
|
cursor: pointer;
|
|
113
|
+
margin-right: auto;
|
|
112
114
|
span {
|
|
113
115
|
font-size: 10px;
|
|
114
116
|
color: #5FDCB3;
|
|
@@ -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
|
}
|