@progress/kendo-angular-treelist 19.2.0-develop.13 → 19.2.0-develop.2
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.
- package/README.md +3 -6
- package/column-menu/column-menu-item.directive.d.ts +1 -1
- package/columns/column-base.d.ts +0 -5
- package/directives.d.ts +3 -5
- package/esm2022/column-menu/column-menu-item.directive.mjs +1 -1
- package/esm2022/columns/column-base.mjs +0 -9
- package/esm2022/directives.mjs +2 -6
- package/esm2022/index.mjs +0 -2
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/rendering/header/header.component.mjs +3 -3
- package/esm2022/rendering/list.component.mjs +27 -27
- package/esm2022/treelist.component.mjs +4 -12
- package/esm2022/treelist.module.mjs +13 -15
- package/fesm2022/progress-kendo-angular-treelist.mjs +56 -75
- package/index.d.ts +0 -2
- package/package.json +18 -18
- package/rendering/list.component.d.ts +1 -1
- package/schematics/ngAdd/index.js +3 -3
- package/treelist.component.d.ts +0 -2
- package/treelist.module.d.ts +13 -15
package/README.md
CHANGED
@@ -4,12 +4,9 @@
|
|
4
4
|
|
5
5
|
## Kendo UI for Angular TreeList
|
6
6
|
|
7
|
-
> * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui
|
8
|
-
> *
|
9
|
-
> *
|
10
|
-
> * Trial users can register for a free license key file. Without it, your trial may be interrupted by visual indicators or functionality limitations.
|
11
|
-
> * Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular team!
|
12
|
-
> * Learn more: https://www.telerik.com/kendo-angular-ui/components/licensing
|
7
|
+
> * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui)—a commercial library designed and built for developing business applications with Angular. Every UI component in the Kendo UI for Angular suite has been built from the ground-up specifically for Angular.
|
8
|
+
> * You must [install a license key](https://www.telerik.com/kendo-angular-ui/my-license) when adding the package to your project. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
|
9
|
+
> * The 30-day free trial gives you access to all the Kendo UI for Angular components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular dev team!
|
13
10
|
>
|
14
11
|
> [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui) and speed up your development process!
|
15
12
|
|
@@ -6,7 +6,7 @@ import { ElementRef, NgZone, Renderer2 } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
/**
|
8
8
|
* Provides keyboard navigation support for TreeList column menu items.
|
9
|
-
* Use this directive to manage focus and tab order for custom column menu items
|
9
|
+
* Use this directive to manage focus and tab order for custom column menu items. [See example](slug:columnmenu_treelist#customizing-the-content).
|
10
10
|
*
|
11
11
|
* @example
|
12
12
|
* ```html
|
package/columns/column-base.d.ts
CHANGED
@@ -53,10 +53,6 @@ export declare class ColumnBase implements OnChanges {
|
|
53
53
|
* @hidden
|
54
54
|
*/
|
55
55
|
isSpanColumn: boolean;
|
56
|
-
/**
|
57
|
-
* @hidden
|
58
|
-
*/
|
59
|
-
get id(): string;
|
60
56
|
/**
|
61
57
|
* Indicates whether the column is resizable.
|
62
58
|
* @default true
|
@@ -217,7 +213,6 @@ export declare class ColumnBase implements OnChanges {
|
|
217
213
|
* @hidden
|
218
214
|
*/
|
219
215
|
get isEditable(): boolean;
|
220
|
-
private _id;
|
221
216
|
/**
|
222
217
|
* @hidden
|
223
218
|
*/
|
package/directives.d.ts
CHANGED
@@ -71,8 +71,6 @@ import { ColumnMenuItemContentTemplateDirective } from './column-menu/column-men
|
|
71
71
|
import { ColumnMenuSortComponent } from './column-menu/column-menu-sort.component';
|
72
72
|
import { ColumnMenuLockComponent } from './column-menu/column-menu-lock.component';
|
73
73
|
import { ColumnMenuChooserComponent } from './column-menu/column-menu-chooser.component';
|
74
|
-
import { ColumnMenuAutoSizeAllColumnsComponent } from "./column-menu/column-menu-autosize-all.component";
|
75
|
-
import { ColumnMenuAutoSizeColumnComponent } from "./column-menu/column-menu-autosize.component";
|
76
74
|
import { ColumnMenuTemplateDirective } from './column-menu/column-menu-template.directive';
|
77
75
|
import { ColumnMenuComponent } from './column-menu/column-menu.component';
|
78
76
|
import { LogicalCellDirective } from './navigation/logical-cell.directive';
|
@@ -129,7 +127,7 @@ export declare const HEADER_EXPORTS: readonly [typeof HeaderComponent, typeof He
|
|
129
127
|
export declare const SHARED_FILTER_EXPORTS: readonly [typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterInputDirective, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof SpanColumnComponent, typeof LoadingComponent, typeof FilterCellOperatorsComponent, typeof CheckboxColumnComponent, typeof RowReorderColumnComponent];
|
130
128
|
/**
|
131
129
|
* @hidden
|
132
|
-
* Utility array that contains the former
|
130
|
+
* Utility array that contains the former ColumnMenu module exports.
|
133
131
|
*/
|
134
132
|
export declare const ROW_FILTER_EXPORTS: readonly [typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterInputDirective, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof SpanColumnComponent, typeof LoadingComponent, typeof FilterCellOperatorsComponent, typeof CheckboxColumnComponent, typeof RowReorderColumnComponent];
|
135
133
|
/**
|
@@ -141,7 +139,7 @@ export declare const FILTER_MENU_EXPORTS: readonly [typeof FilterMenuComponent,
|
|
141
139
|
* @hidden
|
142
140
|
* Utility array that contains the former ColumnMenu module exports.
|
143
141
|
*/
|
144
|
-
export declare const COLUMN_MENU_EXPORTS: readonly [typeof ColumnChooserComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuItemDirective
|
142
|
+
export declare const COLUMN_MENU_EXPORTS: readonly [typeof ColumnChooserComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuItemDirective];
|
145
143
|
/**
|
146
144
|
* @hidden
|
147
145
|
* Utility array that contains the Excel module exports.
|
@@ -156,4 +154,4 @@ export declare const KENDO_TREELIST_PDF_EXPORT: readonly [typeof PDFComponent, t
|
|
156
154
|
* Utility array that contains all `@progress/kendo-angular-treelist`-related components and directives.
|
157
155
|
* Use it to import all TreeList components and directives into a standalone Angular application.
|
158
156
|
*/
|
159
|
-
export declare const KENDO_TREELIST: readonly [typeof TreeListComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof TreeListSpacerComponent, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof HierarchyBindingDirective, typeof FlatBindingDirective, typeof ExpandableDirective, typeof SelectableDirective, typeof TreeListToolbarFocusableDirective, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof SpanColumnComponent, typeof LoadingComponent, typeof FilterCellOperatorsComponent, typeof CheckboxColumnComponent, typeof RowReorderColumnComponent, typeof CommandColumnComponent, typeof CellTemplateDirective, typeof CellComponent, typeof NoRecordsTemplateDirective, typeof EditTemplateDirective, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof FooterTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterInputDirective, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof SpanColumnComponent, typeof LoadingComponent, typeof FilterCellOperatorsComponent, typeof CheckboxColumnComponent, typeof RowReorderColumnComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuItemDirective, typeof
|
157
|
+
export declare const KENDO_TREELIST: readonly [typeof TreeListComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof TreeListSpacerComponent, typeof CustomMessagesComponent, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof HierarchyBindingDirective, typeof FlatBindingDirective, typeof ExpandableDirective, typeof SelectableDirective, typeof TreeListToolbarFocusableDirective, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof SpanColumnComponent, typeof LoadingComponent, typeof FilterCellOperatorsComponent, typeof CheckboxColumnComponent, typeof RowReorderColumnComponent, typeof CommandColumnComponent, typeof CellTemplateDirective, typeof CellComponent, typeof NoRecordsTemplateDirective, typeof EditTemplateDirective, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof FooterTemplateDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterInputDirective, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof SpanColumnComponent, typeof LoadingComponent, typeof FilterCellOperatorsComponent, typeof CheckboxColumnComponent, typeof RowReorderColumnComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuItemDirective, typeof ExcelComponent, typeof ExcelCommandDirective, typeof ExcelCommandToolbarDirective, typeof ExcelColumnComponent, typeof ExcelColumnGroupComponent, typeof ExcelFooterTemplateDirective, typeof ExcelGroupFooterTemplateDirective, typeof ExcelGroupHeaderColumnTemplateDirective, typeof ExcelGroupHeaderTemplateDirective, typeof PDFComponent, typeof PDFMarginComponent, typeof PDFCommandDirective, typeof PDFTemplateDirective, typeof PDFCommandToolbarDirective];
|
@@ -10,7 +10,7 @@ import { ColumnMenuFilterComponent } from './column-menu-filter.component';
|
|
10
10
|
import * as i0 from "@angular/core";
|
11
11
|
/**
|
12
12
|
* Provides keyboard navigation support for TreeList column menu items.
|
13
|
-
* Use this directive to manage focus and tab order for custom column menu items
|
13
|
+
* Use this directive to manage focus and tab order for custom column menu items. [See example](slug:columnmenu_treelist#customizing-the-content).
|
14
14
|
*
|
15
15
|
* @example
|
16
16
|
* ```html
|
@@ -9,7 +9,6 @@ import { FooterTemplateDirective } from '../rendering/footer-template.directive'
|
|
9
9
|
import { HeaderTemplateDirective } from '../rendering/header/header-template.directive';
|
10
10
|
import * as i0 from "@angular/core";
|
11
11
|
import * as i1 from "../common/option-changes.service";
|
12
|
-
let columnId = 0;
|
13
12
|
/**
|
14
13
|
* @hidden
|
15
14
|
*/
|
@@ -60,12 +59,6 @@ export class ColumnBase {
|
|
60
59
|
* @hidden
|
61
60
|
*/
|
62
61
|
isSpanColumn = false;
|
63
|
-
/**
|
64
|
-
* @hidden
|
65
|
-
*/
|
66
|
-
get id() {
|
67
|
-
return this._id;
|
68
|
-
}
|
69
62
|
/**
|
70
63
|
* Indicates whether the column is resizable.
|
71
64
|
* @default true
|
@@ -245,7 +238,6 @@ export class ColumnBase {
|
|
245
238
|
get isEditable() {
|
246
239
|
return false;
|
247
240
|
}
|
248
|
-
_id;
|
249
241
|
/**
|
250
242
|
* @hidden
|
251
243
|
*/
|
@@ -255,7 +247,6 @@ export class ColumnBase {
|
|
255
247
|
if (parent && !isColumnContainer(parent)) {
|
256
248
|
throw new Error('Columns can be nested only inside ColumnGroupComponent');
|
257
249
|
}
|
258
|
-
this._id = `k-grid-column-${columnId++}`;
|
259
250
|
}
|
260
251
|
ngOnChanges(_changes) {
|
261
252
|
if (this.optionChanges) {
|
package/esm2022/directives.mjs
CHANGED
@@ -71,8 +71,6 @@ import { ColumnMenuItemContentTemplateDirective } from './column-menu/column-men
|
|
71
71
|
import { ColumnMenuSortComponent } from './column-menu/column-menu-sort.component';
|
72
72
|
import { ColumnMenuLockComponent } from './column-menu/column-menu-lock.component';
|
73
73
|
import { ColumnMenuChooserComponent } from './column-menu/column-menu-chooser.component';
|
74
|
-
import { ColumnMenuAutoSizeAllColumnsComponent } from "./column-menu/column-menu-autosize-all.component";
|
75
|
-
import { ColumnMenuAutoSizeColumnComponent } from "./column-menu/column-menu-autosize.component";
|
76
74
|
import { ColumnMenuTemplateDirective } from './column-menu/column-menu-template.directive';
|
77
75
|
import { ColumnMenuComponent } from './column-menu/column-menu.component';
|
78
76
|
import { LogicalCellDirective } from './navigation/logical-cell.directive';
|
@@ -184,7 +182,7 @@ export const SHARED_FILTER_EXPORTS = [
|
|
184
182
|
];
|
185
183
|
/**
|
186
184
|
* @hidden
|
187
|
-
* Utility array that contains the former
|
185
|
+
* Utility array that contains the former ColumnMenu module exports.
|
188
186
|
*/
|
189
187
|
export const ROW_FILTER_EXPORTS = [
|
190
188
|
FilterRowComponent,
|
@@ -232,9 +230,7 @@ export const COLUMN_MENU_EXPORTS = [
|
|
232
230
|
ColumnMenuComponent,
|
233
231
|
ColumnMenuLockComponent,
|
234
232
|
ColumnMenuTemplateDirective,
|
235
|
-
ColumnMenuItemDirective
|
236
|
-
ColumnMenuAutoSizeColumnComponent,
|
237
|
-
ColumnMenuAutoSizeAllColumnsComponent
|
233
|
+
ColumnMenuItemDirective
|
238
234
|
];
|
239
235
|
/**
|
240
236
|
* @hidden
|
package/esm2022/index.mjs
CHANGED
@@ -115,8 +115,6 @@ export { ColumnMenuChooserComponent } from './column-menu/column-menu-chooser.co
|
|
115
115
|
export { ColumnMenuFilterComponent } from './column-menu/column-menu-filter.component';
|
116
116
|
export { ColumnMenuLockComponent } from './column-menu/column-menu-lock.component';
|
117
117
|
export { ColumnMenuSortComponent } from './column-menu/column-menu-sort.component';
|
118
|
-
export { ColumnMenuAutoSizeColumnComponent } from './column-menu/column-menu-autosize.component';
|
119
|
-
export { ColumnMenuAutoSizeAllColumnsComponent } from './column-menu/column-menu-autosize-all.component';
|
120
118
|
export { ColumnMenuItemContentTemplateDirective } from './column-menu/column-menu-item-content-template.directive';
|
121
119
|
export { ColumnMenuItemComponent } from './column-menu/column-menu-item.component';
|
122
120
|
export { FilterMenuContainerComponent } from './filtering/menu/filter-menu-container.component';
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
13
|
-
publishDate:
|
14
|
-
version: '19.2.0-develop.
|
13
|
+
publishDate: 1750841725,
|
14
|
+
version: '19.2.0-develop.2',
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
16
16
|
};
|
@@ -249,9 +249,9 @@ export class HeaderComponent {
|
|
249
249
|
const reorderDirectionOffset = reorderDirection * rtlMultiplier;
|
250
250
|
const newIndex = column.leafIndex + reorderDirectionOffset;
|
251
251
|
const normalizedNewIndex = Math.min(Math.max(0, newIndex), columnsCount - 1);
|
252
|
-
const
|
253
|
-
|
254
|
-
|
252
|
+
const gridInstance = this.contextService.treelist;
|
253
|
+
gridInstance.reorderColumn(column, normalizedNewIndex, { before: reorderDirectionOffset < 0 });
|
254
|
+
gridInstance.columnReorder.emit(new ColumnReorderEvent({
|
255
255
|
column,
|
256
256
|
newIndex: normalizedNewIndex,
|
257
257
|
oldIndex: column.leafIndex
|
@@ -298,33 +298,6 @@ export class ListComponent {
|
|
298
298
|
args.preventDefault();
|
299
299
|
}
|
300
300
|
}
|
301
|
-
updateViewportColumns(range) {
|
302
|
-
const columns = this.columns.nonLockedLeafColumns.toArray();
|
303
|
-
// eslint-disable-next-line prefer-const
|
304
|
-
let { startIdx, endIdx, offset } = range || this.calculateViewportColumns();
|
305
|
-
const start = Math.max(0, startIdx - bufferSize);
|
306
|
-
const end = Math.min(endIdx + bufferSize, columns.length - 1);
|
307
|
-
if (start < startIdx) {
|
308
|
-
for (let idx = startIdx - 1; idx >= start; idx--) {
|
309
|
-
offset -= columns[idx].width;
|
310
|
-
}
|
311
|
-
}
|
312
|
-
const currentColumns = columns.slice(start, end + 1);
|
313
|
-
this.viewportColumnsWidth = currentColumns.reduce((total, column) => total + column.width, 0);
|
314
|
-
if (start > 0) {
|
315
|
-
const offsetColumn = new ColumnBase();
|
316
|
-
offsetColumn.width = offset;
|
317
|
-
currentColumns.unshift(offsetColumn);
|
318
|
-
}
|
319
|
-
this.viewportColumns = new QueryList();
|
320
|
-
this.viewportColumns.reset(currentColumns);
|
321
|
-
this.columnsStartIdx = start;
|
322
|
-
this.columnsEndIdx = end;
|
323
|
-
this.columnInfo.columnRangeChange.emit({ start, end, offset });
|
324
|
-
if (!range) {
|
325
|
-
this.updateColumnViewport(startIdx, endIdx);
|
326
|
-
}
|
327
|
-
}
|
328
301
|
attachContainerScroll() {
|
329
302
|
if (isUniversal()) {
|
330
303
|
return;
|
@@ -485,6 +458,33 @@ export class ListComponent {
|
|
485
458
|
})
|
486
459
|
.forEach(setHeight(this.renderer));
|
487
460
|
}
|
461
|
+
updateViewportColumns(range) {
|
462
|
+
const columns = this.columns.nonLockedLeafColumns.toArray();
|
463
|
+
// eslint-disable-next-line prefer-const
|
464
|
+
let { startIdx, endIdx, offset } = range || this.calculateViewportColumns();
|
465
|
+
const start = Math.max(0, startIdx - bufferSize);
|
466
|
+
const end = Math.min(endIdx + bufferSize, columns.length - 1);
|
467
|
+
if (start < startIdx) {
|
468
|
+
for (let idx = startIdx - 1; idx >= start; idx--) {
|
469
|
+
offset -= columns[idx].width;
|
470
|
+
}
|
471
|
+
}
|
472
|
+
const currentColumns = columns.slice(start, end + 1);
|
473
|
+
this.viewportColumnsWidth = currentColumns.reduce((total, column) => total + column.width, 0);
|
474
|
+
if (start > 0) {
|
475
|
+
const offsetColumn = new ColumnBase();
|
476
|
+
offsetColumn.width = offset;
|
477
|
+
currentColumns.unshift(offsetColumn);
|
478
|
+
}
|
479
|
+
this.viewportColumns = new QueryList();
|
480
|
+
this.viewportColumns.reset(currentColumns);
|
481
|
+
this.columnsStartIdx = start;
|
482
|
+
this.columnsEndIdx = end;
|
483
|
+
this.columnInfo.columnRangeChange.emit({ start, end, offset });
|
484
|
+
if (!range) {
|
485
|
+
this.updateColumnViewport(startIdx, endIdx);
|
486
|
+
}
|
487
|
+
}
|
488
488
|
handleColumnScroll() {
|
489
489
|
const container = this.container.nativeElement;
|
490
490
|
const scrollLeft = container.scrollLeft;
|
@@ -655,7 +655,6 @@ export class TreeListComponent {
|
|
655
655
|
ariaRoot;
|
656
656
|
dragTargetContainer;
|
657
657
|
dropTargetContainer;
|
658
|
-
listComponent;
|
659
658
|
get scrollbarWidth() {
|
660
659
|
return this.supportService.scrollbarWidth;
|
661
660
|
}
|
@@ -1455,9 +1454,6 @@ export class TreeListComponent {
|
|
1455
1454
|
}
|
1456
1455
|
this.columnOrderChange.emit(args);
|
1457
1456
|
this.columnsContainer.refresh();
|
1458
|
-
if (this.virtualColumns) {
|
1459
|
-
this.listComponent.updateViewportColumns();
|
1460
|
-
}
|
1461
1457
|
this.changeDetectorRef.markForCheck();
|
1462
1458
|
});
|
1463
1459
|
}
|
@@ -1786,8 +1782,8 @@ export class TreeListComponent {
|
|
1786
1782
|
}
|
1787
1783
|
onColumnRangeChange(range) {
|
1788
1784
|
const viewportColumns = this.viewportColumns = [];
|
1789
|
-
const
|
1790
|
-
|
1785
|
+
const leafViewportColumns = this.columnsContainer
|
1786
|
+
.nonLockedLeafColumns.toArray().slice(range.start, range.end + 1);
|
1791
1787
|
for (let idx = 0; idx < leafViewportColumns.length; idx++) {
|
1792
1788
|
let column = leafViewportColumns[idx];
|
1793
1789
|
while (column.parent) {
|
@@ -1798,8 +1794,7 @@ export class TreeListComponent {
|
|
1798
1794
|
column = toAdd.shift();
|
1799
1795
|
viewportColumns.push(column);
|
1800
1796
|
if (column.isColumnGroup) {
|
1801
|
-
|
1802
|
-
toAdd.unshift(...children);
|
1797
|
+
toAdd.unshift(...column.childrenArray);
|
1803
1798
|
}
|
1804
1799
|
}
|
1805
1800
|
const lastFromGroup = viewportColumns[viewportColumns.length - 1];
|
@@ -1898,7 +1893,7 @@ export class TreeListComponent {
|
|
1898
1893
|
},
|
1899
1894
|
ContextService,
|
1900
1895
|
RowReorderService
|
1901
|
-
], 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: "
|
1896
|
+
], 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: `
|
1902
1897
|
<ng-container kendoTreeListLocalizedMessages
|
1903
1898
|
i18n-noRecords="kendo.treelist.noRecords|The label visible in the TreeList when there are no records"
|
1904
1899
|
noRecords="No records available."
|
@@ -3052,9 +3047,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
3052
3047
|
}], dropTargetContainer: [{
|
3053
3048
|
type: ViewChild,
|
3054
3049
|
args: [DropTargetContainerDirective]
|
3055
|
-
}], listComponent: [{
|
3056
|
-
type: ViewChild,
|
3057
|
-
args: [ListComponent]
|
3058
3050
|
}], fetchChildren: [{
|
3059
3051
|
type: Input
|
3060
3052
|
}], hasChildren: [{
|
@@ -107,19 +107,17 @@ import * as i91 from "./column-menu/column-menu.component";
|
|
107
107
|
import * as i92 from "./column-menu/column-menu-lock.component";
|
108
108
|
import * as i93 from "./column-menu/column-menu-template.directive";
|
109
109
|
import * as i94 from "./column-menu/column-menu-item.directive";
|
110
|
-
import * as i95 from "./
|
111
|
-
import * as i96 from "./
|
112
|
-
import * as i97 from "./excel/excel.
|
113
|
-
import * as i98 from "
|
114
|
-
import * as i99 from "./
|
115
|
-
import * as i100 from "
|
116
|
-
import * as i101 from "./pdf/pdf.
|
117
|
-
import * as i102 from "./pdf/pdf-
|
118
|
-
import * as i103 from "./pdf/pdf-command.directive";
|
119
|
-
import * as i104 from "
|
120
|
-
import * as i105 from "
|
121
|
-
import * as i106 from "@progress/kendo-angular-toolbar";
|
122
|
-
import * as i107 from "@progress/kendo-angular-pager";
|
110
|
+
import * as i95 from "./excel/excel.component";
|
111
|
+
import * as i96 from "./excel/excel-command.directive";
|
112
|
+
import * as i97 from "./excel/excel-command-tool.directive";
|
113
|
+
import * as i98 from "@progress/kendo-angular-excel-export";
|
114
|
+
import * as i99 from "./pdf/pdf.component";
|
115
|
+
import * as i100 from "./pdf/pdf-margin.component";
|
116
|
+
import * as i101 from "./pdf/pdf-command.directive";
|
117
|
+
import * as i102 from "./pdf/pdf-template.directive";
|
118
|
+
import * as i103 from "./pdf/pdf-command-tool.directive";
|
119
|
+
import * as i104 from "@progress/kendo-angular-toolbar";
|
120
|
+
import * as i105 from "@progress/kendo-angular-pager";
|
123
121
|
// IMPORTANT: NgModule export kept for backwards compatibility
|
124
122
|
/**
|
125
123
|
* Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the TreeList component.
|
@@ -142,7 +140,7 @@ import * as i107 from "@progress/kendo-angular-pager";
|
|
142
140
|
*/
|
143
141
|
export class TreeListModule {
|
144
142
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
145
|
-
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.FilterRowComponent, i44.FilterCellComponent, i45.FilterCellTemplateDirective, i46.StringFilterCellComponent, i47.NumericFilterCellComponent, i48.AutoCompleteFilterCellComponent, i49.BooleanFilterCellComponent, i50.FilterCellHostDirective, i51.FilterCellWrapperComponent, i52.DateFilterCellComponent, i25.FilterCellOperatorsComponent, i53.ContainsFilterOperatorComponent, i54.DoesNotContainFilterOperatorComponent, i55.EndsWithFilterOperatorComponent, i56.EqualFilterOperatorComponent, i57.IsEmptyFilterOperatorComponent, i58.IsNotEmptyFilterOperatorComponent, i59.IsNotNullFilterOperatorComponent, i60.IsNullFilterOperatorComponent, i61.NotEqualFilterOperatorComponent, i62.StartsWithFilterOperatorComponent, i63.GreaterFilterOperatorComponent, i64.GreaterOrEqualToFilterOperatorComponent, i65.LessFilterOperatorComponent, i66.LessOrEqualToFilterOperatorComponent, i67.AfterFilterOperatorComponent, i68.AfterEqFilterOperatorComponent, i69.BeforeEqFilterOperatorComponent, i70.BeforeFilterOperatorComponent, i71.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, i72.FilterMenuComponent, i73.FilterMenuContainerComponent, i74.FilterMenuInputWrapperComponent, i75.StringFilterMenuInputComponent, i76.StringFilterMenuComponent, i77.FilterMenuTemplateDirective, i78.NumericFilterMenuComponent, i79.NumericFilterMenuInputComponent, i80.DateFilterMenuInputComponent, i81.DateFilterMenuComponent, i82.FilterMenuHostDirective, i83.BooleanFilterMenuComponent, i84.BooleanFilterRadioButtonDirective, i85.ColumnChooserComponent, i86.ColumnMenuChooserComponent, i87.ColumnMenuFilterComponent, i88.ColumnMenuItemComponent, i89.ColumnMenuItemContentTemplateDirective, i90.ColumnMenuSortComponent, i91.ColumnMenuComponent, i92.ColumnMenuLockComponent, i93.ColumnMenuTemplateDirective, i94.ColumnMenuItemDirective, i95.
|
143
|
+
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.FilterRowComponent, i44.FilterCellComponent, i45.FilterCellTemplateDirective, i46.StringFilterCellComponent, i47.NumericFilterCellComponent, i48.AutoCompleteFilterCellComponent, i49.BooleanFilterCellComponent, i50.FilterCellHostDirective, i51.FilterCellWrapperComponent, i52.DateFilterCellComponent, i25.FilterCellOperatorsComponent, i53.ContainsFilterOperatorComponent, i54.DoesNotContainFilterOperatorComponent, i55.EndsWithFilterOperatorComponent, i56.EqualFilterOperatorComponent, i57.IsEmptyFilterOperatorComponent, i58.IsNotEmptyFilterOperatorComponent, i59.IsNotNullFilterOperatorComponent, i60.IsNullFilterOperatorComponent, i61.NotEqualFilterOperatorComponent, i62.StartsWithFilterOperatorComponent, i63.GreaterFilterOperatorComponent, i64.GreaterOrEqualToFilterOperatorComponent, i65.LessFilterOperatorComponent, i66.LessOrEqualToFilterOperatorComponent, i67.AfterFilterOperatorComponent, i68.AfterEqFilterOperatorComponent, i69.BeforeEqFilterOperatorComponent, i70.BeforeFilterOperatorComponent, i71.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, i72.FilterMenuComponent, i73.FilterMenuContainerComponent, i74.FilterMenuInputWrapperComponent, i75.StringFilterMenuInputComponent, i76.StringFilterMenuComponent, i77.FilterMenuTemplateDirective, i78.NumericFilterMenuComponent, i79.NumericFilterMenuInputComponent, i80.DateFilterMenuInputComponent, i81.DateFilterMenuComponent, i82.FilterMenuHostDirective, i83.BooleanFilterMenuComponent, i84.BooleanFilterRadioButtonDirective, i85.ColumnChooserComponent, i86.ColumnMenuChooserComponent, i87.ColumnMenuFilterComponent, i88.ColumnMenuItemComponent, i89.ColumnMenuItemContentTemplateDirective, i90.ColumnMenuSortComponent, i91.ColumnMenuComponent, i92.ColumnMenuLockComponent, i93.ColumnMenuTemplateDirective, i94.ColumnMenuItemDirective, i95.ExcelComponent, i96.ExcelCommandDirective, i97.ExcelCommandToolbarDirective, i98.ColumnComponent, i98.ColumnGroupComponent, i98.FooterTemplateDirective, i98.GroupFooterTemplateDirective, i98.GroupHeaderColumnTemplateDirective, i98.GroupHeaderTemplateDirective, i99.PDFComponent, i100.PDFMarginComponent, i101.PDFCommandDirective, i102.PDFTemplateDirective, i103.PDFCommandToolbarDirective, i104.ToolBarComponent, i104.ToolbarCustomMessagesComponent, i104.ToolBarButtonComponent, i104.ToolBarButtonGroupComponent, i104.ToolBarDropDownButtonComponent, i104.ToolBarSeparatorComponent, i104.ToolBarSpacerComponent, i104.ToolBarSplitButtonComponent, i104.ToolBarToolComponent, i105.CustomMessagesComponent, i105.PagerFocusableDirective, i105.PagerInfoComponent, i105.PagerInputComponent, i105.PagerNextButtonsComponent, i105.PagerNumericButtonsComponent, i105.PagerPageSizesComponent, i105.PagerPrevButtonsComponent, i105.PagerTemplateDirective, i105.PagerComponent, i105.PagerSpacerComponent, 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.FilterRowComponent, i44.FilterCellComponent, i45.FilterCellTemplateDirective, i46.StringFilterCellComponent, i47.NumericFilterCellComponent, i48.AutoCompleteFilterCellComponent, i49.BooleanFilterCellComponent, i50.FilterCellHostDirective, i51.FilterCellWrapperComponent, i52.DateFilterCellComponent, i25.FilterCellOperatorsComponent, i53.ContainsFilterOperatorComponent, i54.DoesNotContainFilterOperatorComponent, i55.EndsWithFilterOperatorComponent, i56.EqualFilterOperatorComponent, i57.IsEmptyFilterOperatorComponent, i58.IsNotEmptyFilterOperatorComponent, i59.IsNotNullFilterOperatorComponent, i60.IsNullFilterOperatorComponent, i61.NotEqualFilterOperatorComponent, i62.StartsWithFilterOperatorComponent, i63.GreaterFilterOperatorComponent, i64.GreaterOrEqualToFilterOperatorComponent, i65.LessFilterOperatorComponent, i66.LessOrEqualToFilterOperatorComponent, i67.AfterFilterOperatorComponent, i68.AfterEqFilterOperatorComponent, i69.BeforeEqFilterOperatorComponent, i70.BeforeFilterOperatorComponent, i71.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, i72.FilterMenuComponent, i73.FilterMenuContainerComponent, i74.FilterMenuInputWrapperComponent, i75.StringFilterMenuInputComponent, i76.StringFilterMenuComponent, i77.FilterMenuTemplateDirective, i78.NumericFilterMenuComponent, i79.NumericFilterMenuInputComponent, i80.DateFilterMenuInputComponent, i81.DateFilterMenuComponent, i82.FilterMenuHostDirective, i83.BooleanFilterMenuComponent, i84.BooleanFilterRadioButtonDirective, i85.ColumnChooserComponent, i86.ColumnMenuChooserComponent, i87.ColumnMenuFilterComponent, i88.ColumnMenuItemComponent, i89.ColumnMenuItemContentTemplateDirective, i90.ColumnMenuSortComponent, i91.ColumnMenuComponent, i92.ColumnMenuLockComponent, i93.ColumnMenuTemplateDirective, i94.ColumnMenuItemDirective, i95.ExcelComponent, i96.ExcelCommandDirective, i97.ExcelCommandToolbarDirective, i98.ColumnComponent, i98.ColumnGroupComponent, i98.FooterTemplateDirective, i98.GroupFooterTemplateDirective, i98.GroupHeaderColumnTemplateDirective, i98.GroupHeaderTemplateDirective, i99.PDFComponent, i100.PDFMarginComponent, i101.PDFCommandDirective, i102.PDFTemplateDirective, i103.PDFCommandToolbarDirective, i104.ToolBarComponent, i104.ToolbarCustomMessagesComponent, i104.ToolBarButtonComponent, i104.ToolBarButtonGroupComponent, i104.ToolBarDropDownButtonComponent, i104.ToolBarSeparatorComponent, i104.ToolBarSpacerComponent, i104.ToolBarSplitButtonComponent, i104.ToolBarToolComponent, i105.CustomMessagesComponent, i105.PagerFocusableDirective, i105.PagerInfoComponent, i105.PagerInputComponent, i105.PagerNextButtonsComponent, i105.PagerNumericButtonsComponent, i105.PagerPageSizesComponent, i105.PagerPrevButtonsComponent, i105.PagerTemplateDirective, i105.PagerComponent, i105.PagerSpacerComponent] });
|
146
144
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, providers: [
|
147
145
|
IconsService,
|
148
146
|
ResizeBatchService,
|
@@ -157,7 +155,7 @@ export class TreeListModule {
|
|
157
155
|
DialogService,
|
158
156
|
WindowService,
|
159
157
|
WindowContainerService
|
160
|
-
], imports: [i1.TreeListComponent, i25.FilterCellOperatorsComponent, i30.CellComponent, i33.EditCommandDirective, i34.CancelCommandDirective, i35.SaveCommandDirective, i36.RemoveCommandDirective, i37.AddCommandDirective, i40.HeaderComponent, i46.StringFilterCellComponent, i47.NumericFilterCellComponent, i48.AutoCompleteFilterCellComponent, i49.BooleanFilterCellComponent, i51.FilterCellWrapperComponent, i52.DateFilterCellComponent, i25.FilterCellOperatorsComponent, i25.FilterCellOperatorsComponent, i72.FilterMenuComponent, i73.FilterMenuContainerComponent, i74.FilterMenuInputWrapperComponent, i75.StringFilterMenuInputComponent, i76.StringFilterMenuComponent, i78.NumericFilterMenuComponent, i79.NumericFilterMenuInputComponent, i80.DateFilterMenuInputComponent, i81.DateFilterMenuComponent, i83.BooleanFilterMenuComponent, i85.ColumnChooserComponent, i86.ColumnMenuChooserComponent, i87.ColumnMenuFilterComponent, i88.ColumnMenuItemComponent, i90.ColumnMenuSortComponent, i91.ColumnMenuComponent, i92.ColumnMenuLockComponent,
|
158
|
+
], imports: [i1.TreeListComponent, i25.FilterCellOperatorsComponent, i30.CellComponent, i33.EditCommandDirective, i34.CancelCommandDirective, i35.SaveCommandDirective, i36.RemoveCommandDirective, i37.AddCommandDirective, i40.HeaderComponent, i46.StringFilterCellComponent, i47.NumericFilterCellComponent, i48.AutoCompleteFilterCellComponent, i49.BooleanFilterCellComponent, i51.FilterCellWrapperComponent, i52.DateFilterCellComponent, i25.FilterCellOperatorsComponent, i25.FilterCellOperatorsComponent, i72.FilterMenuComponent, i73.FilterMenuContainerComponent, i74.FilterMenuInputWrapperComponent, i75.StringFilterMenuInputComponent, i76.StringFilterMenuComponent, i78.NumericFilterMenuComponent, i79.NumericFilterMenuInputComponent, i80.DateFilterMenuInputComponent, i81.DateFilterMenuComponent, i83.BooleanFilterMenuComponent, i85.ColumnChooserComponent, i86.ColumnMenuChooserComponent, i87.ColumnMenuFilterComponent, i88.ColumnMenuItemComponent, i90.ColumnMenuSortComponent, i91.ColumnMenuComponent, i92.ColumnMenuLockComponent, i96.ExcelCommandDirective, i98.ColumnComponent, i98.ColumnGroupComponent, i101.PDFCommandDirective, i104.ToolBarComponent, i104.ToolbarCustomMessagesComponent, i104.ToolBarButtonComponent, i104.ToolBarButtonGroupComponent, i104.ToolBarDropDownButtonComponent, i104.ToolBarSeparatorComponent, i104.ToolBarSpacerComponent, i104.ToolBarSplitButtonComponent, i105.CustomMessagesComponent, i105.PagerInfoComponent, i105.PagerInputComponent, i105.PagerNextButtonsComponent, i105.PagerNumericButtonsComponent, i105.PagerPageSizesComponent, i105.PagerPrevButtonsComponent, i105.PagerComponent, i105.PagerSpacerComponent] });
|
161
159
|
}
|
162
160
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, decorators: [{
|
163
161
|
type: NgModule,
|
@@ -24,7 +24,7 @@ import { DragTargetContainerDirective, DropTargetContainerDirective } from '@pro
|
|
24
24
|
import { orderBy, isCompositeFilterDescriptor, process, aggregateBy } from '@progress/kendo-data-query';
|
25
25
|
import * as i1$2 from '@angular/platform-browser';
|
26
26
|
import { plusIcon, cancelIcon, lockIcon, unlockIcon, insertMiddleIcon, caretAltDownIcon, caretAltRightIcon, caretAltLeftIcon, reorderIcon, filterClearIcon, filterIcon, chevronUpIcon, chevronDownIcon, columnsIcon, sortAscSmallIcon, sortDescSmallIcon, displayInlineFlexIcon, maxWidthIcon, moreVerticalIcon, fileExcelIcon, filePdfIcon } from '@progress/kendo-svg-icons';
|
27
|
-
import * as
|
27
|
+
import * as i105 from '@progress/kendo-angular-pager';
|
28
28
|
import { PagerContextService, PagerNavigationService, PagerTemplateDirective, KENDO_PAGER } from '@progress/kendo-angular-pager';
|
29
29
|
import { getter, setter } from '@progress/kendo-common';
|
30
30
|
import * as i1$6 from '@progress/kendo-angular-inputs';
|
@@ -35,9 +35,9 @@ import { DropDownListComponent, AutoCompleteComponent } from '@progress/kendo-an
|
|
35
35
|
import { ButtonComponent, Button } from '@progress/kendo-angular-buttons';
|
36
36
|
import { trigger, state, style, transition, animate } from '@angular/animations';
|
37
37
|
import { saveAs } from '@progress/kendo-file-saver';
|
38
|
-
import * as
|
38
|
+
import * as i98 from '@progress/kendo-angular-excel-export';
|
39
39
|
import { workbookOptions, toDataURL, ColumnBase as ColumnBase$1, ColumnComponent as ColumnComponent$1, ColumnGroupComponent as ColumnGroupComponent$1, FooterTemplateDirective as FooterTemplateDirective$1, GroupFooterTemplateDirective, GroupHeaderColumnTemplateDirective, GroupHeaderTemplateDirective } from '@progress/kendo-angular-excel-export';
|
40
|
-
import * as
|
40
|
+
import * as i104 from '@progress/kendo-angular-toolbar';
|
41
41
|
import { KENDO_TOOLBAR } from '@progress/kendo-angular-toolbar';
|
42
42
|
import { PDFExportMarginComponent, PDFExportTemplateDirective, PDFExportComponent } from '@progress/kendo-angular-pdf-export';
|
43
43
|
|
@@ -49,8 +49,8 @@ const packageMetadata = {
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
50
50
|
productCode: 'KENDOUIANGULAR',
|
51
51
|
productCodes: ['KENDOUIANGULAR'],
|
52
|
-
publishDate:
|
53
|
-
version: '19.2.0-develop.
|
52
|
+
publishDate: 1750841725,
|
53
|
+
version: '19.2.0-develop.2',
|
54
54
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
55
55
|
};
|
56
56
|
|
@@ -279,7 +279,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
279
279
|
type: Optional
|
280
280
|
}] }]; } });
|
281
281
|
|
282
|
-
let columnId = 0;
|
283
282
|
/**
|
284
283
|
* @hidden
|
285
284
|
*/
|
@@ -330,12 +329,6 @@ class ColumnBase {
|
|
330
329
|
* @hidden
|
331
330
|
*/
|
332
331
|
isSpanColumn = false;
|
333
|
-
/**
|
334
|
-
* @hidden
|
335
|
-
*/
|
336
|
-
get id() {
|
337
|
-
return this._id;
|
338
|
-
}
|
339
332
|
/**
|
340
333
|
* Indicates whether the column is resizable.
|
341
334
|
* @default true
|
@@ -515,7 +508,6 @@ class ColumnBase {
|
|
515
508
|
get isEditable() {
|
516
509
|
return false;
|
517
510
|
}
|
518
|
-
_id;
|
519
511
|
/**
|
520
512
|
* @hidden
|
521
513
|
*/
|
@@ -525,7 +517,6 @@ class ColumnBase {
|
|
525
517
|
if (parent && !isColumnContainer(parent)) {
|
526
518
|
throw new Error('Columns can be nested only inside ColumnGroupComponent');
|
527
519
|
}
|
528
|
-
this._id = `k-grid-column-${columnId++}`;
|
529
520
|
}
|
530
521
|
ngOnChanges(_changes) {
|
531
522
|
if (this.optionChanges) {
|
@@ -5110,12 +5101,12 @@ class NavigationService {
|
|
5110
5101
|
this.leaveCell();
|
5111
5102
|
this.cursor.reset();
|
5112
5103
|
}
|
5113
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService, deps: [{ token: i0.NgZone }, { token: DomEventsService }, { token:
|
5104
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService, deps: [{ token: i0.NgZone }, { token: DomEventsService }, { token: i105.PagerContextService }, { token: ScrollRequestService }, { token: FocusRoot }, { token: EditService }, { token: i1$1.LocalizationService }, { token: ExpandStateService }, { token: SelectionService }, { token: i0.ChangeDetectorRef }, { token: FocusableDirective, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
5114
5105
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService });
|
5115
5106
|
}
|
5116
5107
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService, decorators: [{
|
5117
5108
|
type: Injectable
|
5118
|
-
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: DomEventsService }, { type:
|
5109
|
+
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: DomEventsService }, { type: i105.PagerContextService }, { type: ScrollRequestService }, { type: FocusRoot }, { type: EditService }, { type: i1$1.LocalizationService }, { type: ExpandStateService }, { type: SelectionService }, { type: i0.ChangeDetectorRef }, { type: FocusableDirective, decorators: [{
|
5119
5110
|
type: Optional
|
5120
5111
|
}] }]; } });
|
5121
5112
|
|
@@ -7993,33 +7984,6 @@ class ListComponent {
|
|
7993
7984
|
args.preventDefault();
|
7994
7985
|
}
|
7995
7986
|
}
|
7996
|
-
updateViewportColumns(range) {
|
7997
|
-
const columns = this.columns.nonLockedLeafColumns.toArray();
|
7998
|
-
// eslint-disable-next-line prefer-const
|
7999
|
-
let { startIdx, endIdx, offset } = range || this.calculateViewportColumns();
|
8000
|
-
const start = Math.max(0, startIdx - bufferSize);
|
8001
|
-
const end = Math.min(endIdx + bufferSize, columns.length - 1);
|
8002
|
-
if (start < startIdx) {
|
8003
|
-
for (let idx = startIdx - 1; idx >= start; idx--) {
|
8004
|
-
offset -= columns[idx].width;
|
8005
|
-
}
|
8006
|
-
}
|
8007
|
-
const currentColumns = columns.slice(start, end + 1);
|
8008
|
-
this.viewportColumnsWidth = currentColumns.reduce((total, column) => total + column.width, 0);
|
8009
|
-
if (start > 0) {
|
8010
|
-
const offsetColumn = new ColumnBase();
|
8011
|
-
offsetColumn.width = offset;
|
8012
|
-
currentColumns.unshift(offsetColumn);
|
8013
|
-
}
|
8014
|
-
this.viewportColumns = new QueryList();
|
8015
|
-
this.viewportColumns.reset(currentColumns);
|
8016
|
-
this.columnsStartIdx = start;
|
8017
|
-
this.columnsEndIdx = end;
|
8018
|
-
this.columnInfo.columnRangeChange.emit({ start, end, offset });
|
8019
|
-
if (!range) {
|
8020
|
-
this.updateColumnViewport(startIdx, endIdx);
|
8021
|
-
}
|
8022
|
-
}
|
8023
7987
|
attachContainerScroll() {
|
8024
7988
|
if (isUniversal()) {
|
8025
7989
|
return;
|
@@ -8180,6 +8144,33 @@ class ListComponent {
|
|
8180
8144
|
})
|
8181
8145
|
.forEach(setHeight(this.renderer));
|
8182
8146
|
}
|
8147
|
+
updateViewportColumns(range) {
|
8148
|
+
const columns = this.columns.nonLockedLeafColumns.toArray();
|
8149
|
+
// eslint-disable-next-line prefer-const
|
8150
|
+
let { startIdx, endIdx, offset } = range || this.calculateViewportColumns();
|
8151
|
+
const start = Math.max(0, startIdx - bufferSize);
|
8152
|
+
const end = Math.min(endIdx + bufferSize, columns.length - 1);
|
8153
|
+
if (start < startIdx) {
|
8154
|
+
for (let idx = startIdx - 1; idx >= start; idx--) {
|
8155
|
+
offset -= columns[idx].width;
|
8156
|
+
}
|
8157
|
+
}
|
8158
|
+
const currentColumns = columns.slice(start, end + 1);
|
8159
|
+
this.viewportColumnsWidth = currentColumns.reduce((total, column) => total + column.width, 0);
|
8160
|
+
if (start > 0) {
|
8161
|
+
const offsetColumn = new ColumnBase();
|
8162
|
+
offsetColumn.width = offset;
|
8163
|
+
currentColumns.unshift(offsetColumn);
|
8164
|
+
}
|
8165
|
+
this.viewportColumns = new QueryList();
|
8166
|
+
this.viewportColumns.reset(currentColumns);
|
8167
|
+
this.columnsStartIdx = start;
|
8168
|
+
this.columnsEndIdx = end;
|
8169
|
+
this.columnInfo.columnRangeChange.emit({ start, end, offset });
|
8170
|
+
if (!range) {
|
8171
|
+
this.updateColumnViewport(startIdx, endIdx);
|
8172
|
+
}
|
8173
|
+
}
|
8183
8174
|
handleColumnScroll() {
|
8184
8175
|
const container = this.container.nativeElement;
|
8185
8176
|
const scrollLeft = container.scrollLeft;
|
@@ -13783,7 +13774,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
13783
13774
|
|
13784
13775
|
/**
|
13785
13776
|
* Provides keyboard navigation support for TreeList column menu items.
|
13786
|
-
* Use this directive to manage focus and tab order for custom column menu items
|
13777
|
+
* Use this directive to manage focus and tab order for custom column menu items. [See example](slug:columnmenu_treelist#customizing-the-content).
|
13787
13778
|
*
|
13788
13779
|
* @example
|
13789
13780
|
* ```html
|
@@ -14972,9 +14963,9 @@ class HeaderComponent {
|
|
14972
14963
|
const reorderDirectionOffset = reorderDirection * rtlMultiplier;
|
14973
14964
|
const newIndex = column.leafIndex + reorderDirectionOffset;
|
14974
14965
|
const normalizedNewIndex = Math.min(Math.max(0, newIndex), columnsCount - 1);
|
14975
|
-
const
|
14976
|
-
|
14977
|
-
|
14966
|
+
const gridInstance = this.contextService.treelist;
|
14967
|
+
gridInstance.reorderColumn(column, normalizedNewIndex, { before: reorderDirectionOffset < 0 });
|
14968
|
+
gridInstance.columnReorder.emit(new ColumnReorderEvent({
|
14978
14969
|
column,
|
14979
14970
|
newIndex: normalizedNewIndex,
|
14980
14971
|
oldIndex: column.leafIndex
|
@@ -16861,7 +16852,6 @@ class TreeListComponent {
|
|
16861
16852
|
ariaRoot;
|
16862
16853
|
dragTargetContainer;
|
16863
16854
|
dropTargetContainer;
|
16864
|
-
listComponent;
|
16865
16855
|
get scrollbarWidth() {
|
16866
16856
|
return this.supportService.scrollbarWidth;
|
16867
16857
|
}
|
@@ -17661,9 +17651,6 @@ class TreeListComponent {
|
|
17661
17651
|
}
|
17662
17652
|
this.columnOrderChange.emit(args);
|
17663
17653
|
this.columnsContainer.refresh();
|
17664
|
-
if (this.virtualColumns) {
|
17665
|
-
this.listComponent.updateViewportColumns();
|
17666
|
-
}
|
17667
17654
|
this.changeDetectorRef.markForCheck();
|
17668
17655
|
});
|
17669
17656
|
}
|
@@ -17992,8 +17979,8 @@ class TreeListComponent {
|
|
17992
17979
|
}
|
17993
17980
|
onColumnRangeChange(range) {
|
17994
17981
|
const viewportColumns = this.viewportColumns = [];
|
17995
|
-
const
|
17996
|
-
|
17982
|
+
const leafViewportColumns = this.columnsContainer
|
17983
|
+
.nonLockedLeafColumns.toArray().slice(range.start, range.end + 1);
|
17997
17984
|
for (let idx = 0; idx < leafViewportColumns.length; idx++) {
|
17998
17985
|
let column = leafViewportColumns[idx];
|
17999
17986
|
while (column.parent) {
|
@@ -18004,8 +17991,7 @@ class TreeListComponent {
|
|
18004
17991
|
column = toAdd.shift();
|
18005
17992
|
viewportColumns.push(column);
|
18006
17993
|
if (column.isColumnGroup) {
|
18007
|
-
|
18008
|
-
toAdd.unshift(...children);
|
17994
|
+
toAdd.unshift(...column.childrenArray);
|
18009
17995
|
}
|
18010
17996
|
}
|
18011
17997
|
const lastFromGroup = viewportColumns[viewportColumns.length - 1];
|
@@ -18104,7 +18090,7 @@ class TreeListComponent {
|
|
18104
18090
|
},
|
18105
18091
|
ContextService,
|
18106
18092
|
RowReorderService
|
18107
|
-
], 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: "
|
18093
|
+
], 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: `
|
18108
18094
|
<ng-container kendoTreeListLocalizedMessages
|
18109
18095
|
i18n-noRecords="kendo.treelist.noRecords|The label visible in the TreeList when there are no records"
|
18110
18096
|
noRecords="No records available."
|
@@ -18571,7 +18557,7 @@ class TreeListComponent {
|
|
18571
18557
|
[pageNumberInputTitle]="messageFor('pagerPageNumberInputTitle')">
|
18572
18558
|
</kendo-pager-messages>
|
18573
18559
|
</ng-template>
|
18574
|
-
`, 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", "cursorStyle", "hintContext"], 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", "tabIndex"] }, { 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:
|
18560
|
+
`, 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", "cursorStyle", "hintContext"], 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", "tabIndex"] }, { 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: i105.CustomMessagesComponent, selector: "kendo-datapager-messages, kendo-pager-messages" }, { kind: "component", type: i105.PagerInfoComponent, selector: "kendo-datapager-info, kendo-pager-info" }, { kind: "component", type: i105.PagerInputComponent, selector: "kendo-datapager-input, kendo-pager-input", inputs: ["showPageText", "size"] }, { kind: "component", type: i105.PagerNextButtonsComponent, selector: "kendo-datapager-next-buttons, kendo-pager-next-buttons", inputs: ["size"] }, { kind: "component", type: i105.PagerNumericButtonsComponent, selector: "kendo-datapager-numeric-buttons, kendo-pager-numeric-buttons", inputs: ["buttonCount", "size"] }, { kind: "component", type: i105.PagerPageSizesComponent, selector: "kendo-datapager-page-sizes, kendo-pager-page-sizes", inputs: ["showItemsText", "pageSizes", "size", "adaptiveMode"] }, { kind: "component", type: i105.PagerPrevButtonsComponent, selector: "kendo-datapager-prev-buttons, kendo-pager-prev-buttons", inputs: ["size"] }, { kind: "directive", type: i105.PagerTemplateDirective, selector: "[kendoDataPagerTemplate], [kendoPagerTemplate]" }, { kind: "component", type: i105.PagerComponent, selector: "kendo-datapager, kendo-pager", inputs: ["externalTemplate", "total", "skip", "pageSize", "buttonCount", "info", "type", "pageSizeValues", "previousNext", "navigable", "size", "responsive", "adaptiveMode"], outputs: ["pageChange", "pageSizeChange", "pagerInputVisibilityChange", "pageTextVisibilityChange", "itemsTextVisibilityChange"], 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 });
|
18575
18561
|
}
|
18576
18562
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListComponent, decorators: [{
|
18577
18563
|
type: Component,
|
@@ -19258,9 +19244,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
19258
19244
|
}], dropTargetContainer: [{
|
19259
19245
|
type: ViewChild,
|
19260
19246
|
args: [DropTargetContainerDirective]
|
19261
|
-
}], listComponent: [{
|
19262
|
-
type: ViewChild,
|
19263
|
-
args: [ListComponent]
|
19264
19247
|
}], fetchChildren: [{
|
19265
19248
|
type: Input
|
19266
19249
|
}], hasChildren: [{
|
@@ -23263,7 +23246,7 @@ class ExcelCommandToolbarDirective {
|
|
23263
23246
|
e.preventDefault();
|
23264
23247
|
this.excelService.exportClick.emit();
|
23265
23248
|
}
|
23266
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelCommandToolbarDirective, deps: [{ token: ExcelService }, { token:
|
23249
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelCommandToolbarDirective, deps: [{ token: ExcelService }, { token: i104.ToolBarButtonComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
23267
23250
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ExcelCommandToolbarDirective, isStandalone: true, selector: "[kendoTreeListExcelTool]", ngImport: i0 });
|
23268
23251
|
}
|
23269
23252
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelCommandToolbarDirective, decorators: [{
|
@@ -23272,7 +23255,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
23272
23255
|
selector: '[kendoTreeListExcelTool]',
|
23273
23256
|
standalone: true
|
23274
23257
|
}]
|
23275
|
-
}], ctorParameters: function () { return [{ type: ExcelService }, { type:
|
23258
|
+
}], ctorParameters: function () { return [{ type: ExcelService }, { type: i104.ToolBarButtonComponent }]; } });
|
23276
23259
|
|
23277
23260
|
/**
|
23278
23261
|
* Represents the Kendo UI PDFMargin component for Angular.
|
@@ -23858,7 +23841,7 @@ class AddCommandToolbarDirective {
|
|
23858
23841
|
e.preventDefault();
|
23859
23842
|
this.editService.beginAdd();
|
23860
23843
|
}
|
23861
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddCommandToolbarDirective, deps: [{ token: EditService }, { token:
|
23844
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddCommandToolbarDirective, deps: [{ token: EditService }, { token: i104.ToolBarButtonComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
23862
23845
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AddCommandToolbarDirective, isStandalone: true, selector: "[kendoTreeListAddTool]", ngImport: i0 });
|
23863
23846
|
}
|
23864
23847
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddCommandToolbarDirective, decorators: [{
|
@@ -23867,7 +23850,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
23867
23850
|
selector: '[kendoTreeListAddTool]',
|
23868
23851
|
standalone: true
|
23869
23852
|
}]
|
23870
|
-
}], ctorParameters: function () { return [{ type: EditService }, { type:
|
23853
|
+
}], ctorParameters: function () { return [{ type: EditService }, { type: i104.ToolBarButtonComponent }]; } });
|
23871
23854
|
|
23872
23855
|
/**
|
23873
23856
|
* Represents the `export-to-PDF` toolbar tool of the TreeList.
|
@@ -23915,7 +23898,7 @@ class PDFCommandToolbarDirective {
|
|
23915
23898
|
e.preventDefault();
|
23916
23899
|
this.pdfService.exportClick.emit();
|
23917
23900
|
}
|
23918
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PDFCommandToolbarDirective, deps: [{ token: PDFService }, { token:
|
23901
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PDFCommandToolbarDirective, deps: [{ token: PDFService }, { token: i104.ToolBarButtonComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
23919
23902
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PDFCommandToolbarDirective, isStandalone: true, selector: "[kendoTreeListPDFTool]", ngImport: i0 });
|
23920
23903
|
}
|
23921
23904
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PDFCommandToolbarDirective, decorators: [{
|
@@ -23924,7 +23907,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
23924
23907
|
selector: '[kendoTreeListPDFTool]',
|
23925
23908
|
standalone: true
|
23926
23909
|
}]
|
23927
|
-
}], ctorParameters: function () { return [{ type: PDFService }, { type:
|
23910
|
+
}], ctorParameters: function () { return [{ type: PDFService }, { type: i104.ToolBarButtonComponent }]; } });
|
23928
23911
|
|
23929
23912
|
/**
|
23930
23913
|
* @hidden
|
@@ -24002,7 +23985,7 @@ const SHARED_FILTER_EXPORTS = [
|
|
24002
23985
|
];
|
24003
23986
|
/**
|
24004
23987
|
* @hidden
|
24005
|
-
* Utility array that contains the former
|
23988
|
+
* Utility array that contains the former ColumnMenu module exports.
|
24006
23989
|
*/
|
24007
23990
|
const ROW_FILTER_EXPORTS = [
|
24008
23991
|
FilterRowComponent,
|
@@ -24050,9 +24033,7 @@ const COLUMN_MENU_EXPORTS = [
|
|
24050
24033
|
ColumnMenuComponent,
|
24051
24034
|
ColumnMenuLockComponent,
|
24052
24035
|
ColumnMenuTemplateDirective,
|
24053
|
-
ColumnMenuItemDirective
|
24054
|
-
ColumnMenuAutoSizeColumnComponent,
|
24055
|
-
ColumnMenuAutoSizeAllColumnsComponent
|
24036
|
+
ColumnMenuItemDirective
|
24056
24037
|
];
|
24057
24038
|
/**
|
24058
24039
|
* @hidden
|
@@ -24130,7 +24111,7 @@ const KENDO_TREELIST = [
|
|
24130
24111
|
*/
|
24131
24112
|
class TreeListModule {
|
24132
24113
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
24133
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, imports: [TreeListComponent, ToolbarTemplateDirective, ToolbarComponent, TreeListSpacerComponent, CustomMessagesComponent, TemplateEditingDirective, ReactiveEditingDirective, InCellEditingDirective, HierarchyBindingDirective, FlatBindingDirective, ExpandableDirective, SelectableDirective, TreeListToolbarFocusableDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i1$4.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, CommandColumnComponent, CellTemplateDirective, CellComponent, NoRecordsTemplateDirective, EditTemplateDirective, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, AddCommandToolbarDirective, FooterTemplateDirective, HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i1$4.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent, ColumnMenuTemplateDirective, ColumnMenuItemDirective,
|
24114
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, imports: [TreeListComponent, ToolbarTemplateDirective, ToolbarComponent, TreeListSpacerComponent, CustomMessagesComponent, TemplateEditingDirective, ReactiveEditingDirective, InCellEditingDirective, HierarchyBindingDirective, FlatBindingDirective, ExpandableDirective, SelectableDirective, TreeListToolbarFocusableDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i1$4.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, CommandColumnComponent, CellTemplateDirective, CellComponent, NoRecordsTemplateDirective, EditTemplateDirective, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, AddCommandToolbarDirective, FooterTemplateDirective, HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i1$4.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent, ColumnMenuTemplateDirective, ColumnMenuItemDirective, ExcelComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, i98.ColumnComponent, i98.ColumnGroupComponent, i98.FooterTemplateDirective, i98.GroupFooterTemplateDirective, i98.GroupHeaderColumnTemplateDirective, i98.GroupHeaderTemplateDirective, PDFComponent, PDFMarginComponent, PDFCommandDirective, PDFTemplateDirective, PDFCommandToolbarDirective, i104.ToolBarComponent, i104.ToolbarCustomMessagesComponent, i104.ToolBarButtonComponent, i104.ToolBarButtonGroupComponent, i104.ToolBarDropDownButtonComponent, i104.ToolBarSeparatorComponent, i104.ToolBarSpacerComponent, i104.ToolBarSplitButtonComponent, i104.ToolBarToolComponent, i105.CustomMessagesComponent, i105.PagerFocusableDirective, i105.PagerInfoComponent, i105.PagerInputComponent, i105.PagerNextButtonsComponent, i105.PagerNumericButtonsComponent, i105.PagerPageSizesComponent, i105.PagerPrevButtonsComponent, i105.PagerTemplateDirective, i105.PagerComponent, i105.PagerSpacerComponent, TableDirective], exports: [TreeListComponent, ToolbarTemplateDirective, ToolbarComponent, TreeListSpacerComponent, CustomMessagesComponent, TemplateEditingDirective, ReactiveEditingDirective, InCellEditingDirective, HierarchyBindingDirective, FlatBindingDirective, ExpandableDirective, SelectableDirective, TreeListToolbarFocusableDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i1$4.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, CommandColumnComponent, CellTemplateDirective, CellComponent, NoRecordsTemplateDirective, EditTemplateDirective, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, AddCommandToolbarDirective, FooterTemplateDirective, HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i1$4.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent, ColumnMenuTemplateDirective, ColumnMenuItemDirective, ExcelComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, i98.ColumnComponent, i98.ColumnGroupComponent, i98.FooterTemplateDirective, i98.GroupFooterTemplateDirective, i98.GroupHeaderColumnTemplateDirective, i98.GroupHeaderTemplateDirective, PDFComponent, PDFMarginComponent, PDFCommandDirective, PDFTemplateDirective, PDFCommandToolbarDirective, i104.ToolBarComponent, i104.ToolbarCustomMessagesComponent, i104.ToolBarButtonComponent, i104.ToolBarButtonGroupComponent, i104.ToolBarDropDownButtonComponent, i104.ToolBarSeparatorComponent, i104.ToolBarSpacerComponent, i104.ToolBarSplitButtonComponent, i104.ToolBarToolComponent, i105.CustomMessagesComponent, i105.PagerFocusableDirective, i105.PagerInfoComponent, i105.PagerInputComponent, i105.PagerNextButtonsComponent, i105.PagerNumericButtonsComponent, i105.PagerPageSizesComponent, i105.PagerPrevButtonsComponent, i105.PagerTemplateDirective, i105.PagerComponent, i105.PagerSpacerComponent] });
|
24134
24115
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, providers: [
|
24135
24116
|
IconsService,
|
24136
24117
|
ResizeBatchService,
|
@@ -24145,7 +24126,7 @@ class TreeListModule {
|
|
24145
24126
|
DialogService,
|
24146
24127
|
WindowService,
|
24147
24128
|
WindowContainerService
|
24148
|
-
], imports: [TreeListComponent, FilterCellOperatorsComponent, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, HeaderComponent, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, FilterCellOperatorsComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, BooleanFilterMenuComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent,
|
24129
|
+
], imports: [TreeListComponent, FilterCellOperatorsComponent, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, HeaderComponent, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, FilterCellOperatorsComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, BooleanFilterMenuComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent, ExcelCommandDirective, i98.ColumnComponent, i98.ColumnGroupComponent, PDFCommandDirective, i104.ToolBarComponent, i104.ToolbarCustomMessagesComponent, i104.ToolBarButtonComponent, i104.ToolBarButtonGroupComponent, i104.ToolBarDropDownButtonComponent, i104.ToolBarSeparatorComponent, i104.ToolBarSpacerComponent, i104.ToolBarSplitButtonComponent, i105.CustomMessagesComponent, i105.PagerInfoComponent, i105.PagerInputComponent, i105.PagerNextButtonsComponent, i105.PagerNumericButtonsComponent, i105.PagerPageSizesComponent, i105.PagerPrevButtonsComponent, i105.PagerComponent, i105.PagerSpacerComponent] });
|
24149
24130
|
}
|
24150
24131
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, decorators: [{
|
24151
24132
|
type: NgModule,
|
@@ -24227,8 +24208,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
24227
24208
|
*/
|
24228
24209
|
class ExcelModule {
|
24229
24210
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
24230
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ExcelModule, imports: [ExcelComponent, ExcelCommandDirective, ExcelCommandToolbarDirective,
|
24231
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelModule, providers: [IconsService], imports: [ExcelCommandDirective,
|
24211
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ExcelModule, imports: [ExcelComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, i98.ColumnComponent, i98.ColumnGroupComponent, i98.FooterTemplateDirective, i98.GroupFooterTemplateDirective, i98.GroupHeaderColumnTemplateDirective, i98.GroupHeaderTemplateDirective], exports: [ExcelComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, i98.ColumnComponent, i98.ColumnGroupComponent, i98.FooterTemplateDirective, i98.GroupFooterTemplateDirective, i98.GroupHeaderColumnTemplateDirective, i98.GroupHeaderTemplateDirective] });
|
24212
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelModule, providers: [IconsService], imports: [ExcelCommandDirective, i98.ColumnComponent, i98.ColumnGroupComponent] });
|
24232
24213
|
}
|
24233
24214
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelModule, decorators: [{
|
24234
24215
|
type: NgModule,
|
@@ -24243,5 +24224,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
24243
24224
|
* Generated bundle index. Do not edit.
|
24244
24225
|
*/
|
24245
24226
|
|
24246
|
-
export { AddCommandDirective, AddCommandToolbarDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BODY_EXPORTS, BaseCommandDirective, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, COLUMN_MENU_EXPORTS, CancelCommandDirective, CellCloseEvent, CellComponent, CellTemplateDirective, CheckboxColumnComponent, ColGroupComponent, ColumnBase, ColumnChooserComponent, ColumnComponent, ColumnGroupComponent, ColumnHandleDirective, ColumnInfoService,
|
24227
|
+
export { AddCommandDirective, AddCommandToolbarDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BODY_EXPORTS, BaseCommandDirective, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, COLUMN_MENU_EXPORTS, CancelCommandDirective, CellCloseEvent, CellComponent, CellTemplateDirective, CheckboxColumnComponent, ColGroupComponent, ColumnBase, ColumnChooserComponent, ColumnComponent, ColumnGroupComponent, ColumnHandleDirective, ColumnInfoService, ColumnMenuChooserComponent, ColumnMenuComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuItemDirective, ColumnMenuLockComponent, ColumnMenuService, ColumnMenuSortComponent, ColumnMenuTemplateDirective, ColumnReorderEvent, ColumnResizingService, ColumnVisibilityChangeEvent, ColumnsContainer, CommandColumnComponent, ContainsFilterOperatorComponent, CustomMessagesComponent, DataBoundTreeComponent, DateFilterCellComponent, DateFilterComponent, DateFilterMenuComponent, DateFilterMenuInputComponent, DoesNotContainFilterOperatorComponent, EditCommandDirective, EditTemplateDirective, EditingDirectiveBase, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, ExcelComponent, ExcelExportEvent, ExcelModule, ExcelService, ExpandEvent, ExpandableDirective, ExpandableTreeComponent, FILTER_MENU_EXPORTS, FieldAccessorPipe, FilterCellComponent, FilterCellHostDirective, FilterCellOperatorsComponent, FilterCellTemplateDirective, FilterCellWrapperComponent, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuHostDirective, FilterMenuInputWrapperComponent, FilterMenuTemplateDirective, FilterRowComponent, FilterService, FlatBindingDirective, FocusableDirective, FooterTemplateDirective, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, HEADER_EXPORTS, HeaderComponent, HeaderTemplateDirective, HierarchyBindingDirective, InCellEditingDirective, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, KENDO_TREELIST, KENDO_TREELIST_EXCEL_EXPORT, KENDO_TREELIST_PDF_EXPORT, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, LevelItemsPipe, ListComponent, LoadingComponent, LogicalCellDirective, LogicalRowDirective, NoRecordsTemplateDirective, NotEqualFilterOperatorComponent, NumericFilterCellComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, PDFCommandDirective, PDFCommandToolbarDirective, PDFComponent, PDFMarginComponent, PDFModule, PDFService, PDFTemplateDirective, PopupCloseEvent, ROW_FILTER_EXPORTS, ReactiveEditingDirective, RemoveCommandDirective, ResizableContainerDirective, RowEditingDirectiveBase, RowReorderColumnComponent, RowReorderService, SHARED_EXPORTS, SHARED_FILTER_EXPORTS, SaveCommandDirective, SelectableDirective, SelectionChangeEvent, SinglePopupService, Skip, SpanColumnComponent, StartsWithFilterOperatorComponent, StringFilterCellComponent, StringFilterMenuComponent, StringFilterMenuInputComponent, SuspendService, TableBodyComponent, TableDirective, TemplateEditingDirective, ToolbarComponent, ToolbarTemplateDirective, TreeListComponent, TreeListModule, TreeListSpacerComponent, TreeListToolbarFocusableDirective };
|
24247
24228
|
|
package/index.d.ts
CHANGED
@@ -143,8 +143,6 @@ export { ColumnMenuChooserComponent } from './column-menu/column-menu-chooser.co
|
|
143
143
|
export { ColumnMenuFilterComponent } from './column-menu/column-menu-filter.component';
|
144
144
|
export { ColumnMenuLockComponent } from './column-menu/column-menu-lock.component';
|
145
145
|
export { ColumnMenuSortComponent } from './column-menu/column-menu-sort.component';
|
146
|
-
export { ColumnMenuAutoSizeColumnComponent } from './column-menu/column-menu-autosize.component';
|
147
|
-
export { ColumnMenuAutoSizeAllColumnsComponent } from './column-menu/column-menu-autosize-all.component';
|
148
146
|
export { ColumnMenuItemContentTemplateDirective } from './column-menu/column-menu-item-content-template.directive';
|
149
147
|
export { ColumnMenuItemComponent } from './column-menu/column-menu-item.component';
|
150
148
|
export { FilterMenuContainerComponent } from './filtering/menu/filter-menu-container.component';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
3
|
-
"version": "19.2.0-develop.
|
3
|
+
"version": "19.2.0-develop.2",
|
4
4
|
"description": "Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -24,7 +24,7 @@
|
|
24
24
|
"package": {
|
25
25
|
"productName": "Kendo UI for Angular",
|
26
26
|
"productCode": "KENDOUIANGULAR",
|
27
|
-
"publishDate":
|
27
|
+
"publishDate": 1750841725,
|
28
28
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
29
29
|
}
|
30
30
|
},
|
@@ -37,26 +37,26 @@
|
|
37
37
|
"@progress/kendo-data-query": "^1.0.0",
|
38
38
|
"@progress/kendo-drawing": "^1.21.0",
|
39
39
|
"@progress/kendo-licensing": "^1.5.0",
|
40
|
-
"@progress/kendo-angular-buttons": "19.2.0-develop.
|
41
|
-
"@progress/kendo-angular-common": "19.2.0-develop.
|
42
|
-
"@progress/kendo-angular-dateinputs": "19.2.0-develop.
|
43
|
-
"@progress/kendo-angular-dropdowns": "19.2.0-develop.
|
44
|
-
"@progress/kendo-angular-excel-export": "19.2.0-develop.
|
45
|
-
"@progress/kendo-angular-icons": "19.2.0-develop.
|
46
|
-
"@progress/kendo-angular-inputs": "19.2.0-develop.
|
47
|
-
"@progress/kendo-angular-intl": "19.2.0-develop.
|
48
|
-
"@progress/kendo-angular-l10n": "19.2.0-develop.
|
49
|
-
"@progress/kendo-angular-label": "19.2.0-develop.
|
50
|
-
"@progress/kendo-angular-pager": "19.2.0-develop.
|
51
|
-
"@progress/kendo-angular-pdf-export": "19.2.0-develop.
|
52
|
-
"@progress/kendo-angular-popup": "19.2.0-develop.
|
53
|
-
"@progress/kendo-angular-toolbar": "19.2.0-develop.
|
54
|
-
"@progress/kendo-angular-utils": "19.2.0-develop.
|
40
|
+
"@progress/kendo-angular-buttons": "19.2.0-develop.2",
|
41
|
+
"@progress/kendo-angular-common": "19.2.0-develop.2",
|
42
|
+
"@progress/kendo-angular-dateinputs": "19.2.0-develop.2",
|
43
|
+
"@progress/kendo-angular-dropdowns": "19.2.0-develop.2",
|
44
|
+
"@progress/kendo-angular-excel-export": "19.2.0-develop.2",
|
45
|
+
"@progress/kendo-angular-icons": "19.2.0-develop.2",
|
46
|
+
"@progress/kendo-angular-inputs": "19.2.0-develop.2",
|
47
|
+
"@progress/kendo-angular-intl": "19.2.0-develop.2",
|
48
|
+
"@progress/kendo-angular-l10n": "19.2.0-develop.2",
|
49
|
+
"@progress/kendo-angular-label": "19.2.0-develop.2",
|
50
|
+
"@progress/kendo-angular-pager": "19.2.0-develop.2",
|
51
|
+
"@progress/kendo-angular-pdf-export": "19.2.0-develop.2",
|
52
|
+
"@progress/kendo-angular-popup": "19.2.0-develop.2",
|
53
|
+
"@progress/kendo-angular-toolbar": "19.2.0-develop.2",
|
54
|
+
"@progress/kendo-angular-utils": "19.2.0-develop.2",
|
55
55
|
"rxjs": "^6.5.3 || ^7.0.0"
|
56
56
|
},
|
57
57
|
"dependencies": {
|
58
58
|
"tslib": "^2.3.1",
|
59
|
-
"@progress/kendo-angular-schematics": "19.2.0-develop.
|
59
|
+
"@progress/kendo-angular-schematics": "19.2.0-develop.2",
|
60
60
|
"@progress/kendo-common": "^1.0.1",
|
61
61
|
"@progress/kendo-file-saver": "^1.0.0"
|
62
62
|
},
|
@@ -114,7 +114,6 @@ export declare class ListComponent implements OnInit, OnDestroy, AfterViewInit,
|
|
114
114
|
lockedScroll(): void;
|
115
115
|
lockedMousewheel(args: any): void;
|
116
116
|
lockedKeydown(args: any): void;
|
117
|
-
updateViewportColumns(range?: any): void;
|
118
117
|
private attachContainerScroll;
|
119
118
|
private createScroller;
|
120
119
|
private scroll;
|
@@ -127,6 +126,7 @@ export declare class ListComponent implements OnInit, OnDestroy, AfterViewInit,
|
|
127
126
|
private cleanupScroller;
|
128
127
|
private initResizeService;
|
129
128
|
private syncContainerHeight;
|
129
|
+
private updateViewportColumns;
|
130
130
|
private handleColumnScroll;
|
131
131
|
private updateColumnViewport;
|
132
132
|
private calculateViewportColumns;
|
@@ -4,13 +4,13 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
4
4
|
function default_1(options) {
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TreeListModule', package: 'treelist', peerDependencies: {
|
6
6
|
// peer dep of the dropdowns
|
7
|
-
'@progress/kendo-angular-treeview': '19.2.0-develop.
|
7
|
+
'@progress/kendo-angular-treeview': '19.2.0-develop.2',
|
8
8
|
// peer dependency of kendo-angular-inputs
|
9
|
-
'@progress/kendo-angular-dialog': '19.2.0-develop.
|
9
|
+
'@progress/kendo-angular-dialog': '19.2.0-develop.2',
|
10
10
|
// peer dependency of kendo-angular-icons
|
11
11
|
'@progress/kendo-svg-icons': '^4.0.0',
|
12
12
|
// peer dependency of kendo-angular-dateinputs
|
13
|
-
'@progress/kendo-angular-navigation': '19.2.0-develop.
|
13
|
+
'@progress/kendo-angular-navigation': '19.2.0-develop.2',
|
14
14
|
} });
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
16
16
|
}
|
package/treelist.component.d.ts
CHANGED
@@ -64,7 +64,6 @@ import { IsSelectedFn } from './selection/is-selected';
|
|
64
64
|
import { ContextService } from './common/provider.service';
|
65
65
|
import { RowReorderEvent } from './row-reordering/types';
|
66
66
|
import { RowReorderService } from './row-reordering/row-reorder.service';
|
67
|
-
import { ListComponent } from './rendering/list.component';
|
68
67
|
import { PagerTemplateDirective } from '@progress/kendo-angular-pager';
|
69
68
|
import { PagerSettings } from './common/pager-settings';
|
70
69
|
import * as i0 from "@angular/core";
|
@@ -463,7 +462,6 @@ export declare class TreeListComponent implements AfterContentInit, AfterViewIni
|
|
463
462
|
ariaRoot: ElementRef;
|
464
463
|
dragTargetContainer: DragTargetContainerDirective;
|
465
464
|
dropTargetContainer: DropTargetContainerDirective;
|
466
|
-
listComponent: ListComponent;
|
467
465
|
get scrollbarWidth(): number;
|
468
466
|
get headerPadding(): any;
|
469
467
|
columnMenuOptions: any;
|
package/treelist.module.d.ts
CHANGED
@@ -97,20 +97,18 @@ import * as i91 from "./column-menu/column-menu.component";
|
|
97
97
|
import * as i92 from "./column-menu/column-menu-lock.component";
|
98
98
|
import * as i93 from "./column-menu/column-menu-template.directive";
|
99
99
|
import * as i94 from "./column-menu/column-menu-item.directive";
|
100
|
-
import * as i95 from "./
|
101
|
-
import * as i96 from "./
|
102
|
-
import * as i97 from "./excel/excel.
|
103
|
-
import * as i98 from "
|
104
|
-
import * as i99 from "./
|
105
|
-
import * as i100 from "
|
106
|
-
import * as i101 from "./pdf/pdf.
|
107
|
-
import * as i102 from "./pdf/pdf-
|
108
|
-
import * as i103 from "./pdf/pdf-command.directive";
|
109
|
-
import * as i104 from "
|
110
|
-
import * as i105 from "
|
111
|
-
import * as i106 from "
|
112
|
-
import * as i107 from "@progress/kendo-angular-pager";
|
113
|
-
import * as i108 from "./column-resizing/table.directive";
|
100
|
+
import * as i95 from "./excel/excel.component";
|
101
|
+
import * as i96 from "./excel/excel-command.directive";
|
102
|
+
import * as i97 from "./excel/excel-command-tool.directive";
|
103
|
+
import * as i98 from "@progress/kendo-angular-excel-export";
|
104
|
+
import * as i99 from "./pdf/pdf.component";
|
105
|
+
import * as i100 from "./pdf/pdf-margin.component";
|
106
|
+
import * as i101 from "./pdf/pdf-command.directive";
|
107
|
+
import * as i102 from "./pdf/pdf-template.directive";
|
108
|
+
import * as i103 from "./pdf/pdf-command-tool.directive";
|
109
|
+
import * as i104 from "@progress/kendo-angular-toolbar";
|
110
|
+
import * as i105 from "@progress/kendo-angular-pager";
|
111
|
+
import * as i106 from "./column-resizing/table.directive";
|
114
112
|
/**
|
115
113
|
* Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the TreeList component.
|
116
114
|
* Use this module to enable TreeList features in your application.
|
@@ -132,6 +130,6 @@ import * as i108 from "./column-resizing/table.directive";
|
|
132
130
|
*/
|
133
131
|
export declare class TreeListModule {
|
134
132
|
static ɵfac: i0.ɵɵFactoryDeclaration<TreeListModule, never>;
|
135
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TreeListModule, never, [typeof i1.TreeListComponent, typeof i2.ToolbarTemplateDirective, typeof i3.ToolbarComponent, typeof i4.TreeListSpacerComponent, typeof i5.CustomMessagesComponent, typeof i6.TemplateEditingDirective, typeof i7.ReactiveEditingDirective, typeof i8.InCellEditingDirective, typeof i9.HierarchyBindingDirective, typeof i10.FlatBindingDirective, typeof i11.ExpandableDirective, typeof i12.SelectableDirective, typeof i13.TreeListToolbarFocusableDirective, typeof i14.ColumnComponent, typeof i15.ColumnGroupComponent, typeof i16.LogicalCellDirective, typeof i17.LogicalRowDirective, typeof i18.FocusableDirective, typeof i19.ColGroupComponent, typeof i20.ResizableContainerDirective, typeof i21.TemplateContextDirective, typeof i22.FieldAccessorPipe, typeof i23.SpanColumnComponent, typeof i24.LoadingComponent, typeof i25.FilterCellOperatorsComponent, typeof i26.CheckboxColumnComponent, typeof i27.RowReorderColumnComponent, typeof i28.CommandColumnComponent, typeof i29.CellTemplateDirective, typeof i30.CellComponent, typeof i31.NoRecordsTemplateDirective, typeof i32.EditTemplateDirective, typeof i33.EditCommandDirective, typeof i34.CancelCommandDirective, typeof i35.SaveCommandDirective, typeof i36.RemoveCommandDirective, typeof i37.AddCommandDirective, typeof i38.AddCommandToolbarDirective, typeof i39.FooterTemplateDirective, typeof i40.HeaderComponent, typeof i41.HeaderTemplateDirective, typeof i42.ColumnHandleDirective, typeof i43.FilterRowComponent, typeof i44.FilterCellComponent, typeof i45.FilterCellTemplateDirective, typeof i46.StringFilterCellComponent, typeof i47.NumericFilterCellComponent, typeof i48.AutoCompleteFilterCellComponent, typeof i49.BooleanFilterCellComponent, typeof i50.FilterCellHostDirective, typeof i51.FilterCellWrapperComponent, typeof i52.DateFilterCellComponent, typeof i25.FilterCellOperatorsComponent, typeof i53.ContainsFilterOperatorComponent, typeof i54.DoesNotContainFilterOperatorComponent, typeof i55.EndsWithFilterOperatorComponent, typeof i56.EqualFilterOperatorComponent, typeof i57.IsEmptyFilterOperatorComponent, typeof i58.IsNotEmptyFilterOperatorComponent, typeof i59.IsNotNullFilterOperatorComponent, typeof i60.IsNullFilterOperatorComponent, typeof i61.NotEqualFilterOperatorComponent, typeof i62.StartsWithFilterOperatorComponent, typeof i63.GreaterFilterOperatorComponent, typeof i64.GreaterOrEqualToFilterOperatorComponent, typeof i65.LessFilterOperatorComponent, typeof i66.LessOrEqualToFilterOperatorComponent, typeof i67.AfterFilterOperatorComponent, typeof i68.AfterEqFilterOperatorComponent, typeof i69.BeforeEqFilterOperatorComponent, typeof i70.BeforeFilterOperatorComponent, typeof i71.FilterInputDirective, typeof i14.ColumnComponent, typeof i15.ColumnGroupComponent, typeof i16.LogicalCellDirective, typeof i17.LogicalRowDirective, typeof i18.FocusableDirective, typeof i19.ColGroupComponent, typeof i20.ResizableContainerDirective, typeof i21.TemplateContextDirective, typeof i22.FieldAccessorPipe, typeof i23.SpanColumnComponent, typeof i24.LoadingComponent, typeof i25.FilterCellOperatorsComponent, typeof i26.CheckboxColumnComponent, typeof i27.RowReorderColumnComponent, typeof i72.FilterMenuComponent, typeof i73.FilterMenuContainerComponent, typeof i74.FilterMenuInputWrapperComponent, typeof i75.StringFilterMenuInputComponent, typeof i76.StringFilterMenuComponent, typeof i77.FilterMenuTemplateDirective, typeof i78.NumericFilterMenuComponent, typeof i79.NumericFilterMenuInputComponent, typeof i80.DateFilterMenuInputComponent, typeof i81.DateFilterMenuComponent, typeof i82.FilterMenuHostDirective, typeof i83.BooleanFilterMenuComponent, typeof i84.BooleanFilterRadioButtonDirective, typeof i85.ColumnChooserComponent, typeof i86.ColumnMenuChooserComponent, typeof i87.ColumnMenuFilterComponent, typeof i88.ColumnMenuItemComponent, typeof i89.ColumnMenuItemContentTemplateDirective, typeof i90.ColumnMenuSortComponent, typeof i91.ColumnMenuComponent, typeof i92.ColumnMenuLockComponent, typeof i93.ColumnMenuTemplateDirective, typeof i94.ColumnMenuItemDirective, typeof i95.ColumnMenuAutoSizeColumnComponent, typeof i96.ColumnMenuAutoSizeAllColumnsComponent, typeof i97.ExcelComponent, typeof i98.ExcelCommandDirective, typeof i99.ExcelCommandToolbarDirective, typeof i100.ColumnComponent, typeof i100.ColumnGroupComponent, typeof i100.FooterTemplateDirective, typeof i100.GroupFooterTemplateDirective, typeof i100.GroupHeaderColumnTemplateDirective, typeof i100.GroupHeaderTemplateDirective, typeof i101.PDFComponent, typeof i102.PDFMarginComponent, typeof i103.PDFCommandDirective, typeof i104.PDFTemplateDirective, typeof i105.PDFCommandToolbarDirective, typeof i106.ToolBarComponent, typeof i106.ToolbarCustomMessagesComponent, typeof i106.ToolBarButtonComponent, typeof i106.ToolBarButtonGroupComponent, typeof i106.ToolBarDropDownButtonComponent, typeof i106.ToolBarSeparatorComponent, typeof i106.ToolBarSpacerComponent, typeof i106.ToolBarSplitButtonComponent, typeof i106.ToolBarToolComponent, typeof i107.CustomMessagesComponent, typeof i107.PagerFocusableDirective, typeof i107.PagerInfoComponent, typeof i107.PagerInputComponent, typeof i107.PagerNextButtonsComponent, typeof i107.PagerNumericButtonsComponent, typeof i107.PagerPageSizesComponent, typeof i107.PagerPrevButtonsComponent, typeof i107.PagerTemplateDirective, typeof i107.PagerComponent, typeof i107.PagerSpacerComponent, typeof i108.TableDirective], [typeof i1.TreeListComponent, typeof i2.ToolbarTemplateDirective, typeof i3.ToolbarComponent, typeof i4.TreeListSpacerComponent, typeof i5.CustomMessagesComponent, typeof i6.TemplateEditingDirective, typeof i7.ReactiveEditingDirective, typeof i8.InCellEditingDirective, typeof i9.HierarchyBindingDirective, typeof i10.FlatBindingDirective, typeof i11.ExpandableDirective, typeof i12.SelectableDirective, typeof i13.TreeListToolbarFocusableDirective, typeof i14.ColumnComponent, typeof i15.ColumnGroupComponent, typeof i16.LogicalCellDirective, typeof i17.LogicalRowDirective, typeof i18.FocusableDirective, typeof i19.ColGroupComponent, typeof i20.ResizableContainerDirective, typeof i21.TemplateContextDirective, typeof i22.FieldAccessorPipe, typeof i23.SpanColumnComponent, typeof i24.LoadingComponent, typeof i25.FilterCellOperatorsComponent, typeof i26.CheckboxColumnComponent, typeof i27.RowReorderColumnComponent, typeof i28.CommandColumnComponent, typeof i29.CellTemplateDirective, typeof i30.CellComponent, typeof i31.NoRecordsTemplateDirective, typeof i32.EditTemplateDirective, typeof i33.EditCommandDirective, typeof i34.CancelCommandDirective, typeof i35.SaveCommandDirective, typeof i36.RemoveCommandDirective, typeof i37.AddCommandDirective, typeof i38.AddCommandToolbarDirective, typeof i39.FooterTemplateDirective, typeof i40.HeaderComponent, typeof i41.HeaderTemplateDirective, typeof i42.ColumnHandleDirective, typeof i43.FilterRowComponent, typeof i44.FilterCellComponent, typeof i45.FilterCellTemplateDirective, typeof i46.StringFilterCellComponent, typeof i47.NumericFilterCellComponent, typeof i48.AutoCompleteFilterCellComponent, typeof i49.BooleanFilterCellComponent, typeof i50.FilterCellHostDirective, typeof i51.FilterCellWrapperComponent, typeof i52.DateFilterCellComponent, typeof i25.FilterCellOperatorsComponent, typeof i53.ContainsFilterOperatorComponent, typeof i54.DoesNotContainFilterOperatorComponent, typeof i55.EndsWithFilterOperatorComponent, typeof i56.EqualFilterOperatorComponent, typeof i57.IsEmptyFilterOperatorComponent, typeof i58.IsNotEmptyFilterOperatorComponent, typeof i59.IsNotNullFilterOperatorComponent, typeof i60.IsNullFilterOperatorComponent, typeof i61.NotEqualFilterOperatorComponent, typeof i62.StartsWithFilterOperatorComponent, typeof i63.GreaterFilterOperatorComponent, typeof i64.GreaterOrEqualToFilterOperatorComponent, typeof i65.LessFilterOperatorComponent, typeof i66.LessOrEqualToFilterOperatorComponent, typeof i67.AfterFilterOperatorComponent, typeof i68.AfterEqFilterOperatorComponent, typeof i69.BeforeEqFilterOperatorComponent, typeof i70.BeforeFilterOperatorComponent, typeof i71.FilterInputDirective, typeof i14.ColumnComponent, typeof i15.ColumnGroupComponent, typeof i16.LogicalCellDirective, typeof i17.LogicalRowDirective, typeof i18.FocusableDirective, typeof i19.ColGroupComponent, typeof i20.ResizableContainerDirective, typeof i21.TemplateContextDirective, typeof i22.FieldAccessorPipe, typeof i23.SpanColumnComponent, typeof i24.LoadingComponent, typeof i25.FilterCellOperatorsComponent, typeof i26.CheckboxColumnComponent, typeof i27.RowReorderColumnComponent, typeof i72.FilterMenuComponent, typeof i73.FilterMenuContainerComponent, typeof i74.FilterMenuInputWrapperComponent, typeof i75.StringFilterMenuInputComponent, typeof i76.StringFilterMenuComponent, typeof i77.FilterMenuTemplateDirective, typeof i78.NumericFilterMenuComponent, typeof i79.NumericFilterMenuInputComponent, typeof i80.DateFilterMenuInputComponent, typeof i81.DateFilterMenuComponent, typeof i82.FilterMenuHostDirective, typeof i83.BooleanFilterMenuComponent, typeof i84.BooleanFilterRadioButtonDirective, typeof i85.ColumnChooserComponent, typeof i86.ColumnMenuChooserComponent, typeof i87.ColumnMenuFilterComponent, typeof i88.ColumnMenuItemComponent, typeof i89.ColumnMenuItemContentTemplateDirective, typeof i90.ColumnMenuSortComponent, typeof i91.ColumnMenuComponent, typeof i92.ColumnMenuLockComponent, typeof i93.ColumnMenuTemplateDirective, typeof i94.ColumnMenuItemDirective, typeof i95.ColumnMenuAutoSizeColumnComponent, typeof i96.ColumnMenuAutoSizeAllColumnsComponent, typeof i97.ExcelComponent, typeof i98.ExcelCommandDirective, typeof i99.ExcelCommandToolbarDirective, typeof i100.ColumnComponent, typeof i100.ColumnGroupComponent, typeof i100.FooterTemplateDirective, typeof i100.GroupFooterTemplateDirective, typeof i100.GroupHeaderColumnTemplateDirective, typeof i100.GroupHeaderTemplateDirective, typeof i101.PDFComponent, typeof i102.PDFMarginComponent, typeof i103.PDFCommandDirective, typeof i104.PDFTemplateDirective, typeof i105.PDFCommandToolbarDirective, typeof i106.ToolBarComponent, typeof i106.ToolbarCustomMessagesComponent, typeof i106.ToolBarButtonComponent, typeof i106.ToolBarButtonGroupComponent, typeof i106.ToolBarDropDownButtonComponent, typeof i106.ToolBarSeparatorComponent, typeof i106.ToolBarSpacerComponent, typeof i106.ToolBarSplitButtonComponent, typeof i106.ToolBarToolComponent, typeof i107.CustomMessagesComponent, typeof i107.PagerFocusableDirective, typeof i107.PagerInfoComponent, typeof i107.PagerInputComponent, typeof i107.PagerNextButtonsComponent, typeof i107.PagerNumericButtonsComponent, typeof i107.PagerPageSizesComponent, typeof i107.PagerPrevButtonsComponent, typeof i107.PagerTemplateDirective, typeof i107.PagerComponent, typeof i107.PagerSpacerComponent]>;
|
133
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TreeListModule, never, [typeof i1.TreeListComponent, typeof i2.ToolbarTemplateDirective, typeof i3.ToolbarComponent, typeof i4.TreeListSpacerComponent, typeof i5.CustomMessagesComponent, typeof i6.TemplateEditingDirective, typeof i7.ReactiveEditingDirective, typeof i8.InCellEditingDirective, typeof i9.HierarchyBindingDirective, typeof i10.FlatBindingDirective, typeof i11.ExpandableDirective, typeof i12.SelectableDirective, typeof i13.TreeListToolbarFocusableDirective, typeof i14.ColumnComponent, typeof i15.ColumnGroupComponent, typeof i16.LogicalCellDirective, typeof i17.LogicalRowDirective, typeof i18.FocusableDirective, typeof i19.ColGroupComponent, typeof i20.ResizableContainerDirective, typeof i21.TemplateContextDirective, typeof i22.FieldAccessorPipe, typeof i23.SpanColumnComponent, typeof i24.LoadingComponent, typeof i25.FilterCellOperatorsComponent, typeof i26.CheckboxColumnComponent, typeof i27.RowReorderColumnComponent, typeof i28.CommandColumnComponent, typeof i29.CellTemplateDirective, typeof i30.CellComponent, typeof i31.NoRecordsTemplateDirective, typeof i32.EditTemplateDirective, typeof i33.EditCommandDirective, typeof i34.CancelCommandDirective, typeof i35.SaveCommandDirective, typeof i36.RemoveCommandDirective, typeof i37.AddCommandDirective, typeof i38.AddCommandToolbarDirective, typeof i39.FooterTemplateDirective, typeof i40.HeaderComponent, typeof i41.HeaderTemplateDirective, typeof i42.ColumnHandleDirective, typeof i43.FilterRowComponent, typeof i44.FilterCellComponent, typeof i45.FilterCellTemplateDirective, typeof i46.StringFilterCellComponent, typeof i47.NumericFilterCellComponent, typeof i48.AutoCompleteFilterCellComponent, typeof i49.BooleanFilterCellComponent, typeof i50.FilterCellHostDirective, typeof i51.FilterCellWrapperComponent, typeof i52.DateFilterCellComponent, typeof i25.FilterCellOperatorsComponent, typeof i53.ContainsFilterOperatorComponent, typeof i54.DoesNotContainFilterOperatorComponent, typeof i55.EndsWithFilterOperatorComponent, typeof i56.EqualFilterOperatorComponent, typeof i57.IsEmptyFilterOperatorComponent, typeof i58.IsNotEmptyFilterOperatorComponent, typeof i59.IsNotNullFilterOperatorComponent, typeof i60.IsNullFilterOperatorComponent, typeof i61.NotEqualFilterOperatorComponent, typeof i62.StartsWithFilterOperatorComponent, typeof i63.GreaterFilterOperatorComponent, typeof i64.GreaterOrEqualToFilterOperatorComponent, typeof i65.LessFilterOperatorComponent, typeof i66.LessOrEqualToFilterOperatorComponent, typeof i67.AfterFilterOperatorComponent, typeof i68.AfterEqFilterOperatorComponent, typeof i69.BeforeEqFilterOperatorComponent, typeof i70.BeforeFilterOperatorComponent, typeof i71.FilterInputDirective, typeof i14.ColumnComponent, typeof i15.ColumnGroupComponent, typeof i16.LogicalCellDirective, typeof i17.LogicalRowDirective, typeof i18.FocusableDirective, typeof i19.ColGroupComponent, typeof i20.ResizableContainerDirective, typeof i21.TemplateContextDirective, typeof i22.FieldAccessorPipe, typeof i23.SpanColumnComponent, typeof i24.LoadingComponent, typeof i25.FilterCellOperatorsComponent, typeof i26.CheckboxColumnComponent, typeof i27.RowReorderColumnComponent, typeof i72.FilterMenuComponent, typeof i73.FilterMenuContainerComponent, typeof i74.FilterMenuInputWrapperComponent, typeof i75.StringFilterMenuInputComponent, typeof i76.StringFilterMenuComponent, typeof i77.FilterMenuTemplateDirective, typeof i78.NumericFilterMenuComponent, typeof i79.NumericFilterMenuInputComponent, typeof i80.DateFilterMenuInputComponent, typeof i81.DateFilterMenuComponent, typeof i82.FilterMenuHostDirective, typeof i83.BooleanFilterMenuComponent, typeof i84.BooleanFilterRadioButtonDirective, typeof i85.ColumnChooserComponent, typeof i86.ColumnMenuChooserComponent, typeof i87.ColumnMenuFilterComponent, typeof i88.ColumnMenuItemComponent, typeof i89.ColumnMenuItemContentTemplateDirective, typeof i90.ColumnMenuSortComponent, typeof i91.ColumnMenuComponent, typeof i92.ColumnMenuLockComponent, typeof i93.ColumnMenuTemplateDirective, typeof i94.ColumnMenuItemDirective, typeof i95.ExcelComponent, typeof i96.ExcelCommandDirective, typeof i97.ExcelCommandToolbarDirective, typeof i98.ColumnComponent, typeof i98.ColumnGroupComponent, typeof i98.FooterTemplateDirective, typeof i98.GroupFooterTemplateDirective, typeof i98.GroupHeaderColumnTemplateDirective, typeof i98.GroupHeaderTemplateDirective, typeof i99.PDFComponent, typeof i100.PDFMarginComponent, typeof i101.PDFCommandDirective, typeof i102.PDFTemplateDirective, typeof i103.PDFCommandToolbarDirective, typeof i104.ToolBarComponent, typeof i104.ToolbarCustomMessagesComponent, typeof i104.ToolBarButtonComponent, typeof i104.ToolBarButtonGroupComponent, typeof i104.ToolBarDropDownButtonComponent, typeof i104.ToolBarSeparatorComponent, typeof i104.ToolBarSpacerComponent, typeof i104.ToolBarSplitButtonComponent, typeof i104.ToolBarToolComponent, typeof i105.CustomMessagesComponent, typeof i105.PagerFocusableDirective, typeof i105.PagerInfoComponent, typeof i105.PagerInputComponent, typeof i105.PagerNextButtonsComponent, typeof i105.PagerNumericButtonsComponent, typeof i105.PagerPageSizesComponent, typeof i105.PagerPrevButtonsComponent, typeof i105.PagerTemplateDirective, typeof i105.PagerComponent, typeof i105.PagerSpacerComponent, typeof i106.TableDirective], [typeof i1.TreeListComponent, typeof i2.ToolbarTemplateDirective, typeof i3.ToolbarComponent, typeof i4.TreeListSpacerComponent, typeof i5.CustomMessagesComponent, typeof i6.TemplateEditingDirective, typeof i7.ReactiveEditingDirective, typeof i8.InCellEditingDirective, typeof i9.HierarchyBindingDirective, typeof i10.FlatBindingDirective, typeof i11.ExpandableDirective, typeof i12.SelectableDirective, typeof i13.TreeListToolbarFocusableDirective, typeof i14.ColumnComponent, typeof i15.ColumnGroupComponent, typeof i16.LogicalCellDirective, typeof i17.LogicalRowDirective, typeof i18.FocusableDirective, typeof i19.ColGroupComponent, typeof i20.ResizableContainerDirective, typeof i21.TemplateContextDirective, typeof i22.FieldAccessorPipe, typeof i23.SpanColumnComponent, typeof i24.LoadingComponent, typeof i25.FilterCellOperatorsComponent, typeof i26.CheckboxColumnComponent, typeof i27.RowReorderColumnComponent, typeof i28.CommandColumnComponent, typeof i29.CellTemplateDirective, typeof i30.CellComponent, typeof i31.NoRecordsTemplateDirective, typeof i32.EditTemplateDirective, typeof i33.EditCommandDirective, typeof i34.CancelCommandDirective, typeof i35.SaveCommandDirective, typeof i36.RemoveCommandDirective, typeof i37.AddCommandDirective, typeof i38.AddCommandToolbarDirective, typeof i39.FooterTemplateDirective, typeof i40.HeaderComponent, typeof i41.HeaderTemplateDirective, typeof i42.ColumnHandleDirective, typeof i43.FilterRowComponent, typeof i44.FilterCellComponent, typeof i45.FilterCellTemplateDirective, typeof i46.StringFilterCellComponent, typeof i47.NumericFilterCellComponent, typeof i48.AutoCompleteFilterCellComponent, typeof i49.BooleanFilterCellComponent, typeof i50.FilterCellHostDirective, typeof i51.FilterCellWrapperComponent, typeof i52.DateFilterCellComponent, typeof i25.FilterCellOperatorsComponent, typeof i53.ContainsFilterOperatorComponent, typeof i54.DoesNotContainFilterOperatorComponent, typeof i55.EndsWithFilterOperatorComponent, typeof i56.EqualFilterOperatorComponent, typeof i57.IsEmptyFilterOperatorComponent, typeof i58.IsNotEmptyFilterOperatorComponent, typeof i59.IsNotNullFilterOperatorComponent, typeof i60.IsNullFilterOperatorComponent, typeof i61.NotEqualFilterOperatorComponent, typeof i62.StartsWithFilterOperatorComponent, typeof i63.GreaterFilterOperatorComponent, typeof i64.GreaterOrEqualToFilterOperatorComponent, typeof i65.LessFilterOperatorComponent, typeof i66.LessOrEqualToFilterOperatorComponent, typeof i67.AfterFilterOperatorComponent, typeof i68.AfterEqFilterOperatorComponent, typeof i69.BeforeEqFilterOperatorComponent, typeof i70.BeforeFilterOperatorComponent, typeof i71.FilterInputDirective, typeof i14.ColumnComponent, typeof i15.ColumnGroupComponent, typeof i16.LogicalCellDirective, typeof i17.LogicalRowDirective, typeof i18.FocusableDirective, typeof i19.ColGroupComponent, typeof i20.ResizableContainerDirective, typeof i21.TemplateContextDirective, typeof i22.FieldAccessorPipe, typeof i23.SpanColumnComponent, typeof i24.LoadingComponent, typeof i25.FilterCellOperatorsComponent, typeof i26.CheckboxColumnComponent, typeof i27.RowReorderColumnComponent, typeof i72.FilterMenuComponent, typeof i73.FilterMenuContainerComponent, typeof i74.FilterMenuInputWrapperComponent, typeof i75.StringFilterMenuInputComponent, typeof i76.StringFilterMenuComponent, typeof i77.FilterMenuTemplateDirective, typeof i78.NumericFilterMenuComponent, typeof i79.NumericFilterMenuInputComponent, typeof i80.DateFilterMenuInputComponent, typeof i81.DateFilterMenuComponent, typeof i82.FilterMenuHostDirective, typeof i83.BooleanFilterMenuComponent, typeof i84.BooleanFilterRadioButtonDirective, typeof i85.ColumnChooserComponent, typeof i86.ColumnMenuChooserComponent, typeof i87.ColumnMenuFilterComponent, typeof i88.ColumnMenuItemComponent, typeof i89.ColumnMenuItemContentTemplateDirective, typeof i90.ColumnMenuSortComponent, typeof i91.ColumnMenuComponent, typeof i92.ColumnMenuLockComponent, typeof i93.ColumnMenuTemplateDirective, typeof i94.ColumnMenuItemDirective, typeof i95.ExcelComponent, typeof i96.ExcelCommandDirective, typeof i97.ExcelCommandToolbarDirective, typeof i98.ColumnComponent, typeof i98.ColumnGroupComponent, typeof i98.FooterTemplateDirective, typeof i98.GroupFooterTemplateDirective, typeof i98.GroupHeaderColumnTemplateDirective, typeof i98.GroupHeaderTemplateDirective, typeof i99.PDFComponent, typeof i100.PDFMarginComponent, typeof i101.PDFCommandDirective, typeof i102.PDFTemplateDirective, typeof i103.PDFCommandToolbarDirective, typeof i104.ToolBarComponent, typeof i104.ToolbarCustomMessagesComponent, typeof i104.ToolBarButtonComponent, typeof i104.ToolBarButtonGroupComponent, typeof i104.ToolBarDropDownButtonComponent, typeof i104.ToolBarSeparatorComponent, typeof i104.ToolBarSpacerComponent, typeof i104.ToolBarSplitButtonComponent, typeof i104.ToolBarToolComponent, typeof i105.CustomMessagesComponent, typeof i105.PagerFocusableDirective, typeof i105.PagerInfoComponent, typeof i105.PagerInputComponent, typeof i105.PagerNextButtonsComponent, typeof i105.PagerNumericButtonsComponent, typeof i105.PagerPageSizesComponent, typeof i105.PagerPrevButtonsComponent, typeof i105.PagerTemplateDirective, typeof i105.PagerComponent, typeof i105.PagerSpacerComponent]>;
|
136
134
|
static ɵinj: i0.ɵɵInjectorDeclaration<TreeListModule>;
|
137
135
|
}
|