New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@syncfusion/ej2-react-navigations

Package Overview
Dependencies
Maintainers
4
Versions
282
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-react-navigations - npm Package Compare versions

Comparing version 17.2.49 to 17.3.9-beta

34

CHANGELOG.md

@@ -5,16 +5,30 @@ # Changelog

### Menu
### Tab
#### New Features
- Provided template support for tab header.
### Accordion
#### New Features
- Provided item template support for accorion.
### TreeView
#### Bug Fixes
- Issue with modifying item in 'beforeOpen' event creates extra Item in Context Menu is fixed.
- #242926 - Now the drop indicator has been shown correctly while enabling the checkbox.
## 17.2.47 (2019-08-27)
## 17.2.49 (2019-09-04)
### Sidebar
### Menu
#### Bug Fixes
- Sidebar expand or collapse when scrolling in the landscape mode in chrome mobile browser is fixed.
- Issue with modifying item in 'beforeOpen' event creates extra Item in Context Menu is fixed.
## 17.2.48-beta (2019-08-28)
### Toolbar

@@ -40,3 +54,3 @@

## 17.2.39 (2019-07-30)
## 17.2.40 (2019-08-06)

@@ -47,11 +61,11 @@ ### TreeView

- #242589 - Issue with getting checked nodes value using `checkedNodes` property has been fixed.
- #242925 - Issue with checked and unchecked the checkbox using keyboard interaction even disable the checkbox has been fixed.
## 17.2.36 (2019-07-24)
## 17.2.39 (2019-07-30)
### Menu
### TreeView
#### Bug Fixes
- Issue with Submenu when the id contains special character.
- #242589 - Issue with getting checked nodes value using `checkedNodes` property has been fixed.

@@ -58,0 +72,0 @@ ## 17.2.34 (2019-07-11)

@@ -187,4 +187,12 @@ {

}
],
"templateProperties": [
"headerTemplate",
"itemTemplate"
],
"blazorTemplates":[
"headerTemplate",
"itemTemplate"
]
},
},
{

@@ -473,3 +481,3 @@ "baseClass": "Toolbar",

{
"propertyName": "actionSettings",
"propertyName": "collapse",
"baseClass": "ActionSettings",

@@ -483,3 +491,3 @@ "aspSelectorName": "e-treeview-collapse",

{
"propertyName": "actionSettings",
"propertyName": "expand",
"baseClass": "ActionSettings",

@@ -486,0 +494,0 @@ "aspSelectorName": "e-treeview-expand",

/*!
* filename: ej2-react-navigations.umd.min.js
* version : 17.2.49
* version : 17.3.9-beta
* Copyright Syncfusion Inc. 2001 - 2019. All rights reserved.

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

{
"_from": "@syncfusion/ej2-react-navigations@*",
"_id": "@syncfusion/ej2-react-navigations@17.2.47",
"_id": "@syncfusion/ej2-react-navigations@17.2.48",
"_inBundle": false,
"_integrity": "sha512-mWlTyjCfyw6/EQLecW0TzOGd7JD4PUrkUwOy+v9QOG1kC2ZRAXNbBESGYb9KgIgp6/hcA6TOuuZD1QuuB+foeg==",
"_integrity": "sha512-tUlt5pmIl2KcEL0glJyvt45hwQBYWWgyMDjTmQildRbk7qRXGJEsjmpzaBibjyWRrL6jm67VKTvzyMlTbFjamQ==",
"_location": "/@syncfusion/ej2-react-navigations",

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

],
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-react-navigations/-/ej2-react-navigations-17.2.47.tgz",
"_shasum": "27a744e799396e1716b1d9eb30509a96ec2293d4",
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-react-navigations/-/ej2-react-navigations-17.2.48.tgz",
"_shasum": "6c7e1d5392f1f7347118dbd880924bc149d50fa4",
"_spec": "@syncfusion/ej2-react-navigations@*",

@@ -35,5 +35,5 @@ "_where": "/jenkins/workspace/ation_hotfix_17.2.0.34_Vol2-DDPJ6C2YEWTWLLKKNA7AG2JBE6DYTCTNGMHGORWGAYAVCL6L7OLQ/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~17.2.49",
"@syncfusion/ej2-navigations": "17.2.49",
"@syncfusion/ej2-react-base": "~17.2.47"
"@syncfusion/ej2-base": "~17.3.9-beta",
"@syncfusion/ej2-navigations": "17.3.9-beta",
"@syncfusion/ej2-react-base": "~17.3.9-beta"
},

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

},
"version": "17.2.49",
"version": "17.3.9-beta",
"sideEffects": false
}
import * as React from 'react';
import { Accordion, AccordionModel } from '@syncfusion/ej2-navigations';
import { DefaultHtmlAttributes } from '@syncfusion/ej2-react-base';
export interface AccordionTypecast {
headerTemplate?: string | Function | any;
itemTemplate?: string | Function | any;
}
/**

@@ -13,3 +17,3 @@ * `AccordionComponent` represents the react Accordion Component.

children?: React.ReactNode | React.ReactNode[];
}> & Readonly<AccordionModel & DefaultHtmlAttributes>;
}> & Readonly<AccordionModel & DefaultHtmlAttributes | AccordionTypecast>;
setState: any;

@@ -25,3 +29,3 @@ private getDefaultAttributes;

children?: React.ReactNode | React.ReactNode[];
}> & Readonly<AccordionModel & DefaultHtmlAttributes>;
}> & Readonly<AccordionModel & DefaultHtmlAttributes | AccordionTypecast>;
forceUpdate: (callBack?: () => any) => void;

@@ -28,0 +32,0 @@ context: Object;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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