@coreui/angular-pro 4.1.0-next.2 → 4.1.0-next.3
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/smart-table/smart-table/smart-table.component.mjs +24 -5
- package/fesm2015/coreui-angular-pro.mjs +23 -4
- package/fesm2015/coreui-angular-pro.mjs.map +1 -1
- package/fesm2020/coreui-angular-pro.mjs +23 -4
- package/fesm2020/coreui-angular-pro.mjs.map +1 -1
- package/lib/smart-table/smart-table/smart-table.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -16,7 +16,8 @@ export declare class SmartTableComponent implements ISmartTable, AfterContentIni
|
|
|
16
16
|
static ngAcceptInputType_pagination: BooleanInput;
|
|
17
17
|
static ngAcceptInputType_selectable: BooleanInput;
|
|
18
18
|
constructor(iterableDiffers: IterableDiffers, keyValueDiffers: KeyValueDiffers);
|
|
19
|
-
private
|
|
19
|
+
private itemsDiffer;
|
|
20
|
+
private itemsFilteredDiffer;
|
|
20
21
|
private columFilterValueDiffer;
|
|
21
22
|
set activePage(value: number);
|
|
22
23
|
get activePage(): number;
|
|
@@ -98,6 +99,7 @@ export declare class SmartTableComponent implements ISmartTable, AfterContentIni
|
|
|
98
99
|
get rawColumnNames(): any[];
|
|
99
100
|
get itemsDataColumns(): any[];
|
|
100
101
|
get sortedItems(): IItemInternal[];
|
|
102
|
+
private _columnFiltered;
|
|
101
103
|
get columnFiltered(): IItemInternal[];
|
|
102
104
|
get tableFiltered(): IItemInternal[];
|
|
103
105
|
get isFiltered(): string;
|