@progress/kendo-angular-treelist 17.0.0-develop.33 → 17.0.0-develop.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/directives.d.ts +4 -17
  2. package/esm2022/directives.mjs +3 -24
  3. package/esm2022/filtering/cell/row-filtering.module.mjs +3 -2
  4. package/esm2022/filtering/menu/filter-menu.module.mjs +3 -2
  5. package/esm2022/filtering/shared-filtering.module.mjs +3 -2
  6. package/esm2022/index.mjs +0 -9
  7. package/esm2022/localization/messages.mjs +9 -3
  8. package/esm2022/navigation/navigation.service.mjs +2 -2
  9. package/esm2022/package-metadata.mjs +2 -2
  10. package/esm2022/rendering/common/spacer.component.mjs +2 -2
  11. package/esm2022/rendering/header/header.module.mjs +25 -24
  12. package/esm2022/shared.module.mjs +3 -2
  13. package/esm2022/treelist.component.mjs +145 -26
  14. package/esm2022/treelist.module.mjs +73 -79
  15. package/fesm2022/progress-kendo-angular-treelist.mjs +317 -1617
  16. package/filtering/cell/row-filtering.module.d.ts +2 -1
  17. package/filtering/menu/filter-menu.module.d.ts +2 -1
  18. package/filtering/shared-filtering.module.d.ts +7 -6
  19. package/index.d.ts +1 -11
  20. package/localization/messages.d.ts +6 -2
  21. package/navigation/navigation.service.d.ts +1 -1
  22. package/package.json +16 -16
  23. package/rendering/common/spacer.component.d.ts +1 -1
  24. package/rendering/header/header.module.d.ts +26 -25
  25. package/schematics/ngAdd/index.js +3 -3
  26. package/shared.module.d.ts +3 -2
  27. package/treelist.component.d.ts +3 -2
  28. package/treelist.module.d.ts +70 -77
  29. package/constants.d.ts +0 -12
  30. package/esm2022/constants.mjs +0 -12
  31. package/esm2022/pager/pager-context.service.mjs +0 -44
  32. package/esm2022/pager/pager-element.component.mjs +0 -111
  33. package/esm2022/pager/pager-info.component.mjs +0 -76
  34. package/esm2022/pager/pager-input.component.mjs +0 -148
  35. package/esm2022/pager/pager-next-buttons.component.mjs +0 -131
  36. package/esm2022/pager/pager-numeric-buttons.component.mjs +0 -254
  37. package/esm2022/pager/pager-page-sizes.component.mjs +0 -141
  38. package/esm2022/pager/pager-prev-buttons.component.mjs +0 -127
  39. package/esm2022/pager/pager-template.directive.mjs +0 -49
  40. package/esm2022/pager/pager.component.mjs +0 -429
  41. package/esm2022/pager/pager.module.mjs +0 -43
  42. package/esm2022/pager/pagesize-item.interface.mjs +0 -5
  43. package/pager/pager-context.service.d.ts +0 -32
  44. package/pager/pager-element.component.d.ts +0 -74
  45. package/pager/pager-info.component.d.ts +0 -43
  46. package/pager/pager-input.component.d.ts +0 -45
  47. package/pager/pager-next-buttons.component.d.ts +0 -36
  48. package/pager/pager-numeric-buttons.component.d.ts +0 -52
  49. package/pager/pager-page-sizes.component.d.ts +0 -48
  50. package/pager/pager-prev-buttons.component.d.ts +0 -32
  51. package/pager/pager-template.directive.d.ts +0 -38
  52. package/pager/pager.component.d.ts +0 -73
  53. package/pager/pager.module.d.ts +0 -27
  54. package/pager/pagesize-item.interface.d.ts +0 -14
  55. /package/{pager → common}/pager-settings.d.ts +0 -0
  56. /package/esm2022/{pager → common}/pager-settings.mjs +0 -0
@@ -4,7 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /* eslint-disable @typescript-eslint/no-explicit-any */
6
6
  import { Component, ContentChildren, ElementRef, EventEmitter, HostBinding, Input, Output, Renderer2, QueryList, ViewChild, isDevMode, NgZone, ViewChildren, ChangeDetectorRef, ViewEncapsulation, ChangeDetectionStrategy, forwardRef } from '@angular/core';
7
- import { NgIf } from '@angular/common';
7
+ import { NgIf, NgTemplateOutlet } from '@angular/common';
8
8
  import { FormControl, FormGroup } from '@angular/forms';
9
9
  import { Subscription, merge, isObservable } from 'rxjs';
10
10
  import { map, tap, take, filter, switchMap, takeUntil } from 'rxjs/operators';
@@ -27,8 +27,6 @@ import { NoRecordsTemplateDirective } from './rendering/no-records-template.dire
27
27
  import { ColumnBase } from './columns/column-base';
28
28
  import { syncRowsHeight } from './layout/row-sync';
29
29
  import { FilterService } from './filtering/filter.service';
30
- import { PagerTemplateDirective } from './pager/pager-template.directive';
31
- import { PagerContextService } from "./pager/pager-context.service";
32
30
  import { PDFService } from './pdf/pdf.service';
33
31
  import { PDFExportEvent } from './pdf/pdf-export-event';
34
32
  import { SuspendService } from './scrolling/suspend.service';
@@ -70,7 +68,6 @@ import { DataBoundTreeComponent } from './binding-directives/data-bound-tree-com
70
68
  import { ExpandableTreeComponent } from './expand-state/expandable-tree-component';
71
69
  import { ContextService } from './common/provider.service';
72
70
  import { RowReorderService } from './row-reordering/row-reorder.service';
73
- import { PagerComponent } from './pager/pager.component';
74
71
  import { LoadingComponent } from './rendering/common/loading.component';
75
72
  import { TableBodyComponent } from './rendering/table-body.component';
76
73
  import { MarqueeDirective } from './selection/marquee.directive';
@@ -81,6 +78,8 @@ import { ColGroupComponent } from './rendering/common/col-group.component';
81
78
  import { TableDirective } from './column-resizing/table.directive';
82
79
  import { ToolbarComponent } from './rendering/toolbar/toolbar.component';
83
80
  import { LocalizedMessagesDirective } from './localization/localized-messages.directive';
81
+ import { KENDO_PAGER, PagerContextService, PagerNavigationService, PagerTemplateDirective } from '@progress/kendo-angular-pager';
82
+ import { normalize } from './common/pager-settings';
84
83
  import * as i0 from "@angular/core";
85
84
  import * as i1 from "./layout/browser-support.service";
86
85
  import * as i2 from "./data/change-notification.service";
@@ -103,6 +102,7 @@ import * as i18 from "./selection/selection.service";
103
102
  import * as i19 from "@progress/kendo-angular-l10n";
104
103
  import * as i20 from "./common/provider.service";
105
104
  import * as i21 from "./row-reordering/row-reorder.service";
105
+ import * as i22 from "@progress/kendo-angular-pager";
106
106
  const createControl = (source) => (acc, key) => {
107
107
  acc[key] = new FormControl(source[key]);
108
108
  return acc;
@@ -279,6 +279,9 @@ export class TreeListComponent {
279
279
  *
280
280
  */
281
281
  pageable = false;
282
+ get normalizedPageableSettings() {
283
+ return normalize(this.pageable);
284
+ }
282
285
  /**
283
286
  * If set to `true`, the user can use dedicated shortcuts to interact with the TreeList.
284
287
  * By default, navigation is disabled and the TreeList content is accessible in the normal tab sequence.
@@ -1796,6 +1799,7 @@ export class TreeListComponent {
1796
1799
  FilterService,
1797
1800
  ResponsiveService,
1798
1801
  PagerContextService,
1802
+ PagerNavigationService,
1799
1803
  ExcelService,
1800
1804
  ScrollSyncService,
1801
1805
  ResizeService,
@@ -1826,7 +1830,6 @@ export class TreeListComponent {
1826
1830
  RowReorderService
1827
1831
  ], queries: [{ propertyName: "columns", predicate: ColumnBase }, { propertyName: "noRecordsTemplateChildren", predicate: NoRecordsTemplateDirective }, { propertyName: "pagerTemplateChildren", predicate: PagerTemplateDirective }, { propertyName: "toolbarTemplateChildren", predicate: ToolbarTemplateDirective }, { propertyName: "columnMenuTemplates", predicate: ColumnMenuTemplateDirective }], viewQueries: [{ propertyName: "lockedHeader", first: true, predicate: ["lockedHeader"], descendants: true }, { propertyName: "header", first: true, predicate: ["header"], descendants: true }, { propertyName: "ariaRoot", first: true, predicate: ["ariaRoot"], descendants: true, static: true }, { propertyName: "dragTargetContainer", first: true, predicate: DragTargetContainerDirective, descendants: true }, { propertyName: "dropTargetContainer", first: true, predicate: DropTargetContainerDirective, descendants: true }, { propertyName: "footer", predicate: ["footer"], descendants: true }], exportAs: ["kendoTreeList"], usesOnChanges: true, ngImport: i0, template: `
1828
1832
  <ng-container kendoTreeListLocalizedMessages
1829
-
1830
1833
  i18n-noRecords="kendo.treelist.noRecords|The label visible in the TreeList when there are no records"
1831
1834
  noRecords="No records available."
1832
1835
 
@@ -1860,6 +1863,9 @@ export class TreeListComponent {
1860
1863
  i18n-pagerItemsTotal="kendo.treelist.pagerItemsTotal|The label after the total items count in the TreeList pager"
1861
1864
  pagerItemsTotal="items total"
1862
1865
 
1866
+ i18n-pagerInputLabel="kendo.treelist.pagerInputLabel|The text of the aria-label attribute applied to the input element for entering the page number"
1867
+ pagerInputLabel="Type a page number"
1868
+
1863
1869
  i18n-filterCellOperatorLabel="kendo.treelist.filterCellOperatorLabel|The label of the filter cell operators dropdown"
1864
1870
  filterCellOperatorLabel="{{ 'Filter cell operators for {columnName}' }}"
1865
1871
 
@@ -1980,8 +1986,8 @@ export class TreeListComponent {
1980
1986
  i18n-columnsReset="kendo.treelist.columnsReset|The text shown in the column menu or column chooser for the columns reset button"
1981
1987
  columnsReset="Reset"
1982
1988
 
1983
- i18n-selectPage="kendo.treelist.selectPage|The text of the title and aria-label attributes applied to the page chooser in the TreeList Pager"
1984
- selectPage="Select page"
1989
+ i18n-pagerSelectPage="kendo.treelist.pagerSelectPage|The text of the title and aria-label attributes applied to the page chooser in the TreeList Pager"
1990
+ pagerSelectPage="Select page"
1985
1991
 
1986
1992
  i18n-topToolbarLabel="kendo.treelist.topToolbarLabel|The label of the TreeList top toolbar"
1987
1993
  topToolbarLabel="Top toolbar"
@@ -2171,18 +2177,41 @@ export class TreeListComponent {
2171
2177
  </div>
2172
2178
  </ng-template>
2173
2179
  </div>
2174
- <kendo-treelist-pager
2180
+ <kendo-pager
2181
+ #pager
2175
2182
  *ngIf="showPager"
2176
- [template]="pagerTemplate"
2183
+ class="k-grid-pager"
2184
+ [navigable]="navigable"
2177
2185
  [pageSize]="pageSize"
2178
2186
  [total]="view.totalVisible"
2179
- [allCount]="view.total"
2180
2187
  [skip]="skip"
2181
- [navigable]="navigable"
2182
- [attr.aria-controls]="ariaRootId"
2183
- [options]="pageable"
2188
+ [responsive]="normalizedPageableSettings.responsive && !pagerTemplate"
2189
+ [buttonCount]="normalizedPageableSettings.buttonCount"
2190
+ [info]="normalizedPageableSettings.info"
2191
+ [pageSizeValues]="normalizedPageableSettings.pageSizes"
2192
+ [previousNext]="normalizedPageableSettings.previousNext"
2193
+ [type]="normalizedPageableSettings.type"
2184
2194
  (pageChange)="notifyPageChange('pager', $event)">
2185
- </kendo-treelist-pager>
2195
+ <ng-template kendoPagerTemplate>
2196
+ <ng-container
2197
+ [ngTemplateOutlet]="pagerTemplate ? pagerTemplate?.templateRef : defaultPager"
2198
+ [ngTemplateOutletContext]="pager.templateContext"></ng-container>
2199
+ </ng-template>
2200
+ <kendo-pager-messages
2201
+ [ariaLabel]="messageFor('pagerLabel')"
2202
+ [firstPage]="messageFor('pagerFirstPage')"
2203
+ [inputLabel]="messageFor('pagerInputLabel')"
2204
+ [previousPage]="messageFor('pagerPreviousPage')"
2205
+ [nextPage]="messageFor('pagerNextPage')"
2206
+ [lastPage]="messageFor('pagerLastPage')"
2207
+ [selectPage]="messageFor('pagerSelectPage')"
2208
+ [page]="messageFor('pagerPage')"
2209
+ [itemsPerPage]="messageFor('pagerItemsPerPage')"
2210
+ [items]="messageFor('pagerItems')"
2211
+ [of]="messageFor('pagerOf')"
2212
+ [pageNumberInputTitle]="messageFor('pagerPageNumberInputTitle')">
2213
+ </kendo-pager-messages>
2214
+ </kendo-pager>
2186
2215
  <kendo-treelist-toolbar
2187
2216
  *ngIf="showBottomToolbar"
2188
2217
  class="k-toolbar k-grid-toolbar k-grid-toolbar-bottom k-toolbar-md"
@@ -2200,7 +2229,38 @@ export class TreeListComponent {
2200
2229
  </kendo-icon-wrapper>
2201
2230
  {{hintText}}
2202
2231
  </ng-template>
2203
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoTreeListLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ToolbarComponent, selector: "kendo-treelist-toolbar", inputs: ["position", "navigable"] }, { kind: "directive", type: DragTargetContainerDirective, selector: "[kendoDragTargetContainer]", inputs: ["hint", "dragTargetFilter", "dragHandle", "dragDelay", "threshold", "dragTargetId", "dragData", "dragDisabled", "mode"], outputs: ["onDragReady", "onPress", "onDragStart", "onDrag", "onRelease", "onDragEnd"], exportAs: ["kendoDragTargetContainer"] }, { kind: "directive", type: DropTargetContainerDirective, selector: "[kendoDropTargetContainer]", inputs: ["dropTargetFilter", "dropDisabled"], outputs: ["onDragEnter", "onDragOver", "onDragLeave", "onDrop"], exportAs: ["kendoDropTargetContainer"] }, { kind: "directive", type: TableDirective, selector: "[kendoTreeListResizableTable]", inputs: ["locked", "virtualColumns"] }, { kind: "component", type: ColGroupComponent, selector: "[kendoTreeListColGroup]", inputs: ["columns"] }, { kind: "component", type: HeaderComponent, selector: "[kendoTreeListHeader]", inputs: ["totalColumnLevels", "columns", "scrollable", "filterable", "sort", "filter", "sortable", "lockedColumnsCount", "resizable", "reorderable", "columnMenu", "columnMenuTemplate", "totalColumnsCount", "totalColumns"] }, { kind: "directive", type: ResizableContainerDirective, selector: "[kendoTreeListResizableContainer]", inputs: ["lockedWidth", "kendoTreeListResizableContainer"] }, { kind: "component", type: ListComponent, selector: "kendo-treelist-list", inputs: ["view", "total", "rowHeight", "take", "skip", "columns", "noRecordsTemplate", "filterable", "rowClass", "loading", "trackBy", "virtualColumns", "isVirtual", "expandIcons"], outputs: ["contentScroll", "pageChange", "scrollBottom"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: MarqueeDirective, selector: "[kendoTreeListSelectionMarquee]" }, { kind: "component", type: TableBodyComponent, selector: "[kendoTreeListTableBody]", inputs: ["columns", "allColumns", "noRecordsTemplate", "view", "skip", "filterable", "noRecordsText", "isLocked", "lockedColumnsCount", "totalColumnsCount", "virtualColumns", "expandIcons", "trackBy", "totalColumns", "rowClass"] }, { kind: "component", type: LoadingComponent, selector: "[kendoTreeListLoading]" }, { kind: "component", type: PagerComponent, selector: "kendo-treelist-pager", inputs: ["allCount", "total", "skip", "navigable", "pageSize", "options", "template"], outputs: ["pageChange"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
2232
+
2233
+ <ng-template #defaultPager>
2234
+ <div class="k-pager-numbers-wrap">
2235
+ <kendo-pager-prev-buttons *ngIf="normalizedPageableSettings.previousNext"></kendo-pager-prev-buttons>
2236
+ <kendo-pager-numeric-buttons
2237
+ *ngIf="normalizedPageableSettings.type === 'numeric' && normalizedPageableSettings.buttonCount > 0"
2238
+ [buttonCount]="normalizedPageableSettings.buttonCount">
2239
+ </kendo-pager-numeric-buttons>
2240
+ <kendo-pager-input *ngIf="normalizedPageableSettings.type === 'input'"></kendo-pager-input>
2241
+ <kendo-pager-next-buttons *ngIf="normalizedPageableSettings.previousNext"></kendo-pager-next-buttons>
2242
+ </div>
2243
+ <kendo-pager-page-sizes *ngIf="normalizedPageableSettings.pageSizes"
2244
+ [pageSizes]="normalizedPageableSettings.pageSizes">
2245
+ </kendo-pager-page-sizes>
2246
+ <kendo-pager-info *ngIf="normalizedPageableSettings.info">
2247
+ </kendo-pager-info>
2248
+ <kendo-pager-messages
2249
+ [ariaLabel]="messageFor('pagerLabel')"
2250
+ [firstPage]="messageFor('pagerFirstPage')"
2251
+ [inputLabel]="messageFor('pagerInputLabel')"
2252
+ [previousPage]="messageFor('pagerPreviousPage')"
2253
+ [nextPage]="messageFor('pagerNextPage')"
2254
+ [lastPage]="messageFor('pagerLastPage')"
2255
+ [selectPage]="messageFor('pagerSelectPage')"
2256
+ [page]="messageFor('pagerPage')"
2257
+ [itemsPerPage]="messageFor('pagerItemsPerPage')"
2258
+ [items]="messageFor('pagerItems')"
2259
+ [of]="messageFor('pagerOf')"
2260
+ [pageNumberInputTitle]="messageFor('pagerPageNumberInputTitle')">
2261
+ </kendo-pager-messages>
2262
+ </ng-template>
2263
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoTreeListLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: ToolbarComponent, selector: "kendo-treelist-toolbar", inputs: ["position", "navigable"] }, { kind: "directive", type: DragTargetContainerDirective, selector: "[kendoDragTargetContainer]", inputs: ["hint", "dragTargetFilter", "dragHandle", "dragDelay", "threshold", "dragTargetId", "dragData", "dragDisabled", "mode"], outputs: ["onDragReady", "onPress", "onDragStart", "onDrag", "onRelease", "onDragEnd"], exportAs: ["kendoDragTargetContainer"] }, { kind: "directive", type: DropTargetContainerDirective, selector: "[kendoDropTargetContainer]", inputs: ["dropTargetFilter", "dropDisabled"], outputs: ["onDragEnter", "onDragOver", "onDragLeave", "onDrop"], exportAs: ["kendoDropTargetContainer"] }, { kind: "directive", type: TableDirective, selector: "[kendoTreeListResizableTable]", inputs: ["locked", "virtualColumns"] }, { kind: "component", type: ColGroupComponent, selector: "[kendoTreeListColGroup]", inputs: ["columns"] }, { kind: "component", type: HeaderComponent, selector: "[kendoTreeListHeader]", inputs: ["totalColumnLevels", "columns", "scrollable", "filterable", "sort", "filter", "sortable", "lockedColumnsCount", "resizable", "reorderable", "columnMenu", "columnMenuTemplate", "totalColumnsCount", "totalColumns"] }, { kind: "directive", type: ResizableContainerDirective, selector: "[kendoTreeListResizableContainer]", inputs: ["lockedWidth", "kendoTreeListResizableContainer"] }, { kind: "component", type: ListComponent, selector: "kendo-treelist-list", inputs: ["view", "total", "rowHeight", "take", "skip", "columns", "noRecordsTemplate", "filterable", "rowClass", "loading", "trackBy", "virtualColumns", "isVirtual", "expandIcons"], outputs: ["contentScroll", "pageChange", "scrollBottom"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: MarqueeDirective, selector: "[kendoTreeListSelectionMarquee]" }, { kind: "component", type: TableBodyComponent, selector: "[kendoTreeListTableBody]", inputs: ["columns", "allColumns", "noRecordsTemplate", "view", "skip", "filterable", "noRecordsText", "isLocked", "lockedColumnsCount", "totalColumnsCount", "virtualColumns", "expandIcons", "trackBy", "totalColumns", "rowClass"] }, { kind: "component", type: LoadingComponent, selector: "[kendoTreeListLoading]" }, { kind: "component", type: i22.CustomMessagesComponent, selector: "kendo-datapager-messages, kendo-pager-messages" }, { kind: "component", type: i22.PagerInfoComponent, selector: "kendo-datapager-info, kendo-pager-info" }, { kind: "component", type: i22.PagerInputComponent, selector: "kendo-datapager-input, kendo-pager-input", inputs: ["size"] }, { kind: "component", type: i22.PagerNextButtonsComponent, selector: "kendo-datapager-next-buttons, kendo-pager-next-buttons", inputs: ["size"] }, { kind: "component", type: i22.PagerNumericButtonsComponent, selector: "kendo-datapager-numeric-buttons, kendo-pager-numeric-buttons", inputs: ["buttonCount", "size"] }, { kind: "component", type: i22.PagerPageSizesComponent, selector: "kendo-datapager-page-sizes, kendo-pager-page-sizes", inputs: ["pageSizes", "size"] }, { kind: "component", type: i22.PagerPrevButtonsComponent, selector: "kendo-datapager-prev-buttons, kendo-pager-prev-buttons", inputs: ["size"] }, { kind: "directive", type: i22.PagerTemplateDirective, selector: "[kendoDataPagerTemplate], [kendoPagerTemplate]" }, { kind: "component", type: i22.PagerComponent, selector: "kendo-datapager, kendo-pager", inputs: ["externalTemplate", "total", "skip", "pageSize", "buttonCount", "info", "type", "pageSizeValues", "previousNext", "navigable", "size", "responsive"], outputs: ["pageChange", "pageSizeChange"], exportAs: ["kendoDataPager", "kendoPager"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
2204
2264
  }
2205
2265
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListComponent, decorators: [{
2206
2266
  type: Component,
@@ -2223,6 +2283,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
2223
2283
  FilterService,
2224
2284
  ResponsiveService,
2225
2285
  PagerContextService,
2286
+ PagerNavigationService,
2226
2287
  ExcelService,
2227
2288
  ScrollSyncService,
2228
2289
  ResizeService,
@@ -2255,7 +2316,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
2255
2316
  selector: 'kendo-treelist',
2256
2317
  template: `
2257
2318
  <ng-container kendoTreeListLocalizedMessages
2258
-
2259
2319
  i18n-noRecords="kendo.treelist.noRecords|The label visible in the TreeList when there are no records"
2260
2320
  noRecords="No records available."
2261
2321
 
@@ -2289,6 +2349,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
2289
2349
  i18n-pagerItemsTotal="kendo.treelist.pagerItemsTotal|The label after the total items count in the TreeList pager"
2290
2350
  pagerItemsTotal="items total"
2291
2351
 
2352
+ i18n-pagerInputLabel="kendo.treelist.pagerInputLabel|The text of the aria-label attribute applied to the input element for entering the page number"
2353
+ pagerInputLabel="Type a page number"
2354
+
2292
2355
  i18n-filterCellOperatorLabel="kendo.treelist.filterCellOperatorLabel|The label of the filter cell operators dropdown"
2293
2356
  filterCellOperatorLabel="{{ 'Filter cell operators for {columnName}' }}"
2294
2357
 
@@ -2409,8 +2472,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
2409
2472
  i18n-columnsReset="kendo.treelist.columnsReset|The text shown in the column menu or column chooser for the columns reset button"
2410
2473
  columnsReset="Reset"
2411
2474
 
2412
- i18n-selectPage="kendo.treelist.selectPage|The text of the title and aria-label attributes applied to the page chooser in the TreeList Pager"
2413
- selectPage="Select page"
2475
+ i18n-pagerSelectPage="kendo.treelist.pagerSelectPage|The text of the title and aria-label attributes applied to the page chooser in the TreeList Pager"
2476
+ pagerSelectPage="Select page"
2414
2477
 
2415
2478
  i18n-topToolbarLabel="kendo.treelist.topToolbarLabel|The label of the TreeList top toolbar"
2416
2479
  topToolbarLabel="Top toolbar"
@@ -2600,18 +2663,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
2600
2663
  </div>
2601
2664
  </ng-template>
2602
2665
  </div>
2603
- <kendo-treelist-pager
2666
+ <kendo-pager
2667
+ #pager
2604
2668
  *ngIf="showPager"
2605
- [template]="pagerTemplate"
2669
+ class="k-grid-pager"
2670
+ [navigable]="navigable"
2606
2671
  [pageSize]="pageSize"
2607
2672
  [total]="view.totalVisible"
2608
- [allCount]="view.total"
2609
2673
  [skip]="skip"
2610
- [navigable]="navigable"
2611
- [attr.aria-controls]="ariaRootId"
2612
- [options]="pageable"
2674
+ [responsive]="normalizedPageableSettings.responsive && !pagerTemplate"
2675
+ [buttonCount]="normalizedPageableSettings.buttonCount"
2676
+ [info]="normalizedPageableSettings.info"
2677
+ [pageSizeValues]="normalizedPageableSettings.pageSizes"
2678
+ [previousNext]="normalizedPageableSettings.previousNext"
2679
+ [type]="normalizedPageableSettings.type"
2613
2680
  (pageChange)="notifyPageChange('pager', $event)">
2614
- </kendo-treelist-pager>
2681
+ <ng-template kendoPagerTemplate>
2682
+ <ng-container
2683
+ [ngTemplateOutlet]="pagerTemplate ? pagerTemplate?.templateRef : defaultPager"
2684
+ [ngTemplateOutletContext]="pager.templateContext"></ng-container>
2685
+ </ng-template>
2686
+ <kendo-pager-messages
2687
+ [ariaLabel]="messageFor('pagerLabel')"
2688
+ [firstPage]="messageFor('pagerFirstPage')"
2689
+ [inputLabel]="messageFor('pagerInputLabel')"
2690
+ [previousPage]="messageFor('pagerPreviousPage')"
2691
+ [nextPage]="messageFor('pagerNextPage')"
2692
+ [lastPage]="messageFor('pagerLastPage')"
2693
+ [selectPage]="messageFor('pagerSelectPage')"
2694
+ [page]="messageFor('pagerPage')"
2695
+ [itemsPerPage]="messageFor('pagerItemsPerPage')"
2696
+ [items]="messageFor('pagerItems')"
2697
+ [of]="messageFor('pagerOf')"
2698
+ [pageNumberInputTitle]="messageFor('pagerPageNumberInputTitle')">
2699
+ </kendo-pager-messages>
2700
+ </kendo-pager>
2615
2701
  <kendo-treelist-toolbar
2616
2702
  *ngIf="showBottomToolbar"
2617
2703
  class="k-toolbar k-grid-toolbar k-grid-toolbar-bottom k-toolbar-md"
@@ -2629,9 +2715,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
2629
2715
  </kendo-icon-wrapper>
2630
2716
  {{hintText}}
2631
2717
  </ng-template>
2718
+
2719
+ <ng-template #defaultPager>
2720
+ <div class="k-pager-numbers-wrap">
2721
+ <kendo-pager-prev-buttons *ngIf="normalizedPageableSettings.previousNext"></kendo-pager-prev-buttons>
2722
+ <kendo-pager-numeric-buttons
2723
+ *ngIf="normalizedPageableSettings.type === 'numeric' && normalizedPageableSettings.buttonCount > 0"
2724
+ [buttonCount]="normalizedPageableSettings.buttonCount">
2725
+ </kendo-pager-numeric-buttons>
2726
+ <kendo-pager-input *ngIf="normalizedPageableSettings.type === 'input'"></kendo-pager-input>
2727
+ <kendo-pager-next-buttons *ngIf="normalizedPageableSettings.previousNext"></kendo-pager-next-buttons>
2728
+ </div>
2729
+ <kendo-pager-page-sizes *ngIf="normalizedPageableSettings.pageSizes"
2730
+ [pageSizes]="normalizedPageableSettings.pageSizes">
2731
+ </kendo-pager-page-sizes>
2732
+ <kendo-pager-info *ngIf="normalizedPageableSettings.info">
2733
+ </kendo-pager-info>
2734
+ <kendo-pager-messages
2735
+ [ariaLabel]="messageFor('pagerLabel')"
2736
+ [firstPage]="messageFor('pagerFirstPage')"
2737
+ [inputLabel]="messageFor('pagerInputLabel')"
2738
+ [previousPage]="messageFor('pagerPreviousPage')"
2739
+ [nextPage]="messageFor('pagerNextPage')"
2740
+ [lastPage]="messageFor('pagerLastPage')"
2741
+ [selectPage]="messageFor('pagerSelectPage')"
2742
+ [page]="messageFor('pagerPage')"
2743
+ [itemsPerPage]="messageFor('pagerItemsPerPage')"
2744
+ [items]="messageFor('pagerItems')"
2745
+ [of]="messageFor('pagerOf')"
2746
+ [pageNumberInputTitle]="messageFor('pagerPageNumberInputTitle')">
2747
+ </kendo-pager-messages>
2748
+ </ng-template>
2632
2749
  `,
2633
2750
  standalone: true,
2634
- imports: [LocalizedMessagesDirective, NgIf, ToolbarComponent, DragTargetContainerDirective, DropTargetContainerDirective, TableDirective, ColGroupComponent, HeaderComponent, ResizableContainerDirective, ListComponent, DraggableDirective, MarqueeDirective, TableBodyComponent, LoadingComponent, PagerComponent, IconWrapperComponent]
2751
+ imports: [LocalizedMessagesDirective, NgIf, NgTemplateOutlet, ToolbarComponent, DragTargetContainerDirective, DropTargetContainerDirective,
2752
+ TableDirective, ColGroupComponent, HeaderComponent, ResizableContainerDirective, ListComponent, DraggableDirective, MarqueeDirective,
2753
+ TableBodyComponent, LoadingComponent, ...KENDO_PAGER, IconWrapperComponent]
2635
2754
  }]
2636
2755
  }], ctorParameters: function () { return [{ type: i1.BrowserSupportService }, { type: i0.ElementRef }, { type: i2.ChangeNotificationService }, { type: i3.EditService }, { type: i4.FilterService }, { type: i5.PDFService }, { type: i6.ResponsiveService }, { type: i0.Renderer2 }, { type: i7.ExcelService }, { type: i0.NgZone }, { type: i8.ScrollSyncService }, { type: i9.DomEventsService }, { type: i10.ColumnResizingService }, { type: i0.ChangeDetectorRef }, { type: i11.ColumnReorderService }, { type: i12.ColumnInfoService }, { type: i13.NavigationService }, { type: i14.SortService }, { type: i15.ScrollRequestService }, { type: i16.ExpandStateService }, { type: i17.OptionChangesService }, { type: i18.SelectionService }, { type: i19.LocalizationService }, { type: i20.ContextService }, { type: i21.RowReorderService }]; }, propDecorators: { ariaLabel: [{
2637
2756
  type: Input,
@@ -10,7 +10,7 @@ import { PopupService } from '@progress/kendo-angular-popup';
10
10
  import { DialogContainerService, DialogService, WindowContainerService, WindowService } from '@progress/kendo-angular-dialog';
11
11
  import { KENDO_TREELIST } from './directives';
12
12
  import { TableDirective } from './column-resizing/table.directive';
13
- import { ToolBarModule } from '@progress/kendo-angular-toolbar';
13
+ import { KENDO_TOOLBAR } from '@progress/kendo-angular-toolbar';
14
14
  import * as i0 from "@angular/core";
15
15
  import * as i1 from "./treelist.component";
16
16
  import * as i2 from "./rendering/toolbar/toolbar-template.directive";
@@ -39,80 +39,74 @@ import * as i24 from "./rendering/common/loading.component";
39
39
  import * as i25 from "./filtering/cell/filter-cell-operators.component";
40
40
  import * as i26 from "./columns/checkbox-column.component";
41
41
  import * as i27 from "./columns/rowreorder-column.component";
42
- import * as i28 from "./columns/command-column.component";
43
- import * as i29 from "./rendering/cell-template.directive";
44
- import * as i30 from "./rendering/cell.component";
45
- import * as i31 from "./rendering/no-records-template.directive";
46
- import * as i32 from "./editing/edit-template.directive";
47
- import * as i33 from "./editing/edit-command.directive";
48
- import * as i34 from "./editing/cancel-command.directive";
49
- import * as i35 from "./editing/save-command.directive";
50
- import * as i36 from "./editing/remove-command.directive";
51
- import * as i37 from "./editing/add-command.directive";
52
- import * as i38 from "./editing/add-command-tool.directive";
53
- import * as i39 from "./rendering/footer-template.directive";
54
- import * as i40 from "./rendering/header/header.component";
55
- import * as i41 from "./rendering/header/header-template.directive";
56
- import * as i42 from "./column-resizing/column-handle.directive";
57
- import * as i43 from "./pager/pager.component";
58
- import * as i44 from "./pager/pager-prev-buttons.component";
59
- import * as i45 from "./pager/pager-next-buttons.component";
60
- import * as i46 from "./pager/pager-numeric-buttons.component";
61
- import * as i47 from "./pager/pager-input.component";
62
- import * as i48 from "./pager/pager-info.component";
63
- import * as i49 from "./pager/pager-page-sizes.component";
64
- import * as i50 from "./pager/pager-template.directive";
65
- import * as i51 from "./filtering/filter-row.component";
66
- import * as i52 from "./filtering/cell/filter-cell.component";
67
- import * as i53 from "./filtering/cell/filter-cell-template.directive";
68
- import * as i54 from "./filtering/cell/string-filter-cell.component";
69
- import * as i55 from "./filtering/cell/numeric-filter-cell.component";
70
- import * as i56 from "./filtering/cell/autocomplete-filter-cell.component";
71
- import * as i57 from "./filtering/cell/boolean-filter-cell.component";
72
- import * as i58 from "./filtering/cell/filter-cell-host.directive";
73
- import * as i59 from "./filtering/cell/filter-cell-wrapper.component";
74
- import * as i60 from "./filtering/cell/date-filter-cell.component";
75
- import * as i61 from "./filtering/operators/contains-filter-operator.component";
76
- import * as i62 from "./filtering/operators/not-contains-filter-operator.component";
77
- import * as i63 from "./filtering/operators/ends-with-filter-operator.component";
78
- import * as i64 from "./filtering/operators/eq-filter-operator.component";
79
- import * as i65 from "./filtering/operators/is-empty-filter-operator.component";
80
- import * as i66 from "./filtering/operators/is-not-empty-filter-operator.component";
81
- import * as i67 from "./filtering/operators/is-not-null-filter-operator.component";
82
- import * as i68 from "./filtering/operators/isnull-filter-operator.component";
83
- import * as i69 from "./filtering/operators/neq-filter-operator.component";
84
- import * as i70 from "./filtering/operators/starts-with-filter-operator.component";
85
- import * as i71 from "./filtering/operators/gt-filter-operator.component";
86
- import * as i72 from "./filtering/operators/gte-filter-operator.component";
87
- import * as i73 from "./filtering/operators/lt-filter-operator.component";
88
- import * as i74 from "./filtering/operators/lte-filter-operator.component";
89
- import * as i75 from "./filtering/operators/after-filter-operator.component";
90
- import * as i76 from "./filtering/operators/after-eq-filter-operator.component";
91
- import * as i77 from "./filtering/operators/before-eq-filter-operator.component";
92
- import * as i78 from "./filtering/operators/before-filter-operator.component";
93
- import * as i79 from "./filtering/filter-input.directive";
94
- import * as i80 from "./filtering/menu/filter-menu.component";
95
- import * as i81 from "./filtering/menu/filter-menu-container.component";
96
- import * as i82 from "./filtering/menu/filter-menu-input-wrapper.component";
97
- import * as i83 from "./filtering/menu/string-filter-menu-input.component";
98
- import * as i84 from "./filtering/menu/string-filter-menu.component";
99
- import * as i85 from "./filtering/menu/filter-menu-template.directive";
100
- import * as i86 from "./filtering/menu/numeric-filter-menu.component";
101
- import * as i87 from "./filtering/menu/numeric-filter-menu-input.component";
102
- import * as i88 from "./filtering/menu/date-filter-menu-input.component";
103
- import * as i89 from "./filtering/menu/date-filter-menu.component";
104
- import * as i90 from "./filtering/menu/filter-menu-host.directive";
105
- import * as i91 from "./filtering/menu/boolean-filter-menu.component";
106
- import * as i92 from "./filtering/menu/filter-radio-button.directive";
107
- import * as i93 from "./column-menu/column-chooser.component";
108
- import * as i94 from "./column-menu/column-menu-chooser.component";
109
- import * as i95 from "./column-menu/column-menu-filter.component";
110
- import * as i96 from "./column-menu/column-menu-item.component";
111
- import * as i97 from "./column-menu/column-menu-item-content-template.directive";
112
- import * as i98 from "./column-menu/column-menu-sort.component";
113
- import * as i99 from "./column-menu/column-menu.component";
114
- import * as i100 from "./column-menu/column-menu-lock.component";
115
- import * as i101 from "./column-menu/column-menu-template.directive";
42
+ import * as i28 from "@progress/kendo-angular-pager";
43
+ import * as i29 from "./columns/command-column.component";
44
+ import * as i30 from "./rendering/cell-template.directive";
45
+ import * as i31 from "./rendering/cell.component";
46
+ import * as i32 from "./rendering/no-records-template.directive";
47
+ import * as i33 from "./editing/edit-template.directive";
48
+ import * as i34 from "./editing/edit-command.directive";
49
+ import * as i35 from "./editing/cancel-command.directive";
50
+ import * as i36 from "./editing/save-command.directive";
51
+ import * as i37 from "./editing/remove-command.directive";
52
+ import * as i38 from "./editing/add-command.directive";
53
+ import * as i39 from "./editing/add-command-tool.directive";
54
+ import * as i40 from "./rendering/footer-template.directive";
55
+ import * as i41 from "./rendering/header/header.component";
56
+ import * as i42 from "./rendering/header/header-template.directive";
57
+ import * as i43 from "./column-resizing/column-handle.directive";
58
+ import * as i44 from "./filtering/filter-row.component";
59
+ import * as i45 from "./filtering/cell/filter-cell.component";
60
+ import * as i46 from "./filtering/cell/filter-cell-template.directive";
61
+ import * as i47 from "./filtering/cell/string-filter-cell.component";
62
+ import * as i48 from "./filtering/cell/numeric-filter-cell.component";
63
+ import * as i49 from "./filtering/cell/autocomplete-filter-cell.component";
64
+ import * as i50 from "./filtering/cell/boolean-filter-cell.component";
65
+ import * as i51 from "./filtering/cell/filter-cell-host.directive";
66
+ import * as i52 from "./filtering/cell/filter-cell-wrapper.component";
67
+ import * as i53 from "./filtering/cell/date-filter-cell.component";
68
+ import * as i54 from "./filtering/operators/contains-filter-operator.component";
69
+ import * as i55 from "./filtering/operators/not-contains-filter-operator.component";
70
+ import * as i56 from "./filtering/operators/ends-with-filter-operator.component";
71
+ import * as i57 from "./filtering/operators/eq-filter-operator.component";
72
+ import * as i58 from "./filtering/operators/is-empty-filter-operator.component";
73
+ import * as i59 from "./filtering/operators/is-not-empty-filter-operator.component";
74
+ import * as i60 from "./filtering/operators/is-not-null-filter-operator.component";
75
+ import * as i61 from "./filtering/operators/isnull-filter-operator.component";
76
+ import * as i62 from "./filtering/operators/neq-filter-operator.component";
77
+ import * as i63 from "./filtering/operators/starts-with-filter-operator.component";
78
+ import * as i64 from "./filtering/operators/gt-filter-operator.component";
79
+ import * as i65 from "./filtering/operators/gte-filter-operator.component";
80
+ import * as i66 from "./filtering/operators/lt-filter-operator.component";
81
+ import * as i67 from "./filtering/operators/lte-filter-operator.component";
82
+ import * as i68 from "./filtering/operators/after-filter-operator.component";
83
+ import * as i69 from "./filtering/operators/after-eq-filter-operator.component";
84
+ import * as i70 from "./filtering/operators/before-eq-filter-operator.component";
85
+ import * as i71 from "./filtering/operators/before-filter-operator.component";
86
+ import * as i72 from "./filtering/filter-input.directive";
87
+ import * as i73 from "./filtering/menu/filter-menu.component";
88
+ import * as i74 from "./filtering/menu/filter-menu-container.component";
89
+ import * as i75 from "./filtering/menu/filter-menu-input-wrapper.component";
90
+ import * as i76 from "./filtering/menu/string-filter-menu-input.component";
91
+ import * as i77 from "./filtering/menu/string-filter-menu.component";
92
+ import * as i78 from "./filtering/menu/filter-menu-template.directive";
93
+ import * as i79 from "./filtering/menu/numeric-filter-menu.component";
94
+ import * as i80 from "./filtering/menu/numeric-filter-menu-input.component";
95
+ import * as i81 from "./filtering/menu/date-filter-menu-input.component";
96
+ import * as i82 from "./filtering/menu/date-filter-menu.component";
97
+ import * as i83 from "./filtering/menu/filter-menu-host.directive";
98
+ import * as i84 from "./filtering/menu/boolean-filter-menu.component";
99
+ import * as i85 from "./filtering/menu/filter-radio-button.directive";
100
+ import * as i86 from "./column-menu/column-chooser.component";
101
+ import * as i87 from "./column-menu/column-menu-chooser.component";
102
+ import * as i88 from "./column-menu/column-menu-filter.component";
103
+ import * as i89 from "./column-menu/column-menu-item.component";
104
+ import * as i90 from "./column-menu/column-menu-item-content-template.directive";
105
+ import * as i91 from "./column-menu/column-menu-sort.component";
106
+ import * as i92 from "./column-menu/column-menu.component";
107
+ import * as i93 from "./column-menu/column-menu-lock.component";
108
+ import * as i94 from "./column-menu/column-menu-template.directive";
109
+ import * as i95 from "@progress/kendo-angular-toolbar";
116
110
  // IMPORTANT: NgModule export kept for backwards compatibility
117
111
  /**
118
112
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
@@ -137,7 +131,7 @@ import * as i101 from "./column-menu/column-menu-template.directive";
137
131
  */
138
132
  export class TreeListModule {
139
133
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
140
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, imports: [i1.TreeListComponent, i2.ToolbarTemplateDirective, i3.ToolbarComponent, i4.TreeListSpacerComponent, i5.CustomMessagesComponent, i6.TemplateEditingDirective, i7.ReactiveEditingDirective, i8.InCellEditingDirective, i9.HierarchyBindingDirective, i10.FlatBindingDirective, i11.ExpandableDirective, i12.SelectableDirective, i13.TreeListToolbarFocusableDirective, i14.ColumnComponent, i15.ColumnGroupComponent, i16.LogicalCellDirective, i17.LogicalRowDirective, i18.FocusableDirective, i19.ColGroupComponent, i20.ResizableContainerDirective, i21.TemplateContextDirective, i22.FieldAccessorPipe, i23.SpanColumnComponent, i24.LoadingComponent, i25.FilterCellOperatorsComponent, i26.CheckboxColumnComponent, i27.RowReorderColumnComponent, i28.CommandColumnComponent, i29.CellTemplateDirective, i30.CellComponent, i31.NoRecordsTemplateDirective, i32.EditTemplateDirective, i33.EditCommandDirective, i34.CancelCommandDirective, i35.SaveCommandDirective, i36.RemoveCommandDirective, i37.AddCommandDirective, i38.AddCommandToolbarDirective, i39.FooterTemplateDirective, i40.HeaderComponent, i41.HeaderTemplateDirective, i42.ColumnHandleDirective, i43.PagerComponent, i44.PagerPrevButtonsComponent, i45.PagerNextButtonsComponent, i46.PagerNumericButtonsComponent, i47.PagerInputComponent, i48.PagerInfoComponent, i49.PagerPageSizesComponent, i50.PagerTemplateDirective, i51.FilterRowComponent, i52.FilterCellComponent, i53.FilterCellTemplateDirective, i54.StringFilterCellComponent, i55.NumericFilterCellComponent, i56.AutoCompleteFilterCellComponent, i57.BooleanFilterCellComponent, i58.FilterCellHostDirective, i59.FilterCellWrapperComponent, i60.DateFilterCellComponent, i25.FilterCellOperatorsComponent, i61.ContainsFilterOperatorComponent, i62.DoesNotContainFilterOperatorComponent, i63.EndsWithFilterOperatorComponent, i64.EqualFilterOperatorComponent, i65.IsEmptyFilterOperatorComponent, i66.IsNotEmptyFilterOperatorComponent, i67.IsNotNullFilterOperatorComponent, i68.IsNullFilterOperatorComponent, i69.NotEqualFilterOperatorComponent, i70.StartsWithFilterOperatorComponent, i71.GreaterFilterOperatorComponent, i72.GreaterOrEqualToFilterOperatorComponent, i73.LessFilterOperatorComponent, i74.LessOrEqualToFilterOperatorComponent, i75.AfterFilterOperatorComponent, i76.AfterEqFilterOperatorComponent, i77.BeforeEqFilterOperatorComponent, i78.BeforeFilterOperatorComponent, i79.FilterInputDirective, i14.ColumnComponent, i15.ColumnGroupComponent, i16.LogicalCellDirective, i17.LogicalRowDirective, i18.FocusableDirective, i19.ColGroupComponent, i20.ResizableContainerDirective, i21.TemplateContextDirective, i22.FieldAccessorPipe, i23.SpanColumnComponent, i24.LoadingComponent, i25.FilterCellOperatorsComponent, i26.CheckboxColumnComponent, i27.RowReorderColumnComponent, i80.FilterMenuComponent, i81.FilterMenuContainerComponent, i82.FilterMenuInputWrapperComponent, i83.StringFilterMenuInputComponent, i84.StringFilterMenuComponent, i85.FilterMenuTemplateDirective, i86.NumericFilterMenuComponent, i87.NumericFilterMenuInputComponent, i88.DateFilterMenuInputComponent, i89.DateFilterMenuComponent, i90.FilterMenuHostDirective, i91.BooleanFilterMenuComponent, i92.BooleanFilterRadioButtonDirective, i93.ColumnChooserComponent, i94.ColumnMenuChooserComponent, i95.ColumnMenuFilterComponent, i96.ColumnMenuItemComponent, i97.ColumnMenuItemContentTemplateDirective, i98.ColumnMenuSortComponent, i99.ColumnMenuComponent, i100.ColumnMenuLockComponent, i101.ColumnMenuTemplateDirective, TableDirective], exports: [i1.TreeListComponent, i2.ToolbarTemplateDirective, i3.ToolbarComponent, i4.TreeListSpacerComponent, i5.CustomMessagesComponent, i6.TemplateEditingDirective, i7.ReactiveEditingDirective, i8.InCellEditingDirective, i9.HierarchyBindingDirective, i10.FlatBindingDirective, i11.ExpandableDirective, i12.SelectableDirective, i13.TreeListToolbarFocusableDirective, i14.ColumnComponent, i15.ColumnGroupComponent, i16.LogicalCellDirective, i17.LogicalRowDirective, i18.FocusableDirective, i19.ColGroupComponent, i20.ResizableContainerDirective, i21.TemplateContextDirective, i22.FieldAccessorPipe, i23.SpanColumnComponent, i24.LoadingComponent, i25.FilterCellOperatorsComponent, i26.CheckboxColumnComponent, i27.RowReorderColumnComponent, i28.CommandColumnComponent, i29.CellTemplateDirective, i30.CellComponent, i31.NoRecordsTemplateDirective, i32.EditTemplateDirective, i33.EditCommandDirective, i34.CancelCommandDirective, i35.SaveCommandDirective, i36.RemoveCommandDirective, i37.AddCommandDirective, i38.AddCommandToolbarDirective, i39.FooterTemplateDirective, i40.HeaderComponent, i41.HeaderTemplateDirective, i42.ColumnHandleDirective, i43.PagerComponent, i44.PagerPrevButtonsComponent, i45.PagerNextButtonsComponent, i46.PagerNumericButtonsComponent, i47.PagerInputComponent, i48.PagerInfoComponent, i49.PagerPageSizesComponent, i50.PagerTemplateDirective, i51.FilterRowComponent, i52.FilterCellComponent, i53.FilterCellTemplateDirective, i54.StringFilterCellComponent, i55.NumericFilterCellComponent, i56.AutoCompleteFilterCellComponent, i57.BooleanFilterCellComponent, i58.FilterCellHostDirective, i59.FilterCellWrapperComponent, i60.DateFilterCellComponent, i25.FilterCellOperatorsComponent, i61.ContainsFilterOperatorComponent, i62.DoesNotContainFilterOperatorComponent, i63.EndsWithFilterOperatorComponent, i64.EqualFilterOperatorComponent, i65.IsEmptyFilterOperatorComponent, i66.IsNotEmptyFilterOperatorComponent, i67.IsNotNullFilterOperatorComponent, i68.IsNullFilterOperatorComponent, i69.NotEqualFilterOperatorComponent, i70.StartsWithFilterOperatorComponent, i71.GreaterFilterOperatorComponent, i72.GreaterOrEqualToFilterOperatorComponent, i73.LessFilterOperatorComponent, i74.LessOrEqualToFilterOperatorComponent, i75.AfterFilterOperatorComponent, i76.AfterEqFilterOperatorComponent, i77.BeforeEqFilterOperatorComponent, i78.BeforeFilterOperatorComponent, i79.FilterInputDirective, i14.ColumnComponent, i15.ColumnGroupComponent, i16.LogicalCellDirective, i17.LogicalRowDirective, i18.FocusableDirective, i19.ColGroupComponent, i20.ResizableContainerDirective, i21.TemplateContextDirective, i22.FieldAccessorPipe, i23.SpanColumnComponent, i24.LoadingComponent, i25.FilterCellOperatorsComponent, i26.CheckboxColumnComponent, i27.RowReorderColumnComponent, i80.FilterMenuComponent, i81.FilterMenuContainerComponent, i82.FilterMenuInputWrapperComponent, i83.StringFilterMenuInputComponent, i84.StringFilterMenuComponent, i85.FilterMenuTemplateDirective, i86.NumericFilterMenuComponent, i87.NumericFilterMenuInputComponent, i88.DateFilterMenuInputComponent, i89.DateFilterMenuComponent, i90.FilterMenuHostDirective, i91.BooleanFilterMenuComponent, i92.BooleanFilterRadioButtonDirective, i93.ColumnChooserComponent, i94.ColumnMenuChooserComponent, i95.ColumnMenuFilterComponent, i96.ColumnMenuItemComponent, i97.ColumnMenuItemContentTemplateDirective, i98.ColumnMenuSortComponent, i99.ColumnMenuComponent, i100.ColumnMenuLockComponent, i101.ColumnMenuTemplateDirective, ToolBarModule] });
134
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, imports: [i1.TreeListComponent, i2.ToolbarTemplateDirective, i3.ToolbarComponent, i4.TreeListSpacerComponent, i5.CustomMessagesComponent, i6.TemplateEditingDirective, i7.ReactiveEditingDirective, i8.InCellEditingDirective, i9.HierarchyBindingDirective, i10.FlatBindingDirective, i11.ExpandableDirective, i12.SelectableDirective, i13.TreeListToolbarFocusableDirective, i14.ColumnComponent, i15.ColumnGroupComponent, i16.LogicalCellDirective, i17.LogicalRowDirective, i18.FocusableDirective, i19.ColGroupComponent, i20.ResizableContainerDirective, i21.TemplateContextDirective, i22.FieldAccessorPipe, i23.SpanColumnComponent, i24.LoadingComponent, i25.FilterCellOperatorsComponent, i26.CheckboxColumnComponent, i27.RowReorderColumnComponent, i28.CustomMessagesComponent, i28.PagerFocusableDirective, i28.PagerInfoComponent, i28.PagerInputComponent, i28.PagerNextButtonsComponent, i28.PagerNumericButtonsComponent, i28.PagerPageSizesComponent, i28.PagerPrevButtonsComponent, i28.PagerTemplateDirective, i28.PagerComponent, i28.PagerSpacerComponent, i29.CommandColumnComponent, i30.CellTemplateDirective, i31.CellComponent, i32.NoRecordsTemplateDirective, i33.EditTemplateDirective, i34.EditCommandDirective, i35.CancelCommandDirective, i36.SaveCommandDirective, i37.RemoveCommandDirective, i38.AddCommandDirective, i39.AddCommandToolbarDirective, i40.FooterTemplateDirective, i41.HeaderComponent, i42.HeaderTemplateDirective, i43.ColumnHandleDirective, i44.FilterRowComponent, i45.FilterCellComponent, i46.FilterCellTemplateDirective, i47.StringFilterCellComponent, i48.NumericFilterCellComponent, i49.AutoCompleteFilterCellComponent, i50.BooleanFilterCellComponent, i51.FilterCellHostDirective, i52.FilterCellWrapperComponent, i53.DateFilterCellComponent, i25.FilterCellOperatorsComponent, i54.ContainsFilterOperatorComponent, i55.DoesNotContainFilterOperatorComponent, i56.EndsWithFilterOperatorComponent, i57.EqualFilterOperatorComponent, i58.IsEmptyFilterOperatorComponent, i59.IsNotEmptyFilterOperatorComponent, i60.IsNotNullFilterOperatorComponent, i61.IsNullFilterOperatorComponent, i62.NotEqualFilterOperatorComponent, i63.StartsWithFilterOperatorComponent, i64.GreaterFilterOperatorComponent, i65.GreaterOrEqualToFilterOperatorComponent, i66.LessFilterOperatorComponent, i67.LessOrEqualToFilterOperatorComponent, i68.AfterFilterOperatorComponent, i69.AfterEqFilterOperatorComponent, i70.BeforeEqFilterOperatorComponent, i71.BeforeFilterOperatorComponent, i72.FilterInputDirective, i14.ColumnComponent, i15.ColumnGroupComponent, i16.LogicalCellDirective, i17.LogicalRowDirective, i18.FocusableDirective, i19.ColGroupComponent, i20.ResizableContainerDirective, i21.TemplateContextDirective, i22.FieldAccessorPipe, i23.SpanColumnComponent, i24.LoadingComponent, i25.FilterCellOperatorsComponent, i26.CheckboxColumnComponent, i27.RowReorderColumnComponent, i28.CustomMessagesComponent, i28.PagerFocusableDirective, i28.PagerInfoComponent, i28.PagerInputComponent, i28.PagerNextButtonsComponent, i28.PagerNumericButtonsComponent, i28.PagerPageSizesComponent, i28.PagerPrevButtonsComponent, i28.PagerTemplateDirective, i28.PagerComponent, i28.PagerSpacerComponent, i73.FilterMenuComponent, i74.FilterMenuContainerComponent, i75.FilterMenuInputWrapperComponent, i76.StringFilterMenuInputComponent, i77.StringFilterMenuComponent, i78.FilterMenuTemplateDirective, i79.NumericFilterMenuComponent, i80.NumericFilterMenuInputComponent, i81.DateFilterMenuInputComponent, i82.DateFilterMenuComponent, i83.FilterMenuHostDirective, i84.BooleanFilterMenuComponent, i85.BooleanFilterRadioButtonDirective, i86.ColumnChooserComponent, i87.ColumnMenuChooserComponent, i88.ColumnMenuFilterComponent, i89.ColumnMenuItemComponent, i90.ColumnMenuItemContentTemplateDirective, i91.ColumnMenuSortComponent, i92.ColumnMenuComponent, i93.ColumnMenuLockComponent, i94.ColumnMenuTemplateDirective, i95.ToolBarComponent, i95.ToolbarCustomMessagesComponent, i95.ToolBarButtonComponent, i95.ToolBarButtonGroupComponent, i95.ToolBarDropDownButtonComponent, i95.ToolBarSeparatorComponent, i95.ToolBarSpacerComponent, i95.ToolBarSplitButtonComponent, i95.ToolBarToolComponent, TableDirective], exports: [i1.TreeListComponent, i2.ToolbarTemplateDirective, i3.ToolbarComponent, i4.TreeListSpacerComponent, i5.CustomMessagesComponent, i6.TemplateEditingDirective, i7.ReactiveEditingDirective, i8.InCellEditingDirective, i9.HierarchyBindingDirective, i10.FlatBindingDirective, i11.ExpandableDirective, i12.SelectableDirective, i13.TreeListToolbarFocusableDirective, i14.ColumnComponent, i15.ColumnGroupComponent, i16.LogicalCellDirective, i17.LogicalRowDirective, i18.FocusableDirective, i19.ColGroupComponent, i20.ResizableContainerDirective, i21.TemplateContextDirective, i22.FieldAccessorPipe, i23.SpanColumnComponent, i24.LoadingComponent, i25.FilterCellOperatorsComponent, i26.CheckboxColumnComponent, i27.RowReorderColumnComponent, i28.CustomMessagesComponent, i28.PagerFocusableDirective, i28.PagerInfoComponent, i28.PagerInputComponent, i28.PagerNextButtonsComponent, i28.PagerNumericButtonsComponent, i28.PagerPageSizesComponent, i28.PagerPrevButtonsComponent, i28.PagerTemplateDirective, i28.PagerComponent, i28.PagerSpacerComponent, i29.CommandColumnComponent, i30.CellTemplateDirective, i31.CellComponent, i32.NoRecordsTemplateDirective, i33.EditTemplateDirective, i34.EditCommandDirective, i35.CancelCommandDirective, i36.SaveCommandDirective, i37.RemoveCommandDirective, i38.AddCommandDirective, i39.AddCommandToolbarDirective, i40.FooterTemplateDirective, i41.HeaderComponent, i42.HeaderTemplateDirective, i43.ColumnHandleDirective, i44.FilterRowComponent, i45.FilterCellComponent, i46.FilterCellTemplateDirective, i47.StringFilterCellComponent, i48.NumericFilterCellComponent, i49.AutoCompleteFilterCellComponent, i50.BooleanFilterCellComponent, i51.FilterCellHostDirective, i52.FilterCellWrapperComponent, i53.DateFilterCellComponent, i25.FilterCellOperatorsComponent, i54.ContainsFilterOperatorComponent, i55.DoesNotContainFilterOperatorComponent, i56.EndsWithFilterOperatorComponent, i57.EqualFilterOperatorComponent, i58.IsEmptyFilterOperatorComponent, i59.IsNotEmptyFilterOperatorComponent, i60.IsNotNullFilterOperatorComponent, i61.IsNullFilterOperatorComponent, i62.NotEqualFilterOperatorComponent, i63.StartsWithFilterOperatorComponent, i64.GreaterFilterOperatorComponent, i65.GreaterOrEqualToFilterOperatorComponent, i66.LessFilterOperatorComponent, i67.LessOrEqualToFilterOperatorComponent, i68.AfterFilterOperatorComponent, i69.AfterEqFilterOperatorComponent, i70.BeforeEqFilterOperatorComponent, i71.BeforeFilterOperatorComponent, i72.FilterInputDirective, i14.ColumnComponent, i15.ColumnGroupComponent, i16.LogicalCellDirective, i17.LogicalRowDirective, i18.FocusableDirective, i19.ColGroupComponent, i20.ResizableContainerDirective, i21.TemplateContextDirective, i22.FieldAccessorPipe, i23.SpanColumnComponent, i24.LoadingComponent, i25.FilterCellOperatorsComponent, i26.CheckboxColumnComponent, i27.RowReorderColumnComponent, i28.CustomMessagesComponent, i28.PagerFocusableDirective, i28.PagerInfoComponent, i28.PagerInputComponent, i28.PagerNextButtonsComponent, i28.PagerNumericButtonsComponent, i28.PagerPageSizesComponent, i28.PagerPrevButtonsComponent, i28.PagerTemplateDirective, i28.PagerComponent, i28.PagerSpacerComponent, i73.FilterMenuComponent, i74.FilterMenuContainerComponent, i75.FilterMenuInputWrapperComponent, i76.StringFilterMenuInputComponent, i77.StringFilterMenuComponent, i78.FilterMenuTemplateDirective, i79.NumericFilterMenuComponent, i80.NumericFilterMenuInputComponent, i81.DateFilterMenuInputComponent, i82.DateFilterMenuComponent, i83.FilterMenuHostDirective, i84.BooleanFilterMenuComponent, i85.BooleanFilterRadioButtonDirective, i86.ColumnChooserComponent, i87.ColumnMenuChooserComponent, i88.ColumnMenuFilterComponent, i89.ColumnMenuItemComponent, i90.ColumnMenuItemContentTemplateDirective, i91.ColumnMenuSortComponent, i92.ColumnMenuComponent, i93.ColumnMenuLockComponent, i94.ColumnMenuTemplateDirective, i95.ToolBarComponent, i95.ToolbarCustomMessagesComponent, i95.ToolBarButtonComponent, i95.ToolBarButtonGroupComponent, i95.ToolBarDropDownButtonComponent, i95.ToolBarSeparatorComponent, i95.ToolBarSpacerComponent, i95.ToolBarSplitButtonComponent, i95.ToolBarToolComponent] });
141
135
  static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, providers: [
142
136
  IconsService,
143
137
  ResizeBatchService,
@@ -152,13 +146,13 @@ export class TreeListModule {
152
146
  DialogService,
153
147
  WindowService,
154
148
  WindowContainerService
155
- ], imports: [i1.TreeListComponent, i25.FilterCellOperatorsComponent, i30.CellComponent, i33.EditCommandDirective, i34.CancelCommandDirective, i35.SaveCommandDirective, i36.RemoveCommandDirective, i37.AddCommandDirective, i40.HeaderComponent, i43.PagerComponent, i44.PagerPrevButtonsComponent, i45.PagerNextButtonsComponent, i46.PagerNumericButtonsComponent, i47.PagerInputComponent, i49.PagerPageSizesComponent, i54.StringFilterCellComponent, i55.NumericFilterCellComponent, i56.AutoCompleteFilterCellComponent, i57.BooleanFilterCellComponent, i59.FilterCellWrapperComponent, i60.DateFilterCellComponent, i25.FilterCellOperatorsComponent, i25.FilterCellOperatorsComponent, i80.FilterMenuComponent, i81.FilterMenuContainerComponent, i82.FilterMenuInputWrapperComponent, i83.StringFilterMenuInputComponent, i84.StringFilterMenuComponent, i86.NumericFilterMenuComponent, i87.NumericFilterMenuInputComponent, i88.DateFilterMenuInputComponent, i89.DateFilterMenuComponent, i93.ColumnChooserComponent, i94.ColumnMenuChooserComponent, i95.ColumnMenuFilterComponent, i96.ColumnMenuItemComponent, i98.ColumnMenuSortComponent, i99.ColumnMenuComponent, i100.ColumnMenuLockComponent, ToolBarModule] });
149
+ ], imports: [i1.TreeListComponent, i25.FilterCellOperatorsComponent, i28.CustomMessagesComponent, i28.PagerInfoComponent, i28.PagerInputComponent, i28.PagerNextButtonsComponent, i28.PagerNumericButtonsComponent, i28.PagerPageSizesComponent, i28.PagerPrevButtonsComponent, i28.PagerComponent, i28.PagerSpacerComponent, i31.CellComponent, i34.EditCommandDirective, i35.CancelCommandDirective, i36.SaveCommandDirective, i37.RemoveCommandDirective, i38.AddCommandDirective, i41.HeaderComponent, i47.StringFilterCellComponent, i48.NumericFilterCellComponent, i49.AutoCompleteFilterCellComponent, i50.BooleanFilterCellComponent, i52.FilterCellWrapperComponent, i53.DateFilterCellComponent, i25.FilterCellOperatorsComponent, i25.FilterCellOperatorsComponent, i28.CustomMessagesComponent, i28.PagerInfoComponent, i28.PagerInputComponent, i28.PagerNextButtonsComponent, i28.PagerNumericButtonsComponent, i28.PagerPageSizesComponent, i28.PagerPrevButtonsComponent, i28.PagerComponent, i28.PagerSpacerComponent, i73.FilterMenuComponent, i74.FilterMenuContainerComponent, i75.FilterMenuInputWrapperComponent, i76.StringFilterMenuInputComponent, i77.StringFilterMenuComponent, i79.NumericFilterMenuComponent, i80.NumericFilterMenuInputComponent, i81.DateFilterMenuInputComponent, i82.DateFilterMenuComponent, i86.ColumnChooserComponent, i87.ColumnMenuChooserComponent, i88.ColumnMenuFilterComponent, i89.ColumnMenuItemComponent, i91.ColumnMenuSortComponent, i92.ColumnMenuComponent, i93.ColumnMenuLockComponent, i95.ToolBarComponent, i95.ToolbarCustomMessagesComponent, i95.ToolBarButtonComponent, i95.ToolBarButtonGroupComponent, i95.ToolBarDropDownButtonComponent, i95.ToolBarSeparatorComponent, i95.ToolBarSpacerComponent, i95.ToolBarSplitButtonComponent] });
156
150
  }
157
151
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, decorators: [{
158
152
  type: NgModule,
159
153
  args: [{
160
- exports: [...KENDO_TREELIST, ToolBarModule],
161
- imports: [...KENDO_TREELIST, TableDirective],
154
+ exports: [...KENDO_TREELIST, ...KENDO_TOOLBAR],
155
+ imports: [...KENDO_TREELIST, ...KENDO_TOOLBAR, TableDirective],
162
156
  providers: [
163
157
  IconsService,
164
158
  ResizeBatchService,