@open-rlb/ng-bootstrap 2.4.8 → 2.4.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
|
@@ -1556,10 +1556,12 @@ declare class DataTableComponent implements OnInit, AfterViewInit, AfterContentI
|
|
|
1556
1556
|
_projectedDisplayColumns: ViewContainerRef;
|
|
1557
1557
|
rows: QueryList<DataTableRowComponent>;
|
|
1558
1558
|
columns: QueryList<DataTableHeaderComponent>;
|
|
1559
|
+
readonly MAX_VISIBLE_PAGES = 7;
|
|
1559
1560
|
private subscription;
|
|
1560
1561
|
ngOnInit(): void;
|
|
1561
1562
|
get pages(): number;
|
|
1562
1563
|
get hasActions(): boolean;
|
|
1564
|
+
get visiblePages(): (number | string)[];
|
|
1563
1565
|
ngAfterViewInit(): void;
|
|
1564
1566
|
ngAfterContentInit(): void;
|
|
1565
1567
|
ngOnDestroy(): void;
|
|
@@ -1567,7 +1569,7 @@ declare class DataTableComponent implements OnInit, AfterViewInit, AfterContentI
|
|
|
1567
1569
|
get cols(): number;
|
|
1568
1570
|
getTableClasses(): string[];
|
|
1569
1571
|
selectSize(): void;
|
|
1570
|
-
selectPage(ev: MouseEvent, page: number): void;
|
|
1572
|
+
selectPage(ev: MouseEvent, page: number | string): void;
|
|
1571
1573
|
next(ev: MouseEvent): void;
|
|
1572
1574
|
prev(ev: MouseEvent): void;
|
|
1573
1575
|
onPgWeel(ev: WheelEvent): void;
|