From e9f81bfa77557c797322cd422aa88f3addd4b302 Mon Sep 17 00:00:00 2001 From: Argo Zhang Date: Sun, 2 Feb 2025 12:25:46 +0800 Subject: [PATCH 1/3] =?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 --- .../BootstrapBlazor.Server.csproj | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj index fb1d59c91ce..f579cd18860 100644 --- a/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj +++ b/src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj @@ -20,7 +20,7 @@ - + @@ -33,22 +33,22 @@ - + - + - + - + From df5c5e61e8653e4d19fa6d5a3e4954a1e74e8921 Mon Sep 17 00:00:00 2001 From: Argo Zhang Date: Sun, 2 Feb 2025 12:26:03 +0800 Subject: [PATCH 2/3] =?UTF-8?q?doc:=20=E5=A2=9E=E5=8A=A0=E5=9B=BE=E6=A0=87?= =?UTF-8?q?=E7=A4=BA=E4=BE=8B=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Components/Samples/Icons/AntDesignIcons.razor | 6 +++++- .../Components/Samples/Icons/BootstrapIcons.razor | 6 +++++- .../Components/Samples/Icons/ElementIcons.razor | 6 +++++- .../Components/Samples/Icons/FAIcons.razor | 6 +++++- .../Components/Samples/Icons/IconParks.razor | 6 +++++- .../Components/Samples/Icons/MaterialDesignIcons.razor | 6 +++++- .../Components/Samples/Icons/OctIcons.razor | 6 +++++- 7 files changed, 35 insertions(+), 7 deletions(-) diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor b/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor index e00d84aab58..dc213839bdf 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor @@ -22,6 +22,10 @@
<link href="_content/BootstrapBlazor.AntDesignIcon/BootstrapBlazor.AntDesignIcon.bundle.scp.css" rel="stylesheet">
-
<AntDesignIcon Category="AntDesignIconCategory.Outlined" Name="account-book"><AntDesignIcon>
+
+ +
+ +
<AntDesignIcon Category="AntDesignIconCategory.Outlined" Name="github"><AntDesignIcon>
@((MarkupString)Localizer["Icons"].Value)
diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/BootstrapIcons.razor b/src/BootstrapBlazor.Server/Components/Samples/Icons/BootstrapIcons.razor index 1aa4170ec7b..7b5e45b3fd2 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/BootstrapIcons.razor +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/BootstrapIcons.razor @@ -14,6 +14,10 @@
<link href="_content/BootstrapBlazor.BootstrapIcon/css/bootstrap.min.css" rel="stylesheet">
-
<i class="bi bi-save"></i>
+
+ +
+ +
<i class="bi bi-github"></i>
@((MarkupString)Localizer["Icons"].Value)
diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor b/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor index 3983f023e92..75bf94fd9d8 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor @@ -22,6 +22,10 @@
<link href="_content/BootstrapBlazor.ElementIcon/BootstrapBlazor.ElementIcon.bundle.scp.css" rel="stylesheet">
-
<ElementIcon Name="add-location"><ElementIcon>
+
+ +
+ +
<ElementIcon Name="upload-filled"><ElementIcon>
@((MarkupString)Localizer["Icons"].Value)
diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/FAIcons.razor b/src/BootstrapBlazor.Server/Components/Samples/Icons/FAIcons.razor index 484278eb071..de08154ce33 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/FAIcons.razor +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/FAIcons.razor @@ -14,6 +14,10 @@
<link href="_content/BootstrapBlazor.FontAwesome/css/font-awesome.min.css" rel="stylesheet">
-
<i class="fa-solid fa-home"></i>
+
+ +
+ +
<i class="fa-brands fa-github"></i>
@((MarkupString)Localizer["Icons"].Value)
diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParks.razor b/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParks.razor index f749d8a8a19..402569293e8 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParks.razor +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParks.razor @@ -22,6 +22,10 @@
<link href="_content/BootstrapBlazor.IconPark/BootstrapBlazor.IconPark.bundle.scp.css" rel="stylesheet">
-
<ByteDanceIcon Name="abdominal"><ByteDanceIcon>
+
+ +
+ +
<ByteDanceIcon Name="github"><ByteDanceIcon>
@((MarkupString)Localizer["Icons"].Value)
diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/MaterialDesignIcons.razor b/src/BootstrapBlazor.Server/Components/Samples/Icons/MaterialDesignIcons.razor index 245c0d4a414..9475bf14af6 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/MaterialDesignIcons.razor +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/MaterialDesignIcons.razor @@ -14,6 +14,10 @@
<link href="_content/BootstrapBlazor.MaterialDesign/css/md.min.css" rel="stylesheet">
-
<i class="mdi mdi-ab-testing"></i>
+
+ +
+ +
<i class="mdi mdi-github"></i>
@((MarkupString)Localizer["Icons"].Value)
diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/OctIcons.razor b/src/BootstrapBlazor.Server/Components/Samples/Icons/OctIcons.razor index a30aadaf16f..f735643ea3d 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/OctIcons.razor +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/OctIcons.razor @@ -22,6 +22,10 @@
<link href="_content/BootstrapBlazor.OctIcon/BootstrapBlazor.OctIcon.bundle.scp.css" rel="stylesheet">
-
<OctIcon Name="accessibility-16"><OctIcon>
+
+ +
+ +
<OctIcon Name="mark-github-16"><OctIcon>
@((MarkupString)Localizer["Icons"].Value)
From d2d7a4af016987341d7a776584e3e199caa5353b Mon Sep 17 00:00:00 2001 From: Argo Zhang Date: Sun, 2 Feb 2025 12:37:09 +0800 Subject: [PATCH 3/3] =?UTF-8?q?doc:=20=E5=A2=9E=E5=8A=A0=E9=97=AD=E5=90=88?= =?UTF-8?q?=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Components/Samples/Icons/AntDesignIcons.razor | 2 +- .../Components/Samples/Icons/ElementIcons.razor | 2 +- .../Components/Samples/Icons/IconParks.razor | 2 +- .../Components/Samples/Icons/OctIcons.razor | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor b/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor index dc213839bdf..b11a17257fa 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor @@ -26,6 +26,6 @@ -
<AntDesignIcon Category="AntDesignIconCategory.Outlined" Name="github"><AntDesignIcon>
+
<AntDesignIcon Category="AntDesignIconCategory.Outlined" Name="github"></AntDesignIcon>
@((MarkupString)Localizer["Icons"].Value)
diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor b/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor index 75bf94fd9d8..5fa646fc271 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor @@ -26,6 +26,6 @@ -
<ElementIcon Name="upload-filled"><ElementIcon>
+
<ElementIcon Name="upload-filled"></ElementIcon>
@((MarkupString)Localizer["Icons"].Value)
diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParks.razor b/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParks.razor index 402569293e8..cb65c35dec4 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParks.razor +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParks.razor @@ -26,6 +26,6 @@ -
<ByteDanceIcon Name="github"><ByteDanceIcon>
+
<ByteDanceIcon Name="github"></ByteDanceIcon>
@((MarkupString)Localizer["Icons"].Value)
diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/OctIcons.razor b/src/BootstrapBlazor.Server/Components/Samples/Icons/OctIcons.razor index f735643ea3d..2a0e3e4e508 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/OctIcons.razor +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/OctIcons.razor @@ -26,6 +26,6 @@ -
<OctIcon Name="mark-github-16"><OctIcon>
+
<OctIcon Name="mark-github-16"></OctIcon>
@((MarkupString)Localizer["Icons"].Value)