@porsche-design-system/components-angular
Version:
Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.
28 lines (27 loc) • 1.95 kB
TypeScript
import { EventEmitter } from '@angular/core';
import { BaseComponentWithTheme } from '../../utils';
import type { PaginationInternationalization, BreakpointCustomizable, PaginationMaxNumberOfPageLinks, Theme } from '../types';
import * as i0 from "@angular/core";
export declare class PPagination extends BaseComponentWithTheme {
activePage: number;
/** @deprecated */
allyLabel?: string;
/** @deprecated */
allyLabelNext?: string;
/** @deprecated */
allyLabelPage?: string;
/** @deprecated */
allyLabelPrev?: string;
intl?: PaginationInternationalization;
itemsPerPage?: number;
/** @deprecated */
maxNumberOfPageLinks?: BreakpointCustomizable<PaginationMaxNumberOfPageLinks>;
showLastPage?: boolean;
theme?: Theme;
totalItemsCount: number;
/** @deprecated */
pageChange: EventEmitter<CustomEvent<import("../types").PaginationUpdateEvent>>;
update: EventEmitter<CustomEvent<import("../types").PaginationUpdateEvent>>;
static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination,[p-pagination]", never, { "activePage": { "alias": "activePage"; "required": false; }; "allyLabel": { "alias": "allyLabel"; "required": false; }; "allyLabelNext": { "alias": "allyLabelNext"; "required": false; }; "allyLabelPage": { "alias": "allyLabelPage"; "required": false; }; "allyLabelPrev": { "alias": "allyLabelPrev"; "required": false; }; "intl": { "alias": "intl"; "required": false; }; "itemsPerPage": { "alias": "itemsPerPage"; "required": false; }; "maxNumberOfPageLinks": { "alias": "maxNumberOfPageLinks"; "required": false; }; "showLastPage": { "alias": "showLastPage"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "totalItemsCount": { "alias": "totalItemsCount"; "required": false; }; }, { "pageChange": "pageChange"; "update": "update"; }, never, ["*"], false, never>;
}