@colijnit/sharedcomponents 257.1.2 → 257.1.3

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.
@@ -77,7 +77,8 @@
77
77
  }
78
78
  .icon-indicators {
79
79
  position: absolute;
80
- right: 10px;
80
+ right: -10px;
81
+ bottom: -10px;
81
82
  display: flex;
82
83
  flex-direction: row;
83
84
  align-items: center;
@@ -5,18 +5,18 @@
5
5
  display: flex;
6
6
  flex-direction: column;
7
7
  row-gap: 5px;
8
- padding-left: 0;
8
+ padding-left: 40px;
9
9
  .recipients-line {
10
10
  width: 100%;
11
11
  display: flex;
12
12
  flex-direction: row;
13
13
  gap: 60px;
14
14
  border-bottom: 4px solid #f5f5fc;
15
- .recipients-bcc, recipients-add {
15
+ .recipients-bcc, .recipients-add {
16
16
  display: flex;
17
17
  gap: 5px;
18
18
  align-items: center;
19
- width: 80px;
19
+ min-width: 80px;
20
20
  label {
21
21
  font-size: 12px;
22
22
  }
@@ -39,6 +39,19 @@
39
39
  }
40
40
  .co-input-text {
41
41
  width: 100%;
42
+ position: unset;
43
+ .input-wrapper {
44
+ position: unset;
45
+ label {
46
+ left: 0;
47
+ top: 50%;
48
+ transform: translateY(-50%);
49
+ }
50
+ input {
51
+ padding: 0 0 0 10px;
52
+ align-self: center;
53
+ }
54
+ }
42
55
  }
43
56
  .co-list-of-values {
44
57
  min-width: 150px;
@@ -16,6 +16,9 @@
16
16
  position: absolute;
17
17
  left: 10px;
18
18
  top: 8px;
19
+ max-width: 50%;
20
+ max-height: 30px;
21
+ overflow: auto;
19
22
  .chips {
20
23
  font-family: $cc-co-role-email-selector-chip-font-family;
21
24
  font-size: $cc-co-role-email-selector-chip-font-size;
@@ -1,14 +1,14 @@
1
- $cc-co-role-email-selector-chips-padding: 0 !default;
1
+ $cc-co-role-email-selector-chips-padding: 0 0 0 30px !default;
2
2
  $cc-co-role-email-selector-chips-column-gap: 5px !default;
3
3
  $cc-co-role-email-selector-chips-row-gap: 2px !default;
4
4
 
5
5
  $cc-co-role-email-selector-chip-font-family: $cc-font-family !default;
6
- $cc-co-role-email-selector-chip-font-size: $cc-font-size-small !default;
6
+ $cc-co-role-email-selector-chip-font-size: 9px !default;
7
7
  $cc-co-role-email-selector-chip-font-color: #000 !default;
8
8
 
9
9
  $cc-co-role-email-selector-chip-background-color: #f5f5fc !default;
10
10
  $cc-co-role-email-selector-chip-border-radius: 5px !default;
11
- $cc-co-role-email-selector-chip-padding: 2px 7px !default;
11
+ $cc-co-role-email-selector-chip-padding: 0px 5px !default;
12
12
 
13
13
 
14
14
  $cc-co-role-email-selector-chip-delete-icon-color: $cc-color-icons-dark !default;
@@ -10,6 +10,7 @@ export declare class PrinterSelectionComponent implements OnInit {
10
10
  private _service;
11
11
  readonly icons: typeof Icon;
12
12
  printers: Printer[];
13
+ defaultPrinter: Printer;
13
14
  showClass(): boolean;
14
15
  showPrinterList: boolean;
15
16
  constructor(sendMethodService: SendMethodService, iconService: IconCacheService, _service: SharedService);
@@ -10,6 +10,7 @@ export declare class SendMethodPrinterComponent {
10
10
  iconCacheService: IconCacheService;
11
11
  showClass(): boolean;
12
12
  printerList: Printer[];
13
+ defaultPrinter: Printer;
13
14
  layouts: ReportLayoutSelectionPrint[];
14
15
  isPrinterLayoutsEnabled: boolean;
15
16
  isAdditionalDocEnabled: boolean;
@@ -34,6 +34,7 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
34
34
  reportingDocumentPdfRequest: ReportingDocumentPdfBaseRequest;
35
35
  emailLayouts: ReportLayoutSelectionEmail[];
36
36
  printLayouts: ReportLayoutSelectionPrint[];
37
+ defaultPrinter: Printer;
37
38
  headerTitle: string;
38
39
  emailAddresses: string[];
39
40
  defaultSendMethod: string;
@@ -6,7 +6,7 @@
6
6
  display: block;
7
7
  }
8
8
  .task-creator-wrapper {
9
- margin-left: 40px;
9
+ margin-left: 0;
10
10
  box-shadow: 0 1px 4px 0 #8083a385;
11
11
  border-radius: 5px;
12
12
  }
@@ -35,6 +35,8 @@
35
35
  height: fit-content;
36
36
  box-shadow: 0 2px 2px 0 #0000001A;
37
37
  border-radius: 3px;
38
+ background: #ffffff;
39
+ z-index: 2;
38
40
  .icon-item {
39
41
  display: flex;
40
42
  align-items: center;