gov-gui
Version:
Gov UI Component Library Typscript Build
22 lines (21 loc) • 722 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
import { AnimationProps } from '../../global/animation-helpers';
export declare class GovPagination implements AnimationProps {
totalPages: number;
currentPage: number;
showFirstLast: boolean;
maxVisible: number;
pageChanged: EventEmitter<number>;
animation?: string;
animationDelay?: '2s' | '3s' | '4s' | '5s';
animationSpeed?: 'slow' | 'slower' | 'fast' | 'faster';
private allClasses;
watchAnimations(): void;
watchAnimationsDelay(): void;
watchAnimationsSpeed(): void;
componentWillLoad(): void;
provideClass(): void;
private handlePageChange;
private get visiblePages();
render(): any;
}