Browse Source

Merging in latest from upstream (VISUAL/fineui:refs/heads/master)

* commit '718f83e1f9181c3d2136a915bca1540124cb1e02':
  auto upgrade version to 2.0.20230107203454
  JSY-25808 fix: fineui-复选下拉框bug
es6
Zhenfei.Li-李振飞 2 years ago
parent
commit
1a05f1ffab
  1. 2
      package.json
  2. 2
      src/case/combo/textvaluecombo/combo.textvalue.js

2
package.json

@ -1,6 +1,6 @@
{
"name": "fineui",
"version": "2.0.20230106121528",
"version": "2.0.20230107203454",
"description": "fineui",
"main": "dist/fineui_without_conflict.min.js",
"types": "dist/lib/index.d.ts",

2
src/case/combo/textvaluecombo/combo.textvalue.js

@ -144,7 +144,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, {
el: popup,
value: o.value,
maxHeight: 240,
minHeight: 60
minHeight: (o.chooseType === BI.ButtonGroup.CHOOSE_TYPE_MULTI && o.allowSelectAll) ? 55 : 25
}
};
},

Loading…
Cancel
Save