Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-navigations

Package Overview
Dependencies
Maintainers
3
Versions
272
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-navigations - npm Package Compare versions

Comparing version 20.4.51 to 20.4.52

15

CHANGELOG.md

@@ -5,2 +5,4 @@ # Changelog

## 20.4.51 (2023-02-21)
### TreeView

@@ -11,3 +13,16 @@

- `#I428766` - Alignment issue in TreeView node without a sub-child in RTL mode has been resolved.
- `#I428002` - The accessibility related issues in the TreeView has been resolved.
### ContextMenu
#### Bug Fixes
- `#I439558` - The issue with "When removing all context menu items that contain icons using removeItems method, it thrown null reference error" has been resolved.
### Breadcrumb
#### Bug Fixes
- `#I437629` - Issue with "Breadcrumb overflow mode menu creates a dark point for multiple click " has been resolved.
## 20.4.49 (2023-02-07)

@@ -14,0 +29,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 20.4.51
* version : 20.4.52
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.

@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license.

{
"_from": "@syncfusion/ej2-navigations@*",
"_id": "@syncfusion/ej2-navigations@20.4.49",
"_id": "@syncfusion/ej2-navigations@20.4.51",
"_inBundle": false,
"_integrity": "sha512-rX8KgboFWrQ9npRnVSG+EDY7IbrsEI2NrKmq/EogWx5hsQrTbix1pxivr+eHxaz7YdpFZx4izzAL7dmBENJXZg==",
"_integrity": "sha512-Q8VMoyJrQ0tCiJxta0IDxJQ24N7zIDVLNct8uCnBwIkv62ew/RJ5/9/E2yADfBJamQ+nTlcwqWVpp5OmDAIuog==",
"_location": "/@syncfusion/ej2-navigations",

@@ -41,4 +41,4 @@ "_phantomChildren": {},

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-20.4.49.tgz",
"_shasum": "37c8a37b4c1c6c112ae6e12f2ccf4ee129538dbf",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-20.4.51.tgz",
"_shasum": "d49a33648a6e91d4683c4da0c4043d5ad6e2fc64",
"_spec": "@syncfusion/ej2-navigations@*",

@@ -57,5 +57,5 @@ "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",

"@syncfusion/ej2-data": "~20.4.48",
"@syncfusion/ej2-inputs": "~20.4.51",
"@syncfusion/ej2-inputs": "~20.4.52",
"@syncfusion/ej2-lists": "~20.4.50",
"@syncfusion/ej2-popups": "~20.4.51"
"@syncfusion/ej2-popups": "~20.4.52"
},

@@ -165,4 +165,4 @@ "deprecated": false,

"typings": "index.d.ts",
"version": "20.4.51",
"version": "20.4.52",
"sideEffects": false
}

@@ -88,2 +88,3 @@ import { Component, INotifyPropertyChanged, ChildProperty, EmitType, BaseEventArgs } from '@syncfusion/ej2-base';

private delegateClickHanlder;
private isPopupCreated;
/**

@@ -90,0 +91,0 @@ * Defines the Url based on which the Breadcrumb items are generated.

@@ -78,3 +78,5 @@ var __extends = (this && this.__extends) || (function () {

function Breadcrumb(options, element) {
return _super.call(this, options, element) || this;
var _this = _super.call(this, options, element) || this;
_this.isPopupCreated = false;
return _this;
}

@@ -520,3 +522,3 @@ /**

}
if (e.target.classList.contains(MENUCLASS)) {
if (e.target.classList.contains(MENUCLASS) && !this.isPopupCreated) {
this.renderPopup();

@@ -529,2 +531,3 @@ }

document.body.appendChild(wrapper);
this.isPopupCreated = true;
this.popupObj = new Popup(wrapper, {

@@ -547,2 +550,3 @@ content: this.popupUl,

this.popupObj.destroy();
this.isPopupCreated = false;
detach(this.popupObj.element);

@@ -549,0 +553,0 @@ }

@@ -539,2 +539,3 @@ import { Component, EmitType } from '@syncfusion/ej2-base';

private isRightClick;
private mouseDownStatus;
/**

@@ -1200,3 +1201,2 @@ * Indicates whether the TreeView allows drag and drop of nodes. To drag and drop a node in

private wireExpandOnEvent;
private mouseDownStatus;
private mouseDownHandler;

@@ -1203,0 +1203,0 @@ private preventContextMenu;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc