@progress/kendo-angular-listbox 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.
|
@@ -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,
|
|
8
|
+
import { Keys, normalizeKeys } from "@progress/kendo-angular-common";
|
|
9
9
|
import { take } from "rxjs/operators";
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
/**
|
|
@@ -30,7 +30,7 @@ export class KeyboardNavigationService {
|
|
|
30
30
|
}
|
|
31
31
|
onKeyDown(event, toolsRef, toolbar, childListbox, parentListbox, listboxItems, currentListbox) {
|
|
32
32
|
const target = event.target;
|
|
33
|
-
const keyCode =
|
|
33
|
+
const keyCode = normalizeKeys(event);
|
|
34
34
|
const ctrlOrMetaKey = event.ctrlKey || event.metaKey;
|
|
35
35
|
const parentListboxToolbar = parentListbox?.selectedTools;
|
|
36
36
|
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: '21.2.0
|
|
13
|
+
publishDate: 1764751742,
|
|
14
|
+
version: '21.2.0',
|
|
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 {
|
|
12
|
+
import { normalizeKeys, Keys, isPresent as isPresent$1, 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';
|
|
@@ -24,8 +24,8 @@ const packageMetadata = {
|
|
|
24
24
|
productName: 'Kendo UI for Angular',
|
|
25
25
|
productCode: 'KENDOUIANGULAR',
|
|
26
26
|
productCodes: ['KENDOUIANGULAR'],
|
|
27
|
-
publishDate:
|
|
28
|
-
version: '21.2.0
|
|
27
|
+
publishDate: 1764751742,
|
|
28
|
+
version: '21.2.0',
|
|
29
29
|
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'
|
|
30
30
|
};
|
|
31
31
|
|
|
@@ -353,7 +353,7 @@ class KeyboardNavigationService {
|
|
|
353
353
|
}
|
|
354
354
|
onKeyDown(event, toolsRef, toolbar, childListbox, parentListbox, listboxItems, currentListbox) {
|
|
355
355
|
const target = event.target;
|
|
356
|
-
const keyCode =
|
|
356
|
+
const keyCode = normalizeKeys(event);
|
|
357
357
|
const ctrlOrMetaKey = event.ctrlKey || event.metaKey;
|
|
358
358
|
const parentListboxToolbar = parentListbox?.selectedTools;
|
|
359
359
|
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": "21.2.0
|
|
3
|
+
"version": "21.2.0",
|
|
4
4
|
"description": "Kendo UI for Angular ListBox",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"package": {
|
|
45
45
|
"productName": "Kendo UI for Angular",
|
|
46
46
|
"productCode": "KENDOUIANGULAR",
|
|
47
|
-
"publishDate":
|
|
47
|
+
"publishDate": 1764751742,
|
|
48
48
|
"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"
|
|
49
49
|
}
|
|
50
50
|
},
|
|
@@ -54,14 +54,14 @@
|
|
|
54
54
|
"@angular/core": "18 - 21",
|
|
55
55
|
"@angular/platform-browser": "18 - 21",
|
|
56
56
|
"@progress/kendo-licensing": "^1.7.0",
|
|
57
|
-
"@progress/kendo-angular-buttons": "21.2.0
|
|
58
|
-
"@progress/kendo-angular-common": "21.2.0
|
|
59
|
-
"@progress/kendo-angular-popup": "21.2.0
|
|
57
|
+
"@progress/kendo-angular-buttons": "21.2.0",
|
|
58
|
+
"@progress/kendo-angular-common": "21.2.0",
|
|
59
|
+
"@progress/kendo-angular-popup": "21.2.0",
|
|
60
60
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"tslib": "^2.3.1",
|
|
64
|
-
"@progress/kendo-angular-schematics": "21.2.0
|
|
64
|
+
"@progress/kendo-angular-schematics": "21.2.0",
|
|
65
65
|
"@progress/kendo-common": "^1.0.1"
|
|
66
66
|
},
|
|
67
67
|
"schematics": "./schematics/collection.json",
|
|
@@ -11,11 +11,11 @@ function default_1(options) {
|
|
|
11
11
|
// Additional dependencies to install.
|
|
12
12
|
// See https://github.com/telerik/kendo-schematics/issues/28
|
|
13
13
|
peerDependencies: {
|
|
14
|
-
'@progress/kendo-angular-buttons': '21.2.0
|
|
15
|
-
'@progress/kendo-angular-common': '21.2.0
|
|
16
|
-
'@progress/kendo-angular-l10n': '21.2.0
|
|
14
|
+
'@progress/kendo-angular-buttons': '21.2.0',
|
|
15
|
+
'@progress/kendo-angular-common': '21.2.0',
|
|
16
|
+
'@progress/kendo-angular-l10n': '21.2.0',
|
|
17
17
|
// Peer of kendo-angular-buttons
|
|
18
|
-
'@progress/kendo-angular-popup': '21.2.0
|
|
18
|
+
'@progress/kendo-angular-popup': '21.2.0'
|
|
19
19
|
} });
|
|
20
20
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
21
21
|
}
|