@pdfme/common 3.1.2-dev.3 → 3.1.2-dev.5

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.
@@ -12,6 +12,7 @@ export type ChangeSchemas = (objs: {
12
12
  /**
13
13
  * Properties used for PDF rendering.
14
14
  * @template T Type of the extended Schema object.
15
+ * @property {string} key The key of the schema object.
15
16
  * @property {string} value The string used for PDF rendering.
16
17
  * @property {T} schema Extended Schema object for rendering.
17
18
  * @property {typeof import('@pdfme/pdf-lib')} pdfLib The pdf-lib library used for rendering.
@@ -21,6 +22,7 @@ export type ChangeSchemas = (objs: {
21
22
  * @property {Map<string, any>} _cache Cache shared only during the execution of the generate function (useful for caching images, etc. if needed).
22
23
  */
23
24
  export interface PDFRenderProps<T extends Schema> {
25
+ key: string;
24
26
  value: string;
25
27
  schema: T;
26
28
  pdfLib: typeof import('@pdfme/pdf-lib');
@@ -38,6 +40,7 @@ export interface PDFRenderProps<T extends Schema> {
38
40
  * @property {number} [tabIndex] - Tab index for Form.
39
41
  * @property {string} [placeholder] - Placeholder text for Form.
40
42
  * @property {() => void} [stopEditing] - Stops editing mode, can be used when the mode is 'designer'.
43
+ * @property {string} key - The key of the schema object.
41
44
  * @property {string} value - The string used for UI rendering.
42
45
  * @property {(value: string) => void} [onChange] - Used to change the value. Only applicable when the mode is 'form' or 'designer'.
43
46
  * @property {HTMLDivElement} rootElement - The root HTMLDivElement for the UI.
@@ -51,6 +54,7 @@ export type UIRenderProps<T extends Schema> = {
51
54
  tabIndex?: number;
52
55
  placeholder?: string;
53
56
  stopEditing?: () => void;
57
+ key: string;
54
58
  value: string;
55
59
  onChange?: (value: string) => void;
56
60
  rootElement: HTMLDivElement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdfme/common",
3
- "version": "3.1.2-dev.3",
3
+ "version": "3.1.2-dev.5",
4
4
  "sideEffects": false,
5
5
  "author": "hand-dot",
6
6
  "license": "MIT",
package/src/types.ts CHANGED
@@ -11,6 +11,7 @@ export type ChangeSchemas = (objs: { key: string; value: any; schemaId: string }
11
11
  /**
12
12
  * Properties used for PDF rendering.
13
13
  * @template T Type of the extended Schema object.
14
+ * @property {string} key The key of the schema object.
14
15
  * @property {string} value The string used for PDF rendering.
15
16
  * @property {T} schema Extended Schema object for rendering.
16
17
  * @property {typeof import('@pdfme/pdf-lib')} pdfLib The pdf-lib library used for rendering.
@@ -20,6 +21,7 @@ export type ChangeSchemas = (objs: { key: string; value: any; schemaId: string }
20
21
  * @property {Map<string, any>} _cache Cache shared only during the execution of the generate function (useful for caching images, etc. if needed).
21
22
  */
22
23
  export interface PDFRenderProps<T extends Schema> {
24
+ key: string;
23
25
  value: string;
24
26
  schema: T;
25
27
  pdfLib: typeof import('@pdfme/pdf-lib');
@@ -39,6 +41,7 @@ export interface PDFRenderProps<T extends Schema> {
39
41
  * @property {number} [tabIndex] - Tab index for Form.
40
42
  * @property {string} [placeholder] - Placeholder text for Form.
41
43
  * @property {() => void} [stopEditing] - Stops editing mode, can be used when the mode is 'designer'.
44
+ * @property {string} key - The key of the schema object.
42
45
  * @property {string} value - The string used for UI rendering.
43
46
  * @property {(value: string) => void} [onChange] - Used to change the value. Only applicable when the mode is 'form' or 'designer'.
44
47
  * @property {HTMLDivElement} rootElement - The root HTMLDivElement for the UI.
@@ -52,6 +55,7 @@ export type UIRenderProps<T extends Schema> = {
52
55
  tabIndex?: number;
53
56
  placeholder?: string;
54
57
  stopEditing?: () => void;
58
+ key: string;
55
59
  value: string;
56
60
  onChange?: (value: string) => void;
57
61
  rootElement: HTMLDivElement;