@colijnit/sharedcomponents 257.1.3 → 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.
- package/bundles/colijnit-sharedcomponents.umd.js +21 -11
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/send-method-dialog/components/printer-selection/printer-selection.component.js +10 -4
- package/esm2015/lib/components/send-method-dialog/components/send-method-email/send-method-email.component.js +2 -1
- package/esm2015/lib/components/send-method-dialog/components/send-method-pdf/send-method-pdf.component.js +2 -1
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.js +4 -3
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +72 -72
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/fesm2015/colijnit-sharedcomponents.js +87 -78
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/send-method-dialog/components/printer-selection/printer-selection.component.d.ts +2 -1
- package/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.d.ts +2 -1
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +1 -1
- package/lib/res/dictionary/dictionaries.d.ts +8 -0
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
37
|
+
defaultPrinterName: string;
|
|
38
38
|
headerTitle: string;
|
|
39
39
|
emailAddresses: string[];
|
|
40
40
|
defaultSendMethod: string;
|
|
@@ -6465,6 +6465,7 @@ export declare class Dictionaries {
|
|
|
6465
6465
|
SERVICE_HISTORY: string;
|
|
6466
6466
|
SERVICE_INFO: string;
|
|
6467
6467
|
SHOW_ACTIVE_ADDRESSES_ONLY: string;
|
|
6468
|
+
ABOUT_ORDER: string;
|
|
6468
6469
|
SHOW_ACTIVE_ONLY: string;
|
|
6469
6470
|
SHOW_ACTIVE_PERSONS_ONLY: string;
|
|
6470
6471
|
SHOW_ACTIVITIES_FOR_GROUP: string;
|
|
@@ -7731,6 +7732,9 @@ export declare class Dictionaries {
|
|
|
7731
7732
|
NO_REPORT_DATA: string;
|
|
7732
7733
|
NO_RESULTS: string;
|
|
7733
7734
|
NO_RESULTS_FOUND: string;
|
|
7735
|
+
NO_SEARCH_RESULTS_HEADER: string;
|
|
7736
|
+
NO_SEARCH_RESULTS_TEXT: string;
|
|
7737
|
+
NO_SEARCH_RESULTS_CONTENT: string;
|
|
7734
7738
|
NO_RETOUR_POSSIBLE: string;
|
|
7735
7739
|
NO_RETURNS: string;
|
|
7736
7740
|
NO_RETURN_WAREHOUSE: string;
|
|
@@ -10888,6 +10892,7 @@ export declare class Dictionaries {
|
|
|
10888
10892
|
ABILITY_TO_WORK: string;
|
|
10889
10893
|
ABOUT_DATA: string;
|
|
10890
10894
|
ABOUT_PREFIX: string;
|
|
10895
|
+
ABOUT_ORDER: string;
|
|
10891
10896
|
ABROAD_PERFORMANCE: string;
|
|
10892
10897
|
ABSENCE: string;
|
|
10893
10898
|
ABSENCEFILE: string;
|
|
@@ -15711,6 +15716,9 @@ export declare class Dictionaries {
|
|
|
15711
15716
|
NO_REPORT_DATA: string;
|
|
15712
15717
|
NO_RESULTS: string;
|
|
15713
15718
|
NO_RESULTS_FOUND: string;
|
|
15719
|
+
NO_SEARCH_RESULTS_HEADER: string;
|
|
15720
|
+
NO_SEARCH_RESULTS_TEXT: string;
|
|
15721
|
+
NO_SEARCH_RESULTS_CONTENT: string;
|
|
15714
15722
|
NO_RETOUR_POSSIBLE: string;
|
|
15715
15723
|
NO_RETURNS: string;
|
|
15716
15724
|
NO_RETURN_WAREHOUSE: string;
|