From 3dc140e92a2b7df370ee057fd79df7dee7f2357c Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Fri, 28 Jun 2019 11:10:36 +0800 Subject: [PATCH 1/4] =?UTF-8?q?Revert=20"=E6=97=A0JIRA=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=20combo=20destroy=E7=9A=84=E6=97=B6=E5=80=99=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E5=88=A0=E9=99=A4resizers"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 851a6bb129efe7c285531d6a8d0819517b75a825. --- src/base/combination/combo.js | 3 ++- src/base/combination/searcher.js | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/base/combination/combo.js b/src/base/combination/combo.js index c8faff2a5..aa3aecb11 100644 --- a/src/base/combination/combo.js +++ b/src/base/combination/combo.js @@ -505,13 +505,14 @@ BI.Combo = BI.inherit(BI.Widget, { this._toggle(); }, - destroyed: function () { + destroy: function () { BI.Widget._renderEngine.createElement(document).unbind("mousedown." + this.getName()) .unbind("mousewheel." + this.getName()) .unbind("mouseenter." + this.getName()) .unbind("mousemove." + this.getName()) .unbind("mouseleave." + this.getName()); BI.Resizers.remove(this.getName()); + BI.Combo.superclass.destroy.apply(this, arguments); } }); BI.Combo.EVENT_TRIGGER_CHANGE = "EVENT_TRIGGER_CHANGE"; diff --git a/src/base/combination/searcher.js b/src/base/combination/searcher.js index 07423dc24..9b2cd5b8e 100644 --- a/src/base/combination/searcher.js +++ b/src/base/combination/searcher.js @@ -295,8 +295,9 @@ BI.Searcher = BI.inherit(BI.Widget, { this.popupView && this.popupView.empty(); }, - destroyed: function () { + destroy: function () { BI.Maskers.remove(this.getName()); + BI.Searcher.superclass.destroy.apply(this, arguments); } }); BI.Searcher.EVENT_CHANGE = "EVENT_CHANGE"; From 78863c26f51cdd9b91f99c07c48e93191f03ea2e Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Fri, 28 Jun 2019 11:37:56 +0800 Subject: [PATCH 2/4] =?UTF-8?q?Revert=20"BI-44244=20=E9=80=82=E9=85=8D?= =?UTF-8?q?=E6=A0=91=E7=9A=84=E9=AB=98=E5=BA=A6"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit cf821cac08ee2203cc1c19b6b08c0b96e824830a. --- public/css/background.css | 4 ++-- src/case/button/treeitem/item.first.treeleaf.js | 4 ++-- src/case/button/treeitem/item.last.treeleaf.js | 4 ++-- src/case/button/treeitem/item.mid.treeleaf.js | 4 ++-- src/css/base/colorchooser/colorpicker/editor.css | 4 ++-- src/css/base/tree/ztree.css | 6 +++--- src/css/resource/background.css | 4 ++-- src/less/base/tree/ztree.less | 6 +++--- src/less/resource/background.less | 4 ++-- src/widget/multilayerselecttree/node/node.first.plus.js | 2 +- src/widget/multilayerselecttree/node/node.last.plus.js | 2 +- src/widget/multilayerselecttree/node/node.mid.plus.js | 2 +- src/widget/multilayerselecttree/node/node.plus.js | 2 +- src/widget/multilayersingletree/node/node.first.plus.js | 2 +- src/widget/multilayersingletree/node/node.last.plus.js | 2 +- src/widget/multilayersingletree/node/node.mid.plus.js | 2 +- .../multilayersingletree/treeitem/item.first.treeleaf.js | 2 +- .../multilayersingletree/treeitem/item.last.treeleaf.js | 2 +- .../multilayersingletree/treeitem/item.mid.treeleaf.js | 2 +- ui/css/background.css | 4 ++-- 20 files changed, 32 insertions(+), 32 deletions(-) diff --git a/public/css/background.css b/public/css/background.css index f136e8464..1440b9854 100644 --- a/public/css/background.css +++ b/public/css/background.css @@ -17,10 +17,10 @@ background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/tree_vertical_line_4.png') no-repeat center center; } .ztree li ul.line { - background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/tree_vertical_line_1.png') repeat-y 0 0; + background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/tree_vertical_line_1.png') repeat-y 1px 0; } .bi-theme-dark .ztree li ul.line { - background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 0 0; + background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 1px 0; } .ztree li span.button.chk.checkbox_false_full { background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/2x/icon/check_box_normal.png') no-repeat center center; diff --git a/src/case/button/treeitem/item.first.treeleaf.js b/src/case/button/treeitem/item.first.treeleaf.js index 89c0f3884..d2a0865f7 100644 --- a/src/case/button/treeitem/item.first.treeleaf.js +++ b/src/case/button/treeitem/item.first.treeleaf.js @@ -42,11 +42,11 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 15, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 15, height: o.height } }), { diff --git a/src/case/button/treeitem/item.last.treeleaf.js b/src/case/button/treeitem/item.last.treeleaf.js index 557efa5b0..6f815bfe9 100644 --- a/src/case/button/treeitem/item.last.treeleaf.js +++ b/src/case/button/treeitem/item.last.treeleaf.js @@ -42,11 +42,11 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 15, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 15, height: o.height } }), { diff --git a/src/case/button/treeitem/item.mid.treeleaf.js b/src/case/button/treeitem/item.mid.treeleaf.js index 0dbafcefd..d1558e03d 100644 --- a/src/case/button/treeitem/item.mid.treeleaf.js +++ b/src/case/button/treeitem/item.mid.treeleaf.js @@ -42,11 +42,11 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 15, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 15, height: o.height } }), { diff --git a/src/css/base/colorchooser/colorpicker/editor.css b/src/css/base/colorchooser/colorpicker/editor.css index 770680b91..ffd4e071e 100644 --- a/src/css/base/colorchooser/colorpicker/editor.css +++ b/src/css/base/colorchooser/colorpicker/editor.css @@ -17,10 +17,10 @@ background: url('images/1x/icon/tree_vertical_line_4.png') no-repeat center center; } .ztree li ul.line { - background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 1px 0; } .bi-theme-dark .ztree li ul.line { - background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 1px 0; } .ztree li span.button.chk.checkbox_false_full { background: url('images/2x/icon/check_box_normal.png') no-repeat center center; diff --git a/src/css/base/tree/ztree.css b/src/css/base/tree/ztree.css index c538f84b0..efe4551d1 100644 --- a/src/css/base/tree/ztree.css +++ b/src/css/base/tree/ztree.css @@ -17,7 +17,7 @@ } .ztree li ul { margin: 0; - padding: 0 0 0 22px; + padding: 0 0 0 18px; } .ztree li a { padding: 1px 3px 0 0; @@ -137,8 +137,8 @@ background-position: -42px -56px; } .ztree li span.button.switch { - width: 30px; - height: 30px; + width: 25px; + height: 25px; } .ztree li span.button.noline_open { background-position: -92px -72px; diff --git a/src/css/resource/background.css b/src/css/resource/background.css index 330936127..1adb7984d 100644 --- a/src/css/resource/background.css +++ b/src/css/resource/background.css @@ -17,10 +17,10 @@ background: url('images/1x/icon/tree_vertical_line_4.png') no-repeat center center; } .ztree li ul.line { - background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 1px 0; } .bi-theme-dark .ztree li ul.line { - background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 1px 0; } .ztree li span.button.chk.checkbox_false_full { background: url('images/2x/icon/check_box_normal.png') no-repeat center center; diff --git a/src/less/base/tree/ztree.less b/src/less/base/tree/ztree.less index c60e18629..26f2146d4 100644 --- a/src/less/base/tree/ztree.less +++ b/src/less/base/tree/ztree.less @@ -22,7 +22,7 @@ .ztree li ul { margin: 0; - padding: 0 0 0 22px + padding: 0 0 0 18px } .ztree li a { @@ -181,8 +181,8 @@ } .ztree li span.button.switch { - width: 30px; - height: 30px + width: 25px; + height: 25px } .ztree li span.button.noline_open { diff --git a/src/less/resource/background.less b/src/less/resource/background.less index 120593e34..e1eb69d35 100644 --- a/src/less/resource/background.less +++ b/src/less/resource/background.less @@ -29,12 +29,12 @@ } .ztree li ul.line { - .imagePath(@icon-tree-vertical-line-1, 0, 0, repeat-y); + .imagePath(@icon-tree-vertical-line-1, 0, 1px, repeat-y); } .bi-theme-dark { .ztree li ul.line { - .imagePath(@icon-tree-vertical-line-1-theme-dark, 0, 0, repeat-y); + .imagePath(@icon-tree-vertical-line-1-theme-dark, 0, 1px, repeat-y); } } diff --git a/src/widget/multilayerselecttree/node/node.first.plus.js b/src/widget/multilayerselecttree/node/node.first.plus.js index fa7e37243..b54c986e2 100644 --- a/src/widget/multilayerselecttree/node/node.first.plus.js +++ b/src/widget/multilayerselecttree/node/node.first.plus.js @@ -56,7 +56,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 15, height: o.height }); }); diff --git a/src/widget/multilayerselecttree/node/node.last.plus.js b/src/widget/multilayerselecttree/node/node.last.plus.js index d3a6a9900..3795754e1 100644 --- a/src/widget/multilayerselecttree/node/node.last.plus.js +++ b/src/widget/multilayerselecttree/node/node.last.plus.js @@ -56,7 +56,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 15, height: o.height }); }); diff --git a/src/widget/multilayerselecttree/node/node.mid.plus.js b/src/widget/multilayerselecttree/node/node.mid.plus.js index 9466654d0..05988523d 100644 --- a/src/widget/multilayerselecttree/node/node.mid.plus.js +++ b/src/widget/multilayerselecttree/node/node.mid.plus.js @@ -56,7 +56,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 15, height: o.height }); }); diff --git a/src/widget/multilayerselecttree/node/node.plus.js b/src/widget/multilayerselecttree/node/node.plus.js index 8d1a3679a..57f02ee20 100644 --- a/src/widget/multilayerselecttree/node/node.plus.js +++ b/src/widget/multilayerselecttree/node/node.plus.js @@ -56,7 +56,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 15, height: o.height }); }); diff --git a/src/widget/multilayersingletree/node/node.first.plus.js b/src/widget/multilayersingletree/node/node.first.plus.js index 5024d2904..8165397ab 100644 --- a/src/widget/multilayersingletree/node/node.first.plus.js +++ b/src/widget/multilayersingletree/node/node.first.plus.js @@ -36,7 +36,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 15, height: o.height }); }); diff --git a/src/widget/multilayersingletree/node/node.last.plus.js b/src/widget/multilayersingletree/node/node.last.plus.js index 1d00ad20f..943b91d79 100644 --- a/src/widget/multilayersingletree/node/node.last.plus.js +++ b/src/widget/multilayersingletree/node/node.last.plus.js @@ -36,7 +36,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 15, height: o.height }); }); diff --git a/src/widget/multilayersingletree/node/node.mid.plus.js b/src/widget/multilayersingletree/node/node.mid.plus.js index 3d0a6eb17..7fe025d52 100644 --- a/src/widget/multilayersingletree/node/node.mid.plus.js +++ b/src/widget/multilayersingletree/node/node.mid.plus.js @@ -36,7 +36,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 15, height: o.height }); }); diff --git a/src/widget/multilayersingletree/treeitem/item.first.treeleaf.js b/src/widget/multilayersingletree/treeitem/item.first.treeleaf.js index 9ad705a67..be8e3b10e 100644 --- a/src/widget/multilayersingletree/treeitem/item.first.treeleaf.js +++ b/src/widget/multilayersingletree/treeitem/item.first.treeleaf.js @@ -57,7 +57,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 15, height: o.height }); }); diff --git a/src/widget/multilayersingletree/treeitem/item.last.treeleaf.js b/src/widget/multilayersingletree/treeitem/item.last.treeleaf.js index 3edfc4865..4d639f1a5 100644 --- a/src/widget/multilayersingletree/treeitem/item.last.treeleaf.js +++ b/src/widget/multilayersingletree/treeitem/item.last.treeleaf.js @@ -56,7 +56,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 15, height: o.height }); }); diff --git a/src/widget/multilayersingletree/treeitem/item.mid.treeleaf.js b/src/widget/multilayersingletree/treeitem/item.mid.treeleaf.js index ce65c03f5..c1e14f9a6 100644 --- a/src/widget/multilayersingletree/treeitem/item.mid.treeleaf.js +++ b/src/widget/multilayersingletree/treeitem/item.mid.treeleaf.js @@ -56,7 +56,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 15, height: o.height }); }); diff --git a/ui/css/background.css b/ui/css/background.css index 82c81f2c3..be8d957f1 100644 --- a/ui/css/background.css +++ b/ui/css/background.css @@ -17,10 +17,10 @@ background: url('resources?path=/com/fr/web/ui/images/1x/icon/tree_vertical_line_4.png') no-repeat center center; } .ztree li ul.line { - background: url('resources?path=/com/fr/web/ui/images/1x/icon/tree_vertical_line_1.png') repeat-y 0 0; + background: url('resources?path=/com/fr/web/ui/images/1x/icon/tree_vertical_line_1.png') repeat-y 1px 0; } .bi-theme-dark .ztree li ul.line { - background: url('resources?path=/com/fr/web/ui/images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 0 0; + background: url('resources?path=/com/fr/web/ui/images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 1px 0; } .ztree li span.button.chk.checkbox_false_full { background: url('resources?path=/com/fr/web/ui/images/2x/icon/check_box_normal.png') no-repeat center center; From 977e60429f3ca12b5dd799047f1cb049027a9ec2 Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Fri, 28 Jun 2019 11:41:02 +0800 Subject: [PATCH 3/4] revert --- demo/js/case/list/demo.select_list.js | 3 +-- demo/js/core/abstract/combination/demo.combo.js | 2 +- demo/js/core/layout/demo.absolute.js | 5 ++--- demo/js/widget/basewidget/demo.items.js | 3 --- dist/images/1x/icon/dark/tree_collapse_1.png | Bin 210 -> 193 bytes dist/images/1x/icon/dark/tree_collapse_2.png | Bin 247 -> 230 bytes dist/images/1x/icon/dark/tree_collapse_3.png | Bin 257 -> 247 bytes dist/images/1x/icon/dark/tree_collapse_4.png | Bin 244 -> 236 bytes dist/images/1x/icon/dark/tree_expand_1.png | Bin 188 -> 171 bytes dist/images/1x/icon/dark/tree_expand_2.png | Bin 218 -> 213 bytes dist/images/1x/icon/dark/tree_expand_3.png | Bin 230 -> 227 bytes dist/images/1x/icon/dark/tree_expand_4.png | Bin 217 -> 214 bytes .../1x/icon/dark/tree_vertical_line_1.png | Bin 102 -> 102 bytes .../1x/icon/dark/tree_vertical_line_2.png | Bin 166 -> 143 bytes .../1x/icon/dark/tree_vertical_line_3.png | Bin 171 -> 162 bytes .../1x/icon/dark/tree_vertical_line_4.png | Bin 153 -> 148 bytes .../1x/icon/dark/tree_vertical_line_5.png | Bin 147 -> 138 bytes dist/images/1x/icon/tree_collapse_1.png | Bin 209 -> 192 bytes dist/images/1x/icon/tree_collapse_2.png | Bin 243 -> 224 bytes dist/images/1x/icon/tree_collapse_3.png | Bin 253 -> 240 bytes dist/images/1x/icon/tree_collapse_4.png | Bin 239 -> 228 bytes dist/images/1x/icon/tree_expand_1.png | Bin 188 -> 170 bytes dist/images/1x/icon/tree_expand_2.png | Bin 214 -> 203 bytes dist/images/1x/icon/tree_expand_3.png | Bin 226 -> 218 bytes dist/images/1x/icon/tree_expand_4.png | Bin 214 -> 204 bytes dist/images/1x/icon/tree_vertical_line_1.png | Bin 102 -> 102 bytes dist/images/1x/icon/tree_vertical_line_2.png | Bin 154 -> 144 bytes dist/images/1x/icon/tree_vertical_line_3.png | Bin 171 -> 162 bytes dist/images/1x/icon/tree_vertical_line_4.png | Bin 153 -> 148 bytes dist/images/1x/icon/tree_vertical_line_5.png | Bin 147 -> 138 bytes dist/images/2x/icon/dark/tree_collapse_1.png | Bin 311 -> 272 bytes dist/images/2x/icon/dark/tree_collapse_2.png | Bin 370 -> 333 bytes dist/images/2x/icon/dark/tree_collapse_3.png | Bin 394 -> 338 bytes dist/images/2x/icon/dark/tree_collapse_4.png | Bin 366 -> 320 bytes dist/images/2x/icon/dark/tree_expand_1.png | Bin 285 -> 244 bytes dist/images/2x/icon/dark/tree_expand_2.png | Bin 349 -> 311 bytes dist/images/2x/icon/dark/tree_expand_3.png | Bin 374 -> 316 bytes dist/images/2x/icon/dark/tree_expand_4.png | Bin 345 -> 299 bytes .../2x/icon/dark/tree_vertical_line_1.png | Bin 124 -> 117 bytes .../2x/icon/dark/tree_vertical_line_2.png | Bin 265 -> 215 bytes .../2x/icon/dark/tree_vertical_line_3.png | Bin 287 -> 238 bytes .../2x/icon/dark/tree_vertical_line_4.png | Bin 243 -> 206 bytes .../2x/icon/dark/tree_vertical_line_5.png | Bin 238 -> 210 bytes dist/images/2x/icon/tree_collapse_1.png | Bin 309 -> 274 bytes dist/images/2x/icon/tree_collapse_2.png | Bin 372 -> 336 bytes dist/images/2x/icon/tree_collapse_3.png | Bin 397 -> 344 bytes dist/images/2x/icon/tree_collapse_4.png | Bin 372 -> 328 bytes dist/images/2x/icon/tree_expand_1.png | Bin 283 -> 246 bytes dist/images/2x/icon/tree_expand_2.png | Bin 345 -> 309 bytes dist/images/2x/icon/tree_expand_3.png | Bin 371 -> 316 bytes dist/images/2x/icon/tree_expand_4.png | Bin 341 -> 300 bytes dist/images/2x/icon/tree_vertical_line_1.png | Bin 124 -> 117 bytes dist/images/2x/icon/tree_vertical_line_2.png | Bin 241 -> 220 bytes dist/images/2x/icon/tree_vertical_line_3.png | Bin 286 -> 242 bytes dist/images/2x/icon/tree_vertical_line_4.png | Bin 242 -> 211 bytes dist/images/2x/icon/tree_vertical_line_5.png | Bin 238 -> 215 bytes src/case/button/node/node.arrow.js | 4 ++-- src/case/button/node/node.first.plus.js | 2 +- src/case/button/node/node.icon.arrow.js | 2 +- src/case/button/node/node.last.plus.js | 2 +- src/case/button/node/node.mid.plus.js | 2 +- .../button/node/node.multilayer.icon.arrow.js | 2 +- src/case/button/node/node.plus.js | 2 +- src/case/button/treeitem/item.first.treeleaf.js | 10 +++++----- src/case/button/treeitem/item.icon.treeleaf.js | 2 +- src/case/button/treeitem/item.last.treeleaf.js | 10 +++++----- src/case/button/treeitem/item.mid.treeleaf.js | 10 +++++----- .../treeitem/item.multilayer.icon.treeleaf.js | 2 +- src/case/button/treeitem/item.treetextleaf.js | 2 +- src/case/calendar/calendar.js | 4 ++-- src/case/calendar/calendar.year.js | 4 ++-- src/case/checkbox/check.first.treenode.js | 4 ++-- src/case/checkbox/check.last.treenode.js | 4 ++-- src/case/checkbox/check.mid.treenode.js | 4 ++-- src/case/checkbox/check.treenode.js | 4 ++-- src/case/combo/iconcombo/popup.iconcombo.js | 4 ++-- .../icontextvaluecombo/combo.icontextvalue.js | 2 +- .../icontextvaluecombo/popup.icontextvalue.js | 4 ++-- .../textvaluecheckcombo/popup.textvaluecheck.js | 2 +- .../combo/textvaluecombo/combo.textvalue.js | 2 +- .../textvaluecombo/combo.textvaluesmall.js | 2 +- .../combo/textvaluecombo/popup.textvalue.js | 4 ++-- src/css/base/tree/ztree.css | 4 ++-- src/less/base/tree/ztree.less | 4 ++-- src/widget/downlist/item.downlist.js | 2 +- src/widget/downlist/popup.downlist.js | 2 +- src/widget/multilayerdownlist/popup.downlist.js | 2 +- .../node/node.first.plus.js | 6 +++--- .../multilayerselecttree/node/node.last.plus.js | 6 +++--- .../multilayerselecttree/node/node.mid.plus.js | 6 +++--- .../multilayerselecttree/node/node.plus.js | 6 +++--- .../node/node.first.plus.js | 6 +++--- .../multilayersingletree/node/node.last.plus.js | 6 +++--- .../multilayersingletree/node/node.mid.plus.js | 6 +++--- .../multilayersingletree/node/node.plus.js | 4 ++-- .../treeitem/item.first.treeleaf.js | 6 +++--- .../treeitem/item.last.treeleaf.js | 6 +++--- .../treeitem/item.mid.treeleaf.js | 6 +++--- src/widget/multiselect/multiselect.loader.js | 2 +- .../multitextvalue.loader.search.js | 2 +- src/widget/selecttree/nodes/node.first.plus.js | 2 +- src/widget/selecttree/nodes/node.last.plus.js | 2 +- src/widget/selecttree/nodes/node.mid.plus.js | 2 +- src/widget/selecttree/nodes/node.plus.js | 2 +- src/widget/singleselect/singleselect.loader.js | 2 +- src/widget/year/popup.year.js | 2 +- src/widget/yearmonth/card.static.yearmonth.js | 4 ++-- src/widget/yearmonth/popup.yearmonth.js | 2 +- .../yearquarter/card.static.yearquarter.js | 2 +- src/widget/yearquarter/popup.yearquarter.js | 2 +- 110 files changed, 104 insertions(+), 109 deletions(-) diff --git a/demo/js/case/list/demo.select_list.js b/demo/js/case/list/demo.select_list.js index 1e3d83bfb..f32d426be 100644 --- a/demo/js/case/list/demo.select_list.js +++ b/demo/js/case/list/demo.select_list.js @@ -18,8 +18,7 @@ Demo.Func = BI.inherit(BI.Widget, { } }, items: BI.createItems(BI.deepClone(Demo.CONSTANTS.SIMPLE_ITEMS), { - type: "bi.multi_select_item", - height: 30 + type: "bi.multi_select_item" }) }); } diff --git a/demo/js/core/abstract/combination/demo.combo.js b/demo/js/core/abstract/combination/demo.combo.js index 7fbb2fbb6..e849a1824 100644 --- a/demo/js/core/abstract/combination/demo.combo.js +++ b/demo/js/core/abstract/combination/demo.combo.js @@ -152,7 +152,7 @@ Demo.Func = BI.inherit(BI.Widget, { type: "bi.button_group", items: BI.createItems(BI.deepClone(this.years), { type: "bi.single_select_radio_item", - height: 30, + height: 25, handler: function (v) { } diff --git a/demo/js/core/layout/demo.absolute.js b/demo/js/core/layout/demo.absolute.js index 3a58108c8..2137c24df 100644 --- a/demo/js/core/layout/demo.absolute.js +++ b/demo/js/core/layout/demo.absolute.js @@ -5,16 +5,15 @@ Demo.AbsoluteLayout = BI.inherit(BI.Widget, { render: function () { return { type: "bi.absolute", - scrollx: true, items: [{ el: { type: "bi.label", text: "绝对布局", cls: "layout-bg1", - width: 800, + width: 300, height: 200 }, - right: 100, + left: 100, top: 100 }] }; diff --git a/demo/js/widget/basewidget/demo.items.js b/demo/js/widget/basewidget/demo.items.js index 7130c7311..0562519b3 100644 --- a/demo/js/widget/basewidget/demo.items.js +++ b/demo/js/widget/basewidget/demo.items.js @@ -16,11 +16,9 @@ Demo.Items = BI.inherit(BI.Widget, { text: "单选item" }, { type: "bi.single_select_item", - height: 30, text: "单选项" }, { type: "bi.single_select_radio_item", - height: 30, text: "单选项" }, { type: "bi.label", @@ -28,7 +26,6 @@ Demo.Items = BI.inherit(BI.Widget, { text: "复选item" }, { type: "bi.multi_select_item", - height: 30, text: "复选项" }, { type: "bi.switch", diff --git a/dist/images/1x/icon/dark/tree_collapse_1.png b/dist/images/1x/icon/dark/tree_collapse_1.png index b0f79d361969afcb6b194ac98c13fcdbccfda4b2..9297ac164f54c6938da6b155bcf5193b92003850 100644 GIT binary patch literal 193 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|sy$sCLp*qs z6C_v{D>`Iy7(6n1aC!Rs|Ai+Pc7Og@@W`Z{HP+DR{)rR9GrOnOzPnSl=8=J;nnbh2 ztObd0m$6;uljqwn^M9n6UIjjmhSZ zMeI5&+Ls-D!e*?&=h2m%#Ld2EqP3PK$WEZe&SoqOcjSdX&+tf}1#}mKr>mdKI;Vst E0KDHvm;e9( diff --git a/dist/images/1x/icon/dark/tree_collapse_2.png b/dist/images/1x/icon/dark/tree_collapse_2.png index 2f752d8549681994f5aa24c27a2c2749eef64c5f..0b901c254cec49dfa91237e309b4381a2a0230af 100644 GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|7I?ZihIsHM zCrGd^R&>bZFnDD2;PUkM{|iqp?Ed_*;E_o?YpkKs{SzmIXLe7meRrp9%_9RxHHl`4 zSrZa(oKZN*l*1+tMynpu0;Z^vmVAjFLI6>mv4fdr< zGZ+P)3Y^~1`Ow?dgn!Y&RK}_g2b%cgd(HViWV%c{EY5!7700HD!5of9m4g{A9Zhyj edbyy-oFOkoM|IVewo;&589ZJ6T-G@yGywoxH(8zl literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|HhQ`^hIsHM zCrGd^Ry2@eTCC`h#$h0|T7UO~r}i7Omiw(x%+TZB*w%RE?VWAy3yRA1#hbDmxMp+& zwK`v17MopgLO^WUiKIiv9)}qwh)otbuJC;^yS~x=^SUf=j%t68`+exos>Le1B#*d> zE8k3-@lfHg!!)JOj!6m(n|Tg3Pk52UEOy2Da#GI09+^EqZm1kJ+}O%&$KAe7rbtZj vs=Bjr;lx*`1HY!UAINy5Wc}jBNzQ^QlBMR3Zb@Vbrr5UI>*>rPCV0b`uzNTHUIm)`C{kvw+k<~)Opc0 z@u!>Hyc02N-V{IImMq%NIcZ84ha{V^$V|19OewubHf829-m_rXDP$Wl;pYYmrlopy zap%}3R6Uu(CUjWx_ks`>V}>PyEDmkS!iT4KWyrZSpJw{ZxhrPYRY07doRq>j^ zgk5uQe-j9K_wK1v0Ivt5>(7eI>r7oDn|uXb#gdIDL~LZ-JY$Ik+fO#ziitn#@)Q&J zm7nL!s$M*+;8_vUt%>e2u`?$QcK7=R$p}YV zJlI^2aau85FsRnZL|A;~KABMeGL9ZKy-m%1^Q0K#STwIs;Wsw`dV|5!)z4*}Q$iB} DSd3aj diff --git a/dist/images/1x/icon/dark/tree_collapse_4.png b/dist/images/1x/icon/dark/tree_collapse_4.png index 67bdd3d54d1423ad1fafe74bcdf5a85259d1fc9c..6f96e27808186ec446b8e21f6f0654168759dbc5 100644 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|mU+53hIsHM zCnzx1{Q0xDk>zQ^QlBMR3Zb@Vbrr5UI>*>rPCV0b`uzNTHUIm)`C{kvw+k<~)Opc0 z@u!>Hyc02N-V{IImMq%NIcZ84ha{V^$V|19OewubHf829-m_rXDP$Wl;pYYmrlopy zap%}3R6Uu(CUjWx_ks`>V}>PyEDmkS!iT4KWyrZSpJw{ZxhrPYRY07doRq>j^ zgk5uQe-j9K_wK1v0Ivt5>(7eI>r7oDn|uXb#gdIDL~LZ-JY$Ik+fO#ziitn#@)Q&J zm7nL!s$M*+;8_vUt%>e2u`?$QcK7=R$p}YV qJlI?il4ru==A2-{(w4`;z;KpT`S+{94>CZPGkCiCxvX`Iy7(6n1aC!Rs|Ai+Pc7Og@@W`Z{HP+DR{)rR9GrOnOzPnSl=8=J;nnZKh zmkZk&@?{#Dc;h96h22?n6^;qid^G>^xZ#=Iftk!Jr%wKO^!$oD85}&51Q;0DGWbq( TGU@UFEoAU?^>bP0l+XkKXnj1~ literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|$~;{hLp*qs z6C_v{D;h{KEmm|$<1i3ft-pK0Q~Qls%l%d;X6SKmY-_yo_RhBU1x4lh;!Rl&Tr)a? zT$x>!&nHcKBq8!>cG=p4k{{~w6fK@!Q1#e0L*(#9UFT>0do1J(`Iy7(6n1aC!Rs|Ai+Pc7Og@@W`Z{HP+DR{)rR9GrOnOzPnSl=8=J;nnZKh zmkZk&@?{#Dc;h7wKYH=_`Fq|!d*<*ed{r>(U}Kyhaqb5DQl%M;0#9#vPGJ79bkRb2 zc9ZXn_bd*`y_&J;$0LSdQ#rvWB2Df$J*FwCcVx`#%E)6pn=Hdn^;r3m(aM*sK<y My85}Sb4q9e0F=m5?EnA( literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|rg*wIhIsHM zCrGd^Ry2@eTCC`h#$h0|T7UO~r}i7Omiw(x%+TZB*w%RE?VWAy3yRA1#hbDmxMp+& zxiY&dpHG_fNJ8Y%?6S27B|p^VDJJaH{vP-HkjP7o&OEk_7ms>ulSs2TlaOO_#wf+I zWaC8fmdKI;Vst0N8a;w*UYD diff --git a/dist/images/1x/icon/dark/tree_expand_3.png b/dist/images/1x/icon/dark/tree_expand_3.png index e5e25e56896421a525fab2bb4586e7fdc1a3946d..9d8e9836c33795d9ed40160150ae745d62234c11 100644 GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|=6bp~hIsHM zCnzx1{Q0xDk>zQ^QlBMR3Zb@Vbrr5UI>*>rPCV0b`uzNTHUIm)`C{kvw+k<~)Opc0 z@u!>Hyc02N-V{IImMq%NdC5kUx0d_EF-8rUkFAC}eGV(T=TG0vxJ1r!Y2%TCV|E&% z2YDDWkFYxM9hlzLRwr}e4tvF8hVUJWyB~Kmmu#*0c|wzA{h^84o_+!sZA35LVVZT^ ZoIzATt4Ck%qz%xa44$rjF6*2UngBp-RmA`R literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|7I?ZihIsHM zCrETXIJNisz9+k8cgFNic_nSoty%hmZxhrPYRY07doRq>j^ zgk5uQe-j9K_wK1v0I$cvhNq7wrW<+|@^sDi-F>Y=W6go{x-2?rL zn?#yL*zAQ(2B#-nUC`aT$3o6PezM5%BVv3f3a$6tI1$+rGM_g>hJVJ1QaUn=jDI)2k2G?Pgg&ebxsLQ0D2!(^b diff --git a/dist/images/1x/icon/dark/tree_expand_4.png b/dist/images/1x/icon/dark/tree_expand_4.png index 26a90a0773dfe2659da39677bc5f6c07fa51afdd..4d35967d784aafb8b573559fb2b3c2e89cddd511 100644 GIT binary patch literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|CV09yhIsHM zCnzx1{Q0xDk>zQ^QlBMR3Zb@Vbrr5UI>*>rPCV0b`uzNTHUIm)`C{kvw+k<~)Opc0 z@u!>Hyc02N-V{IImMq%NdC5kUx0d_EF-8rUkFAC}eGV(T=TG0vxJ1r!Y2%TCV|E&% z2YDDWkFYxM9hlzLRwr}e4tvF8hVUJWyB~Kmmuy}9=c0f_iy{Mq*DvKuv)fDpfNo>( MboFyt=akR{0NY1V0{{R3 literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|CVRR#hIsHM zCrETXIJNisz9+k8cgFNic_nSoty%hmZxhrPYRY07doRq>j^ zgk5uQe-j9K_wK1v0I$cvhNq7wrW<+|@^sDi-F>Y=W6go{x-2?rL zn?#yL*zAQ(2B#-nUC`aT$3o6PezM5%BVv3f3awAc@itx*kl<~6D9psLzexJ=>xkal QK<6=dy85}Sb4q9e0K{=rcK`qY diff --git a/dist/images/1x/icon/dark/tree_vertical_line_1.png b/dist/images/1x/icon/dark/tree_vertical_line_1.png index b6e1f73056b7c67f12b98510746a32637748ded0..3f74de38a8123ffb7f58001334cae625176decf6 100644 GIT binary patch delta 88 zcmYdGQ|t`zbLZuf;$mQ6;Pv!y2?Ej*K+MX)1|;L{b@onF6g7~LOiqySdGPr8d)_6x o+B-vdm#kX8lXZzzN6J@*hH~bFcemHX1C=v)y85}Sb4q9e0Mlz4(*OVf delta 88 zcmYdGQ|t`zbLZuf;$mQ6;Pv!y2?Ek`K+MX)1|)+NV}4Ck6gAKgO-_*LdT?s*^?grv o&F+lpo$^ZBpj)%l;^r^LD{)NkH=2Y!04itjboFyt=akR{01QJMGXMYp diff --git a/dist/images/1x/icon/dark/tree_vertical_line_2.png b/dist/images/1x/icon/dark/tree_vertical_line_2.png index 3a2b4fa28edc0c1cb01d1ea7ab1ceb8b5d96dca1..d2c3a3dbe863a7b33e371e6bb9d362c658e75ae3 100644 GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|JUv|;Lp*qs z6C_v{D;h{KEmm|eV3FWle0@LSD7xp>)qveRhCl|&P=FUq7pF}1KyZCJ3 oQ=1j-kj>9y^x0i`rkWrVgHn~4G_QyF4xph7p00i_>zopr06r2ZR{#J2 literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|54!4Mw%a?aA?(Cj&Ax*{A&}{38gKHP7 z?2=s47Gaq4j5p6PW&Xrhml#*iWjm7;4!4Mw%a?aA?(Cj&Ax*{A&}{38gKHP7 u?2=s47Gaq4thcMT?LY=c50v2GVPr6K6*&{evhXR;cm_{bKbLh*2~7ZiLpJRI diff --git a/dist/images/1x/icon/dark/tree_vertical_line_5.png b/dist/images/1x/icon/dark/tree_vertical_line_5.png index fe4be5c8c27f94d02068c50fab0600b4949c299c..5c9867342fc77f03fe6ffd2cd374c9daff6db5f6 100644 GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|Ts&PILp*qs z6BHP0{`}e7$nrE{sn3!uh0wn%SXrENOgh|}I}$hqLJoKYuuftM>gKA8JIAK-cJY~u h0usE9Kw^Uc14DuzdtqW*Qwh*K22WQ%mvv4FO#to-DER;Y literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|d_7$pLp*rj zUfsycpultFz=66P|FcXw2f5boa9-9Y{8DPwf!oj5<=O34d~4&w`Z(^@j4nPeUnqlb nQ^Oy>C+pTSacL}QV4BZqqsq?u;S1+3kd+Lcu6{1-oD!M`Iy7(6mkSi0e>y`E*sN6WugEzTx7hWDJAe>c4K%+XVRx><*{_=HoM3_BKb zO17QlnWS?djX}|HR&;|opTjz5ez6og!$Ow}OexL|ZOWfHS@}KYJ##eKp`&10;o#U} n&No3>WJ!fcPul?lUPcC^LXqkYhR9~1D;PXo{an^LB{Ts5X(v2N literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|x;5-d`eP)Y7WCX~u?+J3@J89921Lc;fGigWYHBw`8j2=}*#T_PYAwz%_H;*cbL2 zSJoeBs>+D+@tiYh%8m|QnG?S5i+{N}Cz!ARiGp?phOf#N-*?_hHUT<|!PC{xWt~$( F698Y%On(3X diff --git a/dist/images/1x/icon/tree_collapse_2.png b/dist/images/1x/icon/tree_collapse_2.png index b0e426aa8f8acae16ff347a85705d2c7b6e1c934..063fe11e4e8f50e652478d00b5790569f63e9cd0 100644 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|W_h|ehIsHM zCrGd^R&>bZFnDC7uyn&$dp*mNkCuP0TAWRE4DUHJ|898enWLxtbh8d?@d>9i8Fnn> zlx#c8GfC$_8iS(Ytmp=FK8JPA{9-9~I(?J4qiddjyPm_gl6|A23CDpW3N|J}Q@SoN z>KU4>)rgtJe(}L32C-)vi4G0T=94BWPie5cGSSUX@rq&LjhRk<0=(-|tTYz0Fg&Vq V;=LFD^exbp44$rjF6*2UngC5?PF(;1 literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|)_S@)hIsHM zCrGd^Ry2@eTCC`h#$h0|`u&NM-Tym7vy<2PUx*P);$>dB+3d3Nia#$_db3<@5HS#3 z%GIu9y}v}psHIhN(~J!tcZBlHII42g@WkI22fNSMZ^=}<(Oo<}FNeXn!KG-6{fu5; zo@H$Myk1vd9JprA8~eh32xjxlcw}Bn#a0X9TKbLh*2~7Z1MO~!; diff --git a/dist/images/1x/icon/tree_collapse_3.png b/dist/images/1x/icon/tree_collapse_3.png index 924895f44082d45803851bb6293815db3d3da8b2..535d9f793ca191f539bece5d9b66ee2879686d59 100644 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|R(ZNOhIsHM zCnzwgh;REbX@Sg|DV-s_OI9u4$-2ZUqhqzY`XtH1pO#BEe6`oJEcs~p_o~I&M91)+ zGxP6;x1KqA%1<}zuoj=Nil(Tb5l@e+bBs^r88-fI_4yd**l=N(P=4i4*r=is{h(jRdQE$o<4%G}HQxS#b0$DT6 mdCn@Rcd&&U$xfNb#9*<{H9Gck=1HKd89ZJ6T-G@yGywoH0#ic( literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|wtKobhIsHM zCrET9yt~xP`()Sb&Y0dQucQsSHA{bRT(+OJ!=tmnElE_~vht(-#;n{kUpZ%;c3P9D zPM7pEk~ow+ft=5bQGX=nWo~u$%)rYMOnH`yBb>QvNOUH9jck zcJBVki~o2P9CMNqj<#?Fta4-DwlDLA)BjH2zszD+oG&Lu%n|BR%lV|Ds+Yvgo+HM~ zZ}>#VX;pt)+9Rc_(-*%w$=7)Ch-=w}i^0kaC$4&3uF^PA2=oGjr>mdKI;Vst03LN> AMgRZ+ diff --git a/dist/images/1x/icon/tree_collapse_4.png b/dist/images/1x/icon/tree_collapse_4.png index a3a29ae3f3258ed271f2dab4b960b47d4eda5c55..35466d2cea4a2940d6f28f2643f3a0b1cbd46758 100644 GIT binary patch literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|=6Sj}hIsHM zCnzwgh;REbX@Sg|DV-s_OI9u4$-2ZUqhqzY`XtH1pO#BEe6`oJEcs~p_o~I&M91)+ zGxP6;x1KqA%1<}zuoj=Nil(Tb5l@e+bBs^r88-fI_4yd**l=N(P=4i4*r=is{h(jRdQE$o<4%LiHE1E6}NbFK% ZVE8o6iPyz6_7u>i44$rjF6*2UngE2OP@n(+ literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|R(iTPhIsHM zCrET9yt~xP`()Sb&Y0dQucQsSHA{bRT(+OJ!=tmnElE_~vht(-#;n{kUpZ%;c3P9D zPM7pEk~ow+ft=5bQGX=nWo~u$%)rYMOnH`yBb>QvNOUH9jck zcJBVki~o2P9CMNqj<#?Fta4-DwlDLA)BjH2zszD+oG&Lu%n|BR%lV|Ds+Yvgo+H-V l)!TL;gQKVIzy*FrhFcM?Pou+vuL2#-;OXk;vd$@?2>`aYT5JFS diff --git a/dist/images/1x/icon/tree_expand_1.png b/dist/images/1x/icon/tree_expand_1.png index a65ecb8b4498074e07bcd6d96e16412cf3fbd8ee..824493548a51b37c6272422a5a82cca5a64c73e8 100644 GIT binary patch literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|QaoK8Lp*qs z6C_v{D>`Iy7(6mkSi0e>y`E*sN6WugEzTx7hWDJAe>c4K%+XVRx><*{_=HoM3^QE$ zYq>uhW7N3uq1Di^(B%SC63;>LdS`pSjCag?3LEsBKDPc|aVLX=XQKcEL-bT$x!%b? RV}SNCc)I$ztaD0e0s#3cIhX(d literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|$~;{hLp*qs z6C_v{D;h{KEmm|$<1i3f{r<$s?*E;k*~#ntFT{u?@iMR6Y<5|B#h(`|y;-g{h!_Yi z?PBY4n|D;@sG-J@w|_1bvi(`;Yg~A0q4$IwL(R6u(QRksD+_HB?9?>-I(20xJT97I h3o;#O#bI?82Ja5O9?@wZjsji4;OXk;vd$@?2>`#lKRo~d diff --git a/dist/images/1x/icon/tree_expand_2.png b/dist/images/1x/icon/tree_expand_2.png index fff7645155efb41ad3c3e0454d424783f3e6bb3b..72057ac8b4c28cce67dacdf37cf2af0a3569807b 100644 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|T0LDHLp*qs z6C_v{D>`Iy7(6mkSi0e>y`E*sN6WugEzTx7hWDJAe>c4K%+XVRx><*{_=HoM3^QE$ zYq>uhW7N3uq18~QZxVNO>>9bJ$k0Z*(-_IB-P4#zbgJR|jKD(CrKT%(H$o#B?r8N0-kbF2&p#a=i?09`?c8mY=!_bP$85tDnm{r-UW|?{G*& literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|CV09yhIsHM zCrGd^Ry2@eTCC`h#$h0|`u&NM-Tym7vy<2PUx*P);$>dB+3d3Nia#$_db3<@5HS#3 z+Qru8Ht(p)QA3R*Z~t5>Wc#zw*Z5#j@$|f$22HQNZ|s{lb{@R)V5#HESrQI8ujDHW zZ4&I%Gz$fzEgtylI7bOtc29UUk+J(Rcn!GnR}b+q$;K_)Jcdl@`k L{an^LB{Ts5>%UC- diff --git a/dist/images/1x/icon/tree_expand_3.png b/dist/images/1x/icon/tree_expand_3.png index ae16937c56cd29bae16700019ed2a8b60f3966b5..a4780e525d555a61d285ece2757bdc68b57ba314 100644 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|rg*wIhIsHM zCnzwgh;REbX@Sg|DV-s_OI9u4$-2ZUqhqzY`XtH1pO#BEe6`oJEcs~p_o~I&M91)+ zGxP6;x1KqA%1<}zuoj>2l1eS9Ut$k>nFA~yaVJN}GzMM2^KaH!g|8 zap6&za;vRQ=E5EJ3T4T7mSh(xQPtr;jV2Pnz^dLd3kR?xg~kw#AlAwFnu@dUf~T<_#gI&94=?sJ>gY1WA|gm%`>hDNIiVzE_{802LnS{ Xp~u_x2lC^A?qu+E^>bP0l+XkKx_D3z diff --git a/dist/images/1x/icon/tree_expand_4.png b/dist/images/1x/icon/tree_expand_4.png index a5cdaaeb4382109df193d1f594a31e042953feb2..c1a30639687e230370c7255c27092204f64d35e2 100644 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|+B{txLp*qs z6BHO##JByJv_NLfl+F;|C99V2WL;vF(Xm=xeUfD1Ps^nnzS`?qmVC7Qd)4A>qGNc^ znfZ6aThAOl<)@oPtr;jV2Pnz^dLd3kR?xg~kw#AlAwFnu@dUf~T<_#gII_|sxV11TmTVdBid(Ei2wf4@z~f1ukKJYD@< J);T3K0RY{2NxJ|5 diff --git a/dist/images/1x/icon/tree_vertical_line_1.png b/dist/images/1x/icon/tree_vertical_line_1.png index 9137f76e8a69093c6ee4841b895b69e56d4dda3a..8f57c95421beeb3af534e297cfd4bc38c620f3c9 100644 GIT binary patch delta 88 zcmYdGQ|t`zbLZuf;$mQ6;Pv!y2?Ej*K+MX)1|;L{b@onF6g7~LOiqySQP{cR==6~9 n1`}5`hI}>I-Vnk*ag7{=EfuLN9W$Izsa*GvBoJ$p>h$!rbd@ciOQ}MoJwj@ q?80Yt7i?u`oB4C`M4!nVj0}qo3jAEUvil9tR0dC1KbLh*2~7Z?$Skt} literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|LOfj@Lp*qs z6C_v{D;h{K!H6494HJXd&&KZB$e89pCX@*;E u44lqL`o<`$EMh-2dvRyBg45g-Yeoxx;q><|TXlivGkCiCxvX-_lcrh;}MJbb3D>ijwQ^Hn!#H9JKL=J zNJ5Q(^n3}Ac^VBl3V~8?^OTC3I-V`nJgX~__|Zn{q)BH1L&FQv4{Rrxw*u{9@O1Ta JS?83{1ON;>HSPca literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|QaxQ9Lp*qs z6C}D4-d*bDeX?tIXH4&uSJDREnx#KDF5A!A;TF+y`SR|?o!wI|q^YUHx3vIVCg!0I&E#0RR91 diff --git a/dist/images/1x/icon/tree_vertical_line_4.png b/dist/images/1x/icon/tree_vertical_line_4.png index 2b83c23e5e28c21178e6bd01d39054d9c3f1f86a..d752b0e0638dde050de3a27a22fa0b9ecf2068b3 100644 GIT binary patch literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjjKx9jP7LeL$-D$|{5)M8Lp*qs z6BHO##JByJv_NLfl+F;|C99V2WL;vF(Xm>-_lcrh;}MJbb3D>ijwQ^Hn!#H9JKL=J tNJ5Q(^n3}AI+32X0~s7Z!l8|U;Sj69&(qdh`hX@gc)I$ztaD0e0styBFirpf literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX1|+Qw)-3{3jKx9jP7LeL$-D$|f<0XvLp*qs z6C}D4-d*bDeX?tIXH4&uSJDREnx#KDF5A!A;TF+y`SR|?o!wI|q^YL*_@&gU1Gk^A%d^|9_}0dU^>N&*8C`r{zEB3= priMR$Pu8tv;?h{qz%-xJ#_=yJ)3a0iCIby-@O1TaS?83{1OSi)GaUc` diff --git a/dist/images/2x/icon/dark/tree_collapse_1.png b/dist/images/2x/icon/dark/tree_collapse_1.png index 36d99d6d668cd5c4bd0e207ff2b6d46c1745fa89..7b5616709635f357bd2d03495b984b48e769c12c 100644 GIT binary patch literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^R}r#xL8Lo!(3 zPIu%wtRUce`I4`~7lV6B>gRNeW(d77QtXaQQ7rw#CHv`4$BX%e_r#ATE^uUE5@=vx zQDA8NEmTqA{Xgga-PM|r|L3`Vk2|;H{GrU5sF$wW*PTv%BimBGAevD< za%x_u^j$6u&wEL{tXmeWIC6loHI6&?t98Q3`nx7Oe}=vH_@S&~JwZA1N%7}r3vRWS zH!xjMUht~WL3PEer_mbQ8}DuJf680ma_4`*za!6VZGkReVW`b4jfjX!ZfX96my9`kTBo)ys4!PO+PpPF$7u7!nf3x^0!F((@7>Ti zl-=CWB((UUCqmrSQmA*_nyT)^V-bgH7s404k^Je zixvf*VLbQ9GUb5-UzettK%+>NWy#gb1G;j%Go3!y$yM4sm%jPt{N3-~xm9<5T#CN$ zckYj%&~^EBVxKtIw zD`(VftyExhv-LOiSW bLO&S3x|sU?ytgzB7(NW1u6{1-oD!M<7Z!@N literal 370 zcmeAS@N?(olHy`uVBq!ia0vp^HXzKw1|+Ti+$;i8jKx9jP7LeL$-D%zbv#`hLo!(3 z&N$7 z4*R~_srdP%ksgNw1Cu}l1B(I!Bb@o5*WvW73pE>eMQ1;&n*H@s%G$RQ-M`b%`mH%C z%bza%@?u58BISusg#OKZcsFzQ)AGyL&-0k)hI~$pP}wt0<&A0N&#rGW*H}u`3nTxR zSWG^$c~4CKqsrT1UIyMO!jG1cu$7pu#tEj5{v6S@D`N}kCf)e+Zvz4a1#+M|y| z&u!VOD)pISr_|oOaVB8Rq&u3u z4UtP)Px$3`s;mRA>e5m|qHmFbu}s*o&|~ckvdxmABe0yvy9c$BjOu%tC3JCX?VNh;2<$ z^ZQCu>^h_C`C7(s8-eqJMD`1vDAlpipqlQ@moXIt8kbnlomKac=g`S45 zxDL?drJW}CKCL742jh0>M~WSuH2yml+GOW`300pz=q!{HObHQruHA0WLhhFk5=htn zzx(bLXs!b};-%du=T|%KUIB3(s3ldh-)$Wzff2vQe<3kCID!BOs1U#|#Kh?SD1ii+ kN}HLvSHO%60y7DG0p8p~#?fP@oB#j-07*qoM6N<$g5w2~7ytkO literal 394 zcmV;50d@X~P)Px$L`g(JRA>e5S-}ayKoE>#3pU`}GDJbpmtFX=0G}4%$1Z#+2#RI+wgHPUoG=g$ zlJl{9OKv9+HpwlsH#5s!NUDkl6;M&&_5Q5FsRG^sI_wxLa)^YBw6#Hs4mZT$B^96o zRDcRV0lsNL3FXLrSXp3mcsguuf${_f()iom;VX?9@J`3Q$XwmE^hm>vfO)??MW7eU znFtO*+&OGU`0_Yc;mm!Q5zb8%^+*^>lp5)9sm_9z+CGc|sg<~Gd_CU);uqWgQcNe~ zYcnyG=dPvI9gdxX8*sL59C?VblXxD-RGvGBNjPqi((dVSX^zHx)K}@aAnyNNoslmU z-LZma>C6b^7xcn24-<9`{#Qy}8Rae6du-{8okt8wj2BiEG+*$<=duv=8* zE%)5p|C{6g!5y)`CO%)L-v7UE;+e8{(O=-w@h%@^X>oI z-Rm7nhnzfHlCM@28IHI Mr>mdKI;Vst0Dd=zLjV8( literal 366 zcmeAS@N?(olHy`uVBq!ia0vp^HXzKw1|+Ti+$;i8jKx9jP7LeL$-D%zH9TD$Lo!(3 z&OFF@$U(q$@r@?lifufB0$)(7?c=pun^zv$Li6 zspT7<9mSPG?`)W!OTUPGz21EH_N{3btlw-``#$ULB)N(uf+p*y@9zAPV`q4AqDL8L zdD@Q>Yq5tpzh9gwxb0>t-{z`x)$7noHSPGk^NGF}wg`v!>Mz&!tjWH*U*z${4>5T; zuTJNA?pBvkUurTX=jx7MA&*tQ*2c{KwaHuJ@JAufx3gM;y-mJ7-sgQ>_|>oLcO(CX zneJA7J8i>PeNmMhR|Z)Q2L>jviy0V^nSU%B`Gt?^a0f3eIS&j#22WQ%mvv4FO#l(A BkV^mn diff --git a/dist/images/2x/icon/dark/tree_expand_1.png b/dist/images/2x/icon/dark/tree_expand_1.png index 5e343ab47eb4c5c9ad1f7a236be98c3ae43bd23e..18ecccb9e8a3502eb4cad0fd51e8946962bd22b3 100644 GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^R}>pWc?Lo!(3 zPB-LgFc4q~&0+ay__J02o4B1Di}z8b*16Ss83j2i8_J)g9htD|Q6mG30s|w50|V24 z)qvHD^f4r`E$q)Y*8yUq<=7iLW=Ql8hJbh=wcE{yvokT$A&d;B0r&w={ lX8a4aOrQa1?+2+y=DN3h_kL~d4+OfL!PC{xWt~$(69DW_T!R1r literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^HXzKw1|+Ti+$;i8jKx9jP7LeL$-D$|u6w#ThGek5 zyqr>N(*-ZxtqxbAgl5Fyf zOe`D%3JwhnP=>mXC?yO(8Gh^${<9|his`f^#?ia7FQ0L4_sYsy^mW%e zp=$-TESt`%&e6TNOP=$((#>aQ-#vUWy-VZAyS@^UIaa8y06V8n^#fyE1NTQyh3i^C PFEV(#`njxgN@xNA*4u5C diff --git a/dist/images/2x/icon/dark/tree_expand_2.png b/dist/images/2x/icon/dark/tree_expand_2.png index 27a9457e9f12e75f6f4bd81289bedcfbb54eabf7..0a2dfe193e5442a0c046a62fdfedfbb5450c1ca8 100644 GIT binary patch literal 311 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^R}A3a?hLo!(3 zPK)I_WFXM8`bW@*=X!fvw|@$|x2Sw0S8YgGq?h+n>(^p2MztA}4I($)Uve@`R9;Ad z5sEaXA7Jy{Tm8kqq|def&h-ybD(|id{h4oS{r=IcXK&_O&APtrdZ7HZ=Y%m%iLC5L2I_Yocng z;b7FOgpFGRe(4@z*&r*wei`#epN$cVU{PRT)kuW|Hj5x(_y_4=|iR`*_31k8MGapXx*pCza1 z&fjlW3RUgY3Vq};;SJB^4J)=sCEZvRd6N6E)1fTM9C@*X>Bl2i?LBoi>9*AWs`_hd z`|6YJX2;F`8~b=u^reHmyO+%}`*kID^1kZb$5PX0wA6YZ^|EhUJLAjK#zc8Z?Y{@V zCBC&6jXJP7`cl+`4ra!7huT#i=jO~=xa#bidx=6}vG$y7hYOm5W(WbD-S~s$$0ex~ sjK4oPELd#IcKG6j&j}nW1b#3cvQxadp(f)ZFuWK%UHx3vIVCg!01!QvYXATM diff --git a/dist/images/2x/icon/dark/tree_expand_3.png b/dist/images/2x/icon/dark/tree_expand_3.png index 7631b315d96445b4b8aee3f15b635507efb89128..595638455e2fb7d26e4f1de681022cb343636623 100644 GIT binary patch literal 316 zcmV-C0mJ@@P)Px#_DMuRRA>e5m`w_UFc5`paU-<#F5aTI@>actcj*tfY{_Cm&FalCgA6`FOyp&f zd@p1|x-RH>zSp_DLE&rIb1fw;Z~}W9M+f$Hfc=vI2?P;fCI-QtKwXu+KI^wu91FM0 zpdL%Px$FiAu~RA>e5nZXIdFcgMWT)_oAJBBC-dU6Xd4&c!NytsuY1wnBP&o1B)N)HcW zAT5Qww!ZfXlGw(-dEXaIvArHI2&fQvzTV5?trA`mIw(13@)QM|)EX3p;Q$6*2tWV= z5D)^~X$cACmVH}yJnXW})!mXFYS<_;Z`Vhb==oxr zB}YQs8Kz)SZ?(m+RkKnThJ}RHR&5^^VCVZuy0zNXZ2dDn^^{^V9$mtLRpZ<(X?4S~ zsnAB9erz)J-Kuf!3{!AwsaQFVVJjw6bznF}#>#QEeK_|&6}f=BThh6}kpqE<08bAi zAX*>Y{b*6J)>7(9t~Px#e5m`w_UFc3yactcj*tfY{_Cm&1z;ykijR26ZtYp z-WQx;*EPDH?{!Xhqx3oLIY&VQ7O=N*IIy<^j1K__G$KGHR)Re#by@cMtl!+I7~C#{ zc`j-A@P(}RLY$_%x9g_gvOG3zYa_e^EWm1cZ9NXuCTh)x16E?S_3k<#6Y+k>%Q_-| zFvjaJOYZcP_y6xwEV}Sp$b9~gvrtK}B&2PNgNHo}h2KIfK)csl>2RPGS#93%4!G-p xmXKC=*gBvEgbo4_fB*y_009U<00Q+1`~bJsDyH{)G$;T7002ovPDHLkV1ggHd~g5& literal 345 zcmeAS@N?(olHy`uVBq!ia0vp^HXzKw1|+Ti+$;i8jKx9jP7LeL$-D%zg*{yyLo!(3 z&OFF@$UvlR^^PX)iZY%+fiF+Q;$#jav%fg1Yop20m0VHA*uLS(2L-W9K^5l@oetOF z%>6a_du`*CZ5kE|2~H2b{>wR(DRfWBDsSiWPhzaQuSkiuKICAF<#1qN5)fe8lgY{X zcv|fZi4PAxO31}Deq?dG_4Bv$&#UKnDwn@nVRZe?v@b^vxt-W^f1cLG)nA=d-JLcW z`y5h>jPdCh%~ zn*I7RTP^r}S?}p{2CU1cbxnUQ@h!8qM7i|5xSZ+Znhp+_yahq!^2X+?^QKos)S9?7yEU=^K{Z@UB%SQ@q+Ke7fl%5u}SWa%*#jYnSFG{#^^#nf4;NUqZz`)>L W$a?>)v_b~Z1O`u6KbLh*2~7awFeO0% diff --git a/dist/images/2x/icon/dark/tree_vertical_line_2.png b/dist/images/2x/icon/dark/tree_vertical_line_2.png index 9c9959e502fd99e24c06542b1ce4fa5adba5c90f..4939be6d1b2f797b5002a8a33b67de0b1576751a 100644 GIT binary patch literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^R}6FprVLo!(3 zUfsymY#_k)V9RXhk5hl2x^ys9hDl0b-3i5u=UtnoPp;WNXXy?O0R@K!21X_p7$clx z&!#x5zt7%p`~E|+?DeG;EX~H?8Z+S?8yhr5c((sGe8q5Z z$>meK{1trNl9~L)KdAH7G2ZPDWam(u8+NUhDbq-bomEWon1W5oEbn@t;}|?${an^L HB{Ts5L&r@L literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^HXzKw1|+Ti+$;i8jKx9jP7LeL$-D$|4tu&dhGek5 zy=KeRY#_pr@RjeJllj8%m!?%3>mP=4k^n{=k3w+(FJ;k!PC{xWt~$(695&)UZDU0 diff --git a/dist/images/2x/icon/dark/tree_vertical_line_3.png b/dist/images/2x/icon/dark/tree_vertical_line_3.png index 46c468dbfefc19f973953d861e1bc50521a942cb..af6886917126309fe3dc719be9ed606d10cb80d4 100644 GIT binary patch literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^R}D?D8sLo!(3 z&M@R^Fc5KGJ-fN$XnhGek5 zow<>>!GMRQQ8uDsR_Kgrp(`RAR0UXrW-amhr)a0*vZO)&e)J8Y!v`1})mZvI-5A71i#JU8Uz+TV(O0E#lO?DJ^w z^nSus8^Ll*t@*Io7o~@ROD0b}`L{M=dZoYos?zu!ll&AnwK=#l`9z5(PIGGgoiVXs zrA*Zg?&k&k%O*0jC?qHxSfbh_w@!EBh83G~j2_Bto9HINB=EzWQB8MZ{li;AoZVWd i)r8L_N@upXvgAo>=v&MWOFIShB!j1`pUXO@geCwa4Qbr~ diff --git a/dist/images/2x/icon/dark/tree_vertical_line_4.png b/dist/images/2x/icon/dark/tree_vertical_line_4.png index 24d5e260f6a03b4ae8bcb97d48b86dce7344c36c..b4e7977ed3a387b3c6f03fed159a3547dbda2910 100644 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^R}9iA?ZAsMW1 zZ*1ghP!M1U$j*W8XfKXb}IKkIwD`}1rT zls^nvP|kYCzrkTrgP%;xRraQU%tWmTZrX;7Otq{fj~4tF=&6>y_RmA-bI5$pTc2OQ w$-VPj`sUXHZAK;*4gm#+1_l`8zmdKI;Vst0LlAE^Z)<= literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^HXzKw1|+Ti+$;i8jKx9jP7LeL$-D$|)_S@)hGek5 zy?KzcK|zA;LRP!ji#uArx3%U*FHl|N{J_?Rr6B@vogHdhG>NcBudHo4l08_U+r!H4A=7R-cQ#)XRP& zb`I|i29XcqO$`-y*bEeTHZXE@9M5GCKExp1fGl*`yda^;)!|F;k>dE$8mn4nZu@xc j1r1DG8mPpdm5TRew@z9eF$_jgQu&X%Q~loCICNxU>pDd diff --git a/dist/images/2x/icon/tree_collapse_1.png b/dist/images/2x/icon/tree_collapse_1.png index fda6e4884b40ed15351078128440c29ba5358725..cbb052d199e894b379f76a9d9aee43be70310e84 100644 GIT binary patch literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^R}XFOdTLo!(3 zPIcsCQsi;HcqZ^G!!DWYyRI->l*=Ao#4YCXzyrQU-*K;lllJe;ySnp8dB1A^|4nBv&ARh@=eAvHb-LZKwWhEZsr1&oyC)J-{+%nJ z;TF>>d#)8Mq4kwqPlY6GYjxKB7Rw4d@NCb-8C!RUCx}@*asoP}fdS$sg%VOZLgPlzP$Z7HOSrdlB!MQ z;opZh@}$2{-qcoYzUpU2gixTnP~WUIzlwhIWjDoJ7ry@Yv?hr2vf*9rxAO|LHC1o# z%9qLx)rmc160=nP)1(&XV^OA0_j!jG*T#OkH`lasSNJX6#MkzsUKwv@=snz+VAGG{ fFsM5n@*DXh^u)T}ZP42d^g4s5tDnm{r-UW|q6B#b diff --git a/dist/images/2x/icon/tree_collapse_2.png b/dist/images/2x/icon/tree_collapse_2.png index 89649e72111863792b17a344f13ce2720d65c641..b9dd884676e64b4c5c04b7a4d3a850f52a741d0c 100644 GIT binary patch literal 336 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^TE{XE?!4cB$Bb8ANP!WG ze#A3z=f0f%?$4ED9)I%xI@V5`P_F6u@2p+!yN7MB?aWJrw%?6aOMZJ`FVj^njuh{g zURPFxHKY`C%ZnvAZd73x)mWG=IQy^cfoJore6wu-^{v@`S?kH3@5kAT*t>sz-}!;h z{(Ja}h{hQz9*s3wvUM92x(su&HTdzr2|9IJUKul7~m*h+Fw03&mUk0X=4XG5%q#_Hc@rP+H0ZdCdPQ;A~1*;JYD@<);T3K0RSeYf*=3@ literal 372 zcmeAS@N?(olHy`uVBq!ia0vp^HXzKw1|+Ti+$;i8jKx9jP7LeL$-D%z^*mi1Lo!(3 zPT$LW$Uwl2IZ5ut0tQ1S9tY2ZQfnL?Pcj%VH8EL5aHJgZ^i(-L(c*u?evgUC$1U&g zeJ>Qhs*9OPpn-u!fq{|3fdS5Z;S=1AN))To@x9=Q1`)w##2=+Ix0oEffnJZs(SgqH|RY0C3O4Ue1B`h zkD1@wA8#}K@ODl3>0>*x;|ev`2F<^A(p&fKsx2-zw@oUIeio&roAuIcX5ZgOL9-gH z(~jNu)Ambz|9gY3XiR+i?c)7?i$APqd0KhXe(8L#=sAa0HXQGN!!cvO)b07b=M%cC z+c|HfTP;nHZVe7#ln41n#l68xdxFZF!;KE^(QK`Y7p5n2tPrSR7TK*E_47}?B`_En NJYD@<);T3K0RVgNnE?O* diff --git a/dist/images/2x/icon/tree_collapse_3.png b/dist/images/2x/icon/tree_collapse_3.png index 0bb8e69f5a278fa0c34d5535deb8833c8512984b..4e6b9a70ede2c7d614b043400fe73e7b8bf29089 100644 GIT binary patch literal 344 zcmV-e0jK_nP)Px$5=lfsRA>e5m_Z5xF$_gV@p_&@J;1nBm+I0vfO-lKsC4m*Qz(8W0XFoUB{8r0So9Y92MxT0M91@5-=jbPAmkw62`@_{doIEM{)3) z&c**F9Phr7ZE7JtAE(-_vwer-edd=s?iDaAAdqdPD^bI&0LkGRF)ToXVoMGx&_YjR zZ*?EQ;Y&A7ZawWI_=54CE+6C$7W4meVT?HUuTZlBDM^q5`P@3xN+~!*diBc=QebRlUzWZ0GS^?birNp%3-7BCCBPx$M@d9MRA>e5nN149Fc5{Kcply9Lh%TC0GBSjMz7(*r3cU>h%R)e7g8b&ghHA^ zGc#@G6-xS(zGS{PBm;F02MDkbIGrz*KUu^ZM8^&9ihPBDi?lTe3JwP_a0vn+00JOD z1W;)a3Fa32Ff(9vc{r?Y0rLb#x%KbQ_cynu*IO-SS>|dkr6(M2c+KT}nnn8Y`ee}| z5pxc!1-#xIoIj-xwSc7qrST9jktnr=!=*Y)ak1^gG(c)4j=jHKk0kMLV}B|3yKNPA zO!YID(pl=$kTBKKsY;8StveZN`D?1QP)pazw7fT$(g?U^W(>BQIfvQz;aDo9R_EAv zU7y3@t_10O+CS;OFReL;`vM;GD2@RB9tv4%ZqY)(LYbvDj5&wZNMm3S0D)l>K&2(* rpSf)b0Sjf8+A!uERwIppg$Vor>j*bGgy++(00000NkvXXu0mjfy?&%v diff --git a/dist/images/2x/icon/tree_collapse_4.png b/dist/images/2x/icon/tree_collapse_4.png index 28eaf8d3b4e020a72591df1f6fe9c9ac2f04174a..fb04c92741accbf6f1106095df11af8fb5bbbeb9 100644 GIT binary patch literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^T<-qLyiHT}1G|dvY_-YX+r?zs+|K9i z$$NTTqt;_LpYn2MvkTD{S{I@jucE>v zG1p7cPJa2NwVP|(AJ;y6ZuL$y<66UnwM$nAE{E{)zM+uH1b~#ycuiuF#Fi+St zeJRu46N~e{YPPs+ygJYBgTe~DWM4fNhE|N literal 372 zcmeAS@N?(olHy`uVBq!ia0vp^HXzKw1|+Ti+$;i8jKx9jP7LeL$-D%z^*mi1Lo!(3 z&UEBDWFX+Wxc~?dAiyaH~PwFxGT?*6IklB_{z{$wrz`*3x;N|V1vHi{A zQw@txKQ1WYo}zBRwYI)~-~NTBz4x*Vxs9&B394H3u76S-jsHhjQuzP3RU)0MO8+js@qXJ<+Y9D; zyQlC4&A-*MblSJjs7E<>J)=*@crSI;ja9$=$!_-)wFlE?e%yX|Q*lJCeA&{b{L-?$ z*S}iwm8)vJKmAYhyL0B|;tGuiGuc@b7{D$UXkb8Q-V*x3$l9(Om29S<0}Mt6Pgg&e IbxsLQ02bPl^Z)<= diff --git a/dist/images/2x/icon/tree_expand_1.png b/dist/images/2x/icon/tree_expand_1.png index 40d6d192fcce7d425518e7c73aa6317668d5bc36..5f2f411113ac1305ce5c7a912f7108b4e9073287 100644 GIT binary patch literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^R}8$4YcLo!(3 zPTk1o;2_{4IR6xTKv3`}#y{GD8YSl0T;l%4J5$Ow{eG6z-Ner%(7?c=z`)4yXS&16 zzI!E?7hYTP;(O_o>YX*KMLz3izse}SZRFxDUz%%g|L&FQZx#uM-aBj68O;N)_OpZ} z<<(a3-|2Pv|9GA4q`$&da~ry!%w18HHlKlc#l+oTRUW9V`Zck^>&#mI_l+;u%J?Vz l6)s{vh_KXwf$1fSA7>4(NvP&FPoUcwJYD@<);T3K0RUiGS|R`d literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^HXzKw1|+Ti+$;i8jKx9jP7LeL$-D$|u6nvShGek5 zy$`{Lo!(3 zPV?qFWWeLX{itdVlZ8VhlXrqAKf|0R=B7O}y4+T!NQWOZxcg*rr}X~LM<%@XLJEvf z^dp|hIQ!M>Z(p{oyZ9pi?!7(Yoz~Y`{->Qiw0r04)aS8Q5!-LhV^4mqu$S5AKvw0J zd3-LyTaPVf4okXNRW5tLZO`|LNcXU}g_?%%?>=n2aVhCvt>3Q;OYNQHtpg_McxE0~ zhQiHQlSjp8SL6uQ0|)f@wQox#)9&t;ucLK6TG Ct$cC- literal 345 zcmeAS@N?(olHy`uVBq!ia0vp^HXzKw1|+Ti+$;i8jKx9jP7LeL$-D%zg*{yyLo!(3 z&M@RVWWeLf{m5p+L54>h1q^O%>kgVqNLVt+Fdk%(j^PMdIc=8L7OzxqmAcqVOV*|C zf3M}&-Nel#(7?c=z`)4izyN1HaZ6Y*_rlwczcPO7{MAhpo*L0EcJS}!^Akf0KEI4O z`t|S6u#d`qcQkztDb=o1=6b$r&6CzcPD@Y<4+&nKxI~jnT{GI{!aEVO*ITyy4{_&VVIOni$gur)0NMzpIo;8`aAQxwTD&i#EN7_FDSV6OVAeNXl167D7S>!c{kf< lyA;h{T#(l_so$I_UPDv0sBL$_4PaO?c)I$ztaD0e0sx&;jfDUJ diff --git a/dist/images/2x/icon/tree_expand_3.png b/dist/images/2x/icon/tree_expand_3.png index 08c47be7f86d5504adc3e1f46a9111d9317fca02..8ebec5d39a6c4338485da33d32929c8ab2dd712d 100644 GIT binary patch literal 316 zcmV-C0mJ@@P)Px#_DMuRRA>e5m_Z5xF$_gV@p_&@J;1nBm+I0vfO-lKsC1Fw6oe!uguovdnwB(e z-Y*Sw7=pgdcwVJx{mpfNHe$WU`#M4| z7|-eSqS&pa@$a!_lVABG^tS>%$)1$7PegnFU*qIgUI8RPQf9SKAd5V$3k8ToR%@;U z)(Y&MX!#@L4TR(2U5HV@009t4A%I&*h`oFvLjppj!`#X%5Jm=pg#N O0000Px$ElET{RA>e5nK2H+FbqWjaUR%U0C5C303!p}=rtG^IRG31!2lav2-Lw+7zj#b zH#B}oRU*aw#_wB=)%JS)AYejZe>hh4Wg;FC9YofOTq5BjZ4Hvb;Q$6x2tWV=5D)@% zT0+8j<@R`KYu0-6=~!j2?n-)S;YO`Fn~YSXulJ{lj)=H( zn1sdpQb!yv)mh04hlNC`quDtuz!uA`Oq0g*Y4;KT?JLD*y{f{%UvchATBSb?2}>`n z-D%NFhm;fM?n;`36RM+=p*Y-0+Y&bI&SA4oOZ!blf{D>kcMeBsun2+X1o(Q`oL$mC z-95BOIH^8580^mB4tm6vApn7YAV8yaE1pFH#|Y RM#2C9002ovPDHLkV1gj=n>GLd diff --git a/dist/images/2x/icon/tree_expand_4.png b/dist/images/2x/icon/tree_expand_4.png index 69c8010eea195769266180a4be0481d0bebdb876..e6ad9ac563d640983d0bb1bba040694bf85f4cdd 100644 GIT binary patch literal 300 zcmV+{0n`48P)Px#=1D|BRA>e5m{AJCFbsyLcs);{9$-GIkLsg4fO-lKsPrMl6@)gXgupi#O-hse!pnz7%t>aO^nrLf26lf)89k1>KauDrzyzC?L z2je-NUXnYFGXFi7Y>5khh5lBcBw3QG^@V5||7%|2!Ye=lBBj@e0$${0Ulb4$UZc7X yXgjcVq2aHPH4ySa00Izz00bZa0SG{#p1=pz>>!HDXWP2~0000o_fXr literal 341 zcmeAS@N?(olHy`uVBq!ia0vp^HXzKw1|+Ti+$;i8jKx9jP7LeL$-D%z`8{16Lo!(3 z&NSpY_=(M}Ou>&FRSe$UG0N9BZ1}=Z#d6WfdhdiyM-N2p*ks^*<{WoR1SkX8TIb!X87rQF`GLk~IFyg3{gm;?lve4?BVSrqY0 zGrxpZ;0J?p?%&gIKVG`VQ`P-5+PVMJovm9=)kq0Xi;Swi zlr*hRGkwk7ttPDLCC3$l3o9mUOO?4b_i)3#{*u8uc}3k>yN($h7*IQtDnm{r-UW|FXNA5 diff --git a/dist/images/2x/icon/tree_vertical_line_1.png b/dist/images/2x/icon/tree_vertical_line_1.png index 545b1cbb4a79a95087ca33e95ba091eda96cc9c8..c3393797e574bbb67ba413a1de4fb96506e5481c 100644 GIT binary patch literal 117 zcmeAS@N?(olHy`uVBq!ia0vp^20+Zk!3HEhJ-+J$q!^2X+?^QKos)S9gTe~DWM4f#5*E9 literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^HbBh9!3HE>+_yahq!^2X+?^QKos)S9?7yEHGntNis9X2+~EGIYZV%L+E7bV=ddIFziaPS-yU|`rQ W#qx31cc*fo2@IaDelF{r5}E+Q`6W*P diff --git a/dist/images/2x/icon/tree_vertical_line_2.png b/dist/images/2x/icon/tree_vertical_line_2.png index 06548083b8c9fe879af9360ea15932b63acfaefa..3c55ad9ce8acc952de6bacd62a1d4fde6bd6f591 100644 GIT binary patch literal 220 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^R}(>z@qLo!(3 zUOmX!Y9PSsu+@I`2B!CNd!rjeZ#+2OtiYJ)D%M%Q$K!;W;^&lHDSk#K77hUghXw{H z;{k7@+3O35bAErm_u44;d7)+fnY(LW_qE<@J)l>!G-isOl-C2n`A1pobQW;49$vez zcb9{~%PpH;342W5XxLaU{z09uj`8aDKyePWxnW_oOqoVzd|ZDRBL9j0D1CS-80bO< MPgg&ebxsLQ0C3t*Hvj+t literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^HXzKw1|+Ti+$;i8jKx9jP7LeL$-D$|R(rZQhGek5 zy>^rYmr-Q#$O69*^`KWDq(lri&4l#@LPq})FC%f+Xuv>E5!;bxnPX@^5ZOXNq z1vF+S>zyq{-0?r>9&TN*dg{f8Szow>6&xO%X3C3d-St>Tk0o|(4`2A=@EHz5jm*By WQdexs3!Q+@X7F_Nb6Mw<&;$UHvQ&%! diff --git a/dist/images/2x/icon/tree_vertical_line_3.png b/dist/images/2x/icon/tree_vertical_line_3.png index 667a7c1ae7b45e6ef7b4dadd6c933f61b9d13175..e7fc65c63529b5b6616261112446bfe6e9ddb3d9 100644 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^R}Ydl>XLo!(3 z&N#@~U?AeW`nP4PaK-l*cRA-AVm<2I{bh=i^UohF8!rg_)XzFF#pn1g+0)gt-gLi> z33C+ZF|e`_l9IVv}-0BHq6-KD`v+iE!m^^p`6KN;}4dW g|2;+sQCB8@9u@gFl^WgMKzB2Ey85}Sb4q9e05han{{R30 literal 286 zcmeAS@N?(olHy`uVBq!ia0vp^HXzKw1|+Ti+$;i8jKx9jP7LeL$-D$|Zg{#lhGek5 zow<>>!GMQ_ncIj#wR;1HD)R=#MIBSxLQdKrX>aKe`S7@!J6cJVkE2AfV9xb_b7Gsq zo6b$$tGL~x!XvtSNx_bWgF;LK4Gb(sjB0Cr7JZ&-cSmxAtqtF8-3P1+42&E#6B#B? zJ0bdO1IHF$w)Wf?u7@UjJP&>L_Wj{)deuJzR{uUUwS;q`DT|a)!lf*Z&0<=2+`C({ zpBfyBvuJlW=#>GQ!OWz&{ffT$;sJE-+4jobdzP3vg>C~`R8eE zv%5dfWEbS*D&GXWAbI$_SfV3&6E$P z76dPSKRH(I&&i0*o}LzmFQ_;)Ff>LV@OwQiqh>3gIUApR+@Xhp6^u+Q9D4!}_^l4s zy7tiTLSm|ljNAQ{A8xGl+vxN1{o!3_H0xii{9X6m^LfWD77hUgpeZ0Nn2bM>4_Njj WN?oaES#b#HZU#?RKbLh*2~7ZAw^{q@h*sttRevv22K z@?F%Ad;5FsJ9-oDg Date: Fri, 28 Jun 2019 14:10:01 +0800 Subject: [PATCH 4/4] =?UTF-8?q?revert:=2024=E7=9A=84=E9=AB=98=E5=BA=A6=20&?= =?UTF-8?q?&=2024=E7=9A=84=E6=96=B0=E5=9B=BE=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dist/2.0/fineui.css | 18 +- dist/2.0/fineui.ie.js | 216 +++++++++--------- dist/2.0/fineui.js | 216 +++++++++--------- dist/base.css | 14 +- dist/bundle.css | 18 +- dist/bundle.ie.js | 216 +++++++++--------- dist/bundle.js | 216 +++++++++--------- dist/case.js | 96 ++++---- dist/demo.js | 13 +- dist/fineui.css | 18 +- dist/fineui.ie.js | 216 +++++++++--------- dist/fineui.js | 216 +++++++++--------- dist/fineui_without_jquery_polyfill.js | 216 +++++++++--------- dist/images/1x/icon/dark/tree_collapse_1.png | Bin 193 -> 200 bytes dist/images/1x/icon/dark/tree_collapse_2.png | Bin 230 -> 233 bytes dist/images/1x/icon/dark/tree_collapse_3.png | Bin 247 -> 250 bytes dist/images/1x/icon/dark/tree_collapse_4.png | Bin 236 -> 238 bytes dist/images/1x/icon/dark/tree_expand_1.png | Bin 171 -> 179 bytes dist/images/1x/icon/dark/tree_expand_2.png | Bin 213 -> 214 bytes dist/images/1x/icon/dark/tree_expand_3.png | Bin 227 -> 231 bytes dist/images/1x/icon/dark/tree_expand_4.png | Bin 214 -> 217 bytes .../1x/icon/dark/tree_vertical_line_1.png | Bin 102 -> 102 bytes .../1x/icon/dark/tree_vertical_line_2.png | Bin 143 -> 144 bytes .../1x/icon/dark/tree_vertical_line_3.png | Bin 162 -> 162 bytes .../1x/icon/dark/tree_vertical_line_4.png | Bin 148 -> 148 bytes .../1x/icon/dark/tree_vertical_line_5.png | Bin 138 -> 138 bytes dist/images/1x/icon/tree_collapse_1.png | Bin 192 -> 199 bytes dist/images/1x/icon/tree_collapse_2.png | Bin 224 -> 233 bytes dist/images/1x/icon/tree_collapse_3.png | Bin 240 -> 247 bytes dist/images/1x/icon/tree_collapse_4.png | Bin 228 -> 236 bytes dist/images/1x/icon/tree_expand_1.png | Bin 170 -> 179 bytes dist/images/1x/icon/tree_expand_2.png | Bin 203 -> 209 bytes dist/images/1x/icon/tree_expand_3.png | Bin 218 -> 226 bytes dist/images/1x/icon/tree_expand_4.png | Bin 204 -> 212 bytes dist/images/1x/icon/tree_vertical_line_1.png | Bin 102 -> 102 bytes dist/images/1x/icon/tree_vertical_line_2.png | Bin 144 -> 143 bytes dist/images/1x/icon/tree_vertical_line_3.png | Bin 162 -> 162 bytes dist/images/1x/icon/tree_vertical_line_4.png | Bin 148 -> 148 bytes dist/images/1x/icon/tree_vertical_line_5.png | Bin 138 -> 138 bytes dist/images/2x/icon/dark/tree_collapse_1.png | Bin 272 -> 291 bytes dist/images/2x/icon/dark/tree_collapse_2.png | Bin 333 -> 351 bytes dist/images/2x/icon/dark/tree_collapse_3.png | Bin 338 -> 361 bytes dist/images/2x/icon/dark/tree_collapse_4.png | Bin 320 -> 344 bytes dist/images/2x/icon/dark/tree_expand_1.png | Bin 244 -> 273 bytes dist/images/2x/icon/dark/tree_expand_2.png | Bin 311 -> 324 bytes dist/images/2x/icon/dark/tree_expand_3.png | Bin 316 -> 335 bytes dist/images/2x/icon/dark/tree_expand_4.png | Bin 299 -> 317 bytes .../2x/icon/dark/tree_vertical_line_1.png | Bin 117 -> 117 bytes .../2x/icon/dark/tree_vertical_line_2.png | Bin 215 -> 220 bytes .../2x/icon/dark/tree_vertical_line_3.png | Bin 238 -> 243 bytes .../2x/icon/dark/tree_vertical_line_4.png | Bin 206 -> 212 bytes .../2x/icon/dark/tree_vertical_line_5.png | Bin 210 -> 215 bytes dist/images/2x/icon/tree_collapse_1.png | Bin 274 -> 289 bytes dist/images/2x/icon/tree_collapse_2.png | Bin 336 -> 345 bytes dist/images/2x/icon/tree_collapse_3.png | Bin 344 -> 351 bytes dist/images/2x/icon/tree_collapse_4.png | Bin 328 -> 334 bytes dist/images/2x/icon/tree_expand_1.png | Bin 246 -> 271 bytes dist/images/2x/icon/tree_expand_2.png | Bin 309 -> 319 bytes dist/images/2x/icon/tree_expand_3.png | Bin 316 -> 327 bytes dist/images/2x/icon/tree_expand_4.png | Bin 300 -> 309 bytes dist/images/2x/icon/tree_vertical_line_1.png | Bin 117 -> 117 bytes dist/images/2x/icon/tree_vertical_line_2.png | Bin 220 -> 219 bytes dist/images/2x/icon/tree_vertical_line_3.png | Bin 242 -> 241 bytes dist/images/2x/icon/tree_vertical_line_4.png | Bin 211 -> 210 bytes dist/images/2x/icon/tree_vertical_line_5.png | Bin 215 -> 213 bytes dist/resource.css | 4 +- dist/widget.js | 120 +++++----- src/base/combination/combo.js | 3 +- src/base/combination/searcher.js | 3 +- .../abstract.allvaluechooser.js | 4 +- src/widget/datetime/datetime.combo.js | 2 +- src/widget/datetime/datetime.popup.js | 4 +- src/widget/dynamicdate/dynamicdate.popup.js | 4 +- .../dynamicdatetime/dynamicdatetime.popup.js | 4 +- src/widget/month/popup.month.js | 4 +- src/widget/quarter/popup.quarter.js | 2 +- 76 files changed, 927 insertions(+), 916 deletions(-) diff --git a/dist/2.0/fineui.css b/dist/2.0/fineui.css index 5270800c3..17180c339 100644 --- a/dist/2.0/fineui.css +++ b/dist/2.0/fineui.css @@ -2193,10 +2193,10 @@ textarea { background: url('images/1x/icon/tree_vertical_line_4.png') no-repeat center center; } .ztree li ul.line { - background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 1px 0; } .bi-theme-dark .ztree li ul.line { - background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 1px 0; } .ztree li span.button.chk.checkbox_false_full { background: url('images/2x/icon/check_box_normal.png') no-repeat center center; @@ -3930,13 +3930,13 @@ body .bi-button.button-ignore.disabled.ghost .b-font:before, } .ztree li ul { margin: 0; - padding: 0 0 0 22px; + padding: 0 0 0 18px; } .ztree li a { padding: 1px 3px 0 0; margin: 0; cursor: pointer; - height: 30px; + height: 24px; background-color: transparent; text-decoration: none; vertical-align: top; @@ -3978,7 +3978,7 @@ body .bi-button.button-ignore.disabled.ghost .b-font:before, *border: 0px; } .ztree li span { - line-height: 30px; + line-height: 24px; margin-right: 2px; } .ztree li span.button { @@ -4050,8 +4050,8 @@ body .bi-button.button-ignore.disabled.ghost .b-font:before, background-position: -42px -56px; } .ztree li span.button.switch { - width: 30px; - height: 30px; + width: 25px; + height: 25px; } .ztree li span.button.noline_open { background-position: -92px -72px; @@ -4664,10 +4664,10 @@ textarea::-webkit-scrollbar-thumb:hover { background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/tree_vertical_line_4.png') no-repeat center center; } .ztree li ul.line { - background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/tree_vertical_line_1.png') repeat-y 0 0; + background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/tree_vertical_line_1.png') repeat-y 1px 0; } .bi-theme-dark .ztree li ul.line { - background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 0 0; + background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 1px 0; } .ztree li span.button.chk.checkbox_false_full { background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/2x/icon/check_box_normal.png') no-repeat center center; diff --git a/dist/2.0/fineui.ie.js b/dist/2.0/fineui.ie.js index bbe5607d6..64c836b5b 100644 --- a/dist/2.0/fineui.ie.js +++ b/dist/2.0/fineui.ie.js @@ -52361,7 +52361,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52414,7 +52414,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { BI.ArrowNode.superclass.doClick.apply(this, arguments); this.checkbox.setSelected(this.isOpened()); }, - + setText: function (text) { BI.ArrowNode.superclass.setText.apply(this, arguments); this.text.setText(text); @@ -52443,7 +52443,7 @@ BI.FirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52526,7 +52526,7 @@ BI.IconArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, iconCls: "" @@ -52622,7 +52622,7 @@ BI.LastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52703,7 +52703,7 @@ BI.MidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52776,7 +52776,7 @@ BI.shortcut("bi.mid_plus_group_node", BI.MidPlusGroupNode);BI.MultiLayerIconArro id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 16, iconWidth: 16, iconCls: "" @@ -52872,7 +52872,7 @@ BI.PlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52993,7 +52993,7 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53022,19 +53022,19 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "first-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53089,7 +53089,7 @@ BI.shortcut("bi.first_tree_leaf_item", BI.FirstTreeLeafItem);BI.IconTreeLeafItem logic: { dynamic: false }, - height: 30, + height: 24, iconWidth: 16, iconHeight: 16, iconCls: "" @@ -53184,7 +53184,7 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53213,19 +53213,19 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "last-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53288,7 +53288,7 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53317,19 +53317,19 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "mid-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53386,7 +53386,7 @@ BI.MultiLayerIconTreeLeafItem = BI.inherit(BI.BasicButton, { return BI.extend(BI.MultiLayerIconTreeLeafItem.superclass._defaultConfig.apply(this, arguments), { extraCls: "bi-multilayer-icon-tree-leaf-item bi-list-item-active", layer: 0, - height: 30, + height: 24, iconCls: "", iconHeight: 16, iconWidth: 16 @@ -53486,7 +53486,7 @@ BI.TreeTextLeafItem = BI.inherit(BI.BasicButton, { extraCls: "bi-tree-text-leaf-item bi-list-item-active", id: "", pId: "", - height: 30, + height: 24, hgap: 0, lgap: 0, rgap: 0 @@ -53708,7 +53708,7 @@ BI.Calendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, value: o.year + "-" + month + "-" + td.text, disabled: td.lastMonth || td.nextMonth || td.disabled, lgap: 5, @@ -53725,7 +53725,7 @@ BI.Calendar = BI.inherit(BI.Widget, { columns: 7, rows: 6, columnSize: [1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7], - rowSize: 30, + rowSize: 24, vgap: 10 }))] }); @@ -53874,7 +53874,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, width: 45, value: td.text, disabled: td.disabled @@ -53890,7 +53890,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 24 })), { type: "bi.center_adapt", vgap: 1 @@ -54004,8 +54004,8 @@ BI.FirstTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.FirstTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type2", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54027,8 +54027,8 @@ BI.LastTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend(BI.LastTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type4", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54050,8 +54050,8 @@ BI.MidTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.MidTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type3", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54073,8 +54073,8 @@ BI.TreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.TreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type1", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -56199,7 +56199,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -56227,7 +56227,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { BI.IconComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -56402,7 +56402,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if (BI.isKey(o.value)) { @@ -56461,7 +56461,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconHeight: o.iconHeight, iconWidth: o.iconWidth, iconWrapperWidth: o.iconWrapperWidth @@ -56500,7 +56500,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { var o = this.options; items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconWrapperWidth: o.iconWrapperWidth, iconHeight: o.iconHeight, iconWidth: o.iconWidth @@ -57047,7 +57047,7 @@ BI.shortcut("bi.small_text_value_check_combo", BI.SmallTextValueCheckCombo);BI.T return BI.extend({ type: "bi.single_select_item", cls: "bi-list-item", - height: 30 + height: 24 }, item); }); }, @@ -57122,7 +57122,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if(BI.isKey(o.value)) { @@ -57211,7 +57211,7 @@ BI.SmallTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); }, @@ -57247,7 +57247,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom items: BI.createItems(o.items, { type: "bi.single_select_item", textAlign: o.textAlign, - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -57276,7 +57276,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom BI.TextValueComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -62880,7 +62880,7 @@ BI.extend(BI.DynamicDatePane, { BI.DateTimeCombo = BI.inherit(BI.Single, { constants: { popupHeight: 290, - popupWidth: 310, + popupWidth: 270, comboAdjustHeight: 1, border: 1 }, @@ -63015,8 +63015,8 @@ BI.DateTimePopup = BI.inherit(BI.Widget, { _defaultConfig: function () { return BI.extend(BI.DateTimePopup.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-date-time-popup", - width: 310, - height: 410 + width: 268, + height: 374 }); }, _init: function () { @@ -63651,7 +63651,7 @@ BI.shortcut("bi.down_list_group", BI.DownListGroup);BI.DownListItem = BI.inherit return BI.extend(conf, { baseCls: "bi-down-list-item bi-list-item-active", cls: "", - height: 30, + height: 24, logic: { dynamic: true }, @@ -63864,7 +63864,7 @@ BI.shortcut("bi.down_list_group_item", BI.DownListGroupItem);/** BI.DownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -64978,8 +64978,8 @@ BI.DynamicDatePopup = BI.inherit(BI.Widget, { props: { baseCls: "bi-dynamic-date-popup", - width: 290, - height: 380 + width: 248, + height: 344 }, _init: function () { @@ -65829,8 +65829,8 @@ BI.extend(BI.DynamicDateTimeCombo, { props: { baseCls: "bi-dynamic-date-time-popup", - width: 290, - height: 421 + width: 248, + height: 385 }, _init: function () { @@ -67909,7 +67909,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -67928,7 +67928,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -68161,7 +68161,7 @@ BI.shortcut("bi.multi_layer_down_list_combo", BI.DownListCombo);/** BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 25, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -69060,7 +69060,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69101,7 +69101,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69109,7 +69109,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69163,7 +69163,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69204,7 +69204,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69212,7 +69212,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69262,7 +69262,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69303,7 +69303,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69311,7 +69311,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69361,7 +69361,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69402,7 +69402,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69410,7 +69410,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70026,7 +70026,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70048,7 +70048,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70056,7 +70056,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70129,7 +70129,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70151,7 +70151,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70159,7 +70159,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70231,7 +70231,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70253,7 +70253,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70261,7 +70261,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70331,7 +70331,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70353,7 +70353,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70434,7 +70434,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -70477,7 +70477,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70485,7 +70485,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70533,7 +70533,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -70575,7 +70575,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70583,7 +70583,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70631,7 +70631,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -70673,7 +70673,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70681,7 +70681,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -72392,7 +72392,7 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -77894,7 +77894,7 @@ BI.QuarterPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 25 }); }); @@ -78790,7 +78790,7 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -79131,7 +79131,7 @@ BI.SelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79216,7 +79216,7 @@ BI.SelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79301,7 +79301,7 @@ BI.SelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79386,7 +79386,7 @@ BI.SelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -80978,7 +80978,7 @@ BI.SingleSelectLoader = BI.inherit(BI.Widget, { type: this.options.allowNoSelect ? "bi.single_select_item" : "bi.single_select_combo_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: false }); }, @@ -84449,7 +84449,7 @@ BI.DynamicYearPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 276 + height: 240 }, render: function () { @@ -84906,7 +84906,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -84950,7 +84950,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -85204,7 +85204,7 @@ BI.DynamicYearMonthPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 270 + height: 240 }, render: function () { @@ -85946,7 +85946,7 @@ BI.shortcut("bi.dynamic_year_quarter_card", BI.DynamicYearQuarterCard);BI.Static whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 24 }); }); }, @@ -86204,7 +86204,7 @@ BI.extend(BI.DynamicYearQuarterCombo, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 260 + height: 240 }, render: function () { @@ -86669,10 +86669,12 @@ BI.AbstractAllValueChooser = BI.inherit(BI.Widget, { if (options.keyword) { keywords.push(options.keyword); } + var resultItems = []; BI.each(keywords, function (i, kw) { var search = BI.Func.getSearchResult(items, kw); - items = search.match.concat(search.find); + resultItems = resultItems.concat(search.match).concat(search.find); }); + resultItems = BI.uniq(resultItems); if (options.selectedValues) {// 过滤 var filter = BI.makeObject(options.selectedValues, true); items = BI.filter(items, function (i, ob) { diff --git a/dist/2.0/fineui.js b/dist/2.0/fineui.js index 42b3c0356..3ce01ecf7 100644 --- a/dist/2.0/fineui.js +++ b/dist/2.0/fineui.js @@ -52765,7 +52765,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52818,7 +52818,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { BI.ArrowNode.superclass.doClick.apply(this, arguments); this.checkbox.setSelected(this.isOpened()); }, - + setText: function (text) { BI.ArrowNode.superclass.setText.apply(this, arguments); this.text.setText(text); @@ -52847,7 +52847,7 @@ BI.FirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52930,7 +52930,7 @@ BI.IconArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, iconCls: "" @@ -53026,7 +53026,7 @@ BI.LastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53107,7 +53107,7 @@ BI.MidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53180,7 +53180,7 @@ BI.shortcut("bi.mid_plus_group_node", BI.MidPlusGroupNode);BI.MultiLayerIconArro id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 16, iconWidth: 16, iconCls: "" @@ -53276,7 +53276,7 @@ BI.PlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53397,7 +53397,7 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53426,19 +53426,19 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "first-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53493,7 +53493,7 @@ BI.shortcut("bi.first_tree_leaf_item", BI.FirstTreeLeafItem);BI.IconTreeLeafItem logic: { dynamic: false }, - height: 30, + height: 24, iconWidth: 16, iconHeight: 16, iconCls: "" @@ -53588,7 +53588,7 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53617,19 +53617,19 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "last-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53692,7 +53692,7 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53721,19 +53721,19 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "mid-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53790,7 +53790,7 @@ BI.MultiLayerIconTreeLeafItem = BI.inherit(BI.BasicButton, { return BI.extend(BI.MultiLayerIconTreeLeafItem.superclass._defaultConfig.apply(this, arguments), { extraCls: "bi-multilayer-icon-tree-leaf-item bi-list-item-active", layer: 0, - height: 30, + height: 24, iconCls: "", iconHeight: 16, iconWidth: 16 @@ -53890,7 +53890,7 @@ BI.TreeTextLeafItem = BI.inherit(BI.BasicButton, { extraCls: "bi-tree-text-leaf-item bi-list-item-active", id: "", pId: "", - height: 30, + height: 24, hgap: 0, lgap: 0, rgap: 0 @@ -54112,7 +54112,7 @@ BI.Calendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, value: o.year + "-" + month + "-" + td.text, disabled: td.lastMonth || td.nextMonth || td.disabled, lgap: 5, @@ -54129,7 +54129,7 @@ BI.Calendar = BI.inherit(BI.Widget, { columns: 7, rows: 6, columnSize: [1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7], - rowSize: 30, + rowSize: 24, vgap: 10 }))] }); @@ -54278,7 +54278,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, width: 45, value: td.text, disabled: td.disabled @@ -54294,7 +54294,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 24 })), { type: "bi.center_adapt", vgap: 1 @@ -54408,8 +54408,8 @@ BI.FirstTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.FirstTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type2", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54431,8 +54431,8 @@ BI.LastTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend(BI.LastTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type4", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54454,8 +54454,8 @@ BI.MidTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.MidTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type3", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54477,8 +54477,8 @@ BI.TreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.TreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type1", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -56603,7 +56603,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -56631,7 +56631,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { BI.IconComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -56806,7 +56806,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if (BI.isKey(o.value)) { @@ -56865,7 +56865,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconHeight: o.iconHeight, iconWidth: o.iconWidth, iconWrapperWidth: o.iconWrapperWidth @@ -56904,7 +56904,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { var o = this.options; items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconWrapperWidth: o.iconWrapperWidth, iconHeight: o.iconHeight, iconWidth: o.iconWidth @@ -57451,7 +57451,7 @@ BI.shortcut("bi.small_text_value_check_combo", BI.SmallTextValueCheckCombo);BI.T return BI.extend({ type: "bi.single_select_item", cls: "bi-list-item", - height: 30 + height: 24 }, item); }); }, @@ -57526,7 +57526,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if(BI.isKey(o.value)) { @@ -57615,7 +57615,7 @@ BI.SmallTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); }, @@ -57651,7 +57651,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom items: BI.createItems(o.items, { type: "bi.single_select_item", textAlign: o.textAlign, - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -57680,7 +57680,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom BI.TextValueComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -63284,7 +63284,7 @@ BI.extend(BI.DynamicDatePane, { BI.DateTimeCombo = BI.inherit(BI.Single, { constants: { popupHeight: 290, - popupWidth: 310, + popupWidth: 270, comboAdjustHeight: 1, border: 1 }, @@ -63419,8 +63419,8 @@ BI.DateTimePopup = BI.inherit(BI.Widget, { _defaultConfig: function () { return BI.extend(BI.DateTimePopup.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-date-time-popup", - width: 310, - height: 410 + width: 268, + height: 374 }); }, _init: function () { @@ -64055,7 +64055,7 @@ BI.shortcut("bi.down_list_group", BI.DownListGroup);BI.DownListItem = BI.inherit return BI.extend(conf, { baseCls: "bi-down-list-item bi-list-item-active", cls: "", - height: 30, + height: 24, logic: { dynamic: true }, @@ -64268,7 +64268,7 @@ BI.shortcut("bi.down_list_group_item", BI.DownListGroupItem);/** BI.DownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -65382,8 +65382,8 @@ BI.DynamicDatePopup = BI.inherit(BI.Widget, { props: { baseCls: "bi-dynamic-date-popup", - width: 290, - height: 380 + width: 248, + height: 344 }, _init: function () { @@ -66233,8 +66233,8 @@ BI.extend(BI.DynamicDateTimeCombo, { props: { baseCls: "bi-dynamic-date-time-popup", - width: 290, - height: 421 + width: 248, + height: 385 }, _init: function () { @@ -68313,7 +68313,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -68332,7 +68332,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -68565,7 +68565,7 @@ BI.shortcut("bi.multi_layer_down_list_combo", BI.DownListCombo);/** BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 25, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -69464,7 +69464,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69505,7 +69505,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69513,7 +69513,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69567,7 +69567,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69608,7 +69608,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69616,7 +69616,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69666,7 +69666,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69707,7 +69707,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69715,7 +69715,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69765,7 +69765,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69806,7 +69806,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69814,7 +69814,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70430,7 +70430,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70452,7 +70452,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70460,7 +70460,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70533,7 +70533,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70555,7 +70555,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70563,7 +70563,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70635,7 +70635,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70657,7 +70657,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70665,7 +70665,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70735,7 +70735,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70757,7 +70757,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70838,7 +70838,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -70881,7 +70881,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70889,7 +70889,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70937,7 +70937,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -70979,7 +70979,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70987,7 +70987,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -71035,7 +71035,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -71077,7 +71077,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -71085,7 +71085,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -72796,7 +72796,7 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -78298,7 +78298,7 @@ BI.QuarterPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 25 }); }); @@ -79194,7 +79194,7 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -79535,7 +79535,7 @@ BI.SelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79620,7 +79620,7 @@ BI.SelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79705,7 +79705,7 @@ BI.SelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79790,7 +79790,7 @@ BI.SelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -81382,7 +81382,7 @@ BI.SingleSelectLoader = BI.inherit(BI.Widget, { type: this.options.allowNoSelect ? "bi.single_select_item" : "bi.single_select_combo_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: false }); }, @@ -84853,7 +84853,7 @@ BI.DynamicYearPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 276 + height: 240 }, render: function () { @@ -85310,7 +85310,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -85354,7 +85354,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -85608,7 +85608,7 @@ BI.DynamicYearMonthPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 270 + height: 240 }, render: function () { @@ -86350,7 +86350,7 @@ BI.shortcut("bi.dynamic_year_quarter_card", BI.DynamicYearQuarterCard);BI.Static whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 24 }); }); }, @@ -86608,7 +86608,7 @@ BI.extend(BI.DynamicYearQuarterCombo, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 260 + height: 240 }, render: function () { @@ -87073,10 +87073,12 @@ BI.AbstractAllValueChooser = BI.inherit(BI.Widget, { if (options.keyword) { keywords.push(options.keyword); } + var resultItems = []; BI.each(keywords, function (i, kw) { var search = BI.Func.getSearchResult(items, kw); - items = search.match.concat(search.find); + resultItems = resultItems.concat(search.match).concat(search.find); }); + resultItems = BI.uniq(resultItems); if (options.selectedValues) {// 过滤 var filter = BI.makeObject(options.selectedValues, true); items = BI.filter(items, function (i, ob) { diff --git a/dist/base.css b/dist/base.css index 02c0078bb..8ea8d9510 100644 --- a/dist/base.css +++ b/dist/base.css @@ -38,10 +38,10 @@ background: url('images/1x/icon/tree_vertical_line_4.png') no-repeat center center; } .ztree li ul.line { - background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 1px 0; } .bi-theme-dark .ztree li ul.line { - background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 1px 0; } .ztree li span.button.chk.checkbox_false_full { background: url('images/2x/icon/check_box_normal.png') no-repeat center center; @@ -1775,13 +1775,13 @@ body .bi-button.button-ignore.disabled.ghost .b-font:before, } .ztree li ul { margin: 0; - padding: 0 0 0 22px; + padding: 0 0 0 18px; } .ztree li a { padding: 1px 3px 0 0; margin: 0; cursor: pointer; - height: 30px; + height: 24px; background-color: transparent; text-decoration: none; vertical-align: top; @@ -1823,7 +1823,7 @@ body .bi-button.button-ignore.disabled.ghost .b-font:before, *border: 0px; } .ztree li span { - line-height: 30px; + line-height: 24px; margin-right: 2px; } .ztree li span.button { @@ -1895,8 +1895,8 @@ body .bi-button.button-ignore.disabled.ghost .b-font:before, background-position: -42px -56px; } .ztree li span.button.switch { - width: 30px; - height: 30px; + width: 25px; + height: 25px; } .ztree li span.button.noline_open { background-position: -92px -72px; diff --git a/dist/bundle.css b/dist/bundle.css index 5270800c3..17180c339 100644 --- a/dist/bundle.css +++ b/dist/bundle.css @@ -2193,10 +2193,10 @@ textarea { background: url('images/1x/icon/tree_vertical_line_4.png') no-repeat center center; } .ztree li ul.line { - background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 1px 0; } .bi-theme-dark .ztree li ul.line { - background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 1px 0; } .ztree li span.button.chk.checkbox_false_full { background: url('images/2x/icon/check_box_normal.png') no-repeat center center; @@ -3930,13 +3930,13 @@ body .bi-button.button-ignore.disabled.ghost .b-font:before, } .ztree li ul { margin: 0; - padding: 0 0 0 22px; + padding: 0 0 0 18px; } .ztree li a { padding: 1px 3px 0 0; margin: 0; cursor: pointer; - height: 30px; + height: 24px; background-color: transparent; text-decoration: none; vertical-align: top; @@ -3978,7 +3978,7 @@ body .bi-button.button-ignore.disabled.ghost .b-font:before, *border: 0px; } .ztree li span { - line-height: 30px; + line-height: 24px; margin-right: 2px; } .ztree li span.button { @@ -4050,8 +4050,8 @@ body .bi-button.button-ignore.disabled.ghost .b-font:before, background-position: -42px -56px; } .ztree li span.button.switch { - width: 30px; - height: 30px; + width: 25px; + height: 25px; } .ztree li span.button.noline_open { background-position: -92px -72px; @@ -4664,10 +4664,10 @@ textarea::-webkit-scrollbar-thumb:hover { background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/tree_vertical_line_4.png') no-repeat center center; } .ztree li ul.line { - background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/tree_vertical_line_1.png') repeat-y 0 0; + background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/tree_vertical_line_1.png') repeat-y 1px 0; } .bi-theme-dark .ztree li ul.line { - background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 0 0; + background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 1px 0; } .ztree li span.button.chk.checkbox_false_full { background: url('http://fine-design-storage.oss-cn-shanghai.aliyuncs.com/fineui/2.0/images/2x/icon/check_box_normal.png') no-repeat center center; diff --git a/dist/bundle.ie.js b/dist/bundle.ie.js index bbe5607d6..64c836b5b 100644 --- a/dist/bundle.ie.js +++ b/dist/bundle.ie.js @@ -52361,7 +52361,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52414,7 +52414,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { BI.ArrowNode.superclass.doClick.apply(this, arguments); this.checkbox.setSelected(this.isOpened()); }, - + setText: function (text) { BI.ArrowNode.superclass.setText.apply(this, arguments); this.text.setText(text); @@ -52443,7 +52443,7 @@ BI.FirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52526,7 +52526,7 @@ BI.IconArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, iconCls: "" @@ -52622,7 +52622,7 @@ BI.LastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52703,7 +52703,7 @@ BI.MidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52776,7 +52776,7 @@ BI.shortcut("bi.mid_plus_group_node", BI.MidPlusGroupNode);BI.MultiLayerIconArro id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 16, iconWidth: 16, iconCls: "" @@ -52872,7 +52872,7 @@ BI.PlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52993,7 +52993,7 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53022,19 +53022,19 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "first-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53089,7 +53089,7 @@ BI.shortcut("bi.first_tree_leaf_item", BI.FirstTreeLeafItem);BI.IconTreeLeafItem logic: { dynamic: false }, - height: 30, + height: 24, iconWidth: 16, iconHeight: 16, iconCls: "" @@ -53184,7 +53184,7 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53213,19 +53213,19 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "last-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53288,7 +53288,7 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53317,19 +53317,19 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "mid-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53386,7 +53386,7 @@ BI.MultiLayerIconTreeLeafItem = BI.inherit(BI.BasicButton, { return BI.extend(BI.MultiLayerIconTreeLeafItem.superclass._defaultConfig.apply(this, arguments), { extraCls: "bi-multilayer-icon-tree-leaf-item bi-list-item-active", layer: 0, - height: 30, + height: 24, iconCls: "", iconHeight: 16, iconWidth: 16 @@ -53486,7 +53486,7 @@ BI.TreeTextLeafItem = BI.inherit(BI.BasicButton, { extraCls: "bi-tree-text-leaf-item bi-list-item-active", id: "", pId: "", - height: 30, + height: 24, hgap: 0, lgap: 0, rgap: 0 @@ -53708,7 +53708,7 @@ BI.Calendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, value: o.year + "-" + month + "-" + td.text, disabled: td.lastMonth || td.nextMonth || td.disabled, lgap: 5, @@ -53725,7 +53725,7 @@ BI.Calendar = BI.inherit(BI.Widget, { columns: 7, rows: 6, columnSize: [1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7], - rowSize: 30, + rowSize: 24, vgap: 10 }))] }); @@ -53874,7 +53874,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, width: 45, value: td.text, disabled: td.disabled @@ -53890,7 +53890,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 24 })), { type: "bi.center_adapt", vgap: 1 @@ -54004,8 +54004,8 @@ BI.FirstTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.FirstTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type2", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54027,8 +54027,8 @@ BI.LastTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend(BI.LastTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type4", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54050,8 +54050,8 @@ BI.MidTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.MidTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type3", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54073,8 +54073,8 @@ BI.TreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.TreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type1", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -56199,7 +56199,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -56227,7 +56227,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { BI.IconComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -56402,7 +56402,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if (BI.isKey(o.value)) { @@ -56461,7 +56461,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconHeight: o.iconHeight, iconWidth: o.iconWidth, iconWrapperWidth: o.iconWrapperWidth @@ -56500,7 +56500,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { var o = this.options; items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconWrapperWidth: o.iconWrapperWidth, iconHeight: o.iconHeight, iconWidth: o.iconWidth @@ -57047,7 +57047,7 @@ BI.shortcut("bi.small_text_value_check_combo", BI.SmallTextValueCheckCombo);BI.T return BI.extend({ type: "bi.single_select_item", cls: "bi-list-item", - height: 30 + height: 24 }, item); }); }, @@ -57122,7 +57122,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if(BI.isKey(o.value)) { @@ -57211,7 +57211,7 @@ BI.SmallTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); }, @@ -57247,7 +57247,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom items: BI.createItems(o.items, { type: "bi.single_select_item", textAlign: o.textAlign, - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -57276,7 +57276,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom BI.TextValueComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -62880,7 +62880,7 @@ BI.extend(BI.DynamicDatePane, { BI.DateTimeCombo = BI.inherit(BI.Single, { constants: { popupHeight: 290, - popupWidth: 310, + popupWidth: 270, comboAdjustHeight: 1, border: 1 }, @@ -63015,8 +63015,8 @@ BI.DateTimePopup = BI.inherit(BI.Widget, { _defaultConfig: function () { return BI.extend(BI.DateTimePopup.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-date-time-popup", - width: 310, - height: 410 + width: 268, + height: 374 }); }, _init: function () { @@ -63651,7 +63651,7 @@ BI.shortcut("bi.down_list_group", BI.DownListGroup);BI.DownListItem = BI.inherit return BI.extend(conf, { baseCls: "bi-down-list-item bi-list-item-active", cls: "", - height: 30, + height: 24, logic: { dynamic: true }, @@ -63864,7 +63864,7 @@ BI.shortcut("bi.down_list_group_item", BI.DownListGroupItem);/** BI.DownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -64978,8 +64978,8 @@ BI.DynamicDatePopup = BI.inherit(BI.Widget, { props: { baseCls: "bi-dynamic-date-popup", - width: 290, - height: 380 + width: 248, + height: 344 }, _init: function () { @@ -65829,8 +65829,8 @@ BI.extend(BI.DynamicDateTimeCombo, { props: { baseCls: "bi-dynamic-date-time-popup", - width: 290, - height: 421 + width: 248, + height: 385 }, _init: function () { @@ -67909,7 +67909,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -67928,7 +67928,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -68161,7 +68161,7 @@ BI.shortcut("bi.multi_layer_down_list_combo", BI.DownListCombo);/** BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 25, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -69060,7 +69060,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69101,7 +69101,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69109,7 +69109,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69163,7 +69163,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69204,7 +69204,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69212,7 +69212,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69262,7 +69262,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69303,7 +69303,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69311,7 +69311,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69361,7 +69361,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69402,7 +69402,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69410,7 +69410,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70026,7 +70026,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70048,7 +70048,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70056,7 +70056,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70129,7 +70129,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70151,7 +70151,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70159,7 +70159,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70231,7 +70231,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70253,7 +70253,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70261,7 +70261,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70331,7 +70331,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70353,7 +70353,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70434,7 +70434,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -70477,7 +70477,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70485,7 +70485,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70533,7 +70533,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -70575,7 +70575,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70583,7 +70583,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70631,7 +70631,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -70673,7 +70673,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70681,7 +70681,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -72392,7 +72392,7 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -77894,7 +77894,7 @@ BI.QuarterPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 25 }); }); @@ -78790,7 +78790,7 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -79131,7 +79131,7 @@ BI.SelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79216,7 +79216,7 @@ BI.SelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79301,7 +79301,7 @@ BI.SelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79386,7 +79386,7 @@ BI.SelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -80978,7 +80978,7 @@ BI.SingleSelectLoader = BI.inherit(BI.Widget, { type: this.options.allowNoSelect ? "bi.single_select_item" : "bi.single_select_combo_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: false }); }, @@ -84449,7 +84449,7 @@ BI.DynamicYearPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 276 + height: 240 }, render: function () { @@ -84906,7 +84906,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -84950,7 +84950,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -85204,7 +85204,7 @@ BI.DynamicYearMonthPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 270 + height: 240 }, render: function () { @@ -85946,7 +85946,7 @@ BI.shortcut("bi.dynamic_year_quarter_card", BI.DynamicYearQuarterCard);BI.Static whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 24 }); }); }, @@ -86204,7 +86204,7 @@ BI.extend(BI.DynamicYearQuarterCombo, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 260 + height: 240 }, render: function () { @@ -86669,10 +86669,12 @@ BI.AbstractAllValueChooser = BI.inherit(BI.Widget, { if (options.keyword) { keywords.push(options.keyword); } + var resultItems = []; BI.each(keywords, function (i, kw) { var search = BI.Func.getSearchResult(items, kw); - items = search.match.concat(search.find); + resultItems = resultItems.concat(search.match).concat(search.find); }); + resultItems = BI.uniq(resultItems); if (options.selectedValues) {// 过滤 var filter = BI.makeObject(options.selectedValues, true); items = BI.filter(items, function (i, ob) { diff --git a/dist/bundle.js b/dist/bundle.js index 42b3c0356..3ce01ecf7 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -52765,7 +52765,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52818,7 +52818,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { BI.ArrowNode.superclass.doClick.apply(this, arguments); this.checkbox.setSelected(this.isOpened()); }, - + setText: function (text) { BI.ArrowNode.superclass.setText.apply(this, arguments); this.text.setText(text); @@ -52847,7 +52847,7 @@ BI.FirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52930,7 +52930,7 @@ BI.IconArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, iconCls: "" @@ -53026,7 +53026,7 @@ BI.LastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53107,7 +53107,7 @@ BI.MidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53180,7 +53180,7 @@ BI.shortcut("bi.mid_plus_group_node", BI.MidPlusGroupNode);BI.MultiLayerIconArro id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 16, iconWidth: 16, iconCls: "" @@ -53276,7 +53276,7 @@ BI.PlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53397,7 +53397,7 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53426,19 +53426,19 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "first-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53493,7 +53493,7 @@ BI.shortcut("bi.first_tree_leaf_item", BI.FirstTreeLeafItem);BI.IconTreeLeafItem logic: { dynamic: false }, - height: 30, + height: 24, iconWidth: 16, iconHeight: 16, iconCls: "" @@ -53588,7 +53588,7 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53617,19 +53617,19 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "last-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53692,7 +53692,7 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53721,19 +53721,19 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "mid-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53790,7 +53790,7 @@ BI.MultiLayerIconTreeLeafItem = BI.inherit(BI.BasicButton, { return BI.extend(BI.MultiLayerIconTreeLeafItem.superclass._defaultConfig.apply(this, arguments), { extraCls: "bi-multilayer-icon-tree-leaf-item bi-list-item-active", layer: 0, - height: 30, + height: 24, iconCls: "", iconHeight: 16, iconWidth: 16 @@ -53890,7 +53890,7 @@ BI.TreeTextLeafItem = BI.inherit(BI.BasicButton, { extraCls: "bi-tree-text-leaf-item bi-list-item-active", id: "", pId: "", - height: 30, + height: 24, hgap: 0, lgap: 0, rgap: 0 @@ -54112,7 +54112,7 @@ BI.Calendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, value: o.year + "-" + month + "-" + td.text, disabled: td.lastMonth || td.nextMonth || td.disabled, lgap: 5, @@ -54129,7 +54129,7 @@ BI.Calendar = BI.inherit(BI.Widget, { columns: 7, rows: 6, columnSize: [1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7], - rowSize: 30, + rowSize: 24, vgap: 10 }))] }); @@ -54278,7 +54278,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, width: 45, value: td.text, disabled: td.disabled @@ -54294,7 +54294,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 24 })), { type: "bi.center_adapt", vgap: 1 @@ -54408,8 +54408,8 @@ BI.FirstTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.FirstTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type2", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54431,8 +54431,8 @@ BI.LastTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend(BI.LastTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type4", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54454,8 +54454,8 @@ BI.MidTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.MidTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type3", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54477,8 +54477,8 @@ BI.TreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.TreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type1", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -56603,7 +56603,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -56631,7 +56631,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { BI.IconComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -56806,7 +56806,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if (BI.isKey(o.value)) { @@ -56865,7 +56865,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconHeight: o.iconHeight, iconWidth: o.iconWidth, iconWrapperWidth: o.iconWrapperWidth @@ -56904,7 +56904,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { var o = this.options; items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconWrapperWidth: o.iconWrapperWidth, iconHeight: o.iconHeight, iconWidth: o.iconWidth @@ -57451,7 +57451,7 @@ BI.shortcut("bi.small_text_value_check_combo", BI.SmallTextValueCheckCombo);BI.T return BI.extend({ type: "bi.single_select_item", cls: "bi-list-item", - height: 30 + height: 24 }, item); }); }, @@ -57526,7 +57526,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if(BI.isKey(o.value)) { @@ -57615,7 +57615,7 @@ BI.SmallTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); }, @@ -57651,7 +57651,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom items: BI.createItems(o.items, { type: "bi.single_select_item", textAlign: o.textAlign, - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -57680,7 +57680,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom BI.TextValueComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -63284,7 +63284,7 @@ BI.extend(BI.DynamicDatePane, { BI.DateTimeCombo = BI.inherit(BI.Single, { constants: { popupHeight: 290, - popupWidth: 310, + popupWidth: 270, comboAdjustHeight: 1, border: 1 }, @@ -63419,8 +63419,8 @@ BI.DateTimePopup = BI.inherit(BI.Widget, { _defaultConfig: function () { return BI.extend(BI.DateTimePopup.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-date-time-popup", - width: 310, - height: 410 + width: 268, + height: 374 }); }, _init: function () { @@ -64055,7 +64055,7 @@ BI.shortcut("bi.down_list_group", BI.DownListGroup);BI.DownListItem = BI.inherit return BI.extend(conf, { baseCls: "bi-down-list-item bi-list-item-active", cls: "", - height: 30, + height: 24, logic: { dynamic: true }, @@ -64268,7 +64268,7 @@ BI.shortcut("bi.down_list_group_item", BI.DownListGroupItem);/** BI.DownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -65382,8 +65382,8 @@ BI.DynamicDatePopup = BI.inherit(BI.Widget, { props: { baseCls: "bi-dynamic-date-popup", - width: 290, - height: 380 + width: 248, + height: 344 }, _init: function () { @@ -66233,8 +66233,8 @@ BI.extend(BI.DynamicDateTimeCombo, { props: { baseCls: "bi-dynamic-date-time-popup", - width: 290, - height: 421 + width: 248, + height: 385 }, _init: function () { @@ -68313,7 +68313,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -68332,7 +68332,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -68565,7 +68565,7 @@ BI.shortcut("bi.multi_layer_down_list_combo", BI.DownListCombo);/** BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 25, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -69464,7 +69464,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69505,7 +69505,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69513,7 +69513,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69567,7 +69567,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69608,7 +69608,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69616,7 +69616,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69666,7 +69666,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69707,7 +69707,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69715,7 +69715,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69765,7 +69765,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69806,7 +69806,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69814,7 +69814,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70430,7 +70430,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70452,7 +70452,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70460,7 +70460,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70533,7 +70533,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70555,7 +70555,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70563,7 +70563,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70635,7 +70635,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70657,7 +70657,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70665,7 +70665,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70735,7 +70735,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70757,7 +70757,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70838,7 +70838,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -70881,7 +70881,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70889,7 +70889,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70937,7 +70937,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -70979,7 +70979,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70987,7 +70987,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -71035,7 +71035,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -71077,7 +71077,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -71085,7 +71085,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -72796,7 +72796,7 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -78298,7 +78298,7 @@ BI.QuarterPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 25 }); }); @@ -79194,7 +79194,7 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -79535,7 +79535,7 @@ BI.SelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79620,7 +79620,7 @@ BI.SelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79705,7 +79705,7 @@ BI.SelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79790,7 +79790,7 @@ BI.SelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -81382,7 +81382,7 @@ BI.SingleSelectLoader = BI.inherit(BI.Widget, { type: this.options.allowNoSelect ? "bi.single_select_item" : "bi.single_select_combo_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: false }); }, @@ -84853,7 +84853,7 @@ BI.DynamicYearPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 276 + height: 240 }, render: function () { @@ -85310,7 +85310,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -85354,7 +85354,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -85608,7 +85608,7 @@ BI.DynamicYearMonthPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 270 + height: 240 }, render: function () { @@ -86350,7 +86350,7 @@ BI.shortcut("bi.dynamic_year_quarter_card", BI.DynamicYearQuarterCard);BI.Static whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 24 }); }); }, @@ -86608,7 +86608,7 @@ BI.extend(BI.DynamicYearQuarterCombo, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 260 + height: 240 }, render: function () { @@ -87073,10 +87073,12 @@ BI.AbstractAllValueChooser = BI.inherit(BI.Widget, { if (options.keyword) { keywords.push(options.keyword); } + var resultItems = []; BI.each(keywords, function (i, kw) { var search = BI.Func.getSearchResult(items, kw); - items = search.match.concat(search.find); + resultItems = resultItems.concat(search.match).concat(search.find); }); + resultItems = BI.uniq(resultItems); if (options.selectedValues) {// 过滤 var filter = BI.makeObject(options.selectedValues, true); items = BI.filter(items, function (i, ob) { diff --git a/dist/case.js b/dist/case.js index e0783dfaa..bbf10978f 100644 --- a/dist/case.js +++ b/dist/case.js @@ -430,7 +430,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -483,7 +483,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { BI.ArrowNode.superclass.doClick.apply(this, arguments); this.checkbox.setSelected(this.isOpened()); }, - + setText: function (text) { BI.ArrowNode.superclass.setText.apply(this, arguments); this.text.setText(text); @@ -512,7 +512,7 @@ BI.FirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -595,7 +595,7 @@ BI.IconArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, iconCls: "" @@ -691,7 +691,7 @@ BI.LastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -772,7 +772,7 @@ BI.MidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -845,7 +845,7 @@ BI.shortcut("bi.mid_plus_group_node", BI.MidPlusGroupNode);BI.MultiLayerIconArro id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 16, iconWidth: 16, iconCls: "" @@ -941,7 +941,7 @@ BI.PlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -1062,7 +1062,7 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -1091,19 +1091,19 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "first-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -1158,7 +1158,7 @@ BI.shortcut("bi.first_tree_leaf_item", BI.FirstTreeLeafItem);BI.IconTreeLeafItem logic: { dynamic: false }, - height: 30, + height: 24, iconWidth: 16, iconHeight: 16, iconCls: "" @@ -1253,7 +1253,7 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -1282,19 +1282,19 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "last-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -1357,7 +1357,7 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -1386,19 +1386,19 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "mid-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -1455,7 +1455,7 @@ BI.MultiLayerIconTreeLeafItem = BI.inherit(BI.BasicButton, { return BI.extend(BI.MultiLayerIconTreeLeafItem.superclass._defaultConfig.apply(this, arguments), { extraCls: "bi-multilayer-icon-tree-leaf-item bi-list-item-active", layer: 0, - height: 30, + height: 24, iconCls: "", iconHeight: 16, iconWidth: 16 @@ -1555,7 +1555,7 @@ BI.TreeTextLeafItem = BI.inherit(BI.BasicButton, { extraCls: "bi-tree-text-leaf-item bi-list-item-active", id: "", pId: "", - height: 30, + height: 24, hgap: 0, lgap: 0, rgap: 0 @@ -1777,7 +1777,7 @@ BI.Calendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, value: o.year + "-" + month + "-" + td.text, disabled: td.lastMonth || td.nextMonth || td.disabled, lgap: 5, @@ -1794,7 +1794,7 @@ BI.Calendar = BI.inherit(BI.Widget, { columns: 7, rows: 6, columnSize: [1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7], - rowSize: 30, + rowSize: 24, vgap: 10 }))] }); @@ -1943,7 +1943,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, width: 45, value: td.text, disabled: td.disabled @@ -1959,7 +1959,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 24 })), { type: "bi.center_adapt", vgap: 1 @@ -2073,8 +2073,8 @@ BI.FirstTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.FirstTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type2", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -2096,8 +2096,8 @@ BI.LastTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend(BI.LastTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type4", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -2119,8 +2119,8 @@ BI.MidTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.MidTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type3", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -2142,8 +2142,8 @@ BI.TreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.TreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type1", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -4268,7 +4268,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -4296,7 +4296,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { BI.IconComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -4471,7 +4471,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if (BI.isKey(o.value)) { @@ -4530,7 +4530,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconHeight: o.iconHeight, iconWidth: o.iconWidth, iconWrapperWidth: o.iconWrapperWidth @@ -4569,7 +4569,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { var o = this.options; items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconWrapperWidth: o.iconWrapperWidth, iconHeight: o.iconHeight, iconWidth: o.iconWidth @@ -5116,7 +5116,7 @@ BI.shortcut("bi.small_text_value_check_combo", BI.SmallTextValueCheckCombo);BI.T return BI.extend({ type: "bi.single_select_item", cls: "bi-list-item", - height: 30 + height: 24 }, item); }); }, @@ -5191,7 +5191,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if(BI.isKey(o.value)) { @@ -5280,7 +5280,7 @@ BI.SmallTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); }, @@ -5316,7 +5316,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom items: BI.createItems(o.items, { type: "bi.single_select_item", textAlign: o.textAlign, - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -5345,7 +5345,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom BI.TextValueComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_item", - height: 30 + height: 24 }); this.popup.populate(items); }, diff --git a/dist/demo.js b/dist/demo.js index 74f30e88e..543d484b6 100644 --- a/dist/demo.js +++ b/dist/demo.js @@ -2711,8 +2711,7 @@ BI.shortcut("demo.lazy_loader", Demo.Func);Demo.Func = BI.inherit(BI.Widget, { } }, items: BI.createItems(BI.deepClone(Demo.CONSTANTS.SIMPLE_ITEMS), { - type: "bi.multi_select_item", - height: 30 + type: "bi.multi_select_item" }) }); } @@ -4389,7 +4388,7 @@ BI.shortcut("demo.combo_group", Demo.Func);Demo.Func = BI.inherit(BI.Widget, { type: "bi.button_group", items: BI.createItems(BI.deepClone(this.years), { type: "bi.single_select_radio_item", - height: 30, + height: 25, handler: function (v) { } @@ -5849,16 +5848,15 @@ BI.shortcut("demo.virtual_list", Demo.Func);Demo.AbsoluteLayout = BI.inherit(BI. render: function () { return { type: "bi.absolute", - scrollx: true, items: [{ el: { type: "bi.label", text: "绝对布局", cls: "layout-bg1", - width: 800, + width: 300, height: 200 }, - right: 100, + left: 100, top: 100 }] }; @@ -9218,11 +9216,9 @@ Demo.Items = BI.inherit(BI.Widget, { text: "单选item" }, { type: "bi.single_select_item", - height: 30, text: "单选项" }, { type: "bi.single_select_radio_item", - height: 30, text: "单选项" }, { type: "bi.label", @@ -9230,7 +9226,6 @@ Demo.Items = BI.inherit(BI.Widget, { text: "复选item" }, { type: "bi.multi_select_item", - height: 30, text: "复选项" }, { type: "bi.switch", diff --git a/dist/fineui.css b/dist/fineui.css index cd6d66dc4..872a06777 100644 --- a/dist/fineui.css +++ b/dist/fineui.css @@ -2193,10 +2193,10 @@ textarea { background: url('images/1x/icon/tree_vertical_line_4.png') no-repeat center center; } .ztree li ul.line { - background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 1px 0; } .bi-theme-dark .ztree li ul.line { - background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 1px 0; } .ztree li span.button.chk.checkbox_false_full { background: url('images/2x/icon/check_box_normal.png') no-repeat center center; @@ -3930,13 +3930,13 @@ body .bi-button.button-ignore.disabled.ghost .b-font:before, } .ztree li ul { margin: 0; - padding: 0 0 0 22px; + padding: 0 0 0 18px; } .ztree li a { padding: 1px 3px 0 0; margin: 0; cursor: pointer; - height: 30px; + height: 24px; background-color: transparent; text-decoration: none; vertical-align: top; @@ -3978,7 +3978,7 @@ body .bi-button.button-ignore.disabled.ghost .b-font:before, *border: 0px; } .ztree li span { - line-height: 30px; + line-height: 24px; margin-right: 2px; } .ztree li span.button { @@ -4050,8 +4050,8 @@ body .bi-button.button-ignore.disabled.ghost .b-font:before, background-position: -42px -56px; } .ztree li span.button.switch { - width: 30px; - height: 30px; + width: 25px; + height: 25px; } .ztree li span.button.noline_open { background-position: -92px -72px; @@ -4664,10 +4664,10 @@ textarea::-webkit-scrollbar-thumb:hover { background: url('resources?path=/com/fr/web/ui/images/1x/icon/tree_vertical_line_4.png') no-repeat center center; } .ztree li ul.line { - background: url('resources?path=/com/fr/web/ui/images/1x/icon/tree_vertical_line_1.png') repeat-y 0 0; + background: url('resources?path=/com/fr/web/ui/images/1x/icon/tree_vertical_line_1.png') repeat-y 1px 0; } .bi-theme-dark .ztree li ul.line { - background: url('resources?path=/com/fr/web/ui/images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 0 0; + background: url('resources?path=/com/fr/web/ui/images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 1px 0; } .ztree li span.button.chk.checkbox_false_full { background: url('resources?path=/com/fr/web/ui/images/2x/icon/check_box_normal.png') no-repeat center center; diff --git a/dist/fineui.ie.js b/dist/fineui.ie.js index 2e1f95edb..72e82c15f 100644 --- a/dist/fineui.ie.js +++ b/dist/fineui.ie.js @@ -52606,7 +52606,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52659,7 +52659,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { BI.ArrowNode.superclass.doClick.apply(this, arguments); this.checkbox.setSelected(this.isOpened()); }, - + setText: function (text) { BI.ArrowNode.superclass.setText.apply(this, arguments); this.text.setText(text); @@ -52688,7 +52688,7 @@ BI.FirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52771,7 +52771,7 @@ BI.IconArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, iconCls: "" @@ -52867,7 +52867,7 @@ BI.LastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52948,7 +52948,7 @@ BI.MidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53021,7 +53021,7 @@ BI.shortcut("bi.mid_plus_group_node", BI.MidPlusGroupNode);BI.MultiLayerIconArro id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 16, iconWidth: 16, iconCls: "" @@ -53117,7 +53117,7 @@ BI.PlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53238,7 +53238,7 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53267,19 +53267,19 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "first-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53334,7 +53334,7 @@ BI.shortcut("bi.first_tree_leaf_item", BI.FirstTreeLeafItem);BI.IconTreeLeafItem logic: { dynamic: false }, - height: 30, + height: 24, iconWidth: 16, iconHeight: 16, iconCls: "" @@ -53429,7 +53429,7 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53458,19 +53458,19 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "last-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53533,7 +53533,7 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53562,19 +53562,19 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "mid-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53631,7 +53631,7 @@ BI.MultiLayerIconTreeLeafItem = BI.inherit(BI.BasicButton, { return BI.extend(BI.MultiLayerIconTreeLeafItem.superclass._defaultConfig.apply(this, arguments), { extraCls: "bi-multilayer-icon-tree-leaf-item bi-list-item-active", layer: 0, - height: 30, + height: 24, iconCls: "", iconHeight: 16, iconWidth: 16 @@ -53731,7 +53731,7 @@ BI.TreeTextLeafItem = BI.inherit(BI.BasicButton, { extraCls: "bi-tree-text-leaf-item bi-list-item-active", id: "", pId: "", - height: 30, + height: 24, hgap: 0, lgap: 0, rgap: 0 @@ -53953,7 +53953,7 @@ BI.Calendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, value: o.year + "-" + month + "-" + td.text, disabled: td.lastMonth || td.nextMonth || td.disabled, lgap: 5, @@ -53970,7 +53970,7 @@ BI.Calendar = BI.inherit(BI.Widget, { columns: 7, rows: 6, columnSize: [1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7], - rowSize: 30, + rowSize: 24, vgap: 10 }))] }); @@ -54119,7 +54119,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, width: 45, value: td.text, disabled: td.disabled @@ -54135,7 +54135,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 24 })), { type: "bi.center_adapt", vgap: 1 @@ -54249,8 +54249,8 @@ BI.FirstTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.FirstTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type2", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54272,8 +54272,8 @@ BI.LastTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend(BI.LastTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type4", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54295,8 +54295,8 @@ BI.MidTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.MidTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type3", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54318,8 +54318,8 @@ BI.TreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.TreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type1", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -56444,7 +56444,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -56472,7 +56472,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { BI.IconComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -56647,7 +56647,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if (BI.isKey(o.value)) { @@ -56706,7 +56706,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconHeight: o.iconHeight, iconWidth: o.iconWidth, iconWrapperWidth: o.iconWrapperWidth @@ -56745,7 +56745,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { var o = this.options; items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconWrapperWidth: o.iconWrapperWidth, iconHeight: o.iconHeight, iconWidth: o.iconWidth @@ -57292,7 +57292,7 @@ BI.shortcut("bi.small_text_value_check_combo", BI.SmallTextValueCheckCombo);BI.T return BI.extend({ type: "bi.single_select_item", cls: "bi-list-item", - height: 30 + height: 24 }, item); }); }, @@ -57367,7 +57367,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if(BI.isKey(o.value)) { @@ -57456,7 +57456,7 @@ BI.SmallTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); }, @@ -57492,7 +57492,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom items: BI.createItems(o.items, { type: "bi.single_select_item", textAlign: o.textAlign, - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -57521,7 +57521,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom BI.TextValueComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -63125,7 +63125,7 @@ BI.extend(BI.DynamicDatePane, { BI.DateTimeCombo = BI.inherit(BI.Single, { constants: { popupHeight: 290, - popupWidth: 310, + popupWidth: 270, comboAdjustHeight: 1, border: 1 }, @@ -63260,8 +63260,8 @@ BI.DateTimePopup = BI.inherit(BI.Widget, { _defaultConfig: function () { return BI.extend(BI.DateTimePopup.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-date-time-popup", - width: 310, - height: 410 + width: 268, + height: 374 }); }, _init: function () { @@ -63896,7 +63896,7 @@ BI.shortcut("bi.down_list_group", BI.DownListGroup);BI.DownListItem = BI.inherit return BI.extend(conf, { baseCls: "bi-down-list-item bi-list-item-active", cls: "", - height: 30, + height: 24, logic: { dynamic: true }, @@ -64109,7 +64109,7 @@ BI.shortcut("bi.down_list_group_item", BI.DownListGroupItem);/** BI.DownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -65223,8 +65223,8 @@ BI.DynamicDatePopup = BI.inherit(BI.Widget, { props: { baseCls: "bi-dynamic-date-popup", - width: 290, - height: 380 + width: 248, + height: 344 }, _init: function () { @@ -66074,8 +66074,8 @@ BI.extend(BI.DynamicDateTimeCombo, { props: { baseCls: "bi-dynamic-date-time-popup", - width: 290, - height: 421 + width: 248, + height: 385 }, _init: function () { @@ -68154,7 +68154,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -68173,7 +68173,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -68406,7 +68406,7 @@ BI.shortcut("bi.multi_layer_down_list_combo", BI.DownListCombo);/** BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 25, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -69305,7 +69305,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69346,7 +69346,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69354,7 +69354,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69408,7 +69408,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69449,7 +69449,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69457,7 +69457,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69507,7 +69507,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69548,7 +69548,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69556,7 +69556,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69606,7 +69606,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69647,7 +69647,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69655,7 +69655,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70271,7 +70271,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70293,7 +70293,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70301,7 +70301,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70374,7 +70374,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70396,7 +70396,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70404,7 +70404,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70476,7 +70476,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70498,7 +70498,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70506,7 +70506,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70576,7 +70576,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70598,7 +70598,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70679,7 +70679,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -70722,7 +70722,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70730,7 +70730,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70778,7 +70778,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -70820,7 +70820,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70828,7 +70828,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70876,7 +70876,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -70918,7 +70918,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70926,7 +70926,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -72637,7 +72637,7 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -78139,7 +78139,7 @@ BI.QuarterPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 25 }); }); @@ -79035,7 +79035,7 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -79376,7 +79376,7 @@ BI.SelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79461,7 +79461,7 @@ BI.SelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79546,7 +79546,7 @@ BI.SelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79631,7 +79631,7 @@ BI.SelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -81223,7 +81223,7 @@ BI.SingleSelectLoader = BI.inherit(BI.Widget, { type: this.options.allowNoSelect ? "bi.single_select_item" : "bi.single_select_combo_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: false }); }, @@ -84694,7 +84694,7 @@ BI.DynamicYearPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 276 + height: 240 }, render: function () { @@ -85151,7 +85151,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -85195,7 +85195,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -85449,7 +85449,7 @@ BI.DynamicYearMonthPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 270 + height: 240 }, render: function () { @@ -86191,7 +86191,7 @@ BI.shortcut("bi.dynamic_year_quarter_card", BI.DynamicYearQuarterCard);BI.Static whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 24 }); }); }, @@ -86449,7 +86449,7 @@ BI.extend(BI.DynamicYearQuarterCombo, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 260 + height: 240 }, render: function () { @@ -86914,10 +86914,12 @@ BI.AbstractAllValueChooser = BI.inherit(BI.Widget, { if (options.keyword) { keywords.push(options.keyword); } + var resultItems = []; BI.each(keywords, function (i, kw) { var search = BI.Func.getSearchResult(items, kw); - items = search.match.concat(search.find); + resultItems = resultItems.concat(search.match).concat(search.find); }); + resultItems = BI.uniq(resultItems); if (options.selectedValues) {// 过滤 var filter = BI.makeObject(options.selectedValues, true); items = BI.filter(items, function (i, ob) { diff --git a/dist/fineui.js b/dist/fineui.js index ffcb0d5f5..95d45d044 100644 --- a/dist/fineui.js +++ b/dist/fineui.js @@ -53010,7 +53010,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53063,7 +53063,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { BI.ArrowNode.superclass.doClick.apply(this, arguments); this.checkbox.setSelected(this.isOpened()); }, - + setText: function (text) { BI.ArrowNode.superclass.setText.apply(this, arguments); this.text.setText(text); @@ -53092,7 +53092,7 @@ BI.FirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53175,7 +53175,7 @@ BI.IconArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, iconCls: "" @@ -53271,7 +53271,7 @@ BI.LastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53352,7 +53352,7 @@ BI.MidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53425,7 +53425,7 @@ BI.shortcut("bi.mid_plus_group_node", BI.MidPlusGroupNode);BI.MultiLayerIconArro id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 16, iconWidth: 16, iconCls: "" @@ -53521,7 +53521,7 @@ BI.PlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53642,7 +53642,7 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53671,19 +53671,19 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "first-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53738,7 +53738,7 @@ BI.shortcut("bi.first_tree_leaf_item", BI.FirstTreeLeafItem);BI.IconTreeLeafItem logic: { dynamic: false }, - height: 30, + height: 24, iconWidth: 16, iconHeight: 16, iconCls: "" @@ -53833,7 +53833,7 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53862,19 +53862,19 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "last-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -53937,7 +53937,7 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -53966,19 +53966,19 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "mid-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -54035,7 +54035,7 @@ BI.MultiLayerIconTreeLeafItem = BI.inherit(BI.BasicButton, { return BI.extend(BI.MultiLayerIconTreeLeafItem.superclass._defaultConfig.apply(this, arguments), { extraCls: "bi-multilayer-icon-tree-leaf-item bi-list-item-active", layer: 0, - height: 30, + height: 24, iconCls: "", iconHeight: 16, iconWidth: 16 @@ -54135,7 +54135,7 @@ BI.TreeTextLeafItem = BI.inherit(BI.BasicButton, { extraCls: "bi-tree-text-leaf-item bi-list-item-active", id: "", pId: "", - height: 30, + height: 24, hgap: 0, lgap: 0, rgap: 0 @@ -54357,7 +54357,7 @@ BI.Calendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, value: o.year + "-" + month + "-" + td.text, disabled: td.lastMonth || td.nextMonth || td.disabled, lgap: 5, @@ -54374,7 +54374,7 @@ BI.Calendar = BI.inherit(BI.Widget, { columns: 7, rows: 6, columnSize: [1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7], - rowSize: 30, + rowSize: 24, vgap: 10 }))] }); @@ -54523,7 +54523,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, width: 45, value: td.text, disabled: td.disabled @@ -54539,7 +54539,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 24 })), { type: "bi.center_adapt", vgap: 1 @@ -54653,8 +54653,8 @@ BI.FirstTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.FirstTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type2", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54676,8 +54676,8 @@ BI.LastTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend(BI.LastTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type4", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54699,8 +54699,8 @@ BI.MidTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.MidTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type3", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -54722,8 +54722,8 @@ BI.TreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.TreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type1", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -56848,7 +56848,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -56876,7 +56876,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { BI.IconComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -57051,7 +57051,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if (BI.isKey(o.value)) { @@ -57110,7 +57110,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconHeight: o.iconHeight, iconWidth: o.iconWidth, iconWrapperWidth: o.iconWrapperWidth @@ -57149,7 +57149,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { var o = this.options; items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconWrapperWidth: o.iconWrapperWidth, iconHeight: o.iconHeight, iconWidth: o.iconWidth @@ -57696,7 +57696,7 @@ BI.shortcut("bi.small_text_value_check_combo", BI.SmallTextValueCheckCombo);BI.T return BI.extend({ type: "bi.single_select_item", cls: "bi-list-item", - height: 30 + height: 24 }, item); }); }, @@ -57771,7 +57771,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if(BI.isKey(o.value)) { @@ -57860,7 +57860,7 @@ BI.SmallTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); }, @@ -57896,7 +57896,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom items: BI.createItems(o.items, { type: "bi.single_select_item", textAlign: o.textAlign, - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -57925,7 +57925,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom BI.TextValueComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -63529,7 +63529,7 @@ BI.extend(BI.DynamicDatePane, { BI.DateTimeCombo = BI.inherit(BI.Single, { constants: { popupHeight: 290, - popupWidth: 310, + popupWidth: 270, comboAdjustHeight: 1, border: 1 }, @@ -63664,8 +63664,8 @@ BI.DateTimePopup = BI.inherit(BI.Widget, { _defaultConfig: function () { return BI.extend(BI.DateTimePopup.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-date-time-popup", - width: 310, - height: 410 + width: 268, + height: 374 }); }, _init: function () { @@ -64300,7 +64300,7 @@ BI.shortcut("bi.down_list_group", BI.DownListGroup);BI.DownListItem = BI.inherit return BI.extend(conf, { baseCls: "bi-down-list-item bi-list-item-active", cls: "", - height: 30, + height: 24, logic: { dynamic: true }, @@ -64513,7 +64513,7 @@ BI.shortcut("bi.down_list_group_item", BI.DownListGroupItem);/** BI.DownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -65627,8 +65627,8 @@ BI.DynamicDatePopup = BI.inherit(BI.Widget, { props: { baseCls: "bi-dynamic-date-popup", - width: 290, - height: 380 + width: 248, + height: 344 }, _init: function () { @@ -66478,8 +66478,8 @@ BI.extend(BI.DynamicDateTimeCombo, { props: { baseCls: "bi-dynamic-date-time-popup", - width: 290, - height: 421 + width: 248, + height: 385 }, _init: function () { @@ -68558,7 +68558,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -68577,7 +68577,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -68810,7 +68810,7 @@ BI.shortcut("bi.multi_layer_down_list_combo", BI.DownListCombo);/** BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 25, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -69709,7 +69709,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69750,7 +69750,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69758,7 +69758,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69812,7 +69812,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69853,7 +69853,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69861,7 +69861,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -69911,7 +69911,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -69952,7 +69952,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -69960,7 +69960,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70010,7 +70010,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70051,7 +70051,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70059,7 +70059,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70675,7 +70675,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70697,7 +70697,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70705,7 +70705,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70778,7 +70778,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70800,7 +70800,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70808,7 +70808,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70880,7 +70880,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -70902,7 +70902,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -70910,7 +70910,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -70980,7 +70980,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -71002,7 +71002,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -71083,7 +71083,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -71126,7 +71126,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -71134,7 +71134,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -71182,7 +71182,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -71224,7 +71224,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -71232,7 +71232,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -71280,7 +71280,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -71322,7 +71322,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -71330,7 +71330,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -73041,7 +73041,7 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -78543,7 +78543,7 @@ BI.QuarterPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 25 }); }); @@ -79439,7 +79439,7 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -79780,7 +79780,7 @@ BI.SelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79865,7 +79865,7 @@ BI.SelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -79950,7 +79950,7 @@ BI.SelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -80035,7 +80035,7 @@ BI.SelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -81627,7 +81627,7 @@ BI.SingleSelectLoader = BI.inherit(BI.Widget, { type: this.options.allowNoSelect ? "bi.single_select_item" : "bi.single_select_combo_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: false }); }, @@ -85098,7 +85098,7 @@ BI.DynamicYearPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 276 + height: 240 }, render: function () { @@ -85555,7 +85555,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -85599,7 +85599,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -85853,7 +85853,7 @@ BI.DynamicYearMonthPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 270 + height: 240 }, render: function () { @@ -86595,7 +86595,7 @@ BI.shortcut("bi.dynamic_year_quarter_card", BI.DynamicYearQuarterCard);BI.Static whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 24 }); }); }, @@ -86853,7 +86853,7 @@ BI.extend(BI.DynamicYearQuarterCombo, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 260 + height: 240 }, render: function () { @@ -87318,10 +87318,12 @@ BI.AbstractAllValueChooser = BI.inherit(BI.Widget, { if (options.keyword) { keywords.push(options.keyword); } + var resultItems = []; BI.each(keywords, function (i, kw) { var search = BI.Func.getSearchResult(items, kw); - items = search.match.concat(search.find); + resultItems = resultItems.concat(search.match).concat(search.find); }); + resultItems = BI.uniq(resultItems); if (options.selectedValues) {// 过滤 var filter = BI.makeObject(options.selectedValues, true); items = BI.filter(items, function (i, ob) { diff --git a/dist/fineui_without_jquery_polyfill.js b/dist/fineui_without_jquery_polyfill.js index af56fba2d..4927eb3c1 100644 --- a/dist/fineui_without_jquery_polyfill.js +++ b/dist/fineui_without_jquery_polyfill.js @@ -37162,7 +37162,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -37215,7 +37215,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, { BI.ArrowNode.superclass.doClick.apply(this, arguments); this.checkbox.setSelected(this.isOpened()); }, - + setText: function (text) { BI.ArrowNode.superclass.setText.apply(this, arguments); this.text.setText(text); @@ -37244,7 +37244,7 @@ BI.FirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -37327,7 +37327,7 @@ BI.IconArrowNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, iconCls: "" @@ -37423,7 +37423,7 @@ BI.LastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -37504,7 +37504,7 @@ BI.MidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -37577,7 +37577,7 @@ BI.shortcut("bi.mid_plus_group_node", BI.MidPlusGroupNode);BI.MultiLayerIconArro id: "", pId: "", open: false, - height: 30, + height: 24, iconHeight: 16, iconWidth: 16, iconCls: "" @@ -37673,7 +37673,7 @@ BI.PlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -37794,7 +37794,7 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -37823,19 +37823,19 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "first-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -37890,7 +37890,7 @@ BI.shortcut("bi.first_tree_leaf_item", BI.FirstTreeLeafItem);BI.IconTreeLeafItem logic: { dynamic: false }, - height: 30, + height: 24, iconWidth: 16, iconHeight: 16, iconCls: "" @@ -37985,7 +37985,7 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -38014,19 +38014,19 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "last-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -38089,7 +38089,7 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { id: "", pId: "", layer: 0, - height: 30 + height: 24 }); }, _init: function () { @@ -38118,19 +38118,19 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, { }); var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { - width: 16, + width: 12, el: { type: "bi.layout", cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height } }), { - width: 30, + width: 24, el: { type: "bi.layout", cls: "mid-line-conn-background", - width: 30, + width: 24, height: o.height } }, { @@ -38187,7 +38187,7 @@ BI.MultiLayerIconTreeLeafItem = BI.inherit(BI.BasicButton, { return BI.extend(BI.MultiLayerIconTreeLeafItem.superclass._defaultConfig.apply(this, arguments), { extraCls: "bi-multilayer-icon-tree-leaf-item bi-list-item-active", layer: 0, - height: 30, + height: 24, iconCls: "", iconHeight: 16, iconWidth: 16 @@ -38287,7 +38287,7 @@ BI.TreeTextLeafItem = BI.inherit(BI.BasicButton, { extraCls: "bi-tree-text-leaf-item bi-list-item-active", id: "", pId: "", - height: 30, + height: 24, hgap: 0, lgap: 0, rgap: 0 @@ -38509,7 +38509,7 @@ BI.Calendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, value: o.year + "-" + month + "-" + td.text, disabled: td.lastMonth || td.nextMonth || td.disabled, lgap: 5, @@ -38526,7 +38526,7 @@ BI.Calendar = BI.inherit(BI.Widget, { columns: 7, rows: 6, columnSize: [1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7], - rowSize: 30, + rowSize: 24, vgap: 10 }))] }); @@ -38675,7 +38675,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { whiteSpace: "normal", once: false, forceSelected: true, - height: 30, + height: 24, width: 45, value: td.text, disabled: td.disabled @@ -38691,7 +38691,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 24 })), { type: "bi.center_adapt", vgap: 1 @@ -38805,8 +38805,8 @@ BI.FirstTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.FirstTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type2", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -38828,8 +38828,8 @@ BI.LastTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend(BI.LastTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type4", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -38851,8 +38851,8 @@ BI.MidTreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.MidTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type3", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -38874,8 +38874,8 @@ BI.TreeNodeCheckbox = BI.inherit(BI.IconButton, { _defaultConfig: function () { return BI.extend( BI.TreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { extraCls: "tree-collapse-icon-type1", - iconWidth: 30, - iconHeight: 30 + iconWidth: 24, + iconHeight: 24 }); }, @@ -39457,7 +39457,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -39485,7 +39485,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, { BI.IconComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -39660,7 +39660,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if (BI.isKey(o.value)) { @@ -39719,7 +39719,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { type: "bi.button_group", items: BI.createItems(o.items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconHeight: o.iconHeight, iconWidth: o.iconWidth, iconWrapperWidth: o.iconWrapperWidth @@ -39758,7 +39758,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { var o = this.options; items = BI.createItems(items, { type: "bi.single_select_icon_text_item", - height: 30, + height: 24, iconWrapperWidth: o.iconWrapperWidth, iconHeight: o.iconHeight, iconWidth: o.iconWidth @@ -40305,7 +40305,7 @@ BI.shortcut("bi.small_text_value_check_combo", BI.SmallTextValueCheckCombo);BI.T return BI.extend({ type: "bi.single_select_item", cls: "bi-list-item", - height: 30 + height: 24 }, item); }); }, @@ -40380,7 +40380,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); if(BI.isKey(o.value)) { @@ -40469,7 +40469,7 @@ BI.SmallTextValueCombo = BI.inherit(BI.Widget, { el: this.trigger, popup: { el: this.popup, - maxHeight: 300 + maxHeight: 240 } }); }, @@ -40505,7 +40505,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom items: BI.createItems(o.items, { type: "bi.single_select_item", textAlign: o.textAlign, - height: 30 + height: 24 }), chooseType: o.chooseType, layouts: [{ @@ -40534,7 +40534,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom BI.TextValueComboPopup.superclass.populate.apply(this, arguments); items = BI.createItems(items, { type: "bi.single_select_item", - height: 30 + height: 24 }); this.popup.populate(items); }, @@ -45862,7 +45862,7 @@ BI.extend(BI.DynamicDatePane, { BI.DateTimeCombo = BI.inherit(BI.Single, { constants: { popupHeight: 290, - popupWidth: 310, + popupWidth: 270, comboAdjustHeight: 1, border: 1 }, @@ -45997,8 +45997,8 @@ BI.DateTimePopup = BI.inherit(BI.Widget, { _defaultConfig: function () { return BI.extend(BI.DateTimePopup.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-date-time-popup", - width: 310, - height: 410 + width: 268, + height: 374 }); }, _init: function () { @@ -46633,7 +46633,7 @@ BI.shortcut("bi.down_list_group", BI.DownListGroup);BI.DownListItem = BI.inherit return BI.extend(conf, { baseCls: "bi-down-list-item bi-list-item-active", cls: "", - height: 30, + height: 24, logic: { dynamic: true }, @@ -46846,7 +46846,7 @@ BI.shortcut("bi.down_list_group_item", BI.DownListGroupItem);/** BI.DownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -47960,8 +47960,8 @@ BI.DynamicDatePopup = BI.inherit(BI.Widget, { props: { baseCls: "bi-dynamic-date-popup", - width: 290, - height: 380 + width: 248, + height: 344 }, _init: function () { @@ -48811,8 +48811,8 @@ BI.extend(BI.DynamicDateTimeCombo, { props: { baseCls: "bi-dynamic-date-time-popup", - width: 290, - height: 421 + width: 248, + height: 385 }, _init: function () { @@ -50891,7 +50891,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -50910,7 +50910,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -51143,7 +51143,7 @@ BI.shortcut("bi.multi_layer_down_list_combo", BI.DownListCombo);/** BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 25, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -52042,7 +52042,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52083,7 +52083,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -52091,7 +52091,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -52145,7 +52145,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52186,7 +52186,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -52194,7 +52194,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -52244,7 +52244,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52285,7 +52285,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -52293,7 +52293,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -52343,7 +52343,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -52384,7 +52384,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -52392,7 +52392,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -53008,7 +53008,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53030,7 +53030,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -53038,7 +53038,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -53111,7 +53111,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53133,7 +53133,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -53141,7 +53141,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -53213,7 +53213,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53235,7 +53235,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -53243,7 +53243,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -53313,7 +53313,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -53335,7 +53335,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -53416,7 +53416,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -53459,7 +53459,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -53467,7 +53467,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -53515,7 +53515,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -53557,7 +53557,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -53565,7 +53565,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -53613,7 +53613,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -53655,7 +53655,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -53663,7 +53663,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -55374,7 +55374,7 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -60876,7 +60876,7 @@ BI.QuarterPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 25 }); }); @@ -61772,7 +61772,7 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -62113,7 +62113,7 @@ BI.SelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -62198,7 +62198,7 @@ BI.SelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -62283,7 +62283,7 @@ BI.SelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -62368,7 +62368,7 @@ BI.SelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -63960,7 +63960,7 @@ BI.SingleSelectLoader = BI.inherit(BI.Widget, { type: this.options.allowNoSelect ? "bi.single_select_item" : "bi.single_select_combo_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: false }); }, @@ -67431,7 +67431,7 @@ BI.DynamicYearPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 276 + height: 240 }, render: function () { @@ -67888,7 +67888,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -67932,7 +67932,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -68186,7 +68186,7 @@ BI.DynamicYearMonthPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 270 + height: 240 }, render: function () { @@ -68928,7 +68928,7 @@ BI.shortcut("bi.dynamic_year_quarter_card", BI.DynamicYearQuarterCard);BI.Static whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 24 }); }); }, @@ -69186,7 +69186,7 @@ BI.extend(BI.DynamicYearQuarterCombo, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 260 + height: 240 }, render: function () { @@ -69651,10 +69651,12 @@ BI.AbstractAllValueChooser = BI.inherit(BI.Widget, { if (options.keyword) { keywords.push(options.keyword); } + var resultItems = []; BI.each(keywords, function (i, kw) { var search = BI.Func.getSearchResult(items, kw); - items = search.match.concat(search.find); + resultItems = resultItems.concat(search.match).concat(search.find); }); + resultItems = BI.uniq(resultItems); if (options.selectedValues) {// 过滤 var filter = BI.makeObject(options.selectedValues, true); items = BI.filter(items, function (i, ob) { diff --git a/dist/images/1x/icon/dark/tree_collapse_1.png b/dist/images/1x/icon/dark/tree_collapse_1.png index 9297ac164f54c6938da6b155bcf5193b92003850..3b8bcf82f93d1c9b0f77906825a4a1dac35f47b5 100644 GIT binary patch delta 159 zcmV;Q0AT;Y0muQ6F@J(dL_t(Y4P#&!1*0KAX$UalG9bI4&Y1bNJl%c30$pRFeL~>|u0p2(OITAfskokUYAq4$F z&;n#bK!zjp37QU6K=U9PTo#ZTJfI-N8wZ3k5ixNvs%A6&Y1bNJl%c30$pRFeL~>|u0p2(OITAfskokUYAz*)8 zx%b*vM@e)uhy!AS1%U)ejGzTDLqM89h9mQl4Z_9-iP1cW2051n*n$TZG`MKIaX=^& u;WCtLapV+2wjsk?BRN4dxRU9hj2{3-&m;FlY*h9D0000&c00000NkvXXu0mjfVwF>F diff --git a/dist/images/1x/icon/dark/tree_collapse_3.png b/dist/images/1x/icon/dark/tree_collapse_3.png index 337b009b6a920e68f2083ca995573fe382b4eb60..b9435ff49c5b8db2c2fd63ba6cf1d5b0d2d6c4a5 100644 GIT binary patch delta 189 zcmV;u07C!w0r~-uF%Yy#L_t(Y4P#&+0bIHF+Lw_*7=PIXE&p-Jp^HzQP=nJP7IekP z{GHqOAak*@-Mw6}io*m+N=2J?t%2zynkLBtqD@6oNOKGD#sSD7=)r=__j3yYyA_nW zbd*FlgE+`34J1a;0+=Bn%^<^(`5-Y6fEkX?2JvYgM1#u$Y{3Hx27CZ-91zMx_zWgX r4mpL8Wg@`v*F;Vb4X$K5DB}nK*sm$iOv*A)00000NkvXXu0mjfe5g;k delta 186 zcmV;r07d`$0rvrrF%YpyL_t(Y4P#&+0et-Yy@8QI7=NF>eE*M24qcp&hZCncEa-}n z`9?;b$Xu-KbLX~W6^99ul!^!$1~U|yCdmS1jl{BPZUNpn0J#!9SdjU!I0B_EeqPQ7 zkb2~l1`@*=`=C?=GXSI!1VDyk6T_E^XdXm^%L4S^fdm|W5^o&f*NTwE7Y7JcM6i%k o2ocIhq8}1+f@p9h(?J<)00@yX-=_#UasU7T07*qoM6N<$g6*S9ssI20 diff --git a/dist/images/1x/icon/dark/tree_collapse_4.png b/dist/images/1x/icon/dark/tree_collapse_4.png index 6f96e27808186ec446b8e21f6f0654168759dbc5..c83be64c7a9ea1cd7719c22001a90f1c784e48ba 100644 GIT binary patch delta 177 zcmV;i08anx0qy~iF%YOpL_t(Y4P#&+0bIHF+Lw_*7=PIXE&p-Jp^HzQP=nJP7IekP z{GHqOAak*@-Mw6}io*m+N=2J?t%2zynkLBtqD@6oNOKGD#sSD7=)r=__j3yYyA_nW zbd*FlgE+`34J1a;0+=Bn%^<^(`5-Y6fEkX?2JvYgM1#u$Y{3Hx27CZ-91zMx_zWJE f8x4UW6cz#iylf-)^oS@r00000NkvXXu0mjfjQUAm delta 175 zcmV;g08sz#0qg;gF%YInL_t(Y4P#&+0et-Yy@8QI7=NF>eE*M24qcp&hZCncEa-}n z`9?;b$Xu-KbLX~W6^99ul!^!$1~U|yCdmS1jl{BPZUNpn0J#!9SdjU!I0B_EeqPQ7 zkb2~l1`@*=`=C?=GXSI!1VDyk6T_E^XdXm^%L4S^fdm|W5^o&f*NTwE7Y7JcqpZ;o d7_=b(02DrZEG5BZE_eU{002ovPDHLkV1l0gMlJvV diff --git a/dist/images/1x/icon/dark/tree_expand_1.png b/dist/images/1x/icon/dark/tree_expand_1.png index 8cf6cc33a3f61236027b41bef49239ab45defdae..4538bdab32579fcc3ed6bb996472511d15025ea4 100644 GIT binary patch delta 138 zcmV;50CoSX0kZ*+F@J4IL_t(Y4P#&!1*0KAX$UalG9bI4RDALC^wX41pPjjUM`O sKyx49jRQiN2wRwsij9WA5DWnTz4;5y(6<0@9DsriUlhG6E+%VI7kke4dM^|IH0)?@Wuh5OauyJssiK`LMBy%hmT?81QE?s5zQ^2 bdHewY2mc%2B5IEX00000NkvXXu0mjf7%D{2 delta 172 zcmV;d08{_g0o4JJF@KLqL_t(Y4P#&!1*0KAX$UalGT_sf@BeYhp^NkJaN;zF1zj;R z-^j=lnTwTu?%Z~);xIub7=u>y(6<0@9DsriUl_yU=;P<_4g9>E4IuR(Hi!lRkQmO` z2c;sI0TAWbNst5ZrJ|u92Q>Eq-Z;P>>X@SV;s8@M9uedef+a`UNR}ceh-jXQXl?<` aV;lf_<0H~Csp$m(0000rx2D&EpRM YncpF|><@~eE*M24qcp&hZCncEa-}n z`9?;b$Xu-KbLX~W6^9AZJQWRn3-HDPC>-&HF)WTisf(YNvjL|O{5Eup_004cQ8{g+T&Sd}q002ov KPDHLkU;%=y%s#&W delta 152 zcmV;J0B8T%0oDPKF%XbRL_t(Y4P#&+0et-Yy@8QI7=53-&HF)WTisf(YNvjL6w_iw2Ll!f&Q%UU1yAo~#|wnJdzKh?w0-34 zY<$wmbb?K2Y2p)2CH0OO8L~bm+Z(RQNu)gMcQf);Vqs98Cvqb4;#F}5An6w_iw2Ll!f&Q%UUA3lEm&L%K@{&ZoV!#`S% zIDB$pOkwW4WbjF3qOgn47CyCE(GJ=CJVu}0m1n96GBGGsiAnQ%i0@zk0#8>zmvv4F FO#s#qAs_$% diff --git a/dist/images/1x/icon/dark/tree_vertical_line_3.png b/dist/images/1x/icon/dark/tree_vertical_line_3.png index f35521ea8e86e7d3e4ccbe9bc4e45b6ad67a4125..ecd99fd2d29cc6e0c9dc30fc0aad56e72c5214f4 100644 GIT binary patch delta 77 zcmZ3)xQKCr4QtHK@3*E;bX2ju5GZt)N2vLuV@^$yLggZcO^q&@5|v#iIF)8iUuLpB hq2=i343*0&hZy&l$o9!e{s?6N0#8>zmvv4FO#tw39~J-r delta 77 zcmZ3)xQKCr4QtJxKYJS|I;z+{c>Xkpq4VGm1v5Lt2{wTYHysw4^w_vQVG%s*9Xu=A h;LxK=lS!FE4;eVy6ij?_Y9=uNfv2mV%Q~loCIAwv9+&_C diff --git a/dist/images/1x/icon/dark/tree_vertical_line_4.png b/dist/images/1x/icon/dark/tree_vertical_line_4.png index ec9142e58cb01748a58609b11df1e3147016338a..6584a862e4884f2fb592940f5168458446147ed8 100644 GIT binary patch delta 63 zcmbQjIE8V74QtHK@3*E;bX3v55GZt)N2vLuV@^$y!p}ehDW=7WK!RD4iD5;u$O+y@ R8`v3uz|+;wWt~$(69DDZ6)pe( delta 63 zcmbQjIE8V74QtJxKYJS|I;!YDc>Xkpq4VGm1v5Lt34b&scpEPY0EtE(Mh3>6V$!D3 Ri)S$afv2mV%Q~loCICB@7YhIY diff --git a/dist/images/1x/icon/dark/tree_vertical_line_5.png b/dist/images/1x/icon/dark/tree_vertical_line_5.png index 5c9867342fc77f03fe6ffd2cd374c9daff6db5f6..3125a9baafd82481e61df2dc587102cc91ad5781 100644 GIT binary patch delta 56 zcmeBT>|&f?!y2>m`>p8{9ThcXRWF|PxaB@`v7&(#6Oc$yWMGJX%g*pdQTYo45O})! KxvX|&f?!&>v_&)&v~j*1#}ap%}n-Y!0KQ9y#X5lCzhU|>k_V=qi>Ybs#?0#8>z Jmvv4FO#pFI6dC{k diff --git a/dist/images/1x/icon/tree_collapse_1.png b/dist/images/1x/icon/tree_collapse_1.png index 6bf0ae233799fda023939d100321e3e945a569a6..d67ba2999b6eb079066ab59be7308c4a86e02ec0 100644 GIT binary patch delta 158 zcmV;P0Ac^Y0mlK5F@J$cL_t(Y4P#&!1*0KAX$UalGT_L`i~n)Sp^Mv?>*F+s1zj;R z-`Y$MnTwTu^wcG+;xIub7=swv&M%!9WhiP$vH(RVksO*^fHw|6jzkX@Wd5N|Gl}#E z7G*F+s1zj;R z-`Y$MnTwTu^wcG+;xIub7=swv&M%!9WhiP$vH(RVksO*^fHw|6jzkX@Wd5N|Gr|6t zyL4kia5atTi-Nvq5p(Z8_k1ga5-533v;y4#LLAS$%HZy uUX#g@L{1^(=pO-k$O)psl}ra^Bmn^PoJHZT01sjS0000QWI8CL1OVcCLJi(uFTpy=7Ea-}n`POE7$Xu-Kqo*!m6^99ul#1;9(qa0Drb)7ZXj73C z(%b^PaR71%daxk#4{e$Wb}J}#B}e-=fH=r04JHOwgie4`5l1?(^-V(;`cEje(L9I- zmj$peM-NVXe7uoNC==l`m@GNu6hf8(!(S6QK{U9M>7a}w031U~%RIBy;s5{u07*qo IM6N<$g69oaX#fBK delta 199 zcmV;&0672m0q_BkF@LH_L_t(Y4P#&+0VEf;_>!O;tdxmV4Wz24xdo&;Xo#yPCz2U) z`8lPq^*=5-bn!X;)i}*zL062-pWRo5%*D!1Eo#Fm4ih9P6%jHFW+*aEk_E^biDlE= z0=#hmawU4OAoF2y1WH|V`)f9X)FY=fm>5VL1AtNyI>04{p+Ff)faXCoxGaE$IZ_A^ zWa5ovL_t(Y4P#&+0nA;xv4I5TV5Ll?Y9LiT%`G6+K|@?UIg!kW z%g;wnUi^FTpy=7Ea-}n`POE7$Xu-Kqo*!m6^99ul#1;9(qa0Drb)7ZXj73C z(%b^PaR71%daxk#4{e$Wb}J}#B}e-=fH=r04JHOwgie4`5j;Au^-V(;`cEje(L9I- xmj$peM-NVXe7uoNC==l`cvNmQ1cp!u0071gMd5Vc9|Zsa002ovPDHLkV1n)5P_O_1 delta 187 zcmV;s07U=n0ptOYF@K&(L_t(Y4P#&+0VEf;_>!O;tdxmV4Wz24xdo&;Xo#yPCz2U) z`8lPq^*=5-bn!X;)i}*zL062-pWRo5%*D!1Eo#Fm4ih9P6%jHFW+*aEk_E^biDlE= z0=#hmawU4OAoF2y1WH|V`)f9X)FY=fm>5VL1AtNyI>04{p)?sufaXCoxGaE$IZ_A^ pWa5ov*F+s1zj;R z-`Y$MnTwTu^wcG+;xIub7=u>y(6<0@9Dst&&MzHj=pEWL6Q>+Zf}jP&7y>g48$I;n sfaX5H8wZ3k5w0a48a$FLq85^?gPAWfG>ja ih5M-7Xb23k5C8yMl?@(^llfc#0000*F+s1zj;R z-`Y$MnTwTu^wcG+;xIub7=u>y(6<0@9Dst&&MzHj=pEWL6D&7(>BffSX#WNf2gC-^ zAOI7C@X$z5Dk26DN^L_w4ruNJypc>O6QM;LFTpy=7Ea-}n`POE7$Xu-Kqo*!m6^9AZJQWRn3-HDPC>-tl(qX}g zK_A*Q6D$TwUCGh@4ImD3N`r}k6`>QLR74CQl-h=V9MIeccrqiIP$oi;H;VblDTHFf nhNl7K1QE?s5zQ^2d0YYjUEN6KH>QqX00000NkvXXu0mjfCU#By delta 177 zcmV;i08ann0onnOF@KavL_t(Y4P#&+0VEf;_>!O;tdxmV4Wz24xdo&;Xo#yPCz2U) z`8lPq^*=5-bn!X;)i}*zL062-pWRo5%*D!1Eo#Fm4ilt#DjND0;Ee-NIN}RqSR8>; z*WCV^%^>y2DGeqD62}0bR74CQl-h=V9MIeccq18K1Y<-RH7W#FTpy=7Ea-}n`POE7$Xu-Kqo*!m6^9AZJQWRn3-HDPC>-tl(qX}g zK_A*Q6D$TwUCGh@4ImD3N`r}k6`>QLR74CQl-h=V9MIeccqAj4P$oi;w^9CR2n^8> Z000NKL;Ier89o32002ovPDHLkV1lobMs@%I delta 163 zcmV;U09^mn0n7oAF@J_hL_t(Y4P#&+0VEf;_>!O;tdxmV4Wz24xdo&;Xo#yPCz2U) z`8lPq^*=5-bn!X;)i}*zL062-pWRo5%*D!1Eo#Fm4ilt#DjND0;Ee-NIN}RqSR8>; z*WCV^%^>y2DGeqD62}0bR74CQl-h=V9MIeccq18K1Y<`D(JgA%uP68aW2@2F6u4yY_Q20D-5gpUXO@geCy) CdJ@S1 diff --git a/dist/images/1x/icon/tree_vertical_line_2.png b/dist/images/1x/icon/tree_vertical_line_2.png index 98e2ab6bd8c3d3366b030c290f9e97e83c86ec5c..9d160d99a7b9735d1d4f4814169d148b808e1d5f 100644 GIT binary patch delta 101 zcmbQh*v~k@FwWD{#WBQ#H#tFqb+Mv>6w_iw2Ll!f&Q%UU2IVi0u?d)4-jeq@{G;WF z!zUNU6z0xL2A@PG3cL7h;ZvIx?U2pSWAxcwd8V2m6T=%r;p79n?^_vwz|+;wWt~$( F699JVAr}Au delta 102 zcmV-s0Ga=f0gwTZF<(kaL_t(Y4P#&!1*0J_8UmvsKrjRt393L+kX+c}3*yf0uh|Tu zVSGYjAbFwyvVlZt7;M1&07*qo IM6N<$f-(FheEmC{b(c)@dzZw`Q$`0BQXZU z)W9rAj`nW=iNW|FHa;LEkfan$Q2FL@o P00000NkvXXu0mjf@;EFw diff --git a/dist/images/1x/icon/tree_vertical_line_4.png b/dist/images/1x/icon/tree_vertical_line_4.png index d752b0e0638dde050de3a27a22fa0b9ecf2068b3..25be9ef045335f4f327aa5848beabdc0ca82d906 100644 GIT binary patch delta 95 zcmbQjIE8V7O~jelT^k!&o+d2yS(2p?YI{~!;i{u^%-;+Z{*N3g$9_I>F;X^UJACDU yjz{0Oe1^`0KNQUD3@7~2kl<~+C;%iHc^Dbao)%6%m@mi000f?{elF{r5}E*bKqTP+ delta 95 zcmbQjIE8V7O@xa0wjYxg$gG*t8N$0{)$*OJORO?FR?GK3QIu;uVljV?N1Dp9gc(vZ zSc`vWn>8Ovs1cB!FX2%q($jVzg9Au7v@tLoViov#+ImYL0}yz+`njxgN@xNAj(8?~ diff --git a/dist/images/1x/icon/tree_vertical_line_5.png b/dist/images/1x/icon/tree_vertical_line_5.png index 69e6e408d8a57755678d5b66ddbb1c26bb7c0cb5..c9a5754ac0240d69b387e5b9e80a9c7baeb8b290 100644 GIT binary patch delta 85 zcmeBT>|&f?<98-@*TzPcrwL1amSib}{$0V!;+$jB;nv)dz#$NFz$1Wl5>rrj*OQF@ oY$|UTpSdU?!P^KVHV7~|&f?1AGHa%EhVU*~CBL;Hp`(}WVupYq4`UOT1m`M;Acw3#!|nUi pj3<2ye3rq{({><(gC~N6f#Iw!>+X#cn*K5Xfv2mV%Q~loCIEB6AAN98k^>S)H%M^Dx zC-^U~S!oaV7++e~!f(4<7vt7Jcm>=NxIb@c`n;Q40^SFg_;Vy6BzjpC=tW-kRlfrg z;9I4s%@3QsgfQ9gSIDeDjiivT&6}`i&fygxflSRVT@>hoJ=@e=g|b*h*Sq@2X5p`p zS^?{yln}Jq@CsM~;12-^KmY;|fB*y_00BLL4<79nBc9X=H2?qr07*qoM6N<$g8dh1 A!vFvP delta 231 zcmV>Y%6pj!baS(R>y8{G;hN#0@&1+<{3#J~ZCUSJDt^*dn6f88{>`Bv{p z_#-4ckRxg2bMxk)+J|?50@Nd*>Ty6NsOsfgD7S&$w~yrwe}vrsQ2xZ`Jv{^<009U< h00Izz00hDlH~{XZ8HR%q@qGXQ002ovPDHLkV1m#?X}|yg diff --git a/dist/images/2x/icon/dark/tree_collapse_2.png b/dist/images/2x/icon/dark/tree_collapse_2.png index dc32ec75cdb180d521ef805d921c1eef9b02ae8a..4a78b939a0b44967c7ab402246b929a9895f3f15 100644 GIT binary patch delta 311 zcmX@hbf0O0VZEfMi(^OzYjT1F>taO%DJB%6$hl!+$oh2gEq~NQ`3+w!_gkTOQ&*vQ zW`|*o!RkcC>xI_a-ztV{ciENei;LK;oTDhuZ1VZQve;}1hZ)xz(&QFwJ)HQgzluRj zh}pIO*a3%Dn=^5nUNg>MZ1Iwc`BayuXi%?w;LFtN^|g*XvZ@!)o)9u9OfgI;b++RS zlwp3M$jPl4apLi$_La>SUnu%}$f(&rNlv)JykUimMwJO0o7R)WZ$U9!2YH;9ck0$& z_&V{F{3p+jHxdiBsJmu)JPrb?W|)3lLyUcEV!_sA4KtaO4HqRGxOxJgWpMPgF$8h+ zOfzuuXl(4aeA0a}kpDqa#H1Ijh6GgopDH0}yz+`njxgN@xNA DIO=-A delta 293 zcmV+=0owlG0?h)DF@Fb1L_t(&1?`qy4uUWY$I>fGB|5>Kh zZf+Q^TGfr-INmpXX~%p7ia9`JQ|WS|QOp6(;yGmCKn{v2Hh&O-6nZ&y)p@`z9=mBm z^L`$AJm(wP?9bizOKp1G_|jY7PR{%h64xKD7V-(MY?hWI&y}mT7BYW?;DCSjf8949 zf#f_8A|AVaLVD71^AS+z0V%1Ne6@KX21Y$kHB6|EQ5)S+H2)9m_=F)40D&9?a0@Xh rn!iTj05j6X#2(B?pcok#W)k=S^+YvJ`QD{w00000NkvXXu0mjfz7T~> diff --git a/dist/images/2x/icon/dark/tree_collapse_3.png b/dist/images/2x/icon/dark/tree_collapse_3.png index 3eb3bd4f9e848d1eeb8637d55175aeb62f01be9e..3361b8a46681280e12126d04c25c1a3e73c1ed94 100644 GIT binary patch delta 321 zcmV-H0lxmy0_g&fF@GaTL_t(&1?`x@2?8+?MOU!}8}Muyq9EwWF1%QPM+@*`7oHRZ z#WFnGfJG<~e%K8JlZ-zG$S zt$@?**tlE!QY%3F!I7T@fJ7}z1!|GUy2a-J68zd}V&lu{3Msx8e=x?Q;kiA4{&t^h zBhLIQBvv3K2~r>*8%G>0h{A`B^<&(;0xSSh*0NNf7I~~I-i44Tw5hvKI4{>X{|Xf= zApMfcB^`@5uR1`iFmXTs3yBdj0SSl7QqwD!v#&8>jk719o<+OnWwiXTwY^?z12LTW;B7jQF1bblG zMYH+6d}2qjaXt6d-x8*GU&u~Uh{JG~x~}}D>9Ok9cHApqmVZDX+e(+ChFJof$u(?{ zfCj~u7*L>vo`$cu4$$PKohJ7_tt0dY<96vsiXEOb{yP@hWaoYfRi8iTER+&V2@!d& z-EPl9?w1e}NZ0WOAu&2Qf&d7p w5Wp_P#OVGgfg=Q%N}HLvSHO%60y7DG0p8p~#?fP@oB#j-07*qoM6N<$f{c!h!~g&Q diff --git a/dist/images/2x/icon/dark/tree_collapse_4.png b/dist/images/2x/icon/dark/tree_collapse_4.png index 5cd345b39199bf73ff59aee4023376936693e380..9e7af4a785a25af9c22baacc50021e9665a5cb75 100644 GIT binary patch delta 305 zcmV-10nYxw0@wnOFn<9ONkl3cmCKo?6=v^;+8jmkPS*9UVkt5(y5(!v-zas=Q`#U z5G&wxJ2vi?zQhWUesJVx0U)7esel%FtXq5zAi=MlCN{pDu8`tu@dsl(8lKw&=x_JA zHsZ{`Le&a{BtZ(~W8;W}1yT60v3`u3SAYdTN-awTw8&%K>RkwlLYun#g!6KJ^RG~` z0<~XKxuj$9<|-A46~=xNAOR8}0TLhq5+DH*kSFi~bRsMR*Io{u00000NkvXXu0mjf DoB)Ow delta 281 zcmV+!0p|YL0>A>0Fn<90Nkl8fFPdg14|i z0xc-k%z+Bj&}-pa+y^*#Zl_7TkNXJ!!MI)ek>{o-kN=L5%y#aVkox?=XQ7y2Oo+)# z?RI+>a=(O-K)m+wE4BmqP2!H?xfB*=9 f00@A99f2<=o)R@qvCke`00000NkvXXu0mjfS^I&z diff --git a/dist/images/2x/icon/dark/tree_expand_1.png b/dist/images/2x/icon/dark/tree_expand_1.png index 18ecccb9e8a3502eb4cad0fd51e8946962bd22b3..484843f1ce0d202409c1cf82f16867c41dabb5d0 100644 GIT binary patch delta 232 zcmVG5fB*y_009X6FM)&F`mKL_)R+|g@Vv{lta*iFRH=1twO&R+j>?Ae zCuv6}ta{YQz@osw$l<`i^j|e#^uS^2Db%gb)&(=SQr?!9vM zb4ldt?nk@^4Xf_VJ>D>T#VvkjEyHrV8onpJF8?2|D_-)$|HVcZM)8w5A+_T94U8dA z-`TL;ak*M25zx8w^C#OW)*GW4|3YmOXaHLLL8_6t?k(TFUt9YF8Gyjk)z4*}Q$iB} D(EnDO diff --git a/dist/images/2x/icon/dark/tree_expand_2.png b/dist/images/2x/icon/dark/tree_expand_2.png index 0a2dfe193e5442a0c046a62fdfedfbb5450c1ca8..d44e15d4e244d39f56975838e18455e3abaa9732 100644 GIT binary patch delta 284 zcmdnabcAVwVf{Z(7srqc*5m{U*2RhjQcNgBk#obukoD=}TmGnr@*BQd?zckmrmjNq z%nrjEgVl+O*9)z;zf}y^?y@V_7Z=>8X`#>rB{I$Sztk%Up_iNt?vh ztCM5-56EoFye=g%S>@JwT^85BQ>)k4Ix^K;c`cefQ8nSwiKG*++G>OrS+HGj7P4K^ z@pN&!jgP!u;fy~M`WplJ4=gHL@ZzF`#EJ>+H?5_ZH%ySwnDwTr;nF;jtu{7KCJSt3 zVmd4nAk7wT&E{;#%Cy+f!SO+FmMm{$qAb(mr2-Q#T0iN&7|1UmdD$e`>`8J%nxb)* d!9+y{QHEnuiWhUIO}xnf1fH&bF6*2UngC?wZgl_v delta 271 zcmV+q0r39B0=EK?F@Nz%L_t(&1?`qy3c@fDgsb>c@aHbQg}3rn-lBK03Vl>oSxQT# zJL?u)GJR;1Fj=zSq{&tl9}*w|5+DH*AOR96m%s*1y?gXebdE)T+}H40B<|J{{GT;D z@8X)~?43HA*S6PDAMK=ffC-?MN9*Z8G*L7j9YBdi>)rQ&E`P*(j!*BA+r7U?%+sNM zf2A#tj(>W?TXpHT5L|y~Ei@%Ku)$jDV6nAO`Ypr+upJ+-rUUUzv54s%aNh$Mr)71q z_rNk5r$TC&Z*`0_D%PDHLkV1fs`ef|Id diff --git a/dist/images/2x/icon/dark/tree_expand_3.png b/dist/images/2x/icon/dark/tree_expand_3.png index 595638455e2fb7d26e4f1de681022cb343636623..3190b87f00792c427101ada3866d86026ac40f34 100644 GIT binary patch delta 296 zcmV+@0oVS#0?z`FFn<9FNkla1RAfw@P(!j?K-LfWij0NaK-{@)54l=V z^tpSvpzulM4EY!s^#G|+PHpw0F+lAQCDpvq7$7yosI8vtdVc`skWIVRz?dY_er_Qs z>R}@oI!dCOktJZ_$YLNiOx=)ALKMdUdPt&&6tR3*h@z{v?oO^4-feyM6H0pFlTgJ2qQ>F1x7<)Gz91x0;8o6k-di2N3_d|j{ zU6s8)>$g@M3%ARl9!u#yeIo0v5U1&GZMtckvTpH1-HeeJ*um5X(G ziW;vHl_jja7R{chn(*jEl7gAf-3k6qBF7o3JQlT!Y^;gsShV`MDqpbqljMXe%o|q7 zXjB1Rr}ZT9Ti-DT9Tm1NwcTxaar3SVVZ8j;^v%yL3r>pGQ{R9Uc5J# SPtAn^2s~Z=T-G@yGywp+igB9& delta 258 zcmV+d0sa2H0;>X$F@NPrL_t(&1?`wk3WG2ZMs0B;wDm6DqPOx^y@hw_54dc}VnWSo zW=N31Cx{dIGD+SSoM6{Ax}NWKPIsg9Iqf+|K?4@Bw{bYIw*!n10SGiAKqXd!Jt=ir z_WG>f+^87bE`xb4Y54GktoK5krn|T6rr)wWHf?JoyaO!2YI}KYJr2|+YR!iOR${gF z?m8e7@qWk4IwF5C#_KRk?(~%R|L;;Py6{`beEyKLP)V>Pq-~3Xhdm30-$E=vyVqOk zaG(`gZQk$>xa)wHkXCotI-muF4gwH>00bZa0SG_<0`&>}0JqjEruTa^C;$Ke07*qo IM6N<$g22IcqW}N^ diff --git a/dist/images/2x/icon/dark/tree_vertical_line_1.png b/dist/images/2x/icon/dark/tree_vertical_line_1.png index 1b2e7181f037dd48bb0ca36cde564c09ba9598be..9ae642458ad4803b062dce5e03f40d1fe0187527 100644 GIT binary patch delta 59 zcmXRdonUXa?oRbv?n7I?$qBF3U9k1%Vz~vS9KuHRCTtw77gqc!;Adp8v1Gk}DP-bP0l+XkK6@?ex delta 59 zcmXRdonUWfSNHE8!=WwTDiF4+2WvD|`E4q>Bu6E=?43oHH<@G~;lZelz5^ P0}yz+`njxgN@xNA2yYkH diff --git a/dist/images/2x/icon/dark/tree_vertical_line_2.png b/dist/images/2x/icon/dark/tree_vertical_line_2.png index 4939be6d1b2f797b5002a8a33b67de0b1576751a..0e43988fcee8e53c31f1e036b19b8a2e0e9e9ef6 100644 GIT binary patch delta 179 zcmcc4c!zOusUpIm;R8W9hR*(uK)DU)qvG@N&zhSHd2X dHx>pwU|%IEJ8f!v;ywl-@O1TaS?83{1OOMsNAv&y delta 174 zcmcb^c%5;AVf{o;7srqc*0)zTay1(Wuszr^+xg?v-={7e43%M$5?FUa@#1;crs8_uIbzkSu%st#a+(?eAjEcbPM-{xGp9xGGDt zF}TJ|c*n*DO%a~$zYSk899(kw)GmJoU$+ri diff --git a/dist/images/2x/icon/dark/tree_vertical_line_3.png b/dist/images/2x/icon/dark/tree_vertical_line_3.png index af6886917126309fe3dc719be9ed606d10cb80d4..54fd201534c9c4d2692325f64dc76ba851ea7270 100644 GIT binary patch delta 202 zcmaFI_?dBnVf|W97srqc*0(bbayA%&9fZMZ%eZ zDVg)a5vBj0S4>a8vKP9&OD2ADmHqpzuMUYv%I*0*wS0kf5RalWL!%l~O{+`H!|oo& zBTI5Oec-%tB7vuIzwm<2qv{HO(x)Iqb%ZJyo*dBEh*KB6&Hx0Su6{1-oD!MOUcVf_kE7srqc*0(bZxf%>aoLA3ou6P<3DHC&ap{v!>3jua^jyfhT|GK3N zR4*6CmDl-CuH72@TI)pFVdQ&MBb@0N74Z8UO$Q diff --git a/dist/images/2x/icon/dark/tree_vertical_line_4.png b/dist/images/2x/icon/dark/tree_vertical_line_4.png index b4e7977ed3a387b3c6f03fed159a3547dbda2910..60f2c0a8cf9a1a52da71a2c4c2102e86afd58b3c 100644 GIT binary patch delta 171 zcmX@dc!hC-VSS&ci(^Oz>)RU}IU5WF7#vF3#W$3RE-w|$7BAr37@%@>c|}u2;{=C! z{5$pKE|q#F-|l}p%k$;@Er&P%esPRBO5Be%D*V7-77i887e^c;Y85!9iY;Tx+#)2b za3Rb=o$uH8gF9Yr_~f26@7UM5OKkR^&w6Zk|HQlYXifnIhXw`}MkW>xFbl}|r&_?Y Xi%)ji{Q84)7=Xaj)z4*}Q$iB}B#lL1 delta 165 zcmcb@c#d&`VSR_Ei(^Oz>)RU}xf&D%7y`1hJL+!6_qAQi&^Yu`im!8?0+*cnK50H3 z)yy@wmdKI;Vst0GO3S0ssI2 diff --git a/dist/images/2x/icon/dark/tree_vertical_line_5.png b/dist/images/2x/icon/dark/tree_vertical_line_5.png index 331ee4d12bf339906d2a35ba93811bd6dfeb8c19..27531a35b702aa1b672bbb1b87c2250f4782baaa 100644 GIT binary patch delta 174 zcmcb_c%5;AVf{o;7srqc*0(n{ayA%y=kNzWlVSSIMi(^Oz>)RU}xf&EiS`)LgJK}DJPh-1YP+0tH=ZRi>0hJxSX`|Pgg&ebxsLQ E0OO-Wb^rhX diff --git a/dist/images/2x/icon/tree_collapse_1.png b/dist/images/2x/icon/tree_collapse_1.png index cbb052d199e894b379f76a9d9aee43be70310e84..2041a0e4b348d607b21d9e0724c07bcb88de05d0 100644 GIT binary patch delta 248 zcmVgzFU3ftl#f8&1ae7F6RXQ zst8TAFpEEItZ_TTLOpUDNUbub4$Sc;1Zt%gmFYKivqpK%f9M&KmvTL zG`0Ebtv0*@Rsi@z00Izz00bZa0SG`qPv8SEs}_pI;onFA0000s03Aic?#tc7(IO~uKN~hR>0=Gk(jl+S6~)6;z9rd j5P$##AOHafKp=z<{aF?80Gki900000NkvXXu0mjfA+%-Z diff --git a/dist/images/2x/icon/tree_collapse_2.png b/dist/images/2x/icon/tree_collapse_2.png index b9dd884676e64b4c5c04b7a4d3a850f52a741d0c..f2b989399c280e820fb9263ea055f2ee4fe5755d 100644 GIT binary patch delta 305 zcmcb>bdzataO%DJB%6$hl!+$a;Cp%8&Ldt2zSnlh^rgigtKr zB$)goA?&czy2oqIemQZqYtj1`E4?*pf-Ifw*fO3mTJJAm6If=tU?zLU+kzQC7t1xY z9&xz1*w7$Ak$>~_H&qO23=1c*P5-md*Eq4>t>NWPZ*#K-iIW%qB}g4%W1L~p(yoyB zs;x#yY3EzKm!drL6+VF-l?%*x)|K(Z2#QK9HgsrpkTFd%VQEX{=$Yo^ y;`VximcE<2twV~>WuKcsvu3rPS#i*%je%iazHU%dsH_?T5O})!xvX4Z<)CMGNYBOaTl~j=&K((g6xnFd!(0U(rYr zcH*cQelKnk+lk+g+%^p#5+DH*AOR8}0TTFM0t;>Fo9_J7#z_2c{Xu<}kasCb{>?sZ z?%{^(J~wm{x7}SPW9`7b0@Vr#WJ~Ev)TmZ~WOEB27GOcKB!34LD4}N&oBbWY=ASxE zYCZmrth>`Hn~gds{-b91jiH8M;rB=7>gI4MRJ0m#t+0000Ylp+kAN2q%BnFBejemiG3VE2lWY+^Q0|=Eg zxa1FQnh7%kOv6SnlB4|_kR@Q^$YLNiOx=)ALL|38U~M5nH8CvY(L)+NBw;o2h;0iE z`6M*z0rWIYZ~l;v0gCGZTp>=V^ueW%RPm7;1F-U&)DWY#`XL_!)D951d86Y(@SqrF zjE2By2nr002s(H!7Xh*Y5xT002ov JPDHLkV1kD&gsuPp delta 304 zcmV-00nh&50@wnOF@F+CL_t(&1?`wY3IZ_^oAC? zEI@-|OAac~LQi9FbsxatOE*n!J?$g-g7Ka%ALI@e^Z#>Uj5znNP_qIlNst2h+&bc5 zK@>i0ZXWCI6<`67vX`X-y~yL-=35AfQY*cE(tV}A`&X!10o?PY#I)nxE1(S|=Hqvv zh=KzWAb~Cfcqt1BvAb_%EI_EVS(tkT%*ZgYkiZW#e=p`yu`kU40000zNg{JFC@jhTE7yBSPc{8xH{YQm!vNeX5@cPIEescg4T$W?SQHPm@>(OJq?CDHU_ zM=m$-PZg6_j9*NA^Z!lgXY6{-7^CR7;>*FM{UIMGN;7ZxH2aFc;%&ba<(aSWO$hw# m=A2-{f<(we_zgb<7#PAA>INN=c=(k82s~Z=T-G@yGywqWKX+*W delta 288 zcmV+*0pI@40>}c8F@FL{L_t(&1?`wY3IZ_^oo| zK@>i0Y98zE6<`C9vX`X-y~v|(^(llzvDKbF@xEN&{U=nc0M7YbV%G8Q6|e@vd?Y{u mBtQZrKmsH{0vRNrC-4Kx*eON^M0th)0000!Ze`=&$Wru4T=8OiBLB znkKin?sCcv_2Q=G?akFm^$yU0YPq!@2ds&z`EWobX06Y@2Vb^AZvB1xmB!)ukn|yO z^+#y816CwMgk$T~J3s?5i%ak0Kxx9U{5TLJRC+)A9@zVmvTCgQBV+}FJP?2Y1Rwwb g2tWV=5YP#H0c*JqqOK>w0000007*qoM6N<$g4mI2H2?qr delta 205 zcmeBY`o=iHuzrK5i(^Oz>)WXt`5YVsTm1o4J5Zy2Y)!gRE00f?{elF{r5}E)v C^He+l diff --git a/dist/images/2x/icon/tree_expand_2.png b/dist/images/2x/icon/tree_expand_2.png index addbe513fc85635609df094686c84d7af13855a2..5b630d0a245d1ddbed9a1c1dc58116606ea3c87c 100644 GIT binary patch delta 279 zcmdnWw4Z5$Vf{}}7srqc*5m{U*2RhjQcNgBk#obukoEGGl^^X_R&@mCC$ID06z%ZL zNHF1}S-z*0YH@!x|c9lT5ig&h2jhpzDcRBxJhCn?Yo@^5~Hnlr~+xUJ;DC|~Swne>_!}(MM&_<2Vc5-(YnDMMD z-O}tuF>dk-QK(xi96Q>|7Oj? zySeLS=UqBjx7nTtW9uNj15Chbd9qG4I{s zf!NYw{(VmR(4{{@A3IQzEJ#hUd3LKqi z`Xdw#q>m?Wn6Y|NXfVYs+*7VmX6Hq!mnJm2nlaXOyC4m>oOdyK& TGJM7W0000=W7Fn<97NklB zeMe7SLgACj8S*hO>H$)toZ9L~V}RNrN~(FIF+ggFQCmIP^?v}&A$ET0FeXX#p-nSU z)Wb$FlB4|_kR@Q^$YLNiOx=)ALL|38U~M64*Tf^XEi~kl(5MH{O9y)MM`M8AA&zd} zkdFbfYhp@!Qs^N`E`P|!0J$C~sBd&!h+q(nDi{rc(GZ|%2#l6OLe4xYdI}Gybdlf` zgd`?}z#kZzmNaeNFAa1Ug1*goUbjCeJcnJfRn$NN*}_4AYz44B2!KEk0aRik*oDxK z-L~W9%^gSMF&))=Y0H-{WGgGg`|V(zI-9rKUuS)7r@R74Kz}Q_w?7o{CaR4G1+>Jx z{mpfNHe$WU`#M4|7|-eSqS&pa@$a!_lVABG^tS>%$)1$7PegnFU*qIgUI8RPQf9SK zAd5V$3k8ToR%@;U)(Y&MX!#@L4TR(2U5HV@009t4A%I&*h`oFvLjppj!`#X%5Jm=p bg#0bZtC)5Di1IdFlP8letYE+3&0h5xXxKf) zzP$Sr`WZK6CwWx|y-@Vjt3Pp^VW*t@RdXq(#fk=+u4>DYXhw0-zSw$ehp-wxWPvvs@ub>_D^;T52OR(#2=<59qxXlp(cXeDMH zukHhK5bbxo>?86A<2jvPk~@tu|2>y%i3@*){#KwQS(2*tg=iW7YhL2QD?kAvrPqi8 zUgTw86c7?#qq+}hJFs=3;jfT25b{9)0uX=z1Rwwb2tc5ozz5dsAd1Ro+q(b&002ov JPDHLkV1m1abn^fJ diff --git a/dist/images/2x/icon/tree_vertical_line_1.png b/dist/images/2x/icon/tree_vertical_line_1.png index c3393797e574bbb67ba413a1de4fb96506e5481c..ea9e933a0ceae80554b8a3aacf49cdf9c028dbc3 100644 GIT binary patch delta 59 zcmXRdonUYFOz-XuhC^Gv$qBF3U9k1%Vz~vS9KuHRCTtw77gqc!;Adp`YRK|YWy3cH O5b$*Mb6Mw<&;$Sva~HAz delta 59 zcmXRdonUV^i95Q+amKZK$&0qKZZWIB!n}nq(dk+LF@}W#Qd8yMDKaoz>0u5P`W!Wf P0SG)@{an^LB{Ts5W4hAo`YusUqDU%i3pz1-gD#?TuNjyEeXCc27s*6;B+ zp{DpbC0B}{k%@&vK*6Db0m^v5+i3RsLgJj?pYOdk%6(pFS%2p4+Sh%p_gW9=)hvyf zVkhPGKydz17CW5<+^mP!?(5y-yt+M5oI`DHSXeDn erjZ#R*B^$+f1*E1A6^P(00K`}KbLh*2~7b03Q1@H diff --git a/dist/images/2x/icon/tree_vertical_line_3.png b/dist/images/2x/icon/tree_vertical_line_3.png index e7fc65c63529b5b6616261112446bfe6e9ddb3d9..878ea613b4877aaded5480f29bc913cda3aeb7d7 100644 GIT binary patch delta 200 zcmeyw_>pmfVf|`P7srqc*0(bbayA%cJ%^owi&WAoM-$RemgTTsWF*s@EQBQHGJJ1mVDVweND|bsRcP9D(&IpzSTcu0 zf)3-Xh$r@)yV4^6x<9h|{yRJ9{qwzHu|JefH<$1K#8=|prO4u>aKWWv{e%wfnu&%D yGq(7O*)d8>_9%WRXENFNgQewvj}b!Dm5HB6MgC2tMt3&@5O})!xvXVSSIMi(^Oz>)RWKTnz?13ZQRE}n($=;q zacvIXo>H&3T`yK!y8m+D_jik>`Cr6Zh`xwr{4T68L1lq3d*atdg^;KjTuUx``7}7h zGtRYmVbAh7u6?V$&}o~i>65X8;0ES3j3^P6)RWKTnz?13=UuG_Z<@7VZG}&Q~X2rqmC2(UJ7(ov|e&@ z_R@D=5IfyuS*7gynN$9GTHEaI&$C%j`Y>ccDeE2o28T%veljgr*_#3~6SXF|X&W*! z<+7GMT2L?Fvzkx4UgcY^)RU}IS(j^xCTyUHFh|q^GIo$xPEXuI@shf&k$g{!N79lu~`FWVgs)O zvd~NE8wLlJ6n?oavMraN?|1*eq4U?dG!`^4se?%bVJ}|6_%4dQ!f2`7e+D4%boFyt I=akR{07<1qC;$Ke diff --git a/dist/resource.css b/dist/resource.css index d34aa382c..1bb2e41c4 100644 --- a/dist/resource.css +++ b/dist/resource.css @@ -88,10 +88,10 @@ textarea::-webkit-scrollbar-thumb:hover { background: url('images/1x/icon/tree_vertical_line_4.png') no-repeat center center; } .ztree li ul.line { - background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/tree_vertical_line_1.png') repeat-y 1px 0; } .bi-theme-dark .ztree li ul.line { - background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 0 0; + background: url('images/1x/icon/dark/tree_vertical_line_1.png') repeat-y 1px 0; } .ztree li span.button.chk.checkbox_false_full { background: url('images/2x/icon/check_box_normal.png') no-repeat center center; diff --git a/dist/widget.js b/dist/widget.js index e3bed3fdb..9d492aadd 100644 --- a/dist/widget.js +++ b/dist/widget.js @@ -1024,7 +1024,7 @@ BI.extend(BI.DynamicDatePane, { BI.DateTimeCombo = BI.inherit(BI.Single, { constants: { popupHeight: 290, - popupWidth: 310, + popupWidth: 270, comboAdjustHeight: 1, border: 1 }, @@ -1159,8 +1159,8 @@ BI.DateTimePopup = BI.inherit(BI.Widget, { _defaultConfig: function () { return BI.extend(BI.DateTimePopup.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-date-time-popup", - width: 310, - height: 410 + width: 268, + height: 374 }); }, _init: function () { @@ -1795,7 +1795,7 @@ BI.shortcut("bi.down_list_group", BI.DownListGroup);BI.DownListItem = BI.inherit return BI.extend(conf, { baseCls: "bi-down-list-item bi-list-item-active", cls: "", - height: 30, + height: 24, logic: { dynamic: true }, @@ -2008,7 +2008,7 @@ BI.shortcut("bi.down_list_group_item", BI.DownListGroupItem);/** BI.DownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 24, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -3122,8 +3122,8 @@ BI.DynamicDatePopup = BI.inherit(BI.Widget, { props: { baseCls: "bi-dynamic-date-popup", - width: 290, - height: 380 + width: 248, + height: 344 }, _init: function () { @@ -3973,8 +3973,8 @@ BI.extend(BI.DynamicDateTimeCombo, { props: { baseCls: "bi-dynamic-date-time-popup", - width: 290, - height: 421 + width: 248, + height: 385 }, _init: function () { @@ -6053,7 +6053,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -6072,7 +6072,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -6305,7 +6305,7 @@ BI.shortcut("bi.multi_layer_down_list_combo", BI.DownListCombo);/** BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { constants: { nextIcon: "pull-right-e-font", - height: 30, + height: 25, iconHeight: 12, iconWidth: 12, hgap: 0, @@ -7204,7 +7204,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -7245,7 +7245,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -7253,7 +7253,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -7307,7 +7307,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -7348,7 +7348,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -7356,7 +7356,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -7406,7 +7406,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -7447,7 +7447,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -7455,7 +7455,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -7505,7 +7505,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -7546,7 +7546,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -7554,7 +7554,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -8170,7 +8170,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -8192,7 +8192,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -8200,7 +8200,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -8273,7 +8273,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -8295,7 +8295,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -8303,7 +8303,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -8375,7 +8375,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -8397,7 +8397,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -8405,7 +8405,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -8475,7 +8475,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { id: "", pId: "", open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -8497,7 +8497,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -8578,7 +8578,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -8621,7 +8621,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -8629,7 +8629,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -8677,7 +8677,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -8719,7 +8719,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -8727,7 +8727,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -8775,7 +8775,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { layer: 0, id: "", pId: "", - height: 30 + height: 24 }); }, _init: function () { @@ -8817,7 +8817,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { items.push({ type: "bi.layout", cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", - width: 16, + width: 12, height: o.height }); }); @@ -8825,7 +8825,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, { BI.createWidget({ type: "bi.td", element: this, - columnSize: BI.makeArray(o.layer, 15), + columnSize: BI.makeArray(o.layer, 12), items: [items] }); }, @@ -10536,7 +10536,7 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -16038,7 +16038,7 @@ BI.QuarterPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 25 }); }); @@ -16934,7 +16934,7 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, { type: "bi.multi_select_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: this.isAllSelected(), iconWrapperWidth: 36 }); @@ -17275,7 +17275,7 @@ BI.SelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -17360,7 +17360,7 @@ BI.SelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -17445,7 +17445,7 @@ BI.SelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -17530,7 +17530,7 @@ BI.SelectTreePlusGroupNode = BI.inherit(BI.NodeButton, { pId: "", readonly: true, open: false, - height: 30 + height: 24 }); }, _init: function () { @@ -19122,7 +19122,7 @@ BI.SingleSelectLoader = BI.inherit(BI.Widget, { type: this.options.allowNoSelect ? "bi.single_select_item" : "bi.single_select_combo_item", logic: this.options.logic, cls: "bi-list-item-active", - height: 30, + height: 24, selected: false }); }, @@ -22593,7 +22593,7 @@ BI.DynamicYearPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 276 + height: 240 }, render: function () { @@ -23050,7 +23050,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -23094,7 +23094,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, @@ -23348,7 +23348,7 @@ BI.DynamicYearMonthPopup = BI.inherit(BI.Widget, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 270 + height: 240 }, render: function () { @@ -24090,7 +24090,7 @@ BI.shortcut("bi.dynamic_year_quarter_card", BI.DynamicYearQuarterCard);BI.Static whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 24 }); }); }, @@ -24348,7 +24348,7 @@ BI.extend(BI.DynamicYearQuarterCombo, { min: "1900-01-01", // 最小日期 max: "2099-12-31", // 最大日期, width: 180, - height: 260 + height: 240 }, render: function () { @@ -24813,10 +24813,12 @@ BI.AbstractAllValueChooser = BI.inherit(BI.Widget, { if (options.keyword) { keywords.push(options.keyword); } + var resultItems = []; BI.each(keywords, function (i, kw) { var search = BI.Func.getSearchResult(items, kw); - items = search.match.concat(search.find); + resultItems = resultItems.concat(search.match).concat(search.find); }); + resultItems = BI.uniq(resultItems); if (options.selectedValues) {// 过滤 var filter = BI.makeObject(options.selectedValues, true); items = BI.filter(items, function (i, ob) { diff --git a/src/base/combination/combo.js b/src/base/combination/combo.js index aa3aecb11..c8faff2a5 100644 --- a/src/base/combination/combo.js +++ b/src/base/combination/combo.js @@ -505,14 +505,13 @@ BI.Combo = BI.inherit(BI.Widget, { this._toggle(); }, - destroy: function () { + destroyed: function () { BI.Widget._renderEngine.createElement(document).unbind("mousedown." + this.getName()) .unbind("mousewheel." + this.getName()) .unbind("mouseenter." + this.getName()) .unbind("mousemove." + this.getName()) .unbind("mouseleave." + this.getName()); BI.Resizers.remove(this.getName()); - BI.Combo.superclass.destroy.apply(this, arguments); } }); BI.Combo.EVENT_TRIGGER_CHANGE = "EVENT_TRIGGER_CHANGE"; diff --git a/src/base/combination/searcher.js b/src/base/combination/searcher.js index 9b2cd5b8e..07423dc24 100644 --- a/src/base/combination/searcher.js +++ b/src/base/combination/searcher.js @@ -295,9 +295,8 @@ BI.Searcher = BI.inherit(BI.Widget, { this.popupView && this.popupView.empty(); }, - destroy: function () { + destroyed: function () { BI.Maskers.remove(this.getName()); - BI.Searcher.superclass.destroy.apply(this, arguments); } }); BI.Searcher.EVENT_CHANGE = "EVENT_CHANGE"; diff --git a/src/component/allvaluechooser/abstract.allvaluechooser.js b/src/component/allvaluechooser/abstract.allvaluechooser.js index 35259d29b..53f9e02cd 100644 --- a/src/component/allvaluechooser/abstract.allvaluechooser.js +++ b/src/component/allvaluechooser/abstract.allvaluechooser.js @@ -52,10 +52,12 @@ BI.AbstractAllValueChooser = BI.inherit(BI.Widget, { if (options.keyword) { keywords.push(options.keyword); } + var resultItems = []; BI.each(keywords, function (i, kw) { var search = BI.Func.getSearchResult(items, kw); - items = search.match.concat(search.find); + resultItems = resultItems.concat(search.match).concat(search.find); }); + resultItems = BI.uniq(resultItems); if (options.selectedValues) {// 过滤 var filter = BI.makeObject(options.selectedValues, true); items = BI.filter(items, function (i, ob) { diff --git a/src/widget/datetime/datetime.combo.js b/src/widget/datetime/datetime.combo.js index 8f18d8c41..600a28242 100644 --- a/src/widget/datetime/datetime.combo.js +++ b/src/widget/datetime/datetime.combo.js @@ -4,7 +4,7 @@ BI.DateTimeCombo = BI.inherit(BI.Single, { constants: { popupHeight: 290, - popupWidth: 310, + popupWidth: 270, comboAdjustHeight: 1, border: 1 }, diff --git a/src/widget/datetime/datetime.popup.js b/src/widget/datetime/datetime.popup.js index 3a19b61f6..7102fbc41 100644 --- a/src/widget/datetime/datetime.popup.js +++ b/src/widget/datetime/datetime.popup.js @@ -5,8 +5,8 @@ BI.DateTimePopup = BI.inherit(BI.Widget, { _defaultConfig: function () { return BI.extend(BI.DateTimePopup.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-date-time-popup", - width: 310, - height: 410 + width: 268, + height: 374 }); }, _init: function () { diff --git a/src/widget/dynamicdate/dynamicdate.popup.js b/src/widget/dynamicdate/dynamicdate.popup.js index 68e3af28e..bb5e0e5fb 100644 --- a/src/widget/dynamicdate/dynamicdate.popup.js +++ b/src/widget/dynamicdate/dynamicdate.popup.js @@ -6,8 +6,8 @@ BI.DynamicDatePopup = BI.inherit(BI.Widget, { props: { baseCls: "bi-dynamic-date-popup", - width: 290, - height: 380 + width: 248, + height: 344 }, _init: function () { diff --git a/src/widget/dynamicdatetime/dynamicdatetime.popup.js b/src/widget/dynamicdatetime/dynamicdatetime.popup.js index 02be3f56f..2bdde53d4 100644 --- a/src/widget/dynamicdatetime/dynamicdatetime.popup.js +++ b/src/widget/dynamicdatetime/dynamicdatetime.popup.js @@ -6,8 +6,8 @@ BI.DynamicDateTimePopup = BI.inherit(BI.Widget, { props: { baseCls: "bi-dynamic-date-time-popup", - width: 290, - height: 421 + width: 248, + height: 385 }, _init: function () { diff --git a/src/widget/month/popup.month.js b/src/widget/month/popup.month.js index caeca72dc..658642b21 100644 --- a/src/widget/month/popup.month.js +++ b/src/widget/month/popup.month.js @@ -36,7 +36,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30, + height: 23, width: 38, value: td, text: td @@ -55,7 +55,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, { columns: 2, rows: 6, columnSize: [1 / 2, 1 / 2], - rowSize: 30 + rowSize: 25 })), { type: "bi.center_adapt", vgap: 1, diff --git a/src/widget/quarter/popup.quarter.js b/src/widget/quarter/popup.quarter.js index 387db9b12..474799141 100644 --- a/src/widget/quarter/popup.quarter.js +++ b/src/widget/quarter/popup.quarter.js @@ -39,7 +39,7 @@ BI.QuarterPopup = BI.inherit(BI.Widget, { whiteSpace: "nowrap", once: false, forceSelected: true, - height: 30 + height: 25 }); });