@firestitch/list 12.14.5 → 12.14.6
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/app/interfaces/listconfig.interface.d.ts +3 -3
- package/bundles/firestitch-list.umd.js +1 -1
- package/bundles/firestitch-list.umd.js.map +1 -1
- package/esm2015/app/classes/data-controller.js +2 -2
- package/esm2015/app/interfaces/listconfig.interface.js +1 -1
- package/fesm2015/firestitch-list.js +1 -1
- package/fesm2015/firestitch-list.js.map +1 -1
- package/package.json +1 -1
|
@@ -66,11 +66,11 @@ export interface FsListGroupConfig {
|
|
|
66
66
|
groupBy?: (row: any) => any;
|
|
67
67
|
compareBy?: (row: any) => any;
|
|
68
68
|
footer?: (row: {
|
|
69
|
-
[key: string]:
|
|
69
|
+
[key: string]: any;
|
|
70
70
|
}, group?: {
|
|
71
|
-
[key: string]:
|
|
71
|
+
[key: string]: any;
|
|
72
72
|
children: {
|
|
73
|
-
[key: string]:
|
|
73
|
+
[key: string]: any;
|
|
74
74
|
}[];
|
|
75
75
|
}) => boolean;
|
|
76
76
|
actions?: (FsListRowActionGroup | FsListRowAction)[];
|
|
@@ -1740,7 +1740,7 @@
|
|
|
1740
1740
|
return _this._footerRowFn(row.data, Object.assign(Object.assign({}, groupRow.data), { children: groupRow.childrenData }));
|
|
1741
1741
|
});
|
|
1742
1742
|
if (footerIndex !== -1) {
|
|
1743
|
-
var footerRow = groupRow.children.
|
|
1743
|
+
var footerRow = groupRow.children.splice(footerIndex, footerIndex + 1)[0];
|
|
1744
1744
|
groupRow.children.push(new GroupFooterRow(footerRow.data, groupRow));
|
|
1745
1745
|
}
|
|
1746
1746
|
});
|