@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
|
@@ -48,8 +48,8 @@ const packageMetadata = {
|
|
|
48
48
|
name: '@progress/kendo-angular-treelist',
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
|
50
50
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
51
|
-
publishDate:
|
|
52
|
-
version: '13.
|
|
51
|
+
publishDate: 1694427091,
|
|
52
|
+
version: '13.5.0-develop.2',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -637,7 +637,7 @@ const isColumnEditable = (column, formGroup) => column.isEditable !== false &&
|
|
|
637
637
|
const replaceMessagePlaceholder = (message, name, value) => message.replace(new RegExp(`\{\\s*${name}\\s*\}`, 'g'), value);
|
|
638
638
|
|
|
639
639
|
/**
|
|
640
|
-
* Represents the filter-cell template ([see example](
|
|
640
|
+
* Represents the filter-cell template ([see example](slug:filter_row_treelist#toc-custom-filter-row-components).
|
|
641
641
|
*
|
|
642
642
|
* The template context is set to the filter descriptor and the following additional fields are passed:
|
|
643
643
|
* - `column`—The current column instance. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
|
|
@@ -664,7 +664,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
664
664
|
|
|
665
665
|
/**
|
|
666
666
|
* Represents the filter-menu template
|
|
667
|
-
* ([see example](
|
|
667
|
+
* ([see example](slug:filter_menu_treelist#toc-custom-filter-menu-components).
|
|
668
668
|
*/
|
|
669
669
|
class FilterMenuTemplateDirective {
|
|
670
670
|
constructor(templateRef) {
|
|
@@ -5824,7 +5824,7 @@ const localizeOperators = operators => localization => Object.keys(operators).ma
|
|
|
5824
5824
|
value: operators[key]
|
|
5825
5825
|
}));
|
|
5826
5826
|
/**
|
|
5827
|
-
* An abstract base class for the filter-cell component ([see example](
|
|
5827
|
+
* An abstract base class for the filter-cell component ([see example](slug:filter_row_treelist#toc-custom-filter-row-components).
|
|
5828
5828
|
*/
|
|
5829
5829
|
class BaseFilterCellComponent {
|
|
5830
5830
|
constructor(filterService) {
|
|
@@ -6433,7 +6433,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6433
6433
|
|
|
6434
6434
|
/**
|
|
6435
6435
|
* Represents a string-filter menu component.
|
|
6436
|
-
*
|
|
6436
|
+
* [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
|
|
6437
6437
|
*
|
|
6438
6438
|
* @example
|
|
6439
6439
|
* ```html
|
|
@@ -6767,7 +6767,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6767
6767
|
}] } });
|
|
6768
6768
|
|
|
6769
6769
|
/**
|
|
6770
|
-
* Represents a numeric-filter menu component.
|
|
6770
|
+
* Represents a numeric-filter menu component. [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
|
|
6771
6771
|
*
|
|
6772
6772
|
* @example
|
|
6773
6773
|
* ```html
|
|
@@ -7165,7 +7165,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7165
7165
|
}] } });
|
|
7166
7166
|
|
|
7167
7167
|
/**
|
|
7168
|
-
* Represents a date-filter menu component.
|
|
7168
|
+
* Represents a date-filter menu component. [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
|
|
7169
7169
|
*
|
|
7170
7170
|
* @example
|
|
7171
7171
|
* ```html
|
|
@@ -7405,7 +7405,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7405
7405
|
}] } });
|
|
7406
7406
|
|
|
7407
7407
|
/**
|
|
7408
|
-
* Represents a Boolean-filter menu component. [See example](slug:
|
|
7408
|
+
* Represents a Boolean-filter menu component. [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
|
|
7409
7409
|
*
|
|
7410
7410
|
* @example
|
|
7411
7411
|
* ```html
|
|
@@ -9114,8 +9114,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9114
9114
|
}] } });
|
|
9115
9115
|
|
|
9116
9116
|
/**
|
|
9117
|
-
* Represents a string-filter cell component
|
|
9118
|
-
* ([see example]({% slug builtinfiltertemplate_treelist %}#toc-configuration-components-for-filter-templates)).
|
|
9117
|
+
* Represents a string-filter cell component. [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
9119
9118
|
*
|
|
9120
9119
|
* @example
|
|
9121
9120
|
*
|
|
@@ -9202,7 +9201,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9202
9201
|
}] } });
|
|
9203
9202
|
|
|
9204
9203
|
/**
|
|
9205
|
-
* Represents a numeric filter cell.
|
|
9204
|
+
* Represents a numeric filter cell. [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
9206
9205
|
*
|
|
9207
9206
|
* @example
|
|
9208
9207
|
* ```html
|
|
@@ -9303,7 +9302,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9303
9302
|
|
|
9304
9303
|
/**
|
|
9305
9304
|
* Represents a Boolean filter-cell component.
|
|
9306
|
-
* [See example](slug:
|
|
9305
|
+
* [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
9307
9306
|
*
|
|
9308
9307
|
* @example
|
|
9309
9308
|
* ```html
|
|
@@ -9388,7 +9387,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9388
9387
|
}], ctorParameters: function () { return [{ type: FilterService }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }]; } });
|
|
9389
9388
|
|
|
9390
9389
|
/**
|
|
9391
|
-
* Represents a date-filter cell component.
|
|
9390
|
+
* Represents a date-filter cell component. [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
9392
9391
|
*
|
|
9393
9392
|
* @example
|
|
9394
9393
|
*
|
|
@@ -17563,8 +17562,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17563
17562
|
}] });
|
|
17564
17563
|
|
|
17565
17564
|
/**
|
|
17566
|
-
* Represents the `Contains` (**Contains**) filter operator.
|
|
17567
|
-
* [
|
|
17565
|
+
* Represents the `Contains` (**Contains**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17566
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17568
17567
|
*/
|
|
17569
17568
|
class ContainsFilterOperatorComponent extends FilterOperatorBase {
|
|
17570
17569
|
constructor(localization) { super("contains", localization); }
|
|
@@ -17591,8 +17590,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17591
17590
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17592
17591
|
|
|
17593
17592
|
/**
|
|
17594
|
-
* Represents the `DoesNotContain` (**Does not contain**) filter operator.
|
|
17595
|
-
* [
|
|
17593
|
+
* Represents the `DoesNotContain` (**Does not contain**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17594
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17596
17595
|
*/
|
|
17597
17596
|
class DoesNotContainFilterOperatorComponent extends FilterOperatorBase {
|
|
17598
17597
|
constructor(localization) { super("doesnotcontain", localization); }
|
|
@@ -17619,8 +17618,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17619
17618
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17620
17619
|
|
|
17621
17620
|
/**
|
|
17622
|
-
* Represents the `EndsWith` (**Ends with**) string filter operator.
|
|
17623
|
-
* [
|
|
17621
|
+
* Represents the `EndsWith` (**Ends with**) string filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17622
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17624
17623
|
*/
|
|
17625
17624
|
class EndsWithFilterOperatorComponent extends FilterOperatorBase {
|
|
17626
17625
|
constructor(localization) { super("endswith", localization); }
|
|
@@ -17647,8 +17646,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17647
17646
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17648
17647
|
|
|
17649
17648
|
/**
|
|
17650
|
-
* Represents the `Equal` (**Is equal to**) filter operator.
|
|
17651
|
-
* [
|
|
17649
|
+
* Represents the `Equal` (**Is equal to**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17650
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17652
17651
|
*/
|
|
17653
17652
|
class EqualFilterOperatorComponent extends FilterOperatorBase {
|
|
17654
17653
|
constructor(localization) { super("eq", localization); }
|
|
@@ -17675,8 +17674,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17675
17674
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17676
17675
|
|
|
17677
17676
|
/**
|
|
17678
|
-
* Represents the `IsEmpty` (**Is empty**) filter operator.
|
|
17679
|
-
* [
|
|
17677
|
+
* Represents the `IsEmpty` (**Is empty**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17678
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17680
17679
|
*/
|
|
17681
17680
|
class IsEmptyFilterOperatorComponent extends FilterOperatorBase {
|
|
17682
17681
|
constructor(localization) { super("isempty", localization); }
|
|
@@ -17703,8 +17702,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17703
17702
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17704
17703
|
|
|
17705
17704
|
/**
|
|
17706
|
-
* Represents the `IsNotEmpty` (**Is not empty**) filter operator.
|
|
17707
|
-
* [
|
|
17705
|
+
* Represents the `IsNotEmpty` (**Is not empty**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17706
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17708
17707
|
*/
|
|
17709
17708
|
class IsNotEmptyFilterOperatorComponent extends FilterOperatorBase {
|
|
17710
17709
|
constructor(localization) { super("isnotempty", localization); }
|
|
@@ -17731,8 +17730,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17731
17730
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17732
17731
|
|
|
17733
17732
|
/**
|
|
17734
|
-
* Represents the `IsNotNull` (**Is not null**) filter operator.
|
|
17735
|
-
* [
|
|
17733
|
+
* Represents the `IsNotNull` (**Is not null**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17734
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17736
17735
|
*/
|
|
17737
17736
|
class IsNotNullFilterOperatorComponent extends FilterOperatorBase {
|
|
17738
17737
|
constructor(localization) { super("isnotnull", localization); }
|
|
@@ -17759,8 +17758,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17759
17758
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17760
17759
|
|
|
17761
17760
|
/**
|
|
17762
|
-
* Represents the `IsNull` (**Is null**) filter operator.
|
|
17763
|
-
* [
|
|
17761
|
+
* Represents the `IsNull` (**Is null**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17762
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17764
17763
|
*/
|
|
17765
17764
|
class IsNullFilterOperatorComponent extends FilterOperatorBase {
|
|
17766
17765
|
constructor(localization) { super("isnull", localization); }
|
|
@@ -17787,8 +17786,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17787
17786
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17788
17787
|
|
|
17789
17788
|
/**
|
|
17790
|
-
* Represents the `NotEqual` (**Is not equal to**) filter operator.
|
|
17791
|
-
* [
|
|
17789
|
+
* Represents the `NotEqual` (**Is not equal to**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17790
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17792
17791
|
*/
|
|
17793
17792
|
class NotEqualFilterOperatorComponent extends FilterOperatorBase {
|
|
17794
17793
|
constructor(localization) { super("neq", localization); }
|
|
@@ -17815,8 +17814,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17815
17814
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17816
17815
|
|
|
17817
17816
|
/**
|
|
17818
|
-
* Represents the `StartsWith` (**Starts with**) filter operator.
|
|
17819
|
-
* [
|
|
17817
|
+
* Represents the `StartsWith` (**Starts with**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17818
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17820
17819
|
*/
|
|
17821
17820
|
class StartsWithFilterOperatorComponent extends FilterOperatorBase {
|
|
17822
17821
|
constructor(localization) { super("startswith", localization); }
|
|
@@ -17843,8 +17842,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17843
17842
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17844
17843
|
|
|
17845
17844
|
/*
|
|
17846
|
-
* Represents the `Greater` (**Is greater than**) numeric filter operator.
|
|
17847
|
-
* [See example](slug:
|
|
17845
|
+
* Represents the `Greater` (**Is greater than**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
|
|
17846
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17848
17847
|
*/
|
|
17849
17848
|
class GreaterFilterOperatorComponent extends FilterOperatorBase {
|
|
17850
17849
|
constructor(localization) { super("gt", localization); }
|
|
@@ -17871,8 +17870,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17871
17870
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17872
17871
|
|
|
17873
17872
|
/**
|
|
17874
|
-
* Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) numeric filter operator.
|
|
17875
|
-
* [See example](slug:
|
|
17873
|
+
* Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
|
|
17874
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17876
17875
|
*/
|
|
17877
17876
|
class GreaterOrEqualToFilterOperatorComponent extends FilterOperatorBase {
|
|
17878
17877
|
constructor(localization) { super("gte", localization); }
|
|
@@ -17899,8 +17898,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17899
17898
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17900
17899
|
|
|
17901
17900
|
/**
|
|
17902
|
-
* Represents the `Less` (**Is less than**) numeric filter operator.
|
|
17903
|
-
* [See example](slug:
|
|
17901
|
+
* Represents the `Less` (**Is less than**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
|
|
17902
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17904
17903
|
*/
|
|
17905
17904
|
class LessFilterOperatorComponent extends FilterOperatorBase {
|
|
17906
17905
|
constructor(localization) { super("lt", localization); }
|
|
@@ -17927,8 +17926,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17927
17926
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17928
17927
|
|
|
17929
17928
|
/*
|
|
17930
|
-
* Represents the `LessOrEqualTo` (**Is less than or equal to**) numeric filter operator.
|
|
17931
|
-
* [See example](slug:
|
|
17929
|
+
* Represents the `LessOrEqualTo` (**Is less than or equal to**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
|
|
17930
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17932
17931
|
*/
|
|
17933
17932
|
class LessOrEqualToFilterOperatorComponent extends FilterOperatorBase {
|
|
17934
17933
|
constructor(localization) { super("lte", localization); }
|
|
@@ -17955,8 +17954,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17955
17954
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17956
17955
|
|
|
17957
17956
|
/**
|
|
17958
|
-
* Represents the `Greater` (**Is after**) date filter operator.
|
|
17959
|
-
* [See example](slug:
|
|
17957
|
+
* Represents the `Greater` (**Is after**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
|
|
17958
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17960
17959
|
*/
|
|
17961
17960
|
class AfterFilterOperatorComponent extends FilterOperatorBase {
|
|
17962
17961
|
constructor(localization) { super("after", localization); }
|
|
@@ -17992,8 +17991,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17992
17991
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17993
17992
|
|
|
17994
17993
|
/**
|
|
17995
|
-
* Represents the `GreaterOrEqualTo` (**Is after or equal to**) date filter operator.
|
|
17996
|
-
* [See example](slug:
|
|
17994
|
+
* Represents the `GreaterOrEqualTo` (**Is after or equal to**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
|
|
17995
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17997
17996
|
*/
|
|
17998
17997
|
class AfterEqFilterOperatorComponent extends FilterOperatorBase {
|
|
17999
17998
|
constructor(localization) { super("after-eq", localization); }
|
|
@@ -18029,8 +18028,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
18029
18028
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
18030
18029
|
|
|
18031
18030
|
/**
|
|
18032
|
-
* Represents the `LessOrEqualTo` (**Is before or equal to**) date filter operator.
|
|
18033
|
-
* [See example](slug:
|
|
18031
|
+
* Represents the `LessOrEqualTo` (**Is before or equal to**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
|
|
18032
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
18034
18033
|
*/
|
|
18035
18034
|
class BeforeEqFilterOperatorComponent extends FilterOperatorBase {
|
|
18036
18035
|
constructor(localization) { super("before-eq", localization); }
|
|
@@ -18066,8 +18065,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
18066
18065
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
18067
18066
|
|
|
18068
18067
|
/**
|
|
18069
|
-
* Represents the `Less than` (**Is before**) date filter operator.
|
|
18070
|
-
* [See example](slug:
|
|
18068
|
+
* Represents the `Less than` (**Is before**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
|
|
18069
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
18071
18070
|
*/
|
|
18072
18071
|
class BeforeFilterOperatorComponent extends FilterOperatorBase {
|
|
18073
18072
|
constructor(localization) { super("before", localization); }
|
|
@@ -48,8 +48,8 @@ const packageMetadata = {
|
|
|
48
48
|
name: '@progress/kendo-angular-treelist',
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
|
50
50
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
51
|
-
publishDate:
|
|
52
|
-
version: '13.
|
|
51
|
+
publishDate: 1694427091,
|
|
52
|
+
version: '13.5.0-develop.2',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -627,7 +627,7 @@ const isColumnEditable = (column, formGroup) => column.isEditable !== false &&
|
|
|
627
627
|
const replaceMessagePlaceholder = (message, name, value) => message.replace(new RegExp(`\{\\s*${name}\\s*\}`, 'g'), value);
|
|
628
628
|
|
|
629
629
|
/**
|
|
630
|
-
* Represents the filter-cell template ([see example](
|
|
630
|
+
* Represents the filter-cell template ([see example](slug:filter_row_treelist#toc-custom-filter-row-components).
|
|
631
631
|
*
|
|
632
632
|
* The template context is set to the filter descriptor and the following additional fields are passed:
|
|
633
633
|
* - `column`—The current column instance. Use it as an alias for a template variable by utilizing the `let-column="column"` syntax.
|
|
@@ -652,7 +652,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
652
652
|
|
|
653
653
|
/**
|
|
654
654
|
* Represents the filter-menu template
|
|
655
|
-
* ([see example](
|
|
655
|
+
* ([see example](slug:filter_menu_treelist#toc-custom-filter-menu-components).
|
|
656
656
|
*/
|
|
657
657
|
class FilterMenuTemplateDirective {
|
|
658
658
|
constructor(templateRef) {
|
|
@@ -5787,7 +5787,7 @@ const localizeOperators = operators => localization => Object.keys(operators).ma
|
|
|
5787
5787
|
value: operators[key]
|
|
5788
5788
|
}));
|
|
5789
5789
|
/**
|
|
5790
|
-
* An abstract base class for the filter-cell component ([see example](
|
|
5790
|
+
* An abstract base class for the filter-cell component ([see example](slug:filter_row_treelist#toc-custom-filter-row-components).
|
|
5791
5791
|
*/
|
|
5792
5792
|
class BaseFilterCellComponent {
|
|
5793
5793
|
constructor(filterService) {
|
|
@@ -6393,7 +6393,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6393
6393
|
|
|
6394
6394
|
/**
|
|
6395
6395
|
* Represents a string-filter menu component.
|
|
6396
|
-
*
|
|
6396
|
+
* [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
|
|
6397
6397
|
*
|
|
6398
6398
|
* @example
|
|
6399
6399
|
* ```html
|
|
@@ -6727,7 +6727,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6727
6727
|
}] } });
|
|
6728
6728
|
|
|
6729
6729
|
/**
|
|
6730
|
-
* Represents a numeric-filter menu component.
|
|
6730
|
+
* Represents a numeric-filter menu component. [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
|
|
6731
6731
|
*
|
|
6732
6732
|
* @example
|
|
6733
6733
|
* ```html
|
|
@@ -7125,7 +7125,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7125
7125
|
}] } });
|
|
7126
7126
|
|
|
7127
7127
|
/**
|
|
7128
|
-
* Represents a date-filter menu component.
|
|
7128
|
+
* Represents a date-filter menu component. [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
|
|
7129
7129
|
*
|
|
7130
7130
|
* @example
|
|
7131
7131
|
* ```html
|
|
@@ -7365,7 +7365,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7365
7365
|
}] } });
|
|
7366
7366
|
|
|
7367
7367
|
/**
|
|
7368
|
-
* Represents a Boolean-filter menu component. [See example](slug:
|
|
7368
|
+
* Represents a Boolean-filter menu component. [See example](slug:filter_menu_treelist#toc-built-in-filter-menu-components).
|
|
7369
7369
|
*
|
|
7370
7370
|
* @example
|
|
7371
7371
|
* ```html
|
|
@@ -9070,8 +9070,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9070
9070
|
}] } });
|
|
9071
9071
|
|
|
9072
9072
|
/**
|
|
9073
|
-
* Represents a string-filter cell component
|
|
9074
|
-
* ([see example]({% slug builtinfiltertemplate_treelist %}#toc-configuration-components-for-filter-templates)).
|
|
9073
|
+
* Represents a string-filter cell component. [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
9075
9074
|
*
|
|
9076
9075
|
* @example
|
|
9077
9076
|
*
|
|
@@ -9158,7 +9157,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9158
9157
|
}] } });
|
|
9159
9158
|
|
|
9160
9159
|
/**
|
|
9161
|
-
* Represents a numeric filter cell.
|
|
9160
|
+
* Represents a numeric filter cell. [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
9162
9161
|
*
|
|
9163
9162
|
* @example
|
|
9164
9163
|
* ```html
|
|
@@ -9259,7 +9258,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9259
9258
|
|
|
9260
9259
|
/**
|
|
9261
9260
|
* Represents a Boolean filter-cell component.
|
|
9262
|
-
* [See example](slug:
|
|
9261
|
+
* [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
9263
9262
|
*
|
|
9264
9263
|
* @example
|
|
9265
9264
|
* ```html
|
|
@@ -9344,7 +9343,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9344
9343
|
}], ctorParameters: function () { return [{ type: FilterService }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }]; } });
|
|
9345
9344
|
|
|
9346
9345
|
/**
|
|
9347
|
-
* Represents a date-filter cell component.
|
|
9346
|
+
* Represents a date-filter cell component. [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
9348
9347
|
*
|
|
9349
9348
|
* @example
|
|
9350
9349
|
*
|
|
@@ -17506,8 +17505,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17506
17505
|
}] });
|
|
17507
17506
|
|
|
17508
17507
|
/**
|
|
17509
|
-
* Represents the `Contains` (**Contains**) filter operator.
|
|
17510
|
-
* [
|
|
17508
|
+
* Represents the `Contains` (**Contains**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17509
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17511
17510
|
*/
|
|
17512
17511
|
class ContainsFilterOperatorComponent extends FilterOperatorBase {
|
|
17513
17512
|
constructor(localization) { super("contains", localization); }
|
|
@@ -17534,8 +17533,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17534
17533
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17535
17534
|
|
|
17536
17535
|
/**
|
|
17537
|
-
* Represents the `DoesNotContain` (**Does not contain**) filter operator.
|
|
17538
|
-
* [
|
|
17536
|
+
* Represents the `DoesNotContain` (**Does not contain**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17537
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17539
17538
|
*/
|
|
17540
17539
|
class DoesNotContainFilterOperatorComponent extends FilterOperatorBase {
|
|
17541
17540
|
constructor(localization) { super("doesnotcontain", localization); }
|
|
@@ -17562,8 +17561,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17562
17561
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17563
17562
|
|
|
17564
17563
|
/**
|
|
17565
|
-
* Represents the `EndsWith` (**Ends with**) string filter operator.
|
|
17566
|
-
* [
|
|
17564
|
+
* Represents the `EndsWith` (**Ends with**) string filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17565
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17567
17566
|
*/
|
|
17568
17567
|
class EndsWithFilterOperatorComponent extends FilterOperatorBase {
|
|
17569
17568
|
constructor(localization) { super("endswith", localization); }
|
|
@@ -17590,8 +17589,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17590
17589
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17591
17590
|
|
|
17592
17591
|
/**
|
|
17593
|
-
* Represents the `Equal` (**Is equal to**) filter operator.
|
|
17594
|
-
* [
|
|
17592
|
+
* Represents the `Equal` (**Is equal to**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17593
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17595
17594
|
*/
|
|
17596
17595
|
class EqualFilterOperatorComponent extends FilterOperatorBase {
|
|
17597
17596
|
constructor(localization) { super("eq", localization); }
|
|
@@ -17618,8 +17617,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17618
17617
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17619
17618
|
|
|
17620
17619
|
/**
|
|
17621
|
-
* Represents the `IsEmpty` (**Is empty**) filter operator.
|
|
17622
|
-
* [
|
|
17620
|
+
* Represents the `IsEmpty` (**Is empty**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17621
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17623
17622
|
*/
|
|
17624
17623
|
class IsEmptyFilterOperatorComponent extends FilterOperatorBase {
|
|
17625
17624
|
constructor(localization) { super("isempty", localization); }
|
|
@@ -17646,8 +17645,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17646
17645
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17647
17646
|
|
|
17648
17647
|
/**
|
|
17649
|
-
* Represents the `IsNotEmpty` (**Is not empty**) filter operator.
|
|
17650
|
-
* [
|
|
17648
|
+
* Represents the `IsNotEmpty` (**Is not empty**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17649
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17651
17650
|
*/
|
|
17652
17651
|
class IsNotEmptyFilterOperatorComponent extends FilterOperatorBase {
|
|
17653
17652
|
constructor(localization) { super("isnotempty", localization); }
|
|
@@ -17674,8 +17673,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17674
17673
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17675
17674
|
|
|
17676
17675
|
/**
|
|
17677
|
-
* Represents the `IsNotNull` (**Is not null**) filter operator.
|
|
17678
|
-
* [
|
|
17676
|
+
* Represents the `IsNotNull` (**Is not null**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17677
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17679
17678
|
*/
|
|
17680
17679
|
class IsNotNullFilterOperatorComponent extends FilterOperatorBase {
|
|
17681
17680
|
constructor(localization) { super("isnotnull", localization); }
|
|
@@ -17702,8 +17701,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17702
17701
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17703
17702
|
|
|
17704
17703
|
/**
|
|
17705
|
-
* Represents the `IsNull` (**Is null**) filter operator.
|
|
17706
|
-
* [
|
|
17704
|
+
* Represents the `IsNull` (**Is null**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17705
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17707
17706
|
*/
|
|
17708
17707
|
class IsNullFilterOperatorComponent extends FilterOperatorBase {
|
|
17709
17708
|
constructor(localization) { super("isnull", localization); }
|
|
@@ -17730,8 +17729,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17730
17729
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17731
17730
|
|
|
17732
17731
|
/**
|
|
17733
|
-
* Represents the `NotEqual` (**Is not equal to**) filter operator.
|
|
17734
|
-
* [
|
|
17732
|
+
* Represents the `NotEqual` (**Is not equal to**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17733
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17735
17734
|
*/
|
|
17736
17735
|
class NotEqualFilterOperatorComponent extends FilterOperatorBase {
|
|
17737
17736
|
constructor(localization) { super("neq", localization); }
|
|
@@ -17758,8 +17757,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17758
17757
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17759
17758
|
|
|
17760
17759
|
/**
|
|
17761
|
-
* Represents the `StartsWith` (**Starts with**) filter operator.
|
|
17762
|
-
* [
|
|
17760
|
+
* Represents the `StartsWith` (**Starts with**) filter operator. [See example](slug:filtering_treelist#toc-using-the-built-in-directives).
|
|
17761
|
+
* For more information and examples, refer to the article on setting [default filter operators](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17763
17762
|
*/
|
|
17764
17763
|
class StartsWithFilterOperatorComponent extends FilterOperatorBase {
|
|
17765
17764
|
constructor(localization) { super("startswith", localization); }
|
|
@@ -17786,8 +17785,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17786
17785
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17787
17786
|
|
|
17788
17787
|
/*
|
|
17789
|
-
* Represents the `Greater` (**Is greater than**) numeric filter operator.
|
|
17790
|
-
* [See example](slug:
|
|
17788
|
+
* Represents the `Greater` (**Is greater than**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
|
|
17789
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17791
17790
|
*/
|
|
17792
17791
|
class GreaterFilterOperatorComponent extends FilterOperatorBase {
|
|
17793
17792
|
constructor(localization) { super("gt", localization); }
|
|
@@ -17814,8 +17813,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17814
17813
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17815
17814
|
|
|
17816
17815
|
/**
|
|
17817
|
-
* Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) numeric filter operator.
|
|
17818
|
-
* [See example](slug:
|
|
17816
|
+
* Represents the `GreaterOrEqualTo` (**Is greater than or equal to**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
|
|
17817
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17819
17818
|
*/
|
|
17820
17819
|
class GreaterOrEqualToFilterOperatorComponent extends FilterOperatorBase {
|
|
17821
17820
|
constructor(localization) { super("gte", localization); }
|
|
@@ -17842,8 +17841,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17842
17841
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17843
17842
|
|
|
17844
17843
|
/**
|
|
17845
|
-
* Represents the `Less` (**Is less than**) numeric filter operator.
|
|
17846
|
-
* [See example](slug:
|
|
17844
|
+
* Represents the `Less` (**Is less than**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
|
|
17845
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17847
17846
|
*/
|
|
17848
17847
|
class LessFilterOperatorComponent extends FilterOperatorBase {
|
|
17849
17848
|
constructor(localization) { super("lt", localization); }
|
|
@@ -17870,8 +17869,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17870
17869
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17871
17870
|
|
|
17872
17871
|
/*
|
|
17873
|
-
* Represents the `LessOrEqualTo` (**Is less than or equal to**) numeric filter operator.
|
|
17874
|
-
* [See example](slug:
|
|
17872
|
+
* Represents the `LessOrEqualTo` (**Is less than or equal to**) [numeric filter](slug:filtering_treelist#toc-numeric-filter) operator.
|
|
17873
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17875
17874
|
*/
|
|
17876
17875
|
class LessOrEqualToFilterOperatorComponent extends FilterOperatorBase {
|
|
17877
17876
|
constructor(localization) { super("lte", localization); }
|
|
@@ -17898,8 +17897,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17898
17897
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17899
17898
|
|
|
17900
17899
|
/**
|
|
17901
|
-
* Represents the `Greater` (**Is after**) date filter operator.
|
|
17902
|
-
* [See example](slug:
|
|
17900
|
+
* Represents the `Greater` (**Is after**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
|
|
17901
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17903
17902
|
*/
|
|
17904
17903
|
class AfterFilterOperatorComponent extends FilterOperatorBase {
|
|
17905
17904
|
constructor(localization) { super("after", localization); }
|
|
@@ -17935,8 +17934,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17935
17934
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17936
17935
|
|
|
17937
17936
|
/**
|
|
17938
|
-
* Represents the `GreaterOrEqualTo` (**Is after or equal to**) date filter operator.
|
|
17939
|
-
* [See example](slug:
|
|
17937
|
+
* Represents the `GreaterOrEqualTo` (**Is after or equal to**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
|
|
17938
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17940
17939
|
*/
|
|
17941
17940
|
class AfterEqFilterOperatorComponent extends FilterOperatorBase {
|
|
17942
17941
|
constructor(localization) { super("after-eq", localization); }
|
|
@@ -17972,8 +17971,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17972
17971
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
17973
17972
|
|
|
17974
17973
|
/**
|
|
17975
|
-
* Represents the `LessOrEqualTo` (**Is before or equal to**) date filter operator.
|
|
17976
|
-
* [See example](slug:
|
|
17974
|
+
* Represents the `LessOrEqualTo` (**Is before or equal to**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
|
|
17975
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
17977
17976
|
*/
|
|
17978
17977
|
class BeforeEqFilterOperatorComponent extends FilterOperatorBase {
|
|
17979
17978
|
constructor(localization) { super("before-eq", localization); }
|
|
@@ -18009,8 +18008,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
18009
18008
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
|
|
18010
18009
|
|
|
18011
18010
|
/**
|
|
18012
|
-
* Represents the `Less than` (**Is before**) date filter operator.
|
|
18013
|
-
* [See example](slug:
|
|
18011
|
+
* Represents the `Less than` (**Is before**) [date filter](slug:filtering_treelist#toc-date-filter) operator.
|
|
18012
|
+
* [See example](slug:filter_row_treelist#toc-setting-the-default-filter-operator).
|
|
18014
18013
|
*/
|
|
18015
18014
|
class BeforeFilterOperatorComponent extends FilterOperatorBase {
|
|
18016
18015
|
constructor(localization) { super("before", localization); }
|
|
@@ -44,7 +44,7 @@ export declare const localizeOperators: (operators: any) => (localization: any)
|
|
|
44
44
|
value: any;
|
|
45
45
|
}[];
|
|
46
46
|
/**
|
|
47
|
-
* An abstract base class for the filter-cell component ([see example](
|
|
47
|
+
* An abstract base class for the filter-cell component ([see example](slug:filter_row_treelist#toc-custom-filter-row-components).
|
|
48
48
|
*/
|
|
49
49
|
export declare abstract class BaseFilterCellComponent implements AfterContentInit, OnDestroy {
|
|
50
50
|
protected filterService: FilterService;
|
|
@@ -9,7 +9,7 @@ import { BooleanFilterComponent } from '../boolean-filter.component';
|
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
/**
|
|
11
11
|
* Represents a Boolean filter-cell component.
|
|
12
|
-
* [See example](slug:
|
|
12
|
+
* [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html
|
|
@@ -7,7 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
7
7
|
import { DateFilterComponent } from '../date-filter.component';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
|
-
* Represents a date-filter cell component.
|
|
10
|
+
* Represents a date-filter cell component. [See example](slug:filter_row_treelist#toc-built-in-filter-row-components).
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
13
13
|
*
|