@syncfusion/ej2-filemanager
Advanced tools
Comparing version 20.2.38 to 20.2.39
@@ -5,2 +5,14 @@ # Changelog | ||
### File Manager | ||
#### Bug Fixes | ||
- `#I385707` - The issue with "Facing error while copying and pasting a folder within another folder in the MVC File Manager component" has been resolved. | ||
### File Manager | ||
#### Bug Fixes | ||
- `#F175723` - The issue with "The File Manager incorrectly shows Type of the selected items when an unidentified file type is selected" has been resolved. | ||
## 19.2.56 (2021-08-17) | ||
@@ -7,0 +19,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 20.2.38 | ||
* version : 20.2.39 | ||
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved. | ||
@@ -10,11 +10,2 @@ * Use of this code is subject to the terms of our license. | ||
*/ | ||
/*! | ||
* filename: index.d.ts | ||
* version : 20.2.36 | ||
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved. | ||
* Use of this code is subject to the terms of our license. | ||
* A copy of the current license can be obtained at any time by e-mailing | ||
* licensing@syncfusion.com. Any infringement will be prosecuted under | ||
* applicable laws. | ||
*/ | ||
import * as _filemanager from '@syncfusion/ej2-filemanager'; | ||
@@ -21,0 +12,0 @@ |
{ | ||
"_from": "@syncfusion/ej2-filemanager@*", | ||
"_id": "@syncfusion/ej2-filemanager@20.2.36", | ||
"_id": "@syncfusion/ej2-filemanager@20.2.38", | ||
"_inBundle": false, | ||
"_integrity": "sha512-Ytb2BhtKODenoUGifblRVBGO1PAqZhBvC1UQy/mrTa+EafLZs7PAmuDABzW53mhi1nTYpGC+lh+n77zFojBLZw==", | ||
"_integrity": "sha512-XKJgkInkwZdMy+eCT3vEXDjqwC8S7on/WO+F00P58XoUgzt7pdqNAzGByLWbybVS80FYSmg9FdXqGSJLqUYceg==", | ||
"_location": "/@syncfusion/ej2-filemanager", | ||
@@ -28,4 +28,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-20.2.36.tgz", | ||
"_shasum": "068029b89968763f383a85c2892fb58afdce0282", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-20.2.38.tgz", | ||
"_shasum": "f5819f8e2f08c9aff1edb59f408d005a96f6b3b5", | ||
"_spec": "@syncfusion/ej2-filemanager@*", | ||
@@ -44,8 +44,8 @@ "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included", | ||
"@syncfusion/ej2-data": "~20.2.38", | ||
"@syncfusion/ej2-grids": "~20.2.38", | ||
"@syncfusion/ej2-grids": "~20.2.39", | ||
"@syncfusion/ej2-inputs": "~20.2.38", | ||
"@syncfusion/ej2-layouts": "~20.2.38", | ||
"@syncfusion/ej2-lists": "~20.2.38", | ||
"@syncfusion/ej2-navigations": "~20.2.38", | ||
"@syncfusion/ej2-popups": "~20.2.38", | ||
"@syncfusion/ej2-layouts": "~20.2.39", | ||
"@syncfusion/ej2-lists": "~20.2.39", | ||
"@syncfusion/ej2-navigations": "~20.2.39", | ||
"@syncfusion/ej2-popups": "~20.2.39", | ||
"@syncfusion/ej2-splitbuttons": "~20.2.38" | ||
@@ -71,5 +71,5 @@ }, | ||
}, | ||
"sideEffects": false, | ||
"typings": "index.d.ts", | ||
"version": "20.2.38" | ||
"version": "20.2.39", | ||
"sideEffects": false | ||
} |
@@ -305,3 +305,3 @@ import { TreeView as BaseTreeView } from '@syncfusion/ej2-navigations'; | ||
var sNode = select('[data-uid="' + this.treeObj.selectedNodes[0] + '"]', this.treeObj.element); | ||
var ul = select('.' + CLS.LIST_PARENT, sNode); | ||
var ul = (!isNOU(sNode)) ? select('.' + CLS.LIST_PARENT, sNode) : null; | ||
if (isNOU(ul)) { | ||
@@ -308,0 +308,0 @@ this.addChild(args.files, this.treeObj.selectedNodes[0], !this.expandTree); |
@@ -656,7 +656,14 @@ import { Dialog } from '@syncfusion/ej2-popups'; | ||
case 'MultipleFileDetails': | ||
var index_1; | ||
options.dialogName = 'File Details'; | ||
strArr = details.name.split(',').map(function (val) { | ||
var index = val.indexOf('.') + 1; | ||
return (index === 0) ? 'Folder' : val.substr(index).replace(' ', ''); | ||
strArr = parent.itemData.map(function (val) { | ||
index_1 = val.name.indexOf('.') + 1; | ||
return (index_1 === 0 && (!val.isFile)) ? 'Folder' : ((index_1 !== 0) ? val.name.substr(index_1).replace(' ', '') : 'undetermined'); | ||
}); | ||
if (strArr[0] == undefined) { | ||
strArr = details.name.split(',').map(function (val) { | ||
index_1 = val.indexOf('.') + 1; | ||
return (index_1 === 0) ? 'Folder' : val.substr(index_1).replace(' ', ''); | ||
}); | ||
} | ||
fileType = strArr.every(function (val, i, arr) { return val === arr[0]; }) ? | ||
@@ -663,0 +670,0 @@ ((strArr[0] === 'Folder') ? 'Folder' : strArr[0].toLocaleUpperCase() + ' Type') : 'Multiple Types'; |
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 not supported yet
Sorry, the diff of this file is not supported yet
10722407
96006