@syncfusion/ej2-navigations 25.1.40 → 25.1.41

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 25.1.40
3
+ * version : 25.1.41
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-navigations@*",
3
- "_id": "@syncfusion/ej2-navigations@25.1.39",
3
+ "_id": "@syncfusion/ej2-navigations@25.1.40",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-b6ULde0kOnuY4A0Ho9X+1nkd6G+9vQQoZ/nApM1ctHx8/XVGU0XlFCKKBKCr4RQxIkGos9hZvY/TeAOplvjw1g==",
5
+ "_integrity": "sha512-gjvaF71UXvSS3/YYQKpKnS6GewAeoZp8ABusFTkT9aK0qkc45eda4XXwWEQcTvzMZ1alF9frNXH0m5pLbo18yw==",
6
6
  "_location": "/@syncfusion/ej2-navigations",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -39,8 +39,8 @@
39
39
  "/@syncfusion/ej2-spreadsheet",
40
40
  "/@syncfusion/ej2-vue-navigations"
41
41
  ],
42
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-25.1.39.tgz",
43
- "_shasum": "5d3c7b780b12b3e7c73fe09c025c51d13b43e421",
42
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-25.1.40.tgz",
43
+ "_shasum": "7b6ad1d0de9babef59f0509fee0515cbb0f79843",
44
44
  "_spec": "@syncfusion/ej2-navigations@*",
45
45
  "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
46
46
  "author": {
@@ -55,8 +55,8 @@
55
55
  "@syncfusion/ej2-buttons": "~25.1.39",
56
56
  "@syncfusion/ej2-data": "~25.1.35",
57
57
  "@syncfusion/ej2-inputs": "~25.1.40",
58
- "@syncfusion/ej2-lists": "~25.1.39",
59
- "@syncfusion/ej2-popups": "~25.1.39"
58
+ "@syncfusion/ej2-lists": "~25.1.41",
59
+ "@syncfusion/ej2-popups": "~25.1.41"
60
60
  },
61
61
  "deprecated": false,
62
62
  "description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another",
@@ -161,6 +161,6 @@
161
161
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
162
162
  },
163
163
  "typings": "index.d.ts",
164
- "version": "25.1.40",
164
+ "version": "25.1.41",
165
165
  "sideEffects": false
166
166
  }
@@ -1097,7 +1097,12 @@ var Carousel = /** @class */ (function (_super) {
1097
1097
  if (this.itemsContainer && this.itemsContainer.firstElementChild) {
1098
1098
  var numOfItems = this.getNumOfItems();
1099
1099
  var slideWidth = this.itemsContainer.firstElementChild.clientWidth;
1100
- this.itemsContainer.style.transform = this.getTranslateX(slideWidth, this.selectedIndex + numOfItems);
1100
+ if (this.loop) {
1101
+ this.itemsContainer.style.transform = this.getTranslateX(slideWidth, this.selectedIndex + numOfItems);
1102
+ }
1103
+ else {
1104
+ this.itemsContainer.style.transform = this.getTranslateX(slideWidth, this.selectedIndex);
1105
+ }
1101
1106
  }
1102
1107
  };
1103
1108
  Carousel.prototype.wireEvents = function () {