@syncfusion/ej2-filemanager 19.4.48 → 19.4.50-117124
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/.eslintrc.json +16 -1
- package/CHANGELOG.md +6 -20
- package/README.md +54 -43
- package/dist/ej2-filemanager.min.js +10 -0
- package/dist/ej2-filemanager.umd.min.js +2 -2
- package/dist/ej2-filemanager.umd.min.js.map +1 -1
- package/dist/es6/ej2-filemanager.es2015.js +445 -129
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +473 -136
- package/dist/es6/ej2-filemanager.es5.js.map +1 -1
- package/dist/global/ej2-filemanager.min.js +2 -2
- package/dist/global/ej2-filemanager.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/helpers/e2e/filemanagerHelper.js +183 -166
- package/package.json +11 -12
- package/src/file-manager/actions/breadcrumb-bar.js +1 -1
- package/src/file-manager/actions/index.d.ts +1 -0
- package/src/file-manager/actions/index.js +1 -0
- package/src/file-manager/actions/toolbar.js +6 -4
- package/src/file-manager/actions/virtualization.d.ts +38 -0
- package/src/file-manager/actions/virtualization.js +179 -0
- package/src/file-manager/base/classes.d.ts +2 -0
- package/src/file-manager/base/classes.js +2 -0
- package/src/file-manager/base/file-manager-model.d.ts +24 -2
- package/src/file-manager/base/file-manager.d.ts +28 -2
- package/src/file-manager/base/file-manager.js +32 -3
- package/src/file-manager/base/interface.d.ts +5 -1
- package/src/file-manager/common/operations.js +2 -0
- package/src/file-manager/common/utility.js +21 -5
- package/src/file-manager/layout/details-view.d.ts +2 -0
- package/src/file-manager/layout/details-view.js +46 -7
- package/src/file-manager/layout/large-icons-view.d.ts +2 -1
- package/src/file-manager/layout/large-icons-view.js +13 -5
- package/src/file-manager/layout/navigation-pane.js +29 -17
- package/src/file-manager/models/index.d.ts +2 -0
- package/src/file-manager/models/index.js +1 -0
- package/src/file-manager/models/navigation-pane-settings-model.d.ts +11 -0
- package/src/file-manager/models/navigation-pane-settings.d.ts +10 -0
- package/src/file-manager/models/navigation-pane-settings.js +3 -0
- package/src/file-manager/models/upload-settings-model.d.ts +13 -0
- package/src/file-manager/models/upload-settings.d.ts +12 -0
- package/src/file-manager/models/upload-settings.js +3 -0
- package/src/file-manager/models/virtualization-settings-model.d.ts +29 -0
- package/src/file-manager/models/virtualization-settings.d.ts +24 -0
- package/src/file-manager/models/virtualization-settings.js +40 -0
- package/src/file-manager/pop-up/context-menu.js +1 -1
- package/src/file-manager/pop-up/dialog.js +11 -4
- package/src/global.js +1 -1
- package/styles/bootstrap-dark.css +55 -399
- package/styles/bootstrap.css +55 -396
- package/styles/bootstrap4.css +55 -404
- package/styles/bootstrap5-dark.css +56 -408
- package/styles/bootstrap5.css +56 -408
- package/styles/fabric-dark.css +54 -392
- package/styles/fabric.css +54 -392
- package/styles/file-manager/_all.scss +1 -1
- package/styles/file-manager/_bootstrap-dark-definition.scss +1 -1
- package/styles/file-manager/_bootstrap-definition.scss +1 -1
- package/styles/file-manager/_bootstrap4-definition.scss +1 -1
- package/styles/file-manager/_bootstrap5-definition.scss +3 -3
- package/styles/file-manager/_fabric-dark-definition.scss +1 -1
- package/styles/file-manager/_fabric-definition.scss +1 -1
- package/styles/file-manager/_fluent-dark-definition.scss +1 -0
- package/styles/file-manager/_fluent-definition.scss +10 -10
- package/styles/file-manager/_fusionnew-definition.scss +237 -0
- package/styles/file-manager/_highcontrast-definition.scss +1 -1
- package/styles/file-manager/_highcontrast-light-definition.scss +1 -1
- package/styles/file-manager/_layout.scss +65 -16
- package/styles/file-manager/_material-dark-definition.scss +1 -1
- package/styles/file-manager/_material-definition.scss +1 -1
- package/styles/file-manager/_material3-definition.scss +237 -0
- package/styles/file-manager/_tailwind-definition.scss +2 -2
- package/styles/file-manager/_theme.scss +39 -10
- package/styles/file-manager/bootstrap-dark.css +55 -399
- package/styles/file-manager/bootstrap.css +55 -396
- package/styles/file-manager/bootstrap4.css +55 -404
- package/styles/file-manager/bootstrap5-dark.css +56 -408
- package/styles/file-manager/bootstrap5.css +56 -408
- package/styles/file-manager/fabric-dark.css +54 -392
- package/styles/file-manager/fabric.css +54 -392
- package/styles/file-manager/fluent-dark.css +1568 -0
- package/styles/file-manager/fluent-dark.scss +16 -0
- package/styles/file-manager/fluent.css +1567 -0
- package/styles/file-manager/fluent.scss +16 -0
- package/styles/file-manager/highcontrast-light.css +54 -394
- package/styles/file-manager/highcontrast.css +73 -393
- package/styles/file-manager/icons/_bootstrap.scss +0 -1
- package/styles/file-manager/icons/_bootstrap4.scss +0 -1
- package/styles/file-manager/icons/_fabric-dark.scss +0 -1
- package/styles/file-manager/icons/_fabric.scss +0 -1
- package/styles/file-manager/icons/_fluent-dark.scss +1 -0
- package/styles/file-manager/icons/_fluent.scss +19 -19
- package/styles/file-manager/icons/_fusionnew.scss +235 -0
- package/styles/file-manager/icons/_material3.scss +235 -0
- package/styles/file-manager/icons/_tailwind.scss +49 -49
- package/styles/file-manager/material-dark.css +55 -403
- package/styles/file-manager/material.css +55 -400
- package/styles/file-manager/tailwind-dark.css +76 -424
- package/styles/file-manager/tailwind.css +76 -424
- package/styles/fluent-dark.css +1568 -0
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +1567 -0
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.css +54 -394
- package/styles/highcontrast.css +73 -393
- package/styles/material-dark.css +55 -403
- package/styles/material.css +55 -400
- package/styles/tailwind-dark.css +76 -424
- package/styles/tailwind.css +76 -424
package/dist/global/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: index.d.ts
|
3
|
-
* version :
|
3
|
+
* version : 20.4.43
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
5
5
|
* Use of this code is subject to the terms of our license.
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
@@ -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/package.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
{
|
2
2
|
"_from": "@syncfusion/ej2-filemanager@*",
|
3
|
-
"_id": "@syncfusion/ej2-filemanager@19.4.
|
3
|
+
"_id": "@syncfusion/ej2-filemanager@19.4.48",
|
4
4
|
"_inBundle": false,
|
5
|
-
"_integrity": "sha512-
|
5
|
+
"_integrity": "sha512-X0K/Cjp5QertYxW0u7Pudh6eHENw0RQNcPc2iqwsq4G0jQAIHLvg1JD3vcLb2KeZXLyxbZ/A4nfp3Lp+tdITFg==",
|
6
6
|
"_location": "/@syncfusion/ej2-filemanager",
|
7
7
|
"_phantomChildren": {},
|
8
8
|
"_requested": {
|
@@ -25,8 +25,8 @@
|
|
25
25
|
"/@syncfusion/ej2-richtexteditor",
|
26
26
|
"/@syncfusion/ej2-vue-filemanager"
|
27
27
|
],
|
28
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-19.4.
|
29
|
-
"_shasum": "
|
28
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-19.4.48.tgz",
|
29
|
+
"_shasum": "7418712086c90cb46e9f8bb34fb59c1ef06fa9b3",
|
30
30
|
"_spec": "@syncfusion/ej2-filemanager@*",
|
31
31
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
32
32
|
"author": {
|
@@ -38,16 +38,15 @@
|
|
38
38
|
"bundleDependencies": false,
|
39
39
|
"dependencies": {
|
40
40
|
"@syncfusion/ej2-base": "~19.4.48",
|
41
|
-
"@syncfusion/ej2-buttons": "~19.4.
|
42
|
-
"@syncfusion/ej2-data": "~19.4.
|
43
|
-
"@syncfusion/ej2-grids": "~19.4.
|
41
|
+
"@syncfusion/ej2-buttons": "~19.4.50",
|
42
|
+
"@syncfusion/ej2-data": "~19.4.50",
|
43
|
+
"@syncfusion/ej2-grids": "~19.4.50",
|
44
44
|
"@syncfusion/ej2-inputs": "~19.4.48",
|
45
45
|
"@syncfusion/ej2-layouts": "~19.4.48",
|
46
46
|
"@syncfusion/ej2-lists": "~19.4.48",
|
47
|
-
"@syncfusion/ej2-navigations": "~19.4.
|
48
|
-
"@syncfusion/ej2-popups": "~19.4.
|
49
|
-
"@syncfusion/ej2-splitbuttons": "~19.4.48"
|
50
|
-
"selenium-webdriver": "^4.0.0-alpha.1"
|
47
|
+
"@syncfusion/ej2-navigations": "~19.4.50",
|
48
|
+
"@syncfusion/ej2-popups": "~19.4.50",
|
49
|
+
"@syncfusion/ej2-splitbuttons": "~19.4.48"
|
51
50
|
},
|
52
51
|
"deprecated": false,
|
53
52
|
"description": "Essential JS 2 FileManager Component",
|
@@ -68,6 +67,6 @@
|
|
68
67
|
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
69
68
|
},
|
70
69
|
"typings": "index.d.ts",
|
71
|
-
"version": "19.4.
|
70
|
+
"version": "19.4.50-117124",
|
72
71
|
"sideEffects": false
|
73
72
|
}
|
@@ -405,7 +405,7 @@ var BreadCrumbBar = /** @class */ (function () {
|
|
405
405
|
}
|
406
406
|
};
|
407
407
|
BreadCrumbBar.prototype.onSearchTextChange = function (args) {
|
408
|
-
this.searchObj.element.placeholder = (this.parent.searchSettings.placeholder != null) ? this.parent.searchSettings.placeholder : getLocaleText(this.parent, 'Search') + ' ' + args.cwd.name;
|
408
|
+
this.searchObj.element.placeholder = (this.parent.searchSettings.placeholder != null) ? this.parent.searchSettings.placeholder : getLocaleText(this.parent, 'Search') + ' ' + getLocaleText(this.parent, args.cwd.name.toString());
|
409
409
|
};
|
410
410
|
return BreadCrumbBar;
|
411
411
|
}());
|
@@ -153,9 +153,12 @@ var Toolbar = /** @class */ (function () {
|
|
153
153
|
Toolbar.prototype.toolbarCreateHandler = function () {
|
154
154
|
if (!isNOU(select('#' + this.getId('SortBy'), this.parent.element))) {
|
155
155
|
var items = [
|
156
|
-
{ id: this.getPupupId('name'), text: getLocaleText(this.parent, 'Name'),
|
157
|
-
|
158
|
-
{ id: this.getPupupId('
|
156
|
+
{ id: this.getPupupId('name'), text: getLocaleText(this.parent, 'Name'),
|
157
|
+
iconCss: this.parent.sortBy === 'name' ? CLS.TB_OPTION_DOT : '' },
|
158
|
+
{ id: this.getPupupId('size'), text: getLocaleText(this.parent, 'Size'),
|
159
|
+
iconCss: this.parent.sortBy === 'size' ? CLS.TB_OPTION_DOT : '' },
|
160
|
+
{ id: this.getPupupId('date'), text: getLocaleText(this.parent, 'DateModified'),
|
161
|
+
iconCss: this.parent.sortBy === '_fm_modified' ? CLS.TB_OPTION_DOT : '' },
|
159
162
|
{ separator: true },
|
160
163
|
{ id: this.getPupupId('ascending'), text: getLocaleText(this.parent, 'Ascending'),
|
161
164
|
iconCss: this.parent.sortOrder === 'Ascending' ? CLS.TB_OPTION_TICK : '' },
|
@@ -191,7 +194,6 @@ var Toolbar = /** @class */ (function () {
|
|
191
194
|
cssClass: getCssClass(this.parent, 'e-caret-hide ' + CLS.ROOT_POPUP),
|
192
195
|
items: layoutItems, select: this.layoutChange.bind(this),
|
193
196
|
enableRtl: this.parent.enableRtl,
|
194
|
-
enableHtmlSanitizer: this.parent.enableHtmlSanitizer,
|
195
197
|
content: '<span class="e-tbar-btn-text">' + getLocaleText(this.parent, 'View') + '</span>'
|
196
198
|
});
|
197
199
|
this.layoutBtnObj.isStringTemplate = true;
|
@@ -0,0 +1,38 @@
|
|
1
|
+
import { FileManager } from '../base';
|
2
|
+
export declare class Virtualization {
|
3
|
+
constructor(instance: FileManager);
|
4
|
+
private filemanagerInstance;
|
5
|
+
private largeIconInstance;
|
6
|
+
private rowItemCount;
|
7
|
+
private listElements;
|
8
|
+
private items;
|
9
|
+
private itemList;
|
10
|
+
private scrollPosition;
|
11
|
+
private totalHeight;
|
12
|
+
private listItemHeight;
|
13
|
+
private topElementHeight;
|
14
|
+
private bottomElementHeight;
|
15
|
+
private renderedCount;
|
16
|
+
private lastRowCount;
|
17
|
+
private topElement;
|
18
|
+
private bottomElement;
|
19
|
+
private listDiff;
|
20
|
+
private largeIconsViewItemsCount;
|
21
|
+
setUlElementHeight(): void;
|
22
|
+
private ValidateItemCount;
|
23
|
+
wireScrollEvent(destroy: boolean): void;
|
24
|
+
private onVirtualUiScroll;
|
25
|
+
private getscrollerHeight;
|
26
|
+
private onNormalScroll;
|
27
|
+
private updateUI;
|
28
|
+
private updateSelection;
|
29
|
+
private updateCheckState;
|
30
|
+
/**
|
31
|
+
* For internal use only - Get the module name.
|
32
|
+
*
|
33
|
+
* @returns {string} - returns the module name.
|
34
|
+
* @private
|
35
|
+
*/
|
36
|
+
private getModuleName;
|
37
|
+
destroy(): void;
|
38
|
+
}
|