@progress/kendo-angular-filter 2.3.1-dev.202211170746 → 11.0.0-develop.79

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 (57) hide show
  1. package/NOTICE.txt +3 -3
  2. package/aria-label.directive.d.ts +1 -1
  3. package/base-filter-row.component.d.ts +1 -1
  4. package/editors/boolean-editor.component.d.ts +1 -1
  5. package/editors/date-editor.component.d.ts +1 -1
  6. package/editors/numeric-editor.component.d.ts +1 -1
  7. package/editors/text-editor.component.d.ts +1 -1
  8. package/error-messages.d.ts +1 -1
  9. package/{esm2015/aria-label.directive.js → esm2020/aria-label.directive.mjs} +5 -5
  10. package/{esm2015/base-filter-row.component.js → esm2020/base-filter-row.component.mjs} +8 -6
  11. package/{esm2015/editors/boolean-editor.component.js → esm2020/editors/boolean-editor.component.mjs} +6 -5
  12. package/{esm2015/editors/date-editor.component.js → esm2020/editors/date-editor.component.mjs} +5 -4
  13. package/{esm2015/editors/numeric-editor.component.js → esm2020/editors/numeric-editor.component.mjs} +5 -4
  14. package/{esm2015/editors/text-editor.component.js → esm2020/editors/text-editor.component.mjs} +5 -4
  15. package/{esm2015/error-messages.js → esm2020/error-messages.mjs} +1 -1
  16. package/{esm2015/filter-expression-operators.component.js → esm2020/filter-expression-operators.component.mjs} +5 -4
  17. package/{esm2015/filter-expression.component.js → esm2020/filter-expression.component.mjs} +16 -13
  18. package/{esm2015/filter-field.component.js → esm2020/filter-field.component.mjs} +4 -4
  19. package/{esm2015/filter-group.component.js → esm2020/filter-group.component.mjs} +12 -9
  20. package/{esm2015/filter.component.js → esm2020/filter.component.mjs} +12 -10
  21. package/{esm2015/filter.module.js → esm2020/filter.module.mjs} +5 -5
  22. package/{esm2015/filter.service.js → esm2020/filter.service.mjs} +7 -7
  23. package/{esm2015/main.js → esm2020/index.mjs} +1 -1
  24. package/{esm2015/localization/custom-messages.component.js → esm2020/localization/custom-messages.component.mjs} +5 -4
  25. package/{esm2015/localization/localized-messages.directive.js → esm2020/localization/localized-messages.directive.mjs} +5 -4
  26. package/{esm2015/localization/messages.js → esm2020/localization/messages.mjs} +4 -4
  27. package/{esm2015/model/filter-expression.js → esm2020/model/filter-expression.mjs} +1 -1
  28. package/{esm2015/navigation.service.js → esm2020/navigation.service.mjs} +20 -15
  29. package/{esm2015/package-metadata.js → esm2020/package-metadata.mjs} +3 -3
  30. package/{esm2015/kendo-angular-filter.js → esm2020/progress-kendo-angular-filter.mjs} +2 -2
  31. package/{esm2015/shared.module.js → esm2020/shared.module.mjs} +5 -5
  32. package/{esm2015/templates/value-editor.template.js → esm2020/templates/value-editor.template.mjs} +5 -5
  33. package/{esm2015/util.js → esm2020/util.mjs} +4 -4
  34. package/fesm2015/{kendo-angular-filter.js → progress-kendo-angular-filter.mjs} +91 -85
  35. package/fesm2020/progress-kendo-angular-filter.mjs +2222 -0
  36. package/filter-expression-operators.component.d.ts +1 -1
  37. package/filter-expression.component.d.ts +1 -1
  38. package/filter-field.component.d.ts +1 -1
  39. package/filter-group.component.d.ts +1 -1
  40. package/filter.component.d.ts +1 -1
  41. package/filter.module.d.ts +1 -1
  42. package/filter.service.d.ts +1 -1
  43. package/{main.d.ts → index.d.ts} +1 -1
  44. package/localization/custom-messages.component.d.ts +1 -1
  45. package/localization/localized-messages.directive.d.ts +1 -1
  46. package/localization/messages.d.ts +1 -1
  47. package/model/filter-expression.d.ts +1 -1
  48. package/navigation.service.d.ts +1 -1
  49. package/package-metadata.d.ts +1 -1
  50. package/package.json +34 -60
  51. package/{kendo-angular-filter.d.ts → progress-kendo-angular-filter.d.ts} +2 -2
  52. package/schematics/ngAdd/index.js +1 -5
  53. package/shared.module.d.ts +1 -1
  54. package/templates/value-editor.template.d.ts +1 -1
  55. package/util.d.ts +1 -1
  56. package/bundles/kendo-angular-filter.umd.js +0 -5
  57. package/schematics/ngAdd/index.js.map +0 -1
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Injectable } from '@angular/core';
@@ -13,11 +13,11 @@ export class FilterService {
13
13
  this.filters = [];
14
14
  }
15
15
  addFilterGroup(item) {
16
- let filterGroup = { logic: 'and', filters: [] };
16
+ const filterGroup = { logic: 'and', filters: [] };
17
17
  item.filters.push(filterGroup);
18
18
  }
19
19
  addFilterExpression(item) {
20
- let filterExpression = { operator: 'eq', value: null, field: null };
20
+ const filterExpression = { operator: 'eq', value: null, field: null };
21
21
  item.filters.push(filterExpression);
22
22
  }
23
23
  remove(item, positionIndex, parentItem) {
@@ -28,7 +28,7 @@ export class FilterService {
28
28
  parentItem.filters = [];
29
29
  return;
30
30
  }
31
- let index = parentItem.filters.indexOf(item);
31
+ const index = parentItem.filters.indexOf(item);
32
32
  if (index >= 0 && index === positionIndex) {
33
33
  parentItem.filters = parentItem.filters.filter((i) => i !== item);
34
34
  return;
@@ -36,8 +36,8 @@ export class FilterService {
36
36
  parentItem.filters.forEach((filter) => filter.filters && this.remove(item, positionIndex, filter));
37
37
  }
38
38
  }
39
- FilterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FilterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
40
- FilterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FilterService });
41
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FilterService, decorators: [{
39
+ FilterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
40
+ FilterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterService });
41
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterService, decorators: [{
42
42
  type: Injectable
43
43
  }] });
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  export { FilterComponent } from './filter.component';
@@ -1,8 +1,9 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Component, forwardRef } from '@angular/core';
6
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
6
7
  import { Messages } from './messages';
7
8
  import * as i0 from "@angular/core";
8
9
  import * as i1 from "@progress/kendo-angular-l10n";
@@ -19,14 +20,14 @@ export class CustomMessagesComponent extends Messages {
19
20
  return true;
20
21
  }
21
22
  }
22
- CustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: CustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
23
- CustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: CustomMessagesComponent, selector: "kendo-filter-messages", providers: [
23
+ CustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
24
+ CustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CustomMessagesComponent, selector: "kendo-filter-messages", providers: [
24
25
  {
25
26
  provide: Messages,
26
27
  useExisting: forwardRef(() => CustomMessagesComponent)
27
28
  }
28
29
  ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
29
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: CustomMessagesComponent, decorators: [{
30
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CustomMessagesComponent, decorators: [{
30
31
  type: Component,
31
32
  args: [{
32
33
  providers: [
@@ -1,8 +1,9 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Directive, forwardRef } from '@angular/core';
6
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
6
7
  import { Messages } from './messages';
7
8
  import * as i0 from "@angular/core";
8
9
  import * as i1 from "@progress/kendo-angular-l10n";
@@ -15,14 +16,14 @@ export class LocalizedMessagesDirective extends Messages {
15
16
  this.service = service;
16
17
  }
17
18
  }
18
- LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
19
- LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: LocalizedMessagesDirective, selector: "[kendoFilterLocalizedMessages]", providers: [
19
+ LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
20
+ LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: LocalizedMessagesDirective, selector: "[kendoFilterLocalizedMessages]", providers: [
20
21
  {
21
22
  provide: Messages,
22
23
  useExisting: forwardRef(() => LocalizedMessagesDirective)
23
24
  }
24
25
  ], usesInheritance: true, ngImport: i0 });
25
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{
26
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{
26
27
  type: Directive,
27
28
  args: [{
28
29
  providers: [
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Directive } from '@angular/core';
@@ -11,9 +11,9 @@ import * as i0 from "@angular/core";
11
11
  */
12
12
  export class Messages extends ComponentMessages {
13
13
  }
14
- Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
15
- Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: Messages, selector: "[kendoFilterMessages]", inputs: { 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", filterToolbarAriaLabel: "filterToolbarAriaLabel", filterComponentAriaLabel: "filterComponentAriaLabel" }, usesInheritance: true, ngImport: i0 });
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: Messages, decorators: [{
14
+ Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
15
+ Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: Messages, selector: "[kendoFilterMessages]", inputs: { 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", filterToolbarAriaLabel: "filterToolbarAriaLabel", filterComponentAriaLabel: "filterComponentAriaLabel" }, usesInheritance: true, ngImport: i0 });
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: Messages, decorators: [{
17
17
  type: Directive,
18
18
  args: [{
19
19
  selector: '[kendoFilterMessages]'
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
@@ -1,8 +1,8 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { Injectable } from '@angular/core';
5
+ import { ChangeDetectorRef, Injectable, Renderer2 } from '@angular/core';
6
6
  import { Keys } from '@progress/kendo-angular-common';
7
7
  import { selectors } from './util';
8
8
  import * as i0 from "@angular/core";
@@ -22,7 +22,7 @@ export class NavigationService {
22
22
  }
23
23
  processKeyDown(key, event) {
24
24
  switch (key) {
25
- case Keys.ArrowUp:
25
+ case Keys.ArrowUp: {
26
26
  event.preventDefault();
27
27
  if (!this.isInnerNavigationActivated) {
28
28
  this.currentToolbarItemIndex > 0 ? this.currentToolbarItemIndex-- : this.currentToolbarItemIndex;
@@ -30,7 +30,8 @@ export class NavigationService {
30
30
  this.focusCurrentElement(elementToFocus);
31
31
  }
32
32
  break;
33
- case Keys.ArrowDown:
33
+ }
34
+ case Keys.ArrowDown: {
34
35
  event.preventDefault();
35
36
  if (!this.isInnerNavigationActivated) {
36
37
  this.currentToolbarItemIndex < this.flattenFilterItems.length - 1 ? this.currentToolbarItemIndex++ : this.currentToolbarItemIndex;
@@ -38,7 +39,8 @@ export class NavigationService {
38
39
  this.focusCurrentElement(elementToFocus);
39
40
  }
40
41
  break;
41
- case Keys.Enter:
42
+ }
43
+ case Keys.Enter: {
42
44
  const isEventTargetFilterToolbar = event.target.closest(selectors.kendoToolbar);
43
45
  if (!this.isInnerNavigationActivated && isEventTargetFilterToolbar) {
44
46
  event.preventDefault();
@@ -63,7 +65,8 @@ export class NavigationService {
63
65
  this.focusCurrentElement(elementToFocus);
64
66
  }
65
67
  break;
66
- case Keys.Escape:
68
+ }
69
+ case Keys.Escape: {
67
70
  if (this.isInnerNavigationActivated && !this.isFilterExpressionComponentFocused) {
68
71
  event.preventDefault();
69
72
  this.isInnerNavigationActivated = false;
@@ -79,7 +82,8 @@ export class NavigationService {
79
82
  this.focusCurrentElement(elementToFocus);
80
83
  }
81
84
  break;
82
- case Keys.ArrowRight:
85
+ }
86
+ case Keys.ArrowRight: {
83
87
  if (this.isInnerNavigationActivated && !this.isFilterExpressionComponentFocused) {
84
88
  event.preventDefault();
85
89
  this.currentToolbarItemChildrenIndex < this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren.length - 1 ? this.currentToolbarItemChildrenIndex++ : this.currentToolbarItemChildrenIndex;
@@ -87,7 +91,8 @@ export class NavigationService {
87
91
  this.focusCurrentElement(elementToFocus);
88
92
  }
89
93
  break;
90
- case Keys.ArrowLeft:
94
+ }
95
+ case Keys.ArrowLeft: {
91
96
  if (this.isInnerNavigationActivated && !this.isFilterExpressionComponentFocused) {
92
97
  event.preventDefault();
93
98
  this.currentToolbarItemChildrenIndex > 0 ? this.currentToolbarItemChildrenIndex-- : this.currentToolbarItemChildrenIndex;
@@ -95,6 +100,7 @@ export class NavigationService {
95
100
  this.focusCurrentElement(elementToFocus);
96
101
  }
97
102
  break;
103
+ }
98
104
  default:
99
105
  break;
100
106
  }
@@ -111,14 +117,13 @@ export class NavigationService {
111
117
  }
112
118
  flattenHierarchicalFilterItems(filterItems) {
113
119
  filterItems.forEach((filterRow) => {
114
- var _a, _b;
115
- let flattenItem = { component: filterRow, isGroup: false, toolbarElement: filterRow.toolbarElement, focusableChildren: [] };
120
+ const flattenItem = { component: filterRow, isGroup: false, toolbarElement: filterRow.toolbarElement, focusableChildren: [] };
116
121
  this.flattenFilterItems.push(flattenItem);
117
- if ((filterRow['operators'] && ((_a = filterRow['filterItems']) === null || _a === void 0 ? void 0 : _a.length) > 0)) {
122
+ if ((filterRow['operators'] && filterRow['filterItems']?.length > 0)) {
118
123
  this.setGroupItemChildren(flattenItem, filterRow);
119
124
  this.flattenHierarchicalFilterItems(filterRow['filterItems']);
120
125
  }
121
- else if (filterRow['operators'] && ((_b = filterRow['filterItems']) === null || _b === void 0 ? void 0 : _b.length) === 0) {
126
+ else if (filterRow['operators'] && filterRow['filterItems']?.length === 0) {
122
127
  this.setGroupItemChildren(flattenItem, filterRow);
123
128
  }
124
129
  else {
@@ -152,8 +157,8 @@ export class NavigationService {
152
157
  this.setItemIndexes();
153
158
  }
154
159
  }
155
- NavigationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NavigationService, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Injectable });
156
- NavigationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NavigationService });
157
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: NavigationService, decorators: [{
160
+ NavigationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NavigationService, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Injectable });
161
+ NavigationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NavigationService });
162
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NavigationService, decorators: [{
158
163
  type: Injectable
159
164
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }]; } });
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
@@ -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: 1668671151,
12
+ publishDate: 1672320933,
13
13
  version: '',
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'
14
+ licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -1,8 +1,8 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
6
  * Generated bundle index. Do not edit.
7
7
  */
8
- export * from './main';
8
+ export * from './index';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { CommonModule } from '@angular/common';
@@ -23,8 +23,8 @@ const importedModules = [
23
23
  */
24
24
  export class SharedModule {
25
25
  }
26
- SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
27
- SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SharedModule, imports: [CommonModule,
26
+ SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
27
+ SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SharedModule, imports: [CommonModule,
28
28
  InputsModule,
29
29
  LabelModule,
30
30
  DropDownsModule,
@@ -35,13 +35,13 @@ SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "
35
35
  DropDownsModule,
36
36
  ButtonsModule,
37
37
  DateInputsModule] });
38
- SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SharedModule, imports: [[...importedModules], CommonModule,
38
+ SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SharedModule, imports: [[...importedModules], CommonModule,
39
39
  InputsModule,
40
40
  LabelModule,
41
41
  DropDownsModule,
42
42
  ButtonsModule,
43
43
  DateInputsModule] });
44
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SharedModule, decorators: [{
44
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SharedModule, decorators: [{
45
45
  type: NgModule,
46
46
  args: [{
47
47
  imports: [...importedModules],
@@ -1,17 +1,17 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { Directive } from '@angular/core';
5
+ import { Directive, TemplateRef } from '@angular/core';
6
6
  import * as i0 from "@angular/core";
7
7
  export class FilterValueEditorTemplateDirective {
8
8
  constructor(templateRef) {
9
9
  this.templateRef = templateRef;
10
10
  }
11
11
  }
12
- FilterValueEditorTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FilterValueEditorTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
13
- FilterValueEditorTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: FilterValueEditorTemplateDirective, selector: "[kendoFilterValueEditorTemplate]", ngImport: i0 });
14
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FilterValueEditorTemplateDirective, decorators: [{
12
+ FilterValueEditorTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterValueEditorTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
13
+ FilterValueEditorTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: FilterValueEditorTemplateDirective, selector: "[kendoFilterValueEditorTemplate]", ngImport: i0 });
14
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterValueEditorTemplateDirective, decorators: [{
15
15
  type: Directive,
16
16
  args: [{
17
17
  selector: '[kendoFilterValueEditorTemplate]'
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
2
+ * Copyright © 2022 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Injectable } from '@angular/core';
@@ -145,9 +145,9 @@ export const isPresent = (value) => value !== null && value !== undefined;
145
145
  */
146
146
  export class FilterItem {
147
147
  }
148
- FilterItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FilterItem, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
149
- FilterItem.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FilterItem });
150
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FilterItem, decorators: [{
148
+ FilterItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterItem, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
149
+ FilterItem.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterItem });
150
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FilterItem, decorators: [{
151
151
  type: Injectable
152
152
  }] });
153
153
  /**