@progress/kendo-angular-scrollview 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.
|
@@ -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: 1764751756,
|
|
14
|
+
version: '21.2.0',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
import { Component, ContentChild, ElementRef, EventEmitter, HostBinding, Input, Output, TemplateRef, NgZone, ViewChild, Renderer2 } from '@angular/core';
|
|
9
9
|
import { animate, state, style, transition, trigger } from '@angular/animations';
|
|
10
10
|
import { Dir } from './enums';
|
|
11
|
-
import { DraggableDirective, Keys,
|
|
11
|
+
import { DraggableDirective, Keys, normalizeKeys } from '@progress/kendo-angular-common';
|
|
12
12
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
13
13
|
import { packageMetadata } from './package-metadata';
|
|
14
14
|
import { DataCollection, DataResultIterator } from './data.collection';
|
|
@@ -341,7 +341,7 @@ export class ScrollViewComponent {
|
|
|
341
341
|
return !this.endless && isEndReached;
|
|
342
342
|
}
|
|
343
343
|
keyDown(e) {
|
|
344
|
-
const keyCode =
|
|
344
|
+
const keyCode = normalizeKeys(e);
|
|
345
345
|
if (keyCode === Keys.ArrowLeft) {
|
|
346
346
|
if (this.isRTL) {
|
|
347
347
|
this.next();
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
6
|
import { EventEmitter, Component, Input, Output, Directive, forwardRef, TemplateRef, ContentChild, ViewChild, HostBinding, NgModule } from '@angular/core';
|
|
7
7
|
import { trigger, state, style, transition, animate } from '@angular/animations';
|
|
8
|
-
import { replaceMessagePlaceholder,
|
|
8
|
+
import { replaceMessagePlaceholder, normalizeKeys, Keys, DraggableDirective } from '@progress/kendo-angular-common';
|
|
9
9
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
10
10
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
11
11
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
@@ -31,8 +31,8 @@ const packageMetadata = {
|
|
|
31
31
|
productName: 'Kendo UI for Angular',
|
|
32
32
|
productCode: 'KENDOUIANGULAR',
|
|
33
33
|
productCodes: ['KENDOUIANGULAR'],
|
|
34
|
-
publishDate:
|
|
35
|
-
version: '21.2.0
|
|
34
|
+
publishDate: 1764751756,
|
|
35
|
+
version: '21.2.0',
|
|
36
36
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
37
37
|
};
|
|
38
38
|
|
|
@@ -563,7 +563,7 @@ class ScrollViewComponent {
|
|
|
563
563
|
return !this.endless && isEndReached;
|
|
564
564
|
}
|
|
565
565
|
keyDown(e) {
|
|
566
|
-
const keyCode =
|
|
566
|
+
const keyCode = normalizeKeys(e);
|
|
567
567
|
if (keyCode === Keys.ArrowLeft) {
|
|
568
568
|
if (this.isRTL) {
|
|
569
569
|
this.next();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scrollview",
|
|
3
|
-
"version": "21.2.0
|
|
3
|
+
"version": "21.2.0",
|
|
4
4
|
"description": "A ScrollView Component for Angular",
|
|
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": 1764751756,
|
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -29,14 +29,14 @@
|
|
|
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
|
|
33
|
-
"@progress/kendo-angular-l10n": "21.2.0
|
|
34
|
-
"@progress/kendo-angular-icons": "21.2.0
|
|
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
35
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"tslib": "^2.3.1",
|
|
39
|
-
"@progress/kendo-angular-schematics": "21.2.0
|
|
39
|
+
"@progress/kendo-angular-schematics": "21.2.0"
|
|
40
40
|
},
|
|
41
41
|
"schematics": "./schematics/collection.json",
|
|
42
42
|
"module": "fesm2022/progress-kendo-angular-scrollview.mjs",
|