@progress/kendo-angular-listbox 24.2.0-develop.8 → 24.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.
@@ -25,8 +25,8 @@ const packageMetadata = {
25
25
  productName: 'Kendo UI for Angular',
26
26
  productCode: 'KENDOUIANGULAR',
27
27
  productCodes: ['KENDOUIANGULAR'],
28
- publishDate: 1782284080,
29
- version: '24.2.0-develop.8',
28
+ publishDate: 1782829176,
29
+ version: '24.2.0',
30
30
  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'
31
31
  };
32
32
 
@@ -399,7 +399,7 @@ class KeyboardNavigationService {
399
399
  event.preventDefault();
400
400
  this.onF10Key(toolsRef);
401
401
  }
402
- else if (keyCode === Keys.Delete && activeToolbar.some(tool => tool.name === 'remove')) {
402
+ else if (keyCode === Keys.Delete && activeToolbar?.some(tool => tool.name === 'remove')) {
403
403
  this.onDeleteEvent.emit(this.selectedListboxItemIndex);
404
404
  }
405
405
  }
@@ -713,6 +713,9 @@ class KeyboardNavigationService {
713
713
  }
714
714
  }
715
715
  isItemDisabled(item) {
716
+ if (!item) {
717
+ return false;
718
+ }
716
719
  return item.getAttribute('aria-disabled') === 'true';
717
720
  }
718
721
  findNextEnabledIndex(startIndex, listboxItems, step) {
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1782284080,
11
- "version": "24.2.0-develop.8",
10
+ "publishDate": 1782829176,
11
+ "version": "24.2.0",
12
12
  "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"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-listbox",
3
- "version": "24.2.0-develop.8",
3
+ "version": "24.2.0",
4
4
  "description": "Kendo UI for Angular ListBox",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -41,7 +41,7 @@
41
41
  "package": {
42
42
  "productName": "Kendo UI for Angular",
43
43
  "productCode": "KENDOUIANGULAR",
44
- "publishDate": 1782284080,
44
+ "publishDate": 1782829176,
45
45
  "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"
46
46
  }
47
47
  },
@@ -51,14 +51,14 @@
51
51
  "@angular/core": "19 - 22",
52
52
  "@angular/platform-browser": "19 - 22",
53
53
  "@progress/kendo-licensing": "^1.11.0",
54
- "@progress/kendo-angular-buttons": "24.2.0-develop.8",
55
- "@progress/kendo-angular-common": "24.2.0-develop.8",
56
- "@progress/kendo-angular-popup": "24.2.0-develop.8",
54
+ "@progress/kendo-angular-buttons": "24.2.0",
55
+ "@progress/kendo-angular-common": "24.2.0",
56
+ "@progress/kendo-angular-popup": "24.2.0",
57
57
  "rxjs": "^6.5.3 || ^7.0.0"
58
58
  },
59
59
  "dependencies": {
60
60
  "tslib": "^2.3.1",
61
- "@progress/kendo-angular-schematics": "24.2.0-develop.8",
61
+ "@progress/kendo-angular-schematics": "24.2.0",
62
62
  "@progress/kendo-common": "^1.0.1"
63
63
  },
64
64
  "schematics": "./schematics/collection.json",
@@ -11,11 +11,11 @@ function default_1(options) {
11
11
  // Additional dependencies to install.
12
12
  // See https://github.com/telerik/kendo-schematics/issues/28
13
13
  peerDependencies: {
14
- '@progress/kendo-angular-buttons': '24.2.0-develop.8',
15
- '@progress/kendo-angular-common': '24.2.0-develop.8',
16
- '@progress/kendo-angular-l10n': '24.2.0-develop.8',
14
+ '@progress/kendo-angular-buttons': '24.2.0',
15
+ '@progress/kendo-angular-common': '24.2.0',
16
+ '@progress/kendo-angular-l10n': '24.2.0',
17
17
  // Peer of kendo-angular-buttons
18
- '@progress/kendo-angular-popup': '24.2.0-develop.8'
18
+ '@progress/kendo-angular-popup': '24.2.0'
19
19
  } });
20
20
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
21
21
  }