Skip to content

Commit ec3bbb9

Browse files
committed
refactor: 调整目录结构
1 parent d05ec27 commit ec3bbb9

20 files changed

+9
-70
lines changed

src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIconListFilled.razor renamed to src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesign/AntDesignIconListFilled.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<AntDesignIcon Name="account-book" Category="AntDesignIconCategory.Filled"></AntDesignIcon>
1+
<AntDesignIcon Name="account-book" Category="AntDesignIconCategory.Filled"></AntDesignIcon>
22
<AntDesignIcon Name="alert" Category="AntDesignIconCategory.Filled"></AntDesignIcon>
33
<AntDesignIcon Name="alipay-circle" Category="AntDesignIconCategory.Filled"></AntDesignIcon>
44
<AntDesignIcon Name="alipay-square" Category="AntDesignIconCategory.Filled"></AntDesignIcon>

src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIconListOutlined.razor renamed to src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesign/AntDesignIconListOutlined.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<AntDesignIcon Name="account-book" Category="AntDesignIconCategory.Outlined"></AntDesignIcon>
1+
<AntDesignIcon Name="account-book" Category="AntDesignIconCategory.Outlined"></AntDesignIcon>
22
<AntDesignIcon Name="aim" Category="AntDesignIconCategory.Outlined"></AntDesignIcon>
33
<AntDesignIcon Name="alert" Category="AntDesignIconCategory.Outlined"></AntDesignIcon>
44
<AntDesignIcon Name="alibaba" Category="AntDesignIconCategory.Outlined"></AntDesignIcon>

src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIconListTwoTone.razor renamed to src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesign/AntDesignIconListTwoTone.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<AntDesignIcon Name="account-book" Category="AntDesignIconCategory.TwoTone"></AntDesignIcon>
1+
<AntDesignIcon Name="account-book" Category="AntDesignIconCategory.TwoTone"></AntDesignIcon>
22
<AntDesignIcon Name="alert" Category="AntDesignIconCategory.TwoTone"></AntDesignIcon>
33
<AntDesignIcon Name="api" Category="AntDesignIconCategory.TwoTone"></AntDesignIcon>
44
<AntDesignIcon Name="appstore" Category="AntDesignIconCategory.TwoTone"></AntDesignIcon>

src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor renamed to src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesign/AntDesignIcons.razor

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
@page "/ant-design-icon"
2-
@layout MainLayout
32
@inject IStringLocalizer<AntDesignIcons> Localizer
43

54
<h3>@Localizer["AntDesignIconTitle"]</h3>
@@ -22,14 +21,17 @@
2221

2322
<div>@((MarkupString)Localizer["Icons"].Value)</div>
2423

24+
<p class="code-label mt-3">Outlined</p>
2525
<div class="icon-list">
2626
<AntDesignIconListOutlined></AntDesignIconListOutlined>
2727
</div>
2828

29+
<p class="code-label mt-3">Filled</p>
2930
<div class="icon-list">
3031
<AntDesignIconListFilled></AntDesignIconListFilled>
3132
</div>
3233

34+
<p class="code-label mt-3">TwoTone</p>
3335
<div class="icon-list">
3436
<AntDesignIconListTwoTone></AntDesignIconListTwoTone>
3537
</div>

src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor.cs

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/BootstrapBlazor.Server/Components/Samples/Icons/BootstrapIcons.razor

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
@page "/bs-icon"
2-
@layout MainLayout
32
@inject IStringLocalizer<BootstrapIcons> Localizer
43

54
<h3>@Localizer["Title"]</h3>

src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIconList.razor renamed to src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcon/ElementIconList.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<ElementIcon Name="add-location"></ElementIcon>
1+
<ElementIcon Name="add-location"></ElementIcon>
22
<ElementIcon Name="aim"></ElementIcon>
33
<ElementIcon Name="alarm-clock"></ElementIcon>
44
<ElementIcon Name="apple"></ElementIcon>

src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor renamed to src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcon/ElementIcons.razor

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
@page "/element-icon"
2-
@layout MainLayout
32
@inject IStringLocalizer<ElementIcons> Localizer
43

54
<h3>@Localizer["ElementIconTitle"]</h3>

src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor.cs

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/BootstrapBlazor.Server/Components/Samples/Icons/FAIcons.razor

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
@page "/fa-icon"
2-
@layout MainLayout
32
@inject IStringLocalizer<FAIcons> Localizer
43

54
<h3>@Localizer["Title"]</h3>

0 commit comments

Comments
 (0)