@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
17 lines (16 loc) • 724 B
TypeScript
import type { CustomClassPropType, KoliBriPaginationButtonCallbacks, LabelPropType, MaxPropType, PaginationHasButton, PaginationProps, Stringified, TooltipAlignPropType } from '../../schema';
import type { JSX } from '../../stencil-public-runtime';
export declare class KolPagination implements PaginationProps {
render(): JSX.Element;
_boundaryCount?: number;
_customClass?: CustomClassPropType;
_label?: LabelPropType;
_hasButtons?: boolean | Stringified<PaginationHasButton>;
_page: number;
_pageSize: number;
_pageSizeOptions: Stringified<number[]>;
_on: KoliBriPaginationButtonCallbacks;
_siblingCount?: number;
_tooltipAlign?: TooltipAlignPropType;
_max: MaxPropType;
}