@ -1,6 +1,6 @@
{
"name": "fineui",
"version": "2.0.20220519215357",
"version": "2.0.20220522141545",
"description": "fineui",
"main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts",
@ -83,8 +83,17 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
setValue: function (v) {
this.popupview.setValue(v);
},
getValue: function () {
return this.popupview.getValue();
adjustWidth: function () {
this.downlistcombo.adjustWidth();
adjustHeight: function () {
this.downlistcombo.adjustHeight();
}
});
BI.DownListCombo.EVENT_CHANGE = "EVENT_CHANGE";
@ -11,4 +11,8 @@ export declare class DownListCombo extends Widget {
showView: (e?: any) => void;
populate: (items?: any) => void;
adjustWidth: (e?: MouseEvent) => void;
adjustHeight: (e?: MouseEvent) => void;