@coreui/angular-pro 4.4.2 → 4.4.4
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/esm2020/lib/date-picker/date-picker.component.mjs +3 -3
- package/esm2020/lib/date-range-picker/date-range-picker/date-range-picker.component.mjs +5 -3
- package/esm2020/lib/multi-select/multi-select/multi-select.component.mjs +4 -2
- package/esm2020/lib/multi-select/multi-select.service.mjs +2 -2
- package/esm2020/lib/smart-table/smart-table.type.mjs +1 -1
- package/fesm2015/coreui-angular-pro.mjs +10 -6
- package/fesm2015/coreui-angular-pro.mjs.map +1 -1
- package/fesm2020/coreui-angular-pro.mjs +10 -6
- package/fesm2020/coreui-angular-pro.mjs.map +1 -1
- package/lib/smart-table/smart-table-head/smart-table-head.component.d.ts +3 -1
- package/lib/smart-table/smart-table.type.d.ts +1 -0
- package/package.json +1 -1
|
@@ -22,7 +22,9 @@ export declare class SmartTableHeadComponent implements OnInit {
|
|
|
22
22
|
tfoot: boolean;
|
|
23
23
|
};
|
|
24
24
|
ngOnInit(): void;
|
|
25
|
-
tableHeaderCellProps(column: IColumn | string): {
|
|
25
|
+
tableHeaderCellProps(column: IColumn | string): {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
};
|
|
26
28
|
tableHeaderCellColor(column: IColumn | string): string | undefined;
|
|
27
29
|
tableHeaderCellStyles(column: IColumn | string): any;
|
|
28
30
|
columnLabel(column: IColumn | string): string;
|
|
@@ -231,6 +231,7 @@ export interface ITableHeaderCellProps {
|
|
|
231
231
|
* @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
|
|
232
232
|
*/
|
|
233
233
|
color?: Colors;
|
|
234
|
+
[key: string]: any;
|
|
234
235
|
}
|
|
235
236
|
export interface ISorter {
|
|
236
237
|
resetable?: boolean;
|
package/package.json
CHANGED