@syncfusion/ej2-vue-filemanager 24.2.7 → 25.1.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -29
- package/dist/ej2-vue-filemanager.umd.min.js +2 -2
- package/dist/ej2-vue-filemanager.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-filemanager.es2015.js +1 -1
- package/dist/es6/ej2-vue-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-filemanager.es5.js +1 -1
- package/dist/es6/ej2-vue-filemanager.es5.js.map +1 -1
- package/dist/global/ej2-vue-filemanager.min.js +2 -2
- package/package.json +9 -9
- package/src/file-manager/filemanager.component.d.ts +36 -3
- package/src/file-manager/filemanager.component.js +1 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-filemanager@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-filemanager@
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-filemanager@25.1.35",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-s49ILeJPnbTPTwKjYevNmn3qvY6FlLX7+DRBVwJMDazW69lsu3/385AWVp3bBUkPdL3wMwYXcU3VffifktpE1g==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-filemanager",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-filemanager/-/ej2-vue-filemanager-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-filemanager/-/ej2-vue-filemanager-25.1.35.tgz",
|
|
23
|
+
"_shasum": "1705378dac4d722345bd8216c0fd06ca3d089a05",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-filemanager@*",
|
|
25
|
-
"_where": "/jenkins/workspace/elease-
|
|
25
|
+
"_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
27
27
|
"name": "Syncfusion Inc."
|
|
28
28
|
},
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~
|
|
35
|
-
"@syncfusion/ej2-filemanager": "
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~
|
|
34
|
+
"@syncfusion/ej2-base": "~25.1.35",
|
|
35
|
+
"@syncfusion/ej2-filemanager": "25.1.37",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~25.1.35"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 FileManager Component for Vue",
|
|
@@ -64,6 +64,6 @@
|
|
|
64
64
|
"ci-publish": "gulp ci-publish",
|
|
65
65
|
"compile": "gulp ci-compile && gulp vue-global-script"
|
|
66
66
|
},
|
|
67
|
-
"version": "
|
|
67
|
+
"version": "25.1.37",
|
|
68
68
|
"sideEffects": false
|
|
69
69
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DefineVueComponent } from '@syncfusion/ej2-vue-base';
|
|
2
|
-
import { FileManagerModel } from '@syncfusion/ej2-filemanager';
|
|
1
|
+
import { ComponentBase, DefineVueComponent } from '@syncfusion/ej2-vue-base';
|
|
2
|
+
import { FileManager, FileManagerModel } from '@syncfusion/ej2-filemanager';
|
|
3
3
|
export declare const properties: string[];
|
|
4
4
|
export declare const modelProps: string[];
|
|
5
5
|
export declare const testProp: any;
|
|
@@ -11,7 +11,40 @@ export declare const props: any, watch: any, emitProbs: any;
|
|
|
11
11
|
* ```
|
|
12
12
|
*/
|
|
13
13
|
export declare let FileManagerComponent: DefineVueComponent<FileManagerModel>;
|
|
14
|
-
export declare type FileManagerComponent =
|
|
14
|
+
export declare type FileManagerComponent = typeof ComponentBase & {
|
|
15
|
+
ej2Instances: FileManager;
|
|
16
|
+
isVue3: boolean;
|
|
17
|
+
isLazyUpdate: Boolean;
|
|
18
|
+
plugins: any[];
|
|
19
|
+
propKeys: string[];
|
|
20
|
+
models: string[];
|
|
21
|
+
hasChildDirective: boolean;
|
|
22
|
+
tagMapper: {
|
|
23
|
+
[key: string]: Object;
|
|
24
|
+
};
|
|
25
|
+
tagNameMapper: Object;
|
|
26
|
+
setProperties(prop: any, muteOnChange: boolean): void;
|
|
27
|
+
trigger(eventName: string, eventProp: {
|
|
28
|
+
[key: string]: Object;
|
|
29
|
+
}, successHandler?: Function): void;
|
|
30
|
+
clearSelection(): void;
|
|
31
|
+
createFolder(name?: string): void;
|
|
32
|
+
deleteFiles(ids?: string[]): void;
|
|
33
|
+
disableMenuItems(items: string[]): void;
|
|
34
|
+
disableToolbarItems(items: string[]): void;
|
|
35
|
+
downloadFiles(ids?: string[]): void;
|
|
36
|
+
enableToolbarItems(items: string[]): void;
|
|
37
|
+
filterFiles(filterData?: Object): void;
|
|
38
|
+
getMenuItemIndex(item: string): number;
|
|
39
|
+
getSelectedFiles(): Object[];
|
|
40
|
+
getToolbarItemIndex(item: string): number;
|
|
41
|
+
openFile(id: string): void;
|
|
42
|
+
refreshFiles(): void;
|
|
43
|
+
refreshLayout(): void;
|
|
44
|
+
renameFile(id?: string, name?: string): void;
|
|
45
|
+
selectAll(): void;
|
|
46
|
+
uploadFiles(): void;
|
|
47
|
+
};
|
|
15
48
|
export declare const FileManagerPlugin: {
|
|
16
49
|
name: string;
|
|
17
50
|
install(Vue: any): void;
|
|
@@ -2,7 +2,7 @@ import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syn
|
|
|
2
2
|
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
|
|
3
3
|
import { FileManager } from '@syncfusion/ej2-filemanager';
|
|
4
4
|
import { ToolbarItemsDirective, ToolbarItemDirective, ToolbarItemsPlugin, ToolbarItemPlugin } from './toolbaritems.directive';
|
|
5
|
-
export var properties = ['isLazyUpdate', 'plugins', 'ajaxSettings', 'allowDragAndDrop', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'detailsViewSettings', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableVirtualization', 'height', 'locale', 'navigationPaneSettings', 'path', 'popupTarget', 'rootAliasName', 'searchSettings', 'selectedItems', 'showFileExtension', 'showHiddenItems', 'showItemCheckBoxes', 'showThumbnail', 'sortBy', 'sortOrder', 'toolbarItems', 'toolbarSettings', 'uploadSettings', 'view', 'width', 'beforeDownload', 'beforeImageLoad', 'beforePopupClose', 'beforePopupOpen', 'beforeSend', 'created', 'destroyed', 'failure', 'fileDragStart', 'fileDragStop', 'fileDragging', 'fileDropped', 'fileLoad', 'fileOpen', 'fileSelect', 'fileSelection', 'menuClick', 'menuOpen', 'popupClose', 'popupOpen', 'success', 'toolbarClick', 'toolbarCreate', 'uploadListCreate'];
|
|
5
|
+
export var properties = ['isLazyUpdate', 'plugins', 'ajaxSettings', 'allowDragAndDrop', 'allowMultiSelection', 'contextMenuSettings', 'cssClass', 'detailsViewSettings', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableVirtualization', 'height', 'locale', 'navigationPaneSettings', 'path', 'popupTarget', 'rootAliasName', 'searchSettings', 'selectedItems', 'showFileExtension', 'showHiddenItems', 'showItemCheckBoxes', 'showThumbnail', 'sortBy', 'sortComparer', 'sortOrder', 'toolbarItems', 'toolbarSettings', 'uploadSettings', 'view', 'width', 'beforeDownload', 'beforeImageLoad', 'beforePopupClose', 'beforePopupOpen', 'beforeSend', 'created', 'destroyed', 'failure', 'fileDragStart', 'fileDragStop', 'fileDragging', 'fileDropped', 'fileLoad', 'fileOpen', 'fileSelect', 'fileSelection', 'menuClick', 'menuOpen', 'popupClose', 'popupOpen', 'success', 'toolbarClick', 'toolbarCreate', 'uploadListCreate'];
|
|
6
6
|
export var modelProps = [];
|
|
7
7
|
export var testProp = getProps({ props: properties });
|
|
8
8
|
export var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);
|