@syncfusion/ej2-navigations 27.1.50 → 27.1.51

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 : 27.1.50
3
+ * version : 27.1.51
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@27.1.48",
3
+ "_id": "@syncfusion/ej2-navigations@27.1.50",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-7Arx+jDFckJ+5vQHFH+04Hqb/P7w9pTiGSVVcXU0s1q8DO6JNMgcf1dd/S8c/VaTfxfv6dWIqA9zEnBKcSjzyg==",
5
+ "_integrity": "sha512-RU939KWXIlWV+VrU/vROorLnguKamVY3SSjBP/lOqa/oGBFhIQebcGmSo2JSkQ870R+jyK1Ec67MVaI/crYoRw==",
6
6
  "_location": "/@syncfusion/ej2-navigations",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -40,8 +40,8 @@
40
40
  "/@syncfusion/ej2-spreadsheet",
41
41
  "/@syncfusion/ej2-vue-navigations"
42
42
  ],
43
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-27.1.48.tgz",
44
- "_shasum": "2c208da5381c64ddc0433b2404d540ae991107fa",
43
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-27.1.50.tgz",
44
+ "_shasum": "190f937bf1b2d76dc94cc68e77a90b124625589e",
45
45
  "_spec": "@syncfusion/ej2-navigations@*",
46
46
  "_where": "/jenkins/workspace/elease-automation_release_27.1.1/packages/included",
47
47
  "author": {
@@ -53,8 +53,8 @@
53
53
  "bundleDependencies": false,
54
54
  "dependencies": {
55
55
  "@syncfusion/ej2-base": "~27.1.50",
56
- "@syncfusion/ej2-buttons": "~27.1.50",
57
- "@syncfusion/ej2-data": "~27.1.50",
56
+ "@syncfusion/ej2-buttons": "~27.1.51",
57
+ "@syncfusion/ej2-data": "~27.1.51",
58
58
  "@syncfusion/ej2-inputs": "~27.1.50",
59
59
  "@syncfusion/ej2-lists": "~27.1.50",
60
60
  "@syncfusion/ej2-popups": "~27.1.50"
@@ -162,6 +162,6 @@
162
162
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
163
163
  },
164
164
  "typings": "index.d.ts",
165
- "version": "27.1.50",
165
+ "version": "27.1.51",
166
166
  "sideEffects": false
167
167
  }
@@ -264,7 +264,7 @@ var Stepper = /** @class */ (function (_super) {
264
264
  if (this.stepperItemList && this.progressbar && this.element.classList.contains(HORIZSTEP)) {
265
265
  this.setProgressPosition(this.element, true);
266
266
  }
267
- this.navigateToStep(this.activeStep, null, null, false);
267
+ this.navigateToStep(this.activeStep, null, null, false, false);
268
268
  };
269
269
  Stepper.prototype.updateStepFocus = function () {
270
270
  if (this.isKeyNavFocus) {
@@ -972,7 +972,7 @@ var Stepper = /** @class */ (function (_super) {
972
972
  if (this.stepperItemList && this.progressbar) {
973
973
  this.setProgressPosition(this.element);
974
974
  }
975
- this.navigateToStep(this.activeStep, null, null, false);
975
+ this.navigateToStep(this.activeStep, null, null, false, false);
976
976
  };
977
977
  Stepper.prototype.updateElementClassArray = function () {
978
978
  var classArray = [RTL, READONLY, 'e-steps-focus', LABELAFTER, LABELBEFORE, 'e-label-top',
@@ -3372,16 +3372,18 @@ var TreeView = /** @class */ (function (_super) {
3372
3372
  this.dragStartAction = false;
3373
3373
  };
3374
3374
  TreeView.prototype.getOffsetX = function (event, target) {
3375
- if (event instanceof TouchEvent && event.changedTouches.length > 0) {
3376
- return event.changedTouches[0].clientX - target.getBoundingClientRect().left;
3375
+ var touchList = event.changedTouches;
3376
+ if (touchList && touchList.length > 0) {
3377
+ return touchList[0].clientX - target.getBoundingClientRect().left;
3377
3378
  }
3378
3379
  else {
3379
3380
  return event.offsetX;
3380
3381
  }
3381
3382
  };
3382
3383
  TreeView.prototype.getOffsetY = function (event, target) {
3383
- if (event instanceof TouchEvent && event.changedTouches.length > 0) {
3384
- return event.changedTouches[0].clientY - target.getBoundingClientRect().top;
3384
+ var touchList = event.changedTouches;
3385
+ if (touchList && touchList.length > 0) {
3386
+ return touchList[0].clientY - target.getBoundingClientRect().top;
3385
3387
  }
3386
3388
  else {
3387
3389
  return event.offsetY;