@cellaware/utils 8.6.17 → 8.6.19
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.
package/dist/chatwms/datagrid.js
CHANGED
|
@@ -888,7 +888,6 @@ export function mapTeamsStyles(columnNames, htmlRowStyles, htmlColumnStyles, tea
|
|
|
888
888
|
const applyRowStyleToColumns = (style) => {
|
|
889
889
|
for (const columnName of columnNames) {
|
|
890
890
|
const columnStyle = getColumnStyle(style);
|
|
891
|
-
console.log(columnStyle);
|
|
892
891
|
const teamsColumnStyle = teamsColumnStyles.find(c => c.columnName === columnName);
|
|
893
892
|
if (!!teamsColumnStyle) {
|
|
894
893
|
teamsColumnStyle.styles.push(columnStyle);
|
package/dist/chatwms/teams.js
CHANGED
|
@@ -39,7 +39,6 @@ export function createTeamsValueCard(title, columnName, value, styles, summary)
|
|
|
39
39
|
let columnStyles = [];
|
|
40
40
|
[rowStyles, columnStyles] = mapTeamsStyles([columnName], styles, [], rowStyles, columnStyles);
|
|
41
41
|
console.log(styles);
|
|
42
|
-
console.log('--==--==--==--==--==--==--==--==--');
|
|
43
42
|
console.log(columnStyles);
|
|
44
43
|
let color = undefined;
|
|
45
44
|
let style = undefined;
|