@cellaware/utils 8.11.6 → 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.
@@ -170,7 +170,6 @@ export declare function mapTeamsStyles(columnNames: string[], htmlRowStyles: str
170
170
  export declare function mapTeamsTransposeStyles(htmlColumnStyle: HtmlColumnStyle): TeamsColumnStyle;
171
171
  export declare function createTeamsTableColumns(columnNames: string[]): {
172
172
  type: string;
173
- separator: boolean;
174
173
  cells: {
175
174
  type: string;
176
175
  items: {
@@ -1108,7 +1108,6 @@ function createTeamsTableColumnText(columnName) {
1108
1108
  export function createTeamsTableColumns(columnNames) {
1109
1109
  return {
1110
1110
  type: "TableRow",
1111
- separator: true,
1112
1111
  cells: columnNames.map((columnName) => ({
1113
1112
  type: "TableCell",
1114
1113
  items: [createTeamsTableColumnText(columnName)]
@@ -1168,7 +1167,7 @@ function createTeamsTransposeTableCellText(value, key, columnStyle) {
1168
1167
  return {
1169
1168
  type: "TextBlock",
1170
1169
  text: italic ? `*${truncValue}*` : truncValue,
1171
- size: key ? "Medium" : "Large",
1170
+ size: key ? "Small" : "Medium",
1172
1171
  color,
1173
1172
  weight,
1174
1173
  isSubtle
@@ -1,6 +1,5 @@
1
1
  export declare function createTeamsTableItem(rows: any[]): ({
2
2
  type: string;
3
- separator: boolean;
4
3
  cells: {
5
4
  type: string;
6
5
  items: {
@@ -139,7 +138,6 @@ export declare function createTeamsReportRowCard(lineTitle: string, table: any[]
139
138
  wrap: boolean;
140
139
  } | {
141
140
  type: string;
142
- showGridLines: boolean;
143
141
  roundedCorners: boolean;
144
142
  columns: {
145
143
  width: number;
@@ -197,7 +195,6 @@ export declare function createTeamsAlertTableCard(condition: string, rows: any[]
197
195
  }[];
198
196
  rows: ({
199
197
  type: string;
200
- separator: boolean;
201
198
  cells: {
202
199
  type: string;
203
200
  items: {
@@ -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.6",
3
+ "version": "8.11.8",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",