@syncfusion/ej2-navigations
Advanced tools
Comparing version 16.1.40 to 16.1.42
@@ -1,5 +0,11 @@ | ||
# Changelog | ||
# Changelog | ||
## [Unreleased] | ||
### Accordion | ||
#### Bug Fixes | ||
- Issue with space key in text area, when placed inside Accordion is fixed. | ||
### Tab | ||
@@ -9,2 +15,10 @@ | ||
- Breaking issue with tab content template id is fixed. | ||
## 16.1.40 (2018-05-08) | ||
### Tab | ||
#### Bug Fixes | ||
- Issue with event unbinding in tab content is fixed. | ||
@@ -11,0 +25,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 16.1.40 | ||
* version : 16.1.42 | ||
* Copyright Syncfusion Inc. 2001 - 2018. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"name": "@syncfusion/ej2-navigations", | ||
"version": "16.1.40", | ||
"version": "16.1.42", | ||
"description": "Essential JS 2 Navigation Components", | ||
@@ -12,6 +12,6 @@ "author": "Syncfusion Inc.", | ||
"@syncfusion/ej2-base": "~16.1.38", | ||
"@syncfusion/ej2-data": "~16.1.39", | ||
"@syncfusion/ej2-data": "~16.1.42", | ||
"@syncfusion/ej2-buttons": "~16.1.37", | ||
"@syncfusion/ej2-popups": "~16.1.37", | ||
"@syncfusion/ej2-lists": "~16.1.38", | ||
"@syncfusion/ej2-popups": "~16.1.42", | ||
"@syncfusion/ej2-lists": "~16.1.42", | ||
"@syncfusion/ej2-inputs": "~16.1.40" | ||
@@ -18,0 +18,0 @@ }, |
@@ -389,3 +389,3 @@ var __extends = (this && this.__extends) || (function () { | ||
var trgt = e.target; | ||
if (trgt.tagName === 'INPUT') { | ||
if (trgt.tagName === 'INPUT' || trgt.tagName === 'TEXTAREA') { | ||
return; | ||
@@ -392,0 +392,0 @@ } |
@@ -415,2 +415,5 @@ var __extends = (this && this.__extends) || (function () { | ||
ej2_base_4.setStyleAttribute(oldCnt, { 'display': '', 'position': '' }); | ||
if (oldCnt.childElementCount === 0) { | ||
ej2_base_1.detach(oldCnt); | ||
} | ||
}; | ||
@@ -552,3 +555,5 @@ new ej2_base_5.Animation(animateObj).animate(oldCnt); | ||
if (!ej2_base_4.isNullOrUndefined(eleStr)) { | ||
this.templateEle.push(cnt.toString()); | ||
if (this.templateEle.indexOf(cnt.toString()) === -1) { | ||
this.templateEle.push(cnt.toString()); | ||
} | ||
} | ||
@@ -1145,2 +1150,6 @@ }; | ||
this.setItems(newProp.items); | ||
if (this.templateEle.length > 0) { | ||
this.expTemplateContent(); | ||
} | ||
this.templateEle = []; | ||
ej2_base_2.select('.' + CLS_TAB + ' > .' + CLS_CONTENT, this.element).innerHTML = ''; | ||
@@ -1147,0 +1156,0 @@ this.select(this.selectedItem); |
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17260900
163121