@progress/kendo-angular-menu 23.4.0 → 24.0.0-develop.10

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.
@@ -22,8 +22,8 @@ const packageMetadata = {
22
22
  productName: 'Kendo UI for Angular',
23
23
  productCode: 'KENDOUIANGULAR',
24
24
  productCodes: ['KENDOUIANGULAR'],
25
- publishDate: 1777036861,
26
- version: '23.4.0',
25
+ publishDate: 1777368143,
26
+ version: '24.0.0-develop.10',
27
27
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
28
28
  };
29
29
 
@@ -2089,8 +2089,9 @@ class MenuComponent extends MenuBase {
2089
2089
  */
2090
2090
  get ariaOrientation() {
2091
2091
  if (this.vertical) {
2092
- return 'vertical';
2092
+ return this.ariaRole === 'menubar' ? 'vertical' : null;
2093
2093
  }
2094
+ return this.ariaRole === 'menu' ? 'horizontal' : null;
2094
2095
  }
2095
2096
  /**
2096
2097
  * @hidden
@@ -2111,7 +2112,10 @@ class MenuComponent extends MenuBase {
2111
2112
  const sizeClass = getSizeClass(this.size);
2112
2113
  const staticClasses = 'k-reset k-header k-menu';
2113
2114
  if (this.isContextMenu) {
2114
- return `k-context-menu k-menu-group ${sizeClass || ''}`;
2115
+ const contextMenuClasses = this.vertical
2116
+ ? 'k-context-menu k-menu-group'
2117
+ : `${staticClasses} k-context-menu k-menu-horizontal`;
2118
+ return `${contextMenuClasses} ${sizeClass || ''}`;
2115
2119
  }
2116
2120
  return `${staticClasses} k-menu-${this.vertical ? 'vertical' : 'horizontal'}`;
2117
2121
  }
@@ -73,7 +73,7 @@ export declare class MenuComponent extends MenuBase implements OnChanges, AfterV
73
73
  /**
74
74
  * @hidden
75
75
  */
76
- get ariaOrientation(): string;
76
+ get ariaOrientation(): string | null;
77
77
  /**
78
78
  * @hidden
79
79
  */
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1777036861,
11
- "version": "23.4.0",
10
+ "publishDate": 1777368143,
11
+ "version": "24.0.0-develop.10",
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": "23.4.0",
3
+ "version": "24.0.0-develop.10",
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": 1777036861,
22
+ "publishDate": 1777368143,
23
23
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
24
24
  }
25
25
  },
@@ -29,15 +29,15 @@
29
29
  "@angular/core": "19 - 21",
30
30
  "@angular/platform-browser": "19 - 21",
31
31
  "@progress/kendo-licensing": "^1.11.0",
32
- "@progress/kendo-angular-common": "23.4.0",
33
- "@progress/kendo-angular-l10n": "23.4.0",
34
- "@progress/kendo-angular-icons": "23.4.0",
35
- "@progress/kendo-angular-popup": "23.4.0",
32
+ "@progress/kendo-angular-common": "24.0.0-develop.10",
33
+ "@progress/kendo-angular-l10n": "24.0.0-develop.10",
34
+ "@progress/kendo-angular-icons": "24.0.0-develop.10",
35
+ "@progress/kendo-angular-popup": "24.0.0-develop.10",
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": "23.4.0"
40
+ "@progress/kendo-angular-schematics": "24.0.0-develop.10"
41
41
  },
42
42
  "schematics": "./schematics/collection.json",
43
43
  "module": "fesm2022/progress-kendo-angular-menu.mjs",