Skip to content

Commit 9f12d9c

Browse files
committed
update AntDesign to 0.9.4
1 parent 1c12ea7 commit 9f12d9c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/layout/example/AntDesign.ProLayout.Wasm/Components/GlobalHeaders/RightContent.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
Options="DefaultOptions" />
1111
</SpaceItem>
1212
<SpaceItem>
13-
<Tooltip Title="@("Help")" Placement="@PlacementType.Bottom">
13+
<Tooltip Title="@("Help")" Placement="@Placement.Bottom">
1414
<span class="action">
1515
<Icon Type="question-circle" Theme="outline" />
1616
</span>

src/layout/src/AntDesign.ProLayout.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="AntDesign" Version="0.9.3" />
26+
<PackageReference Include="AntDesign" Version="0.9.4" />
2727
</ItemGroup>
2828

2929
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' And '$(SolutionDir)'==''">

src/layout/src/NoticeIcon/NoticeIcon.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@inherits AntDomComponentBase
33

44
<Dropdown
5-
Placement="@PlacementType.BottomRight"
5+
Placement="@Placement.BottomRight"
66
OverlayClassName="container popover"
77
Trigger="_trigger"
88
Visible="Visible"

src/layout/src/NoticeIcon/NoticeIcon.razor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace AntDesign.ProLayout
44
{
55
public partial class NoticeIcon : AntDomComponentBase
66
{
7-
private readonly TriggerType[] _trigger = { TriggerType.Click };
7+
private readonly Trigger[] _trigger = { Trigger.Click };
88

99
[Parameter] public bool Visible { get; set; }
1010
[Parameter] public int Count { get; set; }

src/layout/src/SelectLang/SelectLang.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<Dropdown
55
Style="display: inherit; width: inherit;"
6-
Placement="PlacementType.BottomRight"
6+
Placement="Placement.BottomRight"
77
OverlayClassName="container">
88
<Overlay>
99
<Menu Class="menu" OnMenuItemClicked="OnItemSelected" DefaultSelectedKeys="@(new[] { SelectedLocale })">

0 commit comments

Comments
 (0)