@cellaware/utils 8.11.7 → 8.11.9
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
|
@@ -1167,7 +1167,8 @@ function createTeamsTransposeTableCellText(value, key, columnStyle) {
|
|
|
1167
1167
|
return {
|
|
1168
1168
|
type: "TextBlock",
|
|
1169
1169
|
text: italic ? `*${truncValue}*` : truncValue,
|
|
1170
|
-
size: key ? "
|
|
1170
|
+
size: key ? "Small" : "Medium",
|
|
1171
|
+
horizontalAlignment: key ? "Left" : "Center",
|
|
1171
1172
|
color,
|
|
1172
1173
|
weight,
|
|
1173
1174
|
isSubtle
|
|
@@ -1219,7 +1220,6 @@ export function createTeamsTransposeTableRow(row, columnStyle) {
|
|
|
1219
1220
|
};
|
|
1220
1221
|
return {
|
|
1221
1222
|
type: "TableRow",
|
|
1222
|
-
separator: true,
|
|
1223
1223
|
cells: [keyCell, valueCell]
|
|
1224
1224
|
};
|
|
1225
1225
|
}
|
package/dist/chatwms/teams.d.ts
CHANGED
package/dist/chatwms/teams.js
CHANGED
|
@@ -145,7 +145,6 @@ export function createTeamsReportRowCard(lineTitle, table, summary, reportTitle)
|
|
|
145
145
|
createTeamsTitleItem(reportTitle, lineTitle),
|
|
146
146
|
{
|
|
147
147
|
type: "Table",
|
|
148
|
-
showGridLines: false,
|
|
149
148
|
roundedCorners: true,
|
|
150
149
|
columns: [{ width: 1 }, { width: 2 }],
|
|
151
150
|
rows: table
|