@colijnit/sharedcomponents 260.1.3 → 260.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/{103.16299d7a4742c74e622f.js → 729.7933323f8da0a530fd0f.js} +1 -1
- package/bundles/colijnit-sharedcomponents.umd.js +57 -11
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/task-creator/task-creator.component.js +108 -74
- package/esm2015/lib/components/task-creator/task-creator.module.js +2 -2
- package/fesm2015/colijnit-sharedcomponents.js +107 -73
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/index.html +2 -2
- package/lib/components/task-creator/task-creator.component.d.ts +11 -0
- package/{main.0fede440659af08dfbbf.js → main.05f04e77b1b4468bd751.js} +1 -1
- package/package.json +2 -2
- package/runtime.dfb2da895094a2c6c0f4.js +1 -0
- package/styles.3f618234e2ebfcaf5caa.css +1 -0
- package/runtime.275b78aac2b14b7fa6ad.js +0 -1
- package/styles.e8050dd6bc2e98376c40.css +0 -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.3f618234e2ebfcaf5caa.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.3f618234e2ebfcaf5caa.css"></noscript></head>
|
|
8
8
|
<body>
|
|
9
9
|
<app-root></app-root>
|
|
10
|
-
<script src="runtime.
|
|
10
|
+
<script src="runtime.dfb2da895094a2c6c0f4.js" defer></script><script src="polyfills.907fe9d1887c5de17993.js" defer></script><script src="main.05f04e77b1b4468bd751.js" defer></script>
|
|
11
11
|
|
|
12
12
|
</body></html>
|
|
@@ -27,6 +27,10 @@ export declare class TaskCreatorComponent implements OnInit, ScreenConfigAdapter
|
|
|
27
27
|
remarkAndWorkKey: string;
|
|
28
28
|
taskKey: string;
|
|
29
29
|
workflowCategoryType: WorkflowCategoryType;
|
|
30
|
+
set allowRemarkCreation(allow: boolean);
|
|
31
|
+
set allowWorkCreation(allow: boolean);
|
|
32
|
+
set allowTaskCreation(allow: boolean);
|
|
33
|
+
allowEmailing: boolean;
|
|
30
34
|
activityCreated: EventEmitter<void>;
|
|
31
35
|
showClass(): boolean;
|
|
32
36
|
objectConfigName: string;
|
|
@@ -38,6 +42,9 @@ export declare class TaskCreatorComponent implements OnInit, ScreenConfigAdapter
|
|
|
38
42
|
decimals: number;
|
|
39
43
|
redErrorBackground: boolean;
|
|
40
44
|
optionCollection: IconListItem[];
|
|
45
|
+
remarkListItem: IconListItem;
|
|
46
|
+
workListItem: IconListItem;
|
|
47
|
+
taskListItem: IconListItem;
|
|
41
48
|
showFilesDialog: boolean;
|
|
42
49
|
documents: CoDocument[];
|
|
43
50
|
oldDocuments: CoDocument[];
|
|
@@ -54,8 +61,12 @@ export declare class TaskCreatorComponent implements OnInit, ScreenConfigAdapter
|
|
|
54
61
|
workDescription: string;
|
|
55
62
|
taskName: string;
|
|
56
63
|
taskDescription: string;
|
|
64
|
+
private _allowRemarkCreation;
|
|
65
|
+
private _allowWorkCreation;
|
|
66
|
+
private _allowTaskCreation;
|
|
57
67
|
constructor(iconService: IconCacheService, dictionaryService: SharedComponentsDictionaryService, sharedService: SharedService, _dialogService: CoreDialogService, _formMasterService: FormMasterService);
|
|
58
68
|
ngOnInit(): Promise<void>;
|
|
69
|
+
setupOptionCollection(): void;
|
|
59
70
|
itemSelected(item: IconListItem): void;
|
|
60
71
|
openAttachmentDialog(): void;
|
|
61
72
|
attachmentDialogClosed(): void;
|