diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 55695ac..06e1e6b 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -17,7 +17,7 @@ jobs: - name: Setup .NET Core 🔧 uses: actions/setup-dotnet@v1 with: - dotnet-version: 8.x + dotnet-version: 9.x - name: Install .NET WASM Build Tools run: dotnet workload install wasm-tools diff --git a/samples/BlazorServer/BlazorServer.csproj b/samples/BlazorServer/BlazorServer.csproj index daab3e6..b3f9404 100644 --- a/samples/BlazorServer/BlazorServer.csproj +++ b/samples/BlazorServer/BlazorServer.csproj @@ -1,13 +1,13 @@  - net8.0 + net9.0 enable enable - + diff --git a/samples/BlazorWasm/BlazorWasm.csproj b/samples/BlazorWasm/BlazorWasm.csproj index 307b908..ca14749 100644 --- a/samples/BlazorWasm/BlazorWasm.csproj +++ b/samples/BlazorWasm/BlazorWasm.csproj @@ -1,16 +1,16 @@ - net8.0 + net9.0 enable enable - - - - + + + + diff --git a/src/Tizzani.MudBlazor.HtmlEditor/MudHtmlViewer.razor b/src/Tizzani.MudBlazor.HtmlEditor/MudHtmlViewer.razor index 4063f65..422b60c 100644 --- a/src/Tizzani.MudBlazor.HtmlEditor/MudHtmlViewer.razor +++ b/src/Tizzani.MudBlazor.HtmlEditor/MudHtmlViewer.razor @@ -5,8 +5,17 @@ @code { + + /// + /// The HTML content to render. + /// [Parameter, EditorRequired] public string Html { get; set; } = ""; + + /// + /// If , removes the default border from the HMTL content's container. + /// Default is . + /// [Parameter] public bool Borderless { get; set; } = false; } diff --git a/src/Tizzani.MudBlazor.HtmlEditor/Tizzani.MudBlazor.HtmlEditor.csproj b/src/Tizzani.MudBlazor.HtmlEditor/Tizzani.MudBlazor.HtmlEditor.csproj index e5c9df6..f462726 100644 --- a/src/Tizzani.MudBlazor.HtmlEditor/Tizzani.MudBlazor.HtmlEditor.csproj +++ b/src/Tizzani.MudBlazor.HtmlEditor/Tizzani.MudBlazor.HtmlEditor.csproj @@ -1,7 +1,7 @@  - net6.0;net7.0;net8.0 + net6.0;net7.0;net8.0;net9.0 enable enable $(AssemblyName) @@ -9,7 +9,7 @@ https://github.com/erinnmclaughlin/MudBlazor.HtmlEditor LICENSE README.md - 2.2.1 + 2.3.0 A customizable HTML editor component for MudBlazor, powered by QuillJS. 2024 Erin McLaughlin https://github.com/erinnmclaughlin/MudBlazor.HtmlEditor @@ -45,4 +45,7 @@ + + +