@cellaware/utils 8.11.11 → 8.11.12

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.
@@ -1086,13 +1086,13 @@ function buildHtmlRow(rowValues, rowStyles, columnStyles, columnCount) {
1086
1086
  }
1087
1087
  function buildHtmlTransposeRow(row, columnStyle) {
1088
1088
  let buf = '';
1089
- buf += `\n\t\t\t<td style="font-size: 13px; font-weight: 600; padding: 20px 14px; background: white; justify-items: end; width: 33%;"><span style="display: grid;">${truncateValue(row.key, 24)}</span></td>`;
1090
- const truncValue = truncateValue(row.value, 24);
1089
+ buf += `\n\t\t\t<td style="font-size: 13px; font-weight: 600; padding: 15px 14px; background: white; justify-items: end; align-items: center; width: 33%;"><span style="display: grid;">${truncateValue(row.key, 24)}</span></td>`;
1090
+ const truncValue = truncateValue(row.value, 42);
1091
1091
  if (columnStyle.styles.length > 0) {
1092
- buf += `\n\t\t\t<td style="font-size: 16px; padding: 20px 14px; background: white;" class="${columnStyle.styles.join(' ')}">${truncValue}</td>`;
1092
+ buf += `\n\t\t\t<td style="font-size: 16px; padding: 15px 14px; background: white;" class="${columnStyle.styles.join(' ')}">${truncValue}</td>`;
1093
1093
  }
1094
1094
  else {
1095
- buf += `\n\t\t\t<td style="font-size: 16px; padding: 20px 14px; background: white;">${truncValue}</td>`;
1095
+ buf += `\n\t\t\t<td style="font-size: 16px; padding: 15px 14px; background: white;">${truncValue}</td>`;
1096
1096
  }
1097
1097
  buf += '\n\t\t</tr>';
1098
1098
  return buf;
@@ -76,10 +76,11 @@ export interface ReportLineResult {
76
76
  rows: any[];
77
77
  htmlRows: string;
78
78
  teamsRows: any[];
79
- markdownRows: string;
80
79
  chartRows: any[];
81
80
  htmlTranspose: string;
82
81
  teamsTranspose: any[];
82
+ briefRows: string;
83
+ briefRowCount: number;
83
84
  }
84
85
  export declare function initReportLineResult(): ReportLineResult;
85
86
  export interface ReportUsage {
@@ -28,10 +28,11 @@ export function initReportLineResult() {
28
28
  rows: [],
29
29
  htmlRows: '',
30
30
  teamsRows: [],
31
- markdownRows: '',
32
31
  chartRows: [],
33
32
  htmlTranspose: '',
34
- teamsTranspose: []
33
+ teamsTranspose: [],
34
+ briefRows: '',
35
+ briefRowCount: 0,
35
36
  };
36
37
  }
37
38
  export function initReportSchedule() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.11.11",
3
+ "version": "8.11.12",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",