@cellaware/utils 8.6.24 → 8.6.25

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.
@@ -46,6 +46,7 @@ export declare function createTeamsTableCard(title: string, table: any[], summar
46
46
  type: string;
47
47
  roundedCorners: boolean;
48
48
  firstRowAsHeaders: boolean;
49
+ columns: any;
49
50
  rows: any[];
50
51
  })[];
51
52
  };
@@ -38,7 +38,7 @@ export function createTeamsTableCard(title, table, summary) {
38
38
  type: "Table",
39
39
  roundedCorners: true,
40
40
  firstRowAsHeaders: true,
41
- // columns: table.length === 0 ? [] : table[0].cells.map(() => ({ width: 3 })),
41
+ columns: table.length === 0 ? [] : table[0].cells.map(() => ({ width: "auto" })),
42
42
  rows: table
43
43
  },
44
44
  createTeamsSummaryItem(summary)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.6.24",
3
+ "version": "8.6.25",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",