@progress/kendo-angular-treelist 17.0.0-develop.14 → 17.0.0-develop.15
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/esm2020/package-metadata.mjs +2 -2
- package/esm2020/rendering/cell.component.mjs +4 -1
- package/esm2020/rendering/table-body.component.mjs +3 -1
- package/fesm2015/progress-kendo-angular-treelist.mjs +9 -4
- package/fesm2020/progress-kendo-angular-treelist.mjs +9 -4
- package/package.json +16 -16
- package/rendering/cell.component.d.ts +2 -1
- package/schematics/ngAdd/index.js +3 -3
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-treelist',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '17.0.0-develop.
|
|
12
|
+
publishDate: 1729273822,
|
|
13
|
+
version: '17.0.0-develop.15',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -91,6 +91,7 @@ export class CellComponent {
|
|
|
91
91
|
this._editTemplateContext.dataItem = this.dataItem;
|
|
92
92
|
this._editTemplateContext.formGroup = this.formGroup;
|
|
93
93
|
this._editTemplateContext.isNew = this.isNew;
|
|
94
|
+
this._editTemplateContext.rowIndex = this.isNew ? -1 : this.rowIndex;
|
|
94
95
|
return this._editTemplateContext;
|
|
95
96
|
}
|
|
96
97
|
get format() {
|
|
@@ -151,7 +152,7 @@ export class CellComponent {
|
|
|
151
152
|
}
|
|
152
153
|
}
|
|
153
154
|
CellComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CellComponent, deps: [{ token: i1.EditService }, { token: i2.LocalizationService }, { token: i3.FocusGroup }], target: i0.ɵɵFactoryTarget.Component });
|
|
154
|
-
CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CellComponent, isStandalone: true, selector: "[kendoTreeListCell]", inputs: { column: "column", columnIndex: "columnIndex", isNew: "isNew", level: "level", hasChildren: "hasChildren", isExpanded: "isExpanded", loading: "loading", expandIcons: "expandIcons", selected: "selected", dataItem: "dataItem", viewItem: "viewItem" }, host: { properties: { "class.k-command-cell": "this.commandCellClass", "class.k-checkbox-cell": "this.isCheckboxColumn", "class.k-text-nowrap": "this.textNoWrapClass", "class.k-drag-cell": "this.dragHandleCellClass", "class.k-touch-action-none": "this.dragHandleCellClass", "attr.aria-label": "this.dragRowHandleLabel" } }, ngImport: i0, template: `
|
|
155
|
+
CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CellComponent, isStandalone: true, selector: "[kendoTreeListCell]", inputs: { column: "column", columnIndex: "columnIndex", isNew: "isNew", level: "level", hasChildren: "hasChildren", isExpanded: "isExpanded", loading: "loading", expandIcons: "expandIcons", rowIndex: "rowIndex", selected: "selected", dataItem: "dataItem", viewItem: "viewItem" }, host: { properties: { "class.k-command-cell": "this.commandCellClass", "class.k-checkbox-cell": "this.isCheckboxColumn", "class.k-text-nowrap": "this.textNoWrapClass", "class.k-drag-cell": "this.dragHandleCellClass", "class.k-touch-action-none": "this.dragHandleCellClass", "attr.aria-label": "this.dragRowHandleLabel" } }, ngImport: i0, template: `
|
|
155
156
|
<ng-container [ngSwitch]="isEdited">
|
|
156
157
|
<ng-container *ngSwitchCase="false">
|
|
157
158
|
<ng-container *ngIf="column.expandable">
|
|
@@ -346,6 +347,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
346
347
|
type: Input
|
|
347
348
|
}], expandIcons: [{
|
|
348
349
|
type: Input
|
|
350
|
+
}], rowIndex: [{
|
|
351
|
+
type: Input
|
|
349
352
|
}], selected: [{
|
|
350
353
|
type: Input
|
|
351
354
|
}], dataItem: [{
|
|
@@ -388,6 +388,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
388
388
|
[level]="item.level"
|
|
389
389
|
[hasChildren]="item.hasChildren"
|
|
390
390
|
[isExpanded]="item.expanded"
|
|
391
|
+
[rowIndex]="item.rowIndex"
|
|
391
392
|
[loading]="item.loading"
|
|
392
393
|
[isNew]="item.isNew"
|
|
393
394
|
[selected]="item.selected"
|
|
@@ -448,7 +449,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
448
449
|
</td>
|
|
449
450
|
</tr>
|
|
450
451
|
</ng-container>
|
|
451
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew", "totalColumns"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CellComponent, selector: "[kendoTreeListCell]", inputs: ["column", "columnIndex", "isNew", "level", "hasChildren", "isExpanded", "loading", "expandIcons", "selected", "dataItem", "viewItem"] }, { kind: "directive", type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "pipe", type: LevelItemsPipe, name: "levelItems" }] });
|
|
452
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew", "totalColumns"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CellComponent, selector: "[kendoTreeListCell]", inputs: ["column", "columnIndex", "isNew", "level", "hasChildren", "isExpanded", "loading", "expandIcons", "rowIndex", "selected", "dataItem", "viewItem"] }, { kind: "directive", type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "pipe", type: LevelItemsPipe, name: "levelItems" }] });
|
|
452
453
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TableBodyComponent, decorators: [{
|
|
453
454
|
type: Component,
|
|
454
455
|
args: [{
|
|
@@ -491,6 +492,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
491
492
|
[level]="item.level"
|
|
492
493
|
[hasChildren]="item.hasChildren"
|
|
493
494
|
[isExpanded]="item.expanded"
|
|
495
|
+
[rowIndex]="item.rowIndex"
|
|
494
496
|
[loading]="item.loading"
|
|
495
497
|
[isNew]="item.isNew"
|
|
496
498
|
[selected]="item.selected"
|
|
@@ -49,8 +49,8 @@ const packageMetadata = {
|
|
|
49
49
|
name: '@progress/kendo-angular-treelist',
|
|
50
50
|
productName: 'Kendo UI for Angular',
|
|
51
51
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
52
|
-
publishDate:
|
|
53
|
-
version: '17.0.0-develop.
|
|
52
|
+
publishDate: 1729273822,
|
|
53
|
+
version: '17.0.0-develop.15',
|
|
54
54
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
55
55
|
};
|
|
56
56
|
|
|
@@ -7135,6 +7135,7 @@ class CellComponent {
|
|
|
7135
7135
|
this._editTemplateContext.dataItem = this.dataItem;
|
|
7136
7136
|
this._editTemplateContext.formGroup = this.formGroup;
|
|
7137
7137
|
this._editTemplateContext.isNew = this.isNew;
|
|
7138
|
+
this._editTemplateContext.rowIndex = this.isNew ? -1 : this.rowIndex;
|
|
7138
7139
|
return this._editTemplateContext;
|
|
7139
7140
|
}
|
|
7140
7141
|
get format() {
|
|
@@ -7195,7 +7196,7 @@ class CellComponent {
|
|
|
7195
7196
|
}
|
|
7196
7197
|
}
|
|
7197
7198
|
CellComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CellComponent, deps: [{ token: EditService }, { token: i1$1.LocalizationService }, { token: FocusGroup }], target: i0.ɵɵFactoryTarget.Component });
|
|
7198
|
-
CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CellComponent, isStandalone: true, selector: "[kendoTreeListCell]", inputs: { column: "column", columnIndex: "columnIndex", isNew: "isNew", level: "level", hasChildren: "hasChildren", isExpanded: "isExpanded", loading: "loading", expandIcons: "expandIcons", selected: "selected", dataItem: "dataItem", viewItem: "viewItem" }, host: { properties: { "class.k-command-cell": "this.commandCellClass", "class.k-checkbox-cell": "this.isCheckboxColumn", "class.k-text-nowrap": "this.textNoWrapClass", "class.k-drag-cell": "this.dragHandleCellClass", "class.k-touch-action-none": "this.dragHandleCellClass", "attr.aria-label": "this.dragRowHandleLabel" } }, ngImport: i0, template: `
|
|
7199
|
+
CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CellComponent, isStandalone: true, selector: "[kendoTreeListCell]", inputs: { column: "column", columnIndex: "columnIndex", isNew: "isNew", level: "level", hasChildren: "hasChildren", isExpanded: "isExpanded", loading: "loading", expandIcons: "expandIcons", rowIndex: "rowIndex", selected: "selected", dataItem: "dataItem", viewItem: "viewItem" }, host: { properties: { "class.k-command-cell": "this.commandCellClass", "class.k-checkbox-cell": "this.isCheckboxColumn", "class.k-text-nowrap": "this.textNoWrapClass", "class.k-drag-cell": "this.dragHandleCellClass", "class.k-touch-action-none": "this.dragHandleCellClass", "attr.aria-label": "this.dragRowHandleLabel" } }, ngImport: i0, template: `
|
|
7199
7200
|
<ng-container [ngSwitch]="isEdited">
|
|
7200
7201
|
<ng-container *ngSwitchCase="false">
|
|
7201
7202
|
<ng-container *ngIf="column.expandable">
|
|
@@ -7390,6 +7391,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7390
7391
|
type: Input
|
|
7391
7392
|
}], expandIcons: [{
|
|
7392
7393
|
type: Input
|
|
7394
|
+
}], rowIndex: [{
|
|
7395
|
+
type: Input
|
|
7393
7396
|
}], selected: [{
|
|
7394
7397
|
type: Input
|
|
7395
7398
|
}], dataItem: [{
|
|
@@ -7870,6 +7873,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
7870
7873
|
[level]="item.level"
|
|
7871
7874
|
[hasChildren]="item.hasChildren"
|
|
7872
7875
|
[isExpanded]="item.expanded"
|
|
7876
|
+
[rowIndex]="item.rowIndex"
|
|
7873
7877
|
[loading]="item.loading"
|
|
7874
7878
|
[isNew]="item.isNew"
|
|
7875
7879
|
[selected]="item.selected"
|
|
@@ -7930,7 +7934,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
7930
7934
|
</td>
|
|
7931
7935
|
</tr>
|
|
7932
7936
|
</ng-container>
|
|
7933
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew", "totalColumns"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CellComponent, selector: "[kendoTreeListCell]", inputs: ["column", "columnIndex", "isNew", "level", "hasChildren", "isExpanded", "loading", "expandIcons", "selected", "dataItem", "viewItem"] }, { kind: "directive", type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "pipe", type: LevelItemsPipe, name: "levelItems" }] });
|
|
7937
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew", "totalColumns"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CellComponent, selector: "[kendoTreeListCell]", inputs: ["column", "columnIndex", "isNew", "level", "hasChildren", "isExpanded", "loading", "expandIcons", "rowIndex", "selected", "dataItem", "viewItem"] }, { kind: "directive", type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "pipe", type: LevelItemsPipe, name: "levelItems" }] });
|
|
7934
7938
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TableBodyComponent, decorators: [{
|
|
7935
7939
|
type: Component,
|
|
7936
7940
|
args: [{
|
|
@@ -7973,6 +7977,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7973
7977
|
[level]="item.level"
|
|
7974
7978
|
[hasChildren]="item.hasChildren"
|
|
7975
7979
|
[isExpanded]="item.expanded"
|
|
7980
|
+
[rowIndex]="item.rowIndex"
|
|
7976
7981
|
[loading]="item.loading"
|
|
7977
7982
|
[isNew]="item.isNew"
|
|
7978
7983
|
[selected]="item.selected"
|
|
@@ -49,8 +49,8 @@ const packageMetadata = {
|
|
|
49
49
|
name: '@progress/kendo-angular-treelist',
|
|
50
50
|
productName: 'Kendo UI for Angular',
|
|
51
51
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
52
|
-
publishDate:
|
|
53
|
-
version: '17.0.0-develop.
|
|
52
|
+
publishDate: 1729273822,
|
|
53
|
+
version: '17.0.0-develop.15',
|
|
54
54
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
55
55
|
};
|
|
56
56
|
|
|
@@ -7099,6 +7099,7 @@ class CellComponent {
|
|
|
7099
7099
|
this._editTemplateContext.dataItem = this.dataItem;
|
|
7100
7100
|
this._editTemplateContext.formGroup = this.formGroup;
|
|
7101
7101
|
this._editTemplateContext.isNew = this.isNew;
|
|
7102
|
+
this._editTemplateContext.rowIndex = this.isNew ? -1 : this.rowIndex;
|
|
7102
7103
|
return this._editTemplateContext;
|
|
7103
7104
|
}
|
|
7104
7105
|
get format() {
|
|
@@ -7159,7 +7160,7 @@ class CellComponent {
|
|
|
7159
7160
|
}
|
|
7160
7161
|
}
|
|
7161
7162
|
CellComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CellComponent, deps: [{ token: EditService }, { token: i1$1.LocalizationService }, { token: FocusGroup }], target: i0.ɵɵFactoryTarget.Component });
|
|
7162
|
-
CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CellComponent, isStandalone: true, selector: "[kendoTreeListCell]", inputs: { column: "column", columnIndex: "columnIndex", isNew: "isNew", level: "level", hasChildren: "hasChildren", isExpanded: "isExpanded", loading: "loading", expandIcons: "expandIcons", selected: "selected", dataItem: "dataItem", viewItem: "viewItem" }, host: { properties: { "class.k-command-cell": "this.commandCellClass", "class.k-checkbox-cell": "this.isCheckboxColumn", "class.k-text-nowrap": "this.textNoWrapClass", "class.k-drag-cell": "this.dragHandleCellClass", "class.k-touch-action-none": "this.dragHandleCellClass", "attr.aria-label": "this.dragRowHandleLabel" } }, ngImport: i0, template: `
|
|
7163
|
+
CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CellComponent, isStandalone: true, selector: "[kendoTreeListCell]", inputs: { column: "column", columnIndex: "columnIndex", isNew: "isNew", level: "level", hasChildren: "hasChildren", isExpanded: "isExpanded", loading: "loading", expandIcons: "expandIcons", rowIndex: "rowIndex", selected: "selected", dataItem: "dataItem", viewItem: "viewItem" }, host: { properties: { "class.k-command-cell": "this.commandCellClass", "class.k-checkbox-cell": "this.isCheckboxColumn", "class.k-text-nowrap": "this.textNoWrapClass", "class.k-drag-cell": "this.dragHandleCellClass", "class.k-touch-action-none": "this.dragHandleCellClass", "attr.aria-label": "this.dragRowHandleLabel" } }, ngImport: i0, template: `
|
|
7163
7164
|
<ng-container [ngSwitch]="isEdited">
|
|
7164
7165
|
<ng-container *ngSwitchCase="false">
|
|
7165
7166
|
<ng-container *ngIf="column.expandable">
|
|
@@ -7354,6 +7355,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7354
7355
|
type: Input
|
|
7355
7356
|
}], expandIcons: [{
|
|
7356
7357
|
type: Input
|
|
7358
|
+
}], rowIndex: [{
|
|
7359
|
+
type: Input
|
|
7357
7360
|
}], selected: [{
|
|
7358
7361
|
type: Input
|
|
7359
7362
|
}], dataItem: [{
|
|
@@ -7833,6 +7836,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
7833
7836
|
[level]="item.level"
|
|
7834
7837
|
[hasChildren]="item.hasChildren"
|
|
7835
7838
|
[isExpanded]="item.expanded"
|
|
7839
|
+
[rowIndex]="item.rowIndex"
|
|
7836
7840
|
[loading]="item.loading"
|
|
7837
7841
|
[isNew]="item.isNew"
|
|
7838
7842
|
[selected]="item.selected"
|
|
@@ -7893,7 +7897,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
7893
7897
|
</td>
|
|
7894
7898
|
</tr>
|
|
7895
7899
|
</ng-container>
|
|
7896
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew", "totalColumns"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CellComponent, selector: "[kendoTreeListCell]", inputs: ["column", "columnIndex", "isNew", "level", "hasChildren", "isExpanded", "loading", "expandIcons", "selected", "dataItem", "viewItem"] }, { kind: "directive", type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "pipe", type: LevelItemsPipe, name: "levelItems" }] });
|
|
7900
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew", "totalColumns"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CellComponent, selector: "[kendoTreeListCell]", inputs: ["column", "columnIndex", "isNew", "level", "hasChildren", "isExpanded", "loading", "expandIcons", "rowIndex", "selected", "dataItem", "viewItem"] }, { kind: "directive", type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "pipe", type: LevelItemsPipe, name: "levelItems" }] });
|
|
7897
7901
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TableBodyComponent, decorators: [{
|
|
7898
7902
|
type: Component,
|
|
7899
7903
|
args: [{
|
|
@@ -7936,6 +7940,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
7936
7940
|
[level]="item.level"
|
|
7937
7941
|
[hasChildren]="item.hasChildren"
|
|
7938
7942
|
[isExpanded]="item.expanded"
|
|
7943
|
+
[rowIndex]="item.rowIndex"
|
|
7939
7944
|
[loading]="item.loading"
|
|
7940
7945
|
[isNew]="item.isNew"
|
|
7941
7946
|
[selected]="item.selected"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
|
3
|
-
"version": "17.0.0-develop.
|
|
3
|
+
"version": "17.0.0-develop.15",
|
|
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",
|
|
@@ -31,25 +31,25 @@
|
|
|
31
31
|
"@progress/kendo-data-query": "^1.0.0",
|
|
32
32
|
"@progress/kendo-drawing": "^1.20.4",
|
|
33
33
|
"@progress/kendo-licensing": "^1.0.2",
|
|
34
|
-
"@progress/kendo-angular-buttons": "17.0.0-develop.
|
|
35
|
-
"@progress/kendo-angular-common": "17.0.0-develop.
|
|
36
|
-
"@progress/kendo-angular-dateinputs": "17.0.0-develop.
|
|
37
|
-
"@progress/kendo-angular-dropdowns": "17.0.0-develop.
|
|
38
|
-
"@progress/kendo-angular-excel-export": "17.0.0-develop.
|
|
39
|
-
"@progress/kendo-angular-icons": "17.0.0-develop.
|
|
40
|
-
"@progress/kendo-angular-inputs": "17.0.0-develop.
|
|
41
|
-
"@progress/kendo-angular-intl": "17.0.0-develop.
|
|
42
|
-
"@progress/kendo-angular-l10n": "17.0.0-develop.
|
|
43
|
-
"@progress/kendo-angular-label": "17.0.0-develop.
|
|
44
|
-
"@progress/kendo-angular-pdf-export": "17.0.0-develop.
|
|
45
|
-
"@progress/kendo-angular-popup": "17.0.0-develop.
|
|
46
|
-
"@progress/kendo-angular-toolbar": "17.0.0-develop.
|
|
47
|
-
"@progress/kendo-angular-utils": "17.0.0-develop.
|
|
34
|
+
"@progress/kendo-angular-buttons": "17.0.0-develop.15",
|
|
35
|
+
"@progress/kendo-angular-common": "17.0.0-develop.15",
|
|
36
|
+
"@progress/kendo-angular-dateinputs": "17.0.0-develop.15",
|
|
37
|
+
"@progress/kendo-angular-dropdowns": "17.0.0-develop.15",
|
|
38
|
+
"@progress/kendo-angular-excel-export": "17.0.0-develop.15",
|
|
39
|
+
"@progress/kendo-angular-icons": "17.0.0-develop.15",
|
|
40
|
+
"@progress/kendo-angular-inputs": "17.0.0-develop.15",
|
|
41
|
+
"@progress/kendo-angular-intl": "17.0.0-develop.15",
|
|
42
|
+
"@progress/kendo-angular-l10n": "17.0.0-develop.15",
|
|
43
|
+
"@progress/kendo-angular-label": "17.0.0-develop.15",
|
|
44
|
+
"@progress/kendo-angular-pdf-export": "17.0.0-develop.15",
|
|
45
|
+
"@progress/kendo-angular-popup": "17.0.0-develop.15",
|
|
46
|
+
"@progress/kendo-angular-toolbar": "17.0.0-develop.15",
|
|
47
|
+
"@progress/kendo-angular-utils": "17.0.0-develop.15",
|
|
48
48
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"tslib": "^2.3.1",
|
|
52
|
-
"@progress/kendo-angular-schematics": "17.0.0-develop.
|
|
52
|
+
"@progress/kendo-angular-schematics": "17.0.0-develop.15",
|
|
53
53
|
"@progress/kendo-common": "^0.2.0",
|
|
54
54
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
55
55
|
},
|
|
@@ -30,6 +30,7 @@ export declare class CellComponent implements AfterContentChecked, DoCheck {
|
|
|
30
30
|
isExpanded: boolean;
|
|
31
31
|
loading: boolean;
|
|
32
32
|
expandIcons: boolean;
|
|
33
|
+
rowIndex: number;
|
|
33
34
|
selected: boolean;
|
|
34
35
|
dataItem: any;
|
|
35
36
|
set viewItem(value: any);
|
|
@@ -59,5 +60,5 @@ export declare class CellComponent implements AfterContentChecked, DoCheck {
|
|
|
59
60
|
get arrowSVGIcon(): SVGIcon;
|
|
60
61
|
messageFor(token: string): string;
|
|
61
62
|
static ɵfac: i0.ɵɵFactoryDeclaration<CellComponent, never>;
|
|
62
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CellComponent, "[kendoTreeListCell]", never, { "column": "column"; "columnIndex": "columnIndex"; "isNew": "isNew"; "level": "level"; "hasChildren": "hasChildren"; "isExpanded": "isExpanded"; "loading": "loading"; "expandIcons": "expandIcons"; "selected": "selected"; "dataItem": "dataItem"; "viewItem": "viewItem"; }, {}, never, never, true, never>;
|
|
63
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CellComponent, "[kendoTreeListCell]", never, { "column": "column"; "columnIndex": "columnIndex"; "isNew": "isNew"; "level": "level"; "hasChildren": "hasChildren"; "isExpanded": "isExpanded"; "loading": "loading"; "expandIcons": "expandIcons"; "rowIndex": "rowIndex"; "selected": "selected"; "dataItem": "dataItem"; "viewItem": "viewItem"; }, {}, never, never, true, never>;
|
|
63
64
|
}
|
|
@@ -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': '17.0.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '17.0.0-develop.15',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '17.0.0-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '17.0.0-develop.15',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^3.0.0',
|
|
12
12
|
// peer dependency of kendo-angular-dateinputs
|
|
13
|
-
'@progress/kendo-angular-navigation': '17.0.0-develop.
|
|
13
|
+
'@progress/kendo-angular-navigation': '17.0.0-develop.15',
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|