@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
package/src/helper.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  import { Buffer } from 'buffer';
3
- import { BasePdf, CommonProps, BarCodeType, } from './type';
3
+ import { Schema, Template, Font, BasePdf, Plugins } from './types';
4
4
  import {
5
5
  Inputs as InputsSchema,
6
6
  UIOptions as UIOptionsSchema,
@@ -10,8 +10,35 @@ import {
10
10
  GenerateProps as GeneratePropsSchema,
11
11
  UIProps as UIPropsSchema,
12
12
  } from './schema';
13
- import { MM_TO_PT_RATIO, PT_TO_MM_RATIO, PT_TO_PX_RATIO } from './constants';
14
- import { checkFont } from './font';
13
+ import {
14
+ MM_TO_PT_RATIO,
15
+ PT_TO_MM_RATIO,
16
+ PT_TO_PX_RATIO,
17
+ DEFAULT_FONT_NAME,
18
+ DEFAULT_FONT_VALUE,
19
+ } from './constants';
20
+
21
+ const uniq = <T>(array: Array<T>) => Array.from(new Set(array));
22
+
23
+ export const getFallbackFontName = (font: Font) => {
24
+ const initial = '';
25
+ const fallbackFontName = Object.entries(font).reduce((acc, cur) => {
26
+ const [fontName, fontValue] = cur;
27
+
28
+ return !acc && fontValue.fallback ? fontName : acc;
29
+ }, initial);
30
+ if (fallbackFontName === initial) {
31
+ throw Error(
32
+ `[@pdfme/common] fallback flag is not found in font. true fallback flag must be only one.`
33
+ );
34
+ }
35
+
36
+ return fallbackFontName;
37
+ };
38
+
39
+ export const getDefaultFont = (): Font => ({
40
+ [DEFAULT_FONT_NAME]: { data: b64toUint8Array(DEFAULT_FONT_VALUE), fallback: true },
41
+ });
15
42
 
16
43
  export const mm2pt = (mm: number): number => {
17
44
  return parseFloat(String(mm)) * MM_TO_PT_RATIO;
@@ -32,7 +59,7 @@ const blob2Base64Pdf = (blob: Blob) => {
32
59
  if ((reader.result as string).startsWith('data:application/pdf;')) {
33
60
  resolve(reader.result as string);
34
61
  } else {
35
- reject(Error('template.basePdf must be pdf data.'));
62
+ reject(Error('[@pdfme/common] template.basePdf must be pdf data.'));
36
63
  }
37
64
  };
38
65
  reader.readAsDataURL(blob);
@@ -68,6 +95,67 @@ export const b64toUint8Array = (base64: string) => {
68
95
  return unit8arr;
69
96
  };
70
97
 
98
+ const getFontNamesInSchemas = (schemas: { [key: string]: Schema }[]) =>
99
+ uniq(
100
+ schemas
101
+ .map((s) => Object.values(s).map((v) => (v as any).fontName ?? ''))
102
+ .reduce((acc, cur) => acc.concat(cur), [] as (string | undefined)[])
103
+ .filter(Boolean) as string[]
104
+ );
105
+
106
+ export const checkFont = (arg: { font: Font; template: Template }) => {
107
+ const {
108
+ font,
109
+ template: { schemas },
110
+ } = arg;
111
+ const fontValues = Object.values(font);
112
+ const fallbackFontNum = fontValues.reduce((acc, cur) => (cur.fallback ? acc + 1 : acc), 0);
113
+ if (fallbackFontNum === 0) {
114
+ throw Error(
115
+ `[@pdfme/common] fallback flag is not found in font. true fallback flag must be only one.
116
+ Check this document: https://pdfme.com/docs/custom-fonts#about-font-type`
117
+ );
118
+ }
119
+ if (fallbackFontNum > 1) {
120
+ throw Error(
121
+ `[@pdfme/common] ${fallbackFontNum} fallback flags found in font. true fallback flag must be only one.
122
+ Check this document: https://pdfme.com/docs/custom-fonts#about-font-type`
123
+ );
124
+ }
125
+
126
+ const fontNamesInSchemas = getFontNamesInSchemas(schemas);
127
+ const fontNames = Object.keys(font);
128
+ if (fontNamesInSchemas.some((f) => !fontNames.includes(f))) {
129
+ throw Error(
130
+ `[@pdfme/common] ${fontNamesInSchemas
131
+ .filter((f) => !fontNames.includes(f))
132
+ .join()} of template.schemas is not found in font.
133
+ Check this document: https://pdfme.com/docs/custom-fonts`
134
+ );
135
+ }
136
+ };
137
+
138
+ export const checkPlugins = (arg: { plugins: Plugins; template: Template }) => {
139
+ const {
140
+ plugins,
141
+ template: { schemas },
142
+ } = arg;
143
+ const allSchemaTypes = uniq(schemas.map((s) => Object.values(s).map((v) => v.type)).flat());
144
+
145
+ // text and image are builtin schema types so they are not included in plugins.
146
+ const exceptBuiltinSchemaTypes = allSchemaTypes.filter((t) => t !== 'text' && t !== 'image');
147
+
148
+ const pluginsSchemaTypes = Object.keys(plugins);
149
+
150
+ if (exceptBuiltinSchemaTypes.some((s) => !pluginsSchemaTypes.includes(s))) {
151
+ throw Error(
152
+ `[@pdfme/common] ${exceptBuiltinSchemaTypes
153
+ .filter((s) => !pluginsSchemaTypes.includes(s))
154
+ .join()} of template.schemas is not found in plugins.`
155
+ );
156
+ }
157
+ };
158
+
71
159
  const checkProps = <T>(data: unknown, zodSchema: z.ZodType<T>) => {
72
160
  try {
73
161
  zodSchema.parse(data);
@@ -80,16 +168,26 @@ ERROR MESSAGE: ${issue.message}
80
168
  );
81
169
 
82
170
  const message = messages.join('\n');
83
- throw Error(`Invalid argument:
171
+ throw Error(`[@pdfme/common] Invalid argument:
84
172
  --------------------------
85
173
  ${message}`);
86
174
  }
87
175
  }
88
- const commonProps = data as CommonProps;
89
- const { template, options } = commonProps;
90
- const font = options?.font;
91
- if (font) {
92
- checkFont({ font, template });
176
+
177
+ // Check fon if template and options exist
178
+ if (data && typeof data === 'object' && 'template' in data && 'options' in data) {
179
+ const { template, options } = data as { template: Template; options: { font?: Font } };
180
+ if (options && options.font) {
181
+ checkFont({ font: options.font, template });
182
+ }
183
+ }
184
+
185
+ // Check plugins if template and plugins exist
186
+ if (data && typeof data === 'object' && 'template' in data && 'plugins' in data) {
187
+ const { template, plugins } = data as { template: Template; plugins: Plugins };
188
+ if (plugins) {
189
+ checkPlugins({ plugins, template });
190
+ }
93
191
  }
94
192
  };
95
193
 
@@ -100,108 +198,3 @@ export const checkUIProps = (data: unknown) => checkProps(data, UIPropsSchema);
100
198
  export const checkPreviewProps = (data: unknown) => checkProps(data, PreviewPropsSchema);
101
199
  export const checkDesignerProps = (data: unknown) => checkProps(data, DesignerPropsSchema);
102
200
  export const checkGenerateProps = (data: unknown) => checkProps(data, GeneratePropsSchema);
103
-
104
- // GTIN-13, GTIN-8, GTIN-12, GTIN-14
105
- const validateCheckDigit = (input: string, checkDigitPos: number) => {
106
- let passCheckDigit = true;
107
-
108
- if (input.length === checkDigitPos) {
109
- const ds = input.slice(0, -1).replace(/[^0-9]/g, '');
110
- let sum = 0;
111
- let odd = 1;
112
- for (let i = ds.length - 1; i > -1; i -= 1) {
113
- sum += Number(ds[i]) * (odd ? 3 : 1);
114
- odd ^= 1;
115
- if (sum > 0xffffffffffff) {
116
- // ~2^48 at max
117
- sum %= 10;
118
- }
119
- }
120
- passCheckDigit = String(10 - (sum % 10)).slice(-1) === input.slice(-1);
121
- }
122
-
123
- return passCheckDigit;
124
- };
125
-
126
- export const validateBarcodeInput = (type: BarCodeType, input: string) => {
127
- if (!input) return false;
128
- if (type === 'qrcode') {
129
- // 500文字以下
130
- return input.length < 500;
131
- }
132
- if (type === 'japanpost') {
133
- // 郵便番号は数字(0-9)のみ。住所表示番号は英数字(0-9,A-Z)とハイフン(-)が使用可能です。
134
- const regexp = /^(\d{7})(\d|[A-Z]|-)+$/;
135
-
136
- return regexp.test(input);
137
- }
138
- if (type === 'ean13') {
139
- // 有効文字は数値(0-9)のみ。チェックデジットを含まない12桁orチェックデジットを含む13桁。
140
- const regexp = /^\d{12}$|^\d{13}$/;
141
-
142
- return regexp.test(input) && validateCheckDigit(input, 13);
143
- }
144
- if (type === 'ean8') {
145
- // 有効文字は数値(0-9)のみ。チェックデジットを含まない7桁orチェックデジットを含む8桁。
146
- const regexp = /^\d{7}$|^\d{8}$/;
147
-
148
- return regexp.test(input) && validateCheckDigit(input, 8);
149
- }
150
- if (type === 'code39') {
151
- // 有効文字は数字(0-9)。アルファベット大文字(A-Z)、記号(-.$/+%)、半角スペース。
152
- const regexp = /^(\d|[A-Z]|\-|\.|\$|\/|\+|\%|\s)+$/;
153
-
154
- return regexp.test(input);
155
- }
156
- if (type === 'code128') {
157
- // 有効文字は漢字、ひらがな、カタカナ以外。
158
- // https://qiita.com/graminume/items/2ac8dd9c32277fa9da64
159
- return !input.match(
160
- /([\u30a0-\u30ff\u3040-\u309f\u3005-\u3006\u30e0-\u9fcf]|[A-Za-z0-9!"#$%&'()*+,-./:;<=>?@[\]^_`{|}〜 ])+/
161
- );
162
- }
163
- if (type === 'nw7') {
164
- // 有効文字はNW-7は数字(0-9)と記号(-.$:/+)。
165
- // スタートコード/ストップコードとして、コードの始まりと終わりはアルファベット(A-D)のいずれかを使用してください。
166
- const regexp = /^[A-Da-d]([0-9\-\.\$\:\/\+])+[A-Da-d]$/;
167
-
168
- return regexp.test(input);
169
- }
170
- if (type === 'itf14') {
171
- // 有効文字は数値(0-9)のみ。 チェックデジットを含まない13桁orチェックデジットを含む14桁。
172
- const regexp = /^\d{13}$|^\d{14}$/;
173
-
174
- return regexp.test(input) && validateCheckDigit(input, 14);
175
- }
176
- if (type === 'upca') {
177
- // 有効文字は数値(0-9)のみ。 チェックデジットを含まない11桁orチェックデジットを含む12桁。
178
- const regexp = /^\d{11}$|^\d{12}$/;
179
-
180
- return regexp.test(input) && validateCheckDigit(input, 12);
181
- }
182
- if (type === 'upce') {
183
- // 有効文字は数値(0-9)のみ。 1桁目に指定できる数字(ナンバーシステムキャラクタ)は0のみ。
184
- // チェックデジットを含まない7桁orチェックデジットを含む8桁。
185
- const regexp = /^0(\d{6}$|\d{7}$)/;
186
-
187
- return regexp.test(input) && validateCheckDigit(input, 8);
188
- }
189
- if (type === 'gs1datamatrix') {
190
- let ret = false;
191
- // find the GTIN application identifier, regex for "(01)" and the digits after it until another "("
192
- const regexp = /\((01)\)(\d*)(\(|$)/;
193
- let res = input.match(regexp);
194
- if (
195
- res != null &&
196
- res[1] === '01' &&
197
- (res[2].length === 14 || res[2].length === 8 || res[2].length === 12 || res[2].length === 13)
198
- ) {
199
- let gtin = res[2];
200
- ret = validateCheckDigit(gtin, gtin.length);
201
- }
202
-
203
- return ret;
204
- }
205
-
206
- return false;
207
- };
package/src/index.ts CHANGED
@@ -1,54 +1,40 @@
1
1
  import {
2
- DEFAULT_FONT_NAME,
3
- DEFAULT_FONT_SIZE,
4
- DEFAULT_ALIGNMENT,
5
- VERTICAL_ALIGN_TOP,
6
- VERTICAL_ALIGN_MIDDLE,
7
- VERTICAL_ALIGN_BOTTOM,
8
- DEFAULT_VERTICAL_ALIGNMENT,
9
- DEFAULT_LINE_HEIGHT,
10
- DEFAULT_CHARACTER_SPACING,
11
- DEFAULT_FONT_COLOR,
12
- DYNAMIC_FIT_VERTICAL,
13
- DYNAMIC_FIT_HORIZONTAL,
14
- DEFAULT_DYNAMIC_FIT,
15
- FONT_SIZE_ADJUSTMENT,
16
2
  MM_TO_PT_RATIO,
17
3
  PT_TO_MM_RATIO,
18
4
  PT_TO_PX_RATIO,
19
5
  BLANK_PDF,
20
- DEFAULT_FONT_VALUE,
6
+ ZOOM,
7
+ DEFAULT_FONT_NAME,
21
8
  } from './constants.js';
22
- import { schemaTypes, isImageSchema, isBarcodeSchema, isTextSchema } from './type.js';
23
9
  import type {
24
- FontWidthCalcValues,
10
+ ChangeSchemas,
11
+ PropPanel,
12
+ PropPanelSchema,
13
+ PropPanelWidgetProps,
14
+ PDFRenderProps,
15
+ UIRenderProps,
16
+ Plugin,
25
17
  Lang,
26
18
  Size,
27
- Alignment,
28
- SchemaType,
29
- BarCodeType,
30
- TextSchema,
31
- ImageSchema,
32
- BarcodeSchema,
33
19
  Schema,
34
- SchemaInputs,
35
20
  SchemaForUI,
36
21
  Font,
37
22
  BasePdf,
38
23
  Template,
39
- CommonProps,
40
24
  GeneratorOptions,
25
+ Plugins,
41
26
  GenerateProps,
42
27
  UIOptions,
43
28
  UIProps,
44
29
  PreviewProps,
45
- PreviewReactProps,
46
30
  DesignerProps,
47
- DesignerReactProps,
48
- } from './type.js';
31
+ } from './types.js';
49
32
  import {
33
+ getFallbackFontName,
34
+ getDefaultFont,
50
35
  getB64BasePdf,
51
36
  b64toUint8Array,
37
+ checkFont,
52
38
  checkInputs,
53
39
  checkUIOptions,
54
40
  checkTemplate,
@@ -57,59 +43,25 @@ import {
57
43
  checkDesignerProps,
58
44
  checkGenerateProps,
59
45
  mm2pt,
46
+ pt2mm,
60
47
  pt2px,
61
- validateBarcodeInput,
62
48
  } from './helper.js';
63
- import {
64
- calculateDynamicFontSize,
65
- getFallbackFontName,
66
- getDefaultFont,
67
- heightOfFontAtSize,
68
- widthOfTextAtSize,
69
- checkFont,
70
- getFontKitFont,
71
- getBrowserVerticalFontAdjustments,
72
- getFontDescentInPt,
73
- getSplittedLines,
74
- } from './font.js';
75
49
 
76
50
  export {
77
- DEFAULT_FONT_NAME,
78
- DEFAULT_FONT_SIZE,
79
- DEFAULT_ALIGNMENT,
80
- VERTICAL_ALIGN_TOP,
81
- VERTICAL_ALIGN_MIDDLE,
82
- VERTICAL_ALIGN_BOTTOM,
83
- DEFAULT_VERTICAL_ALIGNMENT,
84
- DEFAULT_LINE_HEIGHT,
85
- DEFAULT_CHARACTER_SPACING,
86
- DEFAULT_FONT_COLOR,
87
- DYNAMIC_FIT_VERTICAL,
88
- DYNAMIC_FIT_HORIZONTAL,
89
- DEFAULT_DYNAMIC_FIT,
90
- FONT_SIZE_ADJUSTMENT,
91
51
  MM_TO_PT_RATIO,
92
52
  PT_TO_MM_RATIO,
93
53
  PT_TO_PX_RATIO,
94
54
  BLANK_PDF,
95
- DEFAULT_FONT_VALUE,
96
- schemaTypes,
97
- isTextSchema,
98
- isImageSchema,
99
- isBarcodeSchema,
100
- getB64BasePdf,
101
- b64toUint8Array,
55
+ ZOOM,
56
+ DEFAULT_FONT_NAME,
102
57
  getFallbackFontName,
103
58
  getDefaultFont,
104
- getSplittedLines,
105
- heightOfFontAtSize,
106
- widthOfTextAtSize,
59
+ getB64BasePdf,
60
+ b64toUint8Array,
107
61
  mm2pt,
62
+ pt2mm,
108
63
  pt2px,
109
64
  checkFont,
110
- getBrowserVerticalFontAdjustments,
111
- getFontDescentInPt,
112
- getFontKitFont,
113
65
  checkInputs,
114
66
  checkUIOptions,
115
67
  checkTemplate,
@@ -117,33 +69,28 @@ export {
117
69
  checkPreviewProps,
118
70
  checkDesignerProps,
119
71
  checkGenerateProps,
120
- validateBarcodeInput,
121
- calculateDynamicFontSize,
122
72
  };
123
73
 
124
74
  export type {
125
75
  Lang,
126
76
  Size,
127
- Alignment,
128
- SchemaType,
129
- BarCodeType,
130
- TextSchema,
131
- ImageSchema,
132
- BarcodeSchema,
133
77
  Schema,
134
- SchemaInputs,
135
78
  SchemaForUI,
136
79
  Font,
137
80
  BasePdf,
138
81
  Template,
139
- CommonProps,
140
82
  GeneratorOptions,
83
+ Plugins,
141
84
  GenerateProps,
142
85
  UIOptions,
143
86
  UIProps,
144
87
  PreviewProps,
145
- PreviewReactProps,
146
88
  DesignerProps,
147
- DesignerReactProps,
148
- FontWidthCalcValues,
89
+ ChangeSchemas,
90
+ PropPanel,
91
+ PropPanelSchema,
92
+ PropPanelWidgetProps,
93
+ PDFRenderProps,
94
+ UIRenderProps,
95
+ Plugin,
149
96
  };
package/src/schema.ts CHANGED
@@ -1,70 +1,27 @@
1
- /* eslint dot-notation: "off"*/
2
1
  import { z } from 'zod';
3
- import { VERTICAL_ALIGN_TOP, VERTICAL_ALIGN_MIDDLE, VERTICAL_ALIGN_BOTTOM } from "./constants";
4
2
 
5
- const langs = ['en', 'ja', 'ar', 'th', 'pl'] as const;
3
+ const langs = ['en', 'ja', 'ar', 'th', 'pl', 'it'] as const;
4
+
6
5
  export const Lang = z.enum(langs);
7
6
 
8
7
  export const Size = z.object({ height: z.number(), width: z.number() });
9
8
 
10
- const alignments = ['left', 'center', 'right'] as const;
11
- export const Alignment = z.enum(alignments);
12
-
13
- const verticalAlignments = [
14
- VERTICAL_ALIGN_TOP,
15
- VERTICAL_ALIGN_MIDDLE,
16
- VERTICAL_ALIGN_BOTTOM,
17
- ] as const;
18
- export const VerticalAlignment = z.enum(verticalAlignments);
19
-
20
- // prettier-ignore
21
- export const barcodeSchemaTypes = ['qrcode', 'japanpost', 'ean13', 'ean8', 'code39', 'code128', 'nw7', 'itf14', 'upca', 'upce', 'gs1datamatrix'] as const;
22
- const notBarcodeSchemaTypes = ['text', 'image'] as const;
23
- export const schemaTypes = [...notBarcodeSchemaTypes, ...barcodeSchemaTypes] as const;
24
-
25
- export const BarcodeSchemaType = z.enum(barcodeSchemaTypes);
26
- export const SchemaType = z.enum(schemaTypes);
27
-
28
- export const CommonSchema = z.object({
29
- type: SchemaType,
30
- position: z.object({ x: z.number(), y: z.number() }),
31
- width: z.number(),
32
- height: z.number(),
33
- rotate: z.number().optional(),
34
- });
35
-
36
- export const TextSchema = CommonSchema.extend({
37
- type: z.literal(SchemaType.Enum.text),
38
- alignment: Alignment.optional(),
39
- verticalAlignment: VerticalAlignment.optional(),
40
- fontSize: z.number().optional(),
41
- fontName: z.string().optional(),
42
- fontColor: z.string().optional(),
43
- backgroundColor: z.string().optional(),
44
- characterSpacing: z.number().optional(),
45
- lineHeight: z.number().optional(),
46
- dynamicFontSize: z.object({
47
- max: z.number(),
48
- min: z.number(),
49
- fit: z.string().optional(),
50
- }).optional(),
51
- });
52
-
53
- export const ImageSchema = CommonSchema.extend({ type: z.literal(SchemaType.Enum.image) });
54
-
55
- export const BarcodeSchema = CommonSchema.extend({ type: BarcodeSchemaType });
56
-
57
- export const Schema = z.union([TextSchema, ImageSchema, BarcodeSchema]);
9
+ export const Schema = z
10
+ .object({
11
+ type: z.string(),
12
+ position: z.object({ x: z.number(), y: z.number() }),
13
+ width: z.number(),
14
+ height: z.number(),
15
+ rotate: z.number().optional(),
16
+ })
17
+ .passthrough();
58
18
 
59
19
  const SchemaForUIAdditionalInfo = z.object({
60
- id: z.string(), key: z.string(), data: z.string(),
20
+ id: z.string(),
21
+ key: z.string(),
22
+ data: z.string(),
61
23
  });
62
-
63
- export const SchemaForUI = z.union([
64
- TextSchema.merge(SchemaForUIAdditionalInfo),
65
- ImageSchema.merge(SchemaForUIAdditionalInfo),
66
- BarcodeSchema.merge(SchemaForUIAdditionalInfo),
67
- ]);
24
+ export const SchemaForUI = Schema.merge(SchemaForUIAdditionalInfo);
68
25
 
69
26
  const ArrayBufferSchema: z.ZodSchema<ArrayBuffer> = z.any().refine((v) => v instanceof ArrayBuffer);
70
27
  const Uint8ArraySchema: z.ZodSchema<Uint8Array> = z.any().refine((v) => v instanceof Uint8Array);
@@ -88,25 +45,24 @@ export const Template = z.object({
88
45
 
89
46
  export const Inputs = z.array(z.record(z.string())).min(1);
90
47
 
91
- const CommonOptions = z.object({ font: Font.optional() });
48
+ const CommonOptions = z.object({ font: Font.optional() }).passthrough();
92
49
 
93
- export const CommonProps = z.object({
50
+ const CommonProps = z.object({
94
51
  template: Template,
95
52
  options: CommonOptions.optional(),
53
+ plugins: z.record(z.object({ ui: z.any(), pdf: z.any(), propPanel: z.any() })).optional(),
96
54
  });
97
55
 
98
56
  // -------------------generate-------------------
99
57
 
100
- export const GeneratorOptions = CommonOptions;
58
+ export const GeneratorOptions = CommonOptions.extend({});
101
59
 
102
60
  export const GenerateProps = CommonProps.extend({
103
61
  inputs: Inputs,
104
62
  options: GeneratorOptions.optional(),
105
63
  }).strict();
106
64
 
107
- export const SchemaInputs = z.record(z.string());
108
-
109
- // ---------------------------------------------
65
+ // ---------------------ui------------------------
110
66
 
111
67
  export const UIOptions = CommonOptions.extend({ lang: Lang.optional() });
112
68
 
@@ -117,22 +73,6 @@ export const UIProps = CommonProps.extend({
117
73
  options: UIOptions.optional(),
118
74
  });
119
75
 
120
- // -----------------Form, Viewer-----------------
121
-
122
76
  export const PreviewProps = UIProps.extend({ inputs: Inputs }).strict();
123
- export const PreviewReactProps = PreviewProps.omit({ domContainer: true }).extend({
124
- onChangeInput: z
125
- .function()
126
- .args(z.object({ index: z.number(), value: z.string(), key: z.string() }))
127
- .returns(z.void())
128
- .optional(),
129
- size: Size,
130
- });
131
-
132
- // ---------------Designer---------------
133
77
 
134
78
  export const DesignerProps = UIProps.extend({}).strict();
135
- export const DesignerReactProps = DesignerProps.omit({ domContainer: true }).extend({
136
- onSaveTemplate: z.function().args(Template).returns(z.void()),
137
- size: Size,
138
- });