From 40777dca5d914acdf3565bfc7e4ba591122de6eb Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Tue, 7 Jun 2022 11:13:28 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E6=97=A0JIRA=E4=BB=BB=E5=8A=A1=20simple?= =?UTF-8?q?=E5=8D=95=E8=BE=B9=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../searchmultitextvaluecombo/multitextvalue.combo.search.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widget/searchmultitextvaluecombo/multitextvalue.combo.search.js b/src/widget/searchmultitextvaluecombo/multitextvalue.combo.search.js index cb7fddf9a..a3def7ccf 100644 --- a/src/widget/searchmultitextvaluecombo/multitextvalue.combo.search.js +++ b/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, From 449a989fd3f5e47304751907af2d24acb6a8db5f Mon Sep 17 00:00:00 2001 From: data Date: Tue, 7 Jun 2022 19:24:29 +0800 Subject: [PATCH 2/4] auto upgrade version to 2.0.20220607192417 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ef5a3210e..f001216d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fineui", - "version": "2.0.20220606145352", + "version": "2.0.20220607192417", "description": "fineui", "main": "dist/fineui.min.js", "types": "dist/lib/index.d.ts", From 01583486e3f296bce1e9005ce40a48cc066dbb8d Mon Sep 17 00:00:00 2001 From: imp Date: Tue, 7 Jun 2022 23:39:20 +0800 Subject: [PATCH 3/4] =?UTF-8?q?=E6=97=A0jira=E4=BB=BB=E5=8A=A1=20combo?= =?UTF-8?q?=E5=B1=9E=E6=80=A7=E7=BB=A7=E6=89=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/widget/downlist/combo.downlist.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/widget/downlist/combo.downlist.js b/src/widget/downlist/combo.downlist.js index b32fab79f..3895ff6b8 100644 --- a/src/widget/downlist/combo.downlist.js +++ b/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, From f9a712d5f8b33ecaee55847fa42c7486878f128c Mon Sep 17 00:00:00 2001 From: data Date: Wed, 8 Jun 2022 00:02:40 +0800 Subject: [PATCH 4/4] auto upgrade version to 2.0.20220608000227 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f001216d6..a616a7f53 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fineui", - "version": "2.0.20220607192417", + "version": "2.0.20220608000227", "description": "fineui", "main": "dist/fineui.min.js", "types": "dist/lib/index.d.ts",