@cellaware/utils 8.11.11 → 8.11.13
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 {
|
|
@@ -102,6 +103,7 @@ export interface ReportSchedule {
|
|
|
102
103
|
integrations?: string[];
|
|
103
104
|
excel?: boolean;
|
|
104
105
|
parameterValues?: ReportParameterValue[];
|
|
106
|
+
lineIds?: string[];
|
|
105
107
|
clientId: string;
|
|
106
108
|
userId: string;
|
|
107
109
|
userDetails: string;
|
|
@@ -114,4 +116,5 @@ export interface InstanceReportSchedule {
|
|
|
114
116
|
integrations: Set<SubscriptionIntegration>;
|
|
115
117
|
excel: boolean;
|
|
116
118
|
parameterValues: ReportParameterValue[];
|
|
119
|
+
lineIds: string[];
|
|
117
120
|
}
|
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() {
|
|
@@ -46,6 +47,7 @@ export function initReportSchedule() {
|
|
|
46
47
|
integrations: [],
|
|
47
48
|
excel: false,
|
|
48
49
|
parameterValues: [],
|
|
50
|
+
lineIds: [],
|
|
49
51
|
clientId: '',
|
|
50
52
|
userId: '',
|
|
51
53
|
userDetails: ''
|