UNPKG

@uifabric/experiments

Version:

Experimental React components for building experiences for Office 365.

19 lines (18 loc) 654 B
/// <reference types="react" /> import { BaseComponent } from '../../Utilities'; import { IPaginationProps } from './Pagination.types'; export declare class PaginationBase extends BaseComponent<IPaginationProps> { static defaultProps: Partial<IPaginationProps>; private _classNames; constructor(props: IPaginationProps); render(): JSX.Element; private handleFirstPage; private handleLastPage; private onComboBoxChange; private handleSelectedPage; private handlePreviousPage; private handleNextPage; private _pageElement(index); private _pageList(); private _renderVisibleItemLabel; }