commons-shared-web-ui 0.0.8 → 0.0.9
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
|
@@ -2246,6 +2246,7 @@ declare class SmartTableComponent implements OnInit, OnChanges, AfterViewInit, O
|
|
|
2246
2246
|
[key: string]: any;
|
|
2247
2247
|
};
|
|
2248
2248
|
hasStickyColumns: boolean;
|
|
2249
|
+
openDropdownId: string | null;
|
|
2249
2250
|
searchSubject: Subject<string>;
|
|
2250
2251
|
stickyHeaders: QueryList<ElementRef>;
|
|
2251
2252
|
private resizeObserver;
|
|
@@ -2281,13 +2282,15 @@ declare class SmartTableComponent implements OnInit, OnChanges, AfterViewInit, O
|
|
|
2281
2282
|
get columnCount(): number;
|
|
2282
2283
|
onColumnClick(row: any, col: TableColumn): void;
|
|
2283
2284
|
private getHeaders;
|
|
2285
|
+
toggleDropdown(id: string, event: Event): void;
|
|
2286
|
+
closeDropdown(): void;
|
|
2284
2287
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartTableComponent, never>;
|
|
2285
2288
|
static ɵcmp: i0.ɵɵComponentDeclaration<SmartTableComponent, "lib-smart-table", never, { "config": { "alias": "config"; "required": false; }; }, { "action": "action"; "topAction": "topAction"; "filterChange": "filterChange"; "rowSelect": "rowSelect"; "columnClick": "columnClick"; }, never, never, false, never>;
|
|
2286
2289
|
}
|
|
2287
2290
|
|
|
2288
2291
|
declare class SmartTableModule {
|
|
2289
2292
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartTableModule, never>;
|
|
2290
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartTableModule, [typeof SmartTableComponent], [typeof i2$1.CommonModule, typeof i3$1.FormsModule, typeof PaginationModule, typeof ButtonModule, typeof
|
|
2293
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartTableModule, [typeof SmartTableComponent], [typeof i2$1.CommonModule, typeof i3$1.FormsModule, typeof PaginationModule, typeof ButtonModule, typeof MaterialModule], [typeof SmartTableComponent]>;
|
|
2291
2294
|
static ɵinj: i0.ɵɵInjectorDeclaration<SmartTableModule>;
|
|
2292
2295
|
}
|
|
2293
2296
|
|