@chialab/pdfjs-lib 1.0.0-alpha.34 → 1.0.0-alpha.35
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/browser/index.js +1 -0
- package/dist/lib/TextLayer.d.ts +1 -0
- package/dist/node/index.js +1 -0
- package/package.json +1 -1
package/dist/browser/index.js
CHANGED
|
@@ -42430,6 +42430,7 @@ async function createTextLayerV2(page, {
|
|
|
42430
42430
|
}
|
|
42431
42431
|
chunks.push({
|
|
42432
42432
|
text,
|
|
42433
|
+
width: textWidth,
|
|
42433
42434
|
margin: margin * finalFontSize,
|
|
42434
42435
|
scale: graphicWidth / textWidth
|
|
42435
42436
|
});
|
package/dist/lib/TextLayer.d.ts
CHANGED
package/dist/node/index.js
CHANGED
|
@@ -41072,6 +41072,7 @@ async function createTextLayerV2(page, {
|
|
|
41072
41072
|
}
|
|
41073
41073
|
chunks.push({
|
|
41074
41074
|
text,
|
|
41075
|
+
width: textWidth,
|
|
41075
41076
|
margin: margin * finalFontSize,
|
|
41076
41077
|
scale: graphicWidth / textWidth
|
|
41077
41078
|
});
|
package/package.json
CHANGED