@pdfme/schemas 3.4.3 → 4.0.0-dev.3

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.
Files changed (138) hide show
  1. package/dist/cjs/__tests__/text.test.js +5 -4
  2. package/dist/cjs/__tests__/text.test.js.map +1 -1
  3. package/dist/cjs/__tests__/utils.test.js +3 -0
  4. package/dist/cjs/__tests__/utils.test.js.map +1 -1
  5. package/dist/cjs/src/barcodes/propPanel.js +23 -11
  6. package/dist/cjs/src/barcodes/propPanel.js.map +1 -1
  7. package/dist/cjs/src/barcodes/uiRender.js +1 -1
  8. package/dist/cjs/src/barcodes/uiRender.js.map +1 -1
  9. package/dist/cjs/src/graphics/image.js +8 -11
  10. package/dist/cjs/src/graphics/image.js.map +1 -1
  11. package/dist/cjs/src/graphics/svg.js +4 -3
  12. package/dist/cjs/src/graphics/svg.js.map +1 -1
  13. package/dist/cjs/src/index.js +7 -1
  14. package/dist/cjs/src/index.js.map +1 -1
  15. package/dist/cjs/src/shapes/line.js +5 -8
  16. package/dist/cjs/src/shapes/line.js.map +1 -1
  17. package/dist/cjs/src/shapes/rectAndEllipse.js +12 -5
  18. package/dist/cjs/src/shapes/rectAndEllipse.js.map +1 -1
  19. package/dist/cjs/src/tables/cell.js +125 -0
  20. package/dist/cjs/src/tables/cell.js.map +1 -0
  21. package/dist/cjs/src/tables/classes.js +467 -0
  22. package/dist/cjs/src/tables/classes.js.map +1 -0
  23. package/dist/cjs/src/tables/dynamicTemplate.js +71 -0
  24. package/dist/cjs/src/tables/dynamicTemplate.js.map +1 -0
  25. package/dist/cjs/src/tables/helper.js +171 -0
  26. package/dist/cjs/src/tables/helper.js.map +1 -0
  27. package/dist/cjs/src/tables/index.js +12 -0
  28. package/dist/cjs/src/tables/index.js.map +1 -0
  29. package/dist/cjs/src/tables/pdfRender.js +93 -0
  30. package/dist/cjs/src/tables/pdfRender.js.map +1 -0
  31. package/dist/cjs/src/tables/propPanel.js +88 -0
  32. package/dist/cjs/src/tables/propPanel.js.map +1 -0
  33. package/dist/cjs/src/tables/tableHelper.js +231 -0
  34. package/dist/cjs/src/tables/tableHelper.js.map +1 -0
  35. package/dist/cjs/src/tables/types.js +3 -0
  36. package/dist/cjs/src/tables/types.js.map +1 -0
  37. package/dist/cjs/src/tables/uiRender.js +342 -0
  38. package/dist/cjs/src/tables/uiRender.js.map +1 -0
  39. package/dist/cjs/src/text/helper.js +21 -6
  40. package/dist/cjs/src/text/helper.js.map +1 -1
  41. package/dist/cjs/src/text/index.js +1 -1
  42. package/dist/cjs/src/text/index.js.map +1 -1
  43. package/dist/cjs/src/text/pdfRender.js +6 -9
  44. package/dist/cjs/src/text/pdfRender.js.map +1 -1
  45. package/dist/cjs/src/text/propPanel.js +7 -4
  46. package/dist/cjs/src/text/propPanel.js.map +1 -1
  47. package/dist/cjs/src/text/uiRender.js +18 -17
  48. package/dist/cjs/src/text/uiRender.js.map +1 -1
  49. package/dist/cjs/src/utils.js +3 -1
  50. package/dist/cjs/src/utils.js.map +1 -1
  51. package/dist/esm/__tests__/text.test.js +5 -4
  52. package/dist/esm/__tests__/text.test.js.map +1 -1
  53. package/dist/esm/__tests__/utils.test.js +3 -0
  54. package/dist/esm/__tests__/utils.test.js.map +1 -1
  55. package/dist/esm/src/barcodes/propPanel.js +23 -11
  56. package/dist/esm/src/barcodes/propPanel.js.map +1 -1
  57. package/dist/esm/src/barcodes/uiRender.js +1 -1
  58. package/dist/esm/src/barcodes/uiRender.js.map +1 -1
  59. package/dist/esm/src/graphics/image.js +6 -9
  60. package/dist/esm/src/graphics/image.js.map +1 -1
  61. package/dist/esm/src/graphics/svg.js +4 -3
  62. package/dist/esm/src/graphics/svg.js.map +1 -1
  63. package/dist/esm/src/index.js +4 -1
  64. package/dist/esm/src/index.js.map +1 -1
  65. package/dist/esm/src/shapes/line.js +5 -8
  66. package/dist/esm/src/shapes/line.js.map +1 -1
  67. package/dist/esm/src/shapes/rectAndEllipse.js +12 -5
  68. package/dist/esm/src/shapes/rectAndEllipse.js.map +1 -1
  69. package/dist/esm/src/tables/cell.js +120 -0
  70. package/dist/esm/src/tables/cell.js.map +1 -0
  71. package/dist/esm/src/tables/classes.js +460 -0
  72. package/dist/esm/src/tables/classes.js.map +1 -0
  73. package/dist/esm/src/tables/dynamicTemplate.js +66 -0
  74. package/dist/esm/src/tables/dynamicTemplate.js.map +1 -0
  75. package/dist/esm/src/tables/helper.js +163 -0
  76. package/dist/esm/src/tables/helper.js.map +1 -0
  77. package/dist/esm/src/tables/index.js +10 -0
  78. package/dist/esm/src/tables/index.js.map +1 -0
  79. package/dist/esm/src/tables/pdfRender.js +86 -0
  80. package/dist/esm/src/tables/pdfRender.js.map +1 -0
  81. package/dist/esm/src/tables/propPanel.js +85 -0
  82. package/dist/esm/src/tables/propPanel.js.map +1 -0
  83. package/dist/esm/src/tables/tableHelper.js +226 -0
  84. package/dist/esm/src/tables/tableHelper.js.map +1 -0
  85. package/dist/esm/src/tables/types.js +2 -0
  86. package/dist/esm/src/tables/types.js.map +1 -0
  87. package/dist/esm/src/tables/uiRender.js +335 -0
  88. package/dist/esm/src/tables/uiRender.js.map +1 -0
  89. package/dist/esm/src/text/helper.js +19 -5
  90. package/dist/esm/src/text/helper.js.map +1 -1
  91. package/dist/esm/src/text/index.js +1 -1
  92. package/dist/esm/src/text/index.js.map +1 -1
  93. package/dist/esm/src/text/pdfRender.js +7 -10
  94. package/dist/esm/src/text/pdfRender.js.map +1 -1
  95. package/dist/esm/src/text/propPanel.js +7 -4
  96. package/dist/esm/src/text/propPanel.js.map +1 -1
  97. package/dist/esm/src/text/uiRender.js +19 -18
  98. package/dist/esm/src/text/uiRender.js.map +1 -1
  99. package/dist/esm/src/utils.js +1 -0
  100. package/dist/esm/src/utils.js.map +1 -1
  101. package/dist/types/src/index.d.ts +3 -1
  102. package/dist/types/src/shapes/rectAndEllipse.d.ts +19 -27
  103. package/dist/types/src/tables/cell.d.ts +4 -0
  104. package/dist/types/src/tables/classes.d.ts +68 -0
  105. package/dist/types/src/tables/dynamicTemplate.d.ts +13 -0
  106. package/dist/types/src/tables/helper.d.ts +252 -0
  107. package/dist/types/src/tables/index.d.ts +4 -0
  108. package/dist/types/src/tables/pdfRender.d.ts +3 -0
  109. package/dist/types/src/tables/propPanel.d.ts +3 -0
  110. package/dist/types/src/tables/tableHelper.d.ts +11 -0
  111. package/dist/types/src/tables/types.d.ts +91 -0
  112. package/dist/types/src/tables/uiRender.d.ts +3 -0
  113. package/dist/types/src/text/helper.d.ts +8 -1
  114. package/dist/types/src/utils.d.ts +1 -0
  115. package/package.json +1 -1
  116. package/src/barcodes/propPanel.ts +26 -12
  117. package/src/barcodes/uiRender.ts +1 -1
  118. package/src/graphics/image.ts +8 -11
  119. package/src/graphics/svg.ts +4 -3
  120. package/src/index.ts +7 -0
  121. package/src/shapes/line.ts +4 -8
  122. package/src/shapes/rectAndEllipse.ts +16 -7
  123. package/src/tables/cell.ts +157 -0
  124. package/src/tables/classes.ts +398 -0
  125. package/src/tables/dynamicTemplate.ts +81 -0
  126. package/src/tables/helper.ts +198 -0
  127. package/src/tables/index.ts +12 -0
  128. package/src/tables/pdfRender.ts +113 -0
  129. package/src/tables/propPanel.ts +91 -0
  130. package/src/tables/tableHelper.ts +322 -0
  131. package/src/tables/types.ts +88 -0
  132. package/src/tables/uiRender.ts +393 -0
  133. package/src/text/helper.ts +29 -6
  134. package/src/text/index.ts +1 -1
  135. package/src/text/pdfRender.ts +9 -13
  136. package/src/text/propPanel.ts +7 -4
  137. package/src/text/uiRender.ts +18 -18
  138. package/src/utils.ts +1 -0
@@ -0,0 +1,11 @@
1
+ import { Schema, BasePdf, CommonOptions } from '@pdfme/common';
2
+ import { Table } from './classes';
3
+ interface CreateTableArgs {
4
+ schema: Schema;
5
+ basePdf: BasePdf;
6
+ options: CommonOptions;
7
+ _cache: Map<any, any>;
8
+ }
9
+ export declare function createSingleTable(body: string[][], args: CreateTableArgs): Promise<Table>;
10
+ export declare function createMultiTables(body: string[][], args: CreateTableArgs): Promise<Table[]>;
11
+ export {};
@@ -0,0 +1,91 @@
1
+ import type { ALIGNMENT, VERTICAL_ALIGNMENT } from '../text/types';
2
+ import type { Schema } from '@pdfme/common';
3
+ export type Spacing = {
4
+ top: number;
5
+ right: number;
6
+ bottom: number;
7
+ left: number;
8
+ };
9
+ type BorderInsets = Spacing;
10
+ type BoxDimensions = Spacing;
11
+ export interface CellStyle {
12
+ fontName?: string;
13
+ alignment: ALIGNMENT;
14
+ verticalAlignment: VERTICAL_ALIGNMENT;
15
+ fontSize: number;
16
+ lineHeight: number;
17
+ characterSpacing: number;
18
+ fontColor: string;
19
+ backgroundColor: string;
20
+ borderColor: string;
21
+ borderWidth: BoxDimensions;
22
+ padding: BoxDimensions;
23
+ }
24
+ export type CellSchema = Schema & CellStyle;
25
+ export interface TableSchema extends Schema {
26
+ showHead: boolean;
27
+ head: string[];
28
+ headWidthPercentages: number[];
29
+ __bodyRange?: {
30
+ start: number;
31
+ end?: number;
32
+ };
33
+ tableStyles: {
34
+ borderColor: string;
35
+ borderWidth: number;
36
+ };
37
+ headStyles: CellStyle;
38
+ bodyStyles: CellStyle & {
39
+ alternateBackgroundColor: string;
40
+ };
41
+ columnStyles: {
42
+ alignment?: {
43
+ [colIndex: number]: ALIGNMENT;
44
+ };
45
+ };
46
+ }
47
+ export interface Styles {
48
+ fontName: string | undefined;
49
+ backgroundColor: string;
50
+ textColor: string;
51
+ lineHeight: number;
52
+ characterSpacing: number;
53
+ alignment: 'left' | 'center' | 'right';
54
+ verticalAlignment: 'top' | 'middle' | 'bottom';
55
+ fontSize: number;
56
+ cellPadding: Spacing;
57
+ lineColor: string;
58
+ lineWidth: BorderInsets;
59
+ cellWidth: number;
60
+ minCellHeight: number;
61
+ minCellWidth: number;
62
+ }
63
+ export interface TableInput {
64
+ settings: Settings;
65
+ styles: StylesProps;
66
+ content: ContentInput;
67
+ }
68
+ interface ContentInput {
69
+ body: string[][];
70
+ head: string[][];
71
+ columns: number[];
72
+ }
73
+ export interface Settings {
74
+ startY: number;
75
+ margin: Spacing;
76
+ tableWidth: number;
77
+ showHead: boolean;
78
+ tableLineWidth: number;
79
+ tableLineColor: string;
80
+ }
81
+ export interface StylesProps {
82
+ styles: Partial<Styles>;
83
+ headStyles: Partial<Styles>;
84
+ bodyStyles: Partial<Styles>;
85
+ alternateRowStyles: Partial<Styles>;
86
+ columnStyles: {
87
+ [key: string]: Partial<Styles>;
88
+ };
89
+ }
90
+ export type Section = 'head' | 'body';
91
+ export {};
@@ -0,0 +1,3 @@
1
+ import type { UIRenderProps } from '@pdfme/common';
2
+ import type { TableSchema } from './types.js';
3
+ export declare const uiRender: (arg: UIRenderProps<TableSchema>) => Promise<void>;
@@ -9,7 +9,7 @@ export declare const getBrowserVerticalFontAdjustments: (fontKitFont: FontKitFon
9
9
  export declare const getFontDescentInPt: (fontKitFont: FontKitFont, fontSize: number) => number;
10
10
  export declare const heightOfFontAtSize: (fontKitFont: FontKitFont, fontSize: number) => number;
11
11
  export declare const widthOfTextAtSize: (text: string, fontKitFont: FontKitFont, fontSize: number, characterSpacing: number) => number;
12
- export declare const getFontKitFont: (textSchema: TextSchema, font: Font, _cache: Map<any, any>) => Promise<fontkit.Font>;
12
+ export declare const getFontKitFont: (fontName: string | undefined, font: Font, _cache: Map<any, any>) => Promise<fontkit.Font>;
13
13
  /**
14
14
  * Recursively splits the line at getSplitPosition.
15
15
  * If there is some leftover, split the rest again in the same manner.
@@ -28,4 +28,11 @@ export declare const calculateDynamicFontSize: ({ textSchema, font, value, start
28
28
  startingFontSize?: number | undefined;
29
29
  _cache: Map<any, any>;
30
30
  }) => Promise<number>;
31
+ export declare const splitTextToSize: (arg: {
32
+ value: string;
33
+ characterSpacing: number;
34
+ boxWidthInPt: number;
35
+ fontSize: number;
36
+ fontKitFont: fontkit.Font;
37
+ }) => string[];
31
38
  export declare const isFirefox: () => boolean;
@@ -30,3 +30,4 @@ export declare const hex2CmykColor: (hexString: string | undefined) => import("@
30
30
  export declare const hex2PrintingColor: (hexString: string | undefined, colorType?: ColorType) => import("@pdfme/pdf-lib").RGB | import("@pdfme/pdf-lib").CMYK | undefined;
31
31
  export declare const readFile: (input: File | FileList | null) => Promise<string | ArrayBuffer>;
32
32
  export declare const createErrorElm: () => HTMLDivElement;
33
+ export declare const cloneDeep: <T>(value: T) => T;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdfme/schemas",
3
- "version": "3.4.3",
3
+ "version": "4.0.0-dev.3",
4
4
  "sideEffects": false,
5
5
  "author": "hand-dot",
6
6
  "license": "MIT",
@@ -16,11 +16,15 @@ const defaultIncludetext = { includetext: DEFAULT_BARCODE_INCLUDETEXT };
16
16
  const position = { x: 0, y: 0 };
17
17
  const default40x20 = { width: 40, height: 20 };
18
18
 
19
- const barcodeDefaults: { defaultValue: string; defaultSchema: BarcodeSchema }[] = [
19
+ const barcodeIcon =
20
+ '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-barcode"><path d="M3 5v14"/><path d="M8 5v14"/><path d="M12 5v14"/><path d="M17 5v14"/><path d="M21 5v14"/></svg>';
21
+
22
+ const barcodeDefaults: { defaultSchema: BarcodeSchema }[] = [
20
23
  {
21
- defaultValue: 'https://pdfme.com/',
22
24
  defaultSchema: {
23
25
  type: 'qrcode',
26
+ icon: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-qr-code"><rect width="5" height="5" x="3" y="3" rx="1"/><rect width="5" height="5" x="16" y="3" rx="1"/><rect width="5" height="5" x="3" y="16" rx="1"/><path d="M21 16h-3a2 2 0 0 0-2 2v3"/><path d="M21 21v.01"/><path d="M12 7v3a2 2 0 0 1-2 2H7"/><path d="M3 12h.01"/><path d="M12 3h.01"/><path d="M12 16v.01"/><path d="M16 12h1"/><path d="M21 12v.01"/><path d="M12 21v-1"/></svg>',
27
+ content: 'https://pdfme.com/',
24
28
  position,
25
29
  ...defaultColors,
26
30
  width: 30,
@@ -30,9 +34,10 @@ const barcodeDefaults: { defaultValue: string; defaultSchema: BarcodeSchema }[]
30
34
  },
31
35
  },
32
36
  {
33
- defaultValue: '6540123789-A-K-Z',
34
37
  defaultSchema: {
35
38
  type: 'japanpost',
39
+ icon: barcodeIcon,
40
+ content: '6540123789-A-K-Z',
36
41
  position,
37
42
  ...defaultColors,
38
43
  ...defaultTextColors,
@@ -44,9 +49,10 @@ const barcodeDefaults: { defaultValue: string; defaultSchema: BarcodeSchema }[]
44
49
  },
45
50
  },
46
51
  {
47
- defaultValue: '2112345678900',
48
52
  defaultSchema: {
49
53
  type: 'ean13',
54
+ icon: barcodeIcon,
55
+ content: '2112345678900',
50
56
  position,
51
57
  ...defaultColors,
52
58
  ...defaultTextColors,
@@ -58,9 +64,10 @@ const barcodeDefaults: { defaultValue: string; defaultSchema: BarcodeSchema }[]
58
64
  },
59
65
  },
60
66
  {
61
- defaultValue: '02345673',
62
67
  defaultSchema: {
63
68
  type: 'ean8',
69
+ icon: barcodeIcon,
70
+ content: '02345673',
64
71
  position,
65
72
  ...defaultColors,
66
73
  ...defaultTextColors,
@@ -71,9 +78,10 @@ const barcodeDefaults: { defaultValue: string; defaultSchema: BarcodeSchema }[]
71
78
  },
72
79
  },
73
80
  {
74
- defaultValue: 'THIS IS CODE 39',
75
81
  defaultSchema: {
76
82
  type: 'code39',
83
+ icon: barcodeIcon,
84
+ content: 'THIS IS CODE 39',
77
85
  position,
78
86
  ...defaultColors,
79
87
  ...defaultTextColors,
@@ -83,9 +91,10 @@ const barcodeDefaults: { defaultValue: string; defaultSchema: BarcodeSchema }[]
83
91
  },
84
92
  },
85
93
  {
86
- defaultValue: 'This is Code 128!',
87
94
  defaultSchema: {
88
95
  type: 'code128',
96
+ icon: barcodeIcon,
97
+ content: 'This is Code 128!',
89
98
  position,
90
99
  ...defaultColors,
91
100
  ...defaultTextColors,
@@ -96,9 +105,10 @@ const barcodeDefaults: { defaultValue: string; defaultSchema: BarcodeSchema }[]
96
105
  },
97
106
  },
98
107
  {
99
- defaultValue: 'A0123456789B',
100
108
  defaultSchema: {
101
109
  type: 'nw7',
110
+ icon: barcodeIcon,
111
+ content: 'A0123456789B',
102
112
  position,
103
113
  ...defaultColors,
104
114
  ...defaultTextColors,
@@ -109,9 +119,10 @@ const barcodeDefaults: { defaultValue: string; defaultSchema: BarcodeSchema }[]
109
119
  },
110
120
  },
111
121
  {
112
- defaultValue: '04601234567893',
113
122
  defaultSchema: {
114
123
  type: 'itf14',
124
+ icon: barcodeIcon,
125
+ content: '04601234567893',
115
126
  position,
116
127
  ...defaultColors,
117
128
  ...defaultTextColors,
@@ -123,9 +134,10 @@ const barcodeDefaults: { defaultValue: string; defaultSchema: BarcodeSchema }[]
123
134
  },
124
135
  },
125
136
  {
126
- defaultValue: '416000336108',
127
137
  defaultSchema: {
128
138
  type: 'upca',
139
+ icon: barcodeIcon,
140
+ content: '416000336108',
129
141
  position,
130
142
  ...defaultColors,
131
143
  ...defaultTextColors,
@@ -137,9 +149,10 @@ const barcodeDefaults: { defaultValue: string; defaultSchema: BarcodeSchema }[]
137
149
  },
138
150
  },
139
151
  {
140
- defaultValue: '00123457',
141
152
  defaultSchema: {
142
153
  type: 'upce',
154
+ icon: barcodeIcon,
155
+ content: '00123457',
143
156
  position,
144
157
  ...defaultColors,
145
158
  ...defaultTextColors,
@@ -150,9 +163,10 @@ const barcodeDefaults: { defaultValue: string; defaultSchema: BarcodeSchema }[]
150
163
  },
151
164
  },
152
165
  {
153
- defaultValue: '(01)03453120000011(17)191125(10)ABCD1234',
154
166
  defaultSchema: {
155
167
  type: 'gs1datamatrix',
168
+ icon: barcodeIcon,
169
+ content: '(01)03453120000011(17)191125(10)ABCD1234',
156
170
  position,
157
171
  ...defaultColors,
158
172
  width: 30,
@@ -69,7 +69,7 @@ export const uiRender = async (arg: UIRenderProps<BarcodeSchema>) => {
69
69
  input.placeholder = placeholder || '';
70
70
  input.tabIndex = tabIndex || 0;
71
71
  input.addEventListener('change', (e: Event) => {
72
- onChange && onChange((e.target as HTMLInputElement).value);
72
+ onChange && onChange({ key: 'content', value: (e.target as HTMLInputElement).value });
73
73
  });
74
74
  input.addEventListener('blur', () => {
75
75
  stopEditing && stopEditing();
@@ -3,18 +3,12 @@ import type { PDFImage, PDFEmbeddedPage } from '@pdfme/pdf-lib';
3
3
  import type { Plugin } from '@pdfme/common';
4
4
  import type { PDFRenderProps, Schema } from '@pdfme/common';
5
5
  import type * as CSS from 'csstype';
6
- import { UIRenderProps } from '@pdfme/common';
6
+ import { UIRenderProps, px2mm } from '@pdfme/common';
7
7
  import { convertForPdfLayoutProps, addAlphaToHex, isEditable, readFile } from '../utils.js';
8
8
  import { DEFAULT_OPACITY } from '../constants.js';
9
9
  import { getImageDimension } from './imagehelper.js';
10
10
  import { isPdf, pdfToImage } from './pdfHelper.js';
11
11
 
12
- const px2mm = (px: number): number => {
13
- // http://www.endmemo.com/sconvert/millimeterpixel.php
14
- const ratio = 0.26458333333333;
15
- return parseFloat(String(px)) * ratio;
16
- };
17
-
18
12
  const getCacheKey = (schema: Schema, input: string) => `${schema.type}${input}`;
19
13
  const fullSize = { width: '100%', height: '100%' };
20
14
  const defaultValue =
@@ -140,7 +134,7 @@ const imageSchema: Plugin<ImageSchema> = {
140
134
  };
141
135
  Object.assign(button.style, buttonStyle);
142
136
  button.addEventListener('click', () => {
143
- onChange && onChange('');
137
+ onChange && onChange({ key: 'content', value: '' });
144
138
  });
145
139
  container.appendChild(button);
146
140
  }
@@ -175,7 +169,9 @@ const imageSchema: Plugin<ImageSchema> = {
175
169
  input.accept = 'image/jpeg, image/png, application/pdf';
176
170
  input.addEventListener('change', (event: Event) => {
177
171
  const changeEvent = event as unknown as ChangeEvent<HTMLInputElement>;
178
- readFile(changeEvent.target.files).then((result) => onChange && onChange(result as string));
172
+ readFile(changeEvent.target.files).then(
173
+ (result) => onChange && onChange({ key: 'content', value: result as string })
174
+ );
179
175
  });
180
176
  input.addEventListener('blur', () => stopEditing && stopEditing());
181
177
  label.appendChild(input);
@@ -183,9 +179,10 @@ const imageSchema: Plugin<ImageSchema> = {
183
179
  },
184
180
  propPanel: {
185
181
  schema: {},
186
- defaultValue,
187
182
  defaultSchema: {
188
183
  type: 'image',
184
+ icon: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-image"><rect width="18" height="18" x="3" y="3" rx="2" ry="2"/><circle cx="9" cy="9" r="2"/><path d="m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"/></svg>',
185
+ content: defaultValue,
189
186
  position: { x: 0, y: 0 },
190
187
  width: 40,
191
188
  height: 40,
@@ -207,8 +204,8 @@ export const readOnlyImage: Plugin<ImageSchema> = {
207
204
  defaultSchema: {
208
205
  ...imageSchema.propPanel.defaultSchema,
209
206
  type: 'readOnlyImage',
207
+ icon: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-image-off"><line x1="2" x2="22" y1="2" y2="22"/><path d="M10.41 10.41a2 2 0 1 1-2.83-2.83"/><line x1="13.5" x2="6" y1="13.5" y2="21"/><line x1="18" x2="21" y1="12" y2="15"/><path d="M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59"/><path d="M21 15V5a2 2 0 0 0-2-2H9"/></svg>',
210
208
  readOnly: true,
211
- readOnlyValue: defaultValue,
212
209
  },
213
210
  },
214
211
  };
@@ -41,7 +41,7 @@ const svgSchema: Plugin<SVGSchema> = {
41
41
 
42
42
  textarea.addEventListener('change', (e: Event) => {
43
43
  const newValue = (e.target as HTMLTextAreaElement).value;
44
- onChange && onChange(newValue);
44
+ onChange && onChange({ key: 'content', value: newValue });
45
45
  });
46
46
  rootElement.appendChild(container);
47
47
  textarea.setSelectionRange(value.length, value.length);
@@ -71,9 +71,10 @@ const svgSchema: Plugin<SVGSchema> = {
71
71
  },
72
72
  propPanel: {
73
73
  schema: {},
74
- defaultValue,
75
74
  defaultSchema: {
76
75
  type: 'svg',
76
+ icon:'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-route"><circle cx="6" cy="19" r="3"/><path d="M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15"/><circle cx="18" cy="5" r="3"/></svg>',
77
+ content: defaultValue,
77
78
  position: { x: 0, y: 0 },
78
79
  width: 40,
79
80
  height: 40,
@@ -91,8 +92,8 @@ export const readOnlySvg: Plugin<SVGSchema> = {
91
92
  defaultSchema: {
92
93
  ...svgSchema.propPanel.defaultSchema,
93
94
  type: 'readOnlySvg',
95
+ icon: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-route-off"><circle cx="6" cy="19" r="3"/><path d="M9 19h8.5c.4 0 .9-.1 1.3-.2"/><path d="M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12"/><path d="m2 2 20 20"/><path d="M21 15.3a3.5 3.5 0 0 0-3.3-3.3"/><path d="M15 5h-4.3"/><circle cx="18" cy="5" r="3"/></svg>',
94
96
  readOnly: true,
95
- readOnlyValue: defaultValue,
96
97
  },
97
98
  },
98
99
  };
package/src/index.ts CHANGED
@@ -3,9 +3,13 @@ import image, { readOnlyImage } from './graphics/image.js';
3
3
  import svg, { readOnlySvg } from './graphics/svg.js';
4
4
  import barcodes from './barcodes/index.js';
5
5
  import line from './shapes/line.js';
6
+ import table from './tables/index.js';
7
+ import { modifyTemplateForTable, getDynamicHeightForTable } from './tables/dynamicTemplate.js';
6
8
  import { rectangle, ellipse } from './shapes/rectAndEllipse.js';
7
9
  import { convertForPdfLayoutProps, rotatePoint } from './utils.js';
8
10
 
11
+ const tableBeta = table;
12
+
9
13
  const builtInPlugins = { Text: text };
10
14
 
11
15
  export {
@@ -17,6 +21,9 @@ export {
17
21
  readOnlySvg,
18
22
  barcodes,
19
23
  line,
24
+ tableBeta,
25
+ modifyTemplateForTable,
26
+ getDynamicHeightForTable,
20
27
  rectangle,
21
28
  ellipse,
22
29
  builtInPlugins,
@@ -11,6 +11,7 @@ interface LineSchema extends Schema {
11
11
  const lineSchema: Plugin<LineSchema> = {
12
12
  pdf: (arg: PDFRenderProps<LineSchema>) => {
13
13
  const { page, schema, options } = arg;
14
+ if (schema.width === 0 || schema.height === 0 || !schema.color) return;
14
15
  const { colorType } = options;
15
16
  const pageHeight = page.getHeight();
16
17
  const {
@@ -32,7 +33,7 @@ const lineSchema: Plugin<LineSchema> = {
32
33
  ui: (arg: UIRenderProps<LineSchema>) => {
33
34
  const { schema, rootElement } = arg;
34
35
  const div = document.createElement('div');
35
- div.style.backgroundColor = schema.color ?? DEFAULT_LINE_COLOR;
36
+ div.style.backgroundColor = schema.color ?? 'transparent';
36
37
  div.style.width = '100%';
37
38
  div.style.height = '100%';
38
39
  rootElement.appendChild(div);
@@ -44,17 +45,12 @@ const lineSchema: Plugin<LineSchema> = {
44
45
  type: 'string',
45
46
  widget: 'color',
46
47
  required: true,
47
- rules: [
48
- {
49
- pattern: HEX_COLOR_PATTERN,
50
- message: i18n('hexColorPrompt'),
51
- },
52
- ],
48
+ rules: [{ pattern: HEX_COLOR_PATTERN, message: i18n('hexColorPrompt') }],
53
49
  },
54
50
  }),
55
- defaultValue: '',
56
51
  defaultSchema: {
57
52
  type: 'line',
53
+ icon:'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-minus"><path d="M5 12h14"/></svg>',
58
54
  position: { x: 0, y: 0 },
59
55
  width: 50,
60
56
  height: 1,
@@ -2,14 +2,14 @@ import { Plugin, Schema, mm2pt } from '@pdfme/common';
2
2
  import { HEX_COLOR_PATTERN } from '../constants.js';
3
3
  import { hex2PrintingColor, convertForPdfLayoutProps } from '../utils.js';
4
4
 
5
- interface Shape extends Schema {
5
+ interface ShapeSchema extends Schema {
6
6
  type: 'ellipse' | 'rectangle';
7
7
  borderWidth: number;
8
8
  borderColor: string;
9
9
  color: string;
10
10
  }
11
11
 
12
- const shape: Plugin<Shape> = {
12
+ const shape: Plugin<ShapeSchema> = {
13
13
  ui: (arg) => {
14
14
  const { schema, rootElement } = arg;
15
15
  const div = document.createElement('div');
@@ -28,6 +28,7 @@ const shape: Plugin<Shape> = {
28
28
  },
29
29
  pdf: (arg) => {
30
30
  const { schema, page, options } = arg;
31
+ if (!schema.color && !schema.borderColor) return;
31
32
  const { colorType } = options;
32
33
  const pageHeight = page.getHeight();
33
34
  const cArg = { schema, pageHeight };
@@ -69,7 +70,7 @@ const shape: Plugin<Shape> = {
69
70
  title: i18n('schemas.borderWidth'),
70
71
  type: 'number',
71
72
  widget: 'inputNumber',
72
- min: 0,
73
+ props: { min: 0 },
73
74
  step: 1,
74
75
  },
75
76
  borderColor: {
@@ -85,7 +86,6 @@ const shape: Plugin<Shape> = {
85
86
  rules: [{ pattern: HEX_COLOR_PATTERN, message: i18n('hexColorPrompt') }],
86
87
  },
87
88
  }),
88
- defaultValue: '',
89
89
  defaultSchema: {
90
90
  type: 'rectangle',
91
91
  position: { x: 0, y: 0 },
@@ -93,17 +93,26 @@ const shape: Plugin<Shape> = {
93
93
  height: 37.5,
94
94
  rotate: 0,
95
95
  opacity: 1,
96
- borderWidth: 5,
96
+ borderWidth: 1,
97
97
  borderColor: '#000000',
98
- color: '#ffffff',
98
+ color: '',
99
99
  readOnly: true,
100
100
  },
101
101
  },
102
102
  };
103
103
 
104
+ const rectangleIcon =
105
+ '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-square"><rect width="18" height="18" x="3" y="3" rx="2"/></svg>';
106
+ const ellipseIcon =
107
+ '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle"><circle cx="12" cy="12" r="10"/></svg>';
108
+
104
109
  const getPropPanelSchema = (type: 'rectangle' | 'ellipse') => ({
105
110
  ...shape.propPanel,
106
- defaultSchema: { ...shape.propPanel.defaultSchema, type },
111
+ defaultSchema: {
112
+ ...shape.propPanel.defaultSchema,
113
+ type,
114
+ icon: type === 'rectangle' ? rectangleIcon : ellipseIcon,
115
+ },
107
116
  });
108
117
 
109
118
  export const rectangle = { ...shape, propPanel: getPropPanelSchema('rectangle') };
@@ -0,0 +1,157 @@
1
+ import {
2
+ DEFAULT_FONT_NAME,
3
+ Plugin,
4
+ PDFRenderProps,
5
+ UIRenderProps,
6
+ getFallbackFontName,
7
+ } from '@pdfme/common';
8
+ import { uiRender as textUiRender } from '../text/uiRender.js';
9
+ import { pdfRender as textPdfRender } from '../text/pdfRender.js';
10
+ import line from '../shapes/line.js';
11
+ import { rectangle } from '../shapes/rectAndEllipse.js';
12
+ import type { CellSchema } from './types';
13
+ import { getCellPropPanelSchema, getDefaultCellStyles } from './helper.js';
14
+ const linePdfRender = line.pdf;
15
+ const rectanglePdfRender = rectangle.pdf;
16
+
17
+ const renderLine = async (
18
+ arg: PDFRenderProps<CellSchema>,
19
+ schema: CellSchema,
20
+ position: { x: number; y: number },
21
+ width: number,
22
+ height: number
23
+ ) =>
24
+ linePdfRender({
25
+ ...arg,
26
+ schema: { ...schema, type: 'line', position, width, height, color: schema.borderColor },
27
+ });
28
+
29
+ const createTextDiv = (schema: CellSchema) => {
30
+ const { borderWidth: bw, width, height, padding: pd } = schema;
31
+ const textDiv = document.createElement('div');
32
+ textDiv.style.position = 'absolute';
33
+ textDiv.style.zIndex = '1';
34
+ textDiv.style.width = `${width - bw.left - bw.right - pd.left - pd.right}mm`;
35
+ textDiv.style.height = `${height - bw.top - bw.bottom - pd.top - pd.bottom}mm`;
36
+ textDiv.style.top = `${bw.top + pd.top}mm`;
37
+ textDiv.style.left = `${bw.left + pd.left}mm`;
38
+ return textDiv;
39
+ };
40
+
41
+ const createLineDiv = (
42
+ width: string,
43
+ height: string,
44
+ top: string | null,
45
+ right: string | null,
46
+ bottom: string | null,
47
+ left: string | null,
48
+ borderColor: string
49
+ ) => {
50
+ const div = document.createElement('div');
51
+ div.style.width = width;
52
+ div.style.height = height;
53
+ div.style.position = 'absolute';
54
+ if (top !== null) div.style.top = top;
55
+ if (right !== null) div.style.right = right;
56
+ if (bottom !== null) div.style.bottom = bottom;
57
+ if (left !== null) div.style.left = left;
58
+ div.style.backgroundColor = borderColor;
59
+ return div;
60
+ };
61
+
62
+ const cellSchema: Plugin<CellSchema> = {
63
+ pdf: async (arg: PDFRenderProps<CellSchema>) => {
64
+ const { schema } = arg;
65
+ const { position, width, height, borderWidth, padding } = schema;
66
+
67
+ await Promise.all([
68
+ // BACKGROUND
69
+ rectanglePdfRender({
70
+ ...arg,
71
+ schema: {
72
+ ...schema,
73
+ type: 'rectangle',
74
+ width: schema.width,
75
+ height: schema.height,
76
+ borderWidth: 0,
77
+ borderColor: '',
78
+ color: schema.backgroundColor,
79
+ },
80
+ }),
81
+ // TOP
82
+ renderLine(arg, schema, { x: position.x, y: position.y }, width, borderWidth.top),
83
+ // RIGHT
84
+ renderLine(
85
+ arg,
86
+ schema,
87
+ { x: position.x + width - borderWidth.right, y: position.y },
88
+ borderWidth.right,
89
+ height
90
+ ),
91
+ // BOTTOM
92
+ renderLine(
93
+ arg,
94
+ schema,
95
+ { x: position.x, y: position.y + height - borderWidth.bottom },
96
+ width,
97
+ borderWidth.bottom
98
+ ),
99
+ // LEFT
100
+ renderLine(arg, schema, { x: position.x, y: position.y }, borderWidth.left, height),
101
+ ]);
102
+ // TEXT
103
+ await textPdfRender({
104
+ ...arg,
105
+ schema: {
106
+ ...schema,
107
+ type: 'text',
108
+ backgroundColor: '',
109
+ position: {
110
+ x: position.x + borderWidth.left + padding.left,
111
+ y: position.y + borderWidth.top + padding.top,
112
+ },
113
+ width: width - borderWidth.left - borderWidth.right - padding.left - padding.right,
114
+ height: height - borderWidth.top - borderWidth.bottom - padding.top - padding.bottom,
115
+ },
116
+ });
117
+ },
118
+ ui: async (arg: UIRenderProps<CellSchema>) => {
119
+ const { schema, rootElement } = arg;
120
+ const { borderWidth, width, height, borderColor, backgroundColor } = schema;
121
+ rootElement.style.backgroundColor = backgroundColor;
122
+
123
+ const textDiv = createTextDiv(schema);
124
+ await textUiRender({
125
+ ...arg,
126
+ schema: { ...schema, backgroundColor: '' },
127
+ rootElement: textDiv,
128
+ });
129
+ rootElement.appendChild(textDiv);
130
+
131
+ const lines = [
132
+ createLineDiv(`${width}mm`, `${borderWidth.top}mm`, '0mm', null, null, '0mm', borderColor),
133
+ createLineDiv(`${width}mm`, `${borderWidth.bottom}mm`, null, null, '0mm', '0mm', borderColor),
134
+ createLineDiv(`${borderWidth.left}mm`, `${height}mm`, '0mm', null, null, '0mm', borderColor),
135
+ createLineDiv(`${borderWidth.right}mm`, `${height}mm`, '0mm', '0mm', null, null, borderColor),
136
+ ];
137
+
138
+ lines.forEach((line) => rootElement.appendChild(line));
139
+ },
140
+ propPanel: {
141
+ schema: ({ options, i18n }) => {
142
+ const font = options.font || { [DEFAULT_FONT_NAME]: { data: '', fallback: true } };
143
+ const fontNames = Object.keys(font);
144
+ const fallbackFontName = getFallbackFontName(font);
145
+ return getCellPropPanelSchema({ i18n, fontNames, fallbackFontName });
146
+ },
147
+ defaultSchema: {
148
+ type: 'cell',
149
+ content: 'Type Something...',
150
+ position: { x: 0, y: 0 },
151
+ width: 50,
152
+ height: 15,
153
+ ...getDefaultCellStyles(),
154
+ },
155
+ },
156
+ };
157
+ export default cellSchema;