@syncfusion/ej2-filemanager
Advanced tools
Comparing version 18.1.52 to 18.1.53
@@ -5,2 +5,8 @@ # Changelog | ||
### File Manager | ||
#### Bug Fixes | ||
- Resolved the script error thrown from the File Manager component when resizing the window. | ||
## 18.1.46 (2020-04-28) | ||
@@ -7,0 +13,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 18.1.52 | ||
* version : 18.1.53 | ||
* 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-filemanager@*", | ||
"_id": "@syncfusion/ej2-filemanager@18.1.46", | ||
"_id": "@syncfusion/ej2-filemanager@18.1.52", | ||
"_inBundle": false, | ||
"_integrity": "sha512-Sf6MT/Gb+w3tP4bzxUsACKHn5UMnguocDA0T01DB9Z/pObqXuwp8EvCMxFlVT0fcth+iYUP9d1OAGNMY0hiakQ==", | ||
"_integrity": "sha512-fj+s7sVaCEsj+Si6rCx+2ZjZpcbqB/CdfFVNKxBYqPgi9FRwIS97bxc7iYKIXz9vKj75X/fpLLpZwHY+g8r7mw==", | ||
"_location": "/@syncfusion/ej2-filemanager", | ||
@@ -26,4 +26,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-filemanager/-/ej2-filemanager-18.1.46.tgz", | ||
"_shasum": "a77e6ee06148ceff14b721003d2abac33e50983c", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-filemanager/-/ej2-filemanager-18.1.52.tgz", | ||
"_shasum": "088b10d5acd0b9659efb72daf97782429464380f", | ||
"_spec": "@syncfusion/ej2-filemanager@*", | ||
@@ -39,11 +39,11 @@ "_where": "/jenkins/workspace/automation_release_18.1.0.1-52JLNOGRCDHXRVQM3W564VPLFCPHWUYDYU3I3DVRABSR7F6AIFYQ/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~18.1.52", | ||
"@syncfusion/ej2-base": "~18.1.53", | ||
"@syncfusion/ej2-buttons": "~18.1.52", | ||
"@syncfusion/ej2-data": "~18.1.52", | ||
"@syncfusion/ej2-grids": "~18.1.52", | ||
"@syncfusion/ej2-inputs": "~18.1.52", | ||
"@syncfusion/ej2-grids": "~18.1.53", | ||
"@syncfusion/ej2-inputs": "~18.1.53", | ||
"@syncfusion/ej2-layouts": "~18.1.52", | ||
"@syncfusion/ej2-lists": "~18.1.52", | ||
"@syncfusion/ej2-lists": "~18.1.53", | ||
"@syncfusion/ej2-navigations": "~18.1.52", | ||
"@syncfusion/ej2-popups": "~18.1.52", | ||
"@syncfusion/ej2-popups": "~18.1.53", | ||
"@syncfusion/ej2-splitbuttons": "~18.1.52", | ||
@@ -71,4 +71,4 @@ "selenium-webdriver": "^4.0.0-alpha.1" | ||
"typings": "index.d.ts", | ||
"version": "18.1.52", | ||
"version": "18.1.53", | ||
"sideEffects": false | ||
} |
@@ -314,4 +314,6 @@ var __extends = (this && this.__extends) || (function () { | ||
var toolBarHeight = toolbar ? toolbar.offsetHeight : 0; | ||
this.splitterObj.height = (this.element.clientHeight - toolBarHeight).toString(); | ||
this.splitterObj.dataBind(); | ||
if (this.splitterObj) { | ||
this.splitterObj.height = (this.element.clientHeight - toolBarHeight).toString(); | ||
this.splitterObj.dataBind(); | ||
} | ||
}; | ||
@@ -641,3 +643,3 @@ /* istanbul ignore next */ | ||
FileManager.prototype.wireEvents = function () { | ||
window.addEventListener('resize', this.resizeHandler.bind(this)); | ||
EventHandler.add(window, 'resize', this.resizeHandler, this); | ||
this.keyboardModule = new KeyboardEvents(this.element, { | ||
@@ -650,2 +652,3 @@ keyAction: this.keyActionHandler.bind(this), | ||
FileManager.prototype.unWireEvents = function () { | ||
EventHandler.remove(window, 'resize', this.resizeHandler); | ||
this.keyboardModule.destroy(); | ||
@@ -652,0 +655,0 @@ }; |
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
8722060
69526