itc-components-library20 0.0.1 → 0.0.2
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/index.d.ts
CHANGED
|
@@ -70,6 +70,7 @@ declare class ThirdButton {
|
|
|
70
70
|
interface IColumn {
|
|
71
71
|
field: string;
|
|
72
72
|
header: string;
|
|
73
|
+
sortable?: boolean;
|
|
73
74
|
}
|
|
74
75
|
declare class BasicTable {
|
|
75
76
|
router: Router;
|
|
@@ -123,7 +124,6 @@ declare class SortableTable {
|
|
|
123
124
|
private comparePriorities;
|
|
124
125
|
onRowSelect(): void;
|
|
125
126
|
clearSelection(): void;
|
|
126
|
-
hasMagnifyingGlassIcon(field: string): boolean;
|
|
127
127
|
resetSorting(): void;
|
|
128
128
|
static ɵfac: i0.ɵɵFactoryDeclaration<SortableTable, never>;
|
|
129
129
|
static ɵcmp: i0.ɵɵComponentDeclaration<SortableTable, "lib-sortable-table", never, { "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "detailRoute": { "alias": "detailRoute"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "colorPicker": { "alias": "colorPicker"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "tableCheckbox": { "alias": "tableCheckbox"; "required": false; }; }, { "selectionChange": "selectionChange"; "resetData": "resetData"; }, never, never, true, never>;
|