@progress/kendo-angular-listview 24.2.2 → 25.0.0-develop.1

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 (38) hide show
  1. package/fesm2022/progress-kendo-angular-listview.mjs +54 -54
  2. package/index.d.ts +1036 -27
  3. package/package-metadata.mjs +2 -2
  4. package/package.json +13 -13
  5. package/schematics/ngAdd/index.js +6 -6
  6. package/data-binding/data-binding.directive.d.ts +0 -47
  7. package/directives.d.ts +0 -21
  8. package/editing/commands/add-command.directive.d.ts +0 -36
  9. package/editing/commands/cancel-command.directive.d.ts +0 -48
  10. package/editing/commands/edit-command.directive.d.ts +0 -37
  11. package/editing/commands/remove-command.directive.d.ts +0 -37
  12. package/editing/commands/save-command.directive.d.ts +0 -48
  13. package/editing/edit-template.directive.d.ts +0 -42
  14. package/editing/edit.service.d.ts +0 -60
  15. package/editing/events/add-event-args.interface.d.ts +0 -11
  16. package/editing/events/cancel-event-args.interface.d.ts +0 -10
  17. package/editing/events/edit-event-args.interface.d.ts +0 -27
  18. package/editing/events/remove-event-args.interface.d.ts +0 -11
  19. package/editing/events/save-event-args.interface.d.ts +0 -16
  20. package/listview.component.d.ts +0 -354
  21. package/listview.module.d.ts +0 -43
  22. package/models/listview-data-result.d.ts +0 -18
  23. package/models/page-change-event.d.ts +0 -11
  24. package/models/page-size-change-event.d.ts +0 -11
  25. package/models/page-size-item.d.ts +0 -12
  26. package/models/pager-position.d.ts +0 -12
  27. package/models/pager-settings.d.ts +0 -39
  28. package/models/pager-type.d.ts +0 -12
  29. package/models/scroll-bottom-event.d.ts +0 -14
  30. package/navigation/listview-navigable-item.directive.d.ts +0 -29
  31. package/navigation/navigation.service.d.ts +0 -55
  32. package/package-metadata.d.ts +0 -9
  33. package/templates/footer-template.directive.d.ts +0 -33
  34. package/templates/header-template.directive.d.ts +0 -34
  35. package/templates/item-template.directive.d.ts +0 -40
  36. package/templates/loader-template.directive.d.ts +0 -34
  37. package/templates/no-data-template.directive.d.ts +0 -27
  38. package/utils.d.ts +0 -55
@@ -1,354 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { EventEmitter, NgZone, Renderer2, ElementRef, SimpleChanges, QueryList, ChangeDetectorRef, AfterViewInit, OnDestroy, OnChanges } from '@angular/core';
6
- import { NavigationService } from './navigation/navigation.service';
7
- import { ListViewNavigableItemDirective } from './navigation/listview-navigable-item.directive';
8
- import { ItemTemplateDirective } from './templates/item-template.directive';
9
- import { HeaderTemplateDirective } from './templates/header-template.directive';
10
- import { FooterTemplateDirective } from './templates/footer-template.directive';
11
- import { LoaderTemplateDirective } from './templates/loader-template.directive';
12
- import { NoDataTemplateDirective } from './templates/no-data-template.directive';
13
- import { ScrollBottomEvent } from './models/scroll-bottom-event';
14
- import { PageChangeEvent } from './models/page-change-event';
15
- import { PageSizeChangeEvent } from './models/page-size-change-event';
16
- import { PagerSettings } from './models/pager-settings';
17
- import { ListViewDataResult } from './models/listview-data-result';
18
- import { EditTemplateDirective } from './editing/edit-template.directive';
19
- import { EditService } from './editing/edit.service';
20
- import { EditEvent } from "./editing/events/edit-event-args.interface";
21
- import { RemoveEvent } from "./editing/events/remove-event-args.interface";
22
- import { SaveEvent } from "./editing/events/save-event-args.interface";
23
- import { CancelEvent } from "./editing/events/cancel-event-args.interface";
24
- import { AddEvent } from "./editing/events/add-event-args.interface";
25
- import * as i0 from "@angular/core";
26
- /**
27
- * Represents the Kendo UI ListView component for Angular.
28
- * Displays a list of data items and supports paging, editing, and custom templates
29
- * ([see overview](https://www.telerik.com/kendo-angular-ui/components/listview)).
30
- *
31
- * @example
32
- * ```typescript
33
- * @Component({
34
- * selector: 'my-app',
35
- * template: `
36
- * <kendo-listview
37
- * [data]="items"
38
- * [pageable]="true"
39
- * [pageSize]="5">
40
- * <ng-template kendoListViewItemTemplate let-dataItem>
41
- * <div class="item">
42
- * <h3>{{ dataItem.name }}</h3>
43
- * <p>{{ dataItem.description }}</p>
44
- * </div>
45
- * </ng-template>
46
- * </kendo-listview>
47
- * `
48
- * })
49
- * export class AppComponent {
50
- * items = [
51
- * { name: 'Item 1', description: 'First item' },
52
- * { name: 'Item 2', description: 'Second item' }
53
- * ];
54
- * }
55
- * ```
56
- */
57
- export declare class ListViewComponent implements AfterViewInit, OnChanges, OnDestroy {
58
- ngZone: NgZone;
59
- element: ElementRef;
60
- renderer: Renderer2;
61
- private changeDetectorRef;
62
- editService: EditService;
63
- private navigationService;
64
- /**
65
- * @hidden
66
- */
67
- className: boolean;
68
- /**
69
- * @hidden
70
- */
71
- itemTemplate: ItemTemplateDirective;
72
- /**
73
- * @hidden
74
- */
75
- headerTemplate: HeaderTemplateDirective;
76
- /**
77
- * @hidden
78
- */
79
- footerTemplate: FooterTemplateDirective;
80
- /**
81
- * @hidden
82
- */
83
- loaderTemplate: LoaderTemplateDirective;
84
- /**
85
- * @hidden
86
- */
87
- contentContainer: ElementRef<HTMLElement>;
88
- /**
89
- * @hidden
90
- */
91
- noDataTemplate: NoDataTemplateDirective;
92
- /**
93
- * @hidden
94
- */
95
- editTemplate: EditTemplateDirective;
96
- /**
97
- * @hidden
98
- */
99
- listViewItems: QueryList<ListViewNavigableItemDirective>;
100
- /**
101
- * Specifies if a border should be rendered around the listview element.
102
- *
103
- * @default false
104
- */
105
- bordered: boolean;
106
- /**
107
- * Specifies the data collection that populates the ListView
108
- * ([see data binding examples](https://www.telerik.com/kendo-angular-ui/components/listview/paging)).
109
- */
110
- set data(value: any[] | ListViewDataResult | undefined);
111
- get data(): any[] | ListViewDataResult | undefined;
112
- /**
113
- * Specifies whether the loading indicator of the ListView displays
114
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/paging#remote-binding)).
115
- *
116
- * @default false
117
- */
118
- loading: boolean;
119
- /**
120
- * Specifies the CSS styles that render on the content container element of the ListView.
121
- * Supports the type of values that [`ngStyle`](link:site.data.urls.angular['ngstyleapi']) supports.
122
- */
123
- containerStyle?: {
124
- [key: string]: string;
125
- };
126
- /**
127
- * Specifies the CSS styles that render on each item element wrapper of the ListView.
128
- * Supports the type of values that [`ngStyle`](link:site.data.urls.angular['ngstyleapi']) supports.
129
- */
130
- itemStyle?: {
131
- [key: string]: string;
132
- };
133
- /**
134
- * Specifies the CSS class that renders on the content container element of the ListView.
135
- * Supports the type of values that [`ngClass`](link:site.data.urls.angular['ngclassapi']) supports.
136
- */
137
- containerClass?: string | string[] | Set<string> | {
138
- [key: string]: boolean;
139
- };
140
- /**
141
- * Specifies the CSS class that renders on each item element wrapper of the ListView.
142
- * Supports the type of values that [`ngClass`](link:site.data.urls.angular['ngclassapi']) supports.
143
- */
144
- itemClass?: string | string[] | Set<string> | {
145
- [key: string]: boolean;
146
- };
147
- /**
148
- * Specifies the content container `aria-label` attribute
149
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/accessibility#accessible-names)).
150
- *
151
- * @remarks
152
- * This property is related to accessibility.
153
- */
154
- containerLabel?: string;
155
- /**
156
- * Specifies the content container `role` attribute
157
- * ([more details](https://www.telerik.com/kendo-angular-ui/components/listview/accessibility#wai-aria-support)).
158
- *
159
- * @default 'list'
160
- *
161
- * @remarks
162
- * This property is related to accessibility.
163
- */
164
- containerRole: string;
165
- /**
166
- * Specifies the list item `role` attribute
167
- * ([more details](https://www.telerik.com/kendo-angular-ui/components/listview/accessibility#wai-aria-support)).
168
- *
169
- * @default 'listitem'
170
- *
171
- * @remarks
172
- * This property is related to accessibility.
173
- */
174
- listItemRole: string;
175
- /**
176
- * Specifies whether keyboard navigation is enabled
177
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/keyboard-navigation)).
178
- *
179
- * @default true
180
- *
181
- * @remarks
182
- * This property is related to accessibility.
183
- */
184
- set navigable(navigable: boolean);
185
- get navigable(): boolean;
186
- /**
187
- * Specifies the page size used by the ListView pager
188
- * ([more details](https://www.telerik.com/kendo-angular-ui/components/listview/paging)).
189
- */
190
- pageSize?: number;
191
- /**
192
- * Defines the number of records to be skipped by the pager
193
- * ([more details](https://www.telerik.com/kendo-angular-ui/components/listview/paging)).
194
- */
195
- set skip(skip: number);
196
- get skip(): number;
197
- /**
198
- * Configures whether the ListView renders a pager
199
- * ([more details](https://www.telerik.com/kendo-angular-ui/components/listview/paging)).
200
- * When you provide a boolean value, it renders a pager with the default settings.
201
- */
202
- set pageable(pageable: boolean | PagerSettings);
203
- get pageable(): boolean | PagerSettings;
204
- /**
205
- * Specifies the height (in pixels) of the ListView component.
206
- * When the content height exceeds the component height, a vertical scrollbar renders.
207
- *
208
- * To set the height of the ListView, you can also use `style.height`. The `style.height`
209
- * option supports units such as `px`, `%`, `em`, `rem`, and others.
210
- */
211
- height?: number;
212
- /**
213
- * Fires when you scroll to the last record on the page
214
- * ([see endless scrolling example](https://www.telerik.com/kendo-angular-ui/components/listview/scroll-modes#endless-scrolling)).
215
- */
216
- scrollBottom: EventEmitter<ScrollBottomEvent>;
217
- /**
218
- * Fires when you change the page or the page size of the ListView
219
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/paging#remote-binding)).
220
- * You have to handle the event yourself and page the data.
221
- */
222
- pageChange: EventEmitter<PageChangeEvent>;
223
- /**
224
- * Fires when you change the page size of the ListView. You can prevent this event (`$event.preventDefault()`).
225
- * When not prevented, the `pageChange` event fires subsequently.
226
- */
227
- pageSizeChange: EventEmitter<PageSizeChangeEvent>;
228
- /**
229
- * Fires when you click the **Edit** command button to edit an item
230
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/editing/editing-template-forms#editing-records)).
231
- */
232
- edit: EventEmitter<EditEvent>;
233
- /**
234
- * Fires when you click the **Cancel** command button to close an item
235
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/editing/editing-template-forms#cancelling-editing)).
236
- */
237
- cancel: EventEmitter<CancelEvent>;
238
- /**
239
- * Fires when you click the **Save** command button to save changes in an item
240
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/editing/editing-template-forms#saving-records)).
241
- */
242
- save: EventEmitter<SaveEvent>;
243
- /**
244
- * Fires when you click the **Remove** command button to remove an item
245
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/editing/editing-template-forms#removing-records)).
246
- */
247
- remove: EventEmitter<RemoveEvent>;
248
- /**
249
- * Fires when you click the **Add** command button to add a new item
250
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/editing/editing-template-forms#adding-records)).
251
- */
252
- add: EventEmitter<AddEvent>;
253
- /**
254
- * @hidden
255
- */
256
- pagerSettings: PagerSettings;
257
- /**
258
- * @hidden
259
- *
260
- * Gets the data items passed to the ListView.
261
- * If a `ListViewDataResult` is passed, the data value is used. If an array is passed - it's directly used.
262
- */
263
- get items(): any[];
264
- /**
265
- * @hidden
266
- *
267
- * Gets the total number of records passed to the ListView.
268
- * If a `ListViewDataResult` is passed, the total value is used. If an array is passed - its length is used.
269
- */
270
- get total(): number;
271
- /**
272
- * @hidden
273
- */
274
- get containerTabindex(): number;
275
- /**
276
- * Gets the current active item index
277
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/keyboard-navigation#controlling-the-focus)).
278
- * Returns `null` when keyboard navigation is disabled.
279
- */
280
- get activeIndex(): number;
281
- private removeNavigationListeners;
282
- private _skip;
283
- private _navigable;
284
- private _pageable;
285
- private lastScrollTop;
286
- private _data;
287
- private editServiceSubscription;
288
- constructor(ngZone: NgZone, element: ElementRef, renderer: Renderer2, changeDetectorRef: ChangeDetectorRef, editService: EditService, navigationService: NavigationService);
289
- ngAfterViewInit(): void;
290
- ngOnChanges(changes: SimpleChanges): void;
291
- ngOnDestroy(): void;
292
- /**
293
- * @hidden
294
- */
295
- templateContext(index: number): any;
296
- /**
297
- * @hidden
298
- */
299
- editTemplateContext(index: number): any;
300
- /**
301
- * Focuses the item at the specified index ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/keyboard-navigation#controlling-the-focus)):
302
- * - When you specify no index, the current active index receives focus.
303
- * - When the passed value is below `0`, the first item receives focus.
304
- * - When the passed value is above the last available index, the last item receives focus.
305
- *
306
- * > The `index` parameter is based on the logical structure of the ListView and does not correspond to the data item index&mdash
307
- * > the index `0` corresponds to the first rendered list item. Paging is not taken into account.
308
- * > Also, the `navigable` property must first be set to `true` for the method to work as expected.
309
- */
310
- focus(index?: number): void;
311
- /**
312
- * Creates a new item editor ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/editing/editing-template-forms#adding-records)).
313
- *
314
- * @param {FormGroup} group - The [`FormGroup`](link:site.data.urls.angular['formgroupapi']) that describes
315
- * the edit form. When called with a data item, it builds the `FormGroup` from the data item fields.
316
- */
317
- addItem(group: any): void;
318
- /**
319
- * Switches the specified item to edit mode ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/editing/editing-template-forms#editing-records)).
320
- *
321
- * @param index - The item index that switches to edit mode.
322
- * @param group - The [`FormGroup`](link:site.data.urls.angular['formgroupapi'])
323
- * that describes the edit form.
324
- */
325
- editItem(index: number, group?: any): void;
326
- /**
327
- * Closes the editor for a given item ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/editing/editing-template-forms#cancelling-editing)).
328
- *
329
- * @param {number} index - The item index that switches out of the edit mode. When you provide no index, the editor of the new item will close.
330
- */
331
- closeItem(index?: number): void;
332
- /**
333
- * @hidden
334
- */
335
- isEdited(index: number): boolean;
336
- /**
337
- * @hidden
338
- */
339
- handlePageChange(event: PageChangeEvent): void;
340
- /**
341
- * @hidden
342
- */
343
- handleContentScroll: () => void;
344
- /**
345
- * @hidden
346
- */
347
- itemPosInSet(index: number): number;
348
- private scrollToContainerTop;
349
- private addNavigationListeners;
350
- private attachEditHandlers;
351
- private emitCRUDEvent;
352
- static ɵfac: i0.ɵɵFactoryDeclaration<ListViewComponent, never>;
353
- static ɵcmp: i0.ɵɵComponentDeclaration<ListViewComponent, "kendo-listview", ["kendoListView"], { "bordered": { "alias": "bordered"; "required": false; }; "data": { "alias": "data"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "containerStyle": { "alias": "containerStyle"; "required": false; }; "itemStyle": { "alias": "itemStyle"; "required": false; }; "containerClass": { "alias": "containerClass"; "required": false; }; "itemClass": { "alias": "itemClass"; "required": false; }; "containerLabel": { "alias": "containerLabel"; "required": false; }; "containerRole": { "alias": "containerRole"; "required": false; }; "listItemRole": { "alias": "listItemRole"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "height": { "alias": "height"; "required": false; }; }, { "scrollBottom": "scrollBottom"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; "edit": "edit"; "cancel": "cancel"; "save": "save"; "remove": "remove"; "add": "add"; }, ["itemTemplate", "headerTemplate", "footerTemplate", "loaderTemplate", "noDataTemplate", "editTemplate"], never, true, never>;
354
- }
@@ -1,43 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "./listview.component";
7
- import * as i2 from "./templates/item-template.directive";
8
- import * as i3 from "./templates/header-template.directive";
9
- import * as i4 from "./templates/footer-template.directive";
10
- import * as i5 from "./templates/loader-template.directive";
11
- import * as i6 from "./templates/no-data-template.directive";
12
- import * as i7 from "./data-binding/data-binding.directive";
13
- import * as i8 from "./editing/edit-template.directive";
14
- import * as i9 from "./editing/commands/edit-command.directive";
15
- import * as i10 from "./editing/commands/cancel-command.directive";
16
- import * as i11 from "./editing/commands/save-command.directive";
17
- import * as i12 from "./editing/commands/remove-command.directive";
18
- import * as i13 from "./editing/commands/add-command.directive";
19
- /**
20
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
21
- * definition for the ListView component.
22
- * @example
23
- *
24
- * ```ts
25
- * import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
26
- * import { BrowserModule } from '@angular/platform-browser';
27
- * import { NgModule } from '@angular/core';
28
- * import { ListViewModule } from '@progress/kendo-angular-listview';
29
- * import { AppComponent } from './app.component';
30
- *
31
- * @NgModule({
32
- * declarations: [AppComponent],
33
- * imports: [BrowserModule, BrowserAnimationsModule, ListViewModule],
34
- * bootstrap: [AppComponent]
35
- * })
36
- * export class AppModule {}
37
- *```
38
- */
39
- export declare class ListViewModule {
40
- static ɵfac: i0.ɵɵFactoryDeclaration<ListViewModule, never>;
41
- static ɵmod: i0.ɵɵNgModuleDeclaration<ListViewModule, never, [typeof i1.ListViewComponent, typeof i2.ItemTemplateDirective, typeof i3.HeaderTemplateDirective, typeof i4.FooterTemplateDirective, typeof i5.LoaderTemplateDirective, typeof i6.NoDataTemplateDirective, typeof i7.DataBindingDirective, typeof i8.EditTemplateDirective, typeof i9.EditCommandDirective, typeof i10.CancelCommandDirective, typeof i11.SaveCommandDirective, typeof i12.RemoveCommandDirective, typeof i13.AddCommandDirective], [typeof i1.ListViewComponent, typeof i2.ItemTemplateDirective, typeof i3.HeaderTemplateDirective, typeof i4.FooterTemplateDirective, typeof i5.LoaderTemplateDirective, typeof i6.NoDataTemplateDirective, typeof i7.DataBindingDirective, typeof i8.EditTemplateDirective, typeof i9.EditCommandDirective, typeof i10.CancelCommandDirective, typeof i11.SaveCommandDirective, typeof i12.RemoveCommandDirective, typeof i13.AddCommandDirective]>;
42
- static ɵinj: i0.ɵɵInjectorDeclaration<ListViewModule>;
43
- }
@@ -1,18 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Defines the data type that the ListView expects
7
- * ([see data binding examples](https://www.telerik.com/kendo-angular-ui/components/listview/paging)).
8
- */
9
- export interface ListViewDataResult {
10
- /**
11
- * Specifies the data that the ListView renders.
12
- */
13
- data: any[];
14
- /**
15
- * Specifies the total number of available records.
16
- */
17
- total: number;
18
- }
@@ -1,11 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { PageChangeEvent as PagerPageChangeEvent } from '@progress/kendo-angular-pager';
6
- /**
7
- * Defines the arguments of the [`pageChange`](https://www.telerik.com/kendo-angular-ui/components/listview/api/listviewcomponent#pagechange) event of the ListView
8
- * ([more details](https://www.telerik.com/kendo-angular-ui/components/listview/paging)).
9
- *
10
- */
11
- export type PageChangeEvent = PagerPageChangeEvent;
@@ -1,11 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { PageSizeChangeEvent as PagerPageSizeChangeEvent } from "@progress/kendo-angular-pager";
6
- /**
7
- * Defines the arguments of the [`pageSizeChange`](https://www.telerik.com/kendo-angular-ui/components/listview/api/listviewcomponent#pagesizechange) event of the ListView
8
- * ([more details](https://www.telerik.com/kendo-angular-ui/components/listview/paging)).
9
- */
10
- export declare class PageSizeChangeEvent extends PagerPageSizeChangeEvent {
11
- }
@@ -1,12 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { PageSizeItem as PagerPageSizeItem } from '@progress/kendo-angular-pager';
6
- /**
7
- * Defines the type that the pager [`pageSizeValues`](https://www.telerik.com/kendo-angular-ui/components/listview/api/pagersettings#pagesizevalues) property accepts.
8
- * Specifies the text and value of each page size item
9
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/paging#pager-options)).
10
- */
11
- export interface PageSizeItem extends PagerPageSizeItem {
12
- }
@@ -1,12 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Defines the type that the pager [`position`](https://www.telerik.com/kendo-angular-ui/components/listview/api/pagersettings#position) property accepts.
7
- * Specifies whether the pager appears above the content container, beneath it, or in both places
8
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/paging#pager-options)).
9
- *
10
- * @default 'bottom'
11
- */
12
- export type PagerPosition = 'bottom' | 'top' | 'both';
@@ -1,39 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { PagerType } from './pager-type';
6
- import { PageSizeItem } from './page-size-item';
7
- import { PagerPosition } from './pager-position';
8
- /**
9
- * Defines the pager settings of the ListView
10
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/paging#pager-options)).
11
- */
12
- export interface PagerSettings {
13
- /**
14
- * Specifies the position of the pager.
15
- */
16
- position?: PagerPosition;
17
- /**
18
- * Specifies the maximum count of numeric buttons before the buttons collapse.
19
- */
20
- buttonCount?: number;
21
- /**
22
- * Toggles the information about the current page and the total number of records.
23
- */
24
- info?: boolean;
25
- /**
26
- * Toggles the Previous and Next buttons.
27
- */
28
- previousNext?: boolean;
29
- /**
30
- * Specifies the type of the pager.
31
- */
32
- type?: PagerType;
33
- /**
34
- * Shows a dropdown for selecting the page size. When you set this to `true`, the dropdown contains the default list of options: 5, 10, 20.
35
- * To customize the list of options, set `pageSizeValues` to an array of the desired values.
36
- * The array can contain numbers and `PageSizeItem` objects.
37
- */
38
- pageSizeValues?: boolean | number[] | PageSizeItem[];
39
- }
@@ -1,12 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { PagerType as PagerTypeSource } from '@progress/kendo-angular-pager';
6
- /**
7
- * Defines the type that the pager [`type`](https://www.telerik.com/kendo-angular-ui/components/listview/api/pagersettings#type) property accepts.
8
- * Specifies whether the pager renders a set of buttons for page control or a single HTML `input` element
9
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/listview/paging#pager-options)).
10
- *
11
- */
12
- export declare type PagerType = Partial<PagerTypeSource>;
@@ -1,14 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ListViewComponent } from "../listview.component";
6
- /**
7
- * Defines the arguments of the [`scrollBottom`](https://www.telerik.com/kendo-angular-ui/components/listview/api/listviewcomponent#scrollbottom) event of the ListView.
8
- */
9
- export interface ScrollBottomEvent {
10
- /**
11
- * Specifies the instance of the `ListViewComponent`.
12
- */
13
- sender: ListViewComponent;
14
- }
@@ -1,29 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef, Renderer2, OnChanges } from '@angular/core';
6
- import { NavigationService } from './navigation.service';
7
- import * as i0 from "@angular/core";
8
- /**
9
- * @hidden
10
- */
11
- export declare class ListViewNavigableItemDirective implements OnChanges {
12
- private hostElement;
13
- private renderer;
14
- private navigationService;
15
- /**
16
- * The current item index. Used to track which navigation changes apply to this item.
17
- */
18
- index: number;
19
- private navigationSubscription;
20
- constructor(hostElement: ElementRef<HTMLElement>, renderer: Renderer2, navigationService: NavigationService);
21
- ngOnChanges(): void;
22
- ngOnInit(): void;
23
- ngOnDestroy(): void;
24
- private updateNavigationState;
25
- private updateFocusedState;
26
- private updateTabIndex;
27
- static ɵfac: i0.ɵɵFactoryDeclaration<ListViewNavigableItemDirective, never>;
28
- static ɵdir: i0.ɵɵDirectiveDeclaration<ListViewNavigableItemDirective, "[kendoListViewNavigableItem]", never, { "index": { "alias": "index"; "required": false; }; }, {}, never, never, true, never>;
29
- }
@@ -1,55 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { Subject } from 'rxjs';
6
- import * as i0 from "@angular/core";
7
- /**
8
- * @hidden
9
- *
10
- * Provided per ListView instance. Keeps the availability, active index and focused state of the current ListView.
11
- * Emits `changes` when any of the aforementioned states changes.
12
- */
13
- export declare class NavigationService {
14
- /**
15
- * Emits every time a change in active index/focus/blur/navigation availability occurs.
16
- */
17
- changes: Subject<any>;
18
- /**
19
- * Sets or gets if the navigation is enabled.
20
- * When no activeIndex is present, the navigation is inferred as disabled.
21
- * Toggling the service availability clears the current active index or activates the first one.
22
- */
23
- get isEnabled(): boolean;
24
- set isEnabled(enabled: boolean);
25
- /**
26
- * Specifies if a ListView item currently holds focus.
27
- */
28
- isFocused: boolean;
29
- /**
30
- * Keeps track of the index of the items that should be the current focus target (tabindex="0").
31
- * When set to `null`/`undefined`, the navigation is disabled and the items should not render a tabindex.
32
- */
33
- activeIndex: number;
34
- /**
35
- * Shows if the checked index should be the current available focus target (tabindex="0").
36
- */
37
- isActive(index: number): boolean;
38
- handleKeyDown(event: KeyboardEvent, totalItemsCount: number): void;
39
- handleFocusIn(event: FocusEvent): void;
40
- handleFocusOut(event: FocusEvent): void;
41
- /**
42
- * Sets the `activeIndex` and triggers changes without focusing the corresponding ListView item.
43
- */
44
- setActiveIndex(index: number): void;
45
- /**
46
- * Focuses item at the targeted index. If no index is passed, the current `activeIndex` is used.
47
- * The passed target index is normalized to fit the min/max available indices bounds.
48
- */
49
- focusIndex(index: any, totalItemsCount: number): void;
50
- private navigateTo;
51
- private navigateToPrevious;
52
- private navigateToNext;
53
- static ɵfac: i0.ɵɵFactoryDeclaration<NavigationService, never>;
54
- static ɵprov: i0.ɵɵInjectableDeclaration<NavigationService>;
55
- }
@@ -1,9 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { type PackageMetadata } from '@progress/kendo-licensing';
6
- /**
7
- * @hidden
8
- */
9
- export declare const packageMetadata: PackageMetadata;