First commit
This commit is contained in:
44
application/demo/fileManager/fileManager.js
Normal file
44
application/demo/fileManager/fileManager.js
Normal file
@@ -0,0 +1,44 @@
|
||||
|
||||
|
||||
import fileupload from './fileManager.upload.js';
|
||||
|
||||
import fileList from "./fileManager.list.js";
|
||||
|
||||
import removeIcons from "./fileManager.removeIcons.js";
|
||||
|
||||
import header from '/elements/header.js';
|
||||
|
||||
import page from '/elements/page.js';
|
||||
|
||||
import previewWindow from "./fileManager.imagePreviewWindow.js"
|
||||
|
||||
import fileChooser from '/elements/fileChooser/fileChooser.js';
|
||||
|
||||
|
||||
export default class fileManager extends page{
|
||||
|
||||
|
||||
width = "100%"
|
||||
|
||||
minHeight = 350;
|
||||
|
||||
flexDirection = "column"
|
||||
|
||||
uploadHeader = new header("Upload");
|
||||
|
||||
fileupload = new fileupload();
|
||||
|
||||
filesHeader = new header("Files");
|
||||
|
||||
removeIcons = new removeIcons();
|
||||
|
||||
fileList = new fileList();
|
||||
|
||||
previewWindow = new previewWindow();
|
||||
|
||||
|
||||
fileChooser = new fileChooser();
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user