pdfnative 1.0.1 → 1.0.2
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/README.md +3 -1
- package/package.json +16 -2
package/README.md
CHANGED
|
@@ -192,7 +192,9 @@ const pdf = buildPDFBytes({
|
|
|
192
192
|
| Hebrew | `he` | Noto Sans Hebrew | Right-to-left script |
|
|
193
193
|
| Russian (Cyrillic) | `ru` | Noto Sans | Cyrillic alphabet |
|
|
194
194
|
| Georgian | `ka` | Noto Sans Georgian | Mkhedruli script |
|
|
195
|
-
| Armenian | `hy` | Noto Sans Armenian | Armenian alphabet
|
|
195
|
+
| Armenian | `hy` | Noto Sans Armenian | Armenian alphabet |
|
|
196
|
+
| Bengali | `bn` | Noto Sans Bengali | GSUB conjuncts + GPOS marks |
|
|
197
|
+
| Tamil | `ta` | Noto Sans Tamil | GSUB ligatures + split vowels |
|
|
196
198
|
|
|
197
199
|
## Multi-Font (Mixed Scripts)
|
|
198
200
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pdfnative",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Zero-dependency native PDF generation library
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Zero-dependency native PDF generation library. 16 scripts (Arabic, Hebrew, Thai, CJK, Devanagari, Bengali, Tamil, Cyrillic, Greek, Georgian, Armenian, Latin), BiDi, PDF/A-1b/2b/3b, AES encryption, digital signatures, AcroForm, barcodes, SVG. Pure JavaScript ISO 32000-1 implementation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -65,9 +65,23 @@
|
|
|
65
65
|
"unicode",
|
|
66
66
|
"thai",
|
|
67
67
|
"cjk",
|
|
68
|
+
"arabic",
|
|
69
|
+
"hebrew",
|
|
70
|
+
"bengali",
|
|
71
|
+
"tamil",
|
|
72
|
+
"devanagari",
|
|
73
|
+
"bidi",
|
|
68
74
|
"multi-font",
|
|
69
75
|
"opentype",
|
|
70
76
|
"iso-32000",
|
|
77
|
+
"pdf-a",
|
|
78
|
+
"tagged-pdf",
|
|
79
|
+
"accessibility",
|
|
80
|
+
"encryption",
|
|
81
|
+
"digital-signature",
|
|
82
|
+
"acroform",
|
|
83
|
+
"barcode",
|
|
84
|
+
"qr-code",
|
|
71
85
|
"web-worker",
|
|
72
86
|
"streaming",
|
|
73
87
|
"typescript"
|