diff --git a/Blazor.WebForm.Components.1.1.8.2.nupkg b/Blazor.WebForm.Components.1.1.8.2.nupkg deleted file mode 100644 index 9745cae..0000000 Binary files a/Blazor.WebForm.Components.1.1.8.2.nupkg and /dev/null differ diff --git a/Blazor.WebForm.Components.1.1.8.3.nupkg b/Blazor.WebForm.Components.1.1.8.3.nupkg new file mode 100644 index 0000000..7054bfa Binary files /dev/null and b/Blazor.WebForm.Components.1.1.8.3.nupkg differ diff --git a/Blazor.WebForm.Components/Blazor.WebForm.Components.csproj b/Blazor.WebForm.Components/Blazor.WebForm.Components.csproj index 55ba251..04447d4 100644 --- a/Blazor.WebForm.Components/Blazor.WebForm.Components.csproj +++ b/Blazor.WebForm.Components/Blazor.WebForm.Components.csproj @@ -4,7 +4,7 @@ net5.0 true Blazor.WebForm.Components.pfx - 1.1.8.2 + 1.1.8.3 asp Jurio li Blazor.WebForm.Components @@ -17,7 +17,7 @@ - + diff --git a/Blazor.WebForm.Components/MultiView.razor b/Blazor.WebForm.Components/MultiView.razor index f059133..60529e0 100644 --- a/Blazor.WebForm.Components/MultiView.razor +++ b/Blazor.WebForm.Components/MultiView.razor @@ -3,11 +3,14 @@ @using System.Web.UI @using System.Web.UI.WebControls @inherits ControlComponentBase -@this.RenderWithCascading(this.Control, this.ChildContent) +@this.RenderWithCascading(this.Control, this.ChildContent, this.ChildLevel) @code { [Parameter] public RenderFragment ChildContent { get; set; } + [Parameter] + public int ChildLevel { get; set; } = 1; + [Parameter] public int ActiveViewIndex {