@progress/kendo-angular-treelist 24.1.1-develop.1 → 24.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/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 +38 -38
- package/filtering/operators/after-eq-filter-operator.component.d.ts +1 -1
- package/filtering/operators/after-filter-operator.component.d.ts +1 -1
- package/filtering/operators/before-eq-filter-operator.component.d.ts +1 -1
- package/filtering/operators/before-filter-operator.component.d.ts +1 -1
- package/filtering/operators/contains-filter-operator.component.d.ts +1 -1
- package/filtering/operators/ends-with-filter-operator.component.d.ts +1 -1
- package/filtering/operators/eq-filter-operator.component.d.ts +1 -1
- package/filtering/operators/gt-filter-operator.component.d.ts +1 -1
- package/filtering/operators/gte-filter-operator.component.d.ts +1 -1
- package/filtering/operators/is-empty-filter-operator.component.d.ts +1 -1
- package/filtering/operators/is-not-empty-filter-operator.component.d.ts +1 -1
- package/filtering/operators/is-not-null-filter-operator.component.d.ts +1 -1
- package/filtering/operators/isnull-filter-operator.component.d.ts +1 -1
- package/filtering/operators/lt-filter-operator.component.d.ts +1 -1
- package/filtering/operators/lte-filter-operator.component.d.ts +1 -1
- package/filtering/operators/neq-filter-operator.component.d.ts +1 -1
- package/filtering/operators/not-contains-filter-operator.component.d.ts +1 -1
- package/filtering/operators/starts-with-filter-operator.component.d.ts +1 -1
- 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: 1782305818,
|
|
53
|
+
version: '24.2.0-develop.10',
|
|
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';
|
|
@@ -4694,7 +4694,7 @@ class NavigationService {
|
|
|
4694
4694
|
const columnGroup = column.parent;
|
|
4695
4695
|
const columnGroupChildren = Array.from(columnGroup.children).sort((a, b) => a.orderIndex - b.orderIndex);
|
|
4696
4696
|
const columnIndexInsideGroup = columnGroupChildren.indexOf(column);
|
|
4697
|
-
if (column.isReordered || column.orderIndex > 0
|
|
4697
|
+
if (column.isReordered || column.orderIndex > 0) {
|
|
4698
4698
|
return (column.orderIndex - columnGroupChildren[0]['orderIndex']) !== columnGroupChildren.length - 1;
|
|
4699
4699
|
}
|
|
4700
4700
|
return columnIndexInsideGroup !== columnGroupChildren.length - 1;
|
|
@@ -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
|
*
|
|
@@ -22111,7 +22111,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22111
22111
|
* Represents the `Contains` (**Contains**) filter operator for the TreeList.
|
|
22112
22112
|
* Use this operator to filter values that contain a specific substring.
|
|
22113
22113
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
22114
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
22114
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
22115
22115
|
*
|
|
22116
22116
|
* @example
|
|
22117
22117
|
* ```html Filter Cell
|
|
@@ -22167,7 +22167,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22167
22167
|
* Represents the `DoesNotContain` (**Does not contain**) filter operator for the TreeList.
|
|
22168
22168
|
* Use this operator to filter values that do not contain a specific substring.
|
|
22169
22169
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
22170
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
22170
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
22171
22171
|
*
|
|
22172
22172
|
* @example
|
|
22173
22173
|
* ```html Filter Cell
|
|
@@ -22223,7 +22223,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22223
22223
|
* Represents the `EndsWith` (**Ends with**) string filter operator for the TreeList.
|
|
22224
22224
|
* Use this operator to filter values that end with a specific substring.
|
|
22225
22225
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
22226
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
22226
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
22227
22227
|
*
|
|
22228
22228
|
* @example
|
|
22229
22229
|
* ```html Filter Cell
|
|
@@ -22279,7 +22279,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22279
22279
|
* Represents the `Equal` (**Is equal to**) filter operator for the TreeList.
|
|
22280
22280
|
* Use this operator to filter values that are equal to a specific value.
|
|
22281
22281
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
22282
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
22282
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
22283
22283
|
*
|
|
22284
22284
|
* @example
|
|
22285
22285
|
* ```html String Filter Cell
|
|
@@ -22383,7 +22383,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22383
22383
|
* Represents the `IsEmpty` (**Is empty**) filter operator for the TreeList.
|
|
22384
22384
|
* Use this operator to filter values that are empty.
|
|
22385
22385
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
22386
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
22386
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
22387
22387
|
*
|
|
22388
22388
|
* @example
|
|
22389
22389
|
* ```html Filter Cell
|
|
@@ -22439,7 +22439,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22439
22439
|
* Represents the `IsNotEmpty` (**Is not empty**) filter operator for the TreeList.
|
|
22440
22440
|
* Use this operator to filter values that are not empty.
|
|
22441
22441
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
22442
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
22442
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
22443
22443
|
*
|
|
22444
22444
|
* @example
|
|
22445
22445
|
* ```html Filter Cell
|
|
@@ -22495,7 +22495,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22495
22495
|
* Represents the `IsNotNull` (**Is not null**) filter operator for the TreeList.
|
|
22496
22496
|
* Use this operator to filter values that are not null.
|
|
22497
22497
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
22498
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
22498
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
22499
22499
|
*
|
|
22500
22500
|
* @example
|
|
22501
22501
|
* ```html String Filter Cell
|
|
@@ -22599,7 +22599,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22599
22599
|
* Represents the `IsNull` (**Is null**) filter operator for the TreeList.
|
|
22600
22600
|
* Use this operator to filter values that are null.
|
|
22601
22601
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
22602
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
22602
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
22603
22603
|
*
|
|
22604
22604
|
* @example
|
|
22605
22605
|
* ```html String Filter Cell
|
|
@@ -22703,7 +22703,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22703
22703
|
* Represents the `NotEqual` (**Is not equal to**) filter operator for the TreeList.
|
|
22704
22704
|
* Use this operator to filter values that are not equal to a specific value.
|
|
22705
22705
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
22706
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
22706
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
22707
22707
|
*
|
|
22708
22708
|
* @example
|
|
22709
22709
|
* ```html String Filter Cell
|
|
@@ -22807,7 +22807,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22807
22807
|
* Represents the `StartsWith` (**Starts with**) filter operator for the TreeList.
|
|
22808
22808
|
* Use this operator to filter values that start with a specific substring.
|
|
22809
22809
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
22810
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
22810
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
22811
22811
|
*
|
|
22812
22812
|
* @example
|
|
22813
22813
|
* ```html Filter Cell
|
|
@@ -22862,7 +22862,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22862
22862
|
/**
|
|
22863
22863
|
* Represents the `Greater` (**Is greater than**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
|
|
22864
22864
|
* Use this operator to filter values that are greater than a specific value.
|
|
22865
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
22865
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
22866
22866
|
*
|
|
22867
22867
|
* @example
|
|
22868
22868
|
* ```html Filter Cell
|
|
@@ -22917,7 +22917,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22917
22917
|
/**
|
|
22918
22918
|
* Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
|
|
22919
22919
|
* Use this operator to filter values that are greater than or equal to a specific value.
|
|
22920
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
22920
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
22921
22921
|
*
|
|
22922
22922
|
* @example
|
|
22923
22923
|
* ```html Filter Cell
|
|
@@ -22972,7 +22972,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
22972
22972
|
/**
|
|
22973
22973
|
* Represents the `Less` (**Is less than**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
|
|
22974
22974
|
* Use this operator to filter values that are less than a specific value.
|
|
22975
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
22975
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
22976
22976
|
*
|
|
22977
22977
|
* @example
|
|
22978
22978
|
* ```html Filter Cell
|
|
@@ -23027,7 +23027,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
23027
23027
|
/**
|
|
23028
23028
|
* Represents the `LessOrEqualTo` (**Is less than or equal to**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
|
|
23029
23029
|
* Use this operator to filter values that are less than or equal to a specific value.
|
|
23030
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
23030
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
23031
23031
|
*
|
|
23032
23032
|
* @example
|
|
23033
23033
|
* ```html Filter Cell
|
|
@@ -23082,7 +23082,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
23082
23082
|
/**
|
|
23083
23083
|
* Represents the `Greater` (**Is after**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
|
|
23084
23084
|
* Use this operator to filter dates that are after a specific value.
|
|
23085
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
23085
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
23086
23086
|
*
|
|
23087
23087
|
* @example
|
|
23088
23088
|
* ```html Filter Cell
|
|
@@ -23146,7 +23146,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
23146
23146
|
/**
|
|
23147
23147
|
* Represents the `GreaterOrEqualTo` (**Is after or equal to**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
|
|
23148
23148
|
* Use this operator to filter dates that are after or equal to a specific value.
|
|
23149
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
23149
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
23150
23150
|
*
|
|
23151
23151
|
* @example
|
|
23152
23152
|
* ```html Filter Cell
|
|
@@ -23210,7 +23210,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
23210
23210
|
/**
|
|
23211
23211
|
* Represents the `LessOrEqualTo` (**Is before or equal to**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
|
|
23212
23212
|
* Use this operator to filter dates that are before or equal to a specific value.
|
|
23213
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
23213
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
23214
23214
|
*
|
|
23215
23215
|
* @example
|
|
23216
23216
|
* ```html Filter Cell
|
|
@@ -23274,7 +23274,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
23274
23274
|
/**
|
|
23275
23275
|
* Represents the `Less than` (**Is before**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
|
|
23276
23276
|
* Use this operator to filter dates that are before a specific value.
|
|
23277
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
23277
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
23278
23278
|
*
|
|
23279
23279
|
* @example
|
|
23280
23280
|
* ```html Filer Cell
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
/**
|
|
9
9
|
* Represents the `GreaterOrEqualTo` (**Is after or equal to**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
|
|
10
10
|
* Use this operator to filter dates that are after or equal to a specific value.
|
|
11
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
11
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html Filter Cell
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
/**
|
|
9
9
|
* Represents the `Greater` (**Is after**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
|
|
10
10
|
* Use this operator to filter dates that are after a specific value.
|
|
11
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
11
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html Filter Cell
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
/**
|
|
9
9
|
* Represents the `LessOrEqualTo` (**Is before or equal to**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
|
|
10
10
|
* Use this operator to filter dates that are before or equal to a specific value.
|
|
11
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
11
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html Filter Cell
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
/**
|
|
9
9
|
* Represents the `Less than` (**Is before**) [date filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#date-filter) for the TreeList.
|
|
10
10
|
* Use this operator to filter dates that are before a specific value.
|
|
11
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
11
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html Filer Cell
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* Represents the `Contains` (**Contains**) filter operator for the TreeList.
|
|
10
10
|
* Use this operator to filter values that contain a specific substring.
|
|
11
11
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
12
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html Filter Cell
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* Represents the `EndsWith` (**Ends with**) string filter operator for the TreeList.
|
|
10
10
|
* Use this operator to filter values that end with a specific substring.
|
|
11
11
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
12
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html Filter Cell
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* Represents the `Equal` (**Is equal to**) filter operator for the TreeList.
|
|
10
10
|
* Use this operator to filter values that are equal to a specific value.
|
|
11
11
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
12
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html String Filter Cell
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
/**
|
|
9
9
|
* Represents the `Greater` (**Is greater than**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
|
|
10
10
|
* Use this operator to filter values that are greater than a specific value.
|
|
11
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
11
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html Filter Cell
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
/**
|
|
9
9
|
* Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
|
|
10
10
|
* Use this operator to filter values that are greater than or equal to a specific value.
|
|
11
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
11
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html Filter Cell
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* Represents the `IsEmpty` (**Is empty**) filter operator for the TreeList.
|
|
10
10
|
* Use this operator to filter values that are empty.
|
|
11
11
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
12
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html Filter Cell
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* Represents the `IsNotEmpty` (**Is not empty**) filter operator for the TreeList.
|
|
10
10
|
* Use this operator to filter values that are not empty.
|
|
11
11
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
12
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html Filter Cell
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* Represents the `IsNotNull` (**Is not null**) filter operator for the TreeList.
|
|
10
10
|
* Use this operator to filter values that are not null.
|
|
11
11
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
12
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html String Filter Cell
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* Represents the `IsNull` (**Is null**) filter operator for the TreeList.
|
|
10
10
|
* Use this operator to filter values that are null.
|
|
11
11
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
12
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html String Filter Cell
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
/**
|
|
9
9
|
* Represents the `Less` (**Is less than**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
|
|
10
10
|
* Use this operator to filter values that are less than a specific value.
|
|
11
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
11
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html Filter Cell
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
/**
|
|
9
9
|
* Represents the `LessOrEqualTo` (**Is less than or equal to**) [numeric filter operator](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#numeric-filter) for the TreeList.
|
|
10
10
|
* Use this operator to filter values that are less than or equal to a specific value.
|
|
11
|
-
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
11
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html Filter Cell
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* Represents the `NotEqual` (**Is not equal to**) filter operator for the TreeList.
|
|
10
10
|
* Use this operator to filter values that are not equal to a specific value.
|
|
11
11
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
12
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html String Filter Cell
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* Represents the `DoesNotContain` (**Does not contain**) filter operator for the TreeList.
|
|
10
10
|
* Use this operator to filter values that do not contain a specific substring.
|
|
11
11
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
12
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html Filter Cell
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* Represents the `StartsWith` (**Starts with**) filter operator for the TreeList.
|
|
10
10
|
* Use this operator to filter values that start with a specific substring.
|
|
11
11
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/basics#using-the-built-in-directives).
|
|
12
|
-
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](https://www.telerik.com/kendo-angular-ui/components/treelist/filtering/filter-row#default-filter-operator).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html Filter Cell
|
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": 1782305818,
|
|
11
|
+
"version": "24.2.0-develop.10",
|
|
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.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",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"package": {
|
|
40
40
|
"productName": "Kendo UI for Angular",
|
|
41
41
|
"productCode": "KENDOUIANGULAR",
|
|
42
|
-
"publishDate":
|
|
42
|
+
"publishDate": 1782305818,
|
|
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.10",
|
|
56
|
+
"@progress/kendo-angular-common": "24.2.0-develop.10",
|
|
57
|
+
"@progress/kendo-angular-dateinputs": "24.2.0-develop.10",
|
|
58
|
+
"@progress/kendo-angular-dropdowns": "24.2.0-develop.10",
|
|
59
|
+
"@progress/kendo-angular-excel-export": "24.2.0-develop.10",
|
|
60
|
+
"@progress/kendo-angular-icons": "24.2.0-develop.10",
|
|
61
|
+
"@progress/kendo-angular-inputs": "24.2.0-develop.10",
|
|
62
|
+
"@progress/kendo-angular-intl": "24.2.0-develop.10",
|
|
63
|
+
"@progress/kendo-angular-l10n": "24.2.0-develop.10",
|
|
64
|
+
"@progress/kendo-angular-label": "24.2.0-develop.10",
|
|
65
|
+
"@progress/kendo-angular-pager": "24.2.0-develop.10",
|
|
66
|
+
"@progress/kendo-angular-pdf-export": "24.2.0-develop.10",
|
|
67
|
+
"@progress/kendo-angular-popup": "24.2.0-develop.10",
|
|
68
|
+
"@progress/kendo-angular-toolbar": "24.2.0-develop.10",
|
|
69
|
+
"@progress/kendo-angular-utils": "24.2.0-develop.10",
|
|
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.10",
|
|
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.10',
|
|
13
13
|
// peer dependency of kendo-angular-inputs
|
|
14
|
-
'@progress/kendo-angular-dialog': '24.
|
|
14
|
+
'@progress/kendo-angular-dialog': '24.2.0-develop.10',
|
|
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.10',
|
|
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.
|