@progress/kendo-angular-filter 19.2.0-develop.9 → 19.2.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.
package/README.md CHANGED
@@ -4,9 +4,12 @@
4
4
 
5
5
  ## Kendo UI for Angular Filter Component
6
6
 
7
- > * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui)—a commercial library designed and built for developing business applications with Angular. Every UI component in the Kendo UI for Angular suite has been built from the ground-up specifically for Angular.
8
- > * You must [install a license key](https://www.telerik.com/kendo-angular-ui/my-license) when adding the package to your project. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
9
- > * The 30-day free trial gives you access to all the Kendo UI for Angular components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular dev team!
7
+ > * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/)—a commercial UI library.
8
+ > * To use this package, you must install a license key file, whether you are on a paid license or a 30-day free trial. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or start a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
9
+ > * Adding a valid license key file ensures a seamless experience during the trial period—no watermarks, no warnings, and full access to all components and features.
10
+ > * Trial users can register for a free license key file. Without it, your trial may be interrupted by visual indicators or functionality limitations.
11
+ > * Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular team!
12
+ > * Learn more: https://www.telerik.com/kendo-angular-ui/components/licensing
10
13
  >
11
14
  > [Start using Kendo UI for Angular](https://www.telerik.com/download-login-v2-kendo-angular-ui) and speed up your development process!
12
15
 
@@ -29,7 +29,9 @@ export class NavigationService {
29
29
  event.preventDefault();
30
30
  if (!this.isFilterExpressionComponentFocused) {
31
31
  this.currentToolbarItemChildrenIndex = 0;
32
- this.currentToolbarItemIndex > 0 ? this.currentToolbarItemIndex-- : this.currentToolbarItemIndex;
32
+ if (this.currentToolbarItemIndex > 0) {
33
+ this.currentToolbarItemIndex--;
34
+ }
33
35
  const elementToFocus = this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren[0];
34
36
  this.focusCurrentElement(elementToFocus);
35
37
  }
@@ -39,7 +41,9 @@ export class NavigationService {
39
41
  event.preventDefault();
40
42
  if (!this.isFilterExpressionComponentFocused) {
41
43
  this.currentToolbarItemChildrenIndex = 0;
42
- this.currentToolbarItemIndex < this.flattenFilterItems.length - 1 ? this.currentToolbarItemIndex++ : this.currentToolbarItemIndex;
44
+ if (this.currentToolbarItemIndex < this.flattenFilterItems.length - 1) {
45
+ this.currentToolbarItemIndex++;
46
+ }
43
47
  const elementToFocus = this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren[0];
44
48
  this.focusCurrentElement(elementToFocus);
45
49
  }
@@ -75,7 +79,9 @@ export class NavigationService {
75
79
  case Keys.ArrowRight: {
76
80
  if (this.isFilterNavigationActivated && !this.isFilterExpressionComponentFocused) {
77
81
  event.preventDefault();
78
- this.currentToolbarItemChildrenIndex < this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren.length - 1 ? this.currentToolbarItemChildrenIndex++ : this.currentToolbarItemChildrenIndex;
82
+ if (this.currentToolbarItemChildrenIndex < this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren.length - 1) {
83
+ this.currentToolbarItemChildrenIndex++;
84
+ }
79
85
  const elementToFocus = this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren[this.currentToolbarItemChildrenIndex];
80
86
  this.focusCurrentElement(elementToFocus);
81
87
  }
@@ -84,7 +90,9 @@ export class NavigationService {
84
90
  case Keys.ArrowLeft: {
85
91
  if (this.isFilterNavigationActivated && !this.isFilterExpressionComponentFocused) {
86
92
  event.preventDefault();
87
- this.currentToolbarItemChildrenIndex > 0 ? this.currentToolbarItemChildrenIndex-- : this.currentToolbarItemChildrenIndex;
93
+ if (this.currentToolbarItemChildrenIndex > 0) {
94
+ this.currentToolbarItemChildrenIndex--;
95
+ }
88
96
  const elementToFocus = this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren[this.currentToolbarItemChildrenIndex];
89
97
  this.focusCurrentElement(elementToFocus);
90
98
  }
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1751036083,
14
- version: '19.2.0-develop.9',
13
+ publishDate: 1751463369,
14
+ version: '19.2.0',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -231,8 +231,8 @@ const packageMetadata = {
231
231
  productName: 'Kendo UI for Angular',
232
232
  productCode: 'KENDOUIANGULAR',
233
233
  productCodes: ['KENDOUIANGULAR'],
234
- publishDate: 1751036083,
235
- version: '19.2.0-develop.9',
234
+ publishDate: 1751463369,
235
+ version: '19.2.0',
236
236
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
237
237
  };
238
238
 
@@ -388,7 +388,9 @@ class NavigationService {
388
388
  event.preventDefault();
389
389
  if (!this.isFilterExpressionComponentFocused) {
390
390
  this.currentToolbarItemChildrenIndex = 0;
391
- this.currentToolbarItemIndex > 0 ? this.currentToolbarItemIndex-- : this.currentToolbarItemIndex;
391
+ if (this.currentToolbarItemIndex > 0) {
392
+ this.currentToolbarItemIndex--;
393
+ }
392
394
  const elementToFocus = this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren[0];
393
395
  this.focusCurrentElement(elementToFocus);
394
396
  }
@@ -398,7 +400,9 @@ class NavigationService {
398
400
  event.preventDefault();
399
401
  if (!this.isFilterExpressionComponentFocused) {
400
402
  this.currentToolbarItemChildrenIndex = 0;
401
- this.currentToolbarItemIndex < this.flattenFilterItems.length - 1 ? this.currentToolbarItemIndex++ : this.currentToolbarItemIndex;
403
+ if (this.currentToolbarItemIndex < this.flattenFilterItems.length - 1) {
404
+ this.currentToolbarItemIndex++;
405
+ }
402
406
  const elementToFocus = this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren[0];
403
407
  this.focusCurrentElement(elementToFocus);
404
408
  }
@@ -434,7 +438,9 @@ class NavigationService {
434
438
  case Keys.ArrowRight: {
435
439
  if (this.isFilterNavigationActivated && !this.isFilterExpressionComponentFocused) {
436
440
  event.preventDefault();
437
- this.currentToolbarItemChildrenIndex < this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren.length - 1 ? this.currentToolbarItemChildrenIndex++ : this.currentToolbarItemChildrenIndex;
441
+ if (this.currentToolbarItemChildrenIndex < this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren.length - 1) {
442
+ this.currentToolbarItemChildrenIndex++;
443
+ }
438
444
  const elementToFocus = this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren[this.currentToolbarItemChildrenIndex];
439
445
  this.focusCurrentElement(elementToFocus);
440
446
  }
@@ -443,7 +449,9 @@ class NavigationService {
443
449
  case Keys.ArrowLeft: {
444
450
  if (this.isFilterNavigationActivated && !this.isFilterExpressionComponentFocused) {
445
451
  event.preventDefault();
446
- this.currentToolbarItemChildrenIndex > 0 ? this.currentToolbarItemChildrenIndex-- : this.currentToolbarItemChildrenIndex;
452
+ if (this.currentToolbarItemChildrenIndex > 0) {
453
+ this.currentToolbarItemChildrenIndex--;
454
+ }
447
455
  const elementToFocus = this.flattenFilterItems[this.currentToolbarItemIndex].focusableChildren[this.currentToolbarItemChildrenIndex];
448
456
  this.focusCurrentElement(elementToFocus);
449
457
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-filter",
3
- "version": "19.2.0-develop.9",
3
+ "version": "19.2.0",
4
4
  "description": "Kendo UI Angular Filter",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -17,7 +17,7 @@
17
17
  "package": {
18
18
  "productName": "Kendo UI for Angular",
19
19
  "productCode": "KENDOUIANGULAR",
20
- "publishDate": 1751036083,
20
+ "publishDate": 1751463369,
21
21
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
22
22
  }
23
23
  },
@@ -28,20 +28,20 @@
28
28
  "@angular/platform-browser": "16 - 20",
29
29
  "@progress/kendo-data-query": "^1.5.5",
30
30
  "@progress/kendo-licensing": "^1.5.0",
31
- "@progress/kendo-angular-buttons": "19.2.0-develop.9",
32
- "@progress/kendo-angular-common": "19.2.0-develop.9",
33
- "@progress/kendo-angular-dateinputs": "19.2.0-develop.9",
34
- "@progress/kendo-angular-dropdowns": "19.2.0-develop.9",
35
- "@progress/kendo-angular-inputs": "19.2.0-develop.9",
36
- "@progress/kendo-angular-intl": "19.2.0-develop.9",
37
- "@progress/kendo-angular-l10n": "19.2.0-develop.9",
38
- "@progress/kendo-angular-icons": "19.2.0-develop.9",
39
- "@progress/kendo-angular-label": "19.2.0-develop.9",
31
+ "@progress/kendo-angular-buttons": "19.2.0",
32
+ "@progress/kendo-angular-common": "19.2.0",
33
+ "@progress/kendo-angular-dateinputs": "19.2.0",
34
+ "@progress/kendo-angular-dropdowns": "19.2.0",
35
+ "@progress/kendo-angular-inputs": "19.2.0",
36
+ "@progress/kendo-angular-intl": "19.2.0",
37
+ "@progress/kendo-angular-l10n": "19.2.0",
38
+ "@progress/kendo-angular-icons": "19.2.0",
39
+ "@progress/kendo-angular-label": "19.2.0",
40
40
  "rxjs": "^6.5.3 || ^7.0.0"
41
41
  },
42
42
  "dependencies": {
43
43
  "tslib": "^2.3.1",
44
- "@progress/kendo-angular-schematics": "19.2.0-develop.9"
44
+ "@progress/kendo-angular-schematics": "19.2.0"
45
45
  },
46
46
  "schematics": "./schematics/collection.json",
47
47
  "module": "fesm2022/progress-kendo-angular-filter.mjs",
@@ -4,12 +4,12 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'FilterModule', package: 'filter', peerDependencies: {
6
6
  // peer deps of the dropdowns
7
- '@progress/kendo-angular-treeview': '19.2.0-develop.9',
8
- '@progress/kendo-angular-popup': '19.2.0-develop.9',
9
- '@progress/kendo-angular-navigation': '19.2.0-develop.9',
7
+ '@progress/kendo-angular-treeview': '19.2.0',
8
+ '@progress/kendo-angular-popup': '19.2.0',
9
+ '@progress/kendo-angular-navigation': '19.2.0',
10
10
  // peer dependency of kendo-angular-inputs
11
11
  '@progress/kendo-drawing': '^1.16.0',
12
- '@progress/kendo-angular-dialog': '19.2.0-develop.9',
12
+ '@progress/kendo-angular-dialog': '19.2.0',
13
13
  // Peer dependency of icons
14
14
  '@progress/kendo-svg-icons': '^4.0.0'
15
15
  } });