@progress/kendo-angular-treelist 19.2.0-develop.1 → 19.2.0-develop.10
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/column-menu/column-menu-item.directive.d.ts +1 -1
- package/columns/column-base.d.ts +5 -0
- package/directives.d.ts +5 -3
- package/esm2022/column-menu/column-menu-item.directive.mjs +1 -1
- package/esm2022/columns/column-base.mjs +9 -0
- package/esm2022/directives.mjs +6 -2
- package/esm2022/index.mjs +2 -0
- 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 +12 -4
- package/esm2022/treelist.module.mjs +15 -13
- package/fesm2022/progress-kendo-angular-treelist.mjs +75 -56
- package/index.d.ts +2 -0
- 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 +2 -0
- package/treelist.module.d.ts +15 -13
@@ -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,6 +53,10 @@ export declare class ColumnBase implements OnChanges {
|
|
53
53
|
* @hidden
|
54
54
|
*/
|
55
55
|
isSpanColumn: boolean;
|
56
|
+
/**
|
57
|
+
* @hidden
|
58
|
+
*/
|
59
|
+
get id(): string;
|
56
60
|
/**
|
57
61
|
* Indicates whether the column is resizable.
|
58
62
|
* @default true
|
@@ -213,6 +217,7 @@ export declare class ColumnBase implements OnChanges {
|
|
213
217
|
* @hidden
|
214
218
|
*/
|
215
219
|
get isEditable(): boolean;
|
220
|
+
private _id;
|
216
221
|
/**
|
217
222
|
* @hidden
|
218
223
|
*/
|
package/directives.d.ts
CHANGED
@@ -71,6 +71,8 @@ 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";
|
74
76
|
import { ColumnMenuTemplateDirective } from './column-menu/column-menu-template.directive';
|
75
77
|
import { ColumnMenuComponent } from './column-menu/column-menu.component';
|
76
78
|
import { LogicalCellDirective } from './navigation/logical-cell.directive';
|
@@ -127,7 +129,7 @@ export declare const HEADER_EXPORTS: readonly [typeof HeaderComponent, typeof He
|
|
127
129
|
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];
|
128
130
|
/**
|
129
131
|
* @hidden
|
130
|
-
* Utility array that contains the former
|
132
|
+
* Utility array that contains the former FilterRow module exports.
|
131
133
|
*/
|
132
134
|
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];
|
133
135
|
/**
|
@@ -139,7 +141,7 @@ export declare const FILTER_MENU_EXPORTS: readonly [typeof FilterMenuComponent,
|
|
139
141
|
* @hidden
|
140
142
|
* Utility array that contains the former ColumnMenu module exports.
|
141
143
|
*/
|
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];
|
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, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent];
|
143
145
|
/**
|
144
146
|
* @hidden
|
145
147
|
* Utility array that contains the Excel module exports.
|
@@ -154,4 +156,4 @@ export declare const KENDO_TREELIST_PDF_EXPORT: readonly [typeof PDFComponent, t
|
|
154
156
|
* Utility array that contains all `@progress/kendo-angular-treelist`-related components and directives.
|
155
157
|
* Use it to import all TreeList components and directives into a standalone Angular application.
|
156
158
|
*/
|
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];
|
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 ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, 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,6 +9,7 @@ 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;
|
12
13
|
/**
|
13
14
|
* @hidden
|
14
15
|
*/
|
@@ -59,6 +60,12 @@ export class ColumnBase {
|
|
59
60
|
* @hidden
|
60
61
|
*/
|
61
62
|
isSpanColumn = false;
|
63
|
+
/**
|
64
|
+
* @hidden
|
65
|
+
*/
|
66
|
+
get id() {
|
67
|
+
return this._id;
|
68
|
+
}
|
62
69
|
/**
|
63
70
|
* Indicates whether the column is resizable.
|
64
71
|
* @default true
|
@@ -238,6 +245,7 @@ export class ColumnBase {
|
|
238
245
|
get isEditable() {
|
239
246
|
return false;
|
240
247
|
}
|
248
|
+
_id;
|
241
249
|
/**
|
242
250
|
* @hidden
|
243
251
|
*/
|
@@ -247,6 +255,7 @@ export class ColumnBase {
|
|
247
255
|
if (parent && !isColumnContainer(parent)) {
|
248
256
|
throw new Error('Columns can be nested only inside ColumnGroupComponent');
|
249
257
|
}
|
258
|
+
this._id = `k-grid-column-${columnId++}`;
|
250
259
|
}
|
251
260
|
ngOnChanges(_changes) {
|
252
261
|
if (this.optionChanges) {
|
package/esm2022/directives.mjs
CHANGED
@@ -71,6 +71,8 @@ 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";
|
74
76
|
import { ColumnMenuTemplateDirective } from './column-menu/column-menu-template.directive';
|
75
77
|
import { ColumnMenuComponent } from './column-menu/column-menu.component';
|
76
78
|
import { LogicalCellDirective } from './navigation/logical-cell.directive';
|
@@ -182,7 +184,7 @@ export const SHARED_FILTER_EXPORTS = [
|
|
182
184
|
];
|
183
185
|
/**
|
184
186
|
* @hidden
|
185
|
-
* Utility array that contains the former
|
187
|
+
* Utility array that contains the former FilterRow module exports.
|
186
188
|
*/
|
187
189
|
export const ROW_FILTER_EXPORTS = [
|
188
190
|
FilterRowComponent,
|
@@ -230,7 +232,9 @@ export const COLUMN_MENU_EXPORTS = [
|
|
230
232
|
ColumnMenuComponent,
|
231
233
|
ColumnMenuLockComponent,
|
232
234
|
ColumnMenuTemplateDirective,
|
233
|
-
ColumnMenuItemDirective
|
235
|
+
ColumnMenuItemDirective,
|
236
|
+
ColumnMenuAutoSizeColumnComponent,
|
237
|
+
ColumnMenuAutoSizeAllColumnsComponent
|
234
238
|
];
|
235
239
|
/**
|
236
240
|
* @hidden
|
package/esm2022/index.mjs
CHANGED
@@ -115,6 +115,8 @@ 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';
|
118
120
|
export { ColumnMenuItemContentTemplateDirective } from './column-menu/column-menu-item-content-template.directive';
|
119
121
|
export { ColumnMenuItemComponent } from './column-menu/column-menu-item.component';
|
120
122
|
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: 1751281305,
|
14
|
+
version: '19.2.0-develop.10',
|
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 treelistInstance = this.contextService.treelist;
|
253
|
+
treelistInstance.reorderColumn(column, normalizedNewIndex, { before: reorderDirectionOffset < 0 });
|
254
|
+
treelistInstance.columnReorder.emit(new ColumnReorderEvent({
|
255
255
|
column,
|
256
256
|
newIndex: normalizedNewIndex,
|
257
257
|
oldIndex: column.leafIndex
|
@@ -298,6 +298,33 @@ 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
|
+
}
|
301
328
|
attachContainerScroll() {
|
302
329
|
if (isUniversal()) {
|
303
330
|
return;
|
@@ -458,33 +485,6 @@ export class ListComponent {
|
|
458
485
|
})
|
459
486
|
.forEach(setHeight(this.renderer));
|
460
487
|
}
|
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,6 +655,7 @@ export class TreeListComponent {
|
|
655
655
|
ariaRoot;
|
656
656
|
dragTargetContainer;
|
657
657
|
dropTargetContainer;
|
658
|
+
listComponent;
|
658
659
|
get scrollbarWidth() {
|
659
660
|
return this.supportService.scrollbarWidth;
|
660
661
|
}
|
@@ -1454,6 +1455,9 @@ export class TreeListComponent {
|
|
1454
1455
|
}
|
1455
1456
|
this.columnOrderChange.emit(args);
|
1456
1457
|
this.columnsContainer.refresh();
|
1458
|
+
if (this.virtualColumns) {
|
1459
|
+
this.listComponent.updateViewportColumns();
|
1460
|
+
}
|
1457
1461
|
this.changeDetectorRef.markForCheck();
|
1458
1462
|
});
|
1459
1463
|
}
|
@@ -1782,8 +1786,8 @@ export class TreeListComponent {
|
|
1782
1786
|
}
|
1783
1787
|
onColumnRangeChange(range) {
|
1784
1788
|
const viewportColumns = this.viewportColumns = [];
|
1785
|
-
const
|
1786
|
-
|
1789
|
+
const columnsArray = this.columnsContainer.nonLockedLeafColumns.toArray();
|
1790
|
+
const leafViewportColumns = columnsArray.slice(range.start, range.end + 1);
|
1787
1791
|
for (let idx = 0; idx < leafViewportColumns.length; idx++) {
|
1788
1792
|
let column = leafViewportColumns[idx];
|
1789
1793
|
while (column.parent) {
|
@@ -1794,7 +1798,8 @@ export class TreeListComponent {
|
|
1794
1798
|
column = toAdd.shift();
|
1795
1799
|
viewportColumns.push(column);
|
1796
1800
|
if (column.isColumnGroup) {
|
1797
|
-
|
1801
|
+
const children = columnsArray.filter(c => c.parent && c.parent.id === column.id);
|
1802
|
+
toAdd.unshift(...children);
|
1798
1803
|
}
|
1799
1804
|
}
|
1800
1805
|
const lastFromGroup = viewportColumns[viewportColumns.length - 1];
|
@@ -1893,7 +1898,7 @@ export class TreeListComponent {
|
|
1893
1898
|
},
|
1894
1899
|
ContextService,
|
1895
1900
|
RowReorderService
|
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: `
|
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: "listComponent", first: true, predicate: ListComponent, descendants: true }, { propertyName: "footer", predicate: ["footer"], descendants: true }], exportAs: ["kendoTreeList"], usesOnChanges: true, ngImport: i0, template: `
|
1897
1902
|
<ng-container kendoTreeListLocalizedMessages
|
1898
1903
|
i18n-noRecords="kendo.treelist.noRecords|The label visible in the TreeList when there are no records"
|
1899
1904
|
noRecords="No records available."
|
@@ -3047,6 +3052,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
3047
3052
|
}], dropTargetContainer: [{
|
3048
3053
|
type: ViewChild,
|
3049
3054
|
args: [DropTargetContainerDirective]
|
3055
|
+
}], listComponent: [{
|
3056
|
+
type: ViewChild,
|
3057
|
+
args: [ListComponent]
|
3050
3058
|
}], fetchChildren: [{
|
3051
3059
|
type: Input
|
3052
3060
|
}], hasChildren: [{
|
@@ -107,17 +107,19 @@ 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
|
119
|
-
import * as i104 from "
|
120
|
-
import * as i105 from "
|
110
|
+
import * as i95 from "./column-menu/column-menu-autosize.component";
|
111
|
+
import * as i96 from "./column-menu/column-menu-autosize-all.component";
|
112
|
+
import * as i97 from "./excel/excel.component";
|
113
|
+
import * as i98 from "./excel/excel-command.directive";
|
114
|
+
import * as i99 from "./excel/excel-command-tool.directive";
|
115
|
+
import * as i100 from "@progress/kendo-angular-excel-export";
|
116
|
+
import * as i101 from "./pdf/pdf.component";
|
117
|
+
import * as i102 from "./pdf/pdf-margin.component";
|
118
|
+
import * as i103 from "./pdf/pdf-command.directive";
|
119
|
+
import * as i104 from "./pdf/pdf-template.directive";
|
120
|
+
import * as i105 from "./pdf/pdf-command-tool.directive";
|
121
|
+
import * as i106 from "@progress/kendo-angular-toolbar";
|
122
|
+
import * as i107 from "@progress/kendo-angular-pager";
|
121
123
|
// IMPORTANT: NgModule export kept for backwards compatibility
|
122
124
|
/**
|
123
125
|
* Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the TreeList component.
|
@@ -140,7 +142,7 @@ import * as i105 from "@progress/kendo-angular-pager";
|
|
140
142
|
*/
|
141
143
|
export class TreeListModule {
|
142
144
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
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.
|
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.ColumnMenuAutoSizeColumnComponent, i96.ColumnMenuAutoSizeAllColumnsComponent, i97.ExcelComponent, i98.ExcelCommandDirective, i99.ExcelCommandToolbarDirective, i100.ColumnComponent, i100.ColumnGroupComponent, i100.FooterTemplateDirective, i100.GroupFooterTemplateDirective, i100.GroupHeaderColumnTemplateDirective, i100.GroupHeaderTemplateDirective, i101.PDFComponent, i102.PDFMarginComponent, i103.PDFCommandDirective, i104.PDFTemplateDirective, i105.PDFCommandToolbarDirective, i106.ToolBarComponent, i106.ToolbarCustomMessagesComponent, i106.ToolBarButtonComponent, i106.ToolBarButtonGroupComponent, i106.ToolBarDropDownButtonComponent, i106.ToolBarSeparatorComponent, i106.ToolBarSpacerComponent, i106.ToolBarSplitButtonComponent, i106.ToolBarToolComponent, i107.CustomMessagesComponent, i107.PagerFocusableDirective, i107.PagerInfoComponent, i107.PagerInputComponent, i107.PagerNextButtonsComponent, i107.PagerNumericButtonsComponent, i107.PagerPageSizesComponent, i107.PagerPrevButtonsComponent, i107.PagerTemplateDirective, i107.PagerComponent, i107.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.ColumnMenuAutoSizeColumnComponent, i96.ColumnMenuAutoSizeAllColumnsComponent, i97.ExcelComponent, i98.ExcelCommandDirective, i99.ExcelCommandToolbarDirective, i100.ColumnComponent, i100.ColumnGroupComponent, i100.FooterTemplateDirective, i100.GroupFooterTemplateDirective, i100.GroupHeaderColumnTemplateDirective, i100.GroupHeaderTemplateDirective, i101.PDFComponent, i102.PDFMarginComponent, i103.PDFCommandDirective, i104.PDFTemplateDirective, i105.PDFCommandToolbarDirective, i106.ToolBarComponent, i106.ToolbarCustomMessagesComponent, i106.ToolBarButtonComponent, i106.ToolBarButtonGroupComponent, i106.ToolBarDropDownButtonComponent, i106.ToolBarSeparatorComponent, i106.ToolBarSpacerComponent, i106.ToolBarSplitButtonComponent, i106.ToolBarToolComponent, i107.CustomMessagesComponent, i107.PagerFocusableDirective, i107.PagerInfoComponent, i107.PagerInputComponent, i107.PagerNextButtonsComponent, i107.PagerNumericButtonsComponent, i107.PagerPageSizesComponent, i107.PagerPrevButtonsComponent, i107.PagerTemplateDirective, i107.PagerComponent, i107.PagerSpacerComponent] });
|
144
146
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, providers: [
|
145
147
|
IconsService,
|
146
148
|
ResizeBatchService,
|
@@ -155,7 +157,7 @@ export class TreeListModule {
|
|
155
157
|
DialogService,
|
156
158
|
WindowService,
|
157
159
|
WindowContainerService
|
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.
|
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, i95.ColumnMenuAutoSizeColumnComponent, i96.ColumnMenuAutoSizeAllColumnsComponent, i98.ExcelCommandDirective, i100.ColumnComponent, i100.ColumnGroupComponent, i103.PDFCommandDirective, i106.ToolBarComponent, i106.ToolbarCustomMessagesComponent, i106.ToolBarButtonComponent, i106.ToolBarButtonGroupComponent, i106.ToolBarDropDownButtonComponent, i106.ToolBarSeparatorComponent, i106.ToolBarSpacerComponent, i106.ToolBarSplitButtonComponent, i107.CustomMessagesComponent, i107.PagerInfoComponent, i107.PagerInputComponent, i107.PagerNextButtonsComponent, i107.PagerNumericButtonsComponent, i107.PagerPageSizesComponent, i107.PagerPrevButtonsComponent, i107.PagerComponent, i107.PagerSpacerComponent] });
|
159
161
|
}
|
160
162
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, decorators: [{
|
161
163
|
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 i107 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 i100 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 i106 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: 1751281305,
|
53
|
+
version: '19.2.0-develop.10',
|
54
54
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
55
55
|
};
|
56
56
|
|
@@ -279,6 +279,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
279
279
|
type: Optional
|
280
280
|
}] }]; } });
|
281
281
|
|
282
|
+
let columnId = 0;
|
282
283
|
/**
|
283
284
|
* @hidden
|
284
285
|
*/
|
@@ -329,6 +330,12 @@ class ColumnBase {
|
|
329
330
|
* @hidden
|
330
331
|
*/
|
331
332
|
isSpanColumn = false;
|
333
|
+
/**
|
334
|
+
* @hidden
|
335
|
+
*/
|
336
|
+
get id() {
|
337
|
+
return this._id;
|
338
|
+
}
|
332
339
|
/**
|
333
340
|
* Indicates whether the column is resizable.
|
334
341
|
* @default true
|
@@ -508,6 +515,7 @@ class ColumnBase {
|
|
508
515
|
get isEditable() {
|
509
516
|
return false;
|
510
517
|
}
|
518
|
+
_id;
|
511
519
|
/**
|
512
520
|
* @hidden
|
513
521
|
*/
|
@@ -517,6 +525,7 @@ class ColumnBase {
|
|
517
525
|
if (parent && !isColumnContainer(parent)) {
|
518
526
|
throw new Error('Columns can be nested only inside ColumnGroupComponent');
|
519
527
|
}
|
528
|
+
this._id = `k-grid-column-${columnId++}`;
|
520
529
|
}
|
521
530
|
ngOnChanges(_changes) {
|
522
531
|
if (this.optionChanges) {
|
@@ -5101,12 +5110,12 @@ class NavigationService {
|
|
5101
5110
|
this.leaveCell();
|
5102
5111
|
this.cursor.reset();
|
5103
5112
|
}
|
5104
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService, deps: [{ token: i0.NgZone }, { token: DomEventsService }, { token:
|
5113
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService, deps: [{ token: i0.NgZone }, { token: DomEventsService }, { token: i107.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 });
|
5105
5114
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService });
|
5106
5115
|
}
|
5107
5116
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService, decorators: [{
|
5108
5117
|
type: Injectable
|
5109
|
-
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: DomEventsService }, { type:
|
5118
|
+
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: DomEventsService }, { type: i107.PagerContextService }, { type: ScrollRequestService }, { type: FocusRoot }, { type: EditService }, { type: i1$1.LocalizationService }, { type: ExpandStateService }, { type: SelectionService }, { type: i0.ChangeDetectorRef }, { type: FocusableDirective, decorators: [{
|
5110
5119
|
type: Optional
|
5111
5120
|
}] }]; } });
|
5112
5121
|
|
@@ -7984,6 +7993,33 @@ class ListComponent {
|
|
7984
7993
|
args.preventDefault();
|
7985
7994
|
}
|
7986
7995
|
}
|
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
|
+
}
|
7987
8023
|
attachContainerScroll() {
|
7988
8024
|
if (isUniversal()) {
|
7989
8025
|
return;
|
@@ -8144,33 +8180,6 @@ class ListComponent {
|
|
8144
8180
|
})
|
8145
8181
|
.forEach(setHeight(this.renderer));
|
8146
8182
|
}
|
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
|
-
}
|
8174
8183
|
handleColumnScroll() {
|
8175
8184
|
const container = this.container.nativeElement;
|
8176
8185
|
const scrollLeft = container.scrollLeft;
|
@@ -13774,7 +13783,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
13774
13783
|
|
13775
13784
|
/**
|
13776
13785
|
* Provides keyboard navigation support for TreeList column menu items.
|
13777
|
-
* Use this directive to manage focus and tab order for custom column menu items
|
13786
|
+
* Use this directive to manage focus and tab order for custom column menu items ([see example](slug:columnmenu_treelist#customizing-the-content)).
|
13778
13787
|
*
|
13779
13788
|
* @example
|
13780
13789
|
* ```html
|
@@ -14963,9 +14972,9 @@ class HeaderComponent {
|
|
14963
14972
|
const reorderDirectionOffset = reorderDirection * rtlMultiplier;
|
14964
14973
|
const newIndex = column.leafIndex + reorderDirectionOffset;
|
14965
14974
|
const normalizedNewIndex = Math.min(Math.max(0, newIndex), columnsCount - 1);
|
14966
|
-
const
|
14967
|
-
|
14968
|
-
|
14975
|
+
const treelistInstance = this.contextService.treelist;
|
14976
|
+
treelistInstance.reorderColumn(column, normalizedNewIndex, { before: reorderDirectionOffset < 0 });
|
14977
|
+
treelistInstance.columnReorder.emit(new ColumnReorderEvent({
|
14969
14978
|
column,
|
14970
14979
|
newIndex: normalizedNewIndex,
|
14971
14980
|
oldIndex: column.leafIndex
|
@@ -16852,6 +16861,7 @@ class TreeListComponent {
|
|
16852
16861
|
ariaRoot;
|
16853
16862
|
dragTargetContainer;
|
16854
16863
|
dropTargetContainer;
|
16864
|
+
listComponent;
|
16855
16865
|
get scrollbarWidth() {
|
16856
16866
|
return this.supportService.scrollbarWidth;
|
16857
16867
|
}
|
@@ -17651,6 +17661,9 @@ class TreeListComponent {
|
|
17651
17661
|
}
|
17652
17662
|
this.columnOrderChange.emit(args);
|
17653
17663
|
this.columnsContainer.refresh();
|
17664
|
+
if (this.virtualColumns) {
|
17665
|
+
this.listComponent.updateViewportColumns();
|
17666
|
+
}
|
17654
17667
|
this.changeDetectorRef.markForCheck();
|
17655
17668
|
});
|
17656
17669
|
}
|
@@ -17979,8 +17992,8 @@ class TreeListComponent {
|
|
17979
17992
|
}
|
17980
17993
|
onColumnRangeChange(range) {
|
17981
17994
|
const viewportColumns = this.viewportColumns = [];
|
17982
|
-
const
|
17983
|
-
|
17995
|
+
const columnsArray = this.columnsContainer.nonLockedLeafColumns.toArray();
|
17996
|
+
const leafViewportColumns = columnsArray.slice(range.start, range.end + 1);
|
17984
17997
|
for (let idx = 0; idx < leafViewportColumns.length; idx++) {
|
17985
17998
|
let column = leafViewportColumns[idx];
|
17986
17999
|
while (column.parent) {
|
@@ -17991,7 +18004,8 @@ class TreeListComponent {
|
|
17991
18004
|
column = toAdd.shift();
|
17992
18005
|
viewportColumns.push(column);
|
17993
18006
|
if (column.isColumnGroup) {
|
17994
|
-
|
18007
|
+
const children = columnsArray.filter(c => c.parent && c.parent.id === column.id);
|
18008
|
+
toAdd.unshift(...children);
|
17995
18009
|
}
|
17996
18010
|
}
|
17997
18011
|
const lastFromGroup = viewportColumns[viewportColumns.length - 1];
|
@@ -18090,7 +18104,7 @@ class TreeListComponent {
|
|
18090
18104
|
},
|
18091
18105
|
ContextService,
|
18092
18106
|
RowReorderService
|
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: `
|
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: "listComponent", first: true, predicate: ListComponent, descendants: true }, { propertyName: "footer", predicate: ["footer"], descendants: true }], exportAs: ["kendoTreeList"], usesOnChanges: true, ngImport: i0, template: `
|
18094
18108
|
<ng-container kendoTreeListLocalizedMessages
|
18095
18109
|
i18n-noRecords="kendo.treelist.noRecords|The label visible in the TreeList when there are no records"
|
18096
18110
|
noRecords="No records available."
|
@@ -18557,7 +18571,7 @@ class TreeListComponent {
|
|
18557
18571
|
[pageNumberInputTitle]="messageFor('pagerPageNumberInputTitle')">
|
18558
18572
|
</kendo-pager-messages>
|
18559
18573
|
</ng-template>
|
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:
|
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: i107.CustomMessagesComponent, selector: "kendo-datapager-messages, kendo-pager-messages" }, { kind: "component", type: i107.PagerInfoComponent, selector: "kendo-datapager-info, kendo-pager-info" }, { kind: "component", type: i107.PagerInputComponent, selector: "kendo-datapager-input, kendo-pager-input", inputs: ["showPageText", "size"] }, { kind: "component", type: i107.PagerNextButtonsComponent, selector: "kendo-datapager-next-buttons, kendo-pager-next-buttons", inputs: ["size"] }, { kind: "component", type: i107.PagerNumericButtonsComponent, selector: "kendo-datapager-numeric-buttons, kendo-pager-numeric-buttons", inputs: ["buttonCount", "size"] }, { kind: "component", type: i107.PagerPageSizesComponent, selector: "kendo-datapager-page-sizes, kendo-pager-page-sizes", inputs: ["showItemsText", "pageSizes", "size", "adaptiveMode"] }, { kind: "component", type: i107.PagerPrevButtonsComponent, selector: "kendo-datapager-prev-buttons, kendo-pager-prev-buttons", inputs: ["size"] }, { kind: "directive", type: i107.PagerTemplateDirective, selector: "[kendoDataPagerTemplate], [kendoPagerTemplate]" }, { kind: "component", type: i107.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 });
|
18561
18575
|
}
|
18562
18576
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListComponent, decorators: [{
|
18563
18577
|
type: Component,
|
@@ -19244,6 +19258,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
19244
19258
|
}], dropTargetContainer: [{
|
19245
19259
|
type: ViewChild,
|
19246
19260
|
args: [DropTargetContainerDirective]
|
19261
|
+
}], listComponent: [{
|
19262
|
+
type: ViewChild,
|
19263
|
+
args: [ListComponent]
|
19247
19264
|
}], fetchChildren: [{
|
19248
19265
|
type: Input
|
19249
19266
|
}], hasChildren: [{
|
@@ -23246,7 +23263,7 @@ class ExcelCommandToolbarDirective {
|
|
23246
23263
|
e.preventDefault();
|
23247
23264
|
this.excelService.exportClick.emit();
|
23248
23265
|
}
|
23249
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelCommandToolbarDirective, deps: [{ token: ExcelService }, { token:
|
23266
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelCommandToolbarDirective, deps: [{ token: ExcelService }, { token: i106.ToolBarButtonComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
23250
23267
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ExcelCommandToolbarDirective, isStandalone: true, selector: "[kendoTreeListExcelTool]", ngImport: i0 });
|
23251
23268
|
}
|
23252
23269
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelCommandToolbarDirective, decorators: [{
|
@@ -23255,7 +23272,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
23255
23272
|
selector: '[kendoTreeListExcelTool]',
|
23256
23273
|
standalone: true
|
23257
23274
|
}]
|
23258
|
-
}], ctorParameters: function () { return [{ type: ExcelService }, { type:
|
23275
|
+
}], ctorParameters: function () { return [{ type: ExcelService }, { type: i106.ToolBarButtonComponent }]; } });
|
23259
23276
|
|
23260
23277
|
/**
|
23261
23278
|
* Represents the Kendo UI PDFMargin component for Angular.
|
@@ -23841,7 +23858,7 @@ class AddCommandToolbarDirective {
|
|
23841
23858
|
e.preventDefault();
|
23842
23859
|
this.editService.beginAdd();
|
23843
23860
|
}
|
23844
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddCommandToolbarDirective, deps: [{ token: EditService }, { token:
|
23861
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddCommandToolbarDirective, deps: [{ token: EditService }, { token: i106.ToolBarButtonComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
23845
23862
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AddCommandToolbarDirective, isStandalone: true, selector: "[kendoTreeListAddTool]", ngImport: i0 });
|
23846
23863
|
}
|
23847
23864
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddCommandToolbarDirective, decorators: [{
|
@@ -23850,7 +23867,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
23850
23867
|
selector: '[kendoTreeListAddTool]',
|
23851
23868
|
standalone: true
|
23852
23869
|
}]
|
23853
|
-
}], ctorParameters: function () { return [{ type: EditService }, { type:
|
23870
|
+
}], ctorParameters: function () { return [{ type: EditService }, { type: i106.ToolBarButtonComponent }]; } });
|
23854
23871
|
|
23855
23872
|
/**
|
23856
23873
|
* Represents the `export-to-PDF` toolbar tool of the TreeList.
|
@@ -23898,7 +23915,7 @@ class PDFCommandToolbarDirective {
|
|
23898
23915
|
e.preventDefault();
|
23899
23916
|
this.pdfService.exportClick.emit();
|
23900
23917
|
}
|
23901
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PDFCommandToolbarDirective, deps: [{ token: PDFService }, { token:
|
23918
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PDFCommandToolbarDirective, deps: [{ token: PDFService }, { token: i106.ToolBarButtonComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
23902
23919
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PDFCommandToolbarDirective, isStandalone: true, selector: "[kendoTreeListPDFTool]", ngImport: i0 });
|
23903
23920
|
}
|
23904
23921
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PDFCommandToolbarDirective, decorators: [{
|
@@ -23907,7 +23924,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
23907
23924
|
selector: '[kendoTreeListPDFTool]',
|
23908
23925
|
standalone: true
|
23909
23926
|
}]
|
23910
|
-
}], ctorParameters: function () { return [{ type: PDFService }, { type:
|
23927
|
+
}], ctorParameters: function () { return [{ type: PDFService }, { type: i106.ToolBarButtonComponent }]; } });
|
23911
23928
|
|
23912
23929
|
/**
|
23913
23930
|
* @hidden
|
@@ -23985,7 +24002,7 @@ const SHARED_FILTER_EXPORTS = [
|
|
23985
24002
|
];
|
23986
24003
|
/**
|
23987
24004
|
* @hidden
|
23988
|
-
* Utility array that contains the former
|
24005
|
+
* Utility array that contains the former FilterRow module exports.
|
23989
24006
|
*/
|
23990
24007
|
const ROW_FILTER_EXPORTS = [
|
23991
24008
|
FilterRowComponent,
|
@@ -24033,7 +24050,9 @@ const COLUMN_MENU_EXPORTS = [
|
|
24033
24050
|
ColumnMenuComponent,
|
24034
24051
|
ColumnMenuLockComponent,
|
24035
24052
|
ColumnMenuTemplateDirective,
|
24036
|
-
ColumnMenuItemDirective
|
24053
|
+
ColumnMenuItemDirective,
|
24054
|
+
ColumnMenuAutoSizeColumnComponent,
|
24055
|
+
ColumnMenuAutoSizeAllColumnsComponent
|
24037
24056
|
];
|
24038
24057
|
/**
|
24039
24058
|
* @hidden
|
@@ -24111,7 +24130,7 @@ const KENDO_TREELIST = [
|
|
24111
24130
|
*/
|
24112
24131
|
class TreeListModule {
|
24113
24132
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
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,
|
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, ColumnMenuAutoSizeColumnComponent, ColumnMenuAutoSizeAllColumnsComponent, ExcelComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, i100.ColumnComponent, i100.ColumnGroupComponent, i100.FooterTemplateDirective, i100.GroupFooterTemplateDirective, i100.GroupHeaderColumnTemplateDirective, i100.GroupHeaderTemplateDirective, PDFComponent, PDFMarginComponent, PDFCommandDirective, PDFTemplateDirective, PDFCommandToolbarDirective, i106.ToolBarComponent, i106.ToolbarCustomMessagesComponent, i106.ToolBarButtonComponent, i106.ToolBarButtonGroupComponent, i106.ToolBarDropDownButtonComponent, i106.ToolBarSeparatorComponent, i106.ToolBarSpacerComponent, i106.ToolBarSplitButtonComponent, i106.ToolBarToolComponent, i107.CustomMessagesComponent, i107.PagerFocusableDirective, i107.PagerInfoComponent, i107.PagerInputComponent, i107.PagerNextButtonsComponent, i107.PagerNumericButtonsComponent, i107.PagerPageSizesComponent, i107.PagerPrevButtonsComponent, i107.PagerTemplateDirective, i107.PagerComponent, i107.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, ColumnMenuAutoSizeColumnComponent, ColumnMenuAutoSizeAllColumnsComponent, ExcelComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, i100.ColumnComponent, i100.ColumnGroupComponent, i100.FooterTemplateDirective, i100.GroupFooterTemplateDirective, i100.GroupHeaderColumnTemplateDirective, i100.GroupHeaderTemplateDirective, PDFComponent, PDFMarginComponent, PDFCommandDirective, PDFTemplateDirective, PDFCommandToolbarDirective, i106.ToolBarComponent, i106.ToolbarCustomMessagesComponent, i106.ToolBarButtonComponent, i106.ToolBarButtonGroupComponent, i106.ToolBarDropDownButtonComponent, i106.ToolBarSeparatorComponent, i106.ToolBarSpacerComponent, i106.ToolBarSplitButtonComponent, i106.ToolBarToolComponent, i107.CustomMessagesComponent, i107.PagerFocusableDirective, i107.PagerInfoComponent, i107.PagerInputComponent, i107.PagerNextButtonsComponent, i107.PagerNumericButtonsComponent, i107.PagerPageSizesComponent, i107.PagerPrevButtonsComponent, i107.PagerTemplateDirective, i107.PagerComponent, i107.PagerSpacerComponent] });
|
24115
24134
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, providers: [
|
24116
24135
|
IconsService,
|
24117
24136
|
ResizeBatchService,
|
@@ -24126,7 +24145,7 @@ class TreeListModule {
|
|
24126
24145
|
DialogService,
|
24127
24146
|
WindowService,
|
24128
24147
|
WindowContainerService
|
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,
|
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, ColumnMenuAutoSizeColumnComponent, ColumnMenuAutoSizeAllColumnsComponent, ExcelCommandDirective, i100.ColumnComponent, i100.ColumnGroupComponent, PDFCommandDirective, i106.ToolBarComponent, i106.ToolbarCustomMessagesComponent, i106.ToolBarButtonComponent, i106.ToolBarButtonGroupComponent, i106.ToolBarDropDownButtonComponent, i106.ToolBarSeparatorComponent, i106.ToolBarSpacerComponent, i106.ToolBarSplitButtonComponent, i107.CustomMessagesComponent, i107.PagerInfoComponent, i107.PagerInputComponent, i107.PagerNextButtonsComponent, i107.PagerNumericButtonsComponent, i107.PagerPageSizesComponent, i107.PagerPrevButtonsComponent, i107.PagerComponent, i107.PagerSpacerComponent] });
|
24130
24149
|
}
|
24131
24150
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, decorators: [{
|
24132
24151
|
type: NgModule,
|
@@ -24208,8 +24227,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
24208
24227
|
*/
|
24209
24228
|
class ExcelModule {
|
24210
24229
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
24211
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ExcelModule, imports: [ExcelComponent, ExcelCommandDirective, ExcelCommandToolbarDirective,
|
24212
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelModule, providers: [IconsService], imports: [ExcelCommandDirective,
|
24230
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ExcelModule, imports: [ExcelComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, i100.ColumnComponent, i100.ColumnGroupComponent, i100.FooterTemplateDirective, i100.GroupFooterTemplateDirective, i100.GroupHeaderColumnTemplateDirective, i100.GroupHeaderTemplateDirective], exports: [ExcelComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, i100.ColumnComponent, i100.ColumnGroupComponent, i100.FooterTemplateDirective, i100.GroupFooterTemplateDirective, i100.GroupHeaderColumnTemplateDirective, i100.GroupHeaderTemplateDirective] });
|
24231
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelModule, providers: [IconsService], imports: [ExcelCommandDirective, i100.ColumnComponent, i100.ColumnGroupComponent] });
|
24213
24232
|
}
|
24214
24233
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelModule, decorators: [{
|
24215
24234
|
type: NgModule,
|
@@ -24224,5 +24243,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
24224
24243
|
* Generated bundle index. Do not edit.
|
24225
24244
|
*/
|
24226
24245
|
|
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 };
|
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, ColumnMenuAutoSizeAllColumnsComponent, ColumnMenuAutoSizeColumnComponent, 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 };
|
24228
24247
|
|
package/index.d.ts
CHANGED
@@ -143,6 +143,8 @@ 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';
|
146
148
|
export { ColumnMenuItemContentTemplateDirective } from './column-menu/column-menu-item-content-template.directive';
|
147
149
|
export { ColumnMenuItemComponent } from './column-menu/column-menu-item.component';
|
148
150
|
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.10",
|
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": 1751281305,
|
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.10",
|
41
|
+
"@progress/kendo-angular-common": "19.2.0-develop.10",
|
42
|
+
"@progress/kendo-angular-dateinputs": "19.2.0-develop.10",
|
43
|
+
"@progress/kendo-angular-dropdowns": "19.2.0-develop.10",
|
44
|
+
"@progress/kendo-angular-excel-export": "19.2.0-develop.10",
|
45
|
+
"@progress/kendo-angular-icons": "19.2.0-develop.10",
|
46
|
+
"@progress/kendo-angular-inputs": "19.2.0-develop.10",
|
47
|
+
"@progress/kendo-angular-intl": "19.2.0-develop.10",
|
48
|
+
"@progress/kendo-angular-l10n": "19.2.0-develop.10",
|
49
|
+
"@progress/kendo-angular-label": "19.2.0-develop.10",
|
50
|
+
"@progress/kendo-angular-pager": "19.2.0-develop.10",
|
51
|
+
"@progress/kendo-angular-pdf-export": "19.2.0-develop.10",
|
52
|
+
"@progress/kendo-angular-popup": "19.2.0-develop.10",
|
53
|
+
"@progress/kendo-angular-toolbar": "19.2.0-develop.10",
|
54
|
+
"@progress/kendo-angular-utils": "19.2.0-develop.10",
|
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.10",
|
60
60
|
"@progress/kendo-common": "^1.0.1",
|
61
61
|
"@progress/kendo-file-saver": "^1.0.0"
|
62
62
|
},
|
@@ -114,6 +114,7 @@ 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;
|
117
118
|
private attachContainerScroll;
|
118
119
|
private createScroller;
|
119
120
|
private scroll;
|
@@ -126,7 +127,6 @@ export declare class ListComponent implements OnInit, OnDestroy, AfterViewInit,
|
|
126
127
|
private cleanupScroller;
|
127
128
|
private initResizeService;
|
128
129
|
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.10',
|
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.10',
|
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.10',
|
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,6 +64,7 @@ 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';
|
67
68
|
import { PagerTemplateDirective } from '@progress/kendo-angular-pager';
|
68
69
|
import { PagerSettings } from './common/pager-settings';
|
69
70
|
import * as i0 from "@angular/core";
|
@@ -462,6 +463,7 @@ export declare class TreeListComponent implements AfterContentInit, AfterViewIni
|
|
462
463
|
ariaRoot: ElementRef;
|
463
464
|
dragTargetContainer: DragTargetContainerDirective;
|
464
465
|
dropTargetContainer: DropTargetContainerDirective;
|
466
|
+
listComponent: ListComponent;
|
465
467
|
get scrollbarWidth(): number;
|
466
468
|
get headerPadding(): any;
|
467
469
|
columnMenuOptions: any;
|
package/treelist.module.d.ts
CHANGED
@@ -97,18 +97,20 @@ 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
|
109
|
-
import * as i104 from "
|
110
|
-
import * as i105 from "
|
111
|
-
import * as i106 from "
|
100
|
+
import * as i95 from "./column-menu/column-menu-autosize.component";
|
101
|
+
import * as i96 from "./column-menu/column-menu-autosize-all.component";
|
102
|
+
import * as i97 from "./excel/excel.component";
|
103
|
+
import * as i98 from "./excel/excel-command.directive";
|
104
|
+
import * as i99 from "./excel/excel-command-tool.directive";
|
105
|
+
import * as i100 from "@progress/kendo-angular-excel-export";
|
106
|
+
import * as i101 from "./pdf/pdf.component";
|
107
|
+
import * as i102 from "./pdf/pdf-margin.component";
|
108
|
+
import * as i103 from "./pdf/pdf-command.directive";
|
109
|
+
import * as i104 from "./pdf/pdf-template.directive";
|
110
|
+
import * as i105 from "./pdf/pdf-command-tool.directive";
|
111
|
+
import * as i106 from "@progress/kendo-angular-toolbar";
|
112
|
+
import * as i107 from "@progress/kendo-angular-pager";
|
113
|
+
import * as i108 from "./column-resizing/table.directive";
|
112
114
|
/**
|
113
115
|
* Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the TreeList component.
|
114
116
|
* Use this module to enable TreeList features in your application.
|
@@ -130,6 +132,6 @@ import * as i106 from "./column-resizing/table.directive";
|
|
130
132
|
*/
|
131
133
|
export declare class TreeListModule {
|
132
134
|
static ɵfac: i0.ɵɵFactoryDeclaration<TreeListModule, never>;
|
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]>;
|
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]>;
|
134
136
|
static ɵinj: i0.ɵɵInjectorDeclaration<TreeListModule>;
|
135
137
|
}
|