@pdfme/schemas 4.0.0-alpha.0 → 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 (107) hide show
  1. package/README.md +1 -0
  2. package/dist/cjs/__tests__/text.test.js +10 -4
  3. package/dist/cjs/__tests__/text.test.js.map +1 -1
  4. package/dist/cjs/src/barcodes/propPanel.js +12 -0
  5. package/dist/cjs/src/barcodes/propPanel.js.map +1 -1
  6. package/dist/cjs/src/graphics/cacheKey.js +6 -0
  7. package/dist/cjs/src/graphics/cacheKey.js.map +1 -0
  8. package/dist/cjs/src/graphics/image.js +26 -15
  9. package/dist/cjs/src/graphics/image.js.map +1 -1
  10. package/dist/{esm/src/graphics/helper.js → cjs/src/graphics/imagehelper.js} +15 -2
  11. package/dist/cjs/src/graphics/imagehelper.js.map +1 -0
  12. package/dist/cjs/src/graphics/pdfHelper.js +49 -0
  13. package/dist/cjs/src/graphics/pdfHelper.js.map +1 -0
  14. package/dist/cjs/src/graphics/svg.js +2 -0
  15. package/dist/cjs/src/graphics/svg.js.map +1 -1
  16. package/dist/cjs/src/index.js +3 -2
  17. package/dist/cjs/src/index.js.map +1 -1
  18. package/dist/cjs/src/shapes/line.js +4 -2
  19. package/dist/cjs/src/shapes/line.js.map +1 -1
  20. package/dist/cjs/src/shapes/rectAndEllipse.js +13 -6
  21. package/dist/cjs/src/shapes/rectAndEllipse.js.map +1 -1
  22. package/dist/cjs/src/tables/pdfRender.js +0 -2
  23. package/dist/cjs/src/tables/pdfRender.js.map +1 -1
  24. package/dist/cjs/src/tables/propPanel.js +1 -0
  25. package/dist/cjs/src/tables/propPanel.js.map +1 -1
  26. package/dist/cjs/src/tables/uiRender.js +44 -23
  27. package/dist/cjs/src/tables/uiRender.js.map +1 -1
  28. package/dist/cjs/src/text/helper.js +27 -7
  29. package/dist/cjs/src/text/helper.js.map +1 -1
  30. package/dist/cjs/src/text/index.js +1 -0
  31. package/dist/cjs/src/text/index.js.map +1 -1
  32. package/dist/cjs/src/text/pdfRender.js +4 -4
  33. package/dist/cjs/src/text/pdfRender.js.map +1 -1
  34. package/dist/cjs/src/text/propPanel.js +1 -0
  35. package/dist/cjs/src/text/propPanel.js.map +1 -1
  36. package/dist/cjs/src/text/uiRender.js +22 -1
  37. package/dist/cjs/src/text/uiRender.js.map +1 -1
  38. package/dist/cjs/src/utils.js +37 -7
  39. package/dist/cjs/src/utils.js.map +1 -1
  40. package/dist/esm/__tests__/text.test.js +10 -4
  41. package/dist/esm/__tests__/text.test.js.map +1 -1
  42. package/dist/esm/src/barcodes/propPanel.js +12 -0
  43. package/dist/esm/src/barcodes/propPanel.js.map +1 -1
  44. package/dist/esm/src/graphics/cacheKey.js +2 -0
  45. package/dist/esm/src/graphics/cacheKey.js.map +1 -0
  46. package/dist/esm/src/graphics/image.js +25 -14
  47. package/dist/esm/src/graphics/image.js.map +1 -1
  48. package/dist/{cjs/src/graphics/helper.js → esm/src/graphics/imagehelper.js} +10 -5
  49. package/dist/esm/src/graphics/imagehelper.js.map +1 -0
  50. package/dist/esm/src/graphics/pdfHelper.js +44 -0
  51. package/dist/esm/src/graphics/pdfHelper.js.map +1 -0
  52. package/dist/esm/src/graphics/svg.js +2 -0
  53. package/dist/esm/src/graphics/svg.js.map +1 -1
  54. package/dist/esm/src/index.js +2 -1
  55. package/dist/esm/src/index.js.map +1 -1
  56. package/dist/esm/src/shapes/line.js +5 -3
  57. package/dist/esm/src/shapes/line.js.map +1 -1
  58. package/dist/esm/src/shapes/rectAndEllipse.js +14 -7
  59. package/dist/esm/src/shapes/rectAndEllipse.js.map +1 -1
  60. package/dist/esm/src/tables/pdfRender.js +0 -2
  61. package/dist/esm/src/tables/pdfRender.js.map +1 -1
  62. package/dist/esm/src/tables/propPanel.js +1 -0
  63. package/dist/esm/src/tables/propPanel.js.map +1 -1
  64. package/dist/esm/src/tables/uiRender.js +39 -18
  65. package/dist/esm/src/tables/uiRender.js.map +1 -1
  66. package/dist/esm/src/text/helper.js +25 -6
  67. package/dist/esm/src/text/helper.js.map +1 -1
  68. package/dist/esm/src/text/index.js +1 -0
  69. package/dist/esm/src/text/index.js.map +1 -1
  70. package/dist/esm/src/text/pdfRender.js +6 -6
  71. package/dist/esm/src/text/pdfRender.js.map +1 -1
  72. package/dist/esm/src/text/propPanel.js +1 -0
  73. package/dist/esm/src/text/propPanel.js.map +1 -1
  74. package/dist/esm/src/text/uiRender.js +23 -2
  75. package/dist/esm/src/text/uiRender.js.map +1 -1
  76. package/dist/esm/src/utils.js +35 -6
  77. package/dist/esm/src/utils.js.map +1 -1
  78. package/dist/types/src/graphics/cacheKey.d.ts +2 -0
  79. package/dist/types/src/graphics/image.d.ts +1 -1
  80. package/dist/types/src/graphics/imagehelper.d.ts +4 -0
  81. package/dist/types/src/graphics/pdfHelper.d.ts +8 -0
  82. package/dist/types/src/index.d.ts +2 -2
  83. package/dist/types/src/shapes/rectAndEllipse.d.ts +6 -0
  84. package/dist/types/src/text/helper.d.ts +1 -0
  85. package/dist/types/src/utils.d.ts +3 -2
  86. package/package.json +1 -1
  87. package/src/barcodes/propPanel.ts +14 -0
  88. package/src/graphics/cacheKey.ts +3 -0
  89. package/src/graphics/image.ts +28 -19
  90. package/src/graphics/{helper.ts → imagehelper.ts} +10 -1
  91. package/src/graphics/pdfHelper.ts +55 -0
  92. package/src/graphics/svg.ts +2 -0
  93. package/src/index.ts +3 -1
  94. package/src/shapes/line.ts +5 -3
  95. package/src/shapes/rectAndEllipse.ts +17 -7
  96. package/src/tables/pdfRender.ts +0 -2
  97. package/src/tables/propPanel.ts +1 -0
  98. package/src/tables/uiRender.ts +50 -19
  99. package/src/text/helper.ts +27 -6
  100. package/src/text/index.ts +1 -0
  101. package/src/text/pdfRender.ts +14 -5
  102. package/src/text/propPanel.ts +1 -0
  103. package/src/text/uiRender.ts +22 -1
  104. package/src/utils.ts +46 -9
  105. package/dist/cjs/src/graphics/helper.js.map +0 -1
  106. package/dist/esm/src/graphics/helper.js.map +0 -1
  107. package/dist/types/src/graphics/helper.d.ts +0 -5
package/src/index.ts CHANGED
@@ -8,6 +8,8 @@ import { modifyTemplateForTable, getDynamicHeightForTable } from './tables/dynam
8
8
  import { rectangle, ellipse } from './shapes/rectAndEllipse.js';
9
9
  import { convertForPdfLayoutProps, rotatePoint } from './utils.js';
10
10
 
11
+ const tableBeta = table;
12
+
11
13
  const builtInPlugins = { Text: text };
12
14
 
13
15
  export {
@@ -19,7 +21,7 @@ export {
19
21
  readOnlySvg,
20
22
  barcodes,
21
23
  line,
22
- table,
24
+ tableBeta,
23
25
  modifyTemplateForTable,
24
26
  getDynamicHeightForTable,
25
27
  rectangle,
@@ -1,5 +1,5 @@
1
1
  import type { Schema, Plugin, PDFRenderProps, UIRenderProps } from '@pdfme/common';
2
- import { rotatePoint, convertForPdfLayoutProps, hex2RgbColor } from '../utils.js';
2
+ import { rotatePoint, convertForPdfLayoutProps, hex2PrintingColor } from '../utils.js';
3
3
  import { HEX_COLOR_PATTERN } from '../constants.js';
4
4
 
5
5
  const DEFAULT_LINE_COLOR = '#000000';
@@ -10,8 +10,9 @@ interface LineSchema extends Schema {
10
10
 
11
11
  const lineSchema: Plugin<LineSchema> = {
12
12
  pdf: (arg: PDFRenderProps<LineSchema>) => {
13
- const { page, schema } = arg;
13
+ const { page, schema, options } = arg;
14
14
  if (schema.width === 0 || schema.height === 0 || !schema.color) return;
15
+ const { colorType } = options;
15
16
  const pageHeight = page.getHeight();
16
17
  const {
17
18
  width,
@@ -25,7 +26,7 @@ const lineSchema: Plugin<LineSchema> = {
25
26
  start: rotatePoint({ x, y: y + height / 2 }, pivot, rotate.angle),
26
27
  end: rotatePoint({ x: x + width, y: y + height / 2 }, pivot, rotate.angle),
27
28
  thickness: height,
28
- color: hex2RgbColor(schema.color),
29
+ color: hex2PrintingColor(schema.color ?? DEFAULT_LINE_COLOR, colorType),
29
30
  opacity: opacity,
30
31
  });
31
32
  },
@@ -49,6 +50,7 @@ const lineSchema: Plugin<LineSchema> = {
49
50
  }),
50
51
  defaultSchema: {
51
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>',
52
54
  position: { x: 0, y: 0 },
53
55
  width: 50,
54
56
  height: 1,
@@ -1,6 +1,6 @@
1
1
  import { Plugin, Schema, mm2pt } from '@pdfme/common';
2
2
  import { HEX_COLOR_PATTERN } from '../constants.js';
3
- import { hex2RgbColor, convertForPdfLayoutProps } from '../utils.js';
3
+ import { hex2PrintingColor, convertForPdfLayoutProps } from '../utils.js';
4
4
 
5
5
  interface ShapeSchema extends Schema {
6
6
  type: 'ellipse' | 'rectangle';
@@ -27,8 +27,9 @@ const shape: Plugin<ShapeSchema> = {
27
27
  rootElement.appendChild(div);
28
28
  },
29
29
  pdf: (arg) => {
30
- const { schema, page } = arg;
30
+ const { schema, page, options } = arg;
31
31
  if (!schema.color && !schema.borderColor) return;
32
+ const { colorType } = options;
32
33
  const pageHeight = page.getHeight();
33
34
  const cArg = { schema, pageHeight };
34
35
  const { position, width, height, rotate, opacity } = convertForPdfLayoutProps(cArg);
@@ -40,8 +41,8 @@ const shape: Plugin<ShapeSchema> = {
40
41
  const drawOptions = {
41
42
  rotate,
42
43
  borderWidth,
43
- borderColor: hex2RgbColor(schema.borderColor),
44
- color: hex2RgbColor(schema.color),
44
+ borderColor: hex2PrintingColor(schema.borderColor, colorType),
45
+ color: hex2PrintingColor(schema.color, colorType),
45
46
  opacity,
46
47
  borderOpacity: opacity,
47
48
  };
@@ -92,17 +93,26 @@ const shape: Plugin<ShapeSchema> = {
92
93
  height: 37.5,
93
94
  rotate: 0,
94
95
  opacity: 1,
95
- borderWidth: 5,
96
+ borderWidth: 1,
96
97
  borderColor: '#000000',
97
- color: '#ffffff',
98
+ color: '',
98
99
  readOnly: true,
99
100
  },
100
101
  },
101
102
  };
102
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
+
103
109
  const getPropPanelSchema = (type: 'rectangle' | 'ellipse') => ({
104
110
  ...shape.propPanel,
105
- defaultSchema: { ...shape.propPanel.defaultSchema, type },
111
+ defaultSchema: {
112
+ ...shape.propPanel.defaultSchema,
113
+ type,
114
+ icon: type === 'rectangle' ? rectangleIcon : ellipseIcon,
115
+ },
106
116
  });
107
117
 
108
118
  export const rectangle = { ...shape, propPanel: getPropPanelSchema('rectangle') };
@@ -12,8 +12,6 @@ const rectanglePdfRender = rectangle.pdf;
12
12
  const cellPdfRender = cell.pdf;
13
13
 
14
14
  async function drawCell(arg: PDFRenderProps<TableSchema>, cell: Cell) {
15
- // TODO Not considering the table border
16
- // The cell's position and size should indeed be shifted to accommodate the table border
17
15
  await cellPdfRender({
18
16
  ...arg,
19
17
  value: cell.raw,
@@ -62,6 +62,7 @@ export const propPanel: PropPanel<TableSchema> = {
62
62
  },
63
63
  defaultSchema: {
64
64
  type: 'table',
65
+ 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-table"><path d="M12 3v18"/><rect width="18" height="18" x="3" y="3" rx="2"/><path d="M3 9h18"/><path d="M3 15h18"/></svg>',
65
66
  position: { x: 0, y: 0 },
66
67
  width: 150,
67
68
  height: 20,
@@ -1,9 +1,9 @@
1
1
  import type { UIRenderProps, Mode } from '@pdfme/common';
2
2
  import type { TableSchema, CellStyle, Styles } from './types.js';
3
+ import { px2mm } from '@pdfme/common';
3
4
  import { createSingleTable } from './tableHelper.js';
4
5
  import { getBody, getBodyWithRange } from './helper.js';
5
6
  import cell from './cell.js';
6
- import { px2mm } from '../utils';
7
7
  import { Row } from './classes';
8
8
 
9
9
  type RowType = InstanceType<typeof Row>;
@@ -45,6 +45,45 @@ const calcResizedHeadWidthPercentages = (arg: {
45
45
  return headWidthPercentages;
46
46
  };
47
47
 
48
+ const setBorder = (
49
+ div: HTMLDivElement,
50
+ borderPosition: 'Top' | 'Left' | 'Right' | 'Bottom',
51
+ arg: UIRenderProps<TableSchema>
52
+ ) => {
53
+ div.style[`border${borderPosition}`] = `${String(arg.schema.tableStyles.borderWidth)}mm solid ${
54
+ arg.schema.tableStyles.borderColor
55
+ }`;
56
+ };
57
+
58
+ const drawBorder = (
59
+ div: HTMLDivElement,
60
+ row: RowType,
61
+ colIndex: number,
62
+ rowIndex: number,
63
+ rowsLength: number,
64
+ arg: UIRenderProps<TableSchema>
65
+ ) => {
66
+ const isFirstColumn = colIndex === 0;
67
+ const isLastColumn = colIndex === Object.values(row.cells).length - 1;
68
+ const isLastRow = rowIndex === rowsLength - 1;
69
+
70
+ if (row.section === 'head') {
71
+ setBorder(div, 'Top', arg);
72
+ if (isFirstColumn) setBorder(div, 'Left', arg);
73
+ if (isLastColumn) setBorder(div, 'Right', arg);
74
+ if ((JSON.parse(arg.value || '[]') as string[][]).length === 0) {
75
+ setBorder(div, 'Bottom', arg);
76
+ }
77
+ } else if (row.section === 'body') {
78
+ if (!arg.schema.showHead && rowIndex === 0) {
79
+ setBorder(div, 'Top', arg);
80
+ }
81
+ if (isFirstColumn) setBorder(div, 'Left', arg);
82
+ if (isLastColumn) setBorder(div, 'Right', arg);
83
+ if (isLastRow) setBorder(div, 'Bottom', arg);
84
+ }
85
+ };
86
+
48
87
  const renderRowUi = (args: {
49
88
  rows: RowType[];
50
89
  arg: UIRenderProps<TableSchema>;
@@ -55,20 +94,20 @@ const renderRowUi = (args: {
55
94
  const { rows, arg, onChangeEditingPosition, offsetY = 0, editingPosition } = args;
56
95
  const value = JSON.parse(arg.value || '[]') as string[][];
57
96
 
58
- // TODO Need to adjust the inner size when the outer border increases
59
- // Want to have the same style as border-collapse: collapse; (overlapping borders should merge into one)
60
- // This should apply to the table itself as well as the cells, which should behave similarly.
61
97
  let rowOffsetY = offsetY;
62
98
  rows.forEach((row, rowIndex) => {
63
99
  const { cells, height, section } = row;
64
- let colWidth = 0;
100
+ let colOffsetX = 0;
65
101
  Object.values(cells).forEach((cell, colIndex) => {
66
102
  const div = document.createElement('div');
67
103
  div.style.position = 'absolute';
68
104
  div.style.top = `${rowOffsetY}mm`;
69
- div.style.left = `${colWidth}mm`;
105
+ div.style.left = `${colOffsetX}mm`;
70
106
  div.style.width = `${cell.width}mm`;
71
107
  div.style.height = `${cell.height}mm`;
108
+ div.style.boxSizing = 'border-box';
109
+
110
+ drawBorder(div, row, colIndex, rowIndex, rows.length, arg);
72
111
 
73
112
  div.style.cursor =
74
113
  arg.mode === 'designer' || (arg.mode === 'form' && section === 'body') ? 'text' : 'default';
@@ -101,7 +140,6 @@ const renderRowUi = (args: {
101
140
  if (section === 'body') {
102
141
  const startRange = arg.schema.__bodyRange?.start ?? 0;
103
142
  value[rowIndex + startRange][colIndex] = newValue;
104
- // TODO Calling onChange triggers re-rendering, causing the focus to be lost
105
143
  arg.onChange({ key: 'content', value: JSON.stringify(value) });
106
144
  } else {
107
145
  const newHead = [...arg.schema.head];
@@ -115,13 +153,13 @@ const renderRowUi = (args: {
115
153
  schema: {
116
154
  type: 'cell',
117
155
  content: cell.raw,
118
- position: { x: colWidth, y: rowOffsetY },
156
+ position: { x: colOffsetX, y: rowOffsetY },
119
157
  width: cell.width,
120
158
  height: cell.height,
121
159
  ...convertToCellStyle(cell.styles),
122
160
  },
123
161
  });
124
- colWidth += cell.width;
162
+ colOffsetX += cell.width;
125
163
  });
126
164
  rowOffsetY += height;
127
165
  });
@@ -144,11 +182,6 @@ export const uiRender = async (arg: UIRenderProps<TableSchema>) => {
144
182
 
145
183
  rootElement.innerHTML = '';
146
184
 
147
- rootElement.style.borderColor = schema.tableStyles.borderColor;
148
- rootElement.style.borderWidth = String(schema.tableStyles.borderWidth) + 'mm';
149
- rootElement.style.borderStyle = 'solid';
150
- rootElement.style.boxSizing = 'border-box';
151
-
152
185
  const handleChangeEditingPosition = (
153
186
  newPosition: { rowIndex: number; colIndex: number },
154
187
  editingPosition: { rowIndex: number; colIndex: number }
@@ -353,10 +386,8 @@ export const uiRender = async (arg: UIRenderProps<TableSchema>) => {
353
386
  resetEditingPosition();
354
387
  }
355
388
 
356
- if (mode !== 'form') {
357
- const tableHeight = schema.showHead ? table.getHeight() : table.getBodyHeight();
358
- if (schema.height !== tableHeight && onChange) {
359
- onChange({ key: 'height', value: tableHeight });
360
- }
389
+ const tableHeight = schema.showHead ? table.getHeight() : table.getBodyHeight();
390
+ if (schema.height !== tableHeight && onChange) {
391
+ onChange({ key: 'height', value: tableHeight });
361
392
  }
362
393
  };
@@ -155,21 +155,41 @@ const getOverPosition = (textLine: string, calcValues: FontWidthCalcValues) => {
155
155
  return null;
156
156
  };
157
157
 
158
+ /**
159
+ * Line breakable chars depend on the language and writing system.
160
+ * Western writing systems typically use spaces and hyphens as line breakable chars.
161
+ * Other writing systems often break on word boundaries so the following
162
+ * does not negatively impact them.
163
+ * However, this might need to be revisited for broader language support.
164
+ */
165
+ const isLineBreakableChar = (char: string) => {
166
+ const lineBreakableChars = [' ', '-', "\u2014", "\u2013"];
167
+ return lineBreakableChars.includes(char);
168
+ }
169
+
158
170
  /**
159
171
  * Gets the position of the split. Splits the exceeding line at
160
- * the last whitespace prior to it exceeding the bounding box width.
172
+ * the last breakable char prior to it exceeding the bounding box width.
161
173
  */
162
174
  const getSplitPosition = (textLine: string, calcValues: FontWidthCalcValues) => {
163
175
  const overPos = getOverPosition(textLine, calcValues);
164
176
  if (overPos === null) return textLine.length; // input line is shorter than the available space
165
177
 
166
- let overPosTmp = overPos;
167
- while (textLine[overPosTmp] !== ' ' && overPosTmp >= 0) {
178
+ if (textLine[overPos] === ' ') {
179
+ // if the character immediately beyond the boundary is a space, split
180
+ return overPos;
181
+ }
182
+
183
+ let overPosTmp = overPos - 1;
184
+ while (overPosTmp >= 0) {
185
+ if (isLineBreakableChar(textLine[overPosTmp])) {
186
+ return overPosTmp+1;
187
+ }
168
188
  overPosTmp--;
169
189
  }
170
190
 
171
- // For very long lines with no whitespace use the original overPos
172
- return overPosTmp > 0 ? overPosTmp : overPos;
191
+ // For very long lines with no breakable chars use the original overPos
192
+ return overPos;
173
193
  };
174
194
 
175
195
  /**
@@ -178,7 +198,7 @@ const getSplitPosition = (textLine: string, calcValues: FontWidthCalcValues) =>
178
198
  */
179
199
  export const getSplittedLines = (textLine: string, calcValues: FontWidthCalcValues): string[] => {
180
200
  const splitPos = getSplitPosition(textLine, calcValues);
181
- const splittedLine = textLine.substring(0, splitPos);
201
+ const splittedLine = textLine.substring(0, splitPos).trimEnd();
182
202
  const rest = textLine.substring(splitPos).trimStart();
183
203
 
184
204
  if (rest === textLine) {
@@ -342,3 +362,4 @@ export const splitTextToSize = (arg: {
342
362
  });
343
363
  return lines;
344
364
  };
365
+ export const isFirefox = () => navigator.userAgent.toLowerCase().indexOf('firefox') > -1;
package/src/text/index.ts CHANGED
@@ -16,6 +16,7 @@ export const readOnlyText: Plugin<TextSchema> = {
16
16
  defaultSchema: {
17
17
  ...textSchema.propPanel.defaultSchema,
18
18
  type: 'readOnlyText',
19
+ 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-type"><polyline points="4 7 4 4 20 4 20 7"/><line x1="9" x2="15" y1="20" y2="20"/><line x1="12" x2="12" y1="4" y2="20"/></svg>',
19
20
  readOnly: true,
20
21
  },
21
22
  },
@@ -1,6 +1,13 @@
1
1
  import { PDFFont, PDFDocument } from '@pdfme/pdf-lib';
2
2
  import type { TextSchema } from './types';
3
- import { PDFRenderProps, Font, getDefaultFont, getFallbackFontName, mm2pt } from '@pdfme/common';
3
+ import {
4
+ PDFRenderProps,
5
+ ColorType,
6
+ Font,
7
+ getDefaultFont,
8
+ getFallbackFontName,
9
+ mm2pt,
10
+ } from '@pdfme/common';
4
11
  import {
5
12
  VERTICAL_ALIGN_TOP,
6
13
  VERTICAL_ALIGN_MIDDLE,
@@ -20,7 +27,7 @@ import {
20
27
  widthOfTextAtSize,
21
28
  splitTextToSize,
22
29
  } from './helper.js';
23
- import { convertForPdfLayoutProps, rotatePoint, hex2RgbColor } from '../utils.js';
30
+ import { convertForPdfLayoutProps, rotatePoint, hex2PrintingColor } from '../utils.js';
24
31
 
25
32
  const embedAndGetFontObj = async (arg: {
26
33
  pdfDoc: PDFDocument;
@@ -57,17 +64,19 @@ const getFontProp = async ({
57
64
  value,
58
65
  font,
59
66
  schema,
67
+ colorType,
60
68
  _cache,
61
69
  }: {
62
70
  value: string;
63
71
  font: Font;
72
+ colorType?: ColorType;
64
73
  schema: TextSchema;
65
74
  _cache: Map<any, any>;
66
75
  }) => {
67
76
  const fontSize = schema.dynamicFontSize
68
77
  ? await calculateDynamicFontSize({ textSchema: schema, font, value, _cache })
69
78
  : schema.fontSize ?? DEFAULT_FONT_SIZE;
70
- const color = hex2RgbColor(schema.fontColor || DEFAULT_FONT_COLOR);
79
+ const color = hex2PrintingColor(schema.fontColor || DEFAULT_FONT_COLOR, colorType);
71
80
 
72
81
  return {
73
82
  alignment: schema.alignment ?? DEFAULT_ALIGNMENT,
@@ -83,7 +92,7 @@ export const pdfRender = async (arg: PDFRenderProps<TextSchema>) => {
83
92
  const { value, pdfDoc, pdfLib, page, options, schema, _cache } = arg;
84
93
  if (!value) return;
85
94
 
86
- const { font = getDefaultFont() } = options;
95
+ const { font = getDefaultFont(), colorType } = options;
87
96
 
88
97
  const [pdfFontObj, fontKitFont, fontProp] = await Promise.all([
89
98
  embedAndGetFontObj({ pdfDoc, font, _cache }),
@@ -108,7 +117,7 @@ export const pdfRender = async (arg: PDFRenderProps<TextSchema>) => {
108
117
  } = convertForPdfLayoutProps({ schema, pageHeight, applyRotateTranslate: false });
109
118
 
110
119
  if (schema.backgroundColor) {
111
- const color = hex2RgbColor(schema.backgroundColor);
120
+ const color = hex2PrintingColor(schema.backgroundColor, colorType);
112
121
  page.drawRectangle({ x, y, width, height, rotate, color });
113
122
  }
114
123
 
@@ -177,6 +177,7 @@ export const propPanel: PropPanel<TextSchema> = {
177
177
  widgets: { UseDynamicFontSize },
178
178
  defaultSchema: {
179
179
  type: 'text',
180
+ 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-text-cursor-input"><path d="M5 4h1a3 3 0 0 1 3 3 3 3 0 0 1 3-3h1"/><path d="M13 20h-1a3 3 0 0 1-3-3 3 3 0 0 1-3 3H5"/><path d="M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1"/><path d="M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7"/><path d="M9 7v10"/></svg>',
180
181
  content: 'Type Something...',
181
182
  position: { x: 0, y: 0 },
182
183
  width: 45,
@@ -17,6 +17,7 @@ import {
17
17
  calculateDynamicFontSize,
18
18
  getFontKitFont,
19
19
  getBrowserVerticalFontAdjustments,
20
+ isFirefox,
20
21
  } from './helper.js';
21
22
  import { isEditable } from '../utils.js';
22
23
 
@@ -117,7 +118,27 @@ export const uiRender = async (arg: UIRenderProps<TextSchema>) => {
117
118
  Object.assign(textBlock.style, textBlockStyle);
118
119
 
119
120
  if (isEditable(mode, schema)) {
120
- textBlock.contentEditable = 'plaintext-only';
121
+ if (!isFirefox()) {
122
+ textBlock.contentEditable = 'plaintext-only';
123
+ } else {
124
+ textBlock.contentEditable = 'true';
125
+ textBlock.addEventListener('keydown', (e: KeyboardEvent) => {
126
+ if (e.key === 'Enter' && !e.shiftKey) {
127
+ e.preventDefault();
128
+ document.execCommand('insertLineBreak', false, undefined);
129
+ }
130
+ });
131
+
132
+ textBlock.addEventListener('paste', (e: ClipboardEvent) => {
133
+ e.preventDefault();
134
+ const paste = e.clipboardData?.getData('text');
135
+ const selection = window.getSelection();
136
+ if (!selection?.rangeCount) return;
137
+ selection.deleteFromDocument();
138
+ selection.getRangeAt(0).insertNode(document.createTextNode(paste || ''));
139
+ selection.collapseToEnd();
140
+ });
141
+ }
121
142
  textBlock.tabIndex = tabIndex || 0;
122
143
  textBlock.innerText = value;
123
144
  textBlock.addEventListener('blur', (e: Event) => {
package/src/utils.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type * as CSS from 'csstype';
2
- import { degrees, degreesToRadians, rgb } from '@pdfme/pdf-lib';
3
- import { Schema, mm2pt, Mode, isHexValid } from '@pdfme/common';
2
+ import { cmyk, degrees, degreesToRadians, rgb } from '@pdfme/pdf-lib';
3
+ import { Schema, mm2pt, Mode, isHexValid, ColorType } from '@pdfme/common';
4
4
 
5
5
  export const convertForPdfLayoutProps = ({
6
6
  schema,
@@ -103,6 +103,50 @@ export const hex2RgbColor = (hexString: string | undefined) => {
103
103
  return undefined;
104
104
  };
105
105
 
106
+ export const hex2CmykColor = (hexString: string | undefined) => {
107
+ if (hexString) {
108
+ const isValid = isHexValid(hexString);
109
+
110
+ if (!isValid) {
111
+ throw new Error(`Invalid hex color value ${hexString}`);
112
+ }
113
+
114
+ // Remove the # if it's present
115
+ hexString = hexString.replace('#', '');
116
+
117
+ // Extract the hexadecimal color code and the opacity
118
+ const hexColor = hexString.substring(0, 6);
119
+ const opacityColor = hexString.substring(6, 8);
120
+ const opacity = opacityColor ? parseInt(opacityColor, 16) / 255 : 1;
121
+
122
+ // Convert the hex values to decimal
123
+ let r = parseInt(hexColor.substring(0, 2), 16) / 255;
124
+ let g = parseInt(hexColor.substring(2, 4), 16) / 255;
125
+ let b = parseInt(hexColor.substring(4, 6), 16) / 255;
126
+
127
+ // Apply the opacity
128
+ r = r * opacity + (1 - opacity);
129
+ g = g * opacity + (1 - opacity);
130
+ b = b * opacity + (1 - opacity);
131
+
132
+ // Calculate the CMYK values
133
+ const k = 1 - Math.max(r, g, b);
134
+ const c = r === 0 ? 0 : (1 - r - k) / (1 - k);
135
+ const m = g === 0 ? 0 : (1 - g - k) / (1 - k);
136
+ const y = b === 0 ? 0 : (1 - b - k) / (1 - k);
137
+
138
+ return cmyk(c, m, y, k);
139
+ }
140
+
141
+ return undefined;
142
+ };
143
+
144
+ export const hex2PrintingColor = (hexString: string | undefined, colorType?: ColorType) => {
145
+ return colorType?.toLocaleLowerCase() == 'cmyk'
146
+ ? hex2CmykColor(hexString)
147
+ : hex2RgbColor(hexString);
148
+ };
149
+
106
150
  export const readFile = (input: File | FileList | null): Promise<string | ArrayBuffer> =>
107
151
  new Promise((resolve, reject) => {
108
152
  const fileReader = new FileReader();
@@ -159,11 +203,4 @@ export const createErrorElm = () => {
159
203
 
160
204
  return container;
161
205
  };
162
-
163
- export const px2mm = (px: number): number => {
164
- // http://www.endmemo.com/sconvert/millimeterpixel.php
165
- const ratio = 0.26458333333333;
166
- return parseFloat(String(px)) * ratio;
167
- };
168
-
169
206
  export const cloneDeep = <T>(value: T): T => JSON.parse(JSON.stringify(value));
@@ -1 +0,0 @@
1
- {"version":3,"file":"helper.js","sourceRoot":"","sources":["../../../../src/graphics/helper.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"helper.js","sourceRoot":"","sources":["../../../../src/graphics/helper.ts"],"names":[],"mappings":"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"}
@@ -1,5 +0,0 @@
1
- /// <reference types="node" />
2
- export declare const imageSize: (imgBuffer: Buffer) => {
3
- height: number;
4
- width: number;
5
- };