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