@syncfusion/ej2-react-navigations
Advanced tools
Comparing version 17.2.49 to 17.3.9-beta
@@ -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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
4450480
128271
2
+ Added@syncfusion/ej2-base@17.3.27(transitive)
+ Added@syncfusion/ej2-buttons@17.3.27(transitive)
+ Added@syncfusion/ej2-data@17.3.30(transitive)
+ Added@syncfusion/ej2-icons@17.3.27(transitive)
+ Added@syncfusion/ej2-inputs@17.3.29(transitive)
+ Added@syncfusion/ej2-lists@17.3.27(transitive)
+ Added@syncfusion/ej2-navigations@17.3.9-beta(transitive)
+ Added@syncfusion/ej2-popups@17.3.34(transitive)
+ Added@syncfusion/ej2-react-base@17.3.27(transitive)
+ Added@syncfusion/ej2-splitbuttons@17.3.27(transitive)
+ Addedreact@16.10.2(transitive)
+ Addedreact-dom@16.10.2(transitive)
+ Addedscheduler@0.16.2(transitive)
- Removed@syncfusion/ej2-base@17.2.49(transitive)
- Removed@syncfusion/ej2-buttons@17.2.47(transitive)
- Removed@syncfusion/ej2-data@17.2.47(transitive)
- Removed@syncfusion/ej2-icons@17.2.47(transitive)
- Removed@syncfusion/ej2-inputs@17.2.52(transitive)
- Removed@syncfusion/ej2-lists@17.2.47(transitive)
- Removed@syncfusion/ej2-navigations@17.2.49(transitive)
- Removed@syncfusion/ej2-popups@17.2.47(transitive)
- Removed@syncfusion/ej2-react-base@17.2.51(transitive)
- Removed@syncfusion/ej2-splitbuttons@17.2.47(transitive)
- Removedreact@16.9.0(transitive)
- Removedreact-dom@16.9.0(transitive)
- Removedscheduler@0.15.0(transitive)