@ -1,6 +1,6 @@
{
"name": "fineui",
"version": "2.0.20211108191350",
"version": "2.0.20211109101231",
"description": "fineui",
"main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts",
@ -150,3 +150,5 @@ BI.Pane = BI.inherit(BI.Widget, {
});
BI.Pane.EVENT_LOADED = "EVENT_LOADED";
BI.Pane.EVENT_LOADING = "EVENT_LOADING";
BI.shortcut("bi.pane", BI.Pane);
@ -78,6 +78,10 @@ BI.MultifileEditor = BI.inherit(BI.Widget, {
this.file.select();
},
getQueue: function () {
return this.file.getQueue();
getValue: function () {
return this.file.getValue();
@ -671,6 +671,10 @@
return this.wrap ? this.wrap.attach_array : [];
return this.wrap.files;
reset: function () {
if (this.wrap) {
this.wrap.attach_array = [];
@ -21,4 +21,13 @@ export declare class MultifileEditor extends Widget {
upload(): void;
reset(): void;
getQueue(): {
fileName: string;
lastModified: number;
lastModifiedDate: Date;
name: string;
size: number;
type: string;
}[];
}