@pdfme/generator 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/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/helper.ts +0 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pdfme/generator",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.2",
|
4
4
|
"author": "hand-dot",
|
5
5
|
"license": "MIT",
|
6
6
|
"description": "TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!",
|
package/src/helper.ts
CHANGED
@@ -383,8 +383,6 @@ const drawInputByBarcodeSchema = async (arg: {
|
|
383
383
|
Object.assign(templateSchema, { type: templateSchema.type as BarCodeType, input })
|
384
384
|
);
|
385
385
|
image = await pdfDoc.embedPng(imageBuf);
|
386
|
-
console.log('image: ', image);
|
387
|
-
console.log('imageBuf: ', imageBuf);
|
388
386
|
}
|
389
387
|
inputImageCache[inputBarcodeCacheKey] = image;
|
390
388
|
page.drawImage(image, opt);
|