@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,268 +0,0 @@
1
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
- return new (P || (P = Promise))(function (resolve, reject) {
4
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
- step((generator = generator.apply(thisArg, _arguments || [])).next());
8
- });
9
- };
10
- import * as fontkit from 'fontkit';
11
- import { isTextSchema } from './type';
12
- import { Buffer } from 'buffer';
13
- import { DEFAULT_FONT_VALUE, DEFAULT_FONT_NAME, DEFAULT_FONT_SIZE, DEFAULT_CHARACTER_SPACING, DEFAULT_LINE_HEIGHT, FONT_SIZE_ADJUSTMENT, DEFAULT_DYNAMIC_FIT, DYNAMIC_FIT_HORIZONTAL, DYNAMIC_FIT_VERTICAL, VERTICAL_ALIGN_TOP, } from './constants';
14
- import { mm2pt, pt2mm, pt2px } from './helper';
15
- import { b64toUint8Array } from ".";
16
- export const getFallbackFontName = (font) => {
17
- const initial = '';
18
- const fallbackFontName = Object.entries(font).reduce((acc, cur) => {
19
- const [fontName, fontValue] = cur;
20
- return !acc && fontValue.fallback ? fontName : acc;
21
- }, initial);
22
- if (fallbackFontName === initial) {
23
- throw Error(`fallback flag is not found in font. true fallback flag must be only one.`);
24
- }
25
- return fallbackFontName;
26
- };
27
- const getFallbackFont = (font) => {
28
- const fallbackFontName = getFallbackFontName(font);
29
- return font[fallbackFontName];
30
- };
31
- export const getDefaultFont = () => ({
32
- [DEFAULT_FONT_NAME]: { data: b64toUint8Array(DEFAULT_FONT_VALUE), fallback: true },
33
- });
34
- const uniq = (array) => Array.from(new Set(array));
35
- const getFontNamesInSchemas = (schemas) => uniq(schemas
36
- .map((s) => Object.values(s).map((v) => (isTextSchema(v) ? v.fontName : '')))
37
- .reduce((acc, cur) => acc.concat(cur), [])
38
- .filter(Boolean));
39
- export const checkFont = (arg) => {
40
- const { font, template: { schemas }, } = arg;
41
- const fontValues = Object.values(font);
42
- const fallbackFontNum = fontValues.reduce((acc, cur) => (cur.fallback ? acc + 1 : acc), 0);
43
- if (fallbackFontNum === 0) {
44
- throw Error(`fallback flag is not found in font. true fallback flag must be only one.`);
45
- }
46
- if (fallbackFontNum > 1) {
47
- throw Error(`${fallbackFontNum} fallback flags found in font. true fallback flag must be only one.`);
48
- }
49
- const fontNamesInSchemas = getFontNamesInSchemas(schemas);
50
- const fontNames = Object.keys(font);
51
- if (fontNamesInSchemas.some((f) => !fontNames.includes(f))) {
52
- throw Error(`${fontNamesInSchemas
53
- .filter((f) => !fontNames.includes(f))
54
- .join()} of template.schemas is not found in font.`);
55
- }
56
- };
57
- export const getBrowserVerticalFontAdjustments = (fontKitFont, fontSize, lineHeight, verticalAlignment) => {
58
- const { ascent, descent, unitsPerEm } = fontKitFont;
59
- // Fonts have a designed line height that the browser renders when using `line-height: normal`
60
- const fontBaseLineHeight = (ascent - descent) / unitsPerEm;
61
- // For vertical alignment top
62
- // To achieve consistent positioning between browser and PDF, we apply the difference between
63
- // the font's actual height and the font size in pixels.
64
- // Browsers middle the font within this height, so we only need half of it to apply to the top.
65
- // This means the font renders a bit lower in the browser, but achieves PDF alignment
66
- const topAdjustment = (fontBaseLineHeight * fontSize - fontSize) / 2;
67
- if (verticalAlignment === VERTICAL_ALIGN_TOP) {
68
- return { topAdj: pt2px(topAdjustment), bottomAdj: 0 };
69
- }
70
- // For vertical alignment bottom and middle
71
- // When browsers render text in a non-form element (such as a <div>), some of the text may be
72
- // lowered below and outside the containing element if the line height used is less than
73
- // the base line-height of the font.
74
- // This behaviour does not happen in a <textarea> though, so we need to adjust the positioning
75
- // for consistency between editing and viewing to stop text jumping up and down.
76
- // This portion of text is half of the difference between the base line height and the used
77
- // line height. If using the same or higher line-height than the base font, then line-height
78
- // takes over in the browser and this adjustment is not needed.
79
- // Unlike the top adjustment - this is only driven by browser behaviour, not PDF alignment.
80
- let bottomAdjustment = 0;
81
- if (lineHeight < fontBaseLineHeight) {
82
- bottomAdjustment = ((fontBaseLineHeight - lineHeight) * fontSize) / 2;
83
- }
84
- return { topAdj: 0, bottomAdj: pt2px(bottomAdjustment) };
85
- };
86
- export const getFontDescentInPt = (fontKitFont, fontSize) => {
87
- const { descent, unitsPerEm } = fontKitFont;
88
- return (descent / unitsPerEm) * fontSize;
89
- };
90
- export const heightOfFontAtSize = (fontKitFont, fontSize) => {
91
- const { ascent, descent, bbox, unitsPerEm } = fontKitFont;
92
- const scale = 1000 / unitsPerEm;
93
- const yTop = (ascent || bbox.maxY) * scale;
94
- const yBottom = (descent || bbox.minY) * scale;
95
- let height = yTop - yBottom;
96
- height -= Math.abs(descent * scale) || 0;
97
- return (height / 1000) * fontSize;
98
- };
99
- const calculateCharacterSpacing = (textContent, textCharacterSpacing) => {
100
- return (textContent.length - 1) * textCharacterSpacing;
101
- };
102
- export const widthOfTextAtSize = (text, fontKitFont, fontSize, characterSpacing) => {
103
- const { glyphs } = fontKitFont.layout(text);
104
- const scale = 1000 / fontKitFont.unitsPerEm;
105
- const standardWidth = glyphs.reduce((totalWidth, glyph) => totalWidth + glyph.advanceWidth * scale, 0) *
106
- (fontSize / 1000);
107
- return standardWidth + calculateCharacterSpacing(text, characterSpacing);
108
- };
109
- const fontKitFontCache = {};
110
- export const getFontKitFont = (textSchema, font) => __awaiter(void 0, void 0, void 0, function* () {
111
- const fontName = textSchema.fontName || getFallbackFontName(font);
112
- if (fontKitFontCache[fontName]) {
113
- return fontKitFontCache[fontName];
114
- }
115
- const currentFont = font[fontName] || getFallbackFont(font) || getDefaultFont()[DEFAULT_FONT_NAME];
116
- let fontData = currentFont.data;
117
- if (typeof fontData === 'string') {
118
- fontData = fontData.startsWith('http') ? yield fetch(fontData).then((res) => res.arrayBuffer()) : b64toUint8Array(fontData);
119
- }
120
- const fontKitFont = fontkit.create(fontData instanceof Buffer ? fontData : Buffer.from(fontData));
121
- fontKitFontCache[fontName] = fontKitFont;
122
- return fontKitFont;
123
- });
124
- const isTextExceedingBoxWidth = (text, calcValues) => {
125
- const { font, fontSize, characterSpacing, boxWidthInPt } = calcValues;
126
- const textWidth = widthOfTextAtSize(text, font, fontSize, characterSpacing);
127
- return textWidth > boxWidthInPt;
128
- };
129
- /**
130
- * Incrementally checks the current line for its real length
131
- * and returns the position where it exceeds the box width.
132
- * Returns `null` to indicate if textLine is shorter than the available box.
133
- */
134
- const getOverPosition = (textLine, calcValues) => {
135
- for (let i = 0; i <= textLine.length; i++) {
136
- if (isTextExceedingBoxWidth(textLine.slice(0, i + 1), calcValues)) {
137
- return i;
138
- }
139
- }
140
- return null;
141
- };
142
- /**
143
- * Gets the position of the split. Splits the exceeding line at
144
- * the last whitespace prior to it exceeding the bounding box width.
145
- */
146
- const getSplitPosition = (textLine, calcValues) => {
147
- const overPos = getOverPosition(textLine, calcValues);
148
- if (overPos === null)
149
- return textLine.length; // input line is shorter than the available space
150
- let overPosTmp = overPos;
151
- while (textLine[overPosTmp] !== ' ' && overPosTmp >= 0) {
152
- overPosTmp--;
153
- }
154
- // For very long lines with no whitespace use the original overPos
155
- return overPosTmp > 0 ? overPosTmp : overPos;
156
- };
157
- /**
158
- * Recursively splits the line at getSplitPosition.
159
- * If there is some leftover, split the rest again in the same manner.
160
- */
161
- export const getSplittedLines = (textLine, calcValues) => {
162
- const splitPos = getSplitPosition(textLine, calcValues);
163
- const splittedLine = textLine.substring(0, splitPos);
164
- const rest = textLine.substring(splitPos).trimStart();
165
- if (rest === textLine) {
166
- // if we went so small that we want to split on the first char
167
- // then end recursion to avoid infinite loop
168
- return [textLine];
169
- }
170
- if (rest.length === 0) {
171
- // end recursion if there is no leftover
172
- return [splittedLine];
173
- }
174
- return [splittedLine, ...getSplittedLines(rest, calcValues)];
175
- };
176
- /**
177
- * If using dynamic font size, iteratively increment or decrement the
178
- * font size to fit the containing box.
179
- * Calculating space usage involves splitting lines where they exceed
180
- * the box width based on the proposed size.
181
- */
182
- export const calculateDynamicFontSize = ({ textSchema, font, input, startingFontSize, }) => __awaiter(void 0, void 0, void 0, function* () {
183
- var _a;
184
- const { fontSize: schemaFontSize, dynamicFontSize: dynamicFontSizeSetting, characterSpacing: schemaCharacterSpacing, width: boxWidth, height: boxHeight, lineHeight = DEFAULT_LINE_HEIGHT, } = textSchema;
185
- const fontSize = startingFontSize || schemaFontSize || DEFAULT_FONT_SIZE;
186
- if (!dynamicFontSizeSetting)
187
- return fontSize;
188
- if (dynamicFontSizeSetting.max < dynamicFontSizeSetting.min)
189
- return fontSize;
190
- const characterSpacing = schemaCharacterSpacing !== null && schemaCharacterSpacing !== void 0 ? schemaCharacterSpacing : DEFAULT_CHARACTER_SPACING;
191
- const fontKitFont = yield getFontKitFont(textSchema, font);
192
- const textContentRows = input.split('\n');
193
- let dynamicFontSize = fontSize;
194
- if (dynamicFontSize < dynamicFontSizeSetting.min) {
195
- dynamicFontSize = dynamicFontSizeSetting.min;
196
- }
197
- else if (dynamicFontSize > dynamicFontSizeSetting.max) {
198
- dynamicFontSize = dynamicFontSizeSetting.max;
199
- }
200
- const dynamicFontFit = (_a = dynamicFontSizeSetting.fit) !== null && _a !== void 0 ? _a : DEFAULT_DYNAMIC_FIT;
201
- const calculateConstraints = (size) => {
202
- let totalWidthInMm = 0;
203
- let totalHeightInMm = 0;
204
- const boxWidthInPt = mm2pt(boxWidth);
205
- const textHeight = heightOfFontAtSize(fontKitFont, size);
206
- const textHeightInMm = pt2mm(textHeight * lineHeight);
207
- textContentRows.forEach((paragraph) => {
208
- const lines = getSplittedLines(paragraph, {
209
- font: fontKitFont,
210
- fontSize: size,
211
- characterSpacing,
212
- boxWidthInPt,
213
- });
214
- lines.forEach((line) => {
215
- if (dynamicFontFit === DYNAMIC_FIT_VERTICAL) {
216
- // For vertical fit we want to consider the width of text lines where we detect a split
217
- const textWidth = widthOfTextAtSize(line, fontKitFont, size, characterSpacing);
218
- const textWidthInMm = pt2mm(textWidth);
219
- totalWidthInMm = Math.max(totalWidthInMm, textWidthInMm);
220
- }
221
- totalHeightInMm += textHeightInMm;
222
- });
223
- if (dynamicFontFit === DYNAMIC_FIT_HORIZONTAL) {
224
- // For horizontal fit we want to consider the line's width 'unsplit'
225
- const textWidth = widthOfTextAtSize(paragraph, fontKitFont, size, characterSpacing);
226
- const textWidthInMm = pt2mm(textWidth);
227
- totalWidthInMm = Math.max(totalWidthInMm, textWidthInMm);
228
- }
229
- });
230
- return { totalWidthInMm, totalHeightInMm };
231
- };
232
- const shouldFontGrowToFit = (totalWidthInMm, totalHeightInMm) => {
233
- if (dynamicFontSize >= dynamicFontSizeSetting.max) {
234
- return false;
235
- }
236
- if (dynamicFontFit === DYNAMIC_FIT_HORIZONTAL) {
237
- return totalWidthInMm < boxWidth;
238
- }
239
- return totalHeightInMm < boxHeight;
240
- };
241
- const shouldFontShrinkToFit = (totalWidthInMm, totalHeightInMm) => {
242
- if (dynamicFontSize <= dynamicFontSizeSetting.min || dynamicFontSize <= 0) {
243
- return false;
244
- }
245
- return totalWidthInMm > boxWidth || totalHeightInMm > boxHeight;
246
- };
247
- let { totalWidthInMm, totalHeightInMm } = calculateConstraints(dynamicFontSize);
248
- // Attempt to increase the font size up to desired fit
249
- while (shouldFontGrowToFit(totalWidthInMm, totalHeightInMm)) {
250
- dynamicFontSize += FONT_SIZE_ADJUSTMENT;
251
- const { totalWidthInMm: newWidth, totalHeightInMm: newHeight } = calculateConstraints(dynamicFontSize);
252
- if (newHeight < boxHeight) {
253
- totalWidthInMm = newWidth;
254
- totalHeightInMm = newHeight;
255
- }
256
- else {
257
- dynamicFontSize -= FONT_SIZE_ADJUSTMENT;
258
- break;
259
- }
260
- }
261
- // Attempt to decrease the font size down to desired fit
262
- while (shouldFontShrinkToFit(totalWidthInMm, totalHeightInMm)) {
263
- dynamicFontSize -= FONT_SIZE_ADJUSTMENT;
264
- ({ totalWidthInMm, totalHeightInMm } = calculateConstraints(dynamicFontSize));
265
- }
266
- return dynamicFontSize;
267
- });
268
- //# sourceMappingURL=font.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"font.js","sourceRoot":"","sources":["../../../src/font.ts"],"names":[],"mappings":"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"}
@@ -1,6 +0,0 @@
1
- import { barcodeSchemaTypes, schemaTypes as _schemaTypes, } from './schema.js';
2
- export const schemaTypes = _schemaTypes;
3
- export const isTextSchema = (arg) => arg.type === 'text';
4
- export const isImageSchema = (arg) => arg.type === 'image';
5
- export const isBarcodeSchema = (arg) => barcodeSchemaTypes.map((t) => t).includes(arg.type);
6
- //# sourceMappingURL=type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"type.js","sourceRoot":"","sources":["../../../src/type.ts"],"names":[],"mappings":"AAGA,OAAO,EAIL,kBAAkB,EAClB,WAAW,IAAI,YAAY,GAsB5B,MAAM,aAAa,CAAC;AAUrB,MAAM,CAAC,MAAM,WAAW,GAAG,YAAY,CAAC;AACxC,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,GAAiB,EAAqB,EAAE,CAAC,GAAG,CAAC,IAAI,KAAK,MAAM,CAAC;AAC1F,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,GAAiB,EAAsB,EAAE,CAAC,GAAG,CAAC,IAAI,KAAK,OAAO,CAAC;AAC7F,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,GAAiB,EAAwB,EAAE,CACzE,kBAAkB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAW,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- export {};
@@ -1,34 +0,0 @@
1
- import * as fontkit from 'fontkit';
2
- import type { Font as FontKitFont } from 'fontkit';
3
- import { FontWidthCalcValues, Template, Font, TextSchema } from './type';
4
- export declare const getFallbackFontName: (font: Font) => string;
5
- export declare const getDefaultFont: () => Font;
6
- export declare const checkFont: (arg: {
7
- font: Font;
8
- template: Template;
9
- }) => void;
10
- export declare const getBrowserVerticalFontAdjustments: (fontKitFont: FontKitFont, fontSize: number, lineHeight: number, verticalAlignment: string) => {
11
- topAdj: number;
12
- bottomAdj: number;
13
- };
14
- export declare const getFontDescentInPt: (fontKitFont: FontKitFont, fontSize: number) => number;
15
- export declare const heightOfFontAtSize: (fontKitFont: FontKitFont, fontSize: number) => number;
16
- export declare const widthOfTextAtSize: (text: string, fontKitFont: FontKitFont, fontSize: number, characterSpacing: number) => number;
17
- export declare const getFontKitFont: (textSchema: TextSchema, font: Font) => Promise<fontkit.Font>;
18
- /**
19
- * Recursively splits the line at getSplitPosition.
20
- * If there is some leftover, split the rest again in the same manner.
21
- */
22
- export declare const getSplittedLines: (textLine: string, calcValues: FontWidthCalcValues) => string[];
23
- /**
24
- * If using dynamic font size, iteratively increment or decrement the
25
- * font size to fit the containing box.
26
- * Calculating space usage involves splitting lines where they exceed
27
- * the box width based on the proposed size.
28
- */
29
- export declare const calculateDynamicFontSize: ({ textSchema, font, input, startingFontSize, }: {
30
- textSchema: TextSchema;
31
- font: Font;
32
- input: string;
33
- startingFontSize?: number | undefined;
34
- }) => Promise<number>;
@@ -1,78 +0,0 @@
1
- import { z } from 'zod';
2
- import type { Font as FontKitFont } from 'fontkit';
3
- import { Lang, Size, Alignment, BarcodeSchemaType, SchemaType, CommonSchema as _CommonSchema, TextSchema, ImageSchema, BarcodeSchema, Schema, SchemaInputs, SchemaForUI, Font, BasePdf, Template, CommonProps, GeneratorOptions, GenerateProps, UIOptions, UIProps, PreviewProps, PreviewReactProps, DesignerProps, DesignerReactProps } from './schema.js';
4
- export declare type FontWidthCalcValues = {
5
- font: FontKitFont;
6
- fontSize: number;
7
- characterSpacing: number;
8
- boxWidthInPt: number;
9
- };
10
- declare type CommonSchema = z.infer<typeof _CommonSchema>;
11
- export declare const schemaTypes: readonly ["text", "image", "qrcode", "japanpost", "ean13", "ean8", "code39", "code128", "nw7", "itf14", "upca", "upce", "gs1datamatrix"];
12
- export declare const isTextSchema: (arg: CommonSchema) => arg is {
13
- type: "text";
14
- height: number;
15
- width: number;
16
- position: {
17
- x: number;
18
- y: number;
19
- };
20
- rotate?: number | undefined;
21
- alignment?: "center" | "left" | "right" | undefined;
22
- verticalAlignment?: "top" | "bottom" | "middle" | undefined;
23
- fontSize?: number | undefined;
24
- fontName?: string | undefined;
25
- fontColor?: string | undefined;
26
- backgroundColor?: string | undefined;
27
- characterSpacing?: number | undefined;
28
- lineHeight?: number | undefined;
29
- dynamicFontSize?: {
30
- max: number;
31
- min: number;
32
- fit?: string | undefined;
33
- } | undefined;
34
- };
35
- export declare const isImageSchema: (arg: CommonSchema) => arg is {
36
- type: "image";
37
- height: number;
38
- width: number;
39
- position: {
40
- x: number;
41
- y: number;
42
- };
43
- rotate?: number | undefined;
44
- };
45
- export declare const isBarcodeSchema: (arg: CommonSchema) => arg is {
46
- type: "qrcode" | "japanpost" | "ean13" | "ean8" | "code39" | "code128" | "nw7" | "itf14" | "upca" | "upce" | "gs1datamatrix";
47
- height: number;
48
- width: number;
49
- position: {
50
- x: number;
51
- y: number;
52
- };
53
- rotate?: number | undefined;
54
- };
55
- export declare type Lang = z.infer<typeof Lang>;
56
- export declare type Size = z.infer<typeof Size>;
57
- export declare type Alignment = z.infer<typeof Alignment>;
58
- export declare type SchemaType = z.infer<typeof SchemaType>;
59
- export declare type BarCodeType = z.infer<typeof BarcodeSchemaType>;
60
- export declare type TextSchema = z.infer<typeof TextSchema>;
61
- export declare type ImageSchema = z.infer<typeof ImageSchema>;
62
- export declare type BarcodeSchema = z.infer<typeof BarcodeSchema>;
63
- export declare type Schema = z.infer<typeof Schema>;
64
- export declare type SchemaInputs = z.infer<typeof SchemaInputs>;
65
- export declare type SchemaForUI = z.infer<typeof SchemaForUI>;
66
- export declare type Font = z.infer<typeof Font>;
67
- export declare type BasePdf = z.infer<typeof BasePdf>;
68
- export declare type Template = z.infer<typeof Template>;
69
- export declare type CommonProps = z.infer<typeof CommonProps>;
70
- export declare type GeneratorOptions = z.infer<typeof GeneratorOptions>;
71
- export declare type GenerateProps = z.infer<typeof GenerateProps>;
72
- export declare type UIOptions = z.infer<typeof UIOptions>;
73
- export declare type UIProps = z.infer<typeof UIProps>;
74
- export declare type PreviewProps = z.infer<typeof PreviewProps>;
75
- export declare type PreviewReactProps = z.infer<typeof PreviewReactProps>;
76
- export declare type DesignerProps = z.infer<typeof DesignerProps>;
77
- export declare type DesignerReactProps = z.infer<typeof DesignerReactProps>;
78
- export {};