@cellaware/utils 8.11.7 → 8.11.8
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,7 @@ 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
1171
|
color,
|
|
1172
1172
|
weight,
|
|
1173
1173
|
isSubtle
|
|
@@ -1219,7 +1219,6 @@ export function createTeamsTransposeTableRow(row, columnStyle) {
|
|
|
1219
1219
|
};
|
|
1220
1220
|
return {
|
|
1221
1221
|
type: "TableRow",
|
|
1222
|
-
separator: true,
|
|
1223
1222
|
cells: [keyCell, valueCell]
|
|
1224
1223
|
};
|
|
1225
1224
|
}
|
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
|