@angular-bootstrap/ngbootstrap 2.0.2 → 2.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-bootstrap/ngbootstrap",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "Bootstrap-friendly standalone Angular UI components, including DataGrid, pagination, typeahead, tree, splitter, stepper, chips, and drag-and-drop.",
5
5
  "author": {
6
6
  "name": "Harmeet Singh"
@@ -51,19 +51,11 @@
51
51
  "@angular/core": ">=21.0.0 <23.0.0",
52
52
  "@angular/forms": ">=21.0.0 <23.0.0",
53
53
  "chart.js": ">=4.4.0 <5.0.0",
54
- "jspdf": ">=4.2.1 <5.0.0",
55
- "jspdf-autotable": ">=5.0.0 <6.0.0",
56
54
  "rxjs": "^7.8.0"
57
55
  },
58
56
  "peerDependenciesMeta": {
59
57
  "chart.js": {
60
58
  "optional": true
61
- },
62
- "jspdf": {
63
- "optional": true
64
- },
65
- "jspdf-autotable": {
66
- "optional": true
67
59
  }
68
60
  },
69
61
  "dependencies": {
@@ -1469,7 +1469,15 @@ declare class NgbExportService {
1469
1469
  }
1470
1470
 
1471
1471
  declare class JsPdfAdapter implements PdfExportAdapter {
1472
- export({ fileName, columns, rows, options }: PdfExportPayload): Promise<void>;
1472
+ export(payload: PdfExportPayload): Promise<void>;
1473
+ private createPdf;
1474
+ private resolveMargin;
1475
+ private toTableLines;
1476
+ private contentStream;
1477
+ private chunk;
1478
+ private printable;
1479
+ private pdfText;
1480
+ private serializePdf;
1473
1481
  }
1474
1482
 
1475
1483
  declare class BrowserExcelExportAdapter implements ExcelExportAdapter {