@syncfusion/ej2-filemanager 20.1.52-10460 → 20.1.52-10461
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 +412 -410
- package/README.md +69 -69
- package/dist/ej2-filemanager.min.js +1 -0
- package/dist/ej2-filemanager.umd.min.js +1 -10
- package/dist/ej2-filemanager.umd.min.js.map +1 -1
- package/dist/es6/ej2-filemanager.es2015.js +57 -54
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +174 -171
- package/dist/es6/ej2-filemanager.es5.js.map +1 -1
- package/dist/global/ej2-filemanager.min.js +1 -10
- package/dist/global/ej2-filemanager.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/file-manager/actions/breadcrumb-bar.ts +427 -0
- package/dist/ts/file-manager/actions/toolbar.ts +498 -0
- package/dist/ts/file-manager/base/classes.ts +225 -0
- package/dist/ts/file-manager/base/constant.ts +137 -0
- package/dist/ts/file-manager/base/file-manager.ts +1659 -0
- package/dist/ts/file-manager/base/interface.ts +652 -0
- package/dist/ts/file-manager/common/operations.ts +614 -0
- package/dist/ts/file-manager/common/utility.ts +1503 -0
- package/dist/ts/file-manager/layout/details-view.ts +1837 -0
- package/dist/ts/file-manager/layout/large-icons-view.ts +1587 -0
- package/dist/ts/file-manager/layout/navigation-pane.ts +879 -0
- package/dist/ts/file-manager/models/ajax-settings.ts +39 -0
- package/dist/ts/file-manager/models/column.ts +197 -0
- package/dist/ts/file-manager/models/contextMenu-settings.ts +44 -0
- package/dist/ts/file-manager/models/default-locale.ts +102 -0
- package/dist/ts/file-manager/models/details-view-settings.ts +48 -0
- package/dist/ts/file-manager/models/navigation-pane-settings.ts +42 -0
- package/dist/ts/file-manager/models/search-settings.ts +48 -0
- package/dist/ts/file-manager/models/toolbar-settings.ts +25 -0
- package/dist/ts/file-manager/models/upload-settings.ts +51 -0
- package/dist/ts/file-manager/pop-up/context-menu.ts +614 -0
- package/dist/ts/file-manager/pop-up/dialog.ts +996 -0
- package/helpers/e2e/filemanagerHelper.js +183 -166
- package/license +9 -9
- package/package.json +72 -72
- package/src/file-manager/base/file-manager-model.d.ts +329 -329
- package/src/file-manager/base/file-manager.js +19 -19
- package/src/file-manager/models/ajax-settings-model.d.ts +21 -21
- package/src/file-manager/models/ajax-settings.js +19 -19
- package/src/file-manager/models/column-model.d.ts +98 -98
- package/src/file-manager/models/column.js +19 -19
- package/src/file-manager/models/contextMenu-settings-model.d.ts +21 -21
- package/src/file-manager/models/contextMenu-settings.js +19 -19
- package/src/file-manager/models/details-view-settings-model.d.ts +19 -19
- package/src/file-manager/models/details-view-settings.js +19 -19
- package/src/file-manager/models/navigation-pane-settings-model.d.ts +25 -25
- package/src/file-manager/models/navigation-pane-settings.js +19 -19
- package/src/file-manager/models/search-settings-model.d.ts +26 -26
- package/src/file-manager/models/search-settings.js +19 -19
- package/src/file-manager/models/toolbar-settings-model.d.ts +11 -11
- package/src/file-manager/models/toolbar-settings.js +19 -19
- package/src/file-manager/models/upload-settings-model.d.ts +31 -31
- package/src/file-manager/models/upload-settings.js +19 -19
- package/src/file-manager/pop-up/context-menu.js +3 -0
- package/styles/compatibility/bootstrap.css +1 -0
- package/styles/compatibility/bootstrap.scss +12 -0
- package/styles/compatibility/bootstrap4.css +1 -0
- package/styles/compatibility/bootstrap4.scss +12 -0
- package/styles/compatibility/fabric.css +1 -0
- package/styles/compatibility/fabric.scss +12 -0
- package/styles/compatibility/highcontrast.css +1 -0
- package/styles/compatibility/highcontrast.scss +12 -0
- package/styles/compatibility/material.css +1 -0
- package/styles/compatibility/material.scss +12 -0
- package/styles/file-manager/_all.scss +2 -2
- package/styles/file-manager/_bds-definition.scss +236 -0
- package/styles/file-manager/_bigger.scss +759 -0
- package/styles/file-manager/_bootstrap-dark-definition.scss +244 -240
- package/styles/file-manager/_bootstrap-definition.scss +245 -241
- package/styles/file-manager/_bootstrap4-definition.scss +246 -242
- package/styles/file-manager/_bootstrap5-definition.scss +242 -237
- package/styles/file-manager/_bootstrap5.3-definition.scss +242 -0
- package/styles/file-manager/_fabric-dark-definition.scss +242 -238
- package/styles/file-manager/_fabric-definition.scss +244 -240
- package/styles/file-manager/_fluent-definition.scss +249 -246
- package/styles/file-manager/_fluent2-definition.scss +255 -0
- package/styles/file-manager/_fusionnew-definition.scss +241 -0
- package/styles/file-manager/_highcontrast-definition.scss +244 -240
- package/styles/file-manager/_highcontrast-light-definition.scss +244 -240
- package/styles/file-manager/_layout.scss +1252 -1815
- package/styles/file-manager/_material-dark-definition.scss +245 -240
- package/styles/file-manager/_material-definition.scss +245 -240
- package/styles/file-manager/_material3-definition.scss +235 -0
- package/styles/file-manager/_tailwind-definition.scss +236 -232
- package/styles/file-manager/_theme.scss +418 -397
- package/styles/file-manager/icons/_bds.scss +235 -0
- package/styles/file-manager/icons/_bootstrap-dark.scss +235 -235
- package/styles/file-manager/icons/_bootstrap.scss +235 -236
- package/styles/file-manager/icons/_bootstrap4.scss +235 -236
- package/styles/file-manager/icons/_bootstrap5.3.scss +235 -0
- package/styles/file-manager/icons/_bootstrap5.scss +235 -235
- package/styles/file-manager/icons/_fabric-dark.scss +229 -230
- package/styles/file-manager/icons/_fabric.scss +229 -230
- package/styles/file-manager/icons/_fluent.scss +235 -235
- package/styles/file-manager/icons/_fluent2.scss +235 -0
- package/styles/file-manager/icons/_fusionnew.scss +235 -0
- package/styles/file-manager/icons/_highcontrast-light.scss +235 -235
- package/styles/file-manager/icons/_highcontrast.scss +229 -229
- package/styles/file-manager/icons/_material-dark.scss +235 -235
- package/styles/file-manager/icons/_material.scss +235 -235
- package/styles/file-manager/icons/_material3.scss +235 -0
- package/styles/file-manager/icons/_tailwind.scss +235 -235
- package/.eslintrc.json +0 -244
- package/styles/bootstrap-dark.css +0 -1920
- package/styles/bootstrap-dark.scss +0 -1
- package/styles/bootstrap.css +0 -1899
- package/styles/bootstrap.scss +0 -1
- package/styles/bootstrap4.css +0 -1935
- package/styles/bootstrap4.scss +0 -1
- package/styles/bootstrap5-dark.css +0 -1982
- package/styles/bootstrap5-dark.scss +0 -1
- package/styles/bootstrap5.css +0 -1982
- package/styles/bootstrap5.scss +0 -1
- package/styles/fabric-dark.css +0 -1891
- package/styles/fabric-dark.scss +0 -1
- package/styles/fabric.css +0 -1891
- package/styles/fabric.scss +0 -1
- package/styles/file-manager/_bootstrap5-dark-definition.scss +0 -1
- package/styles/file-manager/_fluent-dark-definition.scss +0 -1
- package/styles/file-manager/_tailwind-dark-definition.scss +0 -1
- package/styles/file-manager/bootstrap-dark.css +0 -1920
- package/styles/file-manager/bootstrap-dark.scss +0 -16
- package/styles/file-manager/bootstrap.css +0 -1899
- package/styles/file-manager/bootstrap.scss +0 -16
- package/styles/file-manager/bootstrap4.css +0 -1935
- package/styles/file-manager/bootstrap4.scss +0 -16
- package/styles/file-manager/bootstrap5-dark.css +0 -1982
- package/styles/file-manager/bootstrap5-dark.scss +0 -16
- package/styles/file-manager/bootstrap5.css +0 -1982
- package/styles/file-manager/bootstrap5.scss +0 -16
- package/styles/file-manager/fabric-dark.css +0 -1891
- package/styles/file-manager/fabric-dark.scss +0 -16
- package/styles/file-manager/fabric.css +0 -1891
- package/styles/file-manager/fabric.scss +0 -16
- package/styles/file-manager/fluent-dark.css +0 -1901
- package/styles/file-manager/fluent-dark.scss +0 -16
- package/styles/file-manager/fluent.css +0 -1900
- package/styles/file-manager/fluent.scss +0 -16
- package/styles/file-manager/highcontrast-light.css +0 -1897
- package/styles/file-manager/highcontrast-light.scss +0 -16
- package/styles/file-manager/highcontrast.css +0 -1897
- package/styles/file-manager/highcontrast.scss +0 -16
- package/styles/file-manager/icons/_bootstrap5-dark.scss +0 -1
- package/styles/file-manager/icons/_fluent-dark.scss +0 -1
- package/styles/file-manager/icons/_tailwind-dark.scss +0 -1
- package/styles/file-manager/material-dark.css +0 -1945
- package/styles/file-manager/material-dark.scss +0 -16
- package/styles/file-manager/material.css +0 -1932
- package/styles/file-manager/material.scss +0 -16
- package/styles/file-manager/tailwind-dark.css +0 -1969
- package/styles/file-manager/tailwind-dark.scss +0 -16
- package/styles/file-manager/tailwind.css +0 -1969
- package/styles/file-manager/tailwind.scss +0 -16
- package/styles/fluent-dark.css +0 -1901
- package/styles/fluent-dark.scss +0 -1
- package/styles/fluent.css +0 -1900
- package/styles/fluent.scss +0 -1
- package/styles/highcontrast-light.css +0 -1897
- package/styles/highcontrast-light.scss +0 -1
- package/styles/highcontrast.css +0 -1897
- package/styles/highcontrast.scss +0 -1
- package/styles/material-dark.css +0 -1945
- package/styles/material-dark.scss +0 -1
- package/styles/material.css +0 -1932
- package/styles/material.scss +0 -1
- package/styles/tailwind-dark.css +0 -1969
- package/styles/tailwind-dark.scss +0 -1
- package/styles/tailwind.css +0 -1969
- package/styles/tailwind.scss +0 -1
- package/tslint.json +0 -111
@@ -1,167 +1,184 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
2
|
+
var extendStatics = function (d, b) {
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6
|
+
return extendStatics(d, b);
|
7
|
+
};
|
8
|
+
return function (d, b) {
|
9
|
+
extendStatics(d, b);
|
10
|
+
function __() { this.constructor = d; }
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
12
|
+
};
|
13
|
+
})();
|
14
|
+
define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) {
|
15
|
+
"use strict";
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
/**
|
18
|
+
* E2E test helpers for FileManager to easily interact and the test the component
|
19
|
+
*/
|
20
|
+
var FileManagerHelpers = /** @class */ (function (_super) {
|
21
|
+
__extends(FileManagerHelpers, _super);
|
22
|
+
/**
|
23
|
+
* Initialize the FileManager E2E helpers
|
24
|
+
* @param id Element id of the FileManager element
|
25
|
+
* @param wrapperFn Pass the wrapper function
|
26
|
+
*/
|
27
|
+
function FileManagerHelpers(id, wrapperFn) {
|
28
|
+
var _this = _super.call(this) || this;
|
29
|
+
_this.id = id;
|
30
|
+
if (wrapperFn !== undefined) {
|
31
|
+
_this.wrapperFn = wrapperFn;
|
32
|
+
}
|
33
|
+
return _this;
|
18
34
|
}
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
}
|
165
|
-
|
166
|
-
}
|
167
|
-
exports.FileManagerHelpers = FileManagerHelpers;
|
35
|
+
FileManagerHelpers.prototype.selector = function (arg) {
|
36
|
+
return (this.wrapperFn ? this.wrapperFn(arg) : arg);
|
37
|
+
};
|
38
|
+
/**
|
39
|
+
* Returns the root element of the FileManager component.
|
40
|
+
*/
|
41
|
+
FileManagerHelpers.prototype.getElement = function () {
|
42
|
+
return this.selector('#' + this.id);
|
43
|
+
};
|
44
|
+
/**
|
45
|
+
* Returns the toolbar items from the FileManager component.
|
46
|
+
*/
|
47
|
+
FileManagerHelpers.prototype.getToolbarItems = function () {
|
48
|
+
return this.selector('#' + this.id + '.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item');
|
49
|
+
};
|
50
|
+
/**
|
51
|
+
* Returns the active toolbar item element from the FileManager component.
|
52
|
+
*/
|
53
|
+
FileManagerHelpers.prototype.getToolbarItemsActive = function () {
|
54
|
+
return this.selector('#' + this.id + '.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-active');
|
55
|
+
};
|
56
|
+
FileManagerHelpers.prototype.getTreeviewItems = function () {
|
57
|
+
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item');
|
58
|
+
};
|
59
|
+
/**
|
60
|
+
* Returns the collapsed treeview node element from the FileManager component.
|
61
|
+
*/
|
62
|
+
FileManagerHelpers.prototype.getTreeviewCollapsedItems = function () {
|
63
|
+
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-node-collapsed');
|
64
|
+
};
|
65
|
+
/**
|
66
|
+
* Returns the collapsed icon of treeview node element from the FileManager component.
|
67
|
+
*/
|
68
|
+
FileManagerHelpers.prototype.getTreeviewCollapsedIcon = function () {
|
69
|
+
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-icons.e-icon-collapsible');
|
70
|
+
};
|
71
|
+
/**
|
72
|
+
* Returns the expanded icon of treeview node element from the FileManager component.
|
73
|
+
*/
|
74
|
+
FileManagerHelpers.prototype.getTreeviewExpandedIcon = function () {
|
75
|
+
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-icons.e-icon-expandable');
|
76
|
+
};
|
77
|
+
/**
|
78
|
+
* Returns the active treeview node element from the FileManager component.
|
79
|
+
*/
|
80
|
+
FileManagerHelpers.prototype.getTreeviewActiveItems = function () {
|
81
|
+
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-active');
|
82
|
+
};
|
83
|
+
/**
|
84
|
+
* Returns the treeview items folder icon from the FileManager component.
|
85
|
+
*/
|
86
|
+
FileManagerHelpers.prototype.getTreeviewItemsFolderIcon = function () {
|
87
|
+
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-list-icon.e-fe-folder');
|
88
|
+
};
|
89
|
+
/**
|
90
|
+
* Returns the treeview items text from the FileManager component.
|
91
|
+
*/
|
92
|
+
FileManagerHelpers.prototype.getTreeviewItemsText = function () {
|
93
|
+
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-treeview .e-list-item .e-list-text');
|
94
|
+
};
|
95
|
+
/**
|
96
|
+
* Returns the largeIcon element from the FileManager component.
|
97
|
+
*/
|
98
|
+
FileManagerHelpers.prototype.getlargeIconsItems = function () {
|
99
|
+
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-large-icons .e-list-parent.e-ul .e-list-item"');
|
100
|
+
};
|
101
|
+
/**
|
102
|
+
* Returns the active list element in largeIcon view from the FileManager component.
|
103
|
+
*/
|
104
|
+
FileManagerHelpers.prototype.getlargeIconsActiveItems = function () {
|
105
|
+
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');
|
106
|
+
};
|
107
|
+
/**
|
108
|
+
* Returns the checked element in largeIcon view from the FileManager component.
|
109
|
+
*/
|
110
|
+
FileManagerHelpers.prototype.getlargeIconsCheckedItems = function () {
|
111
|
+
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');
|
112
|
+
};
|
113
|
+
/**
|
114
|
+
* Returns the grid element from the FileManager component.
|
115
|
+
*/
|
116
|
+
FileManagerHelpers.prototype.getGridElement = function () {
|
117
|
+
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid');
|
118
|
+
};
|
119
|
+
/**
|
120
|
+
* Returns the active element in grid view from the FileManager component.
|
121
|
+
*/
|
122
|
+
FileManagerHelpers.prototype.getGridActiveElements = function () {
|
123
|
+
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-grid .e-gridcontent .e-table .e-row .e-rowcell.e-active');
|
124
|
+
};
|
125
|
+
/**
|
126
|
+
* Returns the checked element in grid view from the FileManager component.
|
127
|
+
*/
|
128
|
+
FileManagerHelpers.prototype.getGridCheckedElements = function () {
|
129
|
+
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');
|
130
|
+
};
|
131
|
+
/**
|
132
|
+
* Returns the dialog element from the FileManager component.
|
133
|
+
*/
|
134
|
+
FileManagerHelpers.prototype.getDialogElement = function () {
|
135
|
+
return this.selector('#' + this.id + '.e-filemanager .e-dialog.e-popup.e-popup-open');
|
136
|
+
};
|
137
|
+
/**
|
138
|
+
* Returns the breadcrumbBar element from the FileManager component.
|
139
|
+
*/
|
140
|
+
FileManagerHelpers.prototype.getBreadCrumbBarElement = function () {
|
141
|
+
return this.selector('#' + this.id + '.e-filemanager .e-splitter .e-layout-content .e-address .e-addressbar-ul .e-address-list-item');
|
142
|
+
};
|
143
|
+
/**
|
144
|
+
* Returns the splitter element from the FileManager component.
|
145
|
+
*/
|
146
|
+
FileManagerHelpers.prototype.getSplitterElement = function () {
|
147
|
+
return this.selector('#' + this.id + '.e-filemanager .e-splitter.e-splitter-horizontal');
|
148
|
+
};
|
149
|
+
/**
|
150
|
+
* Returns the contextmenu element from the FileManager component.
|
151
|
+
*/
|
152
|
+
FileManagerHelpers.prototype.getContextMenuElement = function () {
|
153
|
+
return this.selector('.e-fe-popup .e-contextmenu');
|
154
|
+
};
|
155
|
+
/**
|
156
|
+
* Returns the sortby popup element from the FileManager component.
|
157
|
+
*/
|
158
|
+
FileManagerHelpers.prototype.getSortByPopupElement = function () {
|
159
|
+
return this.selector('.e-dropdown-popup.e-fe-popup.e-popup-open');
|
160
|
+
};
|
161
|
+
FileManagerHelpers.prototype.setModel = function (property, value) {
|
162
|
+
var cy;
|
163
|
+
return cy.get('#' + this.id).then(function (ele) {
|
164
|
+
return ele[0].ej2_instances[0][property] = value;
|
165
|
+
});
|
166
|
+
};
|
167
|
+
FileManagerHelpers.prototype.getModel = function (property) {
|
168
|
+
var cy;
|
169
|
+
return cy.get('#' + this.id).then(function (ele) {
|
170
|
+
return ele[0].ej2_instances[0][property];
|
171
|
+
});
|
172
|
+
};
|
173
|
+
FileManagerHelpers.prototype.invoke = function (fName, args) {
|
174
|
+
if (args === void 0) { args = []; }
|
175
|
+
var cy;
|
176
|
+
return cy.get('#' + this.id).then(function (ele) {
|
177
|
+
var inst = ele[0].ej2_instances[0];
|
178
|
+
return inst[fName].apply(inst, args);
|
179
|
+
});
|
180
|
+
};
|
181
|
+
return FileManagerHelpers;
|
182
|
+
}(e2e_1.TestHelper));
|
183
|
+
exports.FileManagerHelpers = FileManagerHelpers;
|
184
|
+
});
|
package/license
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
|
2
|
-
|
3
|
-
To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
|
4
|
-
|
5
|
-
Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
|
6
|
-
|
7
|
-
Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
|
8
|
-
|
9
|
-
The Syncfusion license that contains the terms and conditions can be found at
|
1
|
+
Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
|
2
|
+
|
3
|
+
To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
|
4
|
+
|
5
|
+
Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
|
6
|
+
|
7
|
+
Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
|
8
|
+
|
9
|
+
The Syncfusion license that contains the terms and conditions can be found at
|
10
10
|
https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
|
package/package.json
CHANGED
@@ -1,72 +1,72 @@
|
|
1
|
-
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
}
|
1
|
+
{
|
2
|
+
"_from": "@syncfusion/ej2-filemanager@*",
|
3
|
+
"_id": "@syncfusion/ej2-filemanager@20.1.47",
|
4
|
+
"_inBundle": false,
|
5
|
+
"_integrity": "sha512-X2ntzEAEsLkMwTr5MxCZGed0nFIN1Booq2Qmz6ABLlp0gQhLGO1v4ZQar0RiRjVHY0ViLasSRyCL7A3VOkvjkQ==",
|
6
|
+
"_location": "/@syncfusion/ej2-filemanager",
|
7
|
+
"_phantomChildren": {},
|
8
|
+
"_requested": {
|
9
|
+
"type": "range",
|
10
|
+
"registry": true,
|
11
|
+
"raw": "@syncfusion/ej2-filemanager@*",
|
12
|
+
"name": "@syncfusion/ej2-filemanager",
|
13
|
+
"escapedName": "@syncfusion%2fej2-filemanager",
|
14
|
+
"scope": "@syncfusion",
|
15
|
+
"rawSpec": "*",
|
16
|
+
"saveSpec": null,
|
17
|
+
"fetchSpec": "*"
|
18
|
+
},
|
19
|
+
"_requiredBy": [
|
20
|
+
"/",
|
21
|
+
"/@syncfusion/ej2",
|
22
|
+
"/@syncfusion/ej2-angular-filemanager",
|
23
|
+
"/@syncfusion/ej2-pdfviewer",
|
24
|
+
"/@syncfusion/ej2-react-filemanager",
|
25
|
+
"/@syncfusion/ej2-richtexteditor",
|
26
|
+
"/@syncfusion/ej2-vue-filemanager"
|
27
|
+
],
|
28
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-20.1.47.tgz",
|
29
|
+
"_shasum": "b533db437939ff1a76e373430a820cff89b68c87",
|
30
|
+
"_spec": "@syncfusion/ej2-filemanager@*",
|
31
|
+
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
32
|
+
"author": {
|
33
|
+
"name": "Syncfusion Inc."
|
34
|
+
},
|
35
|
+
"bugs": {
|
36
|
+
"url": "https://github.com/syncfusion/ej2-javascript-ui-controls/issues"
|
37
|
+
},
|
38
|
+
"bundleDependencies": false,
|
39
|
+
"dependencies": {
|
40
|
+
"@syncfusion/ej2-base": "~20.1.50",
|
41
|
+
"@syncfusion/ej2-buttons": "~20.1.52",
|
42
|
+
"@syncfusion/ej2-data": "~20.1.47",
|
43
|
+
"@syncfusion/ej2-grids": "~20.1.52",
|
44
|
+
"@syncfusion/ej2-inputs": "~20.1.48",
|
45
|
+
"@syncfusion/ej2-layouts": "~20.1.47",
|
46
|
+
"@syncfusion/ej2-lists": "~20.1.47",
|
47
|
+
"@syncfusion/ej2-navigations": "20.1.51-10460",
|
48
|
+
"@syncfusion/ej2-popups": "~20.1.47",
|
49
|
+
"@syncfusion/ej2-splitbuttons": "~20.1.47"
|
50
|
+
},
|
51
|
+
"deprecated": false,
|
52
|
+
"description": "Essential JS 2 FileManager Component",
|
53
|
+
"devDependencies": {},
|
54
|
+
"es2015": "./dist/es6/ej2-filemanager.es2015.js",
|
55
|
+
"homepage": "https://github.com/syncfusion/ej2-javascript-ui-controls#readme",
|
56
|
+
"keywords": [
|
57
|
+
"ej2",
|
58
|
+
"syncfusion",
|
59
|
+
"ej2-filemanager"
|
60
|
+
],
|
61
|
+
"license": "SEE LICENSE IN license",
|
62
|
+
"main": "./dist/ej2-filemanager.umd.min.js",
|
63
|
+
"module": "./index.js",
|
64
|
+
"name": "@syncfusion/ej2-filemanager",
|
65
|
+
"repository": {
|
66
|
+
"type": "git",
|
67
|
+
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
68
|
+
},
|
69
|
+
"typings": "index.d.ts",
|
70
|
+
"version": "20.1.52-10461",
|
71
|
+
"sideEffects": false
|
72
|
+
}
|