@progress/kendo-angular-filter 1.0.0-next.202204011458 → 1.0.0

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.
Files changed (106) hide show
  1. package/dist/cdn/js/kendo-angular-filter.js +20 -0
  2. package/dist/cdn/main.js +5 -0
  3. package/dist/es/aria-label.directive.js +30 -0
  4. package/dist/es/editors/boolean-editor.component.js +61 -0
  5. package/dist/es/editors/date-editor.component.js +45 -0
  6. package/dist/es/editors/numeric-editor.component.js +45 -0
  7. package/dist/es/editors/text-editor.component.js +45 -0
  8. package/dist/es/filter-expression-operators.component.js +48 -0
  9. package/dist/es/filter-expression.component.js +136 -0
  10. package/dist/es/filter-group.component.js +84 -0
  11. package/dist/es/filter.component.js +185 -0
  12. package/dist/es/filter.module.js +91 -0
  13. package/dist/es/filter.service.js +45 -0
  14. package/{esm2015/main.js → dist/es/index.js} +8 -3
  15. package/dist/es/localization/custom-messages.component.js +44 -0
  16. package/dist/es/localization/localized-messages.directive.js +35 -0
  17. package/dist/es/localization/messages.js +166 -0
  18. package/dist/es/main.js +6 -0
  19. package/{esm2015 → dist/es}/model/filter-expression.js +0 -1
  20. package/dist/es/package-metadata.js +15 -0
  21. package/dist/es/shared.module.js +35 -0
  22. package/dist/es/util.js +136 -0
  23. package/{aria-label.directive.d.ts → dist/es2015/aria-label.directive.d.ts} +0 -3
  24. package/dist/es2015/aria-label.directive.js +29 -0
  25. package/{editors → dist/es2015/editors}/boolean-editor.component.d.ts +0 -3
  26. package/dist/es2015/editors/boolean-editor.component.js +72 -0
  27. package/{editors → dist/es2015/editors}/date-editor.component.d.ts +0 -3
  28. package/dist/es2015/editors/date-editor.component.js +56 -0
  29. package/{editors → dist/es2015/editors}/numeric-editor.component.d.ts +0 -3
  30. package/dist/es2015/editors/numeric-editor.component.js +56 -0
  31. package/{editors → dist/es2015/editors}/text-editor.component.d.ts +0 -3
  32. package/dist/es2015/editors/text-editor.component.js +52 -0
  33. package/{filter-expression-operators.component.d.ts → dist/es2015/filter-expression-operators.component.d.ts} +0 -3
  34. package/dist/es2015/filter-expression-operators.component.js +59 -0
  35. package/{filter-expression.component.d.ts → dist/es2015/filter-expression.component.d.ts} +0 -5
  36. package/{esm2015 → dist/es2015}/filter-expression.component.js +26 -71
  37. package/{filter-group.component.d.ts → dist/es2015/filter-group.component.d.ts} +2 -7
  38. package/dist/es2015/filter-group.component.js +145 -0
  39. package/{filter.component.d.ts → dist/es2015/filter.component.d.ts} +2 -7
  40. package/{esm2015 → dist/es2015}/filter.component.js +34 -151
  41. package/dist/es2015/filter.module.d.ts +37 -0
  42. package/dist/es2015/filter.module.js +88 -0
  43. package/{filter.service.d.ts → dist/es2015/filter.service.d.ts} +0 -3
  44. package/{esm2015 → dist/es2015}/filter.service.js +10 -8
  45. package/{main.d.ts → dist/es2015/index.d.ts} +8 -4
  46. package/dist/es2015/index.js +21 -0
  47. package/dist/es2015/index.metadata.json +1 -0
  48. package/{localization → dist/es2015/localization}/custom-messages.component.d.ts +1 -4
  49. package/dist/es2015/localization/custom-messages.component.js +36 -0
  50. package/{localization → dist/es2015/localization}/localized-messages.directive.d.ts +0 -3
  51. package/dist/es2015/localization/localized-messages.directive.js +31 -0
  52. package/{localization → dist/es2015/localization}/messages.d.ts +0 -3
  53. package/dist/es2015/localization/messages.js +160 -0
  54. package/dist/es2015/main.d.ts +7 -0
  55. package/dist/es2015/main.js +6 -0
  56. package/{model → dist/es2015/model}/filter-expression.d.ts +0 -0
  57. package/{esm2015/kendo-angular-filter.js → dist/es2015/model/filter-expression.js} +1 -2
  58. package/{package-metadata.d.ts → dist/es2015/package-metadata.d.ts} +0 -0
  59. package/{esm2015 → dist/es2015}/package-metadata.js +1 -1
  60. package/{kendo-angular-filter.d.ts → dist/es2015/shared.module.d.ts} +3 -3
  61. package/dist/es2015/shared.module.js +32 -0
  62. package/dist/es2015/util.d.ts +147 -0
  63. package/{esm2015 → dist/es2015}/util.js +3 -3
  64. package/dist/fesm2015/index.js +1316 -0
  65. package/dist/fesm5/index.js +1076 -0
  66. package/dist/npm/aria-label.directive.js +32 -0
  67. package/dist/npm/editors/boolean-editor.component.js +63 -0
  68. package/dist/npm/editors/date-editor.component.js +47 -0
  69. package/dist/npm/editors/numeric-editor.component.js +47 -0
  70. package/dist/npm/editors/text-editor.component.js +47 -0
  71. package/dist/npm/filter-expression-operators.component.js +50 -0
  72. package/dist/npm/filter-expression.component.js +138 -0
  73. package/dist/npm/filter-group.component.js +86 -0
  74. package/dist/npm/filter.component.js +187 -0
  75. package/dist/npm/filter.module.js +93 -0
  76. package/dist/npm/filter.service.js +47 -0
  77. package/dist/npm/index.js +37 -0
  78. package/dist/npm/localization/custom-messages.component.js +46 -0
  79. package/dist/npm/localization/localized-messages.directive.js +37 -0
  80. package/dist/npm/localization/messages.js +168 -0
  81. package/dist/npm/main.js +10 -0
  82. package/dist/npm/model/filter-expression.js +9 -0
  83. package/dist/npm/package-metadata.js +17 -0
  84. package/dist/npm/shared.module.js +37 -0
  85. package/dist/npm/util.js +138 -0
  86. package/dist/systemjs/kendo-angular-filter.js +5 -0
  87. package/package.json +109 -38
  88. package/schematics/ngAdd/index.js +2 -5
  89. package/schematics/ngAdd/index.js.map +1 -1
  90. package/bundles/kendo-angular-filter.umd.js +0 -5
  91. package/esm2015/aria-label.directive.js +0 -28
  92. package/esm2015/editors/boolean-editor.component.js +0 -84
  93. package/esm2015/editors/date-editor.component.js +0 -67
  94. package/esm2015/editors/numeric-editor.component.js +0 -67
  95. package/esm2015/editors/text-editor.component.js +0 -59
  96. package/esm2015/filter-expression-operators.component.js +0 -68
  97. package/esm2015/filter-group.component.js +0 -206
  98. package/esm2015/filter.module.js +0 -117
  99. package/esm2015/localization/custom-messages.component.js +0 -41
  100. package/esm2015/localization/localized-messages.directive.js +0 -36
  101. package/esm2015/localization/messages.js +0 -95
  102. package/esm2015/shared.module.js +0 -50
  103. package/fesm2015/kendo-angular-filter.js +0 -1622
  104. package/filter.module.d.ts +0 -53
  105. package/shared.module.d.ts +0 -19
  106. package/util.d.ts +0 -147
@@ -4,13 +4,10 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { LocalizationService } from '@progress/kendo-angular-l10n';
6
6
  import { Messages } from './messages';
7
- import * as i0 from "@angular/core";
8
7
  /**
9
8
  * @hidden
10
9
  */
11
10
  export declare class LocalizedMessagesDirective extends Messages {
12
11
  protected service: LocalizationService;
13
12
  constructor(service: LocalizationService);
14
- static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedMessagesDirective, never>;
15
- static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedMessagesDirective, "[kendoFilterLocalizedMessages]", never, {}, {}, never>;
16
13
  }
@@ -0,0 +1,31 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import * as tslib_1 from "tslib";
6
+ var LocalizedMessagesDirective_1;
7
+ import { Directive, forwardRef } from '@angular/core';
8
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
9
+ import { Messages } from './messages';
10
+ /**
11
+ * @hidden
12
+ */
13
+ let LocalizedMessagesDirective = LocalizedMessagesDirective_1 = class LocalizedMessagesDirective extends Messages {
14
+ constructor(service) {
15
+ super();
16
+ this.service = service;
17
+ }
18
+ };
19
+ LocalizedMessagesDirective = LocalizedMessagesDirective_1 = tslib_1.__decorate([
20
+ Directive({
21
+ providers: [
22
+ {
23
+ provide: Messages,
24
+ useExisting: forwardRef(() => LocalizedMessagesDirective_1)
25
+ }
26
+ ],
27
+ selector: '[kendoFilterLocalizedMessages]'
28
+ }),
29
+ tslib_1.__metadata("design:paramtypes", [LocalizationService])
30
+ ], LocalizedMessagesDirective);
31
+ export { LocalizedMessagesDirective };
@@ -3,7 +3,6 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ComponentMessages } from '@progress/kendo-angular-l10n';
6
- import * as i0 from "@angular/core";
7
6
  /**
8
7
  * @hidden
9
8
  */
@@ -156,6 +155,4 @@ export declare class Messages extends ComponentMessages {
156
155
  * The text of the filter toolbar aria label.
157
156
  */
158
157
  filterToolbarAriaLabel: string;
159
- static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
160
- static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "[kendoFilterMessages]", never, { "filterExpressionOperators": "filterExpressionOperators"; "filterExpressionFilters": "filterExpressionFilters"; "remove": "remove"; "addGroup": "addGroup"; "addFilter": "addFilter"; "filterAndLogic": "filterAndLogic"; "filterOrLogic": "filterOrLogic"; "filterEqOperator": "filterEqOperator"; "filterNotEqOperator": "filterNotEqOperator"; "filterIsNullOperator": "filterIsNullOperator"; "filterIsNotNullOperator": "filterIsNotNullOperator"; "filterIsEmptyOperator": "filterIsEmptyOperator"; "filterIsNotEmptyOperator": "filterIsNotEmptyOperator"; "filterStartsWithOperator": "filterStartsWithOperator"; "filterContainsOperator": "filterContainsOperator"; "filterNotContainsOperator": "filterNotContainsOperator"; "filterEndsWithOperator": "filterEndsWithOperator"; "filterGteOperator": "filterGteOperator"; "filterGtOperator": "filterGtOperator"; "filterLteOperator": "filterLteOperator"; "filterLtOperator": "filterLtOperator"; "filterIsTrue": "filterIsTrue"; "filterIsFalse": "filterIsFalse"; "filterBooleanAll": "filterBooleanAll"; "filterAfterOrEqualOperator": "filterAfterOrEqualOperator"; "filterAfterOperator": "filterAfterOperator"; "filterBeforeOperator": "filterBeforeOperator"; "filterBeforeOrEqualOperator": "filterBeforeOrEqualOperator"; "editorNumericDecrement": "editorNumericDecrement"; "editorNumericIncrement": "editorNumericIncrement"; "editorDateTodayText": "editorDateTodayText"; "editorDateToggleText": "editorDateToggleText"; "filterFieldAriaLabel": "filterFieldAriaLabel"; "filterOperatorAriaLabel": "filterOperatorAriaLabel"; "filterValueAriaLabel": "filterValueAriaLabel"; "filterAriaLabel": "filterAriaLabel"; "filterToolbarAriaLabel": "filterToolbarAriaLabel"; }, {}, never>;
161
158
  }
@@ -0,0 +1,160 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import * as tslib_1 from "tslib";
6
+ import { Input } from '@angular/core';
7
+ import { ComponentMessages } from '@progress/kendo-angular-l10n';
8
+ /**
9
+ * @hidden
10
+ */
11
+ export class Messages extends ComponentMessages {
12
+ }
13
+ tslib_1.__decorate([
14
+ Input(),
15
+ tslib_1.__metadata("design:type", String)
16
+ ], Messages.prototype, "filterExpressionOperators", void 0);
17
+ tslib_1.__decorate([
18
+ Input(),
19
+ tslib_1.__metadata("design:type", String)
20
+ ], Messages.prototype, "filterExpressionFilters", void 0);
21
+ tslib_1.__decorate([
22
+ Input(),
23
+ tslib_1.__metadata("design:type", String)
24
+ ], Messages.prototype, "remove", void 0);
25
+ tslib_1.__decorate([
26
+ Input(),
27
+ tslib_1.__metadata("design:type", String)
28
+ ], Messages.prototype, "addGroup", void 0);
29
+ tslib_1.__decorate([
30
+ Input(),
31
+ tslib_1.__metadata("design:type", String)
32
+ ], Messages.prototype, "addFilter", void 0);
33
+ tslib_1.__decorate([
34
+ Input(),
35
+ tslib_1.__metadata("design:type", String)
36
+ ], Messages.prototype, "filterAndLogic", void 0);
37
+ tslib_1.__decorate([
38
+ Input(),
39
+ tslib_1.__metadata("design:type", String)
40
+ ], Messages.prototype, "filterOrLogic", void 0);
41
+ tslib_1.__decorate([
42
+ Input(),
43
+ tslib_1.__metadata("design:type", String)
44
+ ], Messages.prototype, "filterEqOperator", void 0);
45
+ tslib_1.__decorate([
46
+ Input(),
47
+ tslib_1.__metadata("design:type", String)
48
+ ], Messages.prototype, "filterNotEqOperator", void 0);
49
+ tslib_1.__decorate([
50
+ Input(),
51
+ tslib_1.__metadata("design:type", String)
52
+ ], Messages.prototype, "filterIsNullOperator", void 0);
53
+ tslib_1.__decorate([
54
+ Input(),
55
+ tslib_1.__metadata("design:type", String)
56
+ ], Messages.prototype, "filterIsNotNullOperator", void 0);
57
+ tslib_1.__decorate([
58
+ Input(),
59
+ tslib_1.__metadata("design:type", String)
60
+ ], Messages.prototype, "filterIsEmptyOperator", void 0);
61
+ tslib_1.__decorate([
62
+ Input(),
63
+ tslib_1.__metadata("design:type", String)
64
+ ], Messages.prototype, "filterIsNotEmptyOperator", void 0);
65
+ tslib_1.__decorate([
66
+ Input(),
67
+ tslib_1.__metadata("design:type", String)
68
+ ], Messages.prototype, "filterStartsWithOperator", void 0);
69
+ tslib_1.__decorate([
70
+ Input(),
71
+ tslib_1.__metadata("design:type", String)
72
+ ], Messages.prototype, "filterContainsOperator", void 0);
73
+ tslib_1.__decorate([
74
+ Input(),
75
+ tslib_1.__metadata("design:type", String)
76
+ ], Messages.prototype, "filterNotContainsOperator", void 0);
77
+ tslib_1.__decorate([
78
+ Input(),
79
+ tslib_1.__metadata("design:type", String)
80
+ ], Messages.prototype, "filterEndsWithOperator", void 0);
81
+ tslib_1.__decorate([
82
+ Input(),
83
+ tslib_1.__metadata("design:type", String)
84
+ ], Messages.prototype, "filterGteOperator", void 0);
85
+ tslib_1.__decorate([
86
+ Input(),
87
+ tslib_1.__metadata("design:type", String)
88
+ ], Messages.prototype, "filterGtOperator", void 0);
89
+ tslib_1.__decorate([
90
+ Input(),
91
+ tslib_1.__metadata("design:type", String)
92
+ ], Messages.prototype, "filterLteOperator", void 0);
93
+ tslib_1.__decorate([
94
+ Input(),
95
+ tslib_1.__metadata("design:type", String)
96
+ ], Messages.prototype, "filterLtOperator", void 0);
97
+ tslib_1.__decorate([
98
+ Input(),
99
+ tslib_1.__metadata("design:type", String)
100
+ ], Messages.prototype, "filterIsTrue", void 0);
101
+ tslib_1.__decorate([
102
+ Input(),
103
+ tslib_1.__metadata("design:type", String)
104
+ ], Messages.prototype, "filterIsFalse", void 0);
105
+ tslib_1.__decorate([
106
+ Input(),
107
+ tslib_1.__metadata("design:type", String)
108
+ ], Messages.prototype, "filterBooleanAll", void 0);
109
+ tslib_1.__decorate([
110
+ Input(),
111
+ tslib_1.__metadata("design:type", String)
112
+ ], Messages.prototype, "filterAfterOrEqualOperator", void 0);
113
+ tslib_1.__decorate([
114
+ Input(),
115
+ tslib_1.__metadata("design:type", String)
116
+ ], Messages.prototype, "filterAfterOperator", void 0);
117
+ tslib_1.__decorate([
118
+ Input(),
119
+ tslib_1.__metadata("design:type", String)
120
+ ], Messages.prototype, "filterBeforeOperator", void 0);
121
+ tslib_1.__decorate([
122
+ Input(),
123
+ tslib_1.__metadata("design:type", String)
124
+ ], Messages.prototype, "filterBeforeOrEqualOperator", void 0);
125
+ tslib_1.__decorate([
126
+ Input(),
127
+ tslib_1.__metadata("design:type", String)
128
+ ], Messages.prototype, "editorNumericDecrement", void 0);
129
+ tslib_1.__decorate([
130
+ Input(),
131
+ tslib_1.__metadata("design:type", String)
132
+ ], Messages.prototype, "editorNumericIncrement", void 0);
133
+ tslib_1.__decorate([
134
+ Input(),
135
+ tslib_1.__metadata("design:type", String)
136
+ ], Messages.prototype, "editorDateTodayText", void 0);
137
+ tslib_1.__decorate([
138
+ Input(),
139
+ tslib_1.__metadata("design:type", String)
140
+ ], Messages.prototype, "editorDateToggleText", void 0);
141
+ tslib_1.__decorate([
142
+ Input(),
143
+ tslib_1.__metadata("design:type", String)
144
+ ], Messages.prototype, "filterFieldAriaLabel", void 0);
145
+ tslib_1.__decorate([
146
+ Input(),
147
+ tslib_1.__metadata("design:type", String)
148
+ ], Messages.prototype, "filterOperatorAriaLabel", void 0);
149
+ tslib_1.__decorate([
150
+ Input(),
151
+ tslib_1.__metadata("design:type", String)
152
+ ], Messages.prototype, "filterValueAriaLabel", void 0);
153
+ tslib_1.__decorate([
154
+ Input(),
155
+ tslib_1.__metadata("design:type", String)
156
+ ], Messages.prototype, "filterAriaLabel", void 0);
157
+ tslib_1.__decorate([
158
+ Input(),
159
+ tslib_1.__metadata("design:type", String)
160
+ ], Messages.prototype, "filterToolbarAriaLabel", void 0);
@@ -0,0 +1,7 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export { FilterComponent } from './filter.component';
6
+ export { FilterModule } from './filter.module';
7
+ export { FilterExpression } from './model/filter-expression';
@@ -0,0 +1,6 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export { FilterComponent } from './filter.component';
6
+ export { FilterModule } from './filter.module';
@@ -3,6 +3,5 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * Generated bundle index. Do not edit.
6
+ * Represents the FilterOperator type.
7
7
  */
8
- export * from './main';
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-filter',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1648825034,
12
+ publishDate: 1649147607,
13
13
  version: '',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
15
15
  };
@@ -3,7 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * Generated bundle index. Do not edit.
6
+ * @hidden
7
7
  */
8
- /// <amd-module name="@progress/kendo-angular-filter" />
9
- export * from './main';
8
+ export declare class SharedModule {
9
+ }
@@ -0,0 +1,32 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import * as tslib_1 from "tslib";
6
+ import { CommonModule } from '@angular/common';
7
+ import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
8
+ import { InputsModule } from '@progress/kendo-angular-inputs';
9
+ import { LabelModule } from '@progress/kendo-angular-label';
10
+ import { NgModule } from '@angular/core';
11
+ import { ButtonsModule } from '@progress/kendo-angular-buttons';
12
+ import { DateInputsModule } from '@progress/kendo-angular-dateinputs';
13
+ const importedModules = [
14
+ CommonModule,
15
+ InputsModule,
16
+ LabelModule,
17
+ DropDownsModule,
18
+ ButtonsModule,
19
+ DateInputsModule
20
+ ];
21
+ /**
22
+ * @hidden
23
+ */
24
+ let SharedModule = class SharedModule {
25
+ };
26
+ SharedModule = tslib_1.__decorate([
27
+ NgModule({
28
+ imports: [...importedModules],
29
+ exports: [...importedModules]
30
+ })
31
+ ], SharedModule);
32
+ export { SharedModule };
@@ -0,0 +1,147 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ /**
6
+ * @hidden
7
+ */
8
+ export declare const nullOperators: string[];
9
+ /**
10
+ * @hidden
11
+ */
12
+ export declare const numericOperators: {
13
+ text: string;
14
+ value: string;
15
+ }[];
16
+ /**
17
+ * @hidden
18
+ */
19
+ export declare const stringOperators: {
20
+ text: string;
21
+ value: string;
22
+ }[];
23
+ /**
24
+ * @hidden
25
+ */
26
+ export declare const booleanOperators: {
27
+ text: string;
28
+ value: string;
29
+ }[];
30
+ /**
31
+ * @hidden
32
+ */
33
+ export declare const dateOperators: {
34
+ text: string;
35
+ value: string;
36
+ }[];
37
+ /**
38
+ * @hidden
39
+ */
40
+ export declare const isArray: Function;
41
+ /**
42
+ * @hidden
43
+ */
44
+ export declare const getKeyByValue: (object: object, value: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "isnull" | "isnotnull" | "contains" | "doesnotcontain" | "startswith" | "endswidth" | "isempty" | "isnotempty" | {
45
+ text: string;
46
+ value: string;
47
+ }) => string;
48
+ /**
49
+ * @hidden
50
+ */
51
+ export declare const defaultStringOperators: {
52
+ "filterEqOperator": string;
53
+ "filterNotEqOperator": string;
54
+ "filterContainsOperator": string;
55
+ "filterNotContainsOperator": string;
56
+ "filterStartsWithOperator": string;
57
+ "filterEndsWithOperator": string;
58
+ "filterIsNullOperator": string;
59
+ "filterIsNotNullOperator": string;
60
+ "filterIsEmptyOperator": string;
61
+ "filterIsNotEmptyOperator": string;
62
+ };
63
+ /**
64
+ * @hidden
65
+ */
66
+ export declare const defaultNumericOperators: {
67
+ "filterEqOperator": string;
68
+ "filterNotEqOperator": string;
69
+ "filterGteOperator": string;
70
+ "filterGtOperator": string;
71
+ "filterLteOperator": string;
72
+ "filterLtOperator": string;
73
+ "filterIsNullOperator": string;
74
+ "filterIsNotNullOperator": string;
75
+ };
76
+ /**
77
+ * @hidden
78
+ */
79
+ export declare const defaultDateOperators: {
80
+ "filterEqOperator": string;
81
+ "filterNotEqOperator": string;
82
+ "filterAfterOrEqualOperator": string;
83
+ "filterAfterOperator": string;
84
+ "filterBeforeOrEqualOperator": string;
85
+ "filterBeforeOperator": string;
86
+ "filterIsNullOperator": string;
87
+ "filterIsNotNullOperator": string;
88
+ };
89
+ /**
90
+ * @hidden
91
+ */
92
+ export declare const defaultOperators: {
93
+ string: {
94
+ "filterEqOperator": string;
95
+ "filterNotEqOperator": string;
96
+ "filterContainsOperator": string;
97
+ "filterNotContainsOperator": string;
98
+ "filterStartsWithOperator": string;
99
+ "filterEndsWithOperator": string;
100
+ "filterIsNullOperator": string;
101
+ "filterIsNotNullOperator": string;
102
+ "filterIsEmptyOperator": string;
103
+ "filterIsNotEmptyOperator": string;
104
+ };
105
+ number: {
106
+ "filterEqOperator": string;
107
+ "filterNotEqOperator": string;
108
+ "filterGteOperator": string;
109
+ "filterGtOperator": string;
110
+ "filterLteOperator": string;
111
+ "filterLtOperator": string;
112
+ "filterIsNullOperator": string;
113
+ "filterIsNotNullOperator": string;
114
+ };
115
+ date: {
116
+ "filterEqOperator": string;
117
+ "filterNotEqOperator": string;
118
+ "filterAfterOrEqualOperator": string;
119
+ "filterAfterOperator": string;
120
+ "filterBeforeOrEqualOperator": string;
121
+ "filterBeforeOperator": string;
122
+ "filterIsNullOperator": string;
123
+ "filterIsNotNullOperator": string;
124
+ };
125
+ };
126
+ /**
127
+ * @hidden
128
+ */
129
+ export declare const logicOperators: {
130
+ "filterAndLogic": string;
131
+ "filterOrLogic": string;
132
+ };
133
+ /**
134
+ * @hidden
135
+ */
136
+ export declare type Direction = 'rtl' | 'ltr';
137
+ /**
138
+ * @hidden
139
+ */
140
+ export declare const isFilterEditor: (editorType: string) => boolean;
141
+ /**
142
+ * @hidden
143
+ */
144
+ export declare const localizeOperators: (operators: any) => (localization: any) => {
145
+ text: any;
146
+ value: any;
147
+ }[];
@@ -109,9 +109,9 @@ export const defaultDateOperators = {
109
109
  * @hidden
110
110
  */
111
111
  export const defaultOperators = {
112
- "string": defaultStringOperators,
113
- "number": defaultNumericOperators,
114
- "date": defaultDateOperators
112
+ string: defaultStringOperators,
113
+ number: defaultNumericOperators,
114
+ date: defaultDateOperators
115
115
  };
116
116
  /**
117
117
  * @hidden