@embedpdf/models 1.0.24 → 1.0.26
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist/pdf.d.ts +31 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -789,6 +789,13 @@ var PdfZoomMode = /* @__PURE__ */ ((PdfZoomMode2) => {
|
|
|
789
789
|
PdfZoomMode2[PdfZoomMode2["FitRectangle"] = 5] = "FitRectangle";
|
|
790
790
|
return PdfZoomMode2;
|
|
791
791
|
})(PdfZoomMode || {});
|
|
792
|
+
var PdfTrappedStatus = /* @__PURE__ */ ((PdfTrappedStatus2) => {
|
|
793
|
+
PdfTrappedStatus2[PdfTrappedStatus2["NotSet"] = 0] = "NotSet";
|
|
794
|
+
PdfTrappedStatus2[PdfTrappedStatus2["True"] = 1] = "True";
|
|
795
|
+
PdfTrappedStatus2[PdfTrappedStatus2["False"] = 2] = "False";
|
|
796
|
+
PdfTrappedStatus2[PdfTrappedStatus2["Unknown"] = 3] = "Unknown";
|
|
797
|
+
return PdfTrappedStatus2;
|
|
798
|
+
})(PdfTrappedStatus || {});
|
|
792
799
|
var PdfStandardFont = /* @__PURE__ */ ((PdfStandardFont2) => {
|
|
793
800
|
PdfStandardFont2[PdfStandardFont2["Unknown"] = -1] = "Unknown";
|
|
794
801
|
PdfStandardFont2[PdfStandardFont2["Courier"] = 0] = "Courier";
|
|
@@ -1808,6 +1815,7 @@ export {
|
|
|
1808
1815
|
PdfStandardFontFamily,
|
|
1809
1816
|
PdfTaskHelper,
|
|
1810
1817
|
PdfTextAlignment,
|
|
1818
|
+
PdfTrappedStatus,
|
|
1811
1819
|
PdfUnwantedTextMarkers,
|
|
1812
1820
|
PdfUnwantedTextRegex,
|
|
1813
1821
|
PdfVerticalAlignment,
|