@progress/kendo-angular-treelist 24.1.1-develop.1 → 24.2.0-develop.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/columns/column.component.d.ts +1 -1
- package/columns/command-column.component.d.ts +1 -1
- package/editing/cancel-event-args.interface.d.ts +1 -1
- package/editing/edit-template.directive.d.ts +1 -1
- package/editing/remove-command.directive.d.ts +1 -1
- package/editing-directives/edit-service.interface.d.ts +1 -1
- package/editing-directives/in-cell-editing.directive.d.ts +1 -1
- package/editing-directives/reactive-editing.directive.d.ts +1 -1
- package/editing-directives/template-editing.directive.d.ts +1 -1
- package/fesm2022/progress-kendo-angular-treelist.mjs +19 -19
- package/package-metadata.mjs +2 -2
- package/package.json +18 -18
- package/schematics/ngAdd/index.js +3 -3
- package/treelist.component.d.ts +10 -10
|
@@ -56,7 +56,7 @@ export declare class ColumnComponent extends ColumnBase {
|
|
|
56
56
|
*/
|
|
57
57
|
sortable: boolean | ColumnSortSettings;
|
|
58
58
|
/**
|
|
59
|
-
* Sets the editor type ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
59
|
+
* Sets the editor type ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing)). Used when the column enters edit mode.
|
|
60
60
|
* @default 'text'
|
|
61
61
|
*/
|
|
62
62
|
editor: 'text' | 'numeric' | 'date' | 'boolean';
|
|
@@ -10,7 +10,7 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
/**
|
|
11
11
|
* Represents the command column of the TreeList. Define the content of the column inside an `<ng-template>` tag.
|
|
12
12
|
* For more information and examples on using the passed fields and command directives, see
|
|
13
|
-
* [editing the TreeList in Angular Reactive Forms](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
13
|
+
* [editing the TreeList in Angular Reactive Forms](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing).
|
|
14
14
|
*
|
|
15
15
|
* Usually, the template contains CRUD command directives such as:
|
|
16
16
|
* - [`EditCommandDirective`](https://www.telerik.com/kendo-angular-ui/components/treelist/api/editcommanddirective)
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { SaveEvent } from "./save-event-args.interface";
|
|
6
6
|
/**
|
|
7
|
-
* Provides arguments for the `cancel` event. Use this type to access the event data when cancelling editing in the TreeList. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
7
|
+
* Provides arguments for the `cancel` event. Use this type to access the event data when cancelling editing in the TreeList. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#cancelling-editing).
|
|
8
8
|
*/
|
|
9
9
|
export type CancelEvent = SaveEvent;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
|
-
* Represents the column edit-cell template of the TreeList ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
8
|
+
* Represents the column edit-cell template of the TreeList ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing)). Use this directive to customize the content of edited cells. To define the cell template, nest an `<ng-template>` tag with the `kendoTreeListEditTemplate` directive inside a `<kendo-treelist-column>` tag.
|
|
9
9
|
*
|
|
10
10
|
* The template context contains the following fields:
|
|
11
11
|
* - `column`—The current column instance.
|
|
@@ -10,7 +10,7 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
/**
|
|
11
11
|
* Represents the `remove` command of the TreeList. Apply this directive to any `button` element inside a [`CommandColumnComponent`](https://www.telerik.com/kendo-angular-ui/components/treelist/api/commandcolumncomponent).
|
|
12
12
|
*
|
|
13
|
-
* When the user clicks a button with this directive, the [`remove` event](https://www.telerik.com/kendo-angular-ui/components/treelist/api/treelistcomponent#remove) is triggered ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
13
|
+
* When the user clicks a button with this directive, the [`remove` event](https://www.telerik.com/kendo-angular-ui/components/treelist/api/treelistcomponent#remove) is triggered ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing)).
|
|
14
14
|
*
|
|
15
15
|
* The button with `kendoTreeListRemoveCommand` is automatically hidden when the row is in edit mode. The directive takes the `cellContext` from the cell template as input.
|
|
16
16
|
*
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
6
|
* The interface for the `editService` that you can set to the
|
|
7
|
-
* [editing directives](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/editing-
|
|
7
|
+
* [editing directives](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/custom-editing-service) of the TreeList.
|
|
8
8
|
*/
|
|
9
9
|
export interface EditService {
|
|
10
10
|
/**
|
|
@@ -8,7 +8,7 @@ import { CreateFormGroup } from '../common/create-form-group';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
10
|
* A directive that encapsulates the editing operations of the TreeList when using the in-cell
|
|
11
|
-
* editing with Reactive Forms. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/editing-
|
|
11
|
+
* editing with Reactive Forms. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/editing-in-cell).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html
|
|
@@ -8,7 +8,7 @@ import { CreateFormGroup } from '../common/create-form-group';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
10
|
* A directive that encapsulates the editing operations of the TreeList when using the
|
|
11
|
-
* Reactive Forms. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
11
|
+
* Reactive Forms. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html
|
|
@@ -7,7 +7,7 @@ import { TreeListComponent } from '../treelist.component';
|
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* A directive that encapsulates the editing operations of the TreeList when using
|
|
10
|
-
* Template-Driven Angular Forms. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
10
|
+
* Template-Driven Angular Forms. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing).
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
13
13
|
* ```html
|
|
@@ -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: '24.
|
|
52
|
+
publishDate: 1781873985,
|
|
53
|
+
version: '24.2.0-develop.2',
|
|
54
54
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
55
55
|
};
|
|
56
56
|
|
|
@@ -99,7 +99,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
99
99
|
}] }] });
|
|
100
100
|
|
|
101
101
|
/**
|
|
102
|
-
* Represents the column edit-cell template of the TreeList ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
102
|
+
* Represents the column edit-cell template of the TreeList ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing)). Use this directive to customize the content of edited cells. To define the cell template, nest an `<ng-template>` tag with the `kendoTreeListEditTemplate` directive inside a `<kendo-treelist-column>` tag.
|
|
103
103
|
*
|
|
104
104
|
* The template context contains the following fields:
|
|
105
105
|
* - `column`—The current column instance.
|
|
@@ -833,7 +833,7 @@ class ColumnComponent extends ColumnBase {
|
|
|
833
833
|
*/
|
|
834
834
|
sortable = true;
|
|
835
835
|
/**
|
|
836
|
-
* Sets the editor type ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
836
|
+
* Sets the editor type ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing)). Used when the column enters edit mode.
|
|
837
837
|
* @default 'text'
|
|
838
838
|
*/
|
|
839
839
|
editor = 'text';
|
|
@@ -17230,35 +17230,35 @@ class TreeListComponent {
|
|
|
17230
17230
|
dataStateChange = new EventEmitter();
|
|
17231
17231
|
/**
|
|
17232
17232
|
* Fires when you click the **Edit** command button to edit a row
|
|
17233
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
17233
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#editing-records)).
|
|
17234
17234
|
*/
|
|
17235
17235
|
edit = new EventEmitter();
|
|
17236
17236
|
/**
|
|
17237
17237
|
* Fires when you click the **Cancel** command button to close a row
|
|
17238
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
17238
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#cancelling-editing)).
|
|
17239
17239
|
*/
|
|
17240
17240
|
cancel = new EventEmitter();
|
|
17241
17241
|
/**
|
|
17242
17242
|
* Fires when you click the **Save** command button to save changes in a row
|
|
17243
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
17243
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#saving-records)).
|
|
17244
17244
|
*/
|
|
17245
17245
|
save = new EventEmitter();
|
|
17246
17246
|
/**
|
|
17247
17247
|
* Fires when you click the **Remove** command button to remove a row
|
|
17248
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
17248
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#removing-records)).
|
|
17249
17249
|
*/
|
|
17250
17250
|
remove = new EventEmitter();
|
|
17251
17251
|
/**
|
|
17252
17252
|
* Fires when you click the **Add** command button to add a new row
|
|
17253
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
17253
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#adding-records)).
|
|
17254
17254
|
*/
|
|
17255
17255
|
add = new EventEmitter();
|
|
17256
17256
|
/**
|
|
17257
|
-
* Fires when you leave an edited cell ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/editing-in-cell
|
|
17257
|
+
* Fires when you leave an edited cell ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/editing-in-cell)).
|
|
17258
17258
|
*/
|
|
17259
17259
|
cellClose = new EventEmitter();
|
|
17260
17260
|
/**
|
|
17261
|
-
* Fires when you click a cell ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/editing-in-cell
|
|
17261
|
+
* Fires when you click a cell ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/editing-in-cell)).
|
|
17262
17262
|
*/
|
|
17263
17263
|
cellClick = new EventEmitter();
|
|
17264
17264
|
/**
|
|
@@ -17807,7 +17807,7 @@ class TreeListComponent {
|
|
|
17807
17807
|
}
|
|
17808
17808
|
}
|
|
17809
17809
|
/**
|
|
17810
|
-
* Switches the specified table row to edit mode ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
17810
|
+
* Switches the specified table row to edit mode ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#editing-records)).
|
|
17811
17811
|
*
|
|
17812
17812
|
* @param dataItem The data item that you will edit.
|
|
17813
17813
|
* @param group - The [`FormGroup`](link:site.data.urls.angular['formgroupapi'])
|
|
@@ -17828,7 +17828,7 @@ class TreeListComponent {
|
|
|
17828
17828
|
});
|
|
17829
17829
|
}
|
|
17830
17830
|
/**
|
|
17831
|
-
* Closes the editor for a given row ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
17831
|
+
* Closes the editor for a given row ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#cancelling-editing)).
|
|
17832
17832
|
*
|
|
17833
17833
|
* @param dataItem The data item that you will switch out of edit mode.
|
|
17834
17834
|
* @param isNew Determines whether the data item is new.
|
|
@@ -17844,7 +17844,7 @@ class TreeListComponent {
|
|
|
17844
17844
|
}
|
|
17845
17845
|
}
|
|
17846
17846
|
/**
|
|
17847
|
-
* Creates a new row editor ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
17847
|
+
* Creates a new row editor ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#adding-records)).
|
|
17848
17848
|
*
|
|
17849
17849
|
* @param group The [`FormGroup`](link:site.data.urls.angular['formgroupapi']) that describes
|
|
17850
17850
|
* the edit form. If called with a data item, it builds the `FormGroup` from the data item fields.
|
|
@@ -20150,7 +20150,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
20150
20150
|
|
|
20151
20151
|
/**
|
|
20152
20152
|
* A directive that encapsulates the editing operations of the TreeList when using
|
|
20153
|
-
* Template-Driven Angular Forms. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
20153
|
+
* Template-Driven Angular Forms. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing).
|
|
20154
20154
|
*
|
|
20155
20155
|
* @example
|
|
20156
20156
|
* ```html
|
|
@@ -20248,7 +20248,7 @@ const insertNewItem = (newItem, originalData, treelist, parent) => {
|
|
|
20248
20248
|
|
|
20249
20249
|
/**
|
|
20250
20250
|
* A directive that encapsulates the editing operations of the TreeList when using the
|
|
20251
|
-
* Reactive Forms. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
20251
|
+
* Reactive Forms. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing).
|
|
20252
20252
|
*
|
|
20253
20253
|
* @example
|
|
20254
20254
|
* ```html
|
|
@@ -20300,7 +20300,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
20300
20300
|
|
|
20301
20301
|
/**
|
|
20302
20302
|
* A directive that encapsulates the editing operations of the TreeList when using the in-cell
|
|
20303
|
-
* editing with Reactive Forms. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/editing-
|
|
20303
|
+
* editing with Reactive Forms. [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/editing-in-cell).
|
|
20304
20304
|
*
|
|
20305
20305
|
* @example
|
|
20306
20306
|
* ```html
|
|
@@ -21442,7 +21442,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
21442
21442
|
/**
|
|
21443
21443
|
* Represents the command column of the TreeList. Define the content of the column inside an `<ng-template>` tag.
|
|
21444
21444
|
* For more information and examples on using the passed fields and command directives, see
|
|
21445
|
-
* [editing the TreeList in Angular Reactive Forms](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
21445
|
+
* [editing the TreeList in Angular Reactive Forms](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing).
|
|
21446
21446
|
*
|
|
21447
21447
|
* Usually, the template contains CRUD command directives such as:
|
|
21448
21448
|
* - [`EditCommandDirective`](https://www.telerik.com/kendo-angular-ui/components/treelist/api/editcommanddirective)
|
|
@@ -21845,7 +21845,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
21845
21845
|
/**
|
|
21846
21846
|
* Represents the `remove` command of the TreeList. Apply this directive to any `button` element inside a [`CommandColumnComponent`](https://www.telerik.com/kendo-angular-ui/components/treelist/api/commandcolumncomponent).
|
|
21847
21847
|
*
|
|
21848
|
-
* When the user clicks a button with this directive, the [`remove` event](https://www.telerik.com/kendo-angular-ui/components/treelist/api/treelistcomponent#remove) is triggered ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
21848
|
+
* When the user clicks a button with this directive, the [`remove` event](https://www.telerik.com/kendo-angular-ui/components/treelist/api/treelistcomponent#remove) is triggered ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing)).
|
|
21849
21849
|
*
|
|
21850
21850
|
* The button with `kendoTreeListRemoveCommand` is automatically hidden when the row is in edit mode. The directive takes the `cellContext` from the cell template as input.
|
|
21851
21851
|
*
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.
|
|
10
|
+
"publishDate": 1781873985,
|
|
11
|
+
"version": "24.2.0-develop.2",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.2.0-develop.2",
|
|
4
4
|
"description": "Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"package": {
|
|
40
40
|
"productName": "Kendo UI for Angular",
|
|
41
41
|
"productCode": "KENDOUIANGULAR",
|
|
42
|
-
"publishDate":
|
|
42
|
+
"publishDate": 1781873985,
|
|
43
43
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
44
44
|
}
|
|
45
45
|
},
|
|
@@ -52,26 +52,26 @@
|
|
|
52
52
|
"@progress/kendo-data-query": "^1.7.3",
|
|
53
53
|
"@progress/kendo-drawing": "^1.25.0",
|
|
54
54
|
"@progress/kendo-licensing": "^1.11.0",
|
|
55
|
-
"@progress/kendo-angular-buttons": "24.
|
|
56
|
-
"@progress/kendo-angular-common": "24.
|
|
57
|
-
"@progress/kendo-angular-dateinputs": "24.
|
|
58
|
-
"@progress/kendo-angular-dropdowns": "24.
|
|
59
|
-
"@progress/kendo-angular-excel-export": "24.
|
|
60
|
-
"@progress/kendo-angular-icons": "24.
|
|
61
|
-
"@progress/kendo-angular-inputs": "24.
|
|
62
|
-
"@progress/kendo-angular-intl": "24.
|
|
63
|
-
"@progress/kendo-angular-l10n": "24.
|
|
64
|
-
"@progress/kendo-angular-label": "24.
|
|
65
|
-
"@progress/kendo-angular-pager": "24.
|
|
66
|
-
"@progress/kendo-angular-pdf-export": "24.
|
|
67
|
-
"@progress/kendo-angular-popup": "24.
|
|
68
|
-
"@progress/kendo-angular-toolbar": "24.
|
|
69
|
-
"@progress/kendo-angular-utils": "24.
|
|
55
|
+
"@progress/kendo-angular-buttons": "24.2.0-develop.2",
|
|
56
|
+
"@progress/kendo-angular-common": "24.2.0-develop.2",
|
|
57
|
+
"@progress/kendo-angular-dateinputs": "24.2.0-develop.2",
|
|
58
|
+
"@progress/kendo-angular-dropdowns": "24.2.0-develop.2",
|
|
59
|
+
"@progress/kendo-angular-excel-export": "24.2.0-develop.2",
|
|
60
|
+
"@progress/kendo-angular-icons": "24.2.0-develop.2",
|
|
61
|
+
"@progress/kendo-angular-inputs": "24.2.0-develop.2",
|
|
62
|
+
"@progress/kendo-angular-intl": "24.2.0-develop.2",
|
|
63
|
+
"@progress/kendo-angular-l10n": "24.2.0-develop.2",
|
|
64
|
+
"@progress/kendo-angular-label": "24.2.0-develop.2",
|
|
65
|
+
"@progress/kendo-angular-pager": "24.2.0-develop.2",
|
|
66
|
+
"@progress/kendo-angular-pdf-export": "24.2.0-develop.2",
|
|
67
|
+
"@progress/kendo-angular-popup": "24.2.0-develop.2",
|
|
68
|
+
"@progress/kendo-angular-toolbar": "24.2.0-develop.2",
|
|
69
|
+
"@progress/kendo-angular-utils": "24.2.0-develop.2",
|
|
70
70
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"tslib": "^2.3.1",
|
|
74
|
-
"@progress/kendo-angular-schematics": "24.
|
|
74
|
+
"@progress/kendo-angular-schematics": "24.2.0-develop.2",
|
|
75
75
|
"@progress/kendo-common": "^1.0.1",
|
|
76
76
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
77
77
|
},
|
|
@@ -9,13 +9,13 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TreeListModule', package: 'treelist', peerDependencies: {
|
|
11
11
|
// peer dep of the dropdowns
|
|
12
|
-
'@progress/kendo-angular-treeview': '24.
|
|
12
|
+
'@progress/kendo-angular-treeview': '24.2.0-develop.2',
|
|
13
13
|
// peer dependency of kendo-angular-inputs
|
|
14
|
-
'@progress/kendo-angular-dialog': '24.
|
|
14
|
+
'@progress/kendo-angular-dialog': '24.2.0-develop.2',
|
|
15
15
|
// peer dependency of kendo-angular-icons
|
|
16
16
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
17
17
|
// peer dependency of kendo-angular-dateinputs
|
|
18
|
-
'@progress/kendo-angular-navigation': '24.
|
|
18
|
+
'@progress/kendo-angular-navigation': '24.2.0-develop.2',
|
|
19
19
|
} });
|
|
20
20
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
21
21
|
}
|
package/treelist.component.d.ts
CHANGED
|
@@ -349,35 +349,35 @@ export declare class TreeListComponent implements AfterContentInit, AfterViewIni
|
|
|
349
349
|
dataStateChange: EventEmitter<DataStateChangeEvent>;
|
|
350
350
|
/**
|
|
351
351
|
* Fires when you click the **Edit** command button to edit a row
|
|
352
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
352
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#editing-records)).
|
|
353
353
|
*/
|
|
354
354
|
edit: EventEmitter<EditEvent>;
|
|
355
355
|
/**
|
|
356
356
|
* Fires when you click the **Cancel** command button to close a row
|
|
357
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
357
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#cancelling-editing)).
|
|
358
358
|
*/
|
|
359
359
|
cancel: EventEmitter<CancelEvent>;
|
|
360
360
|
/**
|
|
361
361
|
* Fires when you click the **Save** command button to save changes in a row
|
|
362
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
362
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#saving-records)).
|
|
363
363
|
*/
|
|
364
364
|
save: EventEmitter<SaveEvent>;
|
|
365
365
|
/**
|
|
366
366
|
* Fires when you click the **Remove** command button to remove a row
|
|
367
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
367
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#removing-records)).
|
|
368
368
|
*/
|
|
369
369
|
remove: EventEmitter<RemoveEvent>;
|
|
370
370
|
/**
|
|
371
371
|
* Fires when you click the **Add** command button to add a new row
|
|
372
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
372
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#adding-records)).
|
|
373
373
|
*/
|
|
374
374
|
add: EventEmitter<AddEvent>;
|
|
375
375
|
/**
|
|
376
|
-
* Fires when you leave an edited cell ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/editing-in-cell
|
|
376
|
+
* Fires when you leave an edited cell ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/editing-in-cell)).
|
|
377
377
|
*/
|
|
378
378
|
cellClose: EventEmitter<CellCloseEvent>;
|
|
379
379
|
/**
|
|
380
|
-
* Fires when you click a cell ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/editing-in-cell
|
|
380
|
+
* Fires when you click a cell ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/editing-in-cell)).
|
|
381
381
|
*/
|
|
382
382
|
cellClick: EventEmitter<CellClickEvent>;
|
|
383
383
|
/**
|
|
@@ -584,7 +584,7 @@ export declare class TreeListComponent implements AfterContentInit, AfterViewIni
|
|
|
584
584
|
*/
|
|
585
585
|
attachScrollSync(): void;
|
|
586
586
|
/**
|
|
587
|
-
* Switches the specified table row to edit mode ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
587
|
+
* Switches the specified table row to edit mode ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#editing-records)).
|
|
588
588
|
*
|
|
589
589
|
* @param dataItem The data item that you will edit.
|
|
590
590
|
* @param group - The [`FormGroup`](link:site.data.urls.angular['formgroupapi'])
|
|
@@ -597,14 +597,14 @@ export declare class TreeListComponent implements AfterContentInit, AfterViewIni
|
|
|
597
597
|
[skipFocus: string]: boolean;
|
|
598
598
|
}): void;
|
|
599
599
|
/**
|
|
600
|
-
* Closes the editor for a given row ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
600
|
+
* Closes the editor for a given row ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#cancelling-editing)).
|
|
601
601
|
*
|
|
602
602
|
* @param dataItem The data item that you will switch out of edit mode.
|
|
603
603
|
* @param isNew Determines whether the data item is new.
|
|
604
604
|
*/
|
|
605
605
|
closeRow(dataItem: any, isNew: boolean): void;
|
|
606
606
|
/**
|
|
607
|
-
* Creates a new row editor ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/
|
|
607
|
+
* Creates a new row editor ([see example](https://www.telerik.com/kendo-angular-ui/components/treelist/editing/inline-editing#adding-records)).
|
|
608
608
|
*
|
|
609
609
|
* @param group The [`FormGroup`](link:site.data.urls.angular['formgroupapi']) that describes
|
|
610
610
|
* the edit form. If called with a data item, it builds the `FormGroup` from the data item fields.
|