shareneus 1.7.26 → 1.7.29
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/dist/accounting/payment-receive/payment-receipt-pdf/receipt-pdf.service.d.ts +4 -0
- package/dist/shared/header-footer-section/pdf-header-footer.section.d.ts +1 -0
- package/dist/shared/header-footer-section/pdf-header-footer.section.js +1 -1
- package/package.json +1 -1
- package/src/shared/header-footer-section/pdf-header-footer.section.ts +1 -1
|
@@ -47,6 +47,7 @@ export declare function CreateReceiptPDFService(DocumentData?: any, PrintConfigD
|
|
|
47
47
|
width: number;
|
|
48
48
|
image: string;
|
|
49
49
|
height: number;
|
|
50
|
+
margin: number[];
|
|
50
51
|
} | {
|
|
51
52
|
width: string;
|
|
52
53
|
marginLeft: number;
|
|
@@ -308,6 +309,7 @@ export declare function DownloadReceiptPDFService(filename?: string, DocumentDat
|
|
|
308
309
|
width: number;
|
|
309
310
|
image: string;
|
|
310
311
|
height: number;
|
|
312
|
+
margin: number[];
|
|
311
313
|
} | {
|
|
312
314
|
width: string;
|
|
313
315
|
marginLeft: number;
|
|
@@ -569,6 +571,7 @@ export declare function GetReceiptPdfDataUrl(DocumentData?: any, PrintConfigData
|
|
|
569
571
|
width: number;
|
|
570
572
|
image: string;
|
|
571
573
|
height: number;
|
|
574
|
+
margin: number[];
|
|
572
575
|
} | {
|
|
573
576
|
width: string;
|
|
574
577
|
marginLeft: number;
|
|
@@ -830,6 +833,7 @@ export declare function buildPdfDocDefinition(DocumentData?: any, PrintConfigDat
|
|
|
830
833
|
width: number;
|
|
831
834
|
image: string;
|
|
832
835
|
height: number;
|
|
836
|
+
margin: number[];
|
|
833
837
|
} | {
|
|
834
838
|
width: string;
|
|
835
839
|
marginLeft: number;
|
package/package.json
CHANGED