@pdfme/common 3.0.1-dev.23 → 3.0.1-dev.24
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/src/index.js.map +1 -1
- package/dist/cjs/src/schema.js +46 -1
- package/dist/cjs/src/schema.js.map +1 -1
- package/dist/esm/src/index.js.map +1 -1
- package/dist/esm/src/schema.js +45 -0
- package/dist/esm/src/schema.js.map +1 -1
- package/dist/types/src/index.d.ts +2 -2
- package/dist/types/src/schema.d.ts +133 -6
- package/dist/types/src/types.d.ts +20 -1
- package/package.json +1 -1
- package/src/index.ts +2 -0
- package/src/schema.ts +47 -0
- package/src/types.ts +21 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":";;;AAAA,iDAOwB;
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":";;;AAAA,iDAOwB;AA4CtB,+FAlDA,6BAAc,OAkDA;AACd,+FAlDA,6BAAc,OAkDA;AACd,+FAlDA,6BAAc,OAkDA;AACd,0FAlDA,wBAAS,OAkDA;AACT,qFAlDA,mBAAI,OAkDA;AACJ,kGAlDA,gCAAiB,OAkDA;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,9 +1,54 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
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;
|
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.Dict = exports.Lang = void 0;
|
4
4
|
const zod_1 = require("zod");
|
5
5
|
const langs = ['en', 'ja', 'ar', 'th', 'pl', 'it'];
|
6
6
|
exports.Lang = zod_1.z.enum(langs);
|
7
|
+
exports.Dict = zod_1.z.object({
|
8
|
+
// -----------------used in ui-----------------
|
9
|
+
cancel: zod_1.z.string(),
|
10
|
+
field: zod_1.z.string(),
|
11
|
+
fieldName: zod_1.z.string(),
|
12
|
+
align: zod_1.z.string(),
|
13
|
+
width: zod_1.z.string(),
|
14
|
+
height: zod_1.z.string(),
|
15
|
+
rotate: zod_1.z.string(),
|
16
|
+
edit: zod_1.z.string(),
|
17
|
+
plsInputName: zod_1.z.string(),
|
18
|
+
fieldMustUniq: zod_1.z.string(),
|
19
|
+
notUniq: zod_1.z.string(),
|
20
|
+
noKeyName: zod_1.z.string(),
|
21
|
+
fieldsList: zod_1.z.string(),
|
22
|
+
addNewField: zod_1.z.string(),
|
23
|
+
editField: zod_1.z.string(),
|
24
|
+
type: zod_1.z.string(),
|
25
|
+
errorOccurred: zod_1.z.string(),
|
26
|
+
errorBulkUpdateFieldName: zod_1.z.string(),
|
27
|
+
commitBulkUpdateFieldName: zod_1.z.string(),
|
28
|
+
bulkUpdateFieldName: zod_1.z.string(),
|
29
|
+
// -----------------used in schemas-----------------
|
30
|
+
'schemas.textColor': zod_1.z.string(),
|
31
|
+
'schemas.bgColor': zod_1.z.string(),
|
32
|
+
'schemas.horizontal': zod_1.z.string(),
|
33
|
+
'schemas.vertical': zod_1.z.string(),
|
34
|
+
'schemas.left': zod_1.z.string(),
|
35
|
+
'schemas.center': zod_1.z.string(),
|
36
|
+
'schemas.right': zod_1.z.string(),
|
37
|
+
'schemas.top': zod_1.z.string(),
|
38
|
+
'schemas.middle': zod_1.z.string(),
|
39
|
+
'schemas.bottom': zod_1.z.string(),
|
40
|
+
'schemas.text.fontName': zod_1.z.string(),
|
41
|
+
'schemas.text.size': zod_1.z.string(),
|
42
|
+
'schemas.text.spacing': zod_1.z.string(),
|
43
|
+
'schemas.text.textAlign': zod_1.z.string(),
|
44
|
+
'schemas.text.verticalAlign': zod_1.z.string(),
|
45
|
+
'schemas.text.lineHeight': zod_1.z.string(),
|
46
|
+
'schemas.text.min': zod_1.z.string(),
|
47
|
+
'schemas.text.max': zod_1.z.string(),
|
48
|
+
'schemas.text.fit': zod_1.z.string(),
|
49
|
+
'schemas.text.dynamicFontSize': zod_1.z.string(),
|
50
|
+
'schemas.barcodes.barColor': zod_1.z.string(),
|
51
|
+
});
|
7
52
|
exports.Size = zod_1.z.object({ height: zod_1.z.number(), width: zod_1.z.number() });
|
8
53
|
exports.Schema = zod_1.z
|
9
54
|
.object({
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../src/schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,MAAM,KAAK,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAU,CAAC;AAE/C,QAAA,IAAI,GAAG,OAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../src/schema.ts"],"names":[],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,cAAc,EACd,cAAc,EACd,cAAc,EACd,SAAS,EACT,IAAI,EACJ,iBAAiB,GAClB,MAAM,gBAAgB,CAAC;
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,cAAc,EACd,cAAc,EACd,cAAc,EACd,SAAS,EACT,IAAI,EACJ,iBAAiB,GAClB,MAAM,gBAAgB,CAAC;AAyBxB,OAAO,EACL,mBAAmB,EACnB,cAAc,EACd,aAAa,EACb,eAAe,EACf,SAAS,EACT,WAAW,EACX,cAAc,EACd,aAAa,EACb,YAAY,EACZ,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,KAAK,EACL,KAAK,EACL,KAAK,GACN,MAAM,aAAa,CAAC;AAErB,OAAO,EACL,cAAc,EACd,cAAc,EACd,cAAc,EACd,SAAS,EACT,IAAI,EACJ,iBAAiB,EACjB,mBAAmB,EACnB,cAAc,EACd,aAAa,EACb,eAAe,EACf,KAAK,EACL,KAAK,EACL,KAAK,EACL,SAAS,EACT,WAAW,EACX,cAAc,EACd,aAAa,EACb,YAAY,EACZ,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,GACnB,CAAC"}
|
package/dist/esm/src/schema.js
CHANGED
@@ -1,6 +1,51 @@
|
|
1
1
|
import { z } from 'zod';
|
2
2
|
const langs = ['en', 'ja', 'ar', 'th', 'pl', 'it'];
|
3
3
|
export const Lang = z.enum(langs);
|
4
|
+
export const Dict = z.object({
|
5
|
+
// -----------------used in ui-----------------
|
6
|
+
cancel: z.string(),
|
7
|
+
field: z.string(),
|
8
|
+
fieldName: z.string(),
|
9
|
+
align: z.string(),
|
10
|
+
width: z.string(),
|
11
|
+
height: z.string(),
|
12
|
+
rotate: z.string(),
|
13
|
+
edit: z.string(),
|
14
|
+
plsInputName: z.string(),
|
15
|
+
fieldMustUniq: z.string(),
|
16
|
+
notUniq: z.string(),
|
17
|
+
noKeyName: z.string(),
|
18
|
+
fieldsList: z.string(),
|
19
|
+
addNewField: z.string(),
|
20
|
+
editField: z.string(),
|
21
|
+
type: z.string(),
|
22
|
+
errorOccurred: z.string(),
|
23
|
+
errorBulkUpdateFieldName: z.string(),
|
24
|
+
commitBulkUpdateFieldName: z.string(),
|
25
|
+
bulkUpdateFieldName: z.string(),
|
26
|
+
// -----------------used in schemas-----------------
|
27
|
+
'schemas.textColor': z.string(),
|
28
|
+
'schemas.bgColor': z.string(),
|
29
|
+
'schemas.horizontal': z.string(),
|
30
|
+
'schemas.vertical': z.string(),
|
31
|
+
'schemas.left': z.string(),
|
32
|
+
'schemas.center': z.string(),
|
33
|
+
'schemas.right': z.string(),
|
34
|
+
'schemas.top': z.string(),
|
35
|
+
'schemas.middle': z.string(),
|
36
|
+
'schemas.bottom': z.string(),
|
37
|
+
'schemas.text.fontName': z.string(),
|
38
|
+
'schemas.text.size': z.string(),
|
39
|
+
'schemas.text.spacing': z.string(),
|
40
|
+
'schemas.text.textAlign': z.string(),
|
41
|
+
'schemas.text.verticalAlign': z.string(),
|
42
|
+
'schemas.text.lineHeight': z.string(),
|
43
|
+
'schemas.text.min': z.string(),
|
44
|
+
'schemas.text.max': z.string(),
|
45
|
+
'schemas.text.fit': z.string(),
|
46
|
+
'schemas.text.dynamicFontSize': z.string(),
|
47
|
+
'schemas.barcodes.barColor': z.string(),
|
48
|
+
});
|
4
49
|
export const Size = z.object({ height: z.number(), width: z.number() });
|
5
50
|
export const Schema = z
|
6
51
|
.object({
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../src/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,KAAK,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAU,CAAC;AAE5D,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../src/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,KAAK,GAAG,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAU,CAAC;AAE5D,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;AAClC,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3B,+CAA+C;IAC/C,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE;IACpC,yBAAyB,EAAE,CAAC,CAAC,MAAM,EAAE;IACrC,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC/B,oDAAoD;IACpD,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC/B,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC7B,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE;IAChC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE;IAC1B,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5B,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE;IAC3B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5B,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE;IAE5B,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE;IACnC,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC/B,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE;IAClC,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE;IACpC,4BAA4B,EAAE,CAAC,CAAC,MAAM,EAAE;IACxC,yBAAyB,EAAE,CAAC,CAAC,MAAM,EAAE;IACrC,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,8BAA8B,EAAE,CAAC,CAAC,MAAM,EAAE;IAE1C,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE;CACxC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;AAExE,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC;KACpB,MAAM,CAAC;IACN,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC;IACpD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE;IACf,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AACH,MAAM,CAAC,MAAM,WAAW,GAAG,MAAM,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC;AAEnE,MAAM,iBAAiB,GAA6B,CAAC,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,YAAY,WAAW,CAAC,CAAC;AACpG,MAAM,gBAAgB,GAA4B,CAAC,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,YAAY,UAAU,CAAC,CAAC;AAEjG,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,CAAC,MAAM,CAC1B,CAAC,CAAC,MAAM,CAAC;IACP,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,iBAAiB,EAAE,gBAAgB,CAAC,CAAC;IAChE,QAAQ,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAChC,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CAC/B,CAAC,CACH,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,iBAAiB,EAAE,gBAAgB,CAAC,CAAC,CAAC;AAElF,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/B,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAClC,OAAO,EAAE,OAAO;IAChB,UAAU,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC9D,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;CACxC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;AAE3D,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,WAAW,EAAE,CAAC;AAExE,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3B,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,aAAa,CAAC,QAAQ,EAAE;IACjC,OAAO,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,GAAG,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,GAAG,EAAE,EAAE,SAAS,EAAE,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;CAC1F,CAAC,CAAC;AAEH,iDAAiD;AAEjD,MAAM,CAAC,MAAM,gBAAgB,GAAG,aAAa,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AAEzD,MAAM,CAAC,MAAM,aAAa,GAAG,WAAW,CAAC,MAAM,CAAC;IAC9C,MAAM,EAAE,MAAM;IACd,OAAO,EAAE,gBAAgB,CAAC,QAAQ,EAAE;CACrC,CAAC,CAAC,MAAM,EAAE,CAAC;AAEZ,kDAAkD;AAElD,MAAM,CAAC,MAAM,SAAS,GAAG,aAAa,CAAC,MAAM,CAAC;IAC5C,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE;IACrB,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACnD,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE;CACpD,CAAC,CAAC;AAEH,MAAM,iBAAiB,GAA6B,CAAC,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,YAAY,WAAW,CAAC,CAAC;AAEpG,MAAM,CAAC,MAAM,OAAO,GAAG,WAAW,CAAC,MAAM,CAAC;IACxC,YAAY,EAAE,iBAAiB;IAC/B,OAAO,EAAE,SAAS,CAAC,QAAQ,EAAE;CAC9B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,YAAY,GAAG,OAAO,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC;AAExE,MAAM,CAAC,MAAM,aAAa,GAAG,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC"}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { MM_TO_PT_RATIO, PT_TO_MM_RATIO, PT_TO_PX_RATIO, BLANK_PDF, ZOOM, DEFAULT_FONT_NAME } from './constants.js';
|
2
|
-
import type { ChangeSchemas, PropPanel, PropPanelSchema, PropPanelWidgetProps, PDFRenderProps, UIRenderProps, Plugin, Lang, Size, Schema, SchemaForUI, Font, BasePdf, Template, GeneratorOptions, Plugins, GenerateProps, UIOptions, UIProps, PreviewProps, DesignerProps } from './types.js';
|
2
|
+
import type { ChangeSchemas, PropPanel, PropPanelSchema, PropPanelWidgetProps, PDFRenderProps, UIRenderProps, Plugin, Lang, Dict, Size, Schema, SchemaForUI, Font, BasePdf, Template, GeneratorOptions, Plugins, GenerateProps, UIOptions, UIProps, PreviewProps, DesignerProps } from './types.js';
|
3
3
|
import { getFallbackFontName, getDefaultFont, getB64BasePdf, b64toUint8Array, checkFont, checkInputs, checkUIOptions, checkTemplate, checkUIProps, checkPreviewProps, checkDesignerProps, checkGenerateProps, mm2pt, pt2mm, pt2px } from './helper.js';
|
4
4
|
export { MM_TO_PT_RATIO, PT_TO_MM_RATIO, PT_TO_PX_RATIO, BLANK_PDF, ZOOM, DEFAULT_FONT_NAME, getFallbackFontName, getDefaultFont, getB64BasePdf, b64toUint8Array, mm2pt, pt2mm, pt2px, checkFont, checkInputs, checkUIOptions, checkTemplate, checkUIProps, checkPreviewProps, checkDesignerProps, checkGenerateProps, };
|
5
|
-
export type { Lang, Size, Schema, SchemaForUI, Font, BasePdf, Template, GeneratorOptions, Plugins, GenerateProps, UIOptions, UIProps, PreviewProps, DesignerProps, ChangeSchemas, PropPanel, PropPanelSchema, PropPanelWidgetProps, PDFRenderProps, UIRenderProps, Plugin, };
|
5
|
+
export type { Lang, Dict, Size, Schema, SchemaForUI, Font, BasePdf, Template, GeneratorOptions, Plugins, GenerateProps, UIOptions, UIProps, PreviewProps, DesignerProps, ChangeSchemas, PropPanel, PropPanelSchema, PropPanelWidgetProps, PDFRenderProps, UIRenderProps, Plugin, };
|
@@ -1,14 +1,141 @@
|
|
1
1
|
import { z } from 'zod';
|
2
2
|
export declare const Lang: z.ZodEnum<["en", "ja", "ar", "th", "pl", "it"]>;
|
3
|
+
export declare const Dict: z.ZodObject<{
|
4
|
+
cancel: z.ZodString;
|
5
|
+
field: z.ZodString;
|
6
|
+
fieldName: z.ZodString;
|
7
|
+
align: z.ZodString;
|
8
|
+
width: z.ZodString;
|
9
|
+
height: z.ZodString;
|
10
|
+
rotate: z.ZodString;
|
11
|
+
edit: z.ZodString;
|
12
|
+
plsInputName: z.ZodString;
|
13
|
+
fieldMustUniq: z.ZodString;
|
14
|
+
notUniq: z.ZodString;
|
15
|
+
noKeyName: z.ZodString;
|
16
|
+
fieldsList: z.ZodString;
|
17
|
+
addNewField: z.ZodString;
|
18
|
+
editField: z.ZodString;
|
19
|
+
type: z.ZodString;
|
20
|
+
errorOccurred: z.ZodString;
|
21
|
+
errorBulkUpdateFieldName: z.ZodString;
|
22
|
+
commitBulkUpdateFieldName: z.ZodString;
|
23
|
+
bulkUpdateFieldName: z.ZodString;
|
24
|
+
'schemas.textColor': z.ZodString;
|
25
|
+
'schemas.bgColor': z.ZodString;
|
26
|
+
'schemas.horizontal': z.ZodString;
|
27
|
+
'schemas.vertical': z.ZodString;
|
28
|
+
'schemas.left': z.ZodString;
|
29
|
+
'schemas.center': z.ZodString;
|
30
|
+
'schemas.right': z.ZodString;
|
31
|
+
'schemas.top': z.ZodString;
|
32
|
+
'schemas.middle': z.ZodString;
|
33
|
+
'schemas.bottom': z.ZodString;
|
34
|
+
'schemas.text.fontName': z.ZodString;
|
35
|
+
'schemas.text.size': z.ZodString;
|
36
|
+
'schemas.text.spacing': z.ZodString;
|
37
|
+
'schemas.text.textAlign': z.ZodString;
|
38
|
+
'schemas.text.verticalAlign': z.ZodString;
|
39
|
+
'schemas.text.lineHeight': z.ZodString;
|
40
|
+
'schemas.text.min': z.ZodString;
|
41
|
+
'schemas.text.max': z.ZodString;
|
42
|
+
'schemas.text.fit': z.ZodString;
|
43
|
+
'schemas.text.dynamicFontSize': z.ZodString;
|
44
|
+
'schemas.barcodes.barColor': z.ZodString;
|
45
|
+
}, "strip", z.ZodTypeAny, {
|
46
|
+
cancel: string;
|
47
|
+
field: string;
|
48
|
+
fieldName: string;
|
49
|
+
align: string;
|
50
|
+
width: string;
|
51
|
+
height: string;
|
52
|
+
rotate: string;
|
53
|
+
edit: string;
|
54
|
+
plsInputName: string;
|
55
|
+
fieldMustUniq: string;
|
56
|
+
notUniq: string;
|
57
|
+
noKeyName: string;
|
58
|
+
fieldsList: string;
|
59
|
+
addNewField: string;
|
60
|
+
editField: string;
|
61
|
+
type: string;
|
62
|
+
errorOccurred: string;
|
63
|
+
errorBulkUpdateFieldName: string;
|
64
|
+
commitBulkUpdateFieldName: string;
|
65
|
+
bulkUpdateFieldName: string;
|
66
|
+
'schemas.textColor': string;
|
67
|
+
'schemas.bgColor': string;
|
68
|
+
'schemas.horizontal': string;
|
69
|
+
'schemas.vertical': string;
|
70
|
+
'schemas.left': string;
|
71
|
+
'schemas.center': string;
|
72
|
+
'schemas.right': string;
|
73
|
+
'schemas.top': string;
|
74
|
+
'schemas.middle': string;
|
75
|
+
'schemas.bottom': string;
|
76
|
+
'schemas.text.fontName': string;
|
77
|
+
'schemas.text.size': string;
|
78
|
+
'schemas.text.spacing': string;
|
79
|
+
'schemas.text.textAlign': string;
|
80
|
+
'schemas.text.verticalAlign': string;
|
81
|
+
'schemas.text.lineHeight': string;
|
82
|
+
'schemas.text.min': string;
|
83
|
+
'schemas.text.max': string;
|
84
|
+
'schemas.text.fit': string;
|
85
|
+
'schemas.text.dynamicFontSize': string;
|
86
|
+
'schemas.barcodes.barColor': string;
|
87
|
+
}, {
|
88
|
+
cancel: string;
|
89
|
+
field: string;
|
90
|
+
fieldName: string;
|
91
|
+
align: string;
|
92
|
+
width: string;
|
93
|
+
height: string;
|
94
|
+
rotate: string;
|
95
|
+
edit: string;
|
96
|
+
plsInputName: string;
|
97
|
+
fieldMustUniq: string;
|
98
|
+
notUniq: string;
|
99
|
+
noKeyName: string;
|
100
|
+
fieldsList: string;
|
101
|
+
addNewField: string;
|
102
|
+
editField: string;
|
103
|
+
type: string;
|
104
|
+
errorOccurred: string;
|
105
|
+
errorBulkUpdateFieldName: string;
|
106
|
+
commitBulkUpdateFieldName: string;
|
107
|
+
bulkUpdateFieldName: string;
|
108
|
+
'schemas.textColor': string;
|
109
|
+
'schemas.bgColor': string;
|
110
|
+
'schemas.horizontal': string;
|
111
|
+
'schemas.vertical': string;
|
112
|
+
'schemas.left': string;
|
113
|
+
'schemas.center': string;
|
114
|
+
'schemas.right': string;
|
115
|
+
'schemas.top': string;
|
116
|
+
'schemas.middle': string;
|
117
|
+
'schemas.bottom': string;
|
118
|
+
'schemas.text.fontName': string;
|
119
|
+
'schemas.text.size': string;
|
120
|
+
'schemas.text.spacing': string;
|
121
|
+
'schemas.text.textAlign': string;
|
122
|
+
'schemas.text.verticalAlign': string;
|
123
|
+
'schemas.text.lineHeight': string;
|
124
|
+
'schemas.text.min': string;
|
125
|
+
'schemas.text.max': string;
|
126
|
+
'schemas.text.fit': string;
|
127
|
+
'schemas.text.dynamicFontSize': string;
|
128
|
+
'schemas.barcodes.barColor': string;
|
129
|
+
}>;
|
3
130
|
export declare const Size: z.ZodObject<{
|
4
131
|
height: z.ZodNumber;
|
5
132
|
width: z.ZodNumber;
|
6
133
|
}, "strip", z.ZodTypeAny, {
|
7
|
-
height: number;
|
8
134
|
width: number;
|
9
|
-
}, {
|
10
135
|
height: number;
|
136
|
+
}, {
|
11
137
|
width: number;
|
138
|
+
height: number;
|
12
139
|
}>;
|
13
140
|
export declare const Schema: z.ZodObject<{
|
14
141
|
type: z.ZodString;
|
@@ -57,8 +184,9 @@ export declare const Schema: z.ZodObject<{
|
|
57
184
|
rotate: z.ZodOptional<z.ZodNumber>;
|
58
185
|
}, z.ZodTypeAny, "passthrough">>;
|
59
186
|
export declare const SchemaForUI: z.ZodObject<{
|
60
|
-
height: z.ZodNumber;
|
61
187
|
width: z.ZodNumber;
|
188
|
+
height: z.ZodNumber;
|
189
|
+
rotate: z.ZodOptional<z.ZodNumber>;
|
62
190
|
type: z.ZodString;
|
63
191
|
position: z.ZodObject<{
|
64
192
|
x: z.ZodNumber;
|
@@ -70,13 +198,12 @@ export declare const SchemaForUI: z.ZodObject<{
|
|
70
198
|
x: number;
|
71
199
|
y: number;
|
72
200
|
}>;
|
73
|
-
rotate: z.ZodOptional<z.ZodNumber>;
|
74
201
|
id: z.ZodString;
|
75
202
|
key: z.ZodString;
|
76
203
|
data: z.ZodString;
|
77
204
|
}, "strip", z.ZodTypeAny, {
|
78
|
-
height: number;
|
79
205
|
width: number;
|
206
|
+
height: number;
|
80
207
|
type: string;
|
81
208
|
position: {
|
82
209
|
x: number;
|
@@ -87,8 +214,8 @@ export declare const SchemaForUI: z.ZodObject<{
|
|
87
214
|
key: string;
|
88
215
|
rotate?: number | undefined;
|
89
216
|
}, {
|
90
|
-
height: number;
|
91
217
|
width: number;
|
218
|
+
height: number;
|
92
219
|
type: string;
|
93
220
|
position: {
|
94
221
|
x: number;
|
@@ -2,7 +2,7 @@ import { z } from 'zod';
|
|
2
2
|
import type { PDFPage, PDFDocument } from '@pdfme/pdf-lib';
|
3
3
|
import type { ThemeConfig, GlobalToken } from 'antd';
|
4
4
|
import type { WidgetProps as _PropPanelWidgetProps, Schema as _PropPanelSchema } from 'form-render';
|
5
|
-
import { Lang, Size, Schema, Font, SchemaForUI, BasePdf, Template, GeneratorOptions, GenerateProps, UIOptions, UIProps, PreviewProps, DesignerProps } from './schema.js';
|
5
|
+
import { Lang, Dict, Size, Schema, Font, SchemaForUI, BasePdf, Template, GeneratorOptions, GenerateProps, UIOptions, UIProps, PreviewProps, DesignerProps } from './schema.js';
|
6
6
|
export type PropPanelSchema = _PropPanelSchema;
|
7
7
|
export type ChangeSchemas = (objs: {
|
8
8
|
key: string;
|
@@ -42,6 +42,8 @@ export interface PDFRenderProps<T extends Schema> {
|
|
42
42
|
* @property {(value: string) => void} [onChange] - Used to change the value. Only applicable when the mode is 'form' or 'designer'.
|
43
43
|
* @property {HTMLDivElement} rootElement - The root HTMLDivElement for the UI.
|
44
44
|
* @property {UIOptions} options - Options object passed from the Viewer, Form, or Designer.
|
45
|
+
* @property {ThemeConfig} theme - An object that merges the 'theme' passed as an options with the default theme.
|
46
|
+
* @property {(key: keyof Dict | string) => string} i18n - An object merged based on the options 'lang' and 'labels'.
|
45
47
|
*/
|
46
48
|
export type UIRenderProps<T extends Schema> = {
|
47
49
|
schema: T;
|
@@ -54,7 +56,21 @@ export type UIRenderProps<T extends Schema> = {
|
|
54
56
|
rootElement: HTMLDivElement;
|
55
57
|
options: UIOptions;
|
56
58
|
theme: GlobalToken;
|
59
|
+
i18n: (key: keyof Dict | string) => string;
|
57
60
|
};
|
61
|
+
/**
|
62
|
+
* Type for properties used in configuring the property panel.
|
63
|
+
*
|
64
|
+
* @property {HTMLDivElement} rootElement - The root HTML element of the property panel.
|
65
|
+
* @property {SchemaForUI} activeSchema - The currently active schema for UI rendering.
|
66
|
+
* @property {HTMLElement[]} activeElements - Array of currently active HTML elements in the UI.
|
67
|
+
* @property {ChangeSchemas} changeSchemas - Function to change multiple schemas simultaneously.
|
68
|
+
* @property {SchemaForUI[]} schemas - Array of schemas for UI rendering.
|
69
|
+
* @property {Size} pageSize - The size of the page being edited.
|
70
|
+
* @property {UIOptions} options - UI options for the property panel.
|
71
|
+
* @property {GlobalToken} theme - The theme configuration used in the UI.
|
72
|
+
* @property {(key: keyof Dict | string) => string} i18n - Internationalization dictionary for UI labels and texts.
|
73
|
+
*/
|
58
74
|
type PropPanelProps = {
|
59
75
|
rootElement: HTMLDivElement;
|
60
76
|
activeSchema: SchemaForUI;
|
@@ -63,6 +79,8 @@ type PropPanelProps = {
|
|
63
79
|
schemas: SchemaForUI[];
|
64
80
|
pageSize: Size;
|
65
81
|
options: UIOptions;
|
82
|
+
theme: GlobalToken;
|
83
|
+
i18n: (key: keyof Dict | string) => string;
|
66
84
|
};
|
67
85
|
export type PropPanelWidgetProps = _PropPanelWidgetProps & PropPanelProps;
|
68
86
|
/**
|
@@ -99,6 +117,7 @@ export type Plugins = {
|
|
99
117
|
[key: string]: Plugin<any> | undefined;
|
100
118
|
};
|
101
119
|
export type Lang = z.infer<typeof Lang>;
|
120
|
+
export type Dict = z.infer<typeof Dict>;
|
102
121
|
export type Size = z.infer<typeof Size>;
|
103
122
|
export type Schema = z.infer<typeof Schema>;
|
104
123
|
export type SchemaForUI = z.infer<typeof SchemaForUI>;
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
package/src/schema.ts
CHANGED
@@ -3,6 +3,53 @@ import { z } from 'zod';
|
|
3
3
|
const langs = ['en', 'ja', 'ar', 'th', 'pl', 'it'] as const;
|
4
4
|
|
5
5
|
export const Lang = z.enum(langs);
|
6
|
+
export const Dict = z.object({
|
7
|
+
// -----------------used in ui-----------------
|
8
|
+
cancel: z.string(),
|
9
|
+
field: z.string(),
|
10
|
+
fieldName: z.string(),
|
11
|
+
align: z.string(),
|
12
|
+
width: z.string(),
|
13
|
+
height: z.string(),
|
14
|
+
rotate: z.string(),
|
15
|
+
edit: z.string(),
|
16
|
+
plsInputName: z.string(),
|
17
|
+
fieldMustUniq: z.string(),
|
18
|
+
notUniq: z.string(),
|
19
|
+
noKeyName: z.string(),
|
20
|
+
fieldsList: z.string(),
|
21
|
+
addNewField: z.string(),
|
22
|
+
editField: z.string(),
|
23
|
+
type: z.string(),
|
24
|
+
errorOccurred: z.string(),
|
25
|
+
errorBulkUpdateFieldName: z.string(),
|
26
|
+
commitBulkUpdateFieldName: z.string(),
|
27
|
+
bulkUpdateFieldName: z.string(),
|
28
|
+
// -----------------used in schemas-----------------
|
29
|
+
'schemas.textColor': z.string(),
|
30
|
+
'schemas.bgColor': z.string(),
|
31
|
+
'schemas.horizontal': z.string(),
|
32
|
+
'schemas.vertical': z.string(),
|
33
|
+
'schemas.left': z.string(),
|
34
|
+
'schemas.center': z.string(),
|
35
|
+
'schemas.right': z.string(),
|
36
|
+
'schemas.top': z.string(),
|
37
|
+
'schemas.middle': z.string(),
|
38
|
+
'schemas.bottom': z.string(),
|
39
|
+
|
40
|
+
'schemas.text.fontName': z.string(),
|
41
|
+
'schemas.text.size': z.string(),
|
42
|
+
'schemas.text.spacing': z.string(),
|
43
|
+
'schemas.text.textAlign': z.string(),
|
44
|
+
'schemas.text.verticalAlign': z.string(),
|
45
|
+
'schemas.text.lineHeight': z.string(),
|
46
|
+
'schemas.text.min': z.string(),
|
47
|
+
'schemas.text.max': z.string(),
|
48
|
+
'schemas.text.fit': z.string(),
|
49
|
+
'schemas.text.dynamicFontSize': z.string(),
|
50
|
+
|
51
|
+
'schemas.barcodes.barColor': z.string(),
|
52
|
+
});
|
6
53
|
|
7
54
|
export const Size = z.object({ height: z.number(), width: z.number() });
|
8
55
|
|
package/src/types.ts
CHANGED
@@ -3,7 +3,7 @@ import type { PDFPage, PDFDocument } from '@pdfme/pdf-lib';
|
|
3
3
|
import type { ThemeConfig, GlobalToken } from 'antd';
|
4
4
|
import type { WidgetProps as _PropPanelWidgetProps, Schema as _PropPanelSchema } from 'form-render';
|
5
5
|
// prettier-ignore
|
6
|
-
import {Lang, Size, Schema, Font, SchemaForUI, BasePdf, Template, GeneratorOptions, GenerateProps, UIOptions, UIProps, PreviewProps, DesignerProps} from './schema.js';
|
6
|
+
import {Lang, Dict, Size, Schema, Font, SchemaForUI, BasePdf, Template, GeneratorOptions, GenerateProps, UIOptions, UIProps, PreviewProps, DesignerProps} from './schema.js';
|
7
7
|
|
8
8
|
export type PropPanelSchema = _PropPanelSchema;
|
9
9
|
export type ChangeSchemas = (objs: { key: string; value: any; schemaId: string }[]) => void;
|
@@ -43,6 +43,8 @@ export interface PDFRenderProps<T extends Schema> {
|
|
43
43
|
* @property {(value: string) => void} [onChange] - Used to change the value. Only applicable when the mode is 'form' or 'designer'.
|
44
44
|
* @property {HTMLDivElement} rootElement - The root HTMLDivElement for the UI.
|
45
45
|
* @property {UIOptions} options - Options object passed from the Viewer, Form, or Designer.
|
46
|
+
* @property {ThemeConfig} theme - An object that merges the 'theme' passed as an options with the default theme.
|
47
|
+
* @property {(key: keyof Dict | string) => string} i18n - An object merged based on the options 'lang' and 'labels'.
|
46
48
|
*/
|
47
49
|
export type UIRenderProps<T extends Schema> = {
|
48
50
|
schema: T;
|
@@ -55,8 +57,22 @@ export type UIRenderProps<T extends Schema> = {
|
|
55
57
|
rootElement: HTMLDivElement;
|
56
58
|
options: UIOptions;
|
57
59
|
theme: GlobalToken;
|
60
|
+
i18n: (key: keyof Dict | string) => string;
|
58
61
|
};
|
59
62
|
|
63
|
+
/**
|
64
|
+
* Type for properties used in configuring the property panel.
|
65
|
+
*
|
66
|
+
* @property {HTMLDivElement} rootElement - The root HTML element of the property panel.
|
67
|
+
* @property {SchemaForUI} activeSchema - The currently active schema for UI rendering.
|
68
|
+
* @property {HTMLElement[]} activeElements - Array of currently active HTML elements in the UI.
|
69
|
+
* @property {ChangeSchemas} changeSchemas - Function to change multiple schemas simultaneously.
|
70
|
+
* @property {SchemaForUI[]} schemas - Array of schemas for UI rendering.
|
71
|
+
* @property {Size} pageSize - The size of the page being edited.
|
72
|
+
* @property {UIOptions} options - UI options for the property panel.
|
73
|
+
* @property {GlobalToken} theme - The theme configuration used in the UI.
|
74
|
+
* @property {(key: keyof Dict | string) => string} i18n - Internationalization dictionary for UI labels and texts.
|
75
|
+
*/
|
60
76
|
type PropPanelProps = {
|
61
77
|
rootElement: HTMLDivElement;
|
62
78
|
activeSchema: SchemaForUI;
|
@@ -65,7 +81,10 @@ type PropPanelProps = {
|
|
65
81
|
schemas: SchemaForUI[];
|
66
82
|
pageSize: Size;
|
67
83
|
options: UIOptions;
|
84
|
+
theme: GlobalToken;
|
85
|
+
i18n: (key: keyof Dict | string) => string;
|
68
86
|
};
|
87
|
+
|
69
88
|
export type PropPanelWidgetProps = _PropPanelWidgetProps & PropPanelProps;
|
70
89
|
|
71
90
|
/**
|
@@ -104,6 +123,7 @@ export type Plugin<T extends Schema & { [key: string]: any }> = {
|
|
104
123
|
export type Plugins = { [key: string]: Plugin<any> | undefined };
|
105
124
|
|
106
125
|
export type Lang = z.infer<typeof Lang>;
|
126
|
+
export type Dict = z.infer<typeof Dict>;
|
107
127
|
export type Size = z.infer<typeof Size>;
|
108
128
|
export type Schema = z.infer<typeof Schema>;
|
109
129
|
export type SchemaForUI = z.infer<typeof SchemaForUI>;
|