@progress/kendo-angular-listview 19.3.0-develop.8 → 19.3.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.
@@ -4,7 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Injectable } from '@angular/core';
6
6
  import { Subject } from 'rxjs';
7
- import { Keys } from '@progress/kendo-angular-common';
7
+ import { Keys, normalizeNumpadKeys } from '@progress/kendo-angular-common';
8
8
  import { closestWithMatch, fitIntoRange, getListItemIndex, isListViewItem, isPresent, relatedTarget } from '../utils';
9
9
  import * as i0 from "@angular/core";
10
10
  /**
@@ -51,8 +51,9 @@ export class NavigationService {
51
51
  return index === this.activeIndex;
52
52
  }
53
53
  handleKeyDown(event, totalItemsCount) {
54
- const { keyCode } = event;
55
- switch (keyCode) {
54
+ // on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
55
+ const code = normalizeNumpadKeys(event);
56
+ switch (code) {
56
57
  case Keys.ArrowLeft:
57
58
  case Keys.ArrowUp:
58
59
  this.navigateToPrevious();
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1752479559,
14
- version: '19.3.0-develop.8',
13
+ publishDate: 1755030772,
14
+ version: '19.3.0',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -4,7 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from '@angular/core';
6
6
  import { Injectable, Directive, Input, Optional, EventEmitter, Component, ChangeDetectionStrategy, HostBinding, ContentChild, ViewChild, ViewChildren, Output, HostListener, NgModule } from '@angular/core';
7
- import { isDocumentAvailable, Keys, isChanged, hasObservers, EventsOutsideAngularDirective, ResizeBatchService } from '@progress/kendo-angular-common';
7
+ import { isDocumentAvailable, normalizeNumpadKeys, Keys, isChanged, hasObservers, EventsOutsideAngularDirective, ResizeBatchService } from '@progress/kendo-angular-common';
8
8
  import { validatePackage } from '@progress/kendo-licensing';
9
9
  import * as i2 from '@progress/kendo-angular-l10n';
10
10
  import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
@@ -25,8 +25,8 @@ const packageMetadata = {
25
25
  productName: 'Kendo UI for Angular',
26
26
  productCode: 'KENDOUIANGULAR',
27
27
  productCodes: ['KENDOUIANGULAR'],
28
- publishDate: 1752479559,
29
- version: '19.3.0-develop.8',
28
+ publishDate: 1755030772,
29
+ version: '19.3.0',
30
30
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
31
31
  };
32
32
 
@@ -173,8 +173,9 @@ class NavigationService {
173
173
  return index === this.activeIndex;
174
174
  }
175
175
  handleKeyDown(event, totalItemsCount) {
176
- const { keyCode } = event;
177
- switch (keyCode) {
176
+ // on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
177
+ const code = normalizeNumpadKeys(event);
178
+ switch (code) {
178
179
  case Keys.ArrowLeft:
179
180
  case Keys.ArrowUp:
180
181
  this.navigateToPrevious();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-listview",
3
- "version": "19.3.0-develop.8",
3
+ "version": "19.3.0",
4
4
  "description": "Kendo UI Angular listview 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": 1752479559,
22
+ "publishDate": 1755030772,
23
23
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
24
24
  }
25
25
  },
@@ -29,17 +29,17 @@
29
29
  "@angular/core": "16 - 20",
30
30
  "@angular/forms": "16 - 20",
31
31
  "@angular/platform-browser": "16 - 20",
32
- "@progress/kendo-licensing": "^1.5.0",
33
- "@progress/kendo-angular-buttons": "19.3.0-develop.8",
34
- "@progress/kendo-angular-common": "19.3.0-develop.8",
35
- "@progress/kendo-angular-icons": "19.3.0-develop.8",
36
- "@progress/kendo-angular-l10n": "19.3.0-develop.8",
37
- "@progress/kendo-angular-pager": "19.3.0-develop.8",
32
+ "@progress/kendo-licensing": "^1.7.0",
33
+ "@progress/kendo-angular-buttons": "19.3.0",
34
+ "@progress/kendo-angular-common": "19.3.0",
35
+ "@progress/kendo-angular-icons": "19.3.0",
36
+ "@progress/kendo-angular-l10n": "19.3.0",
37
+ "@progress/kendo-angular-pager": "19.3.0",
38
38
  "rxjs": "^6.5.3 || ^7.0.0"
39
39
  },
40
40
  "dependencies": {
41
41
  "tslib": "^2.3.1",
42
- "@progress/kendo-angular-schematics": "19.3.0-develop.8"
42
+ "@progress/kendo-angular-schematics": "19.3.0"
43
43
  },
44
44
  "schematics": "./schematics/collection.json",
45
45
  "module": "fesm2022/progress-kendo-angular-listview.mjs",
@@ -4,12 +4,12 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'ListViewModule', package: 'listview', peerDependencies: {
6
6
  // Peers of pager
7
- '@progress/kendo-angular-dropdowns': '19.3.0-develop.8',
8
- '@progress/kendo-angular-treeview': '19.3.0-develop.8',
9
- '@progress/kendo-angular-inputs': '19.3.0-develop.8',
10
- '@progress/kendo-angular-intl': '19.3.0-develop.8',
11
- '@progress/kendo-angular-l10n': '19.3.0-develop.8',
12
- '@progress/kendo-angular-popup': '19.3.0-develop.8',
7
+ '@progress/kendo-angular-dropdowns': '19.3.0',
8
+ '@progress/kendo-angular-treeview': '19.3.0',
9
+ '@progress/kendo-angular-inputs': '19.3.0',
10
+ '@progress/kendo-angular-intl': '19.3.0',
11
+ '@progress/kendo-angular-l10n': '19.3.0',
12
+ '@progress/kendo-angular-popup': '19.3.0',
13
13
  '@progress/kendo-drawing': '^1.17.2',
14
14
  // Peer of icons
15
15
  '@progress/kendo-svg-icons': '^4.0.0'