@colijnit/sharedcomponents 255.1.4 → 255.1.6

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/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.2f5ba4f7c6fe9f5b1c3f.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.2f5ba4f7c6fe9f5b1c3f.css"></noscript></head>
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.7699734a9d860ab3b86f.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.7699734a9d860ab3b86f.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.80c54da58e4b053fdd1e.js" defer></script>
10
+ <script src="runtime.8aac21847ed3d3829cca.js" defer></script><script src="polyfills.907fe9d1887c5de17993.js" defer></script><script src="main.2396a36c81daedb9fd1f.js" defer></script>
11
11
 
12
12
  </body></html>
@@ -10,7 +10,13 @@
10
10
  display: flex;
11
11
  flex-direction: column;
12
12
  column-gap: 5px;
13
- overflow: hidden;
13
+ .co-dialog {
14
+ .co-dialog-overlay {
15
+ min-height: auto;
16
+ height: auto;
17
+ width: auto;
18
+ }
19
+ }
14
20
  }
15
21
  .activity-wrapper {
16
22
  display: flex;
@@ -17,9 +17,54 @@
17
17
  width: 100%;
18
18
  }
19
19
  .co-list-of-icons {
20
+ position: relative;
21
+ display: block;
22
+ height: fit-content;
23
+
20
24
  .icon-item {
21
25
  display: flex;
22
26
  align-items: center;
27
+ position: relative;
28
+ &.menu-opened {
29
+ background: #f6f9fc;
30
+ }
31
+ .drop-arrow {
32
+ display: none;
33
+ }
34
+ .label {
35
+ display: none;
36
+ }
37
+ .co-icon {
38
+ padding: 2px;
39
+ }
40
+ }
41
+ & > .icon-item {
42
+ cursor: pointer;
43
+ padding: 5px;
44
+ &:after {
45
+ content: '';
46
+ width: 0;
47
+ height: 0;
48
+ border-left: 4px solid transparent;
49
+ border-top: 4px solid transparent;
50
+ border-right: 4px solid #000;
51
+ border-bottom: 4px solid #000;
52
+ position: absolute;
53
+ right: -1px;
54
+ bottom: -1px;
55
+ transform: rotate(0deg);
56
+ }
57
+ }
58
+ .dropdown-menu {
59
+ position: absolute;
60
+ top: 100%;
61
+ left: 0;
62
+ padding: 5px;
63
+ background: linear-gradient(180deg, rgba(15, 64, 130, 0.04) 3%, rgba(26, 115, 232, 0.04) 90%);
64
+ box-shadow: 0 4px 4px 0 #0000001A;
65
+ display: flex;
66
+ flex-direction: column;
67
+ gap: 5px;
23
68
  }
24
69
  }
25
70
  }
@@ -32,10 +32,13 @@ export declare class TaskCreatorComponent implements OnInit {
32
32
  optionCollection: IconListItem[];
33
33
  showFilesDialog: boolean;
34
34
  documents: CoDocument[];
35
+ oldDocuments: CoDocument[];
35
36
  showEmailDialog: boolean;
36
37
  senderAddress: string;
37
38
  emailAddresses: string[];
38
39
  bccEmailAddresses: string[];
40
+ oldEmailAddresses: string[];
41
+ oldBccEmailAddresses: string[];
39
42
  emailRequest: activityEmailRequestData;
40
43
  createdTask: Task;
41
44
  createdRemark: Remark;
@@ -48,10 +51,15 @@ export declare class TaskCreatorComponent implements OnInit {
48
51
  constructor(iconService: IconCacheService, dictionaryService: DictionaryService, sharedService: SharedService, _dialogService: CoreDialogService, _formMasterService: FormMasterService);
49
52
  ngOnInit(): Promise<void>;
50
53
  itemSelected(item: IconListItem): void;
54
+ openAttachmentDialog(): void;
55
+ attachmentDialogClosed(): void;
56
+ attachmentDialogCancelled(): void;
51
57
  addedDocument(docs: CoDocument[]): Promise<void>;
52
58
  deletedDocument(doc: CoDocument): Promise<void>;
53
- createRemarkClicked(): Promise<void>;
59
+ openEmailDialog(): void;
54
60
  emailDialogClosed(): void;
61
+ emailDialogCancelled(): void;
62
+ createRemarkClicked(): Promise<void>;
55
63
  createWorkClicked(): Promise<void>;
56
64
  createTaskClicked(): Promise<void>;
57
65
  private createRemark;
@@ -62,7 +70,6 @@ export declare class TaskCreatorComponent implements OnInit {
62
70
  private findReportType;
63
71
  private findDefault;
64
72
  private startEmailing;
65
- private registerSentEmails;
66
73
  private createEmailAddressString;
67
74
  private createEmailSubject;
68
75
  private createAttachmentsArray;