diff --git a/src/app/components/paginator/paginator.ts b/src/app/components/paginator/paginator.ts index 8b40ee54b0e..f677bb6d95e 100755 --- a/src/app/components/paginator/paginator.ts +++ b/src/app/components/paginator/paginator.ts @@ -78,6 +78,11 @@ import { PaginatorState } from './paginator.interface'; [scrollHeight]="dropdownScrollHeight" > {{ currentPageReport }} + + + + + @@ -232,6 +237,12 @@ export class Paginator implements OnInit, AfterContentInit, OnChanges { * @group Props */ @Input() showJumpToPageInput: boolean | undefined; + /** + * Template instance to inject into the jump to page dropdown item inside in the paginator. + * @param {Object} context - item instance. + * @group Props + */ + @Input() jumpToPageItemTemplate: TemplateRef<{ $implicit: any }> | undefined; /** * Whether to show page links. * @group Props @@ -243,7 +254,7 @@ export class Paginator implements OnInit, AfterContentInit, OnChanges { */ @Input() locale: string | undefined; /** - * Template instance to inject into the dropdown item inside in the paginator. + * Template instance to inject into the rows per page dropdown item inside in the paginator. * @param {Object} context - item instance. * @group Props */