@progress/kendo-angular-menu 25.0.0-develop.7 → 25.0.0-develop.8

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.
@@ -23,8 +23,8 @@ const packageMetadata = {
23
23
  productName: 'Kendo UI for Angular',
24
24
  productCode: 'KENDOUIANGULAR',
25
25
  productCodes: ['KENDOUIANGULAR'],
26
- publishDate: 1784618842,
27
- version: '25.0.0-develop.7',
26
+ publishDate: 1784795932,
27
+ version: '25.0.0-develop.8',
28
28
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
29
29
  };
30
30
 
@@ -1627,11 +1627,13 @@ class ListComponent {
1627
1627
  const touchSubscription = this.renderer.listen(document, 'touchstart', (e) => {
1628
1628
  if (inMenu(e.target, this.itemsService)) {
1629
1629
  const item = this.nodeItem(e.target);
1630
- // Needs to be called because the 'click' handler will be called only on secondary tap and the item will remain unfocused
1631
- this.navigation.focus(item);
1632
- // This is needed since the 'mouseover' event is not always dispatched
1633
- if (!item.opened) {
1634
- this.hover.over(item);
1630
+ if (item) {
1631
+ // Needs to be called because the 'click' handler will be called only on secondary tap and the item will remain unfocused
1632
+ this.navigation.focus(item);
1633
+ // This is needed since the 'mouseover' event is not always dispatched
1634
+ if (!item.opened) {
1635
+ this.hover.over(item);
1636
+ }
1635
1637
  }
1636
1638
  }
1637
1639
  else if (this.navigation.focusedIdx) {
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1784618842,
11
- "version": "25.0.0-develop.7",
10
+ "publishDate": 1784795932,
11
+ "version": "25.0.0-develop.8",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-menu",
3
- "version": "25.0.0-develop.7",
3
+ "version": "25.0.0-develop.8",
4
4
  "description": "Kendo UI Angular Menu component",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -19,7 +19,7 @@
19
19
  "package": {
20
20
  "productName": "Kendo UI for Angular",
21
21
  "productCode": "KENDOUIANGULAR",
22
- "publishDate": 1784618842,
22
+ "publishDate": 1784795932,
23
23
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
24
24
  }
25
25
  },
@@ -29,15 +29,15 @@
29
29
  "@angular/core": "20 - 22",
30
30
  "@angular/platform-browser": "20 - 22",
31
31
  "@progress/kendo-licensing": "^1.11.0",
32
- "@progress/kendo-angular-common": "25.0.0-develop.7",
33
- "@progress/kendo-angular-l10n": "25.0.0-develop.7",
34
- "@progress/kendo-angular-icons": "25.0.0-develop.7",
35
- "@progress/kendo-angular-popup": "25.0.0-develop.7",
32
+ "@progress/kendo-angular-common": "25.0.0-develop.8",
33
+ "@progress/kendo-angular-l10n": "25.0.0-develop.8",
34
+ "@progress/kendo-angular-icons": "25.0.0-develop.8",
35
+ "@progress/kendo-angular-popup": "25.0.0-develop.8",
36
36
  "rxjs": "^6.5.3 || ^7.0.0"
37
37
  },
38
38
  "dependencies": {
39
39
  "tslib": "^2.3.1",
40
- "@progress/kendo-angular-schematics": "25.0.0-develop.7"
40
+ "@progress/kendo-angular-schematics": "25.0.0-develop.8"
41
41
  },
42
42
  "schematics": "./schematics/collection.json",
43
43
  "module": "fesm2022/progress-kendo-angular-menu.mjs",