@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
@@ -0,0 +1,127 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
import type { PDFPage, PDFDocument } from '@pdfme/pdf-lib';
|
3
|
+
import type { WidgetProps as _PropPanelWidgetProps, Schema as _PropPanelSchema } from 'form-render';
|
4
|
+
import { Lang, Size, Schema, Font, SchemaForUI, BasePdf, Template, GeneratorOptions, GenerateProps, UIOptions, UIProps, PreviewProps, DesignerProps } from './schema.js';
|
5
|
+
export type PropPanelSchema = _PropPanelSchema;
|
6
|
+
export type ChangeSchemas = (objs: {
|
7
|
+
key: string;
|
8
|
+
value: any;
|
9
|
+
schemaId: string;
|
10
|
+
}[]) => void;
|
11
|
+
/**
|
12
|
+
* Properties used for PDF rendering.
|
13
|
+
* @template T Type of the extended Schema object.
|
14
|
+
* @property {string} value The string used for PDF rendering.
|
15
|
+
* @property {T} schema Extended Schema object for rendering.
|
16
|
+
* @property {typeof import('@pdfme/pdf-lib')} pdfLib The pdf-lib library used for rendering.
|
17
|
+
* @property {PDFDocument} pdfDoc PDFDocument object from pdf-lib.
|
18
|
+
* @property {PDFPage} page PDFPage object from pdf-lib.
|
19
|
+
* @property {GeneratorOptions} options Options object passed from the generator.
|
20
|
+
* @property {Map<string, any>} _cache Cache shared only during the execution of the generate function (useful for caching images, etc. if needed).
|
21
|
+
*/
|
22
|
+
export interface PDFRenderProps<T extends Schema> {
|
23
|
+
value: string;
|
24
|
+
schema: T;
|
25
|
+
pdfLib: typeof import('@pdfme/pdf-lib');
|
26
|
+
pdfDoc: PDFDocument;
|
27
|
+
page: PDFPage;
|
28
|
+
options: GeneratorOptions;
|
29
|
+
_cache: Map<string, any>;
|
30
|
+
}
|
31
|
+
/**
|
32
|
+
* Type for properties used in UI rendering.
|
33
|
+
*
|
34
|
+
* @template T - Type of the extended Schema object.
|
35
|
+
* @property {T} schema - Extended Schema object for rendering.
|
36
|
+
* @property {'viewer' | 'form' | 'designer'} mode - String indicating the rendering state. 'designer' is only used when the field is in edit mode in the Designer.
|
37
|
+
* @property {number} [tabIndex] - Tab index for Form.
|
38
|
+
* @property {string} [placeholder] - Placeholder text for Form.
|
39
|
+
* @property {() => void} [stopEditing] - Stops editing mode, can be used when the mode is 'designer'.
|
40
|
+
* @property {string} value - The string used for UI rendering.
|
41
|
+
* @property {(value: string) => void} [onChange] - Used to change the value. Only applicable when the mode is 'form' or 'designer'.
|
42
|
+
* @property {HTMLDivElement} rootElement - The root HTMLDivElement for the UI.
|
43
|
+
* @property {UIOptions} options - Options object passed from the Viewer, Form, or Designer.
|
44
|
+
*/
|
45
|
+
export type UIRenderProps<T extends Schema> = {
|
46
|
+
schema: T;
|
47
|
+
mode: 'viewer' | 'form' | 'designer';
|
48
|
+
tabIndex?: number;
|
49
|
+
placeholder?: string;
|
50
|
+
stopEditing?: () => void;
|
51
|
+
value: string;
|
52
|
+
onChange?: (value: string) => void;
|
53
|
+
rootElement: HTMLDivElement;
|
54
|
+
options: UIOptions;
|
55
|
+
};
|
56
|
+
type PropPanelProps = {
|
57
|
+
rootElement: HTMLDivElement;
|
58
|
+
activeSchema: SchemaForUI;
|
59
|
+
activeElements: HTMLElement[];
|
60
|
+
changeSchemas: ChangeSchemas;
|
61
|
+
schemas: SchemaForUI[];
|
62
|
+
pageSize: Size;
|
63
|
+
options: UIOptions;
|
64
|
+
};
|
65
|
+
export type PropPanelWidgetProps = _PropPanelWidgetProps & PropPanelProps;
|
66
|
+
/**
|
67
|
+
* Used for customizing the property panel.
|
68
|
+
* @template T - Type of the extended Schema object.
|
69
|
+
* @property {Record<string, PropPanelSchema> | ((propPanelProps: Omit<PropPanelProps, 'rootElement'>) => Record<string, PropPanelSchema>)} propPanelSchema - A function returning a form-render schema object or the schema object itself. When a function, it takes properties passed from the designer as arguments.
|
70
|
+
* @property {Record<string, (props: PropPanelWidgetProps) => void>} [widgets] - An object of functions returning form-render widgets. The functions take, as arguments, both form-render's WidgetProps and properties passed from the designer.
|
71
|
+
* @property {string} defaultValue - The default input value set when adding the schema.
|
72
|
+
* @property {T} defaultSchema - The default schema set when adding the schema.
|
73
|
+
*/
|
74
|
+
export interface PropPanel<T extends Schema> {
|
75
|
+
propPanelSchema: ((propPanelProps: Omit<PropPanelProps, 'rootElement'>) => Record<string, PropPanelSchema>) | Record<string, PropPanelSchema>;
|
76
|
+
widgets?: Record<string, (props: PropPanelWidgetProps) => void>;
|
77
|
+
defaultValue: string;
|
78
|
+
defaultSchema: T;
|
79
|
+
}
|
80
|
+
/**
|
81
|
+
* The Plugin interface is used for PDF and UI rendering, as well as defining the property panel.
|
82
|
+
* The 'pdf' is used in the generator package, 'ui' is used in the viewer, form, and designer packages, and 'propPanel' is used in the designer package.
|
83
|
+
* Objects defined as Plugins using this interface can be used with a consistent interface across all packages.
|
84
|
+
* @template T Type of the extended Schema object.
|
85
|
+
* @property {function} pdf Function for rendering PDFs.
|
86
|
+
* @property {function} ui Function for rendering UI.
|
87
|
+
* @property {PropPanel} propPanel Object for defining the property panel.
|
88
|
+
*/
|
89
|
+
export type Plugin<T extends Schema & {
|
90
|
+
[key: string]: any;
|
91
|
+
}> = {
|
92
|
+
pdf: (arg: PDFRenderProps<T>) => Promise<void>;
|
93
|
+
ui: (arg: UIRenderProps<T>) => Promise<void>;
|
94
|
+
propPanel: PropPanel<T>;
|
95
|
+
};
|
96
|
+
export type Plugins = {
|
97
|
+
[key: string]: Plugin<any> | undefined;
|
98
|
+
};
|
99
|
+
export type Lang = z.infer<typeof Lang>;
|
100
|
+
export type Size = z.infer<typeof Size>;
|
101
|
+
export type Schema = z.infer<typeof Schema>;
|
102
|
+
export type SchemaForUI = z.infer<typeof SchemaForUI>;
|
103
|
+
/**
|
104
|
+
* Represents the Font type definition.
|
105
|
+
* @property {Object} [x: string] - Object key is the font name.
|
106
|
+
* @property {(string | ArrayBuffer | Uint8Array)} data - The font data.
|
107
|
+
* @property {boolean} [fallback] - Please set to true for the fallback font when no font is specified. Only one value within the given Font object needs to be set to true.
|
108
|
+
* @property {boolean} [subset] - The default is true (use subset font). So if you don't want to use a subset font, please set it to false.
|
109
|
+
*/
|
110
|
+
export type Font = z.infer<typeof Font>;
|
111
|
+
export type BasePdf = z.infer<typeof BasePdf>;
|
112
|
+
export type Template = z.infer<typeof Template>;
|
113
|
+
export type GeneratorOptions = z.infer<typeof GeneratorOptions>;
|
114
|
+
export type GenerateProps = z.infer<typeof GenerateProps> & {
|
115
|
+
plugins?: Plugins;
|
116
|
+
};
|
117
|
+
export type UIOptions = z.infer<typeof UIOptions>;
|
118
|
+
export type UIProps = z.infer<typeof UIProps> & {
|
119
|
+
plugins?: Plugins;
|
120
|
+
};
|
121
|
+
export type PreviewProps = z.infer<typeof PreviewProps> & {
|
122
|
+
plugins?: Plugins;
|
123
|
+
};
|
124
|
+
export type DesignerProps = z.infer<typeof DesignerProps> & {
|
125
|
+
plugins?: Plugins;
|
126
|
+
};
|
127
|
+
export {};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pdfme/common",
|
3
|
-
"version": "
|
3
|
+
"version": "3.0.0-beta.1",
|
4
4
|
"sideEffects": false,
|
5
5
|
"author": "hand-dot",
|
6
6
|
"license": "MIT",
|
@@ -43,11 +43,13 @@
|
|
43
43
|
"test": "jest",
|
44
44
|
"lint:watch": "tsc -w --noEmit",
|
45
45
|
"test:watch": "jest --coverage --watch",
|
46
|
-
"prune": "ts-prune src"
|
46
|
+
"prune": "ts-prune src",
|
47
|
+
"prettier": "prettier --write 'src/**/*.ts'"
|
47
48
|
},
|
48
49
|
"dependencies": {
|
50
|
+
"@pdfme/pdf-lib": "^1.17.3",
|
49
51
|
"buffer": "^6.0.3",
|
50
|
-
"
|
52
|
+
"form-render": "^2.2.20",
|
51
53
|
"zod": "^3.20.2"
|
52
54
|
},
|
53
55
|
"jest": {
|
@@ -70,8 +72,5 @@
|
|
70
72
|
},
|
71
73
|
"publishConfig": {
|
72
74
|
"access": "public"
|
73
|
-
},
|
74
|
-
"devDependencies": {
|
75
|
-
"@types/fontkit": "^2.0.3"
|
76
75
|
}
|
77
76
|
}
|