@progress/kendo-angular-filter 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.
|
@@ -12,7 +12,7 @@ import { packageMetadata } from './package-metadata';
|
|
|
12
12
|
import { FilterFieldComponent } from './filter-field.component';
|
|
13
13
|
import { FilterItem } from './util';
|
|
14
14
|
import { NavigationService } from './navigation.service';
|
|
15
|
-
import { Keys,
|
|
15
|
+
import { Keys, normalizeKeys } from '@progress/kendo-angular-common';
|
|
16
16
|
import { FilterErrorMessages } from './error-messages';
|
|
17
17
|
import { FilterGroupComponent } from './filter-group.component';
|
|
18
18
|
import { LocalizedMessagesDirective } from './localization/localized-messages.directive';
|
|
@@ -90,7 +90,7 @@ export class FilterComponent {
|
|
|
90
90
|
* @hidden
|
|
91
91
|
*/
|
|
92
92
|
onKeydown(event) {
|
|
93
|
-
const keyCode =
|
|
93
|
+
const keyCode = normalizeKeys(event);
|
|
94
94
|
const keys = [Keys.ArrowUp, Keys.ArrowDown, Keys.ArrowLeft, Keys.ArrowRight, Keys.Enter,
|
|
95
95
|
Keys.NumpadEnter, Keys.Escape, Keys.Tab];
|
|
96
96
|
if (keys.indexOf(keyCode) > -1) {
|
|
@@ -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: 1764751753,
|
|
14
|
+
version: '21.2.0',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -7,7 +7,7 @@ import { Injectable, Directive, Component, Input, ContentChild, EventEmitter, Ou
|
|
|
7
7
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
8
8
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
9
9
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
10
|
-
import { Keys, TemplateContextDirective,
|
|
10
|
+
import { Keys, TemplateContextDirective, normalizeKeys, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
11
11
|
import { xIcon, filterAddGroupIcon, filterAddExpressionIcon } from '@progress/kendo-svg-icons';
|
|
12
12
|
import { ButtonComponent } from '@progress/kendo-angular-buttons';
|
|
13
13
|
import { DatePickerComponent, DatePickerCustomMessagesComponent, CalendarDOMService, CenturyViewService, DecadeViewService, MonthViewService, YearViewService, TimePickerDOMService, HoursService, MinutesService, SecondsService, MillisecondsService, DayPeriodService } from '@progress/kendo-angular-dateinputs';
|
|
@@ -231,8 +231,8 @@ const packageMetadata = {
|
|
|
231
231
|
productName: 'Kendo UI for Angular',
|
|
232
232
|
productCode: 'KENDOUIANGULAR',
|
|
233
233
|
productCodes: ['KENDOUIANGULAR'],
|
|
234
|
-
publishDate:
|
|
235
|
-
version: '21.2.0
|
|
234
|
+
publishDate: 1764751753,
|
|
235
|
+
version: '21.2.0',
|
|
236
236
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
237
237
|
};
|
|
238
238
|
|
|
@@ -1931,7 +1931,7 @@ class FilterComponent {
|
|
|
1931
1931
|
* @hidden
|
|
1932
1932
|
*/
|
|
1933
1933
|
onKeydown(event) {
|
|
1934
|
-
const keyCode =
|
|
1934
|
+
const keyCode = normalizeKeys(event);
|
|
1935
1935
|
const keys = [Keys.ArrowUp, Keys.ArrowDown, Keys.ArrowLeft, Keys.ArrowRight, Keys.Enter,
|
|
1936
1936
|
Keys.NumpadEnter, Keys.Escape, Keys.Tab];
|
|
1937
1937
|
if (keys.indexOf(keyCode) > -1) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-filter",
|
|
3
|
-
"version": "21.2.0
|
|
3
|
+
"version": "21.2.0",
|
|
4
4
|
"description": "Kendo UI Angular Filter",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"package": {
|
|
18
18
|
"productName": "Kendo UI for Angular",
|
|
19
19
|
"productCode": "KENDOUIANGULAR",
|
|
20
|
-
"publishDate":
|
|
20
|
+
"publishDate": 1764751753,
|
|
21
21
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
@@ -28,20 +28,20 @@
|
|
|
28
28
|
"@angular/platform-browser": "18 - 21",
|
|
29
29
|
"@progress/kendo-data-query": "^1.5.5",
|
|
30
30
|
"@progress/kendo-licensing": "^1.7.0",
|
|
31
|
-
"@progress/kendo-angular-buttons": "21.2.0
|
|
32
|
-
"@progress/kendo-angular-common": "21.2.0
|
|
33
|
-
"@progress/kendo-angular-dateinputs": "21.2.0
|
|
34
|
-
"@progress/kendo-angular-dropdowns": "21.2.0
|
|
35
|
-
"@progress/kendo-angular-inputs": "21.2.0
|
|
36
|
-
"@progress/kendo-angular-intl": "21.2.0
|
|
37
|
-
"@progress/kendo-angular-l10n": "21.2.0
|
|
38
|
-
"@progress/kendo-angular-icons": "21.2.0
|
|
39
|
-
"@progress/kendo-angular-label": "21.2.0
|
|
31
|
+
"@progress/kendo-angular-buttons": "21.2.0",
|
|
32
|
+
"@progress/kendo-angular-common": "21.2.0",
|
|
33
|
+
"@progress/kendo-angular-dateinputs": "21.2.0",
|
|
34
|
+
"@progress/kendo-angular-dropdowns": "21.2.0",
|
|
35
|
+
"@progress/kendo-angular-inputs": "21.2.0",
|
|
36
|
+
"@progress/kendo-angular-intl": "21.2.0",
|
|
37
|
+
"@progress/kendo-angular-l10n": "21.2.0",
|
|
38
|
+
"@progress/kendo-angular-icons": "21.2.0",
|
|
39
|
+
"@progress/kendo-angular-label": "21.2.0",
|
|
40
40
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"tslib": "^2.3.1",
|
|
44
|
-
"@progress/kendo-angular-schematics": "21.2.0
|
|
44
|
+
"@progress/kendo-angular-schematics": "21.2.0"
|
|
45
45
|
},
|
|
46
46
|
"schematics": "./schematics/collection.json",
|
|
47
47
|
"module": "fesm2022/progress-kendo-angular-filter.mjs",
|
|
@@ -9,12 +9,12 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'FilterModule', package: 'filter', peerDependencies: {
|
|
11
11
|
// peer deps of the dropdowns
|
|
12
|
-
'@progress/kendo-angular-treeview': '21.2.0
|
|
13
|
-
'@progress/kendo-angular-popup': '21.2.0
|
|
14
|
-
'@progress/kendo-angular-navigation': '21.2.0
|
|
12
|
+
'@progress/kendo-angular-treeview': '21.2.0',
|
|
13
|
+
'@progress/kendo-angular-popup': '21.2.0',
|
|
14
|
+
'@progress/kendo-angular-navigation': '21.2.0',
|
|
15
15
|
// peer dependency of kendo-angular-inputs
|
|
16
16
|
'@progress/kendo-drawing': '^1.16.0',
|
|
17
|
-
'@progress/kendo-angular-dialog': '21.2.0
|
|
17
|
+
'@progress/kendo-angular-dialog': '21.2.0',
|
|
18
18
|
// Peer dependency of icons
|
|
19
19
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
20
20
|
} });
|