primevue-mirror/components/lib/paginator/style/PaginatorStyle.d.ts

84 lines
1.9 KiB
TypeScript
Raw Normal View History

/**
*
* Paginator is a generic component to display content in paged format.
*
* [Live Demo](https://primevue.org/paginator)
*
* @module paginatorstyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum PaginatorClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the paginator element
*/
paginator = 'p-paginator',
2024-05-22 13:52:02 +00:00
/**
* Class name of the content start element
*/
contentStart = 'p-paginator-content-start',
2024-05-22 13:52:02 +00:00
/**
* Class name of the content end element
*/
contentEnd = 'p-paginator-content-end',
2024-05-22 13:52:02 +00:00
/**
* Class name of the first element
*/
first = 'p-paginator-first',
2024-05-22 13:52:02 +00:00
/**
* Class name of the first icon element
*/
firstIcon = 'p-paginator-first-icon',
2024-05-22 13:52:02 +00:00
/**
* Class name of the prev element
*/
prev = 'p-paginator-prev',
2024-05-22 13:52:02 +00:00
/**
* Class name of the prev icon element
*/
prevIcon = 'p-paginator-prev-icon',
2024-05-22 13:52:02 +00:00
/**
* Class name of the next element
*/
next = 'p-paginator-next',
2024-05-22 13:52:02 +00:00
/**
* Class name of the next icon element
*/
nextIcon = 'p-paginator-next-icon',
2024-05-22 13:52:02 +00:00
/**
* Class name of the last element
*/
last = 'p-paginator-last',
2024-05-22 13:52:02 +00:00
/**
* Class name of the last icon element
*/
lastIcon = 'p-paginator-last-icon',
2024-05-22 13:52:02 +00:00
/**
* Class name of the pages element
*/
pages = 'p-paginator-pages',
2024-05-22 13:52:02 +00:00
/**
* Class name of the page element
*/
page = 'p-paginator-page',
2024-05-22 13:52:02 +00:00
/**
* Class name of the current element
*/
current = 'p-paginator-current',
2024-05-22 13:52:02 +00:00
/**
* Class name of the row per page dropdown element
*/
pcRowPerPageDropdown = 'p-paginator-rpp-dropdown',
2024-05-22 13:52:02 +00:00
/**
* Class name of the jump to page dropdown element
*/
pcJumpToPageDropdown = 'p-paginator-jtp-dropdown',
2024-05-22 13:52:02 +00:00
/**
* Class name of the jump to page input element
*/
pcJumpToPageInput = 'p-paginator-jtp-input'
}
2023-10-02 13:15:41 +00:00
export interface PaginatorStyle extends BaseStyle {}