@pdfme/schemas 3.1.5 → 3.2.0-dev.1

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 (146) hide show
  1. package/README.md +303 -0
  2. package/dist/cjs/__tests__/{renderUtils.test.js → utils.test.js} +38 -12
  3. package/dist/cjs/__tests__/utils.test.js.map +1 -0
  4. package/dist/cjs/src/barcodes/constants.js +2 -1
  5. package/dist/cjs/src/barcodes/constants.js.map +1 -1
  6. package/dist/cjs/src/barcodes/helper.js +1 -2
  7. package/dist/cjs/src/barcodes/helper.js.map +1 -1
  8. package/dist/cjs/src/barcodes/index.js +2 -2
  9. package/dist/cjs/src/barcodes/index.js.map +1 -1
  10. package/dist/cjs/src/barcodes/pdfRender.js +3 -3
  11. package/dist/cjs/src/barcodes/pdfRender.js.map +1 -1
  12. package/dist/cjs/src/barcodes/propPanel.js +45 -30
  13. package/dist/cjs/src/barcodes/propPanel.js.map +1 -1
  14. package/dist/cjs/src/barcodes/uiRender.js +11 -37
  15. package/dist/cjs/src/barcodes/uiRender.js.map +1 -1
  16. package/dist/cjs/src/graphics/helper.js +115 -0
  17. package/dist/cjs/src/graphics/helper.js.map +1 -0
  18. package/dist/cjs/src/graphics/image.js +179 -0
  19. package/dist/cjs/src/graphics/image.js.map +1 -0
  20. package/dist/cjs/src/graphics/svg.js +96 -0
  21. package/dist/cjs/src/graphics/svg.js.map +1 -0
  22. package/dist/cjs/src/index.js +42 -9
  23. package/dist/cjs/src/index.js.map +1 -1
  24. package/dist/cjs/src/shapes/line.js +57 -0
  25. package/dist/cjs/src/shapes/line.js.map +1 -0
  26. package/dist/cjs/src/shapes/rectAndEllipse.js +100 -0
  27. package/dist/cjs/src/shapes/rectAndEllipse.js.map +1 -0
  28. package/dist/cjs/src/text/helper.js.map +1 -1
  29. package/dist/cjs/src/text/index.js +16 -2
  30. package/dist/cjs/src/text/index.js.map +1 -1
  31. package/dist/cjs/src/text/pdfRender.js +9 -32
  32. package/dist/cjs/src/text/pdfRender.js.map +1 -1
  33. package/dist/cjs/src/text/propPanel.js +2 -2
  34. package/dist/cjs/src/text/propPanel.js.map +1 -1
  35. package/dist/cjs/src/text/uiRender.js +12 -18
  36. package/dist/cjs/src/text/uiRender.js.map +1 -1
  37. package/dist/cjs/src/utils.js +134 -0
  38. package/dist/cjs/src/utils.js.map +1 -0
  39. package/dist/esm/__tests__/{renderUtils.test.js → utils.test.js} +34 -8
  40. package/dist/esm/__tests__/utils.test.js.map +1 -0
  41. package/dist/esm/src/barcodes/constants.js +1 -0
  42. package/dist/esm/src/barcodes/constants.js.map +1 -1
  43. package/dist/esm/src/barcodes/helper.js +2 -3
  44. package/dist/esm/src/barcodes/helper.js.map +1 -1
  45. package/dist/esm/src/barcodes/index.js +2 -2
  46. package/dist/esm/src/barcodes/index.js.map +1 -1
  47. package/dist/esm/src/barcodes/pdfRender.js +2 -2
  48. package/dist/esm/src/barcodes/pdfRender.js.map +1 -1
  49. package/dist/esm/src/barcodes/propPanel.js +46 -31
  50. package/dist/esm/src/barcodes/propPanel.js.map +1 -1
  51. package/dist/esm/src/barcodes/uiRender.js +11 -37
  52. package/dist/esm/src/barcodes/uiRender.js.map +1 -1
  53. package/dist/esm/src/graphics/helper.js +111 -0
  54. package/dist/esm/src/graphics/helper.js.map +1 -0
  55. package/dist/esm/src/graphics/image.js +176 -0
  56. package/dist/esm/src/graphics/image.js.map +1 -0
  57. package/dist/esm/src/graphics/svg.js +93 -0
  58. package/dist/esm/src/graphics/svg.js.map +1 -0
  59. package/dist/esm/src/index.js +7 -4
  60. package/dist/esm/src/index.js.map +1 -1
  61. package/dist/esm/src/shapes/line.js +55 -0
  62. package/dist/esm/src/shapes/line.js.map +1 -0
  63. package/dist/esm/src/shapes/rectAndEllipse.js +97 -0
  64. package/dist/esm/src/shapes/rectAndEllipse.js.map +1 -0
  65. package/dist/esm/src/text/helper.js.map +1 -1
  66. package/dist/esm/src/text/index.js +15 -2
  67. package/dist/esm/src/text/index.js.map +1 -1
  68. package/dist/esm/src/text/pdfRender.js +6 -29
  69. package/dist/esm/src/text/pdfRender.js.map +1 -1
  70. package/dist/esm/src/text/propPanel.js +2 -2
  71. package/dist/esm/src/text/propPanel.js.map +1 -1
  72. package/dist/esm/src/text/uiRender.js +12 -18
  73. package/dist/esm/src/text/uiRender.js.map +1 -1
  74. package/dist/esm/src/utils.js +124 -0
  75. package/dist/esm/src/utils.js.map +1 -0
  76. package/dist/types/src/barcodes/constants.d.ts +1 -0
  77. package/dist/types/src/barcodes/helper.d.ts +1 -0
  78. package/dist/types/src/barcodes/index.d.ts +2 -2
  79. package/dist/types/src/barcodes/types.d.ts +1 -0
  80. package/dist/types/src/graphics/helper.d.ts +5 -0
  81. package/dist/types/src/graphics/image.d.ts +7 -0
  82. package/dist/types/src/graphics/svg.d.ts +6 -0
  83. package/dist/types/src/index.d.ts +7 -4
  84. package/dist/types/src/shapes/line.d.ts +6 -0
  85. package/dist/types/src/shapes/rectAndEllipse.d.ts +144 -0
  86. package/dist/types/src/text/index.d.ts +3 -2
  87. package/dist/types/src/text/pdfRender.d.ts +1 -1
  88. package/dist/types/src/{renderUtils.d.ts → utils.d.ts} +5 -1
  89. package/package.json +4 -3
  90. package/src/barcodes/constants.ts +2 -0
  91. package/src/barcodes/helper.ts +12 -3
  92. package/src/barcodes/index.ts +2 -2
  93. package/src/barcodes/pdfRender.ts +2 -2
  94. package/src/barcodes/propPanel.ts +50 -30
  95. package/src/barcodes/types.ts +1 -0
  96. package/src/barcodes/uiRender.ts +11 -41
  97. package/src/graphics/helper.ts +147 -0
  98. package/src/graphics/image.ts +207 -0
  99. package/src/graphics/svg.ts +98 -0
  100. package/src/index.ts +21 -4
  101. package/src/shapes/line.ts +67 -0
  102. package/src/shapes/rectAndEllipse.ts +110 -0
  103. package/src/text/helper.ts +0 -1
  104. package/src/text/index.ts +16 -2
  105. package/src/text/pdfRender.ts +6 -42
  106. package/src/text/propPanel.ts +2 -2
  107. package/src/text/uiRender.ts +14 -29
  108. package/src/utils.ts +161 -0
  109. package/dist/cjs/__tests__/renderUtils.test.js.map +0 -1
  110. package/dist/cjs/src/image/index.js +0 -8
  111. package/dist/cjs/src/image/index.js.map +0 -1
  112. package/dist/cjs/src/image/pdfRender.js +0 -20
  113. package/dist/cjs/src/image/pdfRender.js.map +0 -1
  114. package/dist/cjs/src/image/propPanel.js +0 -19
  115. package/dist/cjs/src/image/propPanel.js.map +0 -1
  116. package/dist/cjs/src/image/types.js +0 -3
  117. package/dist/cjs/src/image/types.js.map +0 -1
  118. package/dist/cjs/src/image/uiRender.js +0 -111
  119. package/dist/cjs/src/image/uiRender.js.map +0 -1
  120. package/dist/cjs/src/renderUtils.js +0 -59
  121. package/dist/cjs/src/renderUtils.js.map +0 -1
  122. package/dist/esm/__tests__/renderUtils.test.js.map +0 -1
  123. package/dist/esm/src/image/index.js +0 -6
  124. package/dist/esm/src/image/index.js.map +0 -1
  125. package/dist/esm/src/image/pdfRender.js +0 -16
  126. package/dist/esm/src/image/pdfRender.js.map +0 -1
  127. package/dist/esm/src/image/propPanel.js +0 -16
  128. package/dist/esm/src/image/propPanel.js.map +0 -1
  129. package/dist/esm/src/image/types.js +0 -2
  130. package/dist/esm/src/image/types.js.map +0 -1
  131. package/dist/esm/src/image/uiRender.js +0 -107
  132. package/dist/esm/src/image/uiRender.js.map +0 -1
  133. package/dist/esm/src/renderUtils.js +0 -53
  134. package/dist/esm/src/renderUtils.js.map +0 -1
  135. package/dist/types/src/image/index.d.ts +0 -4
  136. package/dist/types/src/image/pdfRender.d.ts +0 -3
  137. package/dist/types/src/image/propPanel.d.ts +0 -3
  138. package/dist/types/src/image/types.d.ts +0 -3
  139. package/dist/types/src/image/uiRender.d.ts +0 -3
  140. package/src/image/index.ts +0 -8
  141. package/src/image/pdfRender.ts +0 -28
  142. package/src/image/propPanel.ts +0 -19
  143. package/src/image/types.ts +0 -3
  144. package/src/image/uiRender.ts +0 -121
  145. package/src/renderUtils.ts +0 -73
  146. /package/dist/types/__tests__/{renderUtils.test.d.ts → utils.test.d.ts} +0 -0
package/README.md ADDED
@@ -0,0 +1,303 @@
1
+ # PDFME
2
+
3
+ <p>
4
+ <a href="https://github.com/pdfme/pdfme/blob/master/LICENSE.md">
5
+ <img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="pdfme is released under the MIT license." />
6
+ </a>
7
+ <a href="https://github.com/pdfme/pdfme/actions/workflows/nodejs.yml">
8
+ <img src="https://github.com/pdfme/pdfme/workflows/Unit%20Testing/badge.svg" alt="Unit Testing status" />
9
+ </a>
10
+ <a href="https://www.npmjs.com/package/@pdfme/schemas">
11
+ <img src="https://img.shields.io/npm/v/@pdfme/schemas.svg" alt="Current npm package version." />
12
+ </a>
13
+ <a href="https://npmcharts.com/compare/@pdfme/schemas?minimal=true">
14
+ <img src="https://img.shields.io/npm/dm/@pdfme/schemas.svg" alt="Downloads per month on npm." />
15
+ </a>
16
+ <a href="https://pdfme.com/docs/development-guide#contribution">
17
+ <img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs welcome!" />
18
+ </a>
19
+ <a href="https://twitter.com/intent/tweet?text=Awesome+pdf+library%21&url=https://pdfme.com">
20
+ <img src="https://img.shields.io/twitter/url/http/shields.io.svg?style=social" alt="Tweet" />
21
+ </a>
22
+ </p>
23
+
24
+ TypeScript base PDF generator and React base UI.
25
+ Open source, developed by the community, and completely free to use under the MIT license!
26
+
27
+ <p align="center">
28
+ <img src="https://raw.githubusercontent.com/pdfme/pdfme/main/website/static/img/logo.svg" width="300"/>
29
+ </p>
30
+
31
+ ## Features
32
+
33
+ | Fast PDF Generator | Easy PDF template design | Simple JSON template |
34
+ | -------------------------------------------------------------------------------------------- | ----------------------------------------------------- | -------------------------------------------------------------- |
35
+ | Works on node and browser. Use templates to generate PDF, Complex operations are not needed. | Anyone can easily create templates with the designer. | Templates are JSON data that is easy to understand and handle. |
36
+
37
+ ---
38
+
39
+ <!--
40
+ This is a copy of website/docs/getting-started.md from below.
41
+ - Replace the image path: /img/image.png -> /website/static/img/image.png
42
+ - Replace the link: / -> https://pdfme.com/
43
+ -->
44
+
45
+ ## Introduction
46
+
47
+ pdfme was created to simplify the design and generation process of a PDF. It is especially useful for the following use cases:
48
+
49
+ - Need to create a designed PDF with short code.
50
+ - Need to integrate PDF editor features into an application.
51
+ - Need to create a large number of PDFs without compromising performance
52
+
53
+ As an example, the author's service [https://labelmake.jp/](https://labelmake.jp/) can create more than 100 varieties of PDFs and generates more than 100,000 PDF files per month. Notably, the monthly server cost, utilizing Cloud Functions For Firebase, remains below $10.
54
+
55
+ ## Installation
56
+
57
+ The operating requirements should be the node environment `>=16`.
58
+ There are two packages in pdfme, generator and UI.
59
+
60
+ The package for generating PDF can be installed with the following command.
61
+
62
+ ```
63
+ npm i @pdfme/generator @pdfme/common
64
+ ```
65
+
66
+ The packages for using PDF designer, forms and viewers can be installed with the following commands.
67
+
68
+ ```
69
+ npm i @pdfme/ui @pdfme/common
70
+ ```
71
+
72
+ \*You must install `@pdfme/common` regardless of which package you use.
73
+
74
+ The following type, function and classes are available in pdfme.
75
+
76
+ `@pdfme/common`
77
+
78
+ - [Template](https://pdfme.com/docs/getting-started#template)
79
+
80
+ `@pdfme/generator`
81
+
82
+ - [generate](https://pdfme.com/docs/getting-started#generator)
83
+
84
+ `@pdfme/ui`
85
+
86
+ - [Designer](https://pdfme.com/docs/getting-started#designer)
87
+ - [Form](https://pdfme.com/docs/getting-started#form)
88
+ - [Viewer](https://pdfme.com/docs/getting-started#viewer)
89
+
90
+ If your environment uses webpack, import the necessary items as shown below.
91
+
92
+ ```ts
93
+ import type { Template } from '@pdfme/common';
94
+ import { generate } from '@pdfme/generator';
95
+ ```
96
+
97
+ ```ts
98
+ import type { Template } from '@pdfme/common';
99
+ import { Designer, Form, Viewer } from '@pdfme/ui';
100
+ ```
101
+
102
+ **All objects use `Template`, which will be briefly explained in the next section.**
103
+
104
+ ## Template
105
+
106
+ The core of pdfme library are Templates.
107
+ Template Type can be imported by both `@pdfme/generator` or `@pdfme/ui`. Templates are used everywhere.
108
+
109
+ A template can be divided into two parts: a fixed part and a variable part.
110
+ We call them basePdf and schema.
111
+ The following image is a good illustration of a template.
112
+
113
+ ![](https://raw.githubusercontent.com/pdfme/pdfme/main/website/static/img/template.png)
114
+
115
+ - **basePdf**: PDF data for the fixed part of the PDF to be generated.
116
+ - **schemas**: Definition data for the variable part of the PDF to be generated.
117
+
118
+ **basePdf** can be given a `string`(base64), `ArrayBuffer`, or `Uint8Array`.
119
+ A blank A4 PDF can be imported with `BLANK_PDF`. You can use it to check how it works.
120
+
121
+ **schemas** can only utilize text by default, but you can load images and various barcodes like QR codes as plugins from the `@pdfme/schemas` package.
122
+ Additionally, you can create your own schemas, allowing you to render types other than the ones mentioned above.
123
+ Check detail about [Custom Schemas](https://pdfme.com/docs/custom-schemas) from here
124
+
125
+ Let's take a look at some specific data.
126
+ (If you are using TypeScript, you can import the Template type.)
127
+
128
+ ### Minimal Template
129
+
130
+ ```ts
131
+ import { Template, BLANK_PDF } from '@pdfme/common';
132
+
133
+ const template: Template = {
134
+ basePdf: BLANK_PDF,
135
+ schemas: [
136
+ {
137
+ a: {
138
+ type: 'text',
139
+ position: { x: 0, y: 0 },
140
+ width: 10,
141
+ height: 10,
142
+ },
143
+ b: {
144
+ type: 'text',
145
+ position: { x: 10, y: 10 },
146
+ width: 10,
147
+ height: 10,
148
+ },
149
+ c: {
150
+ type: 'text',
151
+ position: { x: 20, y: 20 },
152
+ width: 10,
153
+ height: 10,
154
+ },
155
+ },
156
+ ],
157
+ };
158
+ ```
159
+
160
+ You can create a template from [Template Design page](https://pdfme.com/template-design). Or, if you want to integrate the template creation feature into your application, check out the [Designer section](https://pdfme.com/docs/getting-started#designer).
161
+
162
+ ## Generator
163
+
164
+ The PDF generator function, `generate`, takes 2 arguments of `template` and `inputs` for generate a PDF. It works both in Node.js and in the browser.
165
+
166
+ The code to generate a PDF file using the [template created above](https://pdfme.com/docs/getting-started#sample-template) is shown below.
167
+
168
+ ```ts
169
+ import type { Template } from '@pdfme/common';
170
+ import { generate } from '@pdfme/generator';
171
+
172
+ const template: Template = {
173
+ // skip... Check the Template section.
174
+ };
175
+ const inputs = [{ a: 'a1', b: 'b1', c: 'c1' }];
176
+
177
+ generate({ template, inputs }).then((pdf) => {
178
+ console.log(pdf);
179
+
180
+ // Browser
181
+ // const blob = new Blob([pdf.buffer], { type: 'application/pdf' });
182
+ // window.open(URL.createObjectURL(blob));
183
+
184
+ // Node.js
185
+ // fs.writeFileSync(path.join(__dirname, `test.pdf`), pdf);
186
+ });
187
+ ```
188
+
189
+ You can create a PDF file like the below.
190
+
191
+ ![](https://raw.githubusercontent.com/pdfme/pdfme/main/website/static/img/simple-pdf.png)
192
+
193
+ Also, each element in the inputs array corresponds to a page in the PDF, you can create a multi-page PDF file by providing multiple elements of inputs.
194
+
195
+ ## UI
196
+
197
+ The UI is composed of the Designer, Form, and Viewer classes.
198
+
199
+ ### Designer
200
+
201
+ The Designer allows you to edit the Template schemas, making it easy for anyone to create Template json objects.
202
+
203
+ You can design your own template from [Template Design page](https://pdfme.com/template-design), or you can integrate the designer into your application.
204
+
205
+ Let's integrate the designer using the template created above as the default template.
206
+
207
+ ```ts
208
+ import type { Template } from '@pdfme/common';
209
+ import { Designer } from '@pdfme/ui';
210
+
211
+ const domContainer = document.getElementById('container');
212
+ const template: Template = {
213
+ // skip... Check the Template section.
214
+ };
215
+
216
+ const designer = new Designer({ domContainer, template });
217
+ ```
218
+
219
+ The Designer class is instantiated as shown above, and the template designer is displayed in the `domContainer`.
220
+ You can edit the template as shown below. The operation is like Google Slides, etc., so you can use common keyboard shortcuts.
221
+
222
+ ![](https://raw.githubusercontent.com/pdfme/pdfme/main/website/static/img/designer.gif)
223
+
224
+ The designer instance can be manipulated with the following methods.
225
+
226
+ - `saveTemplate`
227
+ - `updateTemplate`
228
+ - `getTemplate`
229
+ - `onChangeTemplate`
230
+ - `onSaveTemplate`
231
+ - `destroy`
232
+
233
+ ### Form
234
+
235
+ You can use templates to create forms and PDF viewers.
236
+
237
+ The Form creates a UI for the user to enter schemas based on the template.
238
+
239
+ ```ts
240
+ import type { Template } from '@pdfme/common';
241
+ import { Form } from '@pdfme/ui';
242
+
243
+ const domContainer = document.getElementById('container');
244
+ const template: Template = {
245
+ // skip...
246
+ };
247
+ // This is initial data.
248
+ const inputs = [{ a: 'a1', b: 'b1', c: 'c1' }];
249
+
250
+ const form = new Form({ domContainer, template, inputs });
251
+ ```
252
+
253
+ ![](https://raw.githubusercontent.com/pdfme/pdfme/main/website/static/img/form.gif)
254
+
255
+ The form instance has a method `getInputs` to get the user's input.
256
+
257
+ You can generate a PDF file based on the user's input by passing the data you get from `getInputs` as inputs to generate, as shown in the code below.
258
+
259
+ ```ts
260
+ generate({ template, inputs: form.getInputs() }).then((pdf) => {
261
+ const blob = new Blob([pdf.buffer], { type: 'application/pdf' });
262
+ window.open(URL.createObjectURL(blob));
263
+ });
264
+ ```
265
+
266
+ ### Viewer
267
+
268
+ Viewing a PDF file in a mobile browser is a pain, because it doesn't display well in an iframe.
269
+
270
+ The Viewer is a byproduct of the Form development process, but it allows you to show your users a preview of the PDF file you will create.
271
+
272
+ Using the Viewer is basically the same as using the Form, except that user cannot edit it.
273
+
274
+ ```ts
275
+ import type { Template } from '@pdfme/common';
276
+ import { Viewer } from '@pdfme/ui';
277
+
278
+ const domContainer = document.getElementById('container');
279
+ const template: Template = {
280
+ // skip...
281
+ };
282
+ const inputs = [{ a: 'a1', b: 'b1', c: 'c1' }];
283
+
284
+ const viewer = new Viewer({ domContainer, template, inputs });
285
+ ```
286
+
287
+ ![](https://raw.githubusercontent.com/pdfme/pdfme/main/website/static/img/viewer.png)
288
+
289
+ ## Special Thanks
290
+
291
+ - [pdf-lib](https://pdf-lib.js.org/): Used in PDF generation.
292
+ - [fontkit](https://github.com/foliojs/fontkit): Used in font rendering.
293
+ - [PDF.js](https://mozilla.github.io/pdf.js/): Used in PDF viewing.
294
+ - [React](https://reactjs.org/): Used in building the UI.
295
+ - [form-render](https://xrender.fun/form-render): Used in building the UI.
296
+ - [antd](https://ant.design/): Used in building the UI.
297
+ - [react-moveable](https://daybrush.com/moveable/), [react-selecto](https://github.com/daybrush/selecto), [@scena/react-guides](https://daybrush.com/guides/): Used in Designer UI.
298
+ - [dnd-kit](https://github.com/clauderic/dnd-kit): Used in Designer UI.
299
+
300
+ I definitely could not have created pdfme without these libraries. I am grateful to the developers of these libraries.
301
+
302
+ If you want to contribute to pdfme, please check the [Development Guide](https://pdfme.com/docs/development-guide) page.
303
+ We look forward to your contribution!
@@ -1,13 +1,39 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const common_1 = require("@pdfme/common");
4
- const renderUtils_1 = require("../src/renderUtils");
4
+ const utils_1 = require("../src/utils");
5
+ describe('hex2RgbColor', () => {
6
+ it('should convert hex to rgb', () => {
7
+ const hex = '#000000';
8
+ const rgbValue = (0, utils_1.hex2RgbColor)(hex);
9
+ expect(rgbValue).toEqual({ red: 0, green: 0, blue: 0, type: 'RGB' });
10
+ });
11
+ it('should convert hex to rgb with a short hex', () => {
12
+ const hex = '#fff';
13
+ const rgbValue = (0, utils_1.hex2RgbColor)(hex);
14
+ expect(rgbValue).toEqual({ red: 1, green: 1, blue: 1, type: 'RGB' });
15
+ });
16
+ it('should convert hex to rgb for non-trivial color', () => {
17
+ const hex = '#33af5a';
18
+ const rgbValue = (0, utils_1.hex2RgbColor)(hex);
19
+ expect(rgbValue).toEqual({
20
+ red: 0.2,
21
+ green: 0.6862745098039216,
22
+ blue: 0.35294117647058826,
23
+ type: 'RGB',
24
+ });
25
+ });
26
+ it('should throw an error if hex is invalid', () => {
27
+ const hex = '#fffee';
28
+ expect(() => (0, utils_1.hex2RgbColor)(hex)).toThrowError('Invalid hex color value #ff');
29
+ });
30
+ });
5
31
  describe('rotatePoint', () => {
6
32
  it('should rotate one point round another by 90 degrees', () => {
7
33
  const point = { x: 5, y: 5 };
8
34
  const pivot = { x: 0, y: 0 };
9
35
  const angle = 90;
10
- const { x, y } = (0, renderUtils_1.rotatePoint)(point, pivot, angle);
36
+ const { x, y } = (0, utils_1.rotatePoint)(point, pivot, angle);
11
37
  expect(x).toEqual(-5);
12
38
  expect(y).toEqual(5);
13
39
  });
@@ -15,7 +41,7 @@ describe('rotatePoint', () => {
15
41
  const point = { x: 5, y: 5 };
16
42
  const pivot = { x: 0, y: 0 };
17
43
  const angle = 180;
18
- const { x, y } = (0, renderUtils_1.rotatePoint)(point, pivot, angle);
44
+ const { x, y } = (0, utils_1.rotatePoint)(point, pivot, angle);
19
45
  expect(x).toBeCloseTo(-5);
20
46
  expect(y).toBeCloseTo(-5);
21
47
  });
@@ -23,7 +49,7 @@ describe('rotatePoint', () => {
23
49
  const point = { x: 10, y: 10 };
24
50
  const pivot = { x: 10, y: 10 };
25
51
  const angle = 221;
26
- const { x, y } = (0, renderUtils_1.rotatePoint)(point, pivot, angle);
52
+ const { x, y } = (0, utils_1.rotatePoint)(point, pivot, angle);
27
53
  expect(x).toEqual(10);
28
54
  expect(y).toEqual(10);
29
55
  });
@@ -31,7 +57,7 @@ describe('rotatePoint', () => {
31
57
  const point = { x: 10, y: 10 };
32
58
  const pivot = { x: 5, y: 5 };
33
59
  const angle = 45;
34
- const { x, y } = (0, renderUtils_1.rotatePoint)(point, pivot, angle);
60
+ const { x, y } = (0, utils_1.rotatePoint)(point, pivot, angle);
35
61
  expect(x).toBeCloseTo(5);
36
62
  expect(y).toBeCloseTo(12.07);
37
63
  });
@@ -44,10 +70,10 @@ describe('convertForPdfLayoutProps', () => {
44
70
  height: 100,
45
71
  position: { x: 100, y: 100 },
46
72
  rotate: 0,
47
- opacity: 1
73
+ opacity: 1,
48
74
  };
49
75
  const pageHeight = 1000;
50
- const { position: { x, y }, height, width, rotate, opacity } = (0, renderUtils_1.convertForPdfLayoutProps)({ schema, pageHeight });
76
+ const { position: { x, y }, height, width, rotate, opacity, } = (0, utils_1.convertForPdfLayoutProps)({ schema, pageHeight });
51
77
  expect(opacity).toEqual(schema.opacity);
52
78
  expect(height).toEqual((0, common_1.mm2pt)(schema.height));
53
79
  expect(width).toEqual((0, common_1.mm2pt)(schema.width));
@@ -62,10 +88,10 @@ describe('convertForPdfLayoutProps', () => {
62
88
  height: 120,
63
89
  position: { x: 100, y: 100 },
64
90
  rotate: 90,
65
- opacity: 1
91
+ opacity: 1,
66
92
  };
67
93
  const pageHeight = 1000;
68
- const { position: { x, y }, height, width, rotate, opacity } = (0, renderUtils_1.convertForPdfLayoutProps)({ schema, pageHeight });
94
+ const { position: { x, y }, height, width, rotate, opacity, } = (0, utils_1.convertForPdfLayoutProps)({ schema, pageHeight });
69
95
  expect(opacity).toBeCloseTo(1);
70
96
  expect((0, common_1.pt2mm)(width)).toBeCloseTo(50);
71
97
  expect((0, common_1.pt2mm)(height)).toBeCloseTo(120.005);
@@ -80,10 +106,10 @@ describe('convertForPdfLayoutProps', () => {
80
106
  height: 120,
81
107
  position: { x: 100, y: 100 },
82
108
  rotate: 90,
83
- opacity: 1
109
+ opacity: 1,
84
110
  };
85
111
  const pageHeight = 1000;
86
- const { position: { x, y }, height, width, rotate, opacity } = (0, renderUtils_1.convertForPdfLayoutProps)({ schema, pageHeight, applyRotateTranslate: false });
112
+ const { position: { x, y }, height, width, rotate, opacity, } = (0, utils_1.convertForPdfLayoutProps)({ schema, pageHeight, applyRotateTranslate: false });
87
113
  expect(opacity).toBeCloseTo(1);
88
114
  expect((0, common_1.pt2mm)(width)).toBeCloseTo(50);
89
115
  expect((0, common_1.pt2mm)(height)).toBeCloseTo(120.005);
@@ -92,4 +118,4 @@ describe('convertForPdfLayoutProps', () => {
92
118
  expect(rotate).toEqual({ angle: -90, type: 'degrees' });
93
119
  });
94
120
  });
95
- //# sourceMappingURL=renderUtils.test.js.map
121
+ //# sourceMappingURL=utils.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.test.js","sourceRoot":"","sources":["../../../__tests__/utils.test.ts"],"names":[],"mappings":";;AAAA,0CAAqD;AACrD,wCAAmF;AAEnF,QAAQ,CAAC,cAAc,EAAE,GAAG,EAAE;IAC5B,EAAE,CAAC,2BAA2B,EAAE,GAAG,EAAE;QACnC,MAAM,GAAG,GAAG,SAAS,CAAC;QACtB,MAAM,QAAQ,GAAG,IAAA,oBAAY,EAAC,GAAG,CAAC,CAAC;QACnC,MAAM,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC;IACvE,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,4CAA4C,EAAE,GAAG,EAAE;QACpD,MAAM,GAAG,GAAG,MAAM,CAAC;QACnB,MAAM,QAAQ,GAAG,IAAA,oBAAY,EAAC,GAAG,CAAC,CAAC;QACnC,MAAM,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC;IACvE,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,iDAAiD,EAAE,GAAG,EAAE;QACzD,MAAM,GAAG,GAAG,SAAS,CAAC;QACtB,MAAM,QAAQ,GAAG,IAAA,oBAAY,EAAC,GAAG,CAAC,CAAC;QACnC,MAAM,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC;YACvB,GAAG,EAAE,GAAG;YACR,KAAK,EAAE,kBAAkB;YACzB,IAAI,EAAE,mBAAmB;YACzB,IAAI,EAAE,KAAK;SACZ,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,yCAAyC,EAAE,GAAG,EAAE;QACjD,MAAM,GAAG,GAAG,QAAQ,CAAC;QACrB,MAAM,CAAC,GAAG,EAAE,CAAC,IAAA,oBAAY,EAAC,GAAG,CAAC,CAAC,CAAC,YAAY,CAAC,6BAA6B,CAAC,CAAC;IAC9E,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,QAAQ,CAAC,aAAa,EAAE,GAAG,EAAE;IAC3B,EAAE,CAAC,qDAAqD,EAAE,GAAG,EAAE;QAC7D,MAAM,KAAK,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;QAC7B,MAAM,KAAK,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;QAC7B,MAAM,KAAK,GAAG,EAAE,CAAC;QAEjB,MAAM,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,IAAA,mBAAW,EAAC,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;QAClD,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC;QACtB,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IACvB,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,sDAAsD,EAAE,GAAG,EAAE;QAC9D,MAAM,KAAK,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;QAC7B,MAAM,KAAK,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;QAC7B,MAAM,KAAK,GAAG,GAAG,CAAC;QAElB,MAAM,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,IAAA,mBAAW,EAAC,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;QAClD,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC;QAC1B,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC;IAC5B,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,mDAAmD,EAAE,GAAG,EAAE;QAC3D,MAAM,KAAK,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC;QAC/B,MAAM,KAAK,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC;QAC/B,MAAM,KAAK,GAAG,GAAG,CAAC;QAElB,MAAM,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,IAAA,mBAAW,EAAC,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;QAClD,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QACtB,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;IACxB,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,qDAAqD,EAAE,GAAG,EAAE;QAC7D,MAAM,KAAK,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC;QAC/B,MAAM,KAAK,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;QAC7B,MAAM,KAAK,GAAG,EAAE,CAAC;QAEjB,MAAM,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,IAAA,mBAAW,EAAC,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;QAClD,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;QACzB,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;IAC/B,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH,QAAQ,CAAC,0BAA0B,EAAE,GAAG,EAAE;IACxC,EAAE,CAAC,8CAA8C,EAAE,GAAG,EAAE;QACtD,MAAM,MAAM,GAAW;YACrB,IAAI,EAAE,OAAO;YACb,KAAK,EAAE,GAAG;YACV,MAAM,EAAE,GAAG;YACX,QAAQ,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE;YAC5B,MAAM,EAAE,CAAC;YACT,OAAO,EAAE,CAAC;SACX,CAAC;QACF,MAAM,UAAU,GAAG,IAAI,CAAC;QAExB,MAAM,EACJ,QAAQ,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,EAClB,MAAM,EACN,KAAK,EACL,MAAM,EACN,OAAO,GACR,GAAG,IAAA,gCAAwB,EAAC,EAAE,MAAM,EAAE,UAAU,EAAE,CAAC,CAAC;QAErD,MAAM,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QACxC,MAAM,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,IAAA,cAAK,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC;QAC7C,MAAM,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,IAAA,cAAK,EAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;QAC3C,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,IAAA,cAAK,EAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;QAC5C,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,GAAG,IAAA,cAAK,EAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,IAAA,cAAK,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC;QAChF,MAAM,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC,CAAC;IACxD,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,2CAA2C,EAAE,GAAG,EAAE;QACnD,MAAM,MAAM,GAAW;YACrB,IAAI,EAAE,OAAO;YACb,KAAK,EAAE,EAAE;YACT,MAAM,EAAE,GAAG;YACX,QAAQ,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE;YAC5B,MAAM,EAAE,EAAE;YACV,OAAO,EAAE,CAAC;SACX,CAAC;QACF,MAAM,UAAU,GAAG,IAAI,CAAC;QAExB,MAAM,EACJ,QAAQ,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,EAClB,MAAM,EACN,KAAK,EACL,MAAM,EACN,OAAO,GACR,GAAG,IAAA,gCAAwB,EAAC,EAAE,MAAM,EAAE,UAAU,EAAE,CAAC,CAAC;QAErD,MAAM,CAAC,OAAO,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;QAC/B,MAAM,CAAC,IAAA,cAAK,EAAC,KAAK,CAAC,CAAC,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC;QACrC,MAAM,CAAC,IAAA,cAAK,EAAC,MAAM,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;QAC3C,MAAM,CAAC,IAAA,cAAK,EAAC,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QACrC,MAAM,CAAC,IAAA,cAAK,EAAC,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;QACtC,MAAM,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC,CAAC;IAC1D,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,mCAAmC,EAAE,GAAG,EAAE;QAC3C,MAAM,MAAM,GAAW;YACrB,IAAI,EAAE,MAAM;YACZ,KAAK,EAAE,EAAE;YACT,MAAM,EAAE,GAAG;YACX,QAAQ,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE;YAC5B,MAAM,EAAE,EAAE;YACV,OAAO,EAAE,CAAC;SACX,CAAC;QACF,MAAM,UAAU,GAAG,IAAI,CAAC;QAExB,MAAM,EACJ,QAAQ,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,EAClB,MAAM,EACN,KAAK,EACL,MAAM,EACN,OAAO,GACR,GAAG,IAAA,gCAAwB,EAAC,EAAE,MAAM,EAAE,UAAU,EAAE,oBAAoB,EAAE,KAAK,EAAE,CAAC,CAAC;QAElF,MAAM,CAAC,OAAO,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;QAC/B,MAAM,CAAC,IAAA,cAAK,EAAC,KAAK,CAAC,CAAC,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC;QACrC,MAAM,CAAC,IAAA,cAAK,EAAC,MAAM,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;QAC3C,MAAM,CAAC,IAAA,cAAK,EAAC,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;QAClC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,IAAA,cAAK,EAAC,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAA,cAAK,EAAC,IAAI,CAAC,GAAG,GAAG,GAAG,GAAG,CAAC,CAAC,CAAC;QAC1E,MAAM,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC,CAAC;IAC1D,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DEFAULT_BARCODE_COLOR = exports.DEFAULT_BARCODE_BG_COLOR = exports.BARCODE_TYPES = void 0;
3
+ exports.DEFAULT_BARCODE_INCLUDETEXT = exports.DEFAULT_BARCODE_COLOR = exports.DEFAULT_BARCODE_BG_COLOR = exports.BARCODE_TYPES = void 0;
4
4
  exports.BARCODE_TYPES = [
5
5
  'qrcode',
6
6
  'japanpost',
@@ -16,4 +16,5 @@ exports.BARCODE_TYPES = [
16
16
  ];
17
17
  exports.DEFAULT_BARCODE_BG_COLOR = '#ffffff';
18
18
  exports.DEFAULT_BARCODE_COLOR = '#000000';
19
+ exports.DEFAULT_BARCODE_INCLUDETEXT = true;
19
20
  //# sourceMappingURL=constants.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../../src/barcodes/constants.ts"],"names":[],"mappings":";;;AAAa,QAAA,aAAa,GAAG;IAC3B,QAAQ;IACR,WAAW;IACX,OAAO;IACP,MAAM;IACN,QAAQ;IACR,SAAS;IACT,KAAK;IACL,OAAO;IACP,MAAM;IACN,MAAM;IACN,eAAe;CACP,CAAC;AAEE,QAAA,wBAAwB,GAAG,SAAS,CAAC;AAErC,QAAA,qBAAqB,GAAG,SAAS,CAAC"}
1
+ {"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../../src/barcodes/constants.ts"],"names":[],"mappings":";;;AAAa,QAAA,aAAa,GAAG;IAC3B,QAAQ;IACR,WAAW;IACX,OAAO;IACP,MAAM;IACN,QAAQ;IACR,SAAS;IACT,KAAK;IACL,OAAO;IACP,MAAM;IACN,MAAM;IACN,eAAe;CACP,CAAC;AAEE,QAAA,wBAAwB,GAAG,SAAS,CAAC;AAErC,QAAA,qBAAqB,GAAG,SAAS,CAAC;AAElC,QAAA,2BAA2B,GAAG,IAAI,CAAC"}
@@ -110,9 +110,8 @@ exports.barCodeType2Bcid = barCodeType2Bcid;
110
110
  const mapHexColorForBwipJsLib = (color, fallback) => color ? color.replace('#', '') : fallback ? fallback.replace('#', '') : '000000';
111
111
  exports.mapHexColorForBwipJsLib = mapHexColorForBwipJsLib;
112
112
  const createBarCode = async (arg) => {
113
- const { type, input, width, height, backgroundColor, barColor, textColor } = arg;
113
+ const { type, input, width, height, backgroundColor, barColor, textColor, includetext = constants_js_1.DEFAULT_BARCODE_INCLUDETEXT, } = arg;
114
114
  const bcid = (0, exports.barCodeType2Bcid)(type);
115
- const includetext = true;
116
115
  const scale = 5;
117
116
  const bwipjsArg = { bcid, text: input, width, height, scale, includetext };
118
117
  if (backgroundColor)
@@ -1 +1 @@
1
- {"version":3,"file":"helper.js","sourceRoot":"","sources":["../../../../src/barcodes/helper.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"helper.js","sourceRoot":"","sources":["../../../../src/barcodes/helper.ts"],"names":[],"mappings":"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"}
@@ -4,8 +4,8 @@ const pdfRender_js_1 = require("./pdfRender.js");
4
4
  const propPanel_js_1 = require("./propPanel.js");
5
5
  const uiRender_js_1 = require("./uiRender.js");
6
6
  const constants_js_1 = require("./constants.js");
7
- const schemas = constants_js_1.BARCODE_TYPES.reduce((acc, type) => Object.assign(acc, {
7
+ const barcodes = constants_js_1.BARCODE_TYPES.reduce((acc, type) => Object.assign(acc, {
8
8
  [type]: { pdf: pdfRender_js_1.pdfRender, ui: uiRender_js_1.uiRender, propPanel: (0, propPanel_js_1.getPropPanelByBarcodeType)(type) },
9
9
  }), {});
10
- exports.default = schemas;
10
+ exports.default = barcodes;
11
11
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/barcodes/index.ts"],"names":[],"mappings":";;AAAA,iDAA2C;AAC3C,iDAA2D;AAC3D,+CAAyC;AAEzC,iDAA+C;AAG/C,MAAM,OAAO,GAAG,4BAAa,CAAC,MAAM,CAClC,CAAC,GAAG,EAAE,IAAI,EAAE,EAAE,CACZ,MAAM,CAAC,MAAM,CAAC,GAAG,EAAE;IACjB,CAAC,IAAI,CAAC,EAAE,EAAE,GAAG,EAAE,wBAAS,EAAE,EAAE,EAAE,sBAAQ,EAAE,SAAS,EAAE,IAAA,wCAAyB,EAAC,IAAI,CAAC,EAAE;CACrF,CAAC,EACJ,EAAiD,CAClD,CAAC;AAEF,kBAAe,OAAO,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/barcodes/index.ts"],"names":[],"mappings":";;AAAA,iDAA2C;AAC3C,iDAA2D;AAC3D,+CAAyC;AAEzC,iDAA+C;AAG/C,MAAM,QAAQ,GAAG,4BAAa,CAAC,MAAM,CACnC,CAAC,GAAG,EAAE,IAAI,EAAE,EAAE,CACZ,MAAM,CAAC,MAAM,CAAC,GAAG,EAAE;IACjB,CAAC,IAAI,CAAC,EAAE,EAAE,GAAG,EAAE,wBAAS,EAAE,EAAE,EAAE,sBAAQ,EAAE,SAAS,EAAE,IAAA,wCAAyB,EAAC,IAAI,CAAC,EAAE;CACrF,CAAC,EACJ,EAAiD,CAClD,CAAC;AAEF,kBAAe,QAAQ,CAAC"}
@@ -1,10 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pdfRender = void 0;
4
- const renderUtils_js_1 = require("../renderUtils.js");
4
+ const utils_js_1 = require("../utils.js");
5
5
  const helper_js_1 = require("./helper.js");
6
6
  const getBarcodeCacheKey = (schema, value) => {
7
- return `${schema.type}${schema.backgroundColor}${schema.barColor}${schema.textColor}${value}`;
7
+ return `${schema.type}${schema.backgroundColor}${schema.barColor}${schema.textColor}${value}${schema.includetext}`;
8
8
  };
9
9
  const pdfRender = async (arg) => {
10
10
  const { value, schema, pdfDoc, page, _cache } = arg;
@@ -18,7 +18,7 @@ const pdfRender = async (arg) => {
18
18
  _cache.set(inputBarcodeCacheKey, image);
19
19
  }
20
20
  const pageHeight = page.getHeight();
21
- const { width, height, rotate, position: { x, y }, opacity, } = (0, renderUtils_js_1.convertForPdfLayoutProps)({ schema, pageHeight });
21
+ const { width, height, rotate, position: { x, y }, opacity, } = (0, utils_js_1.convertForPdfLayoutProps)({ schema, pageHeight });
22
22
  page.drawImage(image, { x, y, rotate, width, height, opacity });
23
23
  };
24
24
  exports.pdfRender = pdfRender;
@@ -1 +1 @@
1
- {"version":3,"file":"pdfRender.js","sourceRoot":"","sources":["../../../../src/barcodes/pdfRender.ts"],"names":[],"mappings":";;;AACA,sDAA6D;AAE7D,2CAAkE;AAElE,MAAM,kBAAkB,GAAG,CAAC,MAAqB,EAAE,KAAa,EAAE,EAAE;IAClE,OAAO,GAAG,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,eAAe,GAAG,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,SAAS,GAAG,KAAK,EAAE,CAAC;AAChG,CAAC,CAAC;AAEK,MAAM,SAAS,GAAG,KAAK,EAAE,GAAkC,EAAE,EAAE;IACpE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,GAAG,CAAC;IACpD,IAAI,CAAC,IAAA,gCAAoB,EAAC,MAAM,CAAC,IAAI,EAAE,KAAK,CAAC;QAAE,OAAO;IAEtD,MAAM,oBAAoB,GAAG,kBAAkB,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;IAC/D,IAAI,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IAC7C,IAAI,CAAC,KAAK,EAAE;QACV,MAAM,QAAQ,GAAG,MAAM,IAAA,yBAAa,EAClC,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC,CAC3D,CAAC;QACF,KAAK,GAAG,MAAM,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;QACxC,MAAM,CAAC,GAAG,CAAC,oBAAoB,EAAE,KAAK,CAAC,CAAC;KACzC;IAED,MAAM,UAAU,GAAG,IAAI,CAAC,SAAS,EAAE,CAAC;IACpC,MAAM,EACJ,KAAK,EACL,MAAM,EACN,MAAM,EACN,QAAQ,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,EAClB,OAAO,GACR,GAAG,IAAA,yCAAwB,EAAC,EAAE,MAAM,EAAE,UAAU,EAAE,CAAC,CAAC;IAErD,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,CAAC;AAClE,CAAC,CAAC;AAxBW,QAAA,SAAS,aAwBpB"}
1
+ {"version":3,"file":"pdfRender.js","sourceRoot":"","sources":["../../../../src/barcodes/pdfRender.ts"],"names":[],"mappings":";;;AACA,0CAAuD;AAEvD,2CAAkE;AAElE,MAAM,kBAAkB,GAAG,CAAC,MAAqB,EAAE,KAAa,EAAE,EAAE;IAClE,OAAO,GAAG,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC,eAAe,GAAG,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,SAAS,GAAG,KAAK,GAAG,MAAM,CAAC,WAAW,EAAE,CAAC;AACrH,CAAC,CAAC;AAEK,MAAM,SAAS,GAAG,KAAK,EAAE,GAAkC,EAAE,EAAE;IACpE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,GAAG,CAAC;IACpD,IAAI,CAAC,IAAA,gCAAoB,EAAC,MAAM,CAAC,IAAI,EAAE,KAAK,CAAC;QAAE,OAAO;IAEtD,MAAM,oBAAoB,GAAG,kBAAkB,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;IAC/D,IAAI,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IAC7C,IAAI,CAAC,KAAK,EAAE;QACV,MAAM,QAAQ,GAAG,MAAM,IAAA,yBAAa,EAClC,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC,CAC3D,CAAC;QACF,KAAK,GAAG,MAAM,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;QACxC,MAAM,CAAC,GAAG,CAAC,oBAAoB,EAAE,KAAK,CAAC,CAAC;KACzC;IAED,MAAM,UAAU,GAAG,IAAI,CAAC,SAAS,EAAE,CAAC;IACpC,MAAM,EACJ,KAAK,EACL,MAAM,EACN,MAAM,EACN,QAAQ,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,EAClB,OAAO,GACR,GAAG,IAAA,mCAAwB,EAAC,EAAE,MAAM,EAAE,UAAU,EAAE,CAAC,CAAC;IAErD,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,CAAC;AAClE,CAAC,CAAC;AAxBW,QAAA,SAAS,aAwBpB"}