@syncfusion/ej2-navigations 21.1.35 → 21.1.37

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 : 21.1.35
3
+ * version : 21.1.37
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. 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@19.91.2",
3
+ "_id": "@syncfusion/ej2-navigations@21.1.35",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-FnIM7kr9mqhNExCiXgyDSOrszPnGmx8fJN6Ont7C4v5Ct6NB0O3Jwm9X/t6jj8wzB/LIK6YlmNMluAXfBfdCjw==",
5
+ "_integrity": "sha512-XwMB/VIjq4y27Lrc6Qyk0phNUsyiOv3SZ1d2X2j99sTeRS3ihgxfpwsCAUc9DNeeyBoGC2qAiczwK4XWlUF6lw==",
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.syncfusion.com/repository/ej2-release/@syncfusion/ej2-navigations/-/ej2-navigations-19.91.2.tgz",
43
- "_shasum": "61437a55b10750960cf8764651ace17b20b694f3",
42
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-21.1.35.tgz",
43
+ "_shasum": "3e7319f15e96544ccbde24c8f0a830e52c701d59",
44
44
  "_spec": "@syncfusion/ej2-navigations@*",
45
45
  "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
46
46
  "author": {
@@ -51,12 +51,12 @@
51
51
  },
52
52
  "bundleDependencies": false,
53
53
  "dependencies": {
54
- "@syncfusion/ej2-base": "~21.1.35",
55
- "@syncfusion/ej2-buttons": "~21.1.35",
56
- "@syncfusion/ej2-data": "~21.1.35",
57
- "@syncfusion/ej2-inputs": "~21.1.35",
58
- "@syncfusion/ej2-lists": "~21.1.35",
59
- "@syncfusion/ej2-popups": "~21.1.35"
54
+ "@syncfusion/ej2-base": "~21.1.37",
55
+ "@syncfusion/ej2-buttons": "~21.1.37",
56
+ "@syncfusion/ej2-data": "~21.1.37",
57
+ "@syncfusion/ej2-inputs": "~21.1.37",
58
+ "@syncfusion/ej2-lists": "~21.1.37",
59
+ "@syncfusion/ej2-popups": "~21.1.37"
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": "21.1.35",
164
+ "version": "21.1.37",
165
165
  "sideEffects": false
166
166
  }
@@ -1480,7 +1480,7 @@ var TreeView = /** @class */ (function (_super) {
1480
1480
  }
1481
1481
  };
1482
1482
  TreeView.prototype.clickHandler = function (event) {
1483
- var target = Browser.isDevice ? document.elementFromPoint(event.originalEvent.changedTouches[0].clientX, event.originalEvent.changedTouches[0].clientY) : event.originalEvent.target;
1483
+ var target = Browser.isDevice && !Browser.isIos ? document.elementFromPoint(event.originalEvent.changedTouches[0].clientX, event.originalEvent.changedTouches[0].clientY) : event.originalEvent.target;
1484
1484
  EventHandler.remove(this.element, 'contextmenu', this.preventContextMenu);
1485
1485
  if (!target || this.dragStartAction) {
1486
1486
  return;
@@ -224,12 +224,12 @@
224
224
  }
225
225
  }
226
226
 
227
- .e-list-item.e-active.e-hover > .e-fullrow {
227
+ .e-list-item.e-active.e-hover > .e-fullrow{
228
228
  @include active-hover-theme;
229
229
  }
230
230
 
231
231
  .e-list-item.e-editing.e-active > .e-fullrow,
232
- .e-list-item.e-editing.e-hover > .e-fullrow {
232
+ .e-list-item.e-editing.e-hover > .e-fullrow{
233
233
  @include active-editing-theme;
234
234
  }
235
235
 
@@ -295,7 +295,7 @@
295
295
 
296
296
  &:not(.e-fullrow-wrap) {
297
297
 
298
- .e-list-item.e-hover > .e-text-content {
298
+ .e-list-item.e-hover > .e-text-content{
299
299
  background-color: $treeview-item-hover-bg;
300
300
  border-color: $treeview-item-hover-border-color;
301
301
  }