@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.
@@ -201,7 +201,6 @@ export declare function createTeamsTransposeTableRow(row: {
201
201
  value: any;
202
202
  }, columnStyle: TeamsColumnStyle): {
203
203
  type: string;
204
- separator: boolean;
205
204
  cells: any[];
206
205
  };
207
206
  /**
@@ -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 ? "Medium" : "Large",
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
  }
@@ -138,7 +138,6 @@ export declare function createTeamsReportRowCard(lineTitle: string, table: any[]
138
138
  wrap: boolean;
139
139
  } | {
140
140
  type: string;
141
- showGridLines: boolean;
142
141
  roundedCorners: boolean;
143
142
  columns: {
144
143
  width: number;
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.11.7",
3
+ "version": "8.11.9",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",