jspdf-utils 0.2.5 → 0.2.6

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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,9 +6,11 @@ Utilities for rendering HTML into paginated PDF output with `jsPDF` and
6
6
  ## Installation
7
7
 
8
8
  ```bash
9
- npm install jspdf-utils jspdf html2canvas-pro
9
+ npm install jspdf-utils
10
10
  ```
11
11
 
12
+ `jspdf` and `html2canvas-pro` are peer dependencies and will be installed automatically.
13
+
12
14
  ## Exported API
13
15
 
14
16
  - `generatePDF(doc, source, opts)`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jspdf-utils",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "Utility helpers for jsPDF's doc.html() renderer with automatic page breaking, table splitting, and RTL support",
5
5
  "type": "module",
6
6
  "main": "dist/html-to-pdf.js",