Browse Source

Merge branch 'master' of ssh://code.fineres.com:7999/~dailer/fineui

es6
zsmj 2 years ago
parent
commit
54fa4c9850
  1. 2
      package.json
  2. 4
      src/widget/downlist/combo.downlist.js
  3. 4
      src/widget/searchmultitextvaluecombo/multitextvalue.combo.search.js

2
package.json

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

4
src/widget/downlist/combo.downlist.js

@ -14,7 +14,8 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
stopPropagation: false,
el: {},
minWidth: 140,
maxHeight: 1000
maxHeight: 1000,
destroyWhenHide: false
});
},
@ -49,6 +50,7 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
direction: o.direction,
belowMouse: o.belowMouse,
stopPropagation: o.stopPropagation,
destroyWhenHide: o.destroyWhenHide,
el: BI.createWidget(o.el, {
type: "bi.icon_trigger",
extraCls: o.iconCls,

4
src/widget/searchmultitextvaluecombo/multitextvalue.combo.search.js

@ -35,7 +35,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.search_multi_select_trigger",
text: o.text,
height: o.height - 2,
height: o.height - (o.simple ? 1 : 2),
// adapter: this.popup,
masker: {
offset: {
@ -111,7 +111,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius",
cls: o.simple ? "bi-border-bottom" : "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,

Loading…
Cancel
Save