Skip to content

Commit

Permalink
fix: components updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gokce Ozkan committed May 29, 2024
1 parent 0699566 commit 3b25c0e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 2 additions & 0 deletions SiemensIXBlazor/Components/Pane/Pane.razor
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
heading="@Heading"
composition="@(EnumParser<PaneComposition>.ParseEnumToString(Composition))"
size="@Size"
borderless="@Borderless"
icon="@Icon"
variant="@(EnumParser<PaneVariant>.ParseEnumToString(Variant))"
hide-on-collapse="@HideOnCollapse"
expanded="@Expanded"
Expand Down
12 changes: 9 additions & 3 deletions SiemensIXBlazor/Components/Pane/Pane.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ protected override async Task OnAfterRenderAsync(bool firstRender)
}

[JSInvokable]
public async void ExpandChanged(JsonElement data)
public async
Task
ExpandChanged(JsonElement data)
{
var jsonData = data.GetRawText();

Expand All @@ -74,7 +76,9 @@ public async void ExpandChanged(JsonElement data)
}

[JSInvokable]
public async void BorderlessChanged(JsonElement data)
public async
Task
BorderlessChanged(JsonElement data)
{
var jsonData = data.GetRawText();

Expand All @@ -84,7 +88,9 @@ public async void BorderlessChanged(JsonElement data)
}

[JSInvokable]
public async void VariantChanged(JsonElement data)
public async
Task
VariantChanged(JsonElement data)
{
var jsonData = data.GetRawText();

Expand Down
2 changes: 1 addition & 1 deletion SiemensIXBlazor/Components/PaneLayout/PaneLayout.razor
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<ix-pane-layout
class="@Class"
style="@Style;"
style="@Style"
@attributes="UserAttributes"
variant="@Variant"
layout="@Layout"
Expand Down
2 changes: 1 addition & 1 deletion SiemensIXBlazor/Components/Pill/Pill.razor
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
variant="@(EnumParser<PillVariant>.ParseEnumToString(Variant))"
color="@Color"
background="@Background"
align-lef="@AllignLeft"
align-left="@AlignLeft"
icon="@Icon"
outline="@Outline"
style="@Style"
Expand Down
2 changes: 1 addition & 1 deletion SiemensIXBlazor/Components/Pill/Pill.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public partial class Pill
[Parameter]
public RenderFragment? ChildContent { get; set; }
[Parameter]
public bool AllignLeft { get; set; } = false;
public bool AlignLeft { get; set; } = false;
[Parameter]
public string? Background { get; set; }
[Parameter]
Expand Down

0 comments on commit 3b25c0e

Please sign in to comment.