@pdfme/common 3.1.2-dev.5 → 3.1.3-dev.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.
@@ -19,7 +19,7 @@ export type ChangeSchemas = (objs: {
19
19
  * @property {PDFDocument} pdfDoc PDFDocument object from pdf-lib.
20
20
  * @property {PDFPage} page PDFPage object from pdf-lib.
21
21
  * @property {GeneratorOptions} options Options object passed from the generator.
22
- * @property {Map<string, any>} _cache Cache shared only during the execution of the generate function (useful for caching images, etc. if needed).
22
+ * @property {Map<any, any>} _cache Cache shared only during the execution of the generate function (useful for caching images, etc. if needed).
23
23
  */
24
24
  export interface PDFRenderProps<T extends Schema> {
25
25
  key: string;
@@ -29,7 +29,7 @@ export interface PDFRenderProps<T extends Schema> {
29
29
  pdfDoc: PDFDocument;
30
30
  page: PDFPage;
31
31
  options: GeneratorOptions;
32
- _cache: Map<string, any>;
32
+ _cache: Map<any, any>;
33
33
  }
34
34
  /**
35
35
  * Type for properties used in UI rendering.
@@ -47,6 +47,7 @@ export interface PDFRenderProps<T extends Schema> {
47
47
  * @property {UIOptions} options - Options object passed from the Viewer, Form, or Designer.
48
48
  * @property {ThemeConfig} theme - An object that merges the 'theme' passed as an options with the default theme.
49
49
  * @property {(key: keyof Dict | string) => string} i18n - An object merged based on the options 'lang' and 'labels'.
50
+ * @property {Map<any, any>} _cache - Cache shared only during the execution of the render function (useful for caching images, etc. if needed).
50
51
  */
51
52
  export type UIRenderProps<T extends Schema> = {
52
53
  schema: T;
@@ -61,6 +62,7 @@ export type UIRenderProps<T extends Schema> = {
61
62
  options: UIOptions;
62
63
  theme: GlobalToken;
63
64
  i18n: (key: keyof Dict | string) => string;
65
+ _cache: Map<any, any>;
64
66
  };
65
67
  /**
66
68
  * Type for properties used in configuring the property panel.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdfme/common",
3
- "version": "3.1.2-dev.5",
3
+ "version": "3.1.3-dev.1",
4
4
  "sideEffects": false,
5
5
  "author": "hand-dot",
6
6
  "license": "MIT",
package/src/types.ts CHANGED
@@ -18,7 +18,7 @@ export type ChangeSchemas = (objs: { key: string; value: any; schemaId: string }
18
18
  * @property {PDFDocument} pdfDoc PDFDocument object from pdf-lib.
19
19
  * @property {PDFPage} page PDFPage object from pdf-lib.
20
20
  * @property {GeneratorOptions} options Options object passed from the generator.
21
- * @property {Map<string, any>} _cache Cache shared only during the execution of the generate function (useful for caching images, etc. if needed).
21
+ * @property {Map<any, any>} _cache Cache shared only during the execution of the generate function (useful for caching images, etc. if needed).
22
22
  */
23
23
  export interface PDFRenderProps<T extends Schema> {
24
24
  key: string;
@@ -29,7 +29,7 @@ export interface PDFRenderProps<T extends Schema> {
29
29
  page: PDFPage;
30
30
  options: GeneratorOptions;
31
31
 
32
- _cache: Map<string, any>;
32
+ _cache: Map<any, any>;
33
33
  }
34
34
 
35
35
  /**
@@ -48,6 +48,7 @@ export interface PDFRenderProps<T extends Schema> {
48
48
  * @property {UIOptions} options - Options object passed from the Viewer, Form, or Designer.
49
49
  * @property {ThemeConfig} theme - An object that merges the 'theme' passed as an options with the default theme.
50
50
  * @property {(key: keyof Dict | string) => string} i18n - An object merged based on the options 'lang' and 'labels'.
51
+ * @property {Map<any, any>} _cache - Cache shared only during the execution of the render function (useful for caching images, etc. if needed).
51
52
  */
52
53
  export type UIRenderProps<T extends Schema> = {
53
54
  schema: T;
@@ -62,6 +63,7 @@ export type UIRenderProps<T extends Schema> = {
62
63
  options: UIOptions;
63
64
  theme: GlobalToken;
64
65
  i18n: (key: keyof Dict | string) => string;
66
+ _cache: Map<any, any>;
65
67
  };
66
68
 
67
69
  /**