@cellaware/utils 8.6.16 → 8.6.18

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.
@@ -43,6 +43,7 @@ export declare function createTeamsValueCard(title: string, columnName: string,
43
43
  } | {
44
44
  type: string;
45
45
  roundedCorners: boolean;
46
+ style: string | undefined;
46
47
  items: {
47
48
  type: string;
48
49
  text: any;
@@ -51,7 +52,6 @@ export declare function createTeamsValueCard(title: string, columnName: string,
51
52
  color: string | undefined;
52
53
  weight: string | undefined;
53
54
  }[];
54
- style: string | undefined;
55
55
  })[];
56
56
  };
57
57
  export declare function createTeamsChartCard(title: string, png: string, summary: string): {
@@ -38,9 +38,6 @@ export function createTeamsValueCard(title, columnName, value, styles, summary)
38
38
  let rowStyles = [];
39
39
  let columnStyles = [];
40
40
  [rowStyles, columnStyles] = mapTeamsStyles([columnName], styles, [], rowStyles, columnStyles);
41
- console.log(styles);
42
- console.log('--==--==--==--==--==--==--==--==--');
43
- console.log(columnStyles);
44
41
  let color = undefined;
45
42
  let style = undefined;
46
43
  let weight = undefined;
@@ -72,6 +69,7 @@ export function createTeamsValueCard(title, columnName, value, styles, summary)
72
69
  {
73
70
  type: "Container",
74
71
  roundedCorners: true,
72
+ style,
75
73
  items: [
76
74
  {
77
75
  type: "TextBlock",
@@ -81,8 +79,7 @@ export function createTeamsValueCard(title, columnName, value, styles, summary)
81
79
  color,
82
80
  weight
83
81
  }
84
- ],
85
- style
82
+ ]
86
83
  },
87
84
  createTeamsSummaryItem(summary)
88
85
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.6.16",
3
+ "version": "8.6.18",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",