shareneus 1.4.81 → 1.4.83

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.
@@ -177,7 +177,7 @@ export declare class InvoicePortraitPrintService {
177
177
  stack: {
178
178
  style: string;
179
179
  table: {
180
- widths: (string | number)[];
180
+ widths: number[];
181
181
  headerRows: number;
182
182
  body: any;
183
183
  };
@@ -370,7 +370,7 @@ export declare class SharedPDFService {
370
370
  stack: {
371
371
  style: string;
372
372
  table: {
373
- widths: (string | number)[];
373
+ widths: number[];
374
374
  headerRows: number;
375
375
  body: any;
376
376
  };
@@ -399,7 +399,7 @@ export declare class SharedPDFService {
399
399
  static AllHSNPartCGSTTaxListTable1(PartsTaxInfo: any, ShowAccParts: any, ShowIGST: any, ShowTaxColumn: any): {
400
400
  style: string;
401
401
  table: {
402
- widths: (string | number)[];
402
+ widths: number[];
403
403
  headerRows: number;
404
404
  body: any;
405
405
  };
@@ -487,7 +487,7 @@ export declare class SharedPDFService {
487
487
  stack: {
488
488
  style: string;
489
489
  table: {
490
- widths: (string | number)[];
490
+ widths: number[];
491
491
  headerRows: number;
492
492
  body: any;
493
493
  };
@@ -682,6 +682,7 @@ export declare class SharedPDFService {
682
682
  }[];
683
683
  };
684
684
  static GetInvSignatures(CName: any, isCounterSale: boolean): {
685
+ marginTop: number;
685
686
  columns: {
686
687
  stack: ({
687
688
  text: {
@@ -1353,7 +1353,7 @@ class SharedPDFService {
1353
1353
  return {
1354
1354
  style: 'tableExample',
1355
1355
  table: {
1356
- widths: [40, 'auto', 50],
1356
+ widths: [25, 60, 50],
1357
1357
  headerRows: 1,
1358
1358
  body: this.CreateHSNTaxTable1(PartsTaxInfo, ShowAccParts, ShowIGST, ShowTaxColumn)
1359
1359
  },
@@ -1364,7 +1364,7 @@ class SharedPDFService {
1364
1364
  return {
1365
1365
  style: 'tableExample',
1366
1366
  table: {
1367
- widths: [50, 65, 50, 50],
1367
+ widths: [25, 60, 40, 40],
1368
1368
  headerRows: 1,
1369
1369
  body: this.CreateHSNTaxTable1(PartsTaxInfo, ShowAccParts, ShowIGST, ShowTaxColumn)
1370
1370
  },
@@ -2256,6 +2256,7 @@ class SharedPDFService {
2256
2256
  }
2257
2257
  static GetInvSignatures(CName, isCounterSale) {
2258
2258
  return {
2259
+ marginTop: 3,
2259
2260
  columns: [{
2260
2261
  stack: [
2261
2262
  { text: this.CompanyName(CName), alignment: 'right' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shareneus",
3
- "version": "1.4.81",
3
+ "version": "1.4.83",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",