@progress/kendo-angular-listbox 19.3.0-develop.32 → 19.3.0-develop.34
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.
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-inferrable-types */
|
|
6
6
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
7
7
|
import { EventEmitter, Injectable, NgZone, Renderer2 } from "@angular/core";
|
|
8
|
-
import { Keys } from "@progress/kendo-angular-common";
|
|
8
|
+
import { Keys, normalizeNumpadKeys } from "@progress/kendo-angular-common";
|
|
9
9
|
import { take } from "rxjs/operators";
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
/**
|
|
@@ -28,7 +28,7 @@ export class KeyboardNavigationService {
|
|
|
28
28
|
}
|
|
29
29
|
onKeyDown(event, toolsRef, toolbar, childListbox, parentListbox, listboxItems) {
|
|
30
30
|
const target = event.target;
|
|
31
|
-
const keyCode = event
|
|
31
|
+
const keyCode = normalizeNumpadKeys(event);
|
|
32
32
|
const ctrlOrMetaKey = event.ctrlKey || event.metaKey;
|
|
33
33
|
const parentListboxToolbar = parentListbox?.selectedTools;
|
|
34
34
|
const tool = toolsRef.find(elem => elem.element === target);
|
|
@@ -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: '19.3.0-develop.
|
|
13
|
+
publishDate: 1754895154,
|
|
14
|
+
version: '19.3.0-develop.34',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
16
16
|
};
|
|
@@ -9,7 +9,7 @@ import { Subscription } from 'rxjs';
|
|
|
9
9
|
import { getter } from '@progress/kendo-common';
|
|
10
10
|
import { caretAltUpIcon, caretAltDownIcon, caretAltRightIcon, caretAltLeftIcon, caretDoubleAltRightIcon, caretDoubleAltLeftIcon, xIcon } from '@progress/kendo-svg-icons';
|
|
11
11
|
import { ButtonComponent } from '@progress/kendo-angular-buttons';
|
|
12
|
-
import { Keys, TemplateContextDirective, isChanged, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
12
|
+
import { normalizeNumpadKeys, Keys, TemplateContextDirective, isChanged, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
13
13
|
import { take } from 'rxjs/operators';
|
|
14
14
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
15
15
|
import { ComponentMessages, 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:
|
|
29
|
-
version: '19.3.0-develop.
|
|
28
|
+
publishDate: 1754895154,
|
|
29
|
+
version: '19.3.0-develop.34',
|
|
30
30
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
31
31
|
};
|
|
32
32
|
|
|
@@ -214,7 +214,7 @@ class KeyboardNavigationService {
|
|
|
214
214
|
}
|
|
215
215
|
onKeyDown(event, toolsRef, toolbar, childListbox, parentListbox, listboxItems) {
|
|
216
216
|
const target = event.target;
|
|
217
|
-
const keyCode = event
|
|
217
|
+
const keyCode = normalizeNumpadKeys(event);
|
|
218
218
|
const ctrlOrMetaKey = event.ctrlKey || event.metaKey;
|
|
219
219
|
const parentListboxToolbar = parentListbox?.selectedTools;
|
|
220
220
|
const tool = toolsRef.find(elem => elem.element === target);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-listbox",
|
|
3
|
-
"version": "19.3.0-develop.
|
|
3
|
+
"version": "19.3.0-develop.34",
|
|
4
4
|
"description": "Kendo UI for Angular ListBox",
|
|
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": 1754895154,
|
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"@angular/core": "16 - 20",
|
|
30
30
|
"@angular/platform-browser": "16 - 20",
|
|
31
31
|
"@progress/kendo-licensing": "^1.7.0",
|
|
32
|
-
"@progress/kendo-angular-buttons": "19.3.0-develop.
|
|
33
|
-
"@progress/kendo-angular-common": "19.3.0-develop.
|
|
34
|
-
"@progress/kendo-angular-popup": "19.3.0-develop.
|
|
32
|
+
"@progress/kendo-angular-buttons": "19.3.0-develop.34",
|
|
33
|
+
"@progress/kendo-angular-common": "19.3.0-develop.34",
|
|
34
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.34",
|
|
35
35
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"tslib": "^2.3.1",
|
|
39
|
-
"@progress/kendo-angular-schematics": "19.3.0-develop.
|
|
39
|
+
"@progress/kendo-angular-schematics": "19.3.0-develop.34",
|
|
40
40
|
"@progress/kendo-common": "^1.0.1"
|
|
41
41
|
},
|
|
42
42
|
"schematics": "./schematics/collection.json",
|
|
@@ -6,11 +6,11 @@ function default_1(options) {
|
|
|
6
6
|
// Additional dependencies to install.
|
|
7
7
|
// See https://github.com/telerik/kendo-schematics/issues/28
|
|
8
8
|
peerDependencies: {
|
|
9
|
-
'@progress/kendo-angular-buttons': '19.3.0-develop.
|
|
10
|
-
'@progress/kendo-angular-common': '19.3.0-develop.
|
|
11
|
-
'@progress/kendo-angular-l10n': '19.3.0-develop.
|
|
9
|
+
'@progress/kendo-angular-buttons': '19.3.0-develop.34',
|
|
10
|
+
'@progress/kendo-angular-common': '19.3.0-develop.34',
|
|
11
|
+
'@progress/kendo-angular-l10n': '19.3.0-develop.34',
|
|
12
12
|
// Peer of kendo-angular-buttons
|
|
13
|
-
'@progress/kendo-angular-popup': '19.3.0-develop.
|
|
13
|
+
'@progress/kendo-angular-popup': '19.3.0-develop.34'
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|