@colijnit/sharedcomponents 255.1.15 → 255.1.16
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 +23 -13
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/email-selector/email-selector.component.js +11 -4
- package/esm2015/lib/components/role-email-selector/role-email-selector.component.js +4 -1
- package/esm2015/lib/components/task-creator/task-creator.component.js +11 -8
- package/esm2015/lib/service/shared.service.js +2 -2
- package/fesm2015/colijnit-sharedcomponents.js +21 -10
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/email-selector/email-selector.component.d.ts +4 -0
- package/lib/components/role-email-selector/role-email-selector.component.d.ts +1 -0
- package/lib/service/shared.service.d.ts +2 -1
- package/package.json +2 -2
- package/3rdpartylicenses.txt +0 -1405
- package/favicon.ico +0 -0
- package/index.html +0 -12
- package/main.a44fb262c84ddaedcaa8.js +0 -1
- package/polyfills.907fe9d1887c5de17993.js +0 -1
- package/runtime.8aac21847ed3d3829cca.js +0 -1
- package/styles.148f8e42f62a8231d70c.css +0 -1
|
@@ -4,10 +4,13 @@ import { IconCacheService } from "../../service/icon-cache.service";
|
|
|
4
4
|
import { WorkflowCategoryType } from "@colijnit/mainapi/build/enum/workflow-category.enum";
|
|
5
5
|
import { SharedService } from "../../service/shared.service";
|
|
6
6
|
import { SafeHtml } from "@angular/platform-browser";
|
|
7
|
+
import { RoleEmailSelectorComponent } from "../role-email-selector/role-email-selector.component";
|
|
7
8
|
export declare class EmailSelectorComponent implements OnInit {
|
|
8
9
|
iconService: IconCacheService;
|
|
9
10
|
sharedService: SharedService;
|
|
10
11
|
readonly icons: typeof Icon;
|
|
12
|
+
email: RoleEmailSelectorComponent;
|
|
13
|
+
bccEmail: RoleEmailSelectorComponent;
|
|
11
14
|
set key(value: string);
|
|
12
15
|
get key(): string;
|
|
13
16
|
set workflowCategoryType(value: WorkflowCategoryType);
|
|
@@ -30,4 +33,5 @@ export declare class EmailSelectorComponent implements OnInit {
|
|
|
30
33
|
toggleBCC(): void;
|
|
31
34
|
handleEmailAddressesChanged(): void;
|
|
32
35
|
handleBccEmailAddressesChanged(): void;
|
|
36
|
+
clear(): void;
|
|
33
37
|
}
|
|
@@ -25,6 +25,7 @@ import { Remark } from "@colijnit/mainapi/build/model/remark.bo";
|
|
|
25
25
|
import { DictionaryService } from "./dictionary.service";
|
|
26
26
|
import { ActivityEmailHistory } from "@colijnit/mainapi/build/model/activity-email-history.bo";
|
|
27
27
|
import { ActivityWorkflow } from "@colijnit/mainapi/build/model/activity-workflow";
|
|
28
|
+
import { CoEmailAttachment } from "@colijnit/mainapi/build/model/co-email-attachment.bo";
|
|
28
29
|
export declare class SharedService {
|
|
29
30
|
protected readonly locale: LanguageCode;
|
|
30
31
|
protected options: OptionsService;
|
|
@@ -60,7 +61,7 @@ export declare class SharedService {
|
|
|
60
61
|
getRoleEmailAddressesByWorkflowCategoryAndKey(workflowCategory: string, key: string): Promise<RoleEmailaddress[]>;
|
|
61
62
|
getEmailSenderByWorkflowCategoryAndKey(workflowCategory: string, key: string): Promise<string>;
|
|
62
63
|
getDefaultEmailReportTemplatesForBranch(branchNr: string, reportType: ReportType): Promise<Report[]>;
|
|
63
|
-
emailViaTemplate(template: Report, emailTo: string, emailBcc: string, reply: string, subject?: string, message?: string, attachments?:
|
|
64
|
+
emailViaTemplate(template: Report, emailTo: string, emailBcc: string, reply: string, subject?: string, message?: string, attachments?: CoEmailAttachment[], parameters?: object): Promise<boolean>;
|
|
64
65
|
private _createEmailJob;
|
|
65
66
|
insertEmailHistoryForRemark(remarkId: number, history: ActivityEmailHistory): Promise<boolean>;
|
|
66
67
|
insertEmailHistoryForWork(remarkId: number, history: ActivityEmailHistory): Promise<boolean>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/sharedcomponents",
|
|
3
|
-
"version": "255.1.
|
|
3
|
+
"version": "255.1.16",
|
|
4
4
|
"private": false,
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"chart.js": "4.3.0",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"@angular/common": ">=12.2.0",
|
|
11
11
|
"@angular/core": ">=12.2.0",
|
|
12
12
|
"@colijnit/articleapi": ">=255.1.1",
|
|
13
|
-
"@colijnit/mainapi": ">=255.1.
|
|
13
|
+
"@colijnit/mainapi": ">=255.1.5",
|
|
14
14
|
"@colijnit/corecomponents_v12": ">=255.1.8",
|
|
15
15
|
"@colijnit/ioneconnector": ">=255.1.1",
|
|
16
16
|
"@colijnit/sharedapi": ">=1.0.20",
|