@pdfme/common 2.2.0 → 3.0.0-beta.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 (54) hide show
  1. package/dist/cjs/__tests__/helper.test.js +292 -231
  2. package/dist/cjs/__tests__/helper.test.js.map +1 -1
  3. package/dist/cjs/src/constants.js +3 -15
  4. package/dist/cjs/src/constants.js.map +1 -1
  5. package/dist/cjs/src/helper.js +72 -98
  6. package/dist/cjs/src/helper.js.map +1 -1
  7. package/dist/cjs/src/index.js +7 -33
  8. package/dist/cjs/src/index.js.map +1 -1
  9. package/dist/cjs/src/schema.js +18 -67
  10. package/dist/cjs/src/schema.js.map +1 -1
  11. package/dist/cjs/src/types.js +3 -0
  12. package/dist/cjs/src/types.js.map +1 -0
  13. package/dist/esm/__tests__/helper.test.js +270 -232
  14. package/dist/esm/__tests__/helper.test.js.map +1 -1
  15. package/dist/esm/src/constants.js +2 -14
  16. package/dist/esm/src/constants.js.map +1 -1
  17. package/dist/esm/src/helper.js +68 -97
  18. package/dist/esm/src/helper.js.map +1 -1
  19. package/dist/esm/src/index.js +3 -5
  20. package/dist/esm/src/index.js.map +1 -1
  21. package/dist/esm/src/schema.js +15 -64
  22. package/dist/esm/src/schema.js.map +1 -1
  23. package/dist/esm/src/types.js +2 -0
  24. package/dist/esm/src/types.js.map +1 -0
  25. package/dist/types/src/constants.d.ts +2 -14
  26. package/dist/types/src/helper.d.ts +11 -2
  27. package/dist/types/src/index.d.ts +5 -7
  28. package/dist/types/src/schema.d.ts +715 -3383
  29. package/dist/types/src/types.d.ts +127 -0
  30. package/package.json +5 -6
  31. package/src/constants.ts +2 -16
  32. package/src/helper.ts +108 -115
  33. package/src/index.ts +28 -81
  34. package/src/schema.ts +20 -80
  35. package/src/types.ts +124 -0
  36. package/tsconfig.cjs.json +3 -2
  37. package/tsconfig.esm.json +3 -2
  38. package/dist/cjs/__tests__/font.test.js +0 -464
  39. package/dist/cjs/__tests__/font.test.js.map +0 -1
  40. package/dist/cjs/src/font.js +0 -304
  41. package/dist/cjs/src/font.js.map +0 -1
  42. package/dist/cjs/src/type.js +0 -12
  43. package/dist/cjs/src/type.js.map +0 -1
  44. package/dist/esm/__tests__/font.test.js +0 -439
  45. package/dist/esm/__tests__/font.test.js.map +0 -1
  46. package/dist/esm/src/font.js +0 -268
  47. package/dist/esm/src/font.js.map +0 -1
  48. package/dist/esm/src/type.js +0 -6
  49. package/dist/esm/src/type.js.map +0 -1
  50. package/dist/types/__tests__/font.test.d.ts +0 -1
  51. package/dist/types/src/font.d.ts +0 -34
  52. package/dist/types/src/type.d.ts +0 -78
  53. package/src/font.ts +0 -350
  54. package/src/type.ts +0 -69
@@ -1,304 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
26
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
27
- return new (P || (P = Promise))(function (resolve, reject) {
28
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
29
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
30
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
31
- step((generator = generator.apply(thisArg, _arguments || [])).next());
32
- });
33
- };
34
- Object.defineProperty(exports, "__esModule", { value: true });
35
- exports.calculateDynamicFontSize = exports.getSplittedLines = exports.getFontKitFont = exports.widthOfTextAtSize = exports.heightOfFontAtSize = exports.getFontDescentInPt = exports.getBrowserVerticalFontAdjustments = exports.checkFont = exports.getDefaultFont = exports.getFallbackFontName = void 0;
36
- const fontkit = __importStar(require("fontkit"));
37
- const type_1 = require("./type");
38
- const buffer_1 = require("buffer");
39
- const constants_1 = require("./constants");
40
- const helper_1 = require("./helper");
41
- const _1 = require(".");
42
- const getFallbackFontName = (font) => {
43
- const initial = '';
44
- const fallbackFontName = Object.entries(font).reduce((acc, cur) => {
45
- const [fontName, fontValue] = cur;
46
- return !acc && fontValue.fallback ? fontName : acc;
47
- }, initial);
48
- if (fallbackFontName === initial) {
49
- throw Error(`fallback flag is not found in font. true fallback flag must be only one.`);
50
- }
51
- return fallbackFontName;
52
- };
53
- exports.getFallbackFontName = getFallbackFontName;
54
- const getFallbackFont = (font) => {
55
- const fallbackFontName = (0, exports.getFallbackFontName)(font);
56
- return font[fallbackFontName];
57
- };
58
- const getDefaultFont = () => ({
59
- [constants_1.DEFAULT_FONT_NAME]: { data: (0, _1.b64toUint8Array)(constants_1.DEFAULT_FONT_VALUE), fallback: true },
60
- });
61
- exports.getDefaultFont = getDefaultFont;
62
- const uniq = (array) => Array.from(new Set(array));
63
- const getFontNamesInSchemas = (schemas) => uniq(schemas
64
- .map((s) => Object.values(s).map((v) => ((0, type_1.isTextSchema)(v) ? v.fontName : '')))
65
- .reduce((acc, cur) => acc.concat(cur), [])
66
- .filter(Boolean));
67
- const checkFont = (arg) => {
68
- const { font, template: { schemas }, } = arg;
69
- const fontValues = Object.values(font);
70
- const fallbackFontNum = fontValues.reduce((acc, cur) => (cur.fallback ? acc + 1 : acc), 0);
71
- if (fallbackFontNum === 0) {
72
- throw Error(`fallback flag is not found in font. true fallback flag must be only one.`);
73
- }
74
- if (fallbackFontNum > 1) {
75
- throw Error(`${fallbackFontNum} fallback flags found in font. true fallback flag must be only one.`);
76
- }
77
- const fontNamesInSchemas = getFontNamesInSchemas(schemas);
78
- const fontNames = Object.keys(font);
79
- if (fontNamesInSchemas.some((f) => !fontNames.includes(f))) {
80
- throw Error(`${fontNamesInSchemas
81
- .filter((f) => !fontNames.includes(f))
82
- .join()} of template.schemas is not found in font.`);
83
- }
84
- };
85
- exports.checkFont = checkFont;
86
- const getBrowserVerticalFontAdjustments = (fontKitFont, fontSize, lineHeight, verticalAlignment) => {
87
- const { ascent, descent, unitsPerEm } = fontKitFont;
88
- // Fonts have a designed line height that the browser renders when using `line-height: normal`
89
- const fontBaseLineHeight = (ascent - descent) / unitsPerEm;
90
- // For vertical alignment top
91
- // To achieve consistent positioning between browser and PDF, we apply the difference between
92
- // the font's actual height and the font size in pixels.
93
- // Browsers middle the font within this height, so we only need half of it to apply to the top.
94
- // This means the font renders a bit lower in the browser, but achieves PDF alignment
95
- const topAdjustment = (fontBaseLineHeight * fontSize - fontSize) / 2;
96
- if (verticalAlignment === constants_1.VERTICAL_ALIGN_TOP) {
97
- return { topAdj: (0, helper_1.pt2px)(topAdjustment), bottomAdj: 0 };
98
- }
99
- // For vertical alignment bottom and middle
100
- // When browsers render text in a non-form element (such as a <div>), some of the text may be
101
- // lowered below and outside the containing element if the line height used is less than
102
- // the base line-height of the font.
103
- // This behaviour does not happen in a <textarea> though, so we need to adjust the positioning
104
- // for consistency between editing and viewing to stop text jumping up and down.
105
- // This portion of text is half of the difference between the base line height and the used
106
- // line height. If using the same or higher line-height than the base font, then line-height
107
- // takes over in the browser and this adjustment is not needed.
108
- // Unlike the top adjustment - this is only driven by browser behaviour, not PDF alignment.
109
- let bottomAdjustment = 0;
110
- if (lineHeight < fontBaseLineHeight) {
111
- bottomAdjustment = ((fontBaseLineHeight - lineHeight) * fontSize) / 2;
112
- }
113
- return { topAdj: 0, bottomAdj: (0, helper_1.pt2px)(bottomAdjustment) };
114
- };
115
- exports.getBrowserVerticalFontAdjustments = getBrowserVerticalFontAdjustments;
116
- const getFontDescentInPt = (fontKitFont, fontSize) => {
117
- const { descent, unitsPerEm } = fontKitFont;
118
- return (descent / unitsPerEm) * fontSize;
119
- };
120
- exports.getFontDescentInPt = getFontDescentInPt;
121
- const heightOfFontAtSize = (fontKitFont, fontSize) => {
122
- const { ascent, descent, bbox, unitsPerEm } = fontKitFont;
123
- const scale = 1000 / unitsPerEm;
124
- const yTop = (ascent || bbox.maxY) * scale;
125
- const yBottom = (descent || bbox.minY) * scale;
126
- let height = yTop - yBottom;
127
- height -= Math.abs(descent * scale) || 0;
128
- return (height / 1000) * fontSize;
129
- };
130
- exports.heightOfFontAtSize = heightOfFontAtSize;
131
- const calculateCharacterSpacing = (textContent, textCharacterSpacing) => {
132
- return (textContent.length - 1) * textCharacterSpacing;
133
- };
134
- const widthOfTextAtSize = (text, fontKitFont, fontSize, characterSpacing) => {
135
- const { glyphs } = fontKitFont.layout(text);
136
- const scale = 1000 / fontKitFont.unitsPerEm;
137
- const standardWidth = glyphs.reduce((totalWidth, glyph) => totalWidth + glyph.advanceWidth * scale, 0) *
138
- (fontSize / 1000);
139
- return standardWidth + calculateCharacterSpacing(text, characterSpacing);
140
- };
141
- exports.widthOfTextAtSize = widthOfTextAtSize;
142
- const fontKitFontCache = {};
143
- const getFontKitFont = (textSchema, font) => __awaiter(void 0, void 0, void 0, function* () {
144
- const fontName = textSchema.fontName || (0, exports.getFallbackFontName)(font);
145
- if (fontKitFontCache[fontName]) {
146
- return fontKitFontCache[fontName];
147
- }
148
- const currentFont = font[fontName] || getFallbackFont(font) || (0, exports.getDefaultFont)()[constants_1.DEFAULT_FONT_NAME];
149
- let fontData = currentFont.data;
150
- if (typeof fontData === 'string') {
151
- fontData = fontData.startsWith('http') ? yield fetch(fontData).then((res) => res.arrayBuffer()) : (0, _1.b64toUint8Array)(fontData);
152
- }
153
- const fontKitFont = fontkit.create(fontData instanceof buffer_1.Buffer ? fontData : buffer_1.Buffer.from(fontData));
154
- fontKitFontCache[fontName] = fontKitFont;
155
- return fontKitFont;
156
- });
157
- exports.getFontKitFont = getFontKitFont;
158
- const isTextExceedingBoxWidth = (text, calcValues) => {
159
- const { font, fontSize, characterSpacing, boxWidthInPt } = calcValues;
160
- const textWidth = (0, exports.widthOfTextAtSize)(text, font, fontSize, characterSpacing);
161
- return textWidth > boxWidthInPt;
162
- };
163
- /**
164
- * Incrementally checks the current line for its real length
165
- * and returns the position where it exceeds the box width.
166
- * Returns `null` to indicate if textLine is shorter than the available box.
167
- */
168
- const getOverPosition = (textLine, calcValues) => {
169
- for (let i = 0; i <= textLine.length; i++) {
170
- if (isTextExceedingBoxWidth(textLine.slice(0, i + 1), calcValues)) {
171
- return i;
172
- }
173
- }
174
- return null;
175
- };
176
- /**
177
- * Gets the position of the split. Splits the exceeding line at
178
- * the last whitespace prior to it exceeding the bounding box width.
179
- */
180
- const getSplitPosition = (textLine, calcValues) => {
181
- const overPos = getOverPosition(textLine, calcValues);
182
- if (overPos === null)
183
- return textLine.length; // input line is shorter than the available space
184
- let overPosTmp = overPos;
185
- while (textLine[overPosTmp] !== ' ' && overPosTmp >= 0) {
186
- overPosTmp--;
187
- }
188
- // For very long lines with no whitespace use the original overPos
189
- return overPosTmp > 0 ? overPosTmp : overPos;
190
- };
191
- /**
192
- * Recursively splits the line at getSplitPosition.
193
- * If there is some leftover, split the rest again in the same manner.
194
- */
195
- const getSplittedLines = (textLine, calcValues) => {
196
- const splitPos = getSplitPosition(textLine, calcValues);
197
- const splittedLine = textLine.substring(0, splitPos);
198
- const rest = textLine.substring(splitPos).trimStart();
199
- if (rest === textLine) {
200
- // if we went so small that we want to split on the first char
201
- // then end recursion to avoid infinite loop
202
- return [textLine];
203
- }
204
- if (rest.length === 0) {
205
- // end recursion if there is no leftover
206
- return [splittedLine];
207
- }
208
- return [splittedLine, ...(0, exports.getSplittedLines)(rest, calcValues)];
209
- };
210
- exports.getSplittedLines = getSplittedLines;
211
- /**
212
- * If using dynamic font size, iteratively increment or decrement the
213
- * font size to fit the containing box.
214
- * Calculating space usage involves splitting lines where they exceed
215
- * the box width based on the proposed size.
216
- */
217
- const calculateDynamicFontSize = ({ textSchema, font, input, startingFontSize, }) => __awaiter(void 0, void 0, void 0, function* () {
218
- var _a;
219
- const { fontSize: schemaFontSize, dynamicFontSize: dynamicFontSizeSetting, characterSpacing: schemaCharacterSpacing, width: boxWidth, height: boxHeight, lineHeight = constants_1.DEFAULT_LINE_HEIGHT, } = textSchema;
220
- const fontSize = startingFontSize || schemaFontSize || constants_1.DEFAULT_FONT_SIZE;
221
- if (!dynamicFontSizeSetting)
222
- return fontSize;
223
- if (dynamicFontSizeSetting.max < dynamicFontSizeSetting.min)
224
- return fontSize;
225
- const characterSpacing = schemaCharacterSpacing !== null && schemaCharacterSpacing !== void 0 ? schemaCharacterSpacing : constants_1.DEFAULT_CHARACTER_SPACING;
226
- const fontKitFont = yield (0, exports.getFontKitFont)(textSchema, font);
227
- const textContentRows = input.split('\n');
228
- let dynamicFontSize = fontSize;
229
- if (dynamicFontSize < dynamicFontSizeSetting.min) {
230
- dynamicFontSize = dynamicFontSizeSetting.min;
231
- }
232
- else if (dynamicFontSize > dynamicFontSizeSetting.max) {
233
- dynamicFontSize = dynamicFontSizeSetting.max;
234
- }
235
- const dynamicFontFit = (_a = dynamicFontSizeSetting.fit) !== null && _a !== void 0 ? _a : constants_1.DEFAULT_DYNAMIC_FIT;
236
- const calculateConstraints = (size) => {
237
- let totalWidthInMm = 0;
238
- let totalHeightInMm = 0;
239
- const boxWidthInPt = (0, helper_1.mm2pt)(boxWidth);
240
- const textHeight = (0, exports.heightOfFontAtSize)(fontKitFont, size);
241
- const textHeightInMm = (0, helper_1.pt2mm)(textHeight * lineHeight);
242
- textContentRows.forEach((paragraph) => {
243
- const lines = (0, exports.getSplittedLines)(paragraph, {
244
- font: fontKitFont,
245
- fontSize: size,
246
- characterSpacing,
247
- boxWidthInPt,
248
- });
249
- lines.forEach((line) => {
250
- if (dynamicFontFit === constants_1.DYNAMIC_FIT_VERTICAL) {
251
- // For vertical fit we want to consider the width of text lines where we detect a split
252
- const textWidth = (0, exports.widthOfTextAtSize)(line, fontKitFont, size, characterSpacing);
253
- const textWidthInMm = (0, helper_1.pt2mm)(textWidth);
254
- totalWidthInMm = Math.max(totalWidthInMm, textWidthInMm);
255
- }
256
- totalHeightInMm += textHeightInMm;
257
- });
258
- if (dynamicFontFit === constants_1.DYNAMIC_FIT_HORIZONTAL) {
259
- // For horizontal fit we want to consider the line's width 'unsplit'
260
- const textWidth = (0, exports.widthOfTextAtSize)(paragraph, fontKitFont, size, characterSpacing);
261
- const textWidthInMm = (0, helper_1.pt2mm)(textWidth);
262
- totalWidthInMm = Math.max(totalWidthInMm, textWidthInMm);
263
- }
264
- });
265
- return { totalWidthInMm, totalHeightInMm };
266
- };
267
- const shouldFontGrowToFit = (totalWidthInMm, totalHeightInMm) => {
268
- if (dynamicFontSize >= dynamicFontSizeSetting.max) {
269
- return false;
270
- }
271
- if (dynamicFontFit === constants_1.DYNAMIC_FIT_HORIZONTAL) {
272
- return totalWidthInMm < boxWidth;
273
- }
274
- return totalHeightInMm < boxHeight;
275
- };
276
- const shouldFontShrinkToFit = (totalWidthInMm, totalHeightInMm) => {
277
- if (dynamicFontSize <= dynamicFontSizeSetting.min || dynamicFontSize <= 0) {
278
- return false;
279
- }
280
- return totalWidthInMm > boxWidth || totalHeightInMm > boxHeight;
281
- };
282
- let { totalWidthInMm, totalHeightInMm } = calculateConstraints(dynamicFontSize);
283
- // Attempt to increase the font size up to desired fit
284
- while (shouldFontGrowToFit(totalWidthInMm, totalHeightInMm)) {
285
- dynamicFontSize += constants_1.FONT_SIZE_ADJUSTMENT;
286
- const { totalWidthInMm: newWidth, totalHeightInMm: newHeight } = calculateConstraints(dynamicFontSize);
287
- if (newHeight < boxHeight) {
288
- totalWidthInMm = newWidth;
289
- totalHeightInMm = newHeight;
290
- }
291
- else {
292
- dynamicFontSize -= constants_1.FONT_SIZE_ADJUSTMENT;
293
- break;
294
- }
295
- }
296
- // Attempt to decrease the font size down to desired fit
297
- while (shouldFontShrinkToFit(totalWidthInMm, totalHeightInMm)) {
298
- dynamicFontSize -= constants_1.FONT_SIZE_ADJUSTMENT;
299
- ({ totalWidthInMm, totalHeightInMm } = calculateConstraints(dynamicFontSize));
300
- }
301
- return dynamicFontSize;
302
- });
303
- exports.calculateDynamicFontSize = calculateDynamicFontSize;
304
- //# sourceMappingURL=font.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"font.js","sourceRoot":"","sources":["../../../src/font.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,iDAAmC;AAEnC,iCAA+F;AAC/F,mCAAgC;AAChC,2CAWqB;AACrB,qCAA+C;AAC/C,wBAAmC;AAE5B,MAAM,mBAAmB,GAAG,CAAC,IAAU,EAAE,EAAE;IAChD,MAAM,OAAO,GAAG,EAAE,CAAC;IACnB,MAAM,gBAAgB,GAAG,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;QAChE,MAAM,CAAC,QAAQ,EAAE,SAAS,CAAC,GAAG,GAAG,CAAC;QAElC,OAAO,CAAC,GAAG,IAAI,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC;IACrD,CAAC,EAAE,OAAO,CAAC,CAAC;IACZ,IAAI,gBAAgB,KAAK,OAAO,EAAE;QAChC,MAAM,KAAK,CAAC,0EAA0E,CAAC,CAAC;KACzF;IAED,OAAO,gBAAgB,CAAC;AAC1B,CAAC,CAAC;AAZW,QAAA,mBAAmB,uBAY9B;AAEF,MAAM,eAAe,GAAG,CAAC,IAAU,EAAE,EAAE;IACrC,MAAM,gBAAgB,GAAG,IAAA,2BAAmB,EAAC,IAAI,CAAC,CAAC;IACnD,OAAO,IAAI,CAAC,gBAAgB,CAAC,CAAC;AAChC,CAAC,CAAC;AAEK,MAAM,cAAc,GAAG,GAAS,EAAE,CAAC,CAAC;IACzC,CAAC,6BAAiB,CAAC,EAAE,EAAE,IAAI,EAAE,IAAA,kBAAe,EAAC,8BAAkB,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE;CACnF,CAAC,CAAC;AAFU,QAAA,cAAc,kBAExB;AAEH,MAAM,IAAI,GAAG,CAAI,KAAe,EAAE,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC;AAEhE,MAAM,qBAAqB,GAAG,CAAC,OAAoC,EAAE,EAAE,CACrE,IAAI,CACF,OAAO;KACJ,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,IAAA,mBAAY,EAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;KAC5E,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,EAA4B,CAAC;KACnE,MAAM,CAAC,OAAO,CAAa,CAC/B,CAAC;AAEG,MAAM,SAAS,GAAG,CAAC,GAAuC,EAAE,EAAE;IACnE,MAAM,EACJ,IAAI,EACJ,QAAQ,EAAE,EAAE,OAAO,EAAE,GACtB,GAAG,GAAG,CAAC;IACR,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IACvC,MAAM,eAAe,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC;IAC3F,IAAI,eAAe,KAAK,CAAC,EAAE;QACzB,MAAM,KAAK,CAAC,0EAA0E,CAAC,CAAC;KACzF;IACD,IAAI,eAAe,GAAG,CAAC,EAAE;QACvB,MAAM,KAAK,CACT,GAAG,eAAe,qEAAqE,CACxF,CAAC;KACH;IAED,MAAM,kBAAkB,GAAG,qBAAqB,CAAC,OAAO,CAAC,CAAC;IAC1D,MAAM,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACpC,IAAI,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE;QAC1D,MAAM,KAAK,CACT,GAAG,kBAAkB;aAClB,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;aACrC,IAAI,EAAE,4CAA4C,CACtD,CAAC;KACH;AACH,CAAC,CAAC;AAzBW,QAAA,SAAS,aAyBpB;AAEK,MAAM,iCAAiC,GAAG,CAC/C,WAAwB,EACxB,QAAgB,EAChB,UAAkB,EAClB,iBAAyB,EACzB,EAAE;IACF,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,GAAG,WAAW,CAAC;IAEpD,8FAA8F;IAC9F,MAAM,kBAAkB,GAAG,CAAC,MAAM,GAAG,OAAO,CAAC,GAAG,UAAU,CAAC;IAE3D,6BAA6B;IAC7B,6FAA6F;IAC7F,wDAAwD;IACxD,+FAA+F;IAC/F,qFAAqF;IACrF,MAAM,aAAa,GAAG,CAAC,kBAAkB,GAAG,QAAQ,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC;IAErE,IAAI,iBAAiB,KAAK,8BAAkB,EAAE;QAC5C,OAAO,EAAE,MAAM,EAAE,IAAA,cAAK,EAAC,aAAa,CAAC,EAAE,SAAS,EAAE,CAAC,EAAE,CAAC;KACvD;IAED,2CAA2C;IAC3C,6FAA6F;IAC7F,wFAAwF;IACxF,oCAAoC;IACpC,8FAA8F;IAC9F,gFAAgF;IAChF,2FAA2F;IAC3F,4FAA4F;IAC5F,+DAA+D;IAC/D,2FAA2F;IAC3F,IAAI,gBAAgB,GAAG,CAAC,CAAC;IACzB,IAAI,UAAU,GAAG,kBAAkB,EAAE;QACnC,gBAAgB,GAAG,CAAC,CAAC,kBAAkB,GAAG,UAAU,CAAC,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC;KACvE;IAED,OAAO,EAAE,MAAM,EAAE,CAAC,EAAE,SAAS,EAAE,IAAA,cAAK,EAAC,gBAAgB,CAAC,EAAE,CAAC;AAC3D,CAAC,CAAC;AAtCW,QAAA,iCAAiC,qCAsC5C;AAEK,MAAM,kBAAkB,GAAG,CAAC,WAAwB,EAAE,QAAgB,EAAE,EAAE;IAC/E,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,GAAG,WAAW,CAAC;IAE5C,OAAO,CAAC,OAAO,GAAG,UAAU,CAAC,GAAG,QAAQ,CAAC;AAC3C,CAAC,CAAC;AAJW,QAAA,kBAAkB,sBAI7B;AAEK,MAAM,kBAAkB,GAAG,CAAC,WAAwB,EAAE,QAAgB,EAAE,EAAE;IAC/E,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,GAAG,WAAW,CAAC;IAE1D,MAAM,KAAK,GAAG,IAAI,GAAG,UAAU,CAAC;IAChC,MAAM,IAAI,GAAG,CAAC,MAAM,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC;IAC3C,MAAM,OAAO,GAAG,CAAC,OAAO,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC;IAE/C,IAAI,MAAM,GAAG,IAAI,GAAG,OAAO,CAAC;IAC5B,MAAM,IAAI,IAAI,CAAC,GAAG,CAAC,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC;IAEzC,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,GAAG,QAAQ,CAAC;AACpC,CAAC,CAAC;AAXW,QAAA,kBAAkB,sBAW7B;AAEF,MAAM,yBAAyB,GAAG,CAAC,WAAmB,EAAE,oBAA4B,EAAE,EAAE;IACtF,OAAO,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,oBAAoB,CAAC;AACzD,CAAC,CAAC;AAEK,MAAM,iBAAiB,GAAG,CAAC,IAAY,EAAE,WAAwB,EAAE,QAAgB,EAAE,gBAAwB,EAAE,EAAE;IACtH,MAAM,EAAE,MAAM,EAAE,GAAG,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IAC5C,MAAM,KAAK,GAAG,IAAI,GAAG,WAAW,CAAC,UAAU,CAAC;IAC5C,MAAM,aAAa,GACjB,MAAM,CAAC,MAAM,CAAC,CAAC,UAAU,EAAE,KAAK,EAAE,EAAE,CAAC,UAAU,GAAG,KAAK,CAAC,YAAY,GAAG,KAAK,EAAE,CAAC,CAAC;QAChF,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC;IACpB,OAAO,aAAa,GAAG,yBAAyB,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;AAC3E,CAAC,CAAC;AAPW,QAAA,iBAAiB,qBAO5B;AAEF,MAAM,gBAAgB,GAAwC,EAAE,CAAC;AAC1D,MAAM,cAAc,GAAG,CAAO,UAAsB,EAAE,IAAU,EAAE,EAAE;IACzE,MAAM,QAAQ,GAAG,UAAU,CAAC,QAAQ,IAAI,IAAA,2BAAmB,EAAC,IAAI,CAAC,CAAC;IAClE,IAAI,gBAAgB,CAAC,QAAQ,CAAC,EAAE;QAC9B,OAAO,gBAAgB,CAAC,QAAQ,CAAC,CAAC;KACnC;IAED,MAAM,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,eAAe,CAAC,IAAI,CAAC,IAAI,IAAA,sBAAc,GAAE,CAAC,6BAAiB,CAAC,CAAC;IACnG,IAAI,QAAQ,GAAG,WAAW,CAAC,IAAI,CAAC;IAChC,IAAI,OAAO,QAAQ,KAAK,QAAQ,EAAE;QAChC,QAAQ,GAAG,QAAQ,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC,CAAC,IAAA,kBAAe,EAAC,QAAQ,CAAC,CAAC;KAC7H;IAED,MAAM,WAAW,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,YAAY,eAAM,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,eAAM,CAAC,IAAI,CAAC,QAAuB,CAAC,CAAC,CAAC;IACjH,gBAAgB,CAAC,QAAQ,CAAC,GAAG,WAAW,CAAC;IAEzC,OAAO,WAAW,CAAC;AACrB,CAAC,CAAA,CAAC;AAhBW,QAAA,cAAc,kBAgBzB;AAGF,MAAM,uBAAuB,GAAG,CAAC,IAAY,EAAE,UAA+B,EAAE,EAAE;IAChF,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,gBAAgB,EAAE,YAAY,EAAE,GAAG,UAAU,CAAC;IACtE,MAAM,SAAS,GAAG,IAAA,yBAAiB,EAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC;IAC5E,OAAO,SAAS,GAAG,YAAY,CAAC;AAClC,CAAC,CAAC;AAEF;;;;GAIG;AACH,MAAM,eAAe,GAAG,CAAC,QAAgB,EAAE,UAA+B,EAAE,EAAE;IAC5E,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QACzC,IAAI,uBAAuB,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,UAAU,CAAC,EAAE;YACjE,OAAO,CAAC,CAAC;SACV;KACF;IAED,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAEF;;;GAGG;AACH,MAAM,gBAAgB,GAAG,CAAC,QAAgB,EAAE,UAA+B,EAAE,EAAE;IAC7E,MAAM,OAAO,GAAG,eAAe,CAAC,QAAQ,EAAE,UAAU,CAAC,CAAC;IACtD,IAAI,OAAO,KAAK,IAAI;QAAE,OAAO,QAAQ,CAAC,MAAM,CAAC,CAAC,iDAAiD;IAE/F,IAAI,UAAU,GAAG,OAAO,CAAC;IACzB,OAAO,QAAQ,CAAC,UAAU,CAAC,KAAK,GAAG,IAAI,UAAU,IAAI,CAAC,EAAE;QACtD,UAAU,EAAE,CAAC;KACd;IAED,kEAAkE;IAClE,OAAO,UAAU,GAAG,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,OAAO,CAAC;AAC/C,CAAC,CAAC;AAEF;;;GAGG;AACI,MAAM,gBAAgB,GAAG,CAAC,QAAgB,EAAE,UAA+B,EAAY,EAAE;IAC9F,MAAM,QAAQ,GAAG,gBAAgB,CAAC,QAAQ,EAAE,UAAU,CAAC,CAAC;IACxD,MAAM,YAAY,GAAG,QAAQ,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC;IACrD,MAAM,IAAI,GAAG,QAAQ,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,SAAS,EAAE,CAAC;IAEtD,IAAI,IAAI,KAAK,QAAQ,EAAE;QACrB,8DAA8D;QAC9D,4CAA4C;QAC5C,OAAO,CAAC,QAAQ,CAAC,CAAC;KACnB;IAED,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,EAAE;QACrB,wCAAwC;QACxC,OAAO,CAAC,YAAY,CAAC,CAAC;KACvB;IAED,OAAO,CAAC,YAAY,EAAE,GAAG,IAAA,wBAAgB,EAAC,IAAI,EAAE,UAAU,CAAC,CAAC,CAAC;AAC/D,CAAC,CAAC;AAjBW,QAAA,gBAAgB,oBAiB3B;AAEF;;;;;GAKG;AACI,MAAM,wBAAwB,GAAG,CAAO,EAC7C,UAAU,EACV,IAAI,EACJ,KAAK,EACL,gBAAgB,GAMjB,EAAE,EAAE;;IACH,MAAM,EACJ,QAAQ,EAAE,cAAc,EACxB,eAAe,EAAE,sBAAsB,EACvC,gBAAgB,EAAE,sBAAsB,EACxC,KAAK,EAAE,QAAQ,EACf,MAAM,EAAE,SAAS,EACjB,UAAU,GAAG,+BAAmB,GACjC,GAAG,UAAU,CAAC;IACf,MAAM,QAAQ,GAAG,gBAAgB,IAAI,cAAc,IAAI,6BAAiB,CAAC;IACzE,IAAI,CAAC,sBAAsB;QAAE,OAAO,QAAQ,CAAC;IAC7C,IAAI,sBAAsB,CAAC,GAAG,GAAG,sBAAsB,CAAC,GAAG;QAAE,OAAO,QAAQ,CAAC;IAE7E,MAAM,gBAAgB,GAAG,sBAAsB,aAAtB,sBAAsB,cAAtB,sBAAsB,GAAI,qCAAyB,CAAC;IAC7E,MAAM,WAAW,GAAG,MAAM,IAAA,sBAAc,EAAC,UAAU,EAAE,IAAI,CAAC,CAAC;IAC3D,MAAM,eAAe,GAAG,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IAE1C,IAAI,eAAe,GAAG,QAAQ,CAAC;IAC/B,IAAI,eAAe,GAAG,sBAAsB,CAAC,GAAG,EAAE;QAChD,eAAe,GAAG,sBAAsB,CAAC,GAAG,CAAC;KAC9C;SAAM,IAAI,eAAe,GAAG,sBAAsB,CAAC,GAAG,EAAE;QACvD,eAAe,GAAG,sBAAsB,CAAC,GAAG,CAAC;KAC9C;IACD,MAAM,cAAc,GAAG,MAAA,sBAAsB,CAAC,GAAG,mCAAI,+BAAmB,CAAC;IAEzE,MAAM,oBAAoB,GAAG,CAAC,IAAY,EAAE,EAAE;QAC5C,IAAI,cAAc,GAAG,CAAC,CAAC;QACvB,IAAI,eAAe,GAAG,CAAC,CAAC;QAExB,MAAM,YAAY,GAAG,IAAA,cAAK,EAAC,QAAQ,CAAC,CAAC;QACrC,MAAM,UAAU,GAAG,IAAA,0BAAkB,EAAC,WAAW,EAAE,IAAI,CAAC,CAAC;QACzD,MAAM,cAAc,GAAG,IAAA,cAAK,EAAC,UAAU,GAAG,UAAU,CAAC,CAAC;QAEtD,eAAe,CAAC,OAAO,CAAC,CAAC,SAAS,EAAE,EAAE;YACpC,MAAM,KAAK,GAAG,IAAA,wBAAgB,EAAC,SAAS,EAAE;gBACxC,IAAI,EAAE,WAAW;gBACjB,QAAQ,EAAE,IAAI;gBACd,gBAAgB;gBAChB,YAAY;aACb,CAAC,CAAC;YACH,KAAK,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE;gBACrB,IAAI,cAAc,KAAK,gCAAoB,EAAE;oBAC3C,uFAAuF;oBACvF,MAAM,SAAS,GAAG,IAAA,yBAAiB,EAAC,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,gBAAgB,CAAC,CAAC;oBAC/E,MAAM,aAAa,GAAG,IAAA,cAAK,EAAC,SAAS,CAAC,CAAC;oBACvC,cAAc,GAAG,IAAI,CAAC,GAAG,CAAC,cAAc,EAAE,aAAa,CAAC,CAAC;iBAC1D;gBAED,eAAe,IAAI,cAAc,CAAC;YACpC,CAAC,CAAC,CAAC;YACH,IAAI,cAAc,KAAK,kCAAsB,EAAE;gBAC7C,oEAAoE;gBACpE,MAAM,SAAS,GAAG,IAAA,yBAAiB,EAAC,SAAS,EAAE,WAAW,EAAE,IAAI,EAAE,gBAAgB,CAAC,CAAC;gBACpF,MAAM,aAAa,GAAG,IAAA,cAAK,EAAC,SAAS,CAAC,CAAC;gBACvC,cAAc,GAAG,IAAI,CAAC,GAAG,CAAC,cAAc,EAAE,aAAa,CAAC,CAAC;aAC1D;QACH,CAAC,CAAC,CAAC;QAEH,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,CAAC;IAC7C,CAAC,CAAC;IAEF,MAAM,mBAAmB,GAAG,CAAC,cAAsB,EAAE,eAAuB,EAAE,EAAE;QAC9E,IAAI,eAAe,IAAI,sBAAsB,CAAC,GAAG,EAAE;YACjD,OAAO,KAAK,CAAC;SACd;QACD,IAAI,cAAc,KAAK,kCAAsB,EAAE;YAC7C,OAAO,cAAc,GAAG,QAAQ,CAAC;SAClC;QACD,OAAO,eAAe,GAAG,SAAS,CAAC;IACrC,CAAC,CAAC;IAEF,MAAM,qBAAqB,GAAG,CAAC,cAAsB,EAAE,eAAuB,EAAE,EAAE;QAChF,IAAI,eAAe,IAAI,sBAAsB,CAAC,GAAG,IAAI,eAAe,IAAI,CAAC,EAAE;YACzE,OAAO,KAAK,CAAC;SACd;QACD,OAAO,cAAc,GAAG,QAAQ,IAAI,eAAe,GAAG,SAAS,CAAC;IAClE,CAAC,CAAC;IAEF,IAAI,EAAE,cAAc,EAAE,eAAe,EAAE,GAAG,oBAAoB,CAAC,eAAe,CAAC,CAAC;IAEhF,sDAAsD;IACtD,OAAO,mBAAmB,CAAC,cAAc,EAAE,eAAe,CAAC,EAAE;QAC3D,eAAe,IAAI,gCAAoB,CAAC;QACxC,MAAM,EAAE,cAAc,EAAE,QAAQ,EAAE,eAAe,EAAE,SAAS,EAAE,GAAG,oBAAoB,CAAC,eAAe,CAAC,CAAC;QAEvG,IAAI,SAAS,GAAG,SAAS,EAAE;YACzB,cAAc,GAAG,QAAQ,CAAC;YAC1B,eAAe,GAAG,SAAS,CAAC;SAC7B;aAAM;YACL,eAAe,IAAI,gCAAoB,CAAC;YACxC,MAAM;SACP;KACF;IAED,wDAAwD;IACxD,OAAO,qBAAqB,CAAC,cAAc,EAAE,eAAe,CAAC,EAAE;QAC7D,eAAe,IAAI,gCAAoB,CAAC;QACxC,CAAC,EAAE,cAAc,EAAE,eAAe,EAAE,GAAG,oBAAoB,CAAC,eAAe,CAAC,CAAC,CAAC;KAC/E;IAED,OAAO,eAAe,CAAC;AACzB,CAAC,CAAA,CAAC;AA/GW,QAAA,wBAAwB,4BA+GnC"}
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.isBarcodeSchema = exports.isImageSchema = exports.isTextSchema = exports.schemaTypes = void 0;
4
- const schema_js_1 = require("./schema.js");
5
- exports.schemaTypes = schema_js_1.schemaTypes;
6
- const isTextSchema = (arg) => arg.type === 'text';
7
- exports.isTextSchema = isTextSchema;
8
- const isImageSchema = (arg) => arg.type === 'image';
9
- exports.isImageSchema = isImageSchema;
10
- const isBarcodeSchema = (arg) => schema_js_1.barcodeSchemaTypes.map((t) => t).includes(arg.type);
11
- exports.isBarcodeSchema = isBarcodeSchema;
12
- //# sourceMappingURL=type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"type.js","sourceRoot":"","sources":["../../../src/type.ts"],"names":[],"mappings":";;;AAGA,2CA2BqB;AAUR,QAAA,WAAW,GAAG,uBAAY,CAAC;AACjC,MAAM,YAAY,GAAG,CAAC,GAAiB,EAAqB,EAAE,CAAC,GAAG,CAAC,IAAI,KAAK,MAAM,CAAC;AAA7E,QAAA,YAAY,gBAAiE;AACnF,MAAM,aAAa,GAAG,CAAC,GAAiB,EAAsB,EAAE,CAAC,GAAG,CAAC,IAAI,KAAK,OAAO,CAAC;AAAhF,QAAA,aAAa,iBAAmE;AACtF,MAAM,eAAe,GAAG,CAAC,GAAiB,EAAwB,EAAE,CACzE,8BAAkB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAW,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;AADnD,QAAA,eAAe,mBACoC"}