Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@syncfusion/ej2-filemanager

Package Overview
Dependencies
Maintainers
3
Versions
160
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-filemanager - npm Package Compare versions

Comparing version 23.1.43 to 23.2.4

15

CHANGELOG.md

@@ -9,3 +9,18 @@ # Changelog

- `#I519501` - The Details dialog having incorrect values while opening it using the navigation pane in the File Manager component has been resolved.
### FileManager
#### Bug Fixes
- `#I506576` - The issue with the incorrect drag and drop operation in the `Details` view, with ID-based files in the File Manager component has been resolved.
## 23.1.43 (2023-10-31)
### FileManager
#### Bug Fixes
- `#I503129` - The issue with the `Details` view header alignment in the File Manager component has been resolved.
- `#I506586` - The issue with the sequential server-side API requests when opening searched folder in the File Manager component has been resolved.

@@ -12,0 +27,0 @@ ## 23.1.40 (2023-10-10)

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 23.1.43
* version : 23.2.4
* Copyright Syncfusion Inc. 2001 - 2023. 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@23.1.40",
"_id": "@syncfusion/ej2-filemanager@23.1.43",
"_inBundle": false,
"_integrity": "sha512-osm5GAz6wW1NHuHebPTRex6IewzDUskrE+6o/r8lJHQX4F52YS3P5LxdlRB8k8ZgX5Ew51ynsWP7BRQ8rAMiqg==",
"_integrity": "sha512-uUyWbu4kTZX3x2YekS0IeH0wkyrQwSu9f4eRYUMikQlxmN05tAwMwhdxfZySS2tUGxE6sd4ZXEiCrnq24CgAuA==",
"_location": "/@syncfusion/ej2-filemanager",

@@ -23,3 +23,2 @@ "_phantomChildren": {},

"/@syncfusion/ej2-angular-filemanager",
"/@syncfusion/ej2-pdfviewer",
"/@syncfusion/ej2-react-filemanager",

@@ -29,4 +28,4 @@ "/@syncfusion/ej2-richtexteditor",

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-23.1.40.tgz",
"_shasum": "44b41cb5cc183e5cd86ecc8db8aa7b8cf3406ad3",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-23.1.43.tgz",
"_shasum": "8a68a4871a1acd191fcee093920e5ec943f641ca",
"_spec": "@syncfusion/ej2-filemanager@*",

@@ -42,12 +41,12 @@ "_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~23.1.41",
"@syncfusion/ej2-buttons": "~23.1.43",
"@syncfusion/ej2-data": "~23.1.43",
"@syncfusion/ej2-grids": "~23.1.43",
"@syncfusion/ej2-inputs": "~23.1.43",
"@syncfusion/ej2-layouts": "~23.1.36",
"@syncfusion/ej2-lists": "~23.1.43",
"@syncfusion/ej2-navigations": "~23.1.43",
"@syncfusion/ej2-popups": "~23.1.43",
"@syncfusion/ej2-splitbuttons": "~23.1.43"
"@syncfusion/ej2-base": "~23.2.4",
"@syncfusion/ej2-buttons": "~23.2.4",
"@syncfusion/ej2-data": "~23.2.4",
"@syncfusion/ej2-grids": "~23.2.4",
"@syncfusion/ej2-inputs": "~23.2.4",
"@syncfusion/ej2-layouts": "~23.2.4",
"@syncfusion/ej2-lists": "~23.2.4",
"@syncfusion/ej2-navigations": "~23.2.4",
"@syncfusion/ej2-popups": "~23.2.4",
"@syncfusion/ej2-splitbuttons": "~23.2.4"
},

@@ -82,4 +81,4 @@ "deprecated": false,

"typings": "index.d.ts",
"version": "23.1.43",
"version": "23.2.4",
"sideEffects": false
}
import * as CLS from '../base/classes';
import * as events from '../base/constant';
import { read, paste, Search, filter, Download, Delete } from '../common/operations';
import { getValue, setValue, isNullOrUndefined as isNOU, matches, select, createElement } from '@syncfusion/ej2-base';
import { getValue, setValue, isNullOrUndefined as isNOU, matches, select, createElement, isNullOrUndefined } from '@syncfusion/ej2-base';
import { closest, detach } from '@syncfusion/ej2-base';

@@ -798,4 +798,23 @@ import { DataManager, Query } from '@syncfusion/ej2-data';

export function openSearchFolder(parent, data) {
parent.notify(events.clearPathInit, { selectedNode: parent.pathId[parent.pathId.length - 1] });
parent.originalPath = getFullPath(parent, data, parent.path);
var root = getValue(parent.pathId[0], parent.feParent);
var isRoot = getValue('_fm_id', parent.itemData[0]) == 'fe_tree';
var key = isNOU(getValue('id', root)) ? 'name' : 'id';
var searchData = getObject(parent, key, getValue('name', data));
if (isNullOrUndefined(searchData)) {
if (!isRoot) {
parent.notify(events.clearPathInit, { selectedNode: parent.pathId[parent.pathId.length - 1] });
}
else {
setNextPath(parent, parent.path);
return;
}
}
else {
var id = getValue('_fm_id', searchData);
parent.setProperties({ path: parent.originalPath }, true);
parent.pathId.push(id);
parent.itemData = [searchData];
parent.pathNames.push(getValue('name', searchData));
}
read(parent, (parent.path !== parent.originalPath) ? events.initialEnd : events.finalizeEnd, parent.path);

@@ -802,0 +821,0 @@ }

@@ -306,2 +306,3 @@ import { TreeView as BaseTreeView } from '@syncfusion/ej2-navigations';

this.parent.itemData = this.getTreeData(getValue('id', args.nodeData));
this.parent.pathId.push(getValue('id', args.nodeData));
read(this.parent, events.nodeExpand, path);

@@ -308,0 +309,0 @@ this.isNodeExpandCalled = true;

@@ -411,2 +411,3 @@ import { ContextMenu as Menu } from '@syncfusion/ej2-navigations';

sItems = [];
_this.parent.navigationpaneModule.openFileOnContextMenuClick(closest(_this.targetNodeElement, 'li'));
}

@@ -413,0 +414,0 @@ GetDetails(_this.parent, sItems, _this.parent.path, 'details');

Sorry, the diff of this file is too big to display

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 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

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