From c6c0ca50cfb84fd46cf815fa2f8485ad02559082 Mon Sep 17 00:00:00 2001 From: imp Date: Mon, 13 Jun 2022 10:39:02 +0800 Subject: [PATCH 01/16] =?UTF-8?q?=E6=97=A0jira=E4=BB=BB=E5=8A=A1=20?= =?UTF-8?q?=E6=8F=90=E4=BE=9B=E6=A0=B7=E5=BC=8F=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/case/colorchooser/colorchooser.js | 2 ++ src/case/colorchooser/colorchooser.simple.js | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/case/colorchooser/colorchooser.js b/src/case/colorchooser/colorchooser.js index 737b3a189..991be4a77 100644 --- a/src/case/colorchooser/colorchooser.js +++ b/src/case/colorchooser/colorchooser.js @@ -13,6 +13,7 @@ BI.ColorChooser = BI.inherit(BI.Widget, { value: "", height: 24, el: {}, + simple: false }); }, @@ -30,6 +31,7 @@ BI.ColorChooser = BI.inherit(BI.Widget, { isNeedAdjustHeight: false, el: BI.extend({ type: o.width <= 24 ? "bi.color_chooser_trigger" : "bi.long_color_chooser_trigger", + simple: o.simple, ref: function (_ref) { self.trigger = _ref; }, diff --git a/src/case/colorchooser/colorchooser.simple.js b/src/case/colorchooser/colorchooser.simple.js index b360efbf3..28517ea6d 100644 --- a/src/case/colorchooser/colorchooser.simple.js +++ b/src/case/colorchooser/colorchooser.simple.js @@ -20,6 +20,7 @@ BI.SimpleColorChooser = BI.inherit(BI.Widget, { this.combo = BI.createWidget({ type: "bi.color_chooser", + simple: o.simple, element: this, container: o.container, value: o.value, @@ -61,4 +62,4 @@ BI.SimpleColorChooser = BI.inherit(BI.Widget, { }); BI.SimpleColorChooser.EVENT_CHANGE = "EVENT_CHANGE"; BI.SimpleColorChooser.EVENT_AFTER_POPUPVIEW = "EVENT_AFTER_POPUPVIEW"; -BI.shortcut("bi.simple_color_chooser", BI.SimpleColorChooser); \ No newline at end of file +BI.shortcut("bi.simple_color_chooser", BI.SimpleColorChooser); From d9749ad7a798c175f56e1c3e80ffe996cc97b847 Mon Sep 17 00:00:00 2001 From: guy Date: Mon, 13 Jun 2022 13:25:14 +0800 Subject: [PATCH 02/16] =?UTF-8?q?feature:=20vertical=E6=94=AF=E6=8C=81hori?= =?UTF-8?q?zontalAlign=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/platform/web/config.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/core/platform/web/config.js b/src/core/platform/web/config.js index 3bd279aab..bcbf6caa4 100644 --- a/src/core/platform/web/config.js +++ b/src/core/platform/web/config.js @@ -45,6 +45,25 @@ BI.prepares.push(function () { scrollx: true }, ob, {type: "bi.inline"}); }); + BI.Plugin.configWidget("bi.vertical", function (ob) { + if (ob.horizontalAlign === BI.HorizontalAlign.Left || ob.horizontalAlign === BI.HorizontalAlign.Right) { + if (isSupportFlex()) { + return BI.extend({}, ob, {type: "bi.flex_vertical"}); + } + return BI.extend({}, ob, { + horizontalAlign: BI.HorizontalAlign.Stretch, + type: "bi.vertical", + items: BI.map(ob.items, function (item) { + return { + type: "bi.inline", + horizontalAlign: ob.horizontalAlign, + items: [item] + }; + }) + }); + } + return ob; + }); BI.Plugin.configWidget("bi.inline", function (ob) { // 当列宽既需要自动列宽又需要自适应列宽时,inline布局也处理不了了,降级table处理吧 var hasAutoAndFillColumnSize = false; From 9f2e987a3ead99682373b46a1809e3549d7e134b Mon Sep 17 00:00:00 2001 From: data Date: Mon, 13 Jun 2022 15:13:39 +0800 Subject: [PATCH 03/16] auto upgrade version to 2.0.20220613151327 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1de46a9eb..ffa070e10 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fineui", - "version": "2.0.20220610140544", + "version": "2.0.20220613151327", "description": "fineui", "main": "dist/fineui.min.js", "types": "dist/lib/index.d.ts", From 87d917f5a873b927c44fb84ceb32be32a3f60d34 Mon Sep 17 00:00:00 2001 From: guy Date: Mon, 13 Jun 2022 16:52:54 +0800 Subject: [PATCH 04/16] =?UTF-8?q?bufix:=20vertical=E6=94=AF=E6=8C=81horizo?= =?UTF-8?q?ntalAlign=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/platform/web/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/platform/web/config.js b/src/core/platform/web/config.js index bcbf6caa4..eeda344b0 100644 --- a/src/core/platform/web/config.js +++ b/src/core/platform/web/config.js @@ -53,7 +53,7 @@ BI.prepares.push(function () { return BI.extend({}, ob, { horizontalAlign: BI.HorizontalAlign.Stretch, type: "bi.vertical", - items: BI.map(ob.items, function (item) { + items: BI.map(ob.items, function (i, item) { return { type: "bi.inline", horizontalAlign: ob.horizontalAlign, From c4aac47b250300fa29435ef0eedab4a88c9c1168 Mon Sep 17 00:00:00 2001 From: zsmj Date: Mon, 13 Jun 2022 16:56:34 +0800 Subject: [PATCH 05/16] =?UTF-8?q?DESIGN-3918=20feat:=20toast=20=E6=9C=80?= =?UTF-8?q?=E5=B0=8F=E5=AE=BD=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/base/single/tip/tip.toast.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/single/tip/tip.toast.js b/src/base/single/tip/tip.toast.js index 3d26f6bc0..a9a7aeb7e 100644 --- a/src/base/single/tip/tip.toast.js +++ b/src/base/single/tip/tip.toast.js @@ -8,7 +8,7 @@ BI.Toast = BI.inherit(BI.Tip, { _const: { closableMinWidth: 146, - minWidth: 124, + minWidth: 100, closableMaxWidth: 410, maxWidth: 400, hgap: 8 From a4f73b0c7f9e8e439d95eb0b7ac75ac76eb4c60d Mon Sep 17 00:00:00 2001 From: data Date: Mon, 13 Jun 2022 17:13:54 +0800 Subject: [PATCH 06/16] auto upgrade version to 2.0.20220613171343 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ffa070e10..ba1b8f818 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fineui", - "version": "2.0.20220613151327", + "version": "2.0.20220613171343", "description": "fineui", "main": "dist/fineui.min.js", "types": "dist/lib/index.d.ts", From 2fa525782c108bfbf2e4012459f5d0206dda1330 Mon Sep 17 00:00:00 2001 From: zsmj Date: Mon, 13 Jun 2022 21:59:53 +0800 Subject: [PATCH 07/16] =?UTF-8?q?=E6=97=A0JIRA=20=20fix:=20=E8=A7=A3?= =?UTF-8?q?=E5=86=B3=E5=A4=8D=E9=80=89=E4=B8=8B=E6=8B=89=E6=A1=86=E6=97=B6?= =?UTF-8?q?=E5=BA=8F=E4=B8=8D=E4=B8=80=E8=87=B4=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 处理思路是search_trigger调用itemsCreator时候记录op对象,multi_select_combo回调时候把op对象附加到参数列表末尾, search_trigger进行引用比较 --- src/widget/multiselect/multiselect.combo.js | 4 +++- src/widget/multiselect/multiselect.insert.combo.js | 4 +++- src/widget/multiselect/trigger/button.checkselected.js | 5 ++++- .../multiselect/trigger/searcher.multiselect.insert.js | 10 ++++++++-- src/widget/multiselect/trigger/searcher.multiselect.js | 9 +++++++-- 5 files changed, 25 insertions(+), 7 deletions(-) diff --git a/src/widget/multiselect/multiselect.combo.js b/src/widget/multiselect/multiselect.combo.js index 23d5385b8..a564dce78 100644 --- a/src/widget/multiselect/multiselect.combo.js +++ b/src/widget/multiselect/multiselect.combo.js @@ -284,11 +284,13 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, { var self = this; var o = this.options; o.itemsCreator(op, function (res) { + var args = Array.prototype.slice.call(arguments); if (op.times === 1 && BI.isNotNull(op.keywords)) { // 预防trigger内部把当前的storeValue改掉 self.trigger.setValue(BI.deepClone(self.getValue())); } - callback.apply(self, arguments); + args.push(op); + callback.apply(self, args); }); }, diff --git a/src/widget/multiselect/multiselect.insert.combo.js b/src/widget/multiselect/multiselect.insert.combo.js index b1b4a202e..8001ada8d 100644 --- a/src/widget/multiselect/multiselect.insert.combo.js +++ b/src/widget/multiselect/multiselect.insert.combo.js @@ -285,11 +285,13 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, { _itemsCreator4Trigger: function (op, callback) { var self = this, o = this.options; o.itemsCreator(op, function (res) { + var args = Array.prototype.slice.call(arguments); if (op.times === 1 && BI.isNotNull(op.keywords)) { // 预防trigger内部把当前的storeValue改掉 self.trigger.setValue(BI.deepClone(self.getValue())); } - callback.apply(self, arguments); + args.push(op); + callback.apply(self, args); }); }, diff --git a/src/widget/multiselect/trigger/button.checkselected.js b/src/widget/multiselect/trigger/button.checkselected.js index 47a5ca995..17468061f 100644 --- a/src/widget/multiselect/trigger/button.checkselected.js +++ b/src/widget/multiselect/trigger/button.checkselected.js @@ -40,7 +40,7 @@ BI.MultiSelectCheckSelectedButton = BI.inherit(BI.Single, { self.numberCounter.setText(self.numberCounter.getTag()); }); this.setVisible(false); - if(BI.isNotNull(o.value)){ + if (BI.isNotNull(o.value)) { this.setValue(o.value); } }, @@ -51,6 +51,9 @@ BI.MultiSelectCheckSelectedButton = BI.inherit(BI.Single, { o.itemsCreator({ type: BI.MultiSelectCombo.REQ_GET_DATA_LENGTH }, function (res) { + if (self.options.value.type !== BI.Selection.All) { + return; + } if (BI.isNotEmptyString(res.count)) { BI.nextTick(function () { self.numberCounter.setText(res.count); diff --git a/src/widget/multiselect/trigger/searcher.multiselect.insert.js b/src/widget/multiselect/trigger/searcher.multiselect.insert.js index 404a0e4e8..6fe8e0375 100644 --- a/src/widget/multiselect/trigger/searcher.multiselect.insert.js +++ b/src/widget/multiselect/trigger/searcher.multiselect.insert.js @@ -62,8 +62,14 @@ BI.MultiSelectInsertSearcher = BI.inherit(BI.Widget, { itemsCreator: function (op, callback) { var keyword = self.editor.getKeyword(); op.keywords = [keyword]; + self.op = op; this.setKeyword(keyword); - o.itemsCreator(op, callback); + o.itemsCreator(op, function () { + var args = Array.prototype.slice.call(arguments); + if (BI.last(args) === self.op) { + callback.apply(null, args); + } + }); }, itemHeight: o.itemHeight, value: o.value, @@ -174,7 +180,7 @@ BI.MultiSelectInsertSearcher = BI.inherit(BI.Widget, { } }, - getState: function() { + getState: function () { return this.editor.getState(); }, diff --git a/src/widget/multiselect/trigger/searcher.multiselect.js b/src/widget/multiselect/trigger/searcher.multiselect.js index ab2688eb4..651540981 100644 --- a/src/widget/multiselect/trigger/searcher.multiselect.js +++ b/src/widget/multiselect/trigger/searcher.multiselect.js @@ -51,7 +51,6 @@ BI.MultiSelectSearcher = BI.inherit(BI.Widget, { callback(); }, el: this.editor, - popup: BI.extend({ type: "bi.multi_select_search_pane", valueFormatter: o.valueFormatter, @@ -61,7 +60,13 @@ BI.MultiSelectSearcher = BI.inherit(BI.Widget, { itemsCreator: function (op, callback) { var keyword = self.editor.getValue(); op.keywords = [keyword]; - o.itemsCreator(op, callback); + self.op = op; + o.itemsCreator(op, function () { + var args = Array.prototype.slice.call(arguments); + if (BI.last(args) === self.op) { + callback.apply(null, args); + } + }); }, itemHeight: o.itemHeight, value: o.value From f6699f352cb97e4d77b374c02b86c61d327c9e99 Mon Sep 17 00:00:00 2001 From: data Date: Mon, 13 Jun 2022 22:07:49 +0800 Subject: [PATCH 08/16] auto upgrade version to 2.0.20220613220728 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ba1b8f818..8c9cdf53d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fineui", - "version": "2.0.20220613171343", + "version": "2.0.20220613220728", "description": "fineui", "main": "dist/fineui.min.js", "types": "dist/lib/index.d.ts", From f71f88671006b67f547ceea238795d8204e20eb0 Mon Sep 17 00:00:00 2001 From: guy Date: Tue, 14 Jun 2022 10:07:52 +0800 Subject: [PATCH 09/16] =?UTF-8?q?feature:=20searcher=E5=8F=AA=E4=BD=BF?= =?UTF-8?q?=E8=83=BD=E6=9C=80=E5=90=8E=E4=B8=80=E6=AC=A1=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E7=9A=84=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/base/combination/searcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/combination/searcher.js b/src/base/combination/searcher.js index c4fd29025..0989b4c8a 100644 --- a/src/base/combination/searcher.js +++ b/src/base/combination/searcher.js @@ -183,7 +183,7 @@ BI.Searcher = BI.inherit(BI.Widget, { keyword: keyword, selectedValues: o.adapter && o.adapter.getValue() }, function (searchResult, matchResult) { - if (!self._stop) { + if (!self._stop && keyword === self.editor.getValue()) { var args = [].slice.call(arguments); if (args.length > 0) { args.push(keyword); From a58673cc63427b9c4807edfa1d676cb0dbbe0394 Mon Sep 17 00:00:00 2001 From: zsmj Date: Tue, 14 Jun 2022 10:55:30 +0800 Subject: [PATCH 10/16] =?UTF-8?q?=E6=97=A0JIRA=20fix:=20=E8=A7=A3=E5=86=B3?= =?UTF-8?q?=E5=A4=8D=E9=80=89=E4=B8=8B=E6=8B=89=E6=A1=86=E6=97=B6=E5=BA=8F?= =?UTF-8?q?=E4=B8=8D=E4=B8=80=E8=87=B4=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/base/combination/searcher.js | 2 +- .../multiselect/trigger/searcher.multiselect.js | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/base/combination/searcher.js b/src/base/combination/searcher.js index c4fd29025..0989b4c8a 100644 --- a/src/base/combination/searcher.js +++ b/src/base/combination/searcher.js @@ -183,7 +183,7 @@ BI.Searcher = BI.inherit(BI.Widget, { keyword: keyword, selectedValues: o.adapter && o.adapter.getValue() }, function (searchResult, matchResult) { - if (!self._stop) { + if (!self._stop && keyword === self.editor.getValue()) { var args = [].slice.call(arguments); if (args.length > 0) { args.push(keyword); diff --git a/src/widget/multiselect/trigger/searcher.multiselect.js b/src/widget/multiselect/trigger/searcher.multiselect.js index 651540981..6a25a9f4a 100644 --- a/src/widget/multiselect/trigger/searcher.multiselect.js +++ b/src/widget/multiselect/trigger/searcher.multiselect.js @@ -62,10 +62,13 @@ BI.MultiSelectSearcher = BI.inherit(BI.Widget, { op.keywords = [keyword]; self.op = op; o.itemsCreator(op, function () { - var args = Array.prototype.slice.call(arguments); - if (BI.last(args) === self.op) { - callback.apply(null, args); - } + var keyword = self.editor.getValue(); + op.keywords = [keyword]; + o.itemsCreator(op, function () { + if (keyword === self.editor.getValue()) { + callback.apply(null, arguments); + } + }); }); }, itemHeight: o.itemHeight, From c2c7c06083e20480904aeba92b888c847a389b6d Mon Sep 17 00:00:00 2001 From: zsmj Date: Tue, 14 Jun 2022 10:58:30 +0800 Subject: [PATCH 11/16] =?UTF-8?q?=E6=97=A0JIRA=20fix:=20=E8=A7=A3=E5=86=B3?= =?UTF-8?q?=E5=A4=8D=E9=80=89=E4=B8=8B=E6=8B=89=E6=A1=86=E6=97=B6=E5=BA=8F?= =?UTF-8?q?=E4=B8=8D=E4=B8=80=E8=87=B4=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/widget/multiselect/multiselect.combo.js | 4 +--- src/widget/multiselect/multiselect.insert.combo.js | 4 +--- .../multiselect/trigger/searcher.multiselect.insert.js | 6 ++---- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/src/widget/multiselect/multiselect.combo.js b/src/widget/multiselect/multiselect.combo.js index a564dce78..23d5385b8 100644 --- a/src/widget/multiselect/multiselect.combo.js +++ b/src/widget/multiselect/multiselect.combo.js @@ -284,13 +284,11 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, { var self = this; var o = this.options; o.itemsCreator(op, function (res) { - var args = Array.prototype.slice.call(arguments); if (op.times === 1 && BI.isNotNull(op.keywords)) { // 预防trigger内部把当前的storeValue改掉 self.trigger.setValue(BI.deepClone(self.getValue())); } - args.push(op); - callback.apply(self, args); + callback.apply(self, arguments); }); }, diff --git a/src/widget/multiselect/multiselect.insert.combo.js b/src/widget/multiselect/multiselect.insert.combo.js index 8001ada8d..b1b4a202e 100644 --- a/src/widget/multiselect/multiselect.insert.combo.js +++ b/src/widget/multiselect/multiselect.insert.combo.js @@ -285,13 +285,11 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, { _itemsCreator4Trigger: function (op, callback) { var self = this, o = this.options; o.itemsCreator(op, function (res) { - var args = Array.prototype.slice.call(arguments); if (op.times === 1 && BI.isNotNull(op.keywords)) { // 预防trigger内部把当前的storeValue改掉 self.trigger.setValue(BI.deepClone(self.getValue())); } - args.push(op); - callback.apply(self, args); + callback.apply(self, arguments); }); }, diff --git a/src/widget/multiselect/trigger/searcher.multiselect.insert.js b/src/widget/multiselect/trigger/searcher.multiselect.insert.js index 6fe8e0375..36b3a115f 100644 --- a/src/widget/multiselect/trigger/searcher.multiselect.insert.js +++ b/src/widget/multiselect/trigger/searcher.multiselect.insert.js @@ -62,12 +62,10 @@ BI.MultiSelectInsertSearcher = BI.inherit(BI.Widget, { itemsCreator: function (op, callback) { var keyword = self.editor.getKeyword(); op.keywords = [keyword]; - self.op = op; this.setKeyword(keyword); o.itemsCreator(op, function () { - var args = Array.prototype.slice.call(arguments); - if (BI.last(args) === self.op) { - callback.apply(null, args); + if (keyword === self.editor.getValue()) { + callback.apply(null, arguments); } }); }, From 5caa61da403468ffb85b91adce2a176a263409ee Mon Sep 17 00:00:00 2001 From: zsmj Date: Tue, 14 Jun 2022 11:00:01 +0800 Subject: [PATCH 12/16] =?UTF-8?q?=E6=97=A0JIRA=20fix:=20=E8=A7=A3=E5=86=B3?= =?UTF-8?q?=E5=A4=8D=E9=80=89=E4=B8=8B=E6=8B=89=E6=A1=86=E6=97=B6=E5=BA=8F?= =?UTF-8?q?=E4=B8=8D=E4=B8=80=E8=87=B4=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/widget/multiselect/trigger/searcher.multiselect.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/widget/multiselect/trigger/searcher.multiselect.js b/src/widget/multiselect/trigger/searcher.multiselect.js index 6a25a9f4a..4dbfbead7 100644 --- a/src/widget/multiselect/trigger/searcher.multiselect.js +++ b/src/widget/multiselect/trigger/searcher.multiselect.js @@ -60,7 +60,6 @@ BI.MultiSelectSearcher = BI.inherit(BI.Widget, { itemsCreator: function (op, callback) { var keyword = self.editor.getValue(); op.keywords = [keyword]; - self.op = op; o.itemsCreator(op, function () { var keyword = self.editor.getValue(); op.keywords = [keyword]; From 5caf090c1d07426bd09819742185871dbfa4ce22 Mon Sep 17 00:00:00 2001 From: Claire <1119518763@qq.com> Date: Tue, 14 Jun 2022 11:32:12 +0800 Subject: [PATCH 13/16] =?UTF-8?q?BI-107724=20style:bi-tips=E5=9C=A8?= =?UTF-8?q?=E6=B7=B1=E8=89=B2=E6=A8=A1=E5=BC=8F=E4=B8=8B=E7=9A=84=E9=A2=9C?= =?UTF-8?q?=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/less/core/utils/common.less | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/less/core/utils/common.less b/src/less/core/utils/common.less index e0396d286..036778c59 100644 --- a/src/less/core/utils/common.less +++ b/src/less/core/utils/common.less @@ -175,6 +175,18 @@ } } +.bi-theme-dark { + .bi-tips { + color: @color-bi-text-tips-theme-dark; + & .bi-input { + color: @color-bi-text-tips-theme-dark;; + } + & .bi-textarea { + color: @color-bi-text-tips-theme-dark; + } + } +} + // 边框 .bi-border { border: 1px solid @color-bi-border-line; From debf213926fdcf5b1d9949504d68af639ca2f916 Mon Sep 17 00:00:00 2001 From: data Date: Tue, 14 Jun 2022 14:23:08 +0800 Subject: [PATCH 14/16] auto upgrade version to 2.0.20220614142259 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8c9cdf53d..087ed7796 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fineui", - "version": "2.0.20220613220728", + "version": "2.0.20220614142259", "description": "fineui", "main": "dist/fineui.min.js", "types": "dist/lib/index.d.ts", From 2217e99949e6326ef2eca50e661bae777a50ef0c Mon Sep 17 00:00:00 2001 From: data Date: Tue, 14 Jun 2022 15:05:39 +0800 Subject: [PATCH 15/16] auto upgrade version to 2.0.20220614150529 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 087ed7796..f0a94304a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fineui", - "version": "2.0.20220614142259", + "version": "2.0.20220614150529", "description": "fineui", "main": "dist/fineui.min.js", "types": "dist/lib/index.d.ts", From 96e9ae1aa1ae5d26a73a51439cd3ba7b780a4fbf Mon Sep 17 00:00:00 2001 From: data Date: Tue, 14 Jun 2022 15:14:37 +0800 Subject: [PATCH 16/16] auto upgrade version to 2.0.20220614151423 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f0a94304a..536df17d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fineui", - "version": "2.0.20220614150529", + "version": "2.0.20220614151423", "description": "fineui", "main": "dist/fineui.min.js", "types": "dist/lib/index.d.ts",