UNPKG

@progress/kendo-angular-pager

Version:
46 lines (45 loc) 1.89 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import * as i0 from "@angular/core"; /** * Represents the Kendo UI Pager Spacer component for Angular. * Gives you additional white space between the Pager inner elements, * and provides a way for customizing the spacer width. * * @example * ```html * <kendo-pager [skip]="skip" [pageSize]="pageSize" [total]="total"> * <ng-template kendoPagerTemplate> * <kendo-pager-prev-buttons></kendo-pager-prev-buttons> * <kendo-pager-info></kendo-pager-info> * <kendo-pager-spacer></kendo-pager-spacer> * <kendo-pager-next-buttons></kendo-pager-next-buttons> * </ng-template> * </kendo-pager> * ``` */ export declare class PagerSpacerComponent { /** * Gets the CSS class for the spacer. */ hostClass: boolean; /** * Gets the CSS class for sized spacers. */ get sizedClass(): boolean; /** * Gets the flex-basis style for the spacer width. */ get flexBasisStyle(): string; /** * Specifies the width of the `PagerSpacer` component. * Accepts the [string values of the CSS `flex-basis` property](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-basis). * * If you do not set this property, the `PagerSpacer` takes all the available space. */ width: string; static ɵfac: i0.ɵɵFactoryDeclaration<PagerSpacerComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<PagerSpacerComponent, "kendo-pager-spacer", never, { "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>; }