@cellaware/utils 8.6.27 → 8.6.29
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
|
@@ -1204,7 +1204,7 @@ export function transformDatagrid(rows, datagridState, locale, condition) {
|
|
|
1204
1204
|
...datagridState,
|
|
1205
1205
|
adjRows: rows,
|
|
1206
1206
|
chartRows,
|
|
1207
|
-
html:
|
|
1207
|
+
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
1208
|
teamsRows: [
|
|
1209
1209
|
createTeamsTableColumns(htmlColumnNames),
|
|
1210
1210
|
...teamsRows
|
package/dist/chatwms/teams.d.ts
CHANGED
|
@@ -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;
|
package/dist/chatwms/teams.js
CHANGED
|
@@ -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) {
|
|
@@ -42,6 +41,7 @@ export function createTeamsTableCard(title, table, summary) {
|
|
|
42
41
|
msteams: { width: "Full" },
|
|
43
42
|
body: [
|
|
44
43
|
createTeamsTitleItem(title),
|
|
44
|
+
createTeamsTitleItemQualifier(),
|
|
45
45
|
{
|
|
46
46
|
type: "Table",
|
|
47
47
|
roundedCorners: true,
|
|
@@ -49,7 +49,6 @@ export function createTeamsTableCard(title, table, summary) {
|
|
|
49
49
|
columns: table.length === 0 ? [] : table[0].cells.map(() => ({ width: 3 })),
|
|
50
50
|
rows: table
|
|
51
51
|
},
|
|
52
|
-
createTeamsTitleItemQualifier(),
|
|
53
52
|
createTeamsSummaryItem(summary)
|
|
54
53
|
]
|
|
55
54
|
};
|