@cellaware/utils 8.11.6 → 8.11.7
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.
|
@@ -170,7 +170,6 @@ export declare function mapTeamsStyles(columnNames: string[], htmlRowStyles: str
|
|
|
170
170
|
export declare function mapTeamsTransposeStyles(htmlColumnStyle: HtmlColumnStyle): TeamsColumnStyle;
|
|
171
171
|
export declare function createTeamsTableColumns(columnNames: string[]): {
|
|
172
172
|
type: string;
|
|
173
|
-
separator: boolean;
|
|
174
173
|
cells: {
|
|
175
174
|
type: string;
|
|
176
175
|
items: {
|
|
@@ -202,6 +201,7 @@ export declare function createTeamsTransposeTableRow(row: {
|
|
|
202
201
|
value: any;
|
|
203
202
|
}, columnStyle: TeamsColumnStyle): {
|
|
204
203
|
type: string;
|
|
204
|
+
separator: boolean;
|
|
205
205
|
cells: any[];
|
|
206
206
|
};
|
|
207
207
|
/**
|
package/dist/chatwms/datagrid.js
CHANGED
|
@@ -1108,7 +1108,6 @@ function createTeamsTableColumnText(columnName) {
|
|
|
1108
1108
|
export function createTeamsTableColumns(columnNames) {
|
|
1109
1109
|
return {
|
|
1110
1110
|
type: "TableRow",
|
|
1111
|
-
separator: true,
|
|
1112
1111
|
cells: columnNames.map((columnName) => ({
|
|
1113
1112
|
type: "TableCell",
|
|
1114
1113
|
items: [createTeamsTableColumnText(columnName)]
|
|
@@ -1220,6 +1219,7 @@ export function createTeamsTransposeTableRow(row, columnStyle) {
|
|
|
1220
1219
|
};
|
|
1221
1220
|
return {
|
|
1222
1221
|
type: "TableRow",
|
|
1222
|
+
separator: true,
|
|
1223
1223
|
cells: [keyCell, valueCell]
|
|
1224
1224
|
};
|
|
1225
1225
|
}
|
package/dist/chatwms/teams.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export declare function createTeamsTableItem(rows: any[]): ({
|
|
2
2
|
type: string;
|
|
3
|
-
separator: boolean;
|
|
4
3
|
cells: {
|
|
5
4
|
type: string;
|
|
6
5
|
items: {
|
|
@@ -197,7 +196,6 @@ export declare function createTeamsAlertTableCard(condition: string, rows: any[]
|
|
|
197
196
|
}[];
|
|
198
197
|
rows: ({
|
|
199
198
|
type: string;
|
|
200
|
-
separator: boolean;
|
|
201
199
|
cells: {
|
|
202
200
|
type: string;
|
|
203
201
|
items: {
|