@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
@@ -9,25 +9,25 @@ import { DropDownButton } from '@syncfusion/ej2-splitbuttons';
|
|
9
9
|
import { ContextMenu, Toolbar, TreeView } from '@syncfusion/ej2-navigations';
|
10
10
|
import { ContextMenu as ContextMenu$1, Grid, Resize, Sort, VirtualScroll } from '@syncfusion/ej2-grids';
|
11
11
|
|
12
|
-
var __extends = (undefined && undefined.__extends) || (function () {
|
13
|
-
var extendStatics = function (d, b) {
|
14
|
-
extendStatics = Object.setPrototypeOf ||
|
15
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
16
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
17
|
-
return extendStatics(d, b);
|
18
|
-
};
|
19
|
-
return function (d, b) {
|
20
|
-
extendStatics(d, b);
|
21
|
-
function __() { this.constructor = d; }
|
22
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
23
|
-
};
|
24
|
-
})();
|
25
|
-
var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
26
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
27
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
28
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
29
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
30
|
-
};
|
12
|
+
var __extends = (undefined && undefined.__extends) || (function () {
|
13
|
+
var extendStatics = function (d, b) {
|
14
|
+
extendStatics = Object.setPrototypeOf ||
|
15
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
16
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
17
|
+
return extendStatics(d, b);
|
18
|
+
};
|
19
|
+
return function (d, b) {
|
20
|
+
extendStatics(d, b);
|
21
|
+
function __() { this.constructor = d; }
|
22
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
23
|
+
};
|
24
|
+
})();
|
25
|
+
var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
26
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
27
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
28
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
29
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
30
|
+
};
|
31
31
|
/**
|
32
32
|
* Specifies the Ajax settings of the File Manager.
|
33
33
|
*/
|
@@ -51,25 +51,25 @@ var AjaxSettings = /** @__PURE__ @class */ (function (_super) {
|
|
51
51
|
return AjaxSettings;
|
52
52
|
}(ChildProperty));
|
53
53
|
|
54
|
-
var __extends$1 = (undefined && undefined.__extends) || (function () {
|
55
|
-
var extendStatics = function (d, b) {
|
56
|
-
extendStatics = Object.setPrototypeOf ||
|
57
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
58
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
59
|
-
return extendStatics(d, b);
|
60
|
-
};
|
61
|
-
return function (d, b) {
|
62
|
-
extendStatics(d, b);
|
63
|
-
function __() { this.constructor = d; }
|
64
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
65
|
-
};
|
66
|
-
})();
|
67
|
-
var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
68
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
69
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
70
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
71
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
72
|
-
};
|
54
|
+
var __extends$1 = (undefined && undefined.__extends) || (function () {
|
55
|
+
var extendStatics = function (d, b) {
|
56
|
+
extendStatics = Object.setPrototypeOf ||
|
57
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
58
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
59
|
+
return extendStatics(d, b);
|
60
|
+
};
|
61
|
+
return function (d, b) {
|
62
|
+
extendStatics(d, b);
|
63
|
+
function __() { this.constructor = d; }
|
64
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
65
|
+
};
|
66
|
+
})();
|
67
|
+
var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
68
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
69
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
70
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
71
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
72
|
+
};
|
73
73
|
var toolbarItems = ['NewFolder', 'Upload', 'Cut', 'Copy', 'Paste', 'Delete', 'Download', 'Rename',
|
74
74
|
'SortBy', 'Refresh', 'Selection', 'View', 'Details'];
|
75
75
|
/**
|
@@ -89,25 +89,25 @@ var ToolbarSettings = /** @__PURE__ @class */ (function (_super) {
|
|
89
89
|
return ToolbarSettings;
|
90
90
|
}(ChildProperty));
|
91
91
|
|
92
|
-
var __extends$2 = (undefined && undefined.__extends) || (function () {
|
93
|
-
var extendStatics = function (d, b) {
|
94
|
-
extendStatics = Object.setPrototypeOf ||
|
95
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
96
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
97
|
-
return extendStatics(d, b);
|
98
|
-
};
|
99
|
-
return function (d, b) {
|
100
|
-
extendStatics(d, b);
|
101
|
-
function __() { this.constructor = d; }
|
102
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
103
|
-
};
|
104
|
-
})();
|
105
|
-
var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
106
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
107
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
108
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
109
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
110
|
-
};
|
92
|
+
var __extends$2 = (undefined && undefined.__extends) || (function () {
|
93
|
+
var extendStatics = function (d, b) {
|
94
|
+
extendStatics = Object.setPrototypeOf ||
|
95
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
96
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
97
|
+
return extendStatics(d, b);
|
98
|
+
};
|
99
|
+
return function (d, b) {
|
100
|
+
extendStatics(d, b);
|
101
|
+
function __() { this.constructor = d; }
|
102
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
103
|
+
};
|
104
|
+
})();
|
105
|
+
var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
106
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
107
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
108
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
109
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
110
|
+
};
|
111
111
|
/**
|
112
112
|
* Specifies the Search settings of the File Manager.
|
113
113
|
*/
|
@@ -131,25 +131,25 @@ var SearchSettings = /** @__PURE__ @class */ (function (_super) {
|
|
131
131
|
return SearchSettings;
|
132
132
|
}(ChildProperty));
|
133
133
|
|
134
|
-
var __extends$3 = (undefined && undefined.__extends) || (function () {
|
135
|
-
var extendStatics = function (d, b) {
|
136
|
-
extendStatics = Object.setPrototypeOf ||
|
137
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
138
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
139
|
-
return extendStatics(d, b);
|
140
|
-
};
|
141
|
-
return function (d, b) {
|
142
|
-
extendStatics(d, b);
|
143
|
-
function __() { this.constructor = d; }
|
144
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
145
|
-
};
|
146
|
-
})();
|
147
|
-
var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
148
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
149
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
150
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
151
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
152
|
-
};
|
134
|
+
var __extends$3 = (undefined && undefined.__extends) || (function () {
|
135
|
+
var extendStatics = function (d, b) {
|
136
|
+
extendStatics = Object.setPrototypeOf ||
|
137
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
138
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
139
|
+
return extendStatics(d, b);
|
140
|
+
};
|
141
|
+
return function (d, b) {
|
142
|
+
extendStatics(d, b);
|
143
|
+
function __() { this.constructor = d; }
|
144
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
145
|
+
};
|
146
|
+
})();
|
147
|
+
var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
148
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
149
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
150
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
151
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
152
|
+
};
|
153
153
|
/**
|
154
154
|
* Specifies the columns in the details view of the file manager.
|
155
155
|
*/
|
@@ -183,25 +183,25 @@ var DetailsViewSettings = /** @__PURE__ @class */ (function (_super) {
|
|
183
183
|
return DetailsViewSettings;
|
184
184
|
}(ChildProperty));
|
185
185
|
|
186
|
-
var __extends$4 = (undefined && undefined.__extends) || (function () {
|
187
|
-
var extendStatics = function (d, b) {
|
188
|
-
extendStatics = Object.setPrototypeOf ||
|
189
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
190
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
191
|
-
return extendStatics(d, b);
|
192
|
-
};
|
193
|
-
return function (d, b) {
|
194
|
-
extendStatics(d, b);
|
195
|
-
function __() { this.constructor = d; }
|
196
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
197
|
-
};
|
198
|
-
})();
|
199
|
-
var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
200
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
201
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
202
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
203
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
204
|
-
};
|
186
|
+
var __extends$4 = (undefined && undefined.__extends) || (function () {
|
187
|
+
var extendStatics = function (d, b) {
|
188
|
+
extendStatics = Object.setPrototypeOf ||
|
189
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
190
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
191
|
+
return extendStatics(d, b);
|
192
|
+
};
|
193
|
+
return function (d, b) {
|
194
|
+
extendStatics(d, b);
|
195
|
+
function __() { this.constructor = d; }
|
196
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
197
|
+
};
|
198
|
+
})();
|
199
|
+
var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
200
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
201
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
202
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
203
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
204
|
+
};
|
205
205
|
var fileItems = ['Open', '|', 'Cut', 'Copy', '|', 'Delete', 'Download', 'Rename', '|', 'Details'];
|
206
206
|
var folderItems = ['Open', '|', 'Cut', 'Copy', 'Paste', '|', 'Delete', 'Rename', 'Download', '|', 'Details'];
|
207
207
|
var layoutItems = [
|
@@ -230,25 +230,25 @@ var ContextMenuSettings = /** @__PURE__ @class */ (function (_super) {
|
|
230
230
|
return ContextMenuSettings;
|
231
231
|
}(ChildProperty));
|
232
232
|
|
233
|
-
var __extends$5 = (undefined && undefined.__extends) || (function () {
|
234
|
-
var extendStatics = function (d, b) {
|
235
|
-
extendStatics = Object.setPrototypeOf ||
|
236
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
237
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
238
|
-
return extendStatics(d, b);
|
239
|
-
};
|
240
|
-
return function (d, b) {
|
241
|
-
extendStatics(d, b);
|
242
|
-
function __() { this.constructor = d; }
|
243
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
244
|
-
};
|
245
|
-
})();
|
246
|
-
var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
247
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
248
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
249
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
250
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
251
|
-
};
|
233
|
+
var __extends$5 = (undefined && undefined.__extends) || (function () {
|
234
|
+
var extendStatics = function (d, b) {
|
235
|
+
extendStatics = Object.setPrototypeOf ||
|
236
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
237
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
238
|
+
return extendStatics(d, b);
|
239
|
+
};
|
240
|
+
return function (d, b) {
|
241
|
+
extendStatics(d, b);
|
242
|
+
function __() { this.constructor = d; }
|
243
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
244
|
+
};
|
245
|
+
})();
|
246
|
+
var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
247
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
248
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
249
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
250
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
251
|
+
};
|
252
252
|
/**
|
253
253
|
* Specifies the navigationpane settings of the File Manager.
|
254
254
|
*/
|
@@ -272,25 +272,25 @@ var NavigationPaneSettings = /** @__PURE__ @class */ (function (_super) {
|
|
272
272
|
return NavigationPaneSettings;
|
273
273
|
}(ChildProperty));
|
274
274
|
|
275
|
-
var __extends$6 = (undefined && undefined.__extends) || (function () {
|
276
|
-
var extendStatics = function (d, b) {
|
277
|
-
extendStatics = Object.setPrototypeOf ||
|
278
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
279
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
280
|
-
return extendStatics(d, b);
|
281
|
-
};
|
282
|
-
return function (d, b) {
|
283
|
-
extendStatics(d, b);
|
284
|
-
function __() { this.constructor = d; }
|
285
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
286
|
-
};
|
287
|
-
})();
|
288
|
-
var __decorate$6 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
289
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
290
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
291
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
292
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
293
|
-
};
|
275
|
+
var __extends$6 = (undefined && undefined.__extends) || (function () {
|
276
|
+
var extendStatics = function (d, b) {
|
277
|
+
extendStatics = Object.setPrototypeOf ||
|
278
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
279
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
280
|
+
return extendStatics(d, b);
|
281
|
+
};
|
282
|
+
return function (d, b) {
|
283
|
+
extendStatics(d, b);
|
284
|
+
function __() { this.constructor = d; }
|
285
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
286
|
+
};
|
287
|
+
})();
|
288
|
+
var __decorate$6 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
289
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
290
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
291
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
292
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
293
|
+
};
|
294
294
|
/**
|
295
295
|
* Specifies the Ajax settings of the File Manager.
|
296
296
|
*/
|
@@ -317,25 +317,25 @@ var UploadSettings = /** @__PURE__ @class */ (function (_super) {
|
|
317
317
|
return UploadSettings;
|
318
318
|
}(ChildProperty));
|
319
319
|
|
320
|
-
var __extends$7 = (undefined && undefined.__extends) || (function () {
|
321
|
-
var extendStatics = function (d, b) {
|
322
|
-
extendStatics = Object.setPrototypeOf ||
|
323
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
324
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
325
|
-
return extendStatics(d, b);
|
326
|
-
};
|
327
|
-
return function (d, b) {
|
328
|
-
extendStatics(d, b);
|
329
|
-
function __() { this.constructor = d; }
|
330
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
331
|
-
};
|
332
|
-
})();
|
333
|
-
var __decorate$7 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
334
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
335
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
336
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
337
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
338
|
-
};
|
320
|
+
var __extends$7 = (undefined && undefined.__extends) || (function () {
|
321
|
+
var extendStatics = function (d, b) {
|
322
|
+
extendStatics = Object.setPrototypeOf ||
|
323
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
324
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
325
|
+
return extendStatics(d, b);
|
326
|
+
};
|
327
|
+
return function (d, b) {
|
328
|
+
extendStatics(d, b);
|
329
|
+
function __() { this.constructor = d; }
|
330
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
331
|
+
};
|
332
|
+
})();
|
333
|
+
var __decorate$7 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
334
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
335
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
336
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
337
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
338
|
+
};
|
339
339
|
/**
|
340
340
|
* Interface for a class Column
|
341
341
|
*/
|
@@ -5919,6 +5919,9 @@ var ContextMenu$2 = /** @__PURE__ @class */ (function () {
|
|
5919
5919
|
}
|
5920
5920
|
else if (closest(target, '#' + this.parent.element.id + TREE_ID)) {
|
5921
5921
|
uid = closest(target, 'li').getAttribute('data-uid');
|
5922
|
+
if (!isNullOrUndefined(uid)) {
|
5923
|
+
this.parent.navigationpaneModule.treeObj.selectedNodes = [uid];
|
5924
|
+
}
|
5922
5925
|
treeFolder = true;
|
5923
5926
|
}
|
5924
5927
|
/* istanbul ignore next */
|
@@ -6503,25 +6506,25 @@ var defaultLocale = {
|
|
6503
6506
|
'Server-Error': 'ServerError: Invalid response from'
|
6504
6507
|
};
|
6505
6508
|
|
6506
|
-
var __extends$8 = (undefined && undefined.__extends) || (function () {
|
6507
|
-
var extendStatics = function (d, b) {
|
6508
|
-
extendStatics = Object.setPrototypeOf ||
|
6509
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
6510
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6511
|
-
return extendStatics(d, b);
|
6512
|
-
};
|
6513
|
-
return function (d, b) {
|
6514
|
-
extendStatics(d, b);
|
6515
|
-
function __() { this.constructor = d; }
|
6516
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
6517
|
-
};
|
6518
|
-
})();
|
6519
|
-
var __decorate$8 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
6520
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
6521
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
6522
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
6523
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
6524
|
-
};
|
6509
|
+
var __extends$8 = (undefined && undefined.__extends) || (function () {
|
6510
|
+
var extendStatics = function (d, b) {
|
6511
|
+
extendStatics = Object.setPrototypeOf ||
|
6512
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
6513
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
6514
|
+
return extendStatics(d, b);
|
6515
|
+
};
|
6516
|
+
return function (d, b) {
|
6517
|
+
extendStatics(d, b);
|
6518
|
+
function __() { this.constructor = d; }
|
6519
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
6520
|
+
};
|
6521
|
+
})();
|
6522
|
+
var __decorate$8 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
6523
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
6524
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
6525
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
6526
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
6527
|
+
};
|
6525
6528
|
/**
|
6526
6529
|
* The FileManager component allows users to access and manage the file system through the web browser. It can performs the
|
6527
6530
|
* functionalities like add, rename, search, sort, upload and delete files or folders. And also it
|