@cellaware/utils 8.6.28 → 8.6.30

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.
@@ -876,7 +876,8 @@ export function mapTeamsStyles(columnNames, htmlRowStyles, htmlColumnStyles, tea
876
876
  case ConditionalFormatStyle.NOT_IMPORTANT:
877
877
  return {
878
878
  isSubtle: true,
879
- italic: true
879
+ italic: true,
880
+ weight: 'Lighter'
880
881
  };
881
882
  default:
882
883
  return {};
@@ -1204,7 +1205,7 @@ export function transformDatagrid(rows, datagridState, locale, condition) {
1204
1205
  ...datagridState,
1205
1206
  adjRows: rows,
1206
1207
  chartRows,
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
+ html: `<p style="font-size: 12px;">Displaying first <b>${DATAGRID_HTML_ROWS} rows</b> and <b>${DATAGRID_HTML_COLS} columns</b></p>\n\n${buildHtmlTableHeader(htmlColumnNames.slice(0, DATAGRID_HTML_COLS))}${htmlBuf}${buildHtmlTableFooter()}`,
1208
1209
  teamsRows: [
1209
1210
  createTeamsTableColumns(htmlColumnNames),
1210
1211
  ...teamsRows
@@ -35,13 +35,6 @@ export declare function createTeamsTableCard(title: string, table: any[], summar
35
35
  type: string;
36
36
  text: string;
37
37
  size: string;
38
- weight: string;
39
- } | {
40
- type: string;
41
- text: string;
42
- size: string;
43
- isSubtle: boolean;
44
- wrap: boolean;
45
38
  } | {
46
39
  type: string;
47
40
  roundedCorners: boolean;
@@ -11,8 +11,7 @@ function createTeamsTitleItemQualifier() {
11
11
  return {
12
12
  type: "TextBlock",
13
13
  text: `Displaying first **${DATAGRID_TEAMS_ROWS} rows** and **${DATAGRID_HTML_COLS} columns**`,
14
- size: "Small",
15
- weight: "Lighter",
14
+ size: "Small"
16
15
  };
17
16
  }
18
17
  function createTeamsSummaryItem(summary) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.6.28",
3
+ "version": "8.6.30",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",