mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
Fixed #3921 - DataTable and TreeTable: new Paginator dropdown icon slots
This commit is contained in:
parent
1b300b54f0
commit
43faf8704d
8 changed files with 100 additions and 4 deletions
20
components/lib/treetable/TreeTable.d.ts
vendored
20
components/lib/treetable/TreeTable.d.ts
vendored
|
@ -655,6 +655,26 @@ export interface TreeTableSlots {
|
|||
* Custom paginator last page link icon template.
|
||||
*/
|
||||
paginatorlastpagelinkicon(): VNode[];
|
||||
/**
|
||||
* Custom paginatorrowsperpagedropdownicon template.
|
||||
* @param {Object} scope - paginator rowsperpagedropdownicon's params.
|
||||
*/
|
||||
paginatorrowsperpagedropdownicon(scope: {
|
||||
/**
|
||||
* Style class of the paginator rowsperpagedropdown icon.
|
||||
*/
|
||||
class: string;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom paginatorjumptopagedropdownicon template.
|
||||
* @param {Object} scope - paginator jumptopagedropdownicon's params.
|
||||
*/
|
||||
paginatorjumptopagedropdownicon(scope: {
|
||||
/**
|
||||
* Style class of the paginator jumptopagedropdown icon.
|
||||
*/
|
||||
class: string;
|
||||
}): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue