@colijnit/sharedcomponents 257.1.4 → 257.1.5

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.
@@ -10,9 +10,10 @@ export declare class PrinterSelectionComponent implements OnInit {
10
10
  private _service;
11
11
  readonly icons: typeof Icon;
12
12
  printers: Printer[];
13
- defaultPrinter: Printer;
13
+ set defaultPrinterName(printerName: string);
14
14
  showClass(): boolean;
15
15
  showPrinterList: boolean;
16
+ private _defaultPrinterName;
16
17
  constructor(sendMethodService: SendMethodService, iconService: IconCacheService, _service: SharedService);
17
18
  ngOnInit(): void;
18
19
  handlePrinterClicked(printer: Printer): void;
@@ -10,7 +10,7 @@ export declare class SendMethodPrinterComponent {
10
10
  iconCacheService: IconCacheService;
11
11
  showClass(): boolean;
12
12
  printerList: Printer[];
13
- defaultPrinter: Printer;
13
+ defaultPrinterName: string;
14
14
  layouts: ReportLayoutSelectionPrint[];
15
15
  isPrinterLayoutsEnabled: boolean;
16
16
  isAdditionalDocEnabled: boolean;
@@ -19,6 +19,7 @@ export declare class SendMethodPrinterComponent {
19
19
  additionalFileName: string;
20
20
  additionalFileChangeEvent: EventEmitter<CoDocument>;
21
21
  showFilePreview: EventEmitter<void>;
22
+ private _defaultPrinter;
22
23
  protected readonly icons: typeof Icon;
23
24
  constructor(sendMethodService: SendMethodService, iconCacheService: IconCacheService);
24
25
  handleDefaultPrinterUserChange(checked: boolean): void;
@@ -34,7 +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
+ defaultPrinterName: string;
38
38
  headerTitle: string;
39
39
  emailAddresses: string[];
40
40
  defaultSendMethod: string;