@cellaware/utils 8.11.9 → 8.11.10
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 +4 -4
- package/package.json +1 -1
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;">${truncateValue(row.key, 24)}</td>`;
|
|
1089
|
+
buf += `\n\t\t\t<td style="font-size: 13px; font-weight: 600; padding: 20px 14px;">${truncateValue(row.key, 24)}</td>`;
|
|
1090
1090
|
const truncValue = truncateValue(row.value, 24);
|
|
1091
1091
|
if (columnStyle.styles.length > 0) {
|
|
1092
|
-
buf += `\n\t\t\t<td style="font-size: 16px;" class="${columnStyle.styles.join(' ')}">${truncValue}</td>`;
|
|
1092
|
+
buf += `\n\t\t\t<td style="font-size: 16px; padding: 20px 14px;" class="${columnStyle.styles.join(' ')}">${truncValue}</td>`;
|
|
1093
1093
|
}
|
|
1094
1094
|
else {
|
|
1095
|
-
buf += `\n\t\t\t<td style="font-size: 16px;">${truncValue}</td>`;
|
|
1095
|
+
buf += `\n\t\t\t<td style="font-size: 16px; padding: 20px 14px;">${truncValue}</td>`;
|
|
1096
1096
|
}
|
|
1097
1097
|
buf += '\n\t\t</tr>';
|
|
1098
1098
|
return buf;
|
|
@@ -1168,7 +1168,7 @@ function createTeamsTransposeTableCellText(value, key, columnStyle) {
|
|
|
1168
1168
|
type: "TextBlock",
|
|
1169
1169
|
text: italic ? `*${truncValue}*` : truncValue,
|
|
1170
1170
|
size: key ? "Small" : "Medium",
|
|
1171
|
-
horizontalAlignment: key ? "
|
|
1171
|
+
horizontalAlignment: key ? "Right" : "Left",
|
|
1172
1172
|
color,
|
|
1173
1173
|
weight,
|
|
1174
1174
|
isSubtle
|