@cellaware/utils 8.6.27 → 8.6.28

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.
@@ -1204,7 +1204,7 @@ export function transformDatagrid(rows, datagridState, locale, condition) {
1204
1204
  ...datagridState,
1205
1205
  adjRows: rows,
1206
1206
  chartRows,
1207
- html: `${buildHtmlTableHeader(htmlColumnNames.slice(0, DATAGRID_HTML_COLS))}${htmlBuf}${buildHtmlTableFooter()}`,
1207
+ html: `<div>Displaying first <b>${DATAGRID_HTML_ROWS} rows</b> and <b>${DATAGRID_HTML_COLS} columns</b></div>\n\n${buildHtmlTableHeader(htmlColumnNames.slice(0, DATAGRID_HTML_COLS))}${htmlBuf}${buildHtmlTableFooter()}`,
1208
1208
  teamsRows: [
1209
1209
  createTeamsTableColumns(htmlColumnNames),
1210
1210
  ...teamsRows
@@ -42,6 +42,7 @@ export function createTeamsTableCard(title, table, summary) {
42
42
  msteams: { width: "Full" },
43
43
  body: [
44
44
  createTeamsTitleItem(title),
45
+ createTeamsTitleItemQualifier(),
45
46
  {
46
47
  type: "Table",
47
48
  roundedCorners: true,
@@ -49,7 +50,6 @@ export function createTeamsTableCard(title, table, summary) {
49
50
  columns: table.length === 0 ? [] : table[0].cells.map(() => ({ width: 3 })),
50
51
  rows: table
51
52
  },
52
- createTeamsTitleItemQualifier(),
53
53
  createTeamsSummaryItem(summary)
54
54
  ]
55
55
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.6.27",
3
+ "version": "8.6.28",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",