mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +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/paginator/Paginator.d.ts
vendored
20
components/lib/paginator/Paginator.d.ts
vendored
|
@ -302,6 +302,26 @@ export interface PaginatorSlots {
|
|||
* Custom last page link icon template.
|
||||
*/
|
||||
lastpagelinkicon(): VNode[];
|
||||
/**
|
||||
* Custom rowsperpagedropdownicon template.
|
||||
* @param {Object} scope - rowsperpagedropdownicon's params.
|
||||
*/
|
||||
rowsperpagedropdownicon(scope: {
|
||||
/**
|
||||
* Style class of the rowsperpagedropdown icon.
|
||||
*/
|
||||
class: string;
|
||||
}): VNode[];
|
||||
/**
|
||||
* Custom jumptopagedropdownicon template.
|
||||
* @param {Object} scope - jumptopagedropdownicon's params.
|
||||
*/
|
||||
jumptopagedropdownicon(scope: {
|
||||
/**
|
||||
* Style class of the jumptopagedropdown icon.
|
||||
*/
|
||||
class: string;
|
||||
}): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue