@progress/kendo-angular-menu 21.2.0-develop.8 → 21.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.
@@ -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, normalizeNumpadKeys } from '@progress/kendo-angular-common';
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 = normalizeNumpadKeys(e);
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: 1764338687,
14
- version: '21.2.0-develop.8',
13
+ publishDate: 1764751512,
14
+ version: '21.2.0',
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, normalizeNumpadKeys } from '@progress/kendo-angular-common';
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 = normalizeNumpadKeys(e);
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, normalizeNumpadKeys, isDocumentAvailable, ResizeBatchService } from '@progress/kendo-angular-common';
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: 1764338687,
26
- version: '21.2.0-develop.8',
25
+ publishDate: 1764751512,
26
+ version: '21.2.0',
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 = normalizeNumpadKeys(e);
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 = normalizeNumpadKeys(e);
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.8",
3
+ "version": "21.2.0",
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": 1764338687,
22
+ "publishDate": 1764751512,
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.8",
33
- "@progress/kendo-angular-l10n": "21.2.0-develop.8",
34
- "@progress/kendo-angular-icons": "21.2.0-develop.8",
35
- "@progress/kendo-angular-popup": "21.2.0-develop.8",
32
+ "@progress/kendo-angular-common": "21.2.0",
33
+ "@progress/kendo-angular-l10n": "21.2.0",
34
+ "@progress/kendo-angular-icons": "21.2.0",
35
+ "@progress/kendo-angular-popup": "21.2.0",
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.8"
40
+ "@progress/kendo-angular-schematics": "21.2.0"
41
41
  },
42
42
  "schematics": "./schematics/collection.json",
43
43
  "module": "fesm2022/progress-kendo-angular-menu.mjs",