@cellaware/utils 8.11.10 → 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.
package/dist/chatwms/datagrid.js
CHANGED
|
@@ -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:
|
|
1090
|
-
const truncValue = truncateValue(row.value,
|
|
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:
|
|
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:
|
|
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;
|
package/dist/chatwms/report.d.ts
CHANGED
|
@@ -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 {
|
package/dist/chatwms/report.js
CHANGED
|
@@ -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() {
|