@colijnit/sharedcomponents 255.1.2 → 255.1.4
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 +0 -3
- package/bundles/colijnit-sharedcomponents.umd.js +21 -8
- 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 +10 -1
- package/esm2015/lib/components/file-upload-popup/file-upload-popup.component.js +2 -2
- package/esm2015/lib/components/task-creator/task-creator.component.js +13 -8
- package/fesm2015/colijnit-sharedcomponents.js +21 -7
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/index.html +1 -1
- package/lib/components/activity-list/activity-list.component.d.ts +1 -0
- package/lib/components/task-creator/task-creator.component.d.ts +3 -2
- package/{main.1563225a677bc57172bb.js → main.80c54da58e4b053fdd1e.js} +1 -1
- package/package.json +2 -2
package/index.html
CHANGED
|
@@ -7,6 +7,6 @@
|
|
|
7
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.2f5ba4f7c6fe9f5b1c3f.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.2f5ba4f7c6fe9f5b1c3f.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.80c54da58e4b053fdd1e.js" defer></script>
|
|
11
11
|
|
|
12
12
|
</body></html>
|
|
@@ -32,6 +32,7 @@ export declare class ActivityListComponent implements OnInit {
|
|
|
32
32
|
getActivityIcon(activity: Activity): Icon;
|
|
33
33
|
showTriggers(activity: Activity): boolean;
|
|
34
34
|
showAttachments(activity: Activity): boolean;
|
|
35
|
+
showEmailHistory(activity: Activity): boolean;
|
|
35
36
|
showWorkedTime(activity: Activity): boolean;
|
|
36
37
|
getWorkedTime(activity: Activity): number;
|
|
37
38
|
openActivityPopup(activity: Activity): void;
|
|
@@ -10,7 +10,7 @@ import { WorkflowCategoryType } from "@colijnit/mainapi/build/enum/workflow-cate
|
|
|
10
10
|
import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
|
|
11
11
|
import { activityEmailRequestData } from "@colijnit/mainapi/build/model/activity-email-request-data";
|
|
12
12
|
import { SharedService } from "../../service/shared.service";
|
|
13
|
-
import { CoreDialogService, FormComponent } from "@colijnit/corecomponents_v12";
|
|
13
|
+
import { CoreDialogService, FormComponent, FormMasterService } from "@colijnit/corecomponents_v12";
|
|
14
14
|
import { IconListItem } from "@colijnit/corecomponents_v12/lib/model/icon-list-item";
|
|
15
15
|
import { DictionaryService } from "../../service/dictionary.service";
|
|
16
16
|
export declare class TaskCreatorComponent implements OnInit {
|
|
@@ -18,6 +18,7 @@ export declare class TaskCreatorComponent implements OnInit {
|
|
|
18
18
|
dictionaryService: DictionaryService;
|
|
19
19
|
sharedService: SharedService;
|
|
20
20
|
private _dialogService;
|
|
21
|
+
private _formMasterService;
|
|
21
22
|
readonly icons: typeof Icon;
|
|
22
23
|
createForm: FormComponent;
|
|
23
24
|
author: RelationSmallObject;
|
|
@@ -44,7 +45,7 @@ export declare class TaskCreatorComponent implements OnInit {
|
|
|
44
45
|
workDescription: string;
|
|
45
46
|
taskName: string;
|
|
46
47
|
taskDescription: string;
|
|
47
|
-
constructor(iconService: IconCacheService, dictionaryService: DictionaryService, sharedService: SharedService, _dialogService: CoreDialogService);
|
|
48
|
+
constructor(iconService: IconCacheService, dictionaryService: DictionaryService, sharedService: SharedService, _dialogService: CoreDialogService, _formMasterService: FormMasterService);
|
|
48
49
|
ngOnInit(): Promise<void>;
|
|
49
50
|
itemSelected(item: IconListItem): void;
|
|
50
51
|
addedDocument(docs: CoDocument[]): Promise<void>;
|