@syncfusion/ej2-filemanager
Advanced tools
Comparing version 20.1.52-10460 to 20.1.52-10461
@@ -5,2 +5,4 @@ # Changelog | ||
## 20.1.52 (2022-05-04) | ||
### File Manager | ||
@@ -7,0 +9,0 @@ |
@@ -1,10 +0,1 @@ | ||
/*! | ||
* filename: index.d.ts | ||
* version : 20.1.52 | ||
* 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'; | ||
@@ -11,0 +2,0 @@ |
@@ -1,167 +0,184 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const e2e_1 = require("@syncfusion/ej2-base/helpers/e2e"); | ||
/** | ||
* E2E test helpers for FileManager to easily interact and the test the component | ||
*/ | ||
class FileManagerHelpers extends e2e_1.TestHelper { | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = function (d, b) { | ||
extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
}; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) { | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/** | ||
* Initialize the FileManager E2E helpers | ||
* @param id Element id of the FileManager element | ||
* @param wrapperFn Pass the wrapper function | ||
* E2E test helpers for FileManager to easily interact and the test the component | ||
*/ | ||
constructor(id, wrapperFn) { | ||
super(); | ||
this.id = id; | ||
if (wrapperFn !== undefined) { | ||
this.wrapperFn = wrapperFn; | ||
var FileManagerHelpers = /** @class */ (function (_super) { | ||
__extends(FileManagerHelpers, _super); | ||
/** | ||
* Initialize the FileManager E2E helpers | ||
* @param id Element id of the FileManager element | ||
* @param wrapperFn Pass the wrapper function | ||
*/ | ||
function FileManagerHelpers(id, wrapperFn) { | ||
var _this = _super.call(this) || this; | ||
_this.id = id; | ||
if (wrapperFn !== undefined) { | ||
_this.wrapperFn = wrapperFn; | ||
} | ||
return _this; | ||
} | ||
return this; | ||
} | ||
selector(arg) { | ||
return (this.wrapperFn ? this.wrapperFn(arg) : arg); | ||
} | ||
/** | ||
* Returns the root element of the FileManager component. | ||
*/ | ||
getElement() { | ||
return this.selector('#' + this.id); | ||
} | ||
/** | ||
* Returns the toolbar items from the FileManager component. | ||
*/ | ||
getToolbarItems() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item'); | ||
} | ||
/** | ||
* Returns the active toolbar item element from the FileManager component. | ||
*/ | ||
getToolbarItemsActive() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-active'); | ||
} | ||
getTreeviewItems() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item'); | ||
} | ||
/** | ||
* Returns the collapsed treeview node element from the FileManager component. | ||
*/ | ||
getTreeviewCollapsedItems() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-node-collapsed'); | ||
} | ||
/** | ||
* Returns the collapsed icon of treeview node element from the FileManager component. | ||
*/ | ||
getTreeviewCollapsedIcon() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-icons.e-icon-collapsible'); | ||
} | ||
/** | ||
* Returns the expanded icon of treeview node element from the FileManager component. | ||
*/ | ||
getTreeviewExpandedIcon() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-icons.e-icon-expandable'); | ||
} | ||
/** | ||
* Returns the active treeview node element from the FileManager component. | ||
*/ | ||
getTreeviewActiveItems() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-active'); | ||
} | ||
/** | ||
* Returns the treeview items folder icon from the FileManager component. | ||
*/ | ||
getTreeviewItemsFolderIcon() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-list-icon.e-fe-folder'); | ||
} | ||
/** | ||
* Returns the treeview items text from the FileManager component. | ||
*/ | ||
getTreeviewItemsText() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-list-text'); | ||
} | ||
/** | ||
* Returns the largeIcon element from the FileManager component. | ||
*/ | ||
getlargeIconsItems() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-large-icons .e-list-parent.e-ul .e-list-item"'); | ||
} | ||
/** | ||
* Returns the active list element in largeIcon view from the FileManager component. | ||
*/ | ||
getlargeIconsActiveItems() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-large-icons .e-list-parent.e-ul .e-list-item.e-active'); | ||
} | ||
/** | ||
* Returns the checked element in largeIcon view from the FileManager component. | ||
*/ | ||
getlargeIconsCheckedItems() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-large-icons .e-list-parent.e-ul .e-list-item .e-checkbox-wrapper .e-check'); | ||
} | ||
/** | ||
* Returns the grid element from the FileManager component. | ||
*/ | ||
getGridElement() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid'); | ||
} | ||
/** | ||
* Returns the active element in grid view from the FileManager component. | ||
*/ | ||
getGridActiveElements() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid .e-gridcontent .e-table .e-row .e-rowcell.e-active'); | ||
} | ||
/** | ||
* Returns the checked element in grid view from the FileManager component. | ||
*/ | ||
getGridCheckedElements() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid .e-gridcontent .e-table .e-row .e-rowcell .e-checkbox-wrapper .e-check'); | ||
} | ||
/** | ||
* Returns the dialog element from the FileManager component. | ||
*/ | ||
getDialogElement() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-dialog.e-popup.e-popup-open'); | ||
} | ||
/** | ||
* Returns the breadcrumbBar element from the FileManager component. | ||
*/ | ||
getBreadCrumbBarElement() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-address .e-addressbar-ul .e-address-list-item'); | ||
} | ||
/** | ||
* Returns the splitter element from the FileManager component. | ||
*/ | ||
getSplitterElement() { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter.e-splitter-horizontal'); | ||
} | ||
/** | ||
* Returns the contextmenu element from the FileManager component. | ||
*/ | ||
getContextMenuElement() { | ||
return this.selector('.e-fe-popup .e-contextmenu'); | ||
} | ||
/** | ||
* Returns the sortby popup element from the FileManager component. | ||
*/ | ||
getSortByPopupElement() { | ||
return this.selector('.e-dropdown-popup.e-fe-popup.e-popup-open'); | ||
} | ||
setModel(property, value) { | ||
let cy; | ||
return cy.get('#' + this.id).then((ele) => { | ||
return ele[0].ej2_instances[0][property] = value; | ||
}); | ||
} | ||
getModel(property) { | ||
let cy; | ||
return cy.get('#' + this.id).then((ele) => { | ||
return ele[0].ej2_instances[0][property]; | ||
}); | ||
} | ||
invoke(fName, args = []) { | ||
let cy; | ||
return cy.get('#' + this.id).then((ele) => { | ||
var inst = ele[0].ej2_instances[0]; | ||
return inst[fName].apply(inst, args); | ||
}); | ||
} | ||
} | ||
exports.FileManagerHelpers = FileManagerHelpers; | ||
FileManagerHelpers.prototype.selector = function (arg) { | ||
return (this.wrapperFn ? this.wrapperFn(arg) : arg); | ||
}; | ||
/** | ||
* Returns the root element of the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getElement = function () { | ||
return this.selector('#' + this.id); | ||
}; | ||
/** | ||
* Returns the toolbar items from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getToolbarItems = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item'); | ||
}; | ||
/** | ||
* Returns the active toolbar item element from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getToolbarItemsActive = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-active'); | ||
}; | ||
FileManagerHelpers.prototype.getTreeviewItems = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item'); | ||
}; | ||
/** | ||
* Returns the collapsed treeview node element from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getTreeviewCollapsedItems = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-node-collapsed'); | ||
}; | ||
/** | ||
* Returns the collapsed icon of treeview node element from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getTreeviewCollapsedIcon = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-icons.e-icon-collapsible'); | ||
}; | ||
/** | ||
* Returns the expanded icon of treeview node element from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getTreeviewExpandedIcon = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-icons.e-icon-expandable'); | ||
}; | ||
/** | ||
* Returns the active treeview node element from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getTreeviewActiveItems = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-active'); | ||
}; | ||
/** | ||
* Returns the treeview items folder icon from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getTreeviewItemsFolderIcon = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-list-icon.e-fe-folder'); | ||
}; | ||
/** | ||
* Returns the treeview items text from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getTreeviewItemsText = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-list-text'); | ||
}; | ||
/** | ||
* Returns the largeIcon element from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getlargeIconsItems = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-large-icons .e-list-parent.e-ul .e-list-item"'); | ||
}; | ||
/** | ||
* Returns the active list element in largeIcon view from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getlargeIconsActiveItems = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-large-icons .e-list-parent.e-ul .e-list-item.e-active'); | ||
}; | ||
/** | ||
* Returns the checked element in largeIcon view from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getlargeIconsCheckedItems = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-large-icons .e-list-parent.e-ul .e-list-item .e-checkbox-wrapper .e-check'); | ||
}; | ||
/** | ||
* Returns the grid element from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getGridElement = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid'); | ||
}; | ||
/** | ||
* Returns the active element in grid view from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getGridActiveElements = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid .e-gridcontent .e-table .e-row .e-rowcell.e-active'); | ||
}; | ||
/** | ||
* Returns the checked element in grid view from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getGridCheckedElements = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid .e-gridcontent .e-table .e-row .e-rowcell .e-checkbox-wrapper .e-check'); | ||
}; | ||
/** | ||
* Returns the dialog element from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getDialogElement = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-dialog.e-popup.e-popup-open'); | ||
}; | ||
/** | ||
* Returns the breadcrumbBar element from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getBreadCrumbBarElement = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-address .e-addressbar-ul .e-address-list-item'); | ||
}; | ||
/** | ||
* Returns the splitter element from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getSplitterElement = function () { | ||
return this.selector('#' + this.id + '.e-filemanager .e-splitter.e-splitter-horizontal'); | ||
}; | ||
/** | ||
* Returns the contextmenu element from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getContextMenuElement = function () { | ||
return this.selector('.e-fe-popup .e-contextmenu'); | ||
}; | ||
/** | ||
* Returns the sortby popup element from the FileManager component. | ||
*/ | ||
FileManagerHelpers.prototype.getSortByPopupElement = function () { | ||
return this.selector('.e-dropdown-popup.e-fe-popup.e-popup-open'); | ||
}; | ||
FileManagerHelpers.prototype.setModel = function (property, value) { | ||
var cy; | ||
return cy.get('#' + this.id).then(function (ele) { | ||
return ele[0].ej2_instances[0][property] = value; | ||
}); | ||
}; | ||
FileManagerHelpers.prototype.getModel = function (property) { | ||
var cy; | ||
return cy.get('#' + this.id).then(function (ele) { | ||
return ele[0].ej2_instances[0][property]; | ||
}); | ||
}; | ||
FileManagerHelpers.prototype.invoke = function (fName, args) { | ||
if (args === void 0) { args = []; } | ||
var cy; | ||
return cy.get('#' + this.id).then(function (ele) { | ||
var inst = ele[0].ej2_instances[0]; | ||
return inst[fName].apply(inst, args); | ||
}); | ||
}; | ||
return FileManagerHelpers; | ||
}(e2e_1.TestHelper)); | ||
exports.FileManagerHelpers = FileManagerHelpers; | ||
}); |
140
package.json
{ | ||
"_from": "@syncfusion/ej2-filemanager@*", | ||
"_id": "@syncfusion/ej2-filemanager@20.1.47", | ||
"_inBundle": false, | ||
"_integrity": "sha512-X2ntzEAEsLkMwTr5MxCZGed0nFIN1Booq2Qmz6ABLlp0gQhLGO1v4ZQar0RiRjVHY0ViLasSRyCL7A3VOkvjkQ==", | ||
"_location": "/@syncfusion/ej2-filemanager", | ||
"_phantomChildren": {}, | ||
"_requested": { | ||
"type": "range", | ||
"registry": true, | ||
"raw": "@syncfusion/ej2-filemanager@*", | ||
"_from": "@syncfusion/ej2-filemanager@*", | ||
"_id": "@syncfusion/ej2-filemanager@20.1.47", | ||
"_inBundle": false, | ||
"_integrity": "sha512-X2ntzEAEsLkMwTr5MxCZGed0nFIN1Booq2Qmz6ABLlp0gQhLGO1v4ZQar0RiRjVHY0ViLasSRyCL7A3VOkvjkQ==", | ||
"_location": "/@syncfusion/ej2-filemanager", | ||
"_phantomChildren": {}, | ||
"_requested": { | ||
"type": "range", | ||
"registry": true, | ||
"raw": "@syncfusion/ej2-filemanager@*", | ||
"name": "@syncfusion/ej2-filemanager", | ||
"escapedName": "@syncfusion%2fej2-filemanager", | ||
"scope": "@syncfusion", | ||
"rawSpec": "*", | ||
"saveSpec": null, | ||
"fetchSpec": "*" | ||
}, | ||
"_requiredBy": [ | ||
"/", | ||
"/@syncfusion/ej2", | ||
"/@syncfusion/ej2-angular-filemanager", | ||
"/@syncfusion/ej2-pdfviewer", | ||
"/@syncfusion/ej2-react-filemanager", | ||
"/@syncfusion/ej2-richtexteditor", | ||
"/@syncfusion/ej2-vue-filemanager" | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-20.1.47.tgz", | ||
"_shasum": "b533db437939ff1a76e373430a820cff89b68c87", | ||
"_spec": "@syncfusion/ej2-filemanager@*", | ||
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included", | ||
"author": { | ||
"name": "Syncfusion Inc." | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/syncfusion/ej2-javascript-ui-controls/issues" | ||
}, | ||
"bundleDependencies": false, | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~20.1.50", | ||
"@syncfusion/ej2-buttons": "~20.1.52", | ||
"@syncfusion/ej2-data": "~20.1.47", | ||
"@syncfusion/ej2-grids": "~20.1.52", | ||
"@syncfusion/ej2-inputs": "~20.1.48", | ||
"@syncfusion/ej2-layouts": "~20.1.47", | ||
"@syncfusion/ej2-lists": "~20.1.47", | ||
"@syncfusion/ej2-navigations": "20.1.51-10460", | ||
"@syncfusion/ej2-popups": "~20.1.47", | ||
"@syncfusion/ej2-splitbuttons": "~20.1.47" | ||
}, | ||
"deprecated": false, | ||
"description": "Essential JS 2 FileManager Component", | ||
"devDependencies": {}, | ||
"es2015": "./dist/es6/ej2-filemanager.es2015.js", | ||
"homepage": "https://github.com/syncfusion/ej2-javascript-ui-controls#readme", | ||
"keywords": [ | ||
"ej2", | ||
"syncfusion", | ||
"ej2-filemanager" | ||
], | ||
"license": "SEE LICENSE IN license", | ||
"main": "./dist/ej2-filemanager.umd.min.js", | ||
"module": "./index.js", | ||
"name": "@syncfusion/ej2-filemanager", | ||
"escapedName": "@syncfusion%2fej2-filemanager", | ||
"scope": "@syncfusion", | ||
"rawSpec": "*", | ||
"saveSpec": null, | ||
"fetchSpec": "*" | ||
}, | ||
"_requiredBy": [ | ||
"/", | ||
"/@syncfusion/ej2", | ||
"/@syncfusion/ej2-angular-filemanager", | ||
"/@syncfusion/ej2-pdfviewer", | ||
"/@syncfusion/ej2-react-filemanager", | ||
"/@syncfusion/ej2-richtexteditor", | ||
"/@syncfusion/ej2-vue-filemanager" | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-20.1.47.tgz", | ||
"_shasum": "b533db437939ff1a76e373430a820cff89b68c87", | ||
"_spec": "@syncfusion/ej2-filemanager@*", | ||
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included", | ||
"author": { | ||
"name": "Syncfusion Inc." | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/syncfusion/ej2-javascript-ui-controls/issues" | ||
}, | ||
"bundleDependencies": false, | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~20.1.50", | ||
"@syncfusion/ej2-buttons": "~20.1.52", | ||
"@syncfusion/ej2-data": "~20.1.47", | ||
"@syncfusion/ej2-grids": "~20.1.52", | ||
"@syncfusion/ej2-inputs": "~20.1.48", | ||
"@syncfusion/ej2-layouts": "~20.1.47", | ||
"@syncfusion/ej2-lists": "~20.1.47", | ||
"@syncfusion/ej2-navigations": "20.1.51-10460", | ||
"@syncfusion/ej2-popups": "~20.1.47", | ||
"@syncfusion/ej2-splitbuttons": "~20.1.47" | ||
}, | ||
"deprecated": false, | ||
"description": "Essential JS 2 FileManager Component", | ||
"devDependencies": {}, | ||
"es2015": "./dist/es6/ej2-filemanager.es2015.js", | ||
"homepage": "https://github.com/syncfusion/ej2-javascript-ui-controls#readme", | ||
"keywords": [ | ||
"ej2", | ||
"syncfusion", | ||
"ej2-filemanager" | ||
], | ||
"license": "SEE LICENSE IN license", | ||
"main": "./dist/ej2-filemanager.umd.min.js", | ||
"module": "./index.js", | ||
"name": "@syncfusion/ej2-filemanager", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git" | ||
}, | ||
"typings": "index.d.ts", | ||
"version": "20.1.52-10460", | ||
"sideEffects": false | ||
} | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git" | ||
}, | ||
"typings": "index.d.ts", | ||
"version": "20.1.52-10461", | ||
"sideEffects": false | ||
} |
@@ -69,2 +69,2 @@ # ej2-filemanager | ||
© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution. | ||
© Copyright 2019 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution. |
@@ -1,2 +0,2 @@ | ||
import { Component, EmitType, ModuleDeclaration, isNullOrUndefined, L10n, closest } from '@syncfusion/ej2-base';import { Property, INotifyPropertyChanged, NotifyPropertyChanges, Complex, select } from '@syncfusion/ej2-base';import { createElement, addClass, removeClass, setStyleAttribute as setAttr, getUniqueID } from '@syncfusion/ej2-base';import { isNullOrUndefined as isNOU, formatUnit, Browser, KeyboardEvents, KeyboardEventArgs } from '@syncfusion/ej2-base';import { Event, EventHandler, getValue, setValue } from '@syncfusion/ej2-base';import { Splitter, PanePropertiesModel } from '@syncfusion/ej2-layouts';import { Dialog, createSpinner, hideSpinner, showSpinner, BeforeOpenEventArgs, BeforeCloseEventArgs } from '@syncfusion/ej2-popups';import { createDialog, createExtDialog } from '../pop-up/dialog';import { ToolbarSettings, ToolbarSettingsModel, AjaxSettings, NavigationPaneSettings, DetailsViewSettings } from '../models/index';import { NavigationPaneSettingsModel, DetailsViewSettingsModel } from '../models/index';import { AjaxSettingsModel, SearchSettings, SearchSettingsModel } from '../models/index';import { Toolbar } from '../actions/toolbar';import { DetailsView } from '../layout/details-view';import { LargeIconsView } from '../layout/large-icons-view';import { Uploader, UploadingEventArgs, SelectedEventArgs, FileInfo, CancelEventArgs } from '@syncfusion/ej2-inputs';import { UploadSettingsModel } from '../models/upload-settings-model';import { UploadSettings } from '../models/upload-settings';import * as events from './constant';import * as CLS from './classes';import { read, filter, createFolder } from '../common/operations';import { ITreeView, IContextMenu, ViewType, SortOrder, FileDragEventArgs, RetryArgs, ReadArgs, FileSelectionEventArgs } from './interface';import { BeforeSendEventArgs, SuccessEventArgs, FailureEventArgs, FileLoadEventArgs } from './interface';import { FileOpenEventArgs, FileSelectEventArgs, MenuClickEventArgs, MenuOpenEventArgs } from './interface';import { ToolbarClickEventArgs, ToolbarCreateEventArgs, UploadListCreateArgs } from './interface';import { PopupOpenCloseEventArgs, BeforePopupOpenCloseEventArgs, BeforeDownloadEventArgs, BeforeImageLoadEventArgs } from './interface';import { refresh, getPathObject, getLocaleText, setNextPath, createDeniedDialog, getCssClass } from '../common/utility';import { hasContentAccess, hasUploadAccess, updateLayout, createNewFolder, uploadItem } from '../common/utility';import { TreeView as BaseTreeView } from '@syncfusion/ej2-navigations';import { ContextMenuSettingsModel } from '../models/contextMenu-settings-model';import { ContextMenuSettings } from '../models/contextMenu-settings';import { BreadCrumbBar } from '../actions/breadcrumb-bar';import { ContextMenu } from '../pop-up/context-menu';import { defaultLocale } from '../models/default-locale';import { PositionModel } from '@syncfusion/ej2-base/src/draggable-model'; | ||
import { Component, EmitType, ModuleDeclaration, isNullOrUndefined, L10n, closest } from '@syncfusion/ej2-base'; import { Property, INotifyPropertyChanged, NotifyPropertyChanges, Complex, select } from '@syncfusion/ej2-base'; import { createElement, addClass, removeClass, setStyleAttribute as setAttr, getUniqueID } from '@syncfusion/ej2-base'; import { isNullOrUndefined as isNOU, formatUnit, Browser, KeyboardEvents, KeyboardEventArgs } from '@syncfusion/ej2-base'; import { Event, EventHandler, getValue, setValue } from '@syncfusion/ej2-base'; import { Splitter, PanePropertiesModel } from '@syncfusion/ej2-layouts'; import { Dialog, createSpinner, hideSpinner, showSpinner, BeforeOpenEventArgs, BeforeCloseEventArgs } from '@syncfusion/ej2-popups'; import { createDialog, createExtDialog } from '../pop-up/dialog'; import { ToolbarSettings, ToolbarSettingsModel, AjaxSettings, NavigationPaneSettings, DetailsViewSettings } from '../models/index'; import { NavigationPaneSettingsModel, DetailsViewSettingsModel } from '../models/index'; import { AjaxSettingsModel, SearchSettings, SearchSettingsModel } from '../models/index'; import { Toolbar } from '../actions/toolbar'; import { DetailsView } from '../layout/details-view'; import { LargeIconsView } from '../layout/large-icons-view'; import { Uploader, UploadingEventArgs, SelectedEventArgs, FileInfo, CancelEventArgs } from '@syncfusion/ej2-inputs'; import { UploadSettingsModel } from '../models/upload-settings-model'; import { UploadSettings } from '../models/upload-settings'; import * as events from './constant'; import * as CLS from './classes'; import { read, filter, createFolder } from '../common/operations'; import { ITreeView, IContextMenu, ViewType, SortOrder, FileDragEventArgs, RetryArgs, ReadArgs, FileSelectionEventArgs } from './interface'; import { BeforeSendEventArgs, SuccessEventArgs, FailureEventArgs, FileLoadEventArgs } from './interface'; import { FileOpenEventArgs, FileSelectEventArgs, MenuClickEventArgs, MenuOpenEventArgs } from './interface'; import { ToolbarClickEventArgs, ToolbarCreateEventArgs, UploadListCreateArgs } from './interface'; import { PopupOpenCloseEventArgs, BeforePopupOpenCloseEventArgs, BeforeDownloadEventArgs, BeforeImageLoadEventArgs } from './interface'; import { refresh, getPathObject, getLocaleText, setNextPath, createDeniedDialog, getCssClass } from '../common/utility'; import { hasContentAccess, hasUploadAccess, updateLayout, createNewFolder, uploadItem } from '../common/utility'; import { TreeView as BaseTreeView } from '@syncfusion/ej2-navigations'; import { ContextMenuSettingsModel } from '../models/contextMenu-settings-model'; import { ContextMenuSettings } from '../models/contextMenu-settings'; import { BreadCrumbBar } from '../actions/breadcrumb-bar'; import { ContextMenu } from '../pop-up/context-menu'; import { defaultLocale } from '../models/default-locale'; import { PositionModel } from '@syncfusion/ej2-base/src/draggable-model'; | ||
import {ComponentModel} from '@syncfusion/ej2-base'; | ||
@@ -3,0 +3,0 @@ |
@@ -0,0 +0,0 @@ var __extends = (this && this.__extends) || (function () { |
@@ -0,0 +0,0 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base'; |
@@ -0,0 +0,0 @@ var __extends = (this && this.__extends) || (function () { |
@@ -0,0 +0,0 @@ import { Property, ChildProperty, NumberFormatOptions, DateFormatOptions } from '@syncfusion/ej2-base'; |
@@ -0,0 +0,0 @@ var __extends = (this && this.__extends) || (function () { |
@@ -0,0 +0,0 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base'; |
@@ -0,0 +0,0 @@ var __extends = (this && this.__extends) || (function () { |
@@ -1,2 +0,2 @@ | ||
import { Property, ChildProperty } from '@syncfusion/ej2-base';import { ColumnModel } from './index'; | ||
import { Property, ChildProperty } from '@syncfusion/ej2-base'; import { ColumnModel } from './index'; | ||
@@ -3,0 +3,0 @@ /** |
@@ -0,0 +0,0 @@ var __extends = (this && this.__extends) || (function () { |
@@ -0,0 +0,0 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base'; |
@@ -0,0 +0,0 @@ var __extends = (this && this.__extends) || (function () { |
@@ -0,0 +0,0 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base'; |
@@ -0,0 +0,0 @@ var __extends = (this && this.__extends) || (function () { |
@@ -0,0 +0,0 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base'; |
@@ -0,0 +0,0 @@ var __extends = (this && this.__extends) || (function () { |
@@ -0,0 +0,0 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base'; |
@@ -0,0 +0,0 @@ var __extends = (this && this.__extends) || (function () { |
@@ -127,2 +127,5 @@ import { ContextMenu as Menu } from '@syncfusion/ej2-navigations'; | ||
uid = closest(target, 'li').getAttribute('data-uid'); | ||
if (!isNOU(uid)) { | ||
this.parent.navigationpaneModule.treeObj.selectedNodes = [uid]; | ||
} | ||
treeFolder = true; | ||
@@ -129,0 +132,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
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
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
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
23169068
110671
160
3
1