@colijnit/sharedcomponents 258.1.5 → 258.1.7
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 +43 -38
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/custom-pdf/custom-pdf-dialog.component.js +20 -23
- package/esm2015/lib/components/send-method-dialog/components/layout-selection/layout-selection.component.js +2 -3
- package/esm2015/lib/components/send-method-dialog/components/printer-selection/printer-selection.component.js +11 -4
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.js +3 -3
- package/esm2015/lib/components/send-method-dialog/components/send-method-purchase/send-method-purchase.component.js +77 -77
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +4 -5
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/fesm2015/colijnit-sharedcomponents.js +113 -111
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/custom-pdf/custom-pdf-dialog.component.d.ts +7 -4
- 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 +1 -1
- package/lib/components/send-method-dialog/components/send-method-purchase/send-method-purchase.component.d.ts +1 -1
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +1 -1
- package/lib/res/dictionary/dictionaries.d.ts +19 -0
- package/package.json +1 -1
|
@@ -16,8 +16,12 @@ export declare class CustomPdfDialogComponent implements OnInit, AfterViewInit {
|
|
|
16
16
|
additionalFileChangeEvent: EventEmitter<CoDocument>;
|
|
17
17
|
canvas: HTMLCanvasElement;
|
|
18
18
|
context: CanvasRenderingContext2D;
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
signaturePads: {
|
|
20
|
+
[key: string]: SignaturePad;
|
|
21
|
+
};
|
|
22
|
+
signatureCanvases: {
|
|
23
|
+
[key: string]: ElementRef;
|
|
24
|
+
};
|
|
21
25
|
fileBody: any;
|
|
22
26
|
fileStyle: string;
|
|
23
27
|
constructor(iconCacheService: IconCacheService, _sanitizer: DomSanitizer);
|
|
@@ -28,7 +32,6 @@ export declare class CustomPdfDialogComponent implements OnInit, AfterViewInit {
|
|
|
28
32
|
extractBodyContents(html: string): string[];
|
|
29
33
|
handleSaveClicked(): Promise<void>;
|
|
30
34
|
dataURItoBlob(dataURI: any): File;
|
|
31
|
-
handleClear(
|
|
32
|
-
private _initCanvas;
|
|
35
|
+
handleClear(): void;
|
|
33
36
|
private _resizeSignatureCanvas;
|
|
34
37
|
}
|
|
@@ -9,8 +9,9 @@ export declare class PrinterSelectionComponent implements OnInit {
|
|
|
9
9
|
iconService: IconCacheService;
|
|
10
10
|
private _service;
|
|
11
11
|
readonly icons: typeof Icon;
|
|
12
|
+
private _defaultPrinter;
|
|
12
13
|
printers: Printer[];
|
|
13
|
-
|
|
14
|
+
set defaultPrinter(printer: Printer);
|
|
14
15
|
showClass(): boolean;
|
|
15
16
|
showPrinterList: boolean;
|
|
16
17
|
printerModel: Printer;
|
|
@@ -10,7 +10,7 @@ export declare class SendMethodPrinterComponent {
|
|
|
10
10
|
iconCacheService: IconCacheService;
|
|
11
11
|
showClass(): boolean;
|
|
12
12
|
printerList: Printer[];
|
|
13
|
-
|
|
13
|
+
defaultPrinter: Printer;
|
|
14
14
|
layouts: ReportLayoutSelectionPrint[];
|
|
15
15
|
isPrinterLayoutsEnabled: boolean;
|
|
16
16
|
isAdditionalDocEnabled: boolean;
|
|
@@ -9,9 +9,9 @@ interface OverruleOptions {
|
|
|
9
9
|
}
|
|
10
10
|
export declare class SendMethodPurchaseComponent implements OnInit {
|
|
11
11
|
sendMethodService: SendMethodService;
|
|
12
|
-
defaultPrinterName: string;
|
|
13
12
|
emailLayouts: ReportLayoutSelectionEmail[];
|
|
14
13
|
printLayouts: ReportLayoutSelectionPrint[];
|
|
14
|
+
defaultPrinter: Printer;
|
|
15
15
|
printerList: Printer[];
|
|
16
16
|
pdfDoc: any;
|
|
17
17
|
emailUnsignedPossible: boolean;
|
|
@@ -32,7 +32,7 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
32
32
|
reportingDocumentPdfRequest: ReportingDocumentPdfBaseRequest;
|
|
33
33
|
emailLayouts: ReportLayoutSelectionEmail[];
|
|
34
34
|
printLayouts: ReportLayoutSelectionPrint[];
|
|
35
|
-
|
|
35
|
+
defaultPrinter: Printer;
|
|
36
36
|
headerTitle: string;
|
|
37
37
|
emailAddresses: string[];
|
|
38
38
|
defaultSendMethod: string;
|
|
@@ -3904,6 +3904,7 @@ export declare class Dictionaries {
|
|
|
3904
3904
|
INVOICE_AMOUNT_CUSTOMER: string;
|
|
3905
3905
|
INVOICE_BLOCKED: string;
|
|
3906
3906
|
INVOICE_CHECK: string;
|
|
3907
|
+
INVOICE_CHECK2: string;
|
|
3907
3908
|
INVOICE_DATA: string;
|
|
3908
3909
|
INVOICE_DATE: string;
|
|
3909
3910
|
INVOICE_FREQUENCY: string;
|
|
@@ -6462,6 +6463,7 @@ export declare class Dictionaries {
|
|
|
6462
6463
|
CANNOT_DELETE_REMOTE_ARTICLE: string;
|
|
6463
6464
|
CANNOT_DISPLAY_TEXT: string;
|
|
6464
6465
|
CANNOT_KILL_OWN_SESSION: string;
|
|
6466
|
+
CONTRA_LEDGER_ACCOUNTS: string;
|
|
6465
6467
|
SEO_TITLES: string;
|
|
6466
6468
|
SEO_URLS: string;
|
|
6467
6469
|
SEPTEMBER: string;
|
|
@@ -6712,6 +6714,11 @@ export declare class Dictionaries {
|
|
|
6712
6714
|
VAT_HOME_CUR: string;
|
|
6713
6715
|
VAT_ID: string;
|
|
6714
6716
|
VAT_KEYS: string;
|
|
6717
|
+
VAT_CODE_EXTERNAL: string;
|
|
6718
|
+
VAT_KIND: string;
|
|
6719
|
+
VAT_START_DATE: string;
|
|
6720
|
+
VAT_END_DATE: string;
|
|
6721
|
+
VAT_PERCENTAGE_HISTORY: string;
|
|
6715
6722
|
EXCEPTION_TEXT_12_4: string;
|
|
6716
6723
|
EXCEPTION_TEXT_2_1: string;
|
|
6717
6724
|
EXCEPTION_TEXT_2_2: string;
|
|
@@ -8603,6 +8610,7 @@ export declare class Dictionaries {
|
|
|
8603
8610
|
IONE_WORKABILITY: string;
|
|
8604
8611
|
IP_ADDRESS: string;
|
|
8605
8612
|
IS: string;
|
|
8613
|
+
IS_ACTIVE: string;
|
|
8606
8614
|
ISO_CODE: string;
|
|
8607
8615
|
ISSUED_BY: string;
|
|
8608
8616
|
ISSUED_IN_TRANSCTION: string;
|
|
@@ -9063,6 +9071,7 @@ export declare class Dictionaries {
|
|
|
9063
9071
|
LINE_TOTAL: string;
|
|
9064
9072
|
LINE_TOTAL_INCL_VAT: string;
|
|
9065
9073
|
LINE_TYPE: string;
|
|
9074
|
+
LINKED_ADMINISTRATIONS: string;
|
|
9066
9075
|
LINKED_ARTICLES: string;
|
|
9067
9076
|
LINKED_ARTICLE_DOUBLE: string;
|
|
9068
9077
|
LINKED_DEPARTMENTS: string;
|
|
@@ -12983,6 +12992,7 @@ export declare class Dictionaries {
|
|
|
12983
12992
|
CONTRACT_TYPE: string;
|
|
12984
12993
|
CONTRA_ACCOUNT: string;
|
|
12985
12994
|
CONTRA_LEDGERACCOUNT_DOWNPAYMENT: string;
|
|
12995
|
+
CONTRA_LEDGER_ACCOUNTS: string;
|
|
12986
12996
|
CONTRA_VAT: string;
|
|
12987
12997
|
CONTRIBUTION_EMPLOYER: string;
|
|
12988
12998
|
CONTROLLED: string;
|
|
@@ -14674,6 +14684,7 @@ export declare class Dictionaries {
|
|
|
14674
14684
|
INVOICE_AMOUNT_CUSTOMER: string;
|
|
14675
14685
|
INVOICE_BLOCKED: string;
|
|
14676
14686
|
INVOICE_CHECK: string;
|
|
14687
|
+
INVOICE_CHECK2: string;
|
|
14677
14688
|
INVOICE_DATA: string;
|
|
14678
14689
|
INVOICE_DATE: string;
|
|
14679
14690
|
INVOICE_FREQUENCY: string;
|
|
@@ -14725,6 +14736,7 @@ export declare class Dictionaries {
|
|
|
14725
14736
|
ISO_CODE: string;
|
|
14726
14737
|
ISSUED_BY: string;
|
|
14727
14738
|
ISSUED_IN_TRANSCTION: string;
|
|
14739
|
+
IS_ACTIVE: string;
|
|
14728
14740
|
IS_CONTACT_OF: string;
|
|
14729
14741
|
IS_FIXED_SCHEDULE: string;
|
|
14730
14742
|
IS_GIFTCARD: string;
|
|
@@ -14739,6 +14751,7 @@ export declare class Dictionaries {
|
|
|
14739
14751
|
IS_WEEKENDSHIFTS: string;
|
|
14740
14752
|
ITEM: string;
|
|
14741
14753
|
ITEM_ACCEPTED: string;
|
|
14754
|
+
ITEM_NOT_ACCEPTED: string;
|
|
14742
14755
|
ITEM_ACCEPTED_NOT_PROCESSED: string;
|
|
14743
14756
|
IWO: string;
|
|
14744
14757
|
JANUARY: string;
|
|
@@ -14906,6 +14919,7 @@ export declare class Dictionaries {
|
|
|
14906
14919
|
LINE_TOTAL: string;
|
|
14907
14920
|
LINE_TOTAL_INCL_VAT: string;
|
|
14908
14921
|
LINE_TYPE: string;
|
|
14922
|
+
LINKED_ADMINISTRATIONS: string;
|
|
14909
14923
|
LINKED_ARTICLES: string;
|
|
14910
14924
|
LINKED_ARTICLE_DOUBLE: string;
|
|
14911
14925
|
LINKED_DEPARTMENTS: string;
|
|
@@ -18792,6 +18806,11 @@ export declare class Dictionaries {
|
|
|
18792
18806
|
VAT_PAYMENT: string;
|
|
18793
18807
|
VAT_PERCENTAGE2: string;
|
|
18794
18808
|
VAT_PERCENTAGE: string;
|
|
18809
|
+
VAT_CODE_EXTERNAL: string;
|
|
18810
|
+
VAT_PERCENTAGE_HISTORY: string;
|
|
18811
|
+
VAT_KIND: string;
|
|
18812
|
+
VAT_START_DATE: string;
|
|
18813
|
+
VAT_END_DATE: string;
|
|
18795
18814
|
VAT_PURCHASE: string;
|
|
18796
18815
|
VAT_RECEIVABLE: string;
|
|
18797
18816
|
VAT_SALES: string;
|