From d5b67e18f3cbca7d509218b77d3a391b541c8d4a Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 09:42:43 +0800 Subject: [PATCH 01/14] =?UTF-8?q?refactor:=20=E4=BF=AE=E6=AD=A3=E8=B5=84?= =?UTF-8?q?=E6=BA=90=E6=96=87=E4=BB=B6=E9=94=AE=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor.Server/Locales/en-US.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BootstrapBlazor.Server/Locales/en-US.json b/src/BootstrapBlazor.Server/Locales/en-US.json index 76befef8b70..35d5d6d2f2a 100644 --- a/src/BootstrapBlazor.Server/Locales/en-US.json +++ b/src/BootstrapBlazor.Server/Locales/en-US.json @@ -4730,7 +4730,7 @@ "CountButton": "CountButton", "Splitting": "Splitting", "QueryBuilder": "QueryBuilder", - "SerialService": "ISerialService", + "WebSerial": "ISerialService", "MindMap": "Mind Map", "Mermaid": "Mermaid", "Marquee": "Marquee", @@ -6328,7 +6328,7 @@ "MermaidTitle": "Mermaid", "MermaidDescription": "This component renders Markdown-inspired text definitions to dynamically create and modify diagrams.", "MermaidNormalTitle": "Basic usage", - "NormalIntro": "Mermaid basic style", + "MermaidNormalIntro": "Mermaid basic style", "MermaidStyleTitle": "Custom styles", "MermaidStyleIntro": "", "MermaidType": "Type" From f9613935cf9d3e46d5931531c6aa2c7dd26a04f7 Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 09:42:55 +0800 Subject: [PATCH 02/14] =?UTF-8?q?doc:=20=E5=A2=9E=E5=8A=A0=E6=BA=90?= =?UTF-8?q?=E7=A0=81=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor.Server/docs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/BootstrapBlazor.Server/docs.json b/src/BootstrapBlazor.Server/docs.json index b034d96f834..d01dc3a1578 100644 --- a/src/BootstrapBlazor.Server/docs.json +++ b/src/BootstrapBlazor.Server/docs.json @@ -99,6 +99,7 @@ "locator": "Locators", "logout": "Logouts", "icon": "BootstrapBlazorIcons", + "iframe": "IFrames", "image-viewer": "ImageViewers", "input-number": "InputNumbers", "input": "Inputs", @@ -140,6 +141,7 @@ "search-dialog": "SearchDialogs", "search": "Searches", "select": "Selects", + "select-generic": "SelectGenerics", "select-object": "SelectObjects", "select-tree": "SelectTrees", "select-table": "SelectTables", From 45f0baf4ba40df91f7ea6273d5318ea8657928bb Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 09:43:02 +0800 Subject: [PATCH 03/14] =?UTF-8?q?test:=20=E7=B2=BE=E7=AE=80=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/UnitTestDocs/MenuTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/UnitTestDocs/MenuTest.cs b/test/UnitTestDocs/MenuTest.cs index 6fb8c9c7523..92c5f155960 100644 --- a/test/UnitTestDocs/MenuTest.cs +++ b/test/UnitTestDocs/MenuTest.cs @@ -129,7 +129,7 @@ public void Localizer_Compare(string sourceLanguage, string targetLanguage) var target = configEn.GetChildren().SelectMany(section => section.GetChildren().Select(i => $"{section.Key} - {i.Key}")).ToList(); var result = new List(); - source.Where(i => !target.Contains(i)).ToList().ForEach(i => + source.Except(target).ToList().ForEach(i => { result.Add(i); _logger.WriteLine(i); From 94b05bd4733c9363098e14e359f0f431d5c0916a Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 10:36:23 +0800 Subject: [PATCH 04/14] =?UTF-8?q?doc:=20=E6=9B=B4=E6=96=B0=E5=85=B3?= =?UTF-8?q?=E9=94=AE=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor.Server/Components/App.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor.Server/Components/App.razor b/src/BootstrapBlazor.Server/Components/App.razor index 04b4760bb27..968d281ea77 100644 --- a/src/BootstrapBlazor.Server/Components/App.razor +++ b/src/BootstrapBlazor.Server/Components/App.razor @@ -10,7 +10,7 @@ - + @Localizer["SiteTitle"] From 0a734e09327ebb24263891e75acb2bc643b7a361 Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 10:36:36 +0800 Subject: [PATCH 05/14] =?UTF-8?q?doc:=20=E6=9B=B4=E6=AD=A3=E5=A4=A7?= =?UTF-8?q?=E5=B0=8F=E5=86=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor.Server/Components/App.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor.Server/Components/App.razor b/src/BootstrapBlazor.Server/Components/App.razor index 968d281ea77..d73225e4964 100644 --- a/src/BootstrapBlazor.Server/Components/App.razor +++ b/src/BootstrapBlazor.Server/Components/App.razor @@ -42,7 +42,7 @@ - + @if (Env.IsProduction()) { From ce1b229137405b34c66cf9a4177f3dc11af27ba3 Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 11:58:02 +0800 Subject: [PATCH 06/14] =?UTF-8?q?refactor:=20=E9=87=8D=E5=91=BD=E5=90=8D?= =?UTF-8?q?=E6=89=A9=E5=B1=95=E6=96=B9=E6=B3=95=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ectionExtensions.cs => ServiceCollectionSharedExtensions.cs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/BootstrapBlazor.Server/Extensions/{ServicesCollectionExtensions.cs => ServiceCollectionSharedExtensions.cs} (98%) diff --git a/src/BootstrapBlazor.Server/Extensions/ServicesCollectionExtensions.cs b/src/BootstrapBlazor.Server/Extensions/ServiceCollectionSharedExtensions.cs similarity index 98% rename from src/BootstrapBlazor.Server/Extensions/ServicesCollectionExtensions.cs rename to src/BootstrapBlazor.Server/Extensions/ServiceCollectionSharedExtensions.cs index a224715fff3..b25b5e7af17 100644 --- a/src/BootstrapBlazor.Server/Extensions/ServicesCollectionExtensions.cs +++ b/src/BootstrapBlazor.Server/Extensions/ServiceCollectionSharedExtensions.cs @@ -10,7 +10,7 @@ namespace Microsoft.Extensions.DependencyInjection; /// /// 注册服务扩展方法 /// -public static class ServicesCollectionExtensions +public static class ServiceCollectionSharedExtensions { /// /// 添加示例后台任务 From ff5ec5c70a7445a00baedeaf9751c74b2128df34 Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 11:58:35 +0800 Subject: [PATCH 07/14] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=E4=BE=9D?= =?UTF-8?q?=E8=B5=96=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj index b318c5d6181..f967f1a8214 100644 --- a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj +++ b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj @@ -38,7 +38,7 @@ - + @@ -47,7 +47,7 @@ - + @@ -62,7 +62,7 @@ - + From a573cd4c885625b243e30fb954a943975e5424b5 Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 11:58:56 +0800 Subject: [PATCH 08/14] =?UTF-8?q?refactor:=20=E8=B0=83=E6=95=B4=20Header?= =?UTF-8?q?=20z-index=20=E5=85=BC=E5=AE=B9=20winbox?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Components/Layout/ComponentLayout.razor.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor.Server/Components/Layout/ComponentLayout.razor.css b/src/BootstrapBlazor.Server/Components/Layout/ComponentLayout.razor.css index 508cba78b00..f93e04c67c2 100644 --- a/src/BootstrapBlazor.Server/Components/Layout/ComponentLayout.razor.css +++ b/src/BootstrapBlazor.Server/Components/Layout/ComponentLayout.razor.css @@ -33,7 +33,7 @@ .tabs-coms ::deep > .tabs > .tabs-header { position: sticky; top: 0; - z-index: 20; + z-index: 11; } ::deep :is(.code-razor, .code-cs) pre { From 5ac6582e9cc4e9d4347b0b37d7b05a7327ce149f Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 12:29:09 +0800 Subject: [PATCH 09/14] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=20SvgEditor?= =?UTF-8?q?=20=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj index f967f1a8214..4eb29a3bd3f 100644 --- a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj +++ b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj @@ -57,7 +57,7 @@ - + From 0b97da2e0ff01473fd0f9fe6f147f260cb2e28cd Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 13:12:41 +0800 Subject: [PATCH 10/14] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=20gantt=20?= =?UTF-8?q?=E4=BE=9D=E8=B5=96=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj index 4eb29a3bd3f..3097ee767e8 100644 --- a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj +++ b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj @@ -38,7 +38,7 @@ - + From 76f1bf15ce25c55c15efdd0a5ba01b03005e7eea Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 13:12:55 +0800 Subject: [PATCH 11/14] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=20MeiliSearch?= =?UTF-8?q?=20=E4=BE=9D=E8=B5=96=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj index 3097ee767e8..9f93c72ea96 100644 --- a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj +++ b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj @@ -47,7 +47,7 @@ - + From dbf6ca72c39adfb379d9a729bca51a7b2701b90e Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 13:13:33 +0800 Subject: [PATCH 12/14] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=20MouseFollow?= =?UTF-8?q?er=20=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj index 9f93c72ea96..5b7eed6f90c 100644 --- a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj +++ b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj @@ -50,7 +50,7 @@ - + From 595b05ae1988d1b95bcbcfe823ed526f39d4fc94 Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 14:10:47 +0800 Subject: [PATCH 13/14] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=20Live2D=20?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj index 5b7eed6f90c..23fa2b6f205 100644 --- a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj +++ b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj @@ -43,7 +43,7 @@ - + From 2ac6007666eb63cc478f170bb23b8c3bdf4e7696 Mon Sep 17 00:00:00 2001 From: Argo-AsicoTech Date: Mon, 16 Dec 2024 14:10:57 +0800 Subject: [PATCH 14/14] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=20CodeEditor?= =?UTF-8?q?=20=E7=BB=84=E4=BB=B6=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj index 23fa2b6f205..12923e10f56 100644 --- a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj +++ b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj @@ -31,7 +31,7 @@ - +