From f71f88671006b67f547ceea238795d8204e20eb0 Mon Sep 17 00:00:00 2001 From: guy Date: Tue, 14 Jun 2022 10:07:52 +0800 Subject: [PATCH 1/7] =?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 5caf090c1d07426bd09819742185871dbfa4ce22 Mon Sep 17 00:00:00 2001 From: Claire <1119518763@qq.com> Date: Tue, 14 Jun 2022 11:32:12 +0800 Subject: [PATCH 2/7] =?UTF-8?q?BI-107724=20style:bi-tips=E5=9C=A8=E6=B7=B1?= =?UTF-8?q?=E8=89=B2=E6=A8=A1=E5=BC=8F=E4=B8=8B=E7=9A=84=E9=A2=9C=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 3/7] 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 4/7] 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 5/7] 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", From 2167c2867d5150110c8f660325a3dacae0823e45 Mon Sep 17 00:00:00 2001 From: imp Date: Tue, 14 Jun 2022 15:45:19 +0800 Subject: [PATCH 6/7] =?UTF-8?q?=E6=97=A0jira=E4=BB=BB=E5=8A=A1=20=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/foundation/message.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/base/foundation/message.ts b/typescript/base/foundation/message.ts index b30aad417..ad0e7bac0 100644 --- a/typescript/base/foundation/message.ts +++ b/typescript/base/foundation/message.ts @@ -9,5 +9,5 @@ export type _msg = { alert: (title: string, message?: string | { [key: string]: any }, callback?: (result?: boolean) => void) => void confirm: (title: string, message?: string | { [key: string]: any }, callback?: (result: boolean) => void) => void prompt: (title: string, message?: string, value?: any, callback?: (result: string) => void, minWidth?: number) => void - toast: (message: string | Obj, options?: toastOptions | string, context?: HTMLElement) => void + toast: (message: string | Obj, options?: toastOptions | string, context?: HTMLElement) => Function } From 89cc0aedaf71dc99f5b15c066aad1bcbbb2341ff Mon Sep 17 00:00:00 2001 From: data Date: Tue, 14 Jun 2022 17:04:09 +0800 Subject: [PATCH 7/7] auto upgrade version to 2.0.20220614170402 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 536df17d4..3e5b923c5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fineui", - "version": "2.0.20220614151423", + "version": "2.0.20220614170402", "description": "fineui", "main": "dist/fineui.min.js", "types": "dist/lib/index.d.ts",