@progress/kendo-angular-treelist 13.4.1-develop.4 → 13.5.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/esm2020/filtering/base-filter-cell.component.mjs +1 -1
- package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +1 -1
- package/esm2020/filtering/cell/date-filter-cell.component.mjs +1 -1
- package/esm2020/filtering/cell/filter-cell-template.directive.mjs +1 -1
- package/esm2020/filtering/cell/numeric-filter-cell.component.mjs +1 -1
- package/esm2020/filtering/cell/string-filter-cell.component.mjs +1 -2
- package/esm2020/filtering/menu/boolean-filter-menu.component.mjs +1 -1
- package/esm2020/filtering/menu/date-filter-menu.component.mjs +1 -1
- package/esm2020/filtering/menu/filter-menu-template.directive.mjs +1 -1
- package/esm2020/filtering/menu/numeric-filter-menu.component.mjs +1 -1
- package/esm2020/filtering/menu/string-filter-menu.component.mjs +1 -1
- package/esm2020/filtering/operators/after-eq-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/after-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/before-eq-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/before-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/contains-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/ends-with-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/eq-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/gt-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/gte-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/is-empty-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/is-not-empty-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/is-not-null-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/isnull-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/lt-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/lte-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/neq-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/not-contains-filter-operator.component.mjs +2 -2
- package/esm2020/filtering/operators/starts-with-filter-operator.component.mjs +2 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-treelist.mjs +49 -50
- package/fesm2020/progress-kendo-angular-treelist.mjs +49 -50
- package/filtering/base-filter-cell.component.d.ts +1 -1
- package/filtering/cell/boolean-filter-cell.component.d.ts +1 -1
- package/filtering/cell/date-filter-cell.component.d.ts +1 -1
- package/filtering/cell/filter-cell-template.directive.d.ts +1 -1
- package/filtering/cell/numeric-filter-cell.component.d.ts +1 -1
- package/filtering/cell/string-filter-cell.component.d.ts +1 -2
- package/filtering/menu/boolean-filter-menu.component.d.ts +1 -1
- package/filtering/menu/date-filter-menu.component.d.ts +1 -1
- package/filtering/menu/filter-menu-template.directive.d.ts +1 -1
- package/filtering/menu/numeric-filter-menu.component.d.ts +1 -1
- package/filtering/menu/string-filter-menu.component.d.ts +1 -1
- package/filtering/operators/after-eq-filter-operator.component.d.ts +2 -2
- package/filtering/operators/after-filter-operator.component.d.ts +2 -2
- package/filtering/operators/before-eq-filter-operator.component.d.ts +2 -2
- package/filtering/operators/before-filter-operator.component.d.ts +2 -2
- package/filtering/operators/contains-filter-operator.component.d.ts +2 -2
- package/filtering/operators/ends-with-filter-operator.component.d.ts +2 -2
- package/filtering/operators/eq-filter-operator.component.d.ts +2 -2
- package/filtering/operators/gte-filter-operator.component.d.ts +2 -2
- package/filtering/operators/is-empty-filter-operator.component.d.ts +2 -2
- package/filtering/operators/is-not-empty-filter-operator.component.d.ts +2 -2
- package/filtering/operators/is-not-null-filter-operator.component.d.ts +2 -2
- package/filtering/operators/isnull-filter-operator.component.d.ts +2 -2
- package/filtering/operators/lt-filter-operator.component.d.ts +2 -2
- package/filtering/operators/neq-filter-operator.component.d.ts +2 -2
- package/filtering/operators/not-contains-filter-operator.component.d.ts +2 -2
- package/filtering/operators/starts-with-filter-operator.component.d.ts +2 -2
- package/package.json +16 -16
- package/schematics/ngAdd/index.js +3 -3
|
@@ -85,7 +85,7 @@ export const localizeOperators = operators => localization => Object.keys(operat
|
|
|
85
85
|
value: operators[key]
|
|
86
86
|
}));
|
|
87
87
|
/**
|
|
88
|
-
* An abstract base class for the filter-cell component ([see example](
|
|
88
|
+
* An abstract base class for the filter-cell component ([see example](slug:filter_row_treelist#toc-custom-filter-row-components).
|
|
89
89
|
*/
|
|
90
90
|
export class BaseFilterCellComponent {
|
|
91
91
|
constructor(filterService) {
|
|
@@ -15,7 +15,7 @@ import * as i4 from "@progress/kendo-angular-dropdowns";
|
|
|
15
15
|
import * as i5 from "../filter-input.directive";
|
|
16
16
|
/**
|
|
17
17
|
* Represents a Boolean filter-cell component.
|
|
18
|
-
* [See example](slug:
|
|
18
|
+
* [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
19
19
|
*
|
|
20
20
|
* @example
|
|
21
21
|
* ```html
|
|
@@ -14,7 +14,7 @@ import * as i3 from "./filter-cell-wrapper.component";
|
|
|
14
14
|
import * as i4 from "@progress/kendo-angular-dateinputs";
|
|
15
15
|
import * as i5 from "../filter-input.directive";
|
|
16
16
|
/**
|
|
17
|
-
* Represents a date-filter cell component.
|
|
17
|
+
* Represents a date-filter cell component. [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
18
18
|
*
|
|
19
19
|
* @example
|
|
20
20
|
*
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { Directive, TemplateRef, Optional } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
|
-
* Represents the filter-cell template ([see example](
|
|
8
|
+
* Represents the filter-cell template ([see example](slug:filter_row_treelist#toc-custom-filter-row-components).
|
|
9
9
|
*
|
|
10
10
|
* The template context is set to the filter descriptor and the following additional fields are passed:
|
|
11
11
|
* - `column`—The current column instance. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
|
|
@@ -15,7 +15,7 @@ import * as i4 from "@progress/kendo-angular-inputs";
|
|
|
15
15
|
import * as i5 from "../../navigation/focusable.directive";
|
|
16
16
|
import * as i6 from "../filter-input.directive";
|
|
17
17
|
/**
|
|
18
|
-
* Represents a numeric filter cell.
|
|
18
|
+
* Represents a numeric filter cell. [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
19
19
|
*
|
|
20
20
|
* @example
|
|
21
21
|
* ```html
|
|
@@ -15,8 +15,7 @@ import * as i4 from "@angular/forms";
|
|
|
15
15
|
import * as i5 from "../../navigation/focusable.directive";
|
|
16
16
|
import * as i6 from "../filter-input.directive";
|
|
17
17
|
/**
|
|
18
|
-
* Represents a string-filter cell component
|
|
19
|
-
* ([see example]({% slug builtinfiltertemplate_treelist %}#toc-configuration-components-for-filter-templates)).
|
|
18
|
+
* Represents a string-filter cell component. [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
20
19
|
*
|
|
21
20
|
* @example
|
|
22
21
|
*
|
|
@@ -13,7 +13,7 @@ import * as i1 from "@progress/kendo-angular-l10n";
|
|
|
13
13
|
import * as i2 from "@angular/common";
|
|
14
14
|
import * as i3 from "@progress/kendo-angular-inputs";
|
|
15
15
|
/**
|
|
16
|
-
* Represents a Boolean-filter menu component. [See example](slug:
|
|
16
|
+
* Represents a Boolean-filter menu component. [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* ```html
|
|
@@ -14,7 +14,7 @@ import * as i2 from "./date-filter-menu-input.component";
|
|
|
14
14
|
import * as i3 from "@progress/kendo-angular-dropdowns";
|
|
15
15
|
import * as i4 from "@angular/common";
|
|
16
16
|
/**
|
|
17
|
-
* Represents a date-filter menu component.
|
|
17
|
+
* Represents a date-filter menu component. [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
|
|
18
18
|
*
|
|
19
19
|
* @example
|
|
20
20
|
* ```html
|
|
@@ -6,7 +6,7 @@ import { Directive, TemplateRef, Optional } from '@angular/core';
|
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Represents the filter-menu template
|
|
9
|
-
* ([see example](
|
|
9
|
+
* ([see example](slug:filter_menu_treelist#toc-custom-filter-menu-components).
|
|
10
10
|
*/
|
|
11
11
|
export class FilterMenuTemplateDirective {
|
|
12
12
|
constructor(templateRef) {
|
|
@@ -14,7 +14,7 @@ import * as i2 from "./numeric-filter-menu-input.component";
|
|
|
14
14
|
import * as i3 from "@progress/kendo-angular-dropdowns";
|
|
15
15
|
import * as i4 from "@angular/common";
|
|
16
16
|
/**
|
|
17
|
-
* Represents a numeric-filter menu component.
|
|
17
|
+
* Represents a numeric-filter menu component. [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
|
|
18
18
|
*
|
|
19
19
|
* @example
|
|
20
20
|
* ```html
|
|
@@ -15,7 +15,7 @@ import * as i3 from "@progress/kendo-angular-dropdowns";
|
|
|
15
15
|
import * as i4 from "@angular/common";
|
|
16
16
|
/**
|
|
17
17
|
* Represents a string-filter menu component.
|
|
18
|
-
*
|
|
18
|
+
* [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
|
|
19
19
|
*
|
|
20
20
|
* @example
|
|
21
21
|
* ```html
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `GreaterOrEqualTo` (**Is after or equal to**) date filter operator.
|
|
12
|
-
* [See example](slug:
|
|
11
|
+
* Represents the `GreaterOrEqualTo` (**Is after or equal to**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
|
|
12
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class AfterEqFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("after-eq", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `Greater` (**Is after**) date filter operator.
|
|
12
|
-
* [See example](slug:
|
|
11
|
+
* Represents the `Greater` (**Is after**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
|
|
12
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class AfterFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("after", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `LessOrEqualTo` (**Is before or equal to**) date filter operator.
|
|
12
|
-
* [See example](slug:
|
|
11
|
+
* Represents the `LessOrEqualTo` (**Is before or equal to**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
|
|
12
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class BeforeEqFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("before-eq", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `Less than` (**Is before**) date filter operator.
|
|
12
|
-
* [See example](slug:
|
|
11
|
+
* Represents the `Less than` (**Is before**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
|
|
12
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class BeforeFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("before", localization); }
|
|
@@ -8,8 +8,8 @@ import { FilterOperatorBase } from './filter-operator.base';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `Contains` (**Contains**) filter operator.
|
|
12
|
-
* [
|
|
11
|
+
* Represents the `Contains` (**Contains**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class ContainsFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("contains", localization); }
|
|
@@ -8,8 +8,8 @@ import { FilterOperatorBase } from './filter-operator.base';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `EndsWith` (**Ends with**) string filter operator.
|
|
12
|
-
* [
|
|
11
|
+
* Represents the `EndsWith` (**Ends with**) string filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class EndsWithFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("endswith", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `Equal` (**Is equal to**) filter operator.
|
|
12
|
-
* [
|
|
11
|
+
* Represents the `Equal` (**Is equal to**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class EqualFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("eq", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/*
|
|
11
|
-
* Represents the `Greater` (**Is greater than**) numeric filter operator.
|
|
12
|
-
* [See example](slug:
|
|
11
|
+
* Represents the `Greater` (**Is greater than**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
|
|
12
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class GreaterFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("gt", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) numeric filter operator.
|
|
12
|
-
* [See example](slug:
|
|
11
|
+
* Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
|
|
12
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class GreaterOrEqualToFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("gte", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `IsEmpty` (**Is empty**) filter operator.
|
|
12
|
-
* [
|
|
11
|
+
* Represents the `IsEmpty` (**Is empty**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class IsEmptyFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("isempty", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `IsNotEmpty` (**Is not empty**) filter operator.
|
|
12
|
-
* [
|
|
11
|
+
* Represents the `IsNotEmpty` (**Is not empty**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class IsNotEmptyFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("isnotempty", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `IsNotNull` (**Is not null**) filter operator.
|
|
12
|
-
* [
|
|
11
|
+
* Represents the `IsNotNull` (**Is not null**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class IsNotNullFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("isnotnull", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `IsNull` (**Is null**) filter operator.
|
|
12
|
-
* [
|
|
11
|
+
* Represents the `IsNull` (**Is null**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class IsNullFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("isnull", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `Less` (**Is less than**) numeric filter operator.
|
|
12
|
-
* [See example](slug:
|
|
11
|
+
* Represents the `Less` (**Is less than**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
|
|
12
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class LessFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("lt", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/*
|
|
11
|
-
* Represents the `LessOrEqualTo` (**Is less than or equal to**) numeric filter operator.
|
|
12
|
-
* [See example](slug:
|
|
11
|
+
* Represents the `LessOrEqualTo` (**Is less than or equal to**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
|
|
12
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class LessOrEqualToFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("lte", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `NotEqual` (**Is not equal to**) filter operator.
|
|
12
|
-
* [
|
|
11
|
+
* Represents the `NotEqual` (**Is not equal to**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class NotEqualFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("neq", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `DoesNotContain` (**Does not contain**) filter operator.
|
|
12
|
-
* [
|
|
11
|
+
* Represents the `DoesNotContain` (**Does not contain**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class DoesNotContainFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("doesnotcontain", localization); }
|
|
@@ -8,8 +8,8 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the `StartsWith` (**Starts with**) filter operator.
|
|
12
|
-
* [
|
|
11
|
+
* Represents the `StartsWith` (**Starts with**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
12
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
13
13
|
*/
|
|
14
14
|
export class StartsWithFilterOperatorComponent extends FilterOperatorBase {
|
|
15
15
|
constructor(localization) { super("startswith", localization); }
|
|
@@ -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: '13.
|
|
12
|
+
publishDate: 1694427091,
|
|
13
|
+
version: '13.5.0-develop.2',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|