@progress/kendo-angular-layout 18.0.0-develop.1 → 18.0.0-develop.3

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.
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-layout',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1736249770,
13
- version: '18.0.0-develop.1',
12
+ publishDate: 1736260642,
13
+ version: '18.0.0-develop.3',
14
14
  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'
15
15
  };
@@ -117,9 +117,11 @@ export class ScrollService {
117
117
  if (!mouseScrollEnabled(this.owner.scrollable)) {
118
118
  return;
119
119
  }
120
- const direction = event.deltaY < 0 ? 'prev' : 'next';
120
+ const isHorizontal = isTablistHorizontal(this.owner.tabPosition);
121
+ const scrollOrientation = isHorizontal ? 'deltaX' : 'deltaY';
122
+ const direction = event[scrollOrientation] < 0 ? 'prev' : 'next';
121
123
  this.calculateListPosition(direction, this.owner.scrollable.mouseScrollSpeed);
122
- if (isTablistHorizontal(this.owner.tabPosition)) {
124
+ if (isHorizontal) {
123
125
  this.tablistElement.scrollLeft = this.position;
124
126
  }
125
127
  else {
@@ -28,8 +28,8 @@ const packageMetadata = {
28
28
  name: '@progress/kendo-angular-layout',
29
29
  productName: 'Kendo UI for Angular',
30
30
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
31
- publishDate: 1736249770,
32
- version: '18.0.0-develop.1',
31
+ publishDate: 1736260642,
32
+ version: '18.0.0-develop.3',
33
33
  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'
34
34
  };
35
35
 
@@ -3437,9 +3437,11 @@ class ScrollService {
3437
3437
  if (!mouseScrollEnabled(this.owner.scrollable)) {
3438
3438
  return;
3439
3439
  }
3440
- const direction = event.deltaY < 0 ? 'prev' : 'next';
3440
+ const isHorizontal = isTablistHorizontal(this.owner.tabPosition);
3441
+ const scrollOrientation = isHorizontal ? 'deltaX' : 'deltaY';
3442
+ const direction = event[scrollOrientation] < 0 ? 'prev' : 'next';
3441
3443
  this.calculateListPosition(direction, this.owner.scrollable.mouseScrollSpeed);
3442
- if (isTablistHorizontal(this.owner.tabPosition)) {
3444
+ if (isHorizontal) {
3443
3445
  this.tablistElement.scrollLeft = this.position;
3444
3446
  }
3445
3447
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "18.0.0-develop.1",
3
+ "version": "18.0.0-develop.3",
4
4
  "description": "Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -39,17 +39,17 @@
39
39
  "@angular/core": "16 - 19",
40
40
  "@angular/platform-browser": "16 - 19",
41
41
  "@progress/kendo-licensing": "^1.0.2",
42
- "@progress/kendo-angular-common": "18.0.0-develop.1",
43
- "@progress/kendo-angular-l10n": "18.0.0-develop.1",
44
- "@progress/kendo-angular-progressbar": "18.0.0-develop.1",
45
- "@progress/kendo-angular-icons": "18.0.0-develop.1",
46
- "@progress/kendo-angular-buttons": "18.0.0-develop.1",
47
- "@progress/kendo-angular-intl": "18.0.0-develop.1",
42
+ "@progress/kendo-angular-common": "18.0.0-develop.3",
43
+ "@progress/kendo-angular-l10n": "18.0.0-develop.3",
44
+ "@progress/kendo-angular-progressbar": "18.0.0-develop.3",
45
+ "@progress/kendo-angular-icons": "18.0.0-develop.3",
46
+ "@progress/kendo-angular-buttons": "18.0.0-develop.3",
47
+ "@progress/kendo-angular-intl": "18.0.0-develop.3",
48
48
  "rxjs": "^6.5.3 || ^7.0.0"
49
49
  },
50
50
  "dependencies": {
51
51
  "tslib": "^2.3.1",
52
- "@progress/kendo-angular-schematics": "18.0.0-develop.1",
52
+ "@progress/kendo-angular-schematics": "18.0.0-develop.3",
53
53
  "@progress/kendo-draggable": "^3.0.2"
54
54
  },
55
55
  "schematics": "./schematics/collection.json",