@progress/kendo-angular-menu 21.2.0-develop.1 → 21.2.0-develop.11
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.
|
@@ -15,7 +15,7 @@ import { normalize } from './open-on-click-settings';
|
|
|
15
15
|
import { inMenu } from './dom-queries';
|
|
16
16
|
import { ContextMenuService } from './context-menu/context-menu.service';
|
|
17
17
|
import { MenuBase } from './menu-base';
|
|
18
|
-
import { Keys, isDocumentAvailable,
|
|
18
|
+
import { Keys, isDocumentAvailable, normalizeKeys } from '@progress/kendo-angular-common';
|
|
19
19
|
import { getSizeClass } from './utils';
|
|
20
20
|
import { ListComponent } from './rendering/list.component';
|
|
21
21
|
import * as i0 from "@angular/core";
|
|
@@ -203,7 +203,7 @@ export class MenuComponent extends MenuBase {
|
|
|
203
203
|
if (!this.itemsService.hasItems) {
|
|
204
204
|
return;
|
|
205
205
|
}
|
|
206
|
-
const keyCode =
|
|
206
|
+
const keyCode = normalizeKeys(e);
|
|
207
207
|
const rtl = this.localization.rtl;
|
|
208
208
|
const first = keyCode === Keys.ArrowDown || keyCode === Keys.ArrowRight;
|
|
209
209
|
const last = keyCode === Keys.ArrowUp || keyCode === Keys.ArrowLeft;
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '21.2.0-develop.
|
|
13
|
+
publishDate: 1764685022,
|
|
14
|
+
version: '21.2.0-develop.11',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -6,7 +6,7 @@ import { Injectable, NgZone } from '@angular/core';
|
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { ItemsService } from './items.service';
|
|
8
8
|
import { ActionsService } from './actions.service';
|
|
9
|
-
import { Keys,
|
|
9
|
+
import { Keys, normalizeKeys } from '@progress/kendo-angular-common';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
import * as i1 from "./items.service";
|
|
12
12
|
import * as i2 from "./actions.service";
|
|
@@ -97,7 +97,7 @@ export class NavigationService {
|
|
|
97
97
|
if (!current) {
|
|
98
98
|
return;
|
|
99
99
|
}
|
|
100
|
-
const code =
|
|
100
|
+
const code = normalizeKeys(e);
|
|
101
101
|
const handler = this.handlers[code];
|
|
102
102
|
if (handler) {
|
|
103
103
|
if (handler !== 'tab') {
|
|
@@ -8,7 +8,7 @@ import { NgClass, NgStyle, NgTemplateOutlet } from '@angular/common';
|
|
|
8
8
|
import * as i3 from '@progress/kendo-angular-l10n';
|
|
9
9
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
10
10
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
11
|
-
import { PreventableEvent as PreventableEvent$1, hasObservers, Keys,
|
|
11
|
+
import { PreventableEvent as PreventableEvent$1, hasObservers, Keys, normalizeKeys, isDocumentAvailable, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
12
12
|
import { caretAltLeftIcon, caretAltRightIcon, caretAltDownIcon } from '@progress/kendo-svg-icons';
|
|
13
13
|
import * as i5 from '@progress/kendo-angular-popup';
|
|
14
14
|
import { PopupService, POPUP_CONTAINER } from '@progress/kendo-angular-popup';
|
|
@@ -22,8 +22,8 @@ const packageMetadata = {
|
|
|
22
22
|
productName: 'Kendo UI for Angular',
|
|
23
23
|
productCode: 'KENDOUIANGULAR',
|
|
24
24
|
productCodes: ['KENDOUIANGULAR'],
|
|
25
|
-
publishDate:
|
|
26
|
-
version: '21.2.0-develop.
|
|
25
|
+
publishDate: 1764685022,
|
|
26
|
+
version: '21.2.0-develop.11',
|
|
27
27
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
28
28
|
};
|
|
29
29
|
|
|
@@ -420,7 +420,7 @@ class NavigationService {
|
|
|
420
420
|
if (!current) {
|
|
421
421
|
return;
|
|
422
422
|
}
|
|
423
|
-
const code =
|
|
423
|
+
const code = normalizeKeys(e);
|
|
424
424
|
const handler = this.handlers[code];
|
|
425
425
|
if (handler) {
|
|
426
426
|
if (handler !== 'tab') {
|
|
@@ -2143,7 +2143,7 @@ class MenuComponent extends MenuBase {
|
|
|
2143
2143
|
if (!this.itemsService.hasItems) {
|
|
2144
2144
|
return;
|
|
2145
2145
|
}
|
|
2146
|
-
const keyCode =
|
|
2146
|
+
const keyCode = normalizeKeys(e);
|
|
2147
2147
|
const rtl = this.localization.rtl;
|
|
2148
2148
|
const first = keyCode === Keys.ArrowDown || keyCode === Keys.ArrowRight;
|
|
2149
2149
|
const last = keyCode === Keys.ArrowUp || keyCode === Keys.ArrowLeft;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-menu",
|
|
3
|
-
"version": "21.2.0-develop.
|
|
3
|
+
"version": "21.2.0-develop.11",
|
|
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":
|
|
22
|
+
"publishDate": 1764685022,
|
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -29,15 +29,15 @@
|
|
|
29
29
|
"@angular/core": "18 - 21",
|
|
30
30
|
"@angular/platform-browser": "18 - 21",
|
|
31
31
|
"@progress/kendo-licensing": "^1.7.0",
|
|
32
|
-
"@progress/kendo-angular-common": "21.2.0-develop.
|
|
33
|
-
"@progress/kendo-angular-l10n": "21.2.0-develop.
|
|
34
|
-
"@progress/kendo-angular-icons": "21.2.0-develop.
|
|
35
|
-
"@progress/kendo-angular-popup": "21.2.0-develop.
|
|
32
|
+
"@progress/kendo-angular-common": "21.2.0-develop.11",
|
|
33
|
+
"@progress/kendo-angular-l10n": "21.2.0-develop.11",
|
|
34
|
+
"@progress/kendo-angular-icons": "21.2.0-develop.11",
|
|
35
|
+
"@progress/kendo-angular-popup": "21.2.0-develop.11",
|
|
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": "21.2.0-develop.
|
|
40
|
+
"@progress/kendo-angular-schematics": "21.2.0-develop.11"
|
|
41
41
|
},
|
|
42
42
|
"schematics": "./schematics/collection.json",
|
|
43
43
|
"module": "fesm2022/progress-kendo-angular-menu.mjs",
|