@syncfusion/ej2-filemanager 31.2.12 → 32.1.24
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/README.md +1 -1
- package/dist/ej2-filemanager.min.js +2 -2
- 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 +164 -47
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +175 -47
- 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/package.json +11 -11
- package/src/file-manager/base/classes.d.ts +4 -0
- package/src/file-manager/base/classes.js +4 -0
- package/src/file-manager/base/file-manager-model.d.ts +28 -1
- package/src/file-manager/base/file-manager.d.ts +27 -1
- package/src/file-manager/base/file-manager.js +44 -1
- package/src/file-manager/base/interface.d.ts +4 -1
- package/src/file-manager/common/utility.d.ts +8 -4
- package/src/file-manager/common/utility.js +32 -15
- package/src/file-manager/layout/details-view.js +5 -1
- package/src/file-manager/layout/large-icons-view.js +17 -10
- package/src/file-manager/layout/navigation-pane.js +32 -13
- package/src/file-manager/models/default-locale.js +4 -0
- package/src/file-manager/models/upload-settings-model.d.ts +8 -0
- package/src/file-manager/models/upload-settings.d.ts +7 -0
- package/src/file-manager/models/upload-settings.js +3 -0
- package/src/file-manager/pop-up/context-menu.d.ts +1 -0
- package/src/file-manager/pop-up/context-menu.js +32 -5
- package/styles/bds-lite.css +83 -9
- package/styles/bds-lite.scss +15 -16
- package/styles/bds.css +100 -15
- package/styles/bds.scss +16 -17
- package/styles/bootstrap-dark-lite.css +7 -0
- package/styles/bootstrap-dark-lite.scss +15 -16
- package/styles/bootstrap-dark.css +12 -2
- package/styles/bootstrap-dark.scss +16 -17
- package/styles/bootstrap-lite.css +7 -0
- package/styles/bootstrap-lite.scss +15 -16
- package/styles/bootstrap.css +12 -2
- package/styles/bootstrap.scss +16 -17
- package/styles/bootstrap4-lite.css +7 -0
- package/styles/bootstrap4-lite.scss +15 -16
- package/styles/bootstrap4.css +12 -2
- package/styles/bootstrap4.scss +16 -17
- package/styles/bootstrap5-dark-lite.css +12 -5
- package/styles/bootstrap5-dark-lite.scss +15 -16
- package/styles/bootstrap5-dark.css +17 -7
- package/styles/bootstrap5-dark.scss +16 -17
- package/styles/bootstrap5-lite.css +12 -5
- package/styles/bootstrap5-lite.scss +16 -16
- package/styles/bootstrap5.3-lite.css +255 -0
- package/styles/bootstrap5.3-lite.scss +16 -16
- package/styles/bootstrap5.3.css +428 -2
- package/styles/bootstrap5.3.scss +17 -17
- package/styles/bootstrap5.css +17 -7
- package/styles/bootstrap5.scss +17 -17
- package/styles/fabric-dark-lite.css +7 -0
- package/styles/fabric-dark-lite.scss +16 -16
- package/styles/fabric-dark.css +12 -2
- package/styles/fabric-dark.scss +17 -17
- package/styles/fabric-lite.css +7 -0
- package/styles/fabric-lite.scss +16 -16
- package/styles/fabric.css +12 -2
- package/styles/fabric.scss +17 -17
- package/styles/file-manager/_all.bds.scss +2 -0
- package/styles/file-manager/_all.bootstrap-dark.scss +2 -0
- package/styles/file-manager/_all.bootstrap.scss +2 -0
- package/styles/file-manager/_all.bootstrap4.scss +2 -0
- package/styles/file-manager/_all.bootstrap5-dark.scss +2 -0
- package/styles/file-manager/_all.bootstrap5.3.scss +2 -0
- package/styles/file-manager/_all.bootstrap5.scss +2 -0
- package/styles/file-manager/_all.fabric-dark.scss +2 -0
- package/styles/file-manager/_all.fabric.scss +2 -0
- package/styles/file-manager/_all.fluent-dark.scss +2 -0
- package/styles/file-manager/_all.fluent.scss +2 -0
- package/styles/file-manager/_all.fluent2.scss +2 -0
- package/styles/file-manager/_all.highcontrast-light.scss +2 -0
- package/styles/file-manager/_all.highcontrast.scss +2 -0
- package/styles/file-manager/_all.material-dark.scss +2 -0
- package/styles/file-manager/_all.material.scss +2 -0
- package/styles/file-manager/_all.material3-dark.scss +2 -0
- package/styles/file-manager/_all.material3.scss +2 -0
- package/styles/file-manager/_all.scss +2 -2
- package/styles/file-manager/_all.tailwind-dark.scss +2 -0
- package/styles/file-manager/_all.tailwind.scss +2 -0
- package/styles/file-manager/_all.tailwind3.scss +2 -0
- package/styles/file-manager/_bds-definition.scss +83 -1
- package/styles/file-manager/_bigger.bds.scss +4 -0
- package/styles/file-manager/_bigger.bootstrap-dark.scss +4 -0
- package/styles/file-manager/_bigger.bootstrap.scss +4 -0
- package/styles/file-manager/_bigger.bootstrap4.scss +4 -0
- package/styles/file-manager/_bigger.bootstrap5-dark.scss +4 -0
- package/styles/file-manager/_bigger.bootstrap5.3.scss +4 -0
- package/styles/file-manager/_bigger.bootstrap5.scss +4 -0
- package/styles/file-manager/_bigger.fabric-dark.scss +4 -0
- package/styles/file-manager/_bigger.fabric.scss +4 -0
- package/styles/file-manager/_bigger.fluent-dark.scss +4 -0
- package/styles/file-manager/_bigger.fluent.scss +4 -0
- package/styles/file-manager/_bigger.fluent2.scss +4 -0
- package/styles/file-manager/_bigger.highcontrast-light.scss +4 -0
- package/styles/file-manager/_bigger.highcontrast.scss +4 -0
- package/styles/file-manager/_bigger.material-dark.scss +4 -0
- package/styles/file-manager/_bigger.material.scss +4 -0
- package/styles/file-manager/_bigger.material3-dark.scss +4 -0
- package/styles/file-manager/_bigger.material3.scss +4 -0
- package/styles/file-manager/_bigger.scss +77 -71
- package/styles/file-manager/_bigger.tailwind-dark.scss +4 -0
- package/styles/file-manager/_bigger.tailwind.scss +4 -0
- package/styles/file-manager/_bigger.tailwind3.scss +4 -0
- package/styles/file-manager/_bootstrap-dark-definition.scss +79 -0
- package/styles/file-manager/_bootstrap-definition.scss +79 -0
- package/styles/file-manager/_bootstrap4-definition.scss +79 -0
- package/styles/file-manager/_bootstrap5-dark-definition.scss +322 -1
- package/styles/file-manager/_bootstrap5-definition.scss +80 -3
- package/styles/file-manager/_bootstrap5.3-definition.scss +80 -0
- package/styles/file-manager/_fabric-dark-definition.scss +79 -0
- package/styles/file-manager/_fabric-definition.scss +78 -0
- package/styles/file-manager/_fluent-dark-definition.scss +330 -1
- package/styles/file-manager/_fluent-definition.scss +78 -0
- package/styles/file-manager/_fluent2-definition.scss +82 -1
- package/styles/file-manager/_fusionnew-definition.scss +79 -0
- package/styles/file-manager/_highcontrast-definition.scss +79 -0
- package/styles/file-manager/_highcontrast-light-definition.scss +79 -0
- package/styles/file-manager/_layout.bds.scss +3 -0
- package/styles/file-manager/_layout.bootstrap-dark.scss +3 -0
- package/styles/file-manager/_layout.bootstrap.scss +3 -0
- package/styles/file-manager/_layout.bootstrap4.scss +3 -0
- package/styles/file-manager/_layout.bootstrap5-dark.scss +3 -0
- package/styles/file-manager/_layout.bootstrap5.3.scss +3 -0
- package/styles/file-manager/_layout.bootstrap5.scss +3 -0
- package/styles/file-manager/_layout.fabric-dark.scss +3 -0
- package/styles/file-manager/_layout.fabric.scss +3 -0
- package/styles/file-manager/_layout.fluent-dark.scss +3 -0
- package/styles/file-manager/_layout.fluent.scss +3 -0
- package/styles/file-manager/_layout.fluent2.scss +3 -0
- package/styles/file-manager/_layout.highcontrast-light.scss +3 -0
- package/styles/file-manager/_layout.highcontrast.scss +3 -0
- package/styles/file-manager/_layout.material-dark.scss +3 -0
- package/styles/file-manager/_layout.material.scss +3 -0
- package/styles/file-manager/_layout.material3-dark.scss +3 -0
- package/styles/file-manager/_layout.material3.scss +3 -0
- package/styles/file-manager/_layout.scss +124 -128
- package/styles/file-manager/_layout.tailwind-dark.scss +3 -0
- package/styles/file-manager/_layout.tailwind.scss +3 -0
- package/styles/file-manager/_layout.tailwind3.scss +3 -0
- package/styles/file-manager/_material-dark-definition.scss +78 -0
- package/styles/file-manager/_material-definition.scss +77 -0
- package/styles/file-manager/_material3-dark-definition.scss +310 -1
- package/styles/file-manager/_material3-definition.scss +77 -2
- package/styles/file-manager/_tailwind-dark-definition.scss +315 -1
- package/styles/file-manager/_tailwind-definition.scss +79 -3
- package/styles/file-manager/_tailwind3-definition.scss +105 -2
- package/styles/file-manager/_theme-variables.bds.scss +1 -0
- package/styles/file-manager/_theme-variables.bootstrap-dark.scss +1 -0
- package/styles/file-manager/_theme-variables.bootstrap.scss +1 -0
- package/styles/file-manager/_theme-variables.bootstrap4.scss +1 -0
- package/styles/file-manager/_theme-variables.bootstrap5-dark.scss +1 -0
- package/styles/file-manager/_theme-variables.bootstrap5.3.scss +1 -0
- package/styles/file-manager/_theme-variables.bootstrap5.scss +1 -0
- package/styles/file-manager/_theme-variables.fabric-dark.scss +1 -0
- package/styles/file-manager/_theme-variables.fabric.scss +1 -0
- package/styles/file-manager/_theme-variables.fluent-dark.scss +1 -0
- package/styles/file-manager/_theme-variables.fluent.scss +1 -0
- package/styles/file-manager/_theme-variables.fluent2.scss +1 -0
- package/styles/file-manager/_theme-variables.highcontrast-light.scss +1 -0
- package/styles/file-manager/_theme-variables.highcontrast.scss +1 -0
- package/styles/file-manager/_theme-variables.material-dark.scss +1 -0
- package/styles/file-manager/_theme-variables.material.scss +1 -0
- package/styles/file-manager/_theme-variables.material3-dark.scss +1 -0
- package/styles/file-manager/_theme-variables.material3.scss +1 -0
- package/styles/file-manager/_theme-variables.tailwind-dark.scss +1 -0
- package/styles/file-manager/_theme-variables.tailwind.scss +1 -0
- package/styles/file-manager/_theme-variables.tailwind3.scss +1 -0
- package/styles/file-manager/_theme.bds.scss +4 -0
- package/styles/file-manager/_theme.bootstrap-dark.scss +4 -0
- package/styles/file-manager/_theme.bootstrap.scss +4 -0
- package/styles/file-manager/_theme.bootstrap4.scss +4 -0
- package/styles/file-manager/_theme.bootstrap5-dark.scss +4 -0
- package/styles/file-manager/_theme.bootstrap5.3.scss +4 -0
- package/styles/file-manager/_theme.bootstrap5.scss +4 -0
- package/styles/file-manager/_theme.fabric-dark.scss +4 -0
- package/styles/file-manager/_theme.fabric.scss +4 -0
- package/styles/file-manager/_theme.fluent-dark.scss +4 -0
- package/styles/file-manager/_theme.fluent.scss +4 -0
- package/styles/file-manager/_theme.fluent2.scss +4 -0
- package/styles/file-manager/_theme.highcontrast-light.scss +4 -0
- package/styles/file-manager/_theme.highcontrast.scss +4 -0
- package/styles/file-manager/_theme.material-dark.scss +4 -0
- package/styles/file-manager/_theme.material.scss +4 -0
- package/styles/file-manager/_theme.material3-dark.scss +4 -0
- package/styles/file-manager/_theme.material3.scss +4 -0
- package/styles/file-manager/_theme.scss +5 -1
- package/styles/file-manager/_theme.tailwind-dark.scss +4 -0
- package/styles/file-manager/_theme.tailwind.scss +4 -0
- package/styles/file-manager/_theme.tailwind3.scss +4 -0
- package/styles/file-manager/bds.css +100 -15
- package/styles/file-manager/bds.scss +17 -17
- package/styles/file-manager/bootstrap-dark.css +12 -2
- package/styles/file-manager/bootstrap-dark.scss +17 -17
- package/styles/file-manager/bootstrap.css +12 -2
- package/styles/file-manager/bootstrap.scss +17 -17
- package/styles/file-manager/bootstrap4.css +12 -2
- package/styles/file-manager/bootstrap4.scss +17 -17
- package/styles/file-manager/bootstrap5-dark.css +17 -7
- package/styles/file-manager/bootstrap5-dark.scss +17 -17
- package/styles/file-manager/bootstrap5.3.css +428 -2
- package/styles/file-manager/bootstrap5.3.scss +17 -17
- package/styles/file-manager/bootstrap5.css +17 -7
- package/styles/file-manager/bootstrap5.scss +17 -17
- package/styles/file-manager/fabric-dark.css +12 -2
- package/styles/file-manager/fabric-dark.scss +17 -17
- package/styles/file-manager/fabric.css +12 -2
- package/styles/file-manager/fabric.scss +17 -17
- package/styles/file-manager/fluent-dark.css +12 -2
- package/styles/file-manager/fluent-dark.scss +17 -17
- package/styles/file-manager/fluent.css +12 -2
- package/styles/file-manager/fluent.scss +17 -17
- package/styles/file-manager/fluent2.css +473 -6
- package/styles/file-manager/fluent2.scss +17 -17
- package/styles/file-manager/highcontrast-light.css +12 -2
- package/styles/file-manager/highcontrast-light.scss +17 -17
- package/styles/file-manager/highcontrast.css +12 -2
- package/styles/file-manager/highcontrast.scss +17 -17
- package/styles/file-manager/icons/_bds.scss +1 -0
- package/styles/file-manager/icons/_bootstrap-dark.scss +1 -0
- package/styles/file-manager/icons/_bootstrap.scss +1 -0
- package/styles/file-manager/icons/_bootstrap4.scss +1 -0
- package/styles/file-manager/icons/_bootstrap5-dark.scss +1 -1
- package/styles/file-manager/icons/_bootstrap5.3.scss +1 -0
- package/styles/file-manager/icons/_bootstrap5.scss +1 -0
- package/styles/file-manager/icons/_fabric-dark.scss +1 -0
- package/styles/file-manager/icons/_fabric.scss +1 -0
- package/styles/file-manager/icons/_fluent-dark.scss +1 -1
- package/styles/file-manager/icons/_fluent.scss +1 -0
- package/styles/file-manager/icons/_fluent2.scss +1 -0
- package/styles/file-manager/icons/_fusionnew.scss +1 -0
- package/styles/file-manager/icons/_highcontrast-light.scss +1 -0
- package/styles/file-manager/icons/_highcontrast.scss +1 -0
- package/styles/file-manager/icons/_material-dark.scss +1 -0
- package/styles/file-manager/icons/_material.scss +1 -0
- package/styles/file-manager/icons/_material3-dark.scss +1 -1
- package/styles/file-manager/icons/_material3.scss +1 -0
- package/styles/file-manager/icons/_tailwind-dark.scss +1 -1
- package/styles/file-manager/icons/_tailwind.scss +1 -0
- package/styles/file-manager/icons/_tailwind3.scss +1 -0
- package/styles/file-manager/material-dark.css +12 -2
- package/styles/file-manager/material-dark.scss +17 -17
- package/styles/file-manager/material.css +11 -1
- package/styles/file-manager/material.scss +17 -17
- package/styles/file-manager/material3-dark.css +421 -7
- package/styles/file-manager/material3-dark.scss +17 -18
- package/styles/file-manager/material3.css +429 -7
- package/styles/file-manager/material3.scss +17 -18
- package/styles/file-manager/tailwind-dark.css +18 -8
- package/styles/file-manager/tailwind-dark.scss +17 -17
- package/styles/file-manager/tailwind.css +18 -8
- package/styles/file-manager/tailwind.scss +17 -17
- package/styles/file-manager/tailwind3.css +429 -8
- package/styles/file-manager/tailwind3.scss +17 -17
- package/styles/fluent-dark-lite.css +7 -0
- package/styles/fluent-dark-lite.scss +16 -16
- package/styles/fluent-dark.css +12 -2
- package/styles/fluent-dark.scss +17 -17
- package/styles/fluent-lite.css +7 -0
- package/styles/fluent-lite.scss +16 -16
- package/styles/fluent.css +12 -2
- package/styles/fluent.scss +17 -17
- package/styles/fluent2-lite.css +297 -5
- package/styles/fluent2-lite.scss +16 -16
- package/styles/fluent2.css +473 -6
- package/styles/fluent2.scss +17 -17
- package/styles/highcontrast-light-lite.css +7 -0
- package/styles/highcontrast-light-lite.scss +16 -16
- package/styles/highcontrast-light.css +12 -2
- package/styles/highcontrast-light.scss +17 -17
- package/styles/highcontrast-lite.css +7 -0
- package/styles/highcontrast-lite.scss +16 -16
- package/styles/highcontrast.css +12 -2
- package/styles/highcontrast.scss +17 -17
- package/styles/material-dark-lite.css +7 -0
- package/styles/material-dark-lite.scss +16 -16
- package/styles/material-dark.css +12 -2
- package/styles/material-dark.scss +17 -17
- package/styles/material-lite.css +7 -0
- package/styles/material-lite.scss +15 -16
- package/styles/material.css +11 -1
- package/styles/material.scss +16 -17
- package/styles/material3-dark-lite.css +255 -6
- package/styles/material3-dark-lite.scss +16 -16
- package/styles/material3-dark.css +421 -7
- package/styles/material3-dark.scss +17 -19
- package/styles/material3-lite.css +259 -6
- package/styles/material3-lite.scss +16 -16
- package/styles/material3.css +429 -7
- package/styles/material3.scss +17 -19
- package/styles/tailwind-dark-lite.css +12 -5
- package/styles/tailwind-dark-lite.scss +16 -16
- package/styles/tailwind-dark.css +18 -8
- package/styles/tailwind-dark.scss +17 -17
- package/styles/tailwind-lite.css +12 -5
- package/styles/tailwind-lite.scss +16 -16
- package/styles/tailwind.css +18 -8
- package/styles/tailwind.scss +17 -17
- package/styles/tailwind3-lite.css +276 -6
- package/styles/tailwind3-lite.scss +16 -16
- package/styles/tailwind3.css +429 -8
- package/styles/tailwind3.scss +17 -17
|
@@ -36,6 +36,13 @@ export declare class UploadSettings extends ChildProperty<UploadSettings> {
|
|
|
36
36
|
* @default false
|
|
37
37
|
*/
|
|
38
38
|
directoryUpload: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Specifies a Boolean value that indicates whether files are uploaded sequentially in the FileManager component.
|
|
41
|
+
* This property allows to select or drop to upload the files. When enabled, files are uploaded one at a time, reducing network load for large files.
|
|
42
|
+
*
|
|
43
|
+
* @default false
|
|
44
|
+
*/
|
|
45
|
+
sequentialUpload: boolean;
|
|
39
46
|
/**
|
|
40
47
|
* Specifies the minimum file size to be uploaded in bytes.
|
|
41
48
|
* The property is used to make sure that you cannot upload empty files and small files.
|
|
@@ -38,6 +38,9 @@ var UploadSettings = /** @class */ (function (_super) {
|
|
|
38
38
|
__decorate([
|
|
39
39
|
Property(false)
|
|
40
40
|
], UploadSettings.prototype, "directoryUpload", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
Property(false)
|
|
43
|
+
], UploadSettings.prototype, "sequentialUpload", void 0);
|
|
41
44
|
__decorate([
|
|
42
45
|
Property(0)
|
|
43
46
|
], UploadSettings.prototype, "minFileSize", void 0);
|
|
@@ -28,6 +28,7 @@ export declare class ContextMenu {
|
|
|
28
28
|
constructor(parent?: IFileManager);
|
|
29
29
|
private render;
|
|
30
30
|
onBeforeItemRender(args: MenuEventArgs): void;
|
|
31
|
+
renderFileFolderIcons(menuArgs: MenuEventArgs, fileFolderIcon: string, isDirectory: boolean): void;
|
|
31
32
|
onBeforeClose(args: BeforeOpenCloseMenuEventArgs): void;
|
|
32
33
|
onBeforeOpen(args: BeforeOpenCloseMenuEventArgs): void;
|
|
33
34
|
private updateActiveModule;
|
|
@@ -60,6 +60,18 @@ var ContextMenu = /** @class */ (function () {
|
|
|
60
60
|
element.insertBefore(iconSpan, this.parent.view === 'Details' ? element.childNodes[1] : element.childNodes[0]);
|
|
61
61
|
iconSpan.setAttribute('class', CLS.ICON_GRID + ' ' + CLS.MENU_ICON);
|
|
62
62
|
}
|
|
63
|
+
if (args.item.id === this.getMenuId('fileupload')) {
|
|
64
|
+
this.renderFileFolderIcons(args, CLS.ICON_FILE, !this.parent.uploadObj.directoryUpload);
|
|
65
|
+
}
|
|
66
|
+
if (args.item.id === this.getMenuId('folderupload')) {
|
|
67
|
+
this.renderFileFolderIcons(args, CLS.ICON_FOLDER, this.parent.uploadObj.directoryUpload);
|
|
68
|
+
}
|
|
69
|
+
};
|
|
70
|
+
ContextMenu.prototype.renderFileFolderIcons = function (menuArgs, fileFolderIcon, isDirectory) {
|
|
71
|
+
var iconSpan = createElement('span');
|
|
72
|
+
var element = menuArgs.element;
|
|
73
|
+
element.insertBefore(iconSpan, isDirectory ? element.childNodes[1] : element.childNodes[0]);
|
|
74
|
+
iconSpan.setAttribute('class', fileFolderIcon + ' ' + CLS.MENU_ICON);
|
|
63
75
|
};
|
|
64
76
|
ContextMenu.prototype.onBeforeClose = function (args) {
|
|
65
77
|
var eventArgs = {
|
|
@@ -387,7 +399,7 @@ var ContextMenu = /** @class */ (function () {
|
|
|
387
399
|
}
|
|
388
400
|
var itemText = args.item.id.substr((this.parent.element.id + '_cm_').length);
|
|
389
401
|
var details;
|
|
390
|
-
if (itemText === 'refresh' || itemText === 'newfolder' || itemText === '
|
|
402
|
+
if (itemText === 'refresh' || itemText === 'newfolder' || itemText === 'fileupload' || itemText === 'folderupload') {
|
|
391
403
|
details = [getPathObject(this.parent)];
|
|
392
404
|
this.parent.itemData = details;
|
|
393
405
|
}
|
|
@@ -497,9 +509,6 @@ var ContextMenu = /** @class */ (function () {
|
|
|
497
509
|
case 'newfolder':
|
|
498
510
|
createNewFolder(_this.parent);
|
|
499
511
|
break;
|
|
500
|
-
case 'upload':
|
|
501
|
-
uploadItem(_this.parent);
|
|
502
|
-
break;
|
|
503
512
|
case 'name':
|
|
504
513
|
case 'size':
|
|
505
514
|
case 'date':
|
|
@@ -521,6 +530,12 @@ var ContextMenu = /** @class */ (function () {
|
|
|
521
530
|
case 'detailsview':
|
|
522
531
|
updateLayout(_this.parent, 'Details');
|
|
523
532
|
break;
|
|
533
|
+
case 'fileupload':
|
|
534
|
+
case 'folderupload':
|
|
535
|
+
_this.parent.setProperties({ uploadSettings: { directoryUpload: itemText === 'fileupload' ? false : true } });
|
|
536
|
+
_this.parent.dataBind();
|
|
537
|
+
uploadItem(_this.parent);
|
|
538
|
+
break;
|
|
524
539
|
}
|
|
525
540
|
}
|
|
526
541
|
});
|
|
@@ -592,7 +607,19 @@ var ContextMenu = /** @class */ (function () {
|
|
|
592
607
|
item = { id: itemId, text: itemText, iconCss: CLS.ICON_OPEN };
|
|
593
608
|
break;
|
|
594
609
|
case 'Upload':
|
|
595
|
-
item = {
|
|
610
|
+
item = {
|
|
611
|
+
id: itemId, text: itemText, iconCss: CLS.ICON_UPLOAD,
|
|
612
|
+
items: [
|
|
613
|
+
{
|
|
614
|
+
id: this.getMenuId('folderupload'), text: getLocaleText(this.parent, 'Upload-Folder'),
|
|
615
|
+
iconCss: !this.parent.uploadObj.directoryUpload ? null : CLS.TB_OPTION_TICK
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
id: this.getMenuId('fileupload'), text: getLocaleText(this.parent, 'Upload-File'),
|
|
619
|
+
iconCss: this.parent.uploadObj.directoryUpload ? null : CLS.TB_OPTION_TICK
|
|
620
|
+
}
|
|
621
|
+
]
|
|
622
|
+
};
|
|
596
623
|
break;
|
|
597
624
|
case 'Cut':
|
|
598
625
|
item = { id: itemId, text: itemText, iconCss: CLS.ICON_CUT };
|
package/styles/bds-lite.css
CHANGED
|
@@ -207,6 +207,65 @@
|
|
|
207
207
|
transform: rotate(360deg);
|
|
208
208
|
}
|
|
209
209
|
}
|
|
210
|
+
/* stylelint-disable */
|
|
211
|
+
.e-btn.e-primary:focus {
|
|
212
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
|
|
213
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.e-btn.e-success:focus {
|
|
217
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
|
|
218
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.e-btn.e-info:focus {
|
|
222
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
|
|
223
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.e-btn.e-warning:focus {
|
|
227
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
|
|
228
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.e-btn.e-danger:focus {
|
|
232
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
|
|
233
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.e-btn.e-outline.e-info {
|
|
237
|
+
background: transparent !important;
|
|
238
|
+
border-color: var(--color-sf-utility-info-border-color) !important;
|
|
239
|
+
color: var(--color-sf-utility-info-text) !important;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.e-btn.e-outline.e-info:hover {
|
|
243
|
+
background: var(--color-sf-utility-info-bg-color-hover) !important;
|
|
244
|
+
border-color: var(--color-sf-utility-info-border-color) !important;
|
|
245
|
+
color: var(--color-sf-utility-info-text-hover) !important;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.e-btn.e-outline.e-info:active {
|
|
249
|
+
background: var(--color-sf-utility-info-bg-color-pressed) !important;
|
|
250
|
+
border-color: var(--color-sf-utility-info-border-color) !important;
|
|
251
|
+
color: var(--color-sf-utility-info-text-hover) !important;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.e-btn.e-flat.e-info {
|
|
255
|
+
color: var(--color-sf-utility-info-text) !important;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.e-bigger .e-btn,
|
|
259
|
+
.e-bigger .e-btn,
|
|
260
|
+
.e-bigger .e-css.e-btn,
|
|
261
|
+
.e-bigger.e-css.e-btn {
|
|
262
|
+
font-size: 14px;
|
|
263
|
+
line-height: 1.572em;
|
|
264
|
+
padding: 8px 15px;
|
|
265
|
+
border-radius: 8px !important;
|
|
266
|
+
font-weight: 600;
|
|
267
|
+
}
|
|
268
|
+
|
|
210
269
|
.e-dropdown-popup {
|
|
211
270
|
position: absolute;
|
|
212
271
|
border-radius: 8px;
|
|
@@ -449,6 +508,11 @@
|
|
|
449
508
|
content: "\e774";
|
|
450
509
|
}
|
|
451
510
|
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
/*! FileManager's bds theme wise override definitions and variables */
|
|
452
516
|
/* stylelint-disable property-no-vendor-prefix */
|
|
453
517
|
ejs-filemanager {
|
|
454
518
|
display: block;
|
|
@@ -490,7 +554,7 @@ ejs-filemanager {
|
|
|
490
554
|
height: 18px;
|
|
491
555
|
margin: 2px 4px 0;
|
|
492
556
|
width: 18px;
|
|
493
|
-
padding:
|
|
557
|
+
padding: 0 8px;
|
|
494
558
|
}
|
|
495
559
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn .e-tbar-btn-text.e-tbar-ddb-text {
|
|
496
560
|
padding-right: 0;
|
|
@@ -600,7 +664,7 @@ ejs-filemanager {
|
|
|
600
664
|
display: inline;
|
|
601
665
|
}
|
|
602
666
|
.e-filemanager .e-address .e-addressbar-ul .e-breadcrumb-menu .e-breadcrumb-submenu {
|
|
603
|
-
height:
|
|
667
|
+
height: 24px;
|
|
604
668
|
}
|
|
605
669
|
.e-filemanager .e-address .e-list-text {
|
|
606
670
|
cursor: pointer;
|
|
@@ -895,13 +959,13 @@ ejs-filemanager {
|
|
|
895
959
|
display: -webkit-inline-box;
|
|
896
960
|
display: -ms-inline-flexbox;
|
|
897
961
|
display: inline-flex;
|
|
898
|
-
height:
|
|
962
|
+
height: 36px;
|
|
899
963
|
}
|
|
900
964
|
.e-filemanager .e-fe-clone .e-fe-content .e-fe-name {
|
|
901
965
|
display: inline-block;
|
|
902
|
-
font-size:
|
|
966
|
+
font-size: 13px;
|
|
903
967
|
line-height: 22px;
|
|
904
|
-
margin:
|
|
968
|
+
margin: auto 8px;
|
|
905
969
|
max-width: 150px;
|
|
906
970
|
overflow: hidden;
|
|
907
971
|
text-overflow: ellipsis;
|
|
@@ -910,7 +974,7 @@ ejs-filemanager {
|
|
|
910
974
|
.e-filemanager .e-fe-clone .e-fe-content .e-fe-icon {
|
|
911
975
|
display: inline-block;
|
|
912
976
|
height: 20px;
|
|
913
|
-
margin:
|
|
977
|
+
margin: auto 8px;
|
|
914
978
|
width: 20px;
|
|
915
979
|
}
|
|
916
980
|
.e-filemanager .e-fe-clone .e-fe-count {
|
|
@@ -920,7 +984,7 @@ ejs-filemanager {
|
|
|
920
984
|
height: 20px;
|
|
921
985
|
margin: -10px 0 0 -10px;
|
|
922
986
|
width: 20px;
|
|
923
|
-
line-height:
|
|
987
|
+
line-height: 22px;
|
|
924
988
|
position: relative;
|
|
925
989
|
text-align: center;
|
|
926
990
|
top: 0;
|
|
@@ -943,7 +1007,7 @@ ejs-filemanager {
|
|
|
943
1007
|
padding-left: 12px;
|
|
944
1008
|
}
|
|
945
1009
|
.e-filemanager.e-rtl .e-address .e-search-wrap .e-input-group .e-input {
|
|
946
|
-
margin: 0
|
|
1010
|
+
margin: 0 24px 0 0;
|
|
947
1011
|
padding: 0;
|
|
948
1012
|
}
|
|
949
1013
|
.e-filemanager.e-rtl .e-address .e-addressbar-ul {
|
|
@@ -1105,7 +1169,7 @@ ejs-filemanager {
|
|
|
1105
1169
|
}
|
|
1106
1170
|
.e-fe-popup .e-fe-error {
|
|
1107
1171
|
font-size: 12px;
|
|
1108
|
-
line-height:
|
|
1172
|
+
line-height: 1.5;
|
|
1109
1173
|
padding-top: 4px;
|
|
1110
1174
|
}
|
|
1111
1175
|
.e-fe-popup .e-upload {
|
|
@@ -1194,6 +1258,11 @@ ejs-filemanager {
|
|
|
1194
1258
|
height: calc(100% - 35px);
|
|
1195
1259
|
}
|
|
1196
1260
|
|
|
1261
|
+
|
|
1262
|
+
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
/*! FileManager's bds theme wise override definitions and variables */
|
|
1197
1266
|
.e-filemanager {
|
|
1198
1267
|
background: transparent;
|
|
1199
1268
|
border-color: var(--color-sf-border-secondary);
|
|
@@ -1347,4 +1416,9 @@ ejs-filemanager {
|
|
|
1347
1416
|
}
|
|
1348
1417
|
.e-fe-popup .e-upload .e-upload-actions {
|
|
1349
1418
|
border-bottom-color: var(--color-sf-border-secondary);
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
.e-filemanager .e-grid.sf-grid :is(.e-headercontent th.e-headercell:not(.e-menu-item):not(.e-editedbatchcell).e-fe-checkbox, .e-content td.e-rowcell:not(.e-menu-item):not(.e-editedbatchcell).e-fe-checkbox):is(:focus, :focus-visible) {
|
|
1422
|
+
-webkit-box-shadow: none;
|
|
1423
|
+
box-shadow: none;
|
|
1350
1424
|
}
|
package/styles/bds-lite.scss
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
3
|
-
@
|
|
4
|
-
@
|
|
5
|
-
@
|
|
6
|
-
@
|
|
7
|
-
@
|
|
8
|
-
@
|
|
9
|
-
@
|
|
10
|
-
@
|
|
11
|
-
@
|
|
12
|
-
@
|
|
13
|
-
@
|
|
14
|
-
@
|
|
15
|
-
@
|
|
16
|
-
@import 'file-manager/all.scss';
|
|
1
|
+
@use 'ej2-inputs/styles/input/bds-definition' as *;
|
|
2
|
+
@use 'ej2-inputs/styles/textbox/bds-definition' as *;
|
|
3
|
+
@use 'ej2-inputs/styles/uploader/bds-definition' as *;
|
|
4
|
+
@use 'ej2-popups/styles/dialog/bds-definition' as *;
|
|
5
|
+
@use 'ej2-popups/styles/spinner/bds-definition' as *;
|
|
6
|
+
@use 'ej2-buttons/styles/check-box/bds-definition' as *;
|
|
7
|
+
@use 'ej2-splitbuttons/styles/drop-down-button/bds-definition' as *;
|
|
8
|
+
@use 'ej2-navigations/styles/context-menu/bds-definition' as *;
|
|
9
|
+
@use 'ej2-navigations/styles/treeview/bds-definition' as *;
|
|
10
|
+
@use 'ej2-navigations/styles/toolbar/bds-definition' as *;
|
|
11
|
+
@use 'ej2-layouts/styles/splitter/bds-definition' as *;
|
|
12
|
+
@use 'ej2-grids/styles/grid/bds-definition' as *;
|
|
13
|
+
@use 'file-manager/bds-definition' as *;
|
|
14
|
+
@use 'file-manager/icons/bds' as *;
|
|
15
|
+
@use 'file-manager/all.bds' as *;
|
package/styles/bds.css
CHANGED
|
@@ -207,6 +207,65 @@
|
|
|
207
207
|
transform: rotate(360deg);
|
|
208
208
|
}
|
|
209
209
|
}
|
|
210
|
+
/* stylelint-disable */
|
|
211
|
+
.e-btn.e-primary:focus {
|
|
212
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
|
|
213
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.e-btn.e-success:focus {
|
|
217
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
|
|
218
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.e-btn.e-info:focus {
|
|
222
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
|
|
223
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.e-btn.e-warning:focus {
|
|
227
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
|
|
228
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.e-btn.e-danger:focus {
|
|
232
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
|
|
233
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.e-btn.e-outline.e-info {
|
|
237
|
+
background: transparent !important;
|
|
238
|
+
border-color: var(--color-sf-utility-info-border-color) !important;
|
|
239
|
+
color: var(--color-sf-utility-info-text) !important;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.e-btn.e-outline.e-info:hover {
|
|
243
|
+
background: var(--color-sf-utility-info-bg-color-hover) !important;
|
|
244
|
+
border-color: var(--color-sf-utility-info-border-color) !important;
|
|
245
|
+
color: var(--color-sf-utility-info-text-hover) !important;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.e-btn.e-outline.e-info:active {
|
|
249
|
+
background: var(--color-sf-utility-info-bg-color-pressed) !important;
|
|
250
|
+
border-color: var(--color-sf-utility-info-border-color) !important;
|
|
251
|
+
color: var(--color-sf-utility-info-text-hover) !important;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.e-btn.e-flat.e-info {
|
|
255
|
+
color: var(--color-sf-utility-info-text) !important;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.e-bigger .e-btn,
|
|
259
|
+
.e-bigger .e-btn,
|
|
260
|
+
.e-bigger .e-css.e-btn,
|
|
261
|
+
.e-bigger.e-css.e-btn {
|
|
262
|
+
font-size: 14px;
|
|
263
|
+
line-height: 1.572em;
|
|
264
|
+
padding: 8px 15px;
|
|
265
|
+
border-radius: 8px !important;
|
|
266
|
+
font-weight: 600;
|
|
267
|
+
}
|
|
268
|
+
|
|
210
269
|
.e-dropdown-popup {
|
|
211
270
|
position: absolute;
|
|
212
271
|
border-radius: 8px;
|
|
@@ -449,6 +508,11 @@
|
|
|
449
508
|
content: "\e774";
|
|
450
509
|
}
|
|
451
510
|
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
/*! FileManager's bds theme wise override definitions and variables */
|
|
452
516
|
/* stylelint-disable property-no-vendor-prefix */
|
|
453
517
|
ejs-filemanager {
|
|
454
518
|
display: block;
|
|
@@ -490,7 +554,7 @@ ejs-filemanager {
|
|
|
490
554
|
height: 18px;
|
|
491
555
|
margin: 2px 4px 0;
|
|
492
556
|
width: 18px;
|
|
493
|
-
padding:
|
|
557
|
+
padding: 0 8px;
|
|
494
558
|
}
|
|
495
559
|
.e-filemanager .e-toolbar .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn .e-tbar-btn-text.e-tbar-ddb-text {
|
|
496
560
|
padding-right: 0;
|
|
@@ -600,7 +664,7 @@ ejs-filemanager {
|
|
|
600
664
|
display: inline;
|
|
601
665
|
}
|
|
602
666
|
.e-filemanager .e-address .e-addressbar-ul .e-breadcrumb-menu .e-breadcrumb-submenu {
|
|
603
|
-
height:
|
|
667
|
+
height: 24px;
|
|
604
668
|
}
|
|
605
669
|
.e-filemanager .e-address .e-list-text {
|
|
606
670
|
cursor: pointer;
|
|
@@ -895,13 +959,13 @@ ejs-filemanager {
|
|
|
895
959
|
display: -webkit-inline-box;
|
|
896
960
|
display: -ms-inline-flexbox;
|
|
897
961
|
display: inline-flex;
|
|
898
|
-
height:
|
|
962
|
+
height: 36px;
|
|
899
963
|
}
|
|
900
964
|
.e-filemanager .e-fe-clone .e-fe-content .e-fe-name {
|
|
901
965
|
display: inline-block;
|
|
902
|
-
font-size:
|
|
966
|
+
font-size: 13px;
|
|
903
967
|
line-height: 22px;
|
|
904
|
-
margin:
|
|
968
|
+
margin: auto 8px;
|
|
905
969
|
max-width: 150px;
|
|
906
970
|
overflow: hidden;
|
|
907
971
|
text-overflow: ellipsis;
|
|
@@ -910,7 +974,7 @@ ejs-filemanager {
|
|
|
910
974
|
.e-filemanager .e-fe-clone .e-fe-content .e-fe-icon {
|
|
911
975
|
display: inline-block;
|
|
912
976
|
height: 20px;
|
|
913
|
-
margin:
|
|
977
|
+
margin: auto 8px;
|
|
914
978
|
width: 20px;
|
|
915
979
|
}
|
|
916
980
|
.e-filemanager .e-fe-clone .e-fe-count {
|
|
@@ -920,7 +984,7 @@ ejs-filemanager {
|
|
|
920
984
|
height: 20px;
|
|
921
985
|
margin: -10px 0 0 -10px;
|
|
922
986
|
width: 20px;
|
|
923
|
-
line-height:
|
|
987
|
+
line-height: 22px;
|
|
924
988
|
position: relative;
|
|
925
989
|
text-align: center;
|
|
926
990
|
top: 0;
|
|
@@ -943,7 +1007,7 @@ ejs-filemanager {
|
|
|
943
1007
|
padding-left: 12px;
|
|
944
1008
|
}
|
|
945
1009
|
.e-filemanager.e-rtl .e-address .e-search-wrap .e-input-group .e-input {
|
|
946
|
-
margin: 0
|
|
1010
|
+
margin: 0 24px 0 0;
|
|
947
1011
|
padding: 0;
|
|
948
1012
|
}
|
|
949
1013
|
.e-filemanager.e-rtl .e-address .e-addressbar-ul {
|
|
@@ -1105,7 +1169,7 @@ ejs-filemanager {
|
|
|
1105
1169
|
}
|
|
1106
1170
|
.e-fe-popup .e-fe-error {
|
|
1107
1171
|
font-size: 12px;
|
|
1108
|
-
line-height:
|
|
1172
|
+
line-height: 1.5;
|
|
1109
1173
|
padding-top: 4px;
|
|
1110
1174
|
}
|
|
1111
1175
|
.e-fe-popup .e-upload {
|
|
@@ -1194,6 +1258,11 @@ ejs-filemanager {
|
|
|
1194
1258
|
height: calc(100% - 35px);
|
|
1195
1259
|
}
|
|
1196
1260
|
|
|
1261
|
+
|
|
1262
|
+
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
/*! FileManager's bds theme wise override definitions and variables */
|
|
1197
1266
|
.e-filemanager {
|
|
1198
1267
|
background: transparent;
|
|
1199
1268
|
border-color: var(--color-sf-border-secondary);
|
|
@@ -1349,6 +1418,22 @@ ejs-filemanager {
|
|
|
1349
1418
|
border-bottom-color: var(--color-sf-border-secondary);
|
|
1350
1419
|
}
|
|
1351
1420
|
|
|
1421
|
+
.e-filemanager .e-grid.sf-grid :is(.e-headercontent th.e-headercell:not(.e-menu-item):not(.e-editedbatchcell).e-fe-checkbox, .e-content td.e-rowcell:not(.e-menu-item):not(.e-editedbatchcell).e-fe-checkbox):is(:focus, :focus-visible) {
|
|
1422
|
+
-webkit-box-shadow: none;
|
|
1423
|
+
box-shadow: none;
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
|
|
1427
|
+
|
|
1428
|
+
|
|
1429
|
+
|
|
1430
|
+
/*! FileManager's bds theme wise override definitions and variables */
|
|
1431
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1432
|
+
|
|
1433
|
+
|
|
1434
|
+
|
|
1435
|
+
|
|
1436
|
+
/*! FileManager's bds theme wise override definitions and variables */
|
|
1352
1437
|
.e-filemanager.e-fe-mobile .e-toolbar .e-popup-up-icon.e-icons,
|
|
1353
1438
|
.e-filemanager.e-fe-mobile .e-toolbar .e-popup-down-icon.e-icons,
|
|
1354
1439
|
.e-filemanager.e-fe-mobile .e-toolbar-items .e-toolbar-item .e-btn-icon.e-icons,
|
|
@@ -1393,7 +1478,7 @@ ejs-filemanager {
|
|
|
1393
1478
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-grid,
|
|
1394
1479
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-grid,
|
|
1395
1480
|
.e-filemanager.e-bigger.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-grid {
|
|
1396
|
-
padding:
|
|
1481
|
+
padding: 0;
|
|
1397
1482
|
}
|
|
1398
1483
|
.e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-details,
|
|
1399
1484
|
.e-bigger .e-filemanager.e-fe-mobile .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-fe-details,
|
|
@@ -1528,7 +1613,7 @@ ejs-filemanager {
|
|
|
1528
1613
|
.e-filemanager.e-fe-mobile .e-grid .e-content .e-rowcell.e-fe-checkbox,
|
|
1529
1614
|
.e-bigger .e-filemanager.e-fe-mobile .e-grid .e-content .e-rowcell.e-fe-checkbox,
|
|
1530
1615
|
.e-filemanager.e-bigger.e-fe-mobile .e-grid .e-content .e-rowcell.e-fe-checkbox {
|
|
1531
|
-
padding:
|
|
1616
|
+
padding: 6px;
|
|
1532
1617
|
}
|
|
1533
1618
|
.e-filemanager.e-fe-mobile .e-grid .e-gridcontent .e-fe-grid-icon,
|
|
1534
1619
|
.e-bigger .e-filemanager.e-fe-mobile .e-grid .e-gridcontent .e-fe-grid-icon,
|
|
@@ -1632,7 +1717,7 @@ ejs-filemanager {
|
|
|
1632
1717
|
.e-filemanager.e-bigger.e-fe-m-filter .e-address .e-search-wrap .e-fe-search {
|
|
1633
1718
|
left: 0;
|
|
1634
1719
|
margin-left: 8px;
|
|
1635
|
-
margin-top:
|
|
1720
|
+
margin-top: 3px;
|
|
1636
1721
|
width: 30px;
|
|
1637
1722
|
}
|
|
1638
1723
|
.e-filemanager.e-fe-m-filter .e-address .e-addressbar-ul,
|
|
@@ -1704,7 +1789,7 @@ ejs-filemanager {
|
|
|
1704
1789
|
height: 22px;
|
|
1705
1790
|
margin: 4px 4px 0;
|
|
1706
1791
|
width: 22px;
|
|
1707
|
-
padding:
|
|
1792
|
+
padding: 0 10px;
|
|
1708
1793
|
}
|
|
1709
1794
|
.e-bigger .e-filemanager .e-toolbar .e-toolbar-pop .e-toolbar-item .e-dropdown-btn .e-btn-icon.e-icons.e-caret,
|
|
1710
1795
|
.e-filemanager.e-bigger .e-toolbar .e-toolbar-pop .e-toolbar-item .e-dropdown-btn .e-btn-icon.e-icons.e-caret {
|
|
@@ -1825,7 +1910,7 @@ ejs-filemanager {
|
|
|
1825
1910
|
.e-bigger .e-filemanager .e-grid .e-gridcontent .e-fe-grid-icon,
|
|
1826
1911
|
.e-filemanager.e-bigger .e-grid .e-gridheader .e-fe-grid-icon,
|
|
1827
1912
|
.e-filemanager.e-bigger .e-grid .e-gridcontent .e-fe-grid-icon {
|
|
1828
|
-
padding-left:
|
|
1913
|
+
padding-left: 16px;
|
|
1829
1914
|
}
|
|
1830
1915
|
.e-bigger .e-filemanager .e-grid .e-content tr.e-row.e-fe-drop-folder .e-rowcell,
|
|
1831
1916
|
.e-filemanager.e-bigger .e-grid .e-content tr.e-row.e-fe-drop-folder .e-rowcell {
|
|
@@ -1834,7 +1919,7 @@ ejs-filemanager {
|
|
|
1834
1919
|
}
|
|
1835
1920
|
.e-bigger .e-filemanager .e-grid .e-fe-icon,
|
|
1836
1921
|
.e-filemanager.e-bigger .e-grid .e-fe-icon {
|
|
1837
|
-
height:
|
|
1922
|
+
height: 35px;
|
|
1838
1923
|
width: 24px;
|
|
1839
1924
|
}
|
|
1840
1925
|
.e-bigger .e-filemanager .e-grid .e-empty,
|
package/styles/bds.scss
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
3
|
-
@
|
|
4
|
-
@
|
|
5
|
-
@
|
|
6
|
-
@
|
|
7
|
-
@
|
|
8
|
-
@
|
|
9
|
-
@
|
|
10
|
-
@
|
|
11
|
-
@
|
|
12
|
-
@
|
|
13
|
-
@
|
|
14
|
-
@
|
|
15
|
-
@
|
|
16
|
-
@
|
|
17
|
-
@import 'file-manager/bigger.scss';
|
|
1
|
+
@use 'ej2-inputs/styles/input/bds-definition' as *;
|
|
2
|
+
@use 'ej2-inputs/styles/textbox/bds-definition' as *;
|
|
3
|
+
@use 'ej2-inputs/styles/uploader/bds-definition' as *;
|
|
4
|
+
@use 'ej2-popups/styles/dialog/bds-definition' as *;
|
|
5
|
+
@use 'ej2-popups/styles/spinner/bds-definition' as *;
|
|
6
|
+
@use 'ej2-buttons/styles/check-box/bds-definition' as *;
|
|
7
|
+
@use 'ej2-splitbuttons/styles/drop-down-button/bds-definition' as *;
|
|
8
|
+
@use 'ej2-navigations/styles/context-menu/bds-definition' as *;
|
|
9
|
+
@use 'ej2-navigations/styles/treeview/bds-definition' as *;
|
|
10
|
+
@use 'ej2-navigations/styles/toolbar/bds-definition' as *;
|
|
11
|
+
@use 'ej2-layouts/styles/splitter/bds-definition' as *;
|
|
12
|
+
@use 'ej2-grids/styles/grid/bds-definition' as *;
|
|
13
|
+
@use 'file-manager/bds-definition' as *;
|
|
14
|
+
@use 'file-manager/icons/bds' as *;
|
|
15
|
+
@use 'file-manager/all.bds' as *;
|
|
16
|
+
@use 'file-manager/bigger.bds' as *;
|
|
@@ -224,6 +224,7 @@
|
|
|
224
224
|
content: "\e614";
|
|
225
225
|
}
|
|
226
226
|
|
|
227
|
+
/*! FileManager's bootstrap theme wise override definitions and variables */
|
|
227
228
|
/* stylelint-disable property-no-vendor-prefix */
|
|
228
229
|
ejs-filemanager {
|
|
229
230
|
display: block;
|
|
@@ -964,6 +965,7 @@ ejs-filemanager {
|
|
|
964
965
|
height: calc(100% - 34px);
|
|
965
966
|
}
|
|
966
967
|
|
|
968
|
+
/*! FileManager's bootstrap theme wise override definitions and variables */
|
|
967
969
|
.e-filemanager {
|
|
968
970
|
background: #1a1a1a;
|
|
969
971
|
border-color: #505050;
|
|
@@ -1122,4 +1124,9 @@ ejs-filemanager {
|
|
|
1122
1124
|
}
|
|
1123
1125
|
.e-fe-popup .e-upload .e-upload-actions {
|
|
1124
1126
|
border-bottom-color: #0070f0;
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
.e-filemanager .e-grid.sf-grid :is(.e-headercontent th.e-headercell:not(.e-menu-item):not(.e-editedbatchcell).e-fe-checkbox, .e-content td.e-rowcell:not(.e-menu-item):not(.e-editedbatchcell).e-fe-checkbox):is(:focus, :focus-visible) {
|
|
1130
|
+
-webkit-box-shadow: none;
|
|
1131
|
+
box-shadow: none;
|
|
1125
1132
|
}
|
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
3
|
-
@
|
|
4
|
-
@
|
|
5
|
-
@
|
|
6
|
-
@
|
|
7
|
-
@
|
|
8
|
-
@
|
|
9
|
-
@
|
|
10
|
-
@
|
|
11
|
-
@
|
|
12
|
-
@
|
|
13
|
-
@
|
|
14
|
-
@
|
|
15
|
-
@
|
|
16
|
-
@import 'file-manager/all.scss';
|
|
1
|
+
@use 'ej2-inputs/styles/input/bootstrap-dark-definition' as *;
|
|
2
|
+
@use 'ej2-inputs/styles/textbox/bootstrap-dark-definition' as *;
|
|
3
|
+
@use 'ej2-inputs/styles/uploader/bootstrap-dark-definition' as *;
|
|
4
|
+
@use 'ej2-popups/styles/dialog/bootstrap-dark-definition' as *;
|
|
5
|
+
@use 'ej2-popups/styles/spinner/bootstrap-dark-definition' as *;
|
|
6
|
+
@use 'ej2-buttons/styles/check-box/bootstrap-dark-definition' as *;
|
|
7
|
+
@use 'ej2-splitbuttons/styles/drop-down-button/bootstrap-dark-definition' as *;
|
|
8
|
+
@use 'ej2-navigations/styles/context-menu/bootstrap-dark-definition' as *;
|
|
9
|
+
@use 'ej2-navigations/styles/treeview/bootstrap-dark-definition' as *;
|
|
10
|
+
@use 'ej2-navigations/styles/toolbar/bootstrap-dark-definition' as *;
|
|
11
|
+
@use 'ej2-layouts/styles/splitter/bootstrap-dark-definition' as *;
|
|
12
|
+
@use 'ej2-grids/styles/grid/bootstrap-dark-definition' as *;
|
|
13
|
+
@use 'file-manager/bootstrap-dark-definition' as *;
|
|
14
|
+
@use 'file-manager/icons/bootstrap-dark' as *;
|
|
15
|
+
@use 'file-manager/all.bootstrap-dark' as *;
|