@colijnit/sharedcomponents 255.1.16 → 255.1.17

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.
Files changed (26) hide show
  1. package/bundles/colijnit-sharedcomponents.umd.js +13 -23
  2. package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
  3. package/colijnit-sharedcomponents.metadata.json +1 -1
  4. package/esm2015/lib/components/email-selector/email-selector.component.js +4 -11
  5. package/esm2015/lib/components/role-email-selector/role-email-selector.component.js +1 -4
  6. package/esm2015/lib/components/task-creator/task-creator.component.js +8 -11
  7. package/esm2015/lib/service/shared.service.js +2 -2
  8. package/fesm2015/colijnit-sharedcomponents.js +10 -21
  9. package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
  10. package/lib/components/access/style/_layout.scss +16 -14
  11. package/lib/components/activity-list-header/components/period-filter/style/_layout.scss +4 -4
  12. package/lib/components/activity-list-header/style/_layout.scss +1 -1
  13. package/lib/components/activity-overview-component/style/_layout.scss +1 -1
  14. package/lib/components/app-file-dropzone/style/_layout.scss +1 -1
  15. package/lib/components/email-selector/email-selector.component.d.ts +0 -4
  16. package/lib/components/file-upload/style/_layout.scss +2 -2
  17. package/lib/components/modify-task-form/components/activity-summary-block/style/_layout.scss +113 -100
  18. package/lib/components/modify-task-form/components/notification-summary-block/style/_layout.scss +110 -98
  19. package/lib/components/modify-task-form/components/status-summary-block/style/_layout.scss +2 -2
  20. package/lib/components/modify-task-form/components/task-details/style/_layout.scss +6 -6
  21. package/lib/components/modify-task-form/style/_layout.scss +5 -5
  22. package/lib/components/open-activity-list/components/personal-activity-overview/style/_layout.scss +2 -2
  23. package/lib/components/role-email-selector/role-email-selector.component.d.ts +0 -1
  24. package/lib/components/stock/style/_layout.scss +2 -2
  25. package/lib/service/shared.service.d.ts +1 -2
  26. package/package.json +2 -2
@@ -92,17 +92,17 @@
92
92
  }
93
93
  }
94
94
 
95
- ::ng-deep form-expand-container {
95
+ .form-expand-container {
96
96
  border: 1px solid #DCE4EA;
97
97
  }
98
98
 
99
- ::ng-deep tags {
99
+ .tags {
100
100
  display: block;
101
101
  padding: 30px;
102
102
  min-height: initial;
103
103
  }
104
104
 
105
- ::ng-deep input-notification {
105
+ .input-notification {
106
106
  padding: 15px;
107
107
  width: 100%;
108
108
  }
@@ -127,11 +127,11 @@
127
127
  }
128
128
  }
129
129
 
130
- ::ng-deep #task_modifier_popup {
130
+ #task_modifier_popup {
131
131
  .popup-buttons {
132
132
  align-self: center;
133
133
  }
134
- ::ng-deep .invoice-checkbox {
134
+ .invoice-checkbox {
135
135
  margin: 10px 0;
136
136
  }
137
137
 
@@ -1,5 +1,5 @@
1
1
  @include export-module('co-personal-activity-overview') {
2
- .co-personal-activity-overview{
2
+ .co-personal-activity-overview {
3
3
  user-select: none;
4
4
  display: block;
5
5
  background: rgba(255, 255, 255, 0);
@@ -42,7 +42,7 @@
42
42
  }
43
43
  &.overdue {
44
44
  color: red;
45
- .icon ::ng-deep [fill] {
45
+ .co-icon [fill] {
46
46
  fill: red;
47
47
  }
48
48
  }
@@ -34,5 +34,4 @@ export declare class RoleEmailSelectorComponent implements OnInit {
34
34
  addEmail(): void;
35
35
  updateModel(): void;
36
36
  removeOptionFromModel(email: string): void;
37
- clear(): void;
38
37
  }
@@ -164,8 +164,8 @@
164
164
  display: flex;
165
165
  justify-content: flex-end;
166
166
 
167
- co-list-of-values ::ng-deep {
168
- co-input-text {
167
+ .co-list-of-values {
168
+ .co-input-text {
169
169
  height: 100%;
170
170
  }
171
171
  }
@@ -25,7 +25,6 @@ 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";
29
28
  export declare class SharedService {
30
29
  protected readonly locale: LanguageCode;
31
30
  protected options: OptionsService;
@@ -61,7 +60,7 @@ export declare class SharedService {
61
60
  getRoleEmailAddressesByWorkflowCategoryAndKey(workflowCategory: string, key: string): Promise<RoleEmailaddress[]>;
62
61
  getEmailSenderByWorkflowCategoryAndKey(workflowCategory: string, key: string): Promise<string>;
63
62
  getDefaultEmailReportTemplatesForBranch(branchNr: string, reportType: ReportType): Promise<Report[]>;
64
- emailViaTemplate(template: Report, emailTo: string, emailBcc: string, reply: string, subject?: string, message?: string, attachments?: CoEmailAttachment[], parameters?: object): Promise<boolean>;
63
+ emailViaTemplate(template: Report, emailTo: string, emailBcc: string, reply: string, subject?: string, message?: string, attachments?: string[], parameters?: object): Promise<boolean>;
65
64
  private _createEmailJob;
66
65
  insertEmailHistoryForRemark(remarkId: number, history: ActivityEmailHistory): Promise<boolean>;
67
66
  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.16",
3
+ "version": "255.1.17",
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.5",
13
+ "@colijnit/mainapi": ">=255.1.4",
14
14
  "@colijnit/corecomponents_v12": ">=255.1.8",
15
15
  "@colijnit/ioneconnector": ">=255.1.1",
16
16
  "@colijnit/sharedapi": ">=1.0.20",