MudExRichTextEditor 1.0.6

dotnet add package MudExRichTextEditor --version 1.0.6
NuGet\Install-Package MudExRichTextEditor -Version 1.0.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MudExRichTextEditor" Version="1.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MudExRichTextEditor --version 1.0.6
#r "nuget: MudExRichTextEditor, 1.0.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MudExRichTextEditor as a Cake Addin
#addin nuget:?package=MudExRichTextEditor&version=1.0.6

// Install MudExRichTextEditor as a Cake Tool
#tool nuget:?package=MudExRichTextEditor&version=1.0.6

MudExRichTextEditor

NUGET PACKAGE

MudExRichTextEditor is a custom reusable control that allows us to easily consume Quill combining in a MudBlazor project Features with MudBlazor Theme Support. This compnent also works without a MudBlazor Project:

  • Exports editor contents in Text, HTML, and Quill’s native Delta format
  • Allows value binding
  • Provides a read only mode, suitable for displaying Quill’s native Delta format
  • Allows custom toolbars to be defined
  • Allows custom themes
  • Has an inline editor mode that also allows custom toolbars

What is Quill?

Quill is a free, open source WYSIWYG editor built for the modern web. With its modular architecture and expressive API, it is completely customizable to fit any need.

image

How to use

  1. Install the NuGet package MudExRichTextEditor

Add the following line to your _Imports.razor file

@using MudExRichTextEditor

And this is enough now you can simply use the component in your pages

@page "/"

<MudCheckBox Label="Read only" @bind-Checked="_readOnly" />

<MudExRichTextEdit @ref="@Editor"
                   ReadOnly="@_readOnly"
                   Height="444"
                   Class="m-2"
                   Placeholder="Edit html">
			 
</MudExRichTextEdit>

@code {	
    bool _readOnly = false;
	MudExRichTextEdit Editor;	
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.6 615 3/22/2024
1.0.5 353 3/13/2024
1.0.4 257 2/18/2024
1.0.4-prev-2 89 1/29/2024
1.0.4-prev-1 68 1/23/2024
1.0.3 1,218 1/7/2024
1.0.3-prev 95 1/6/2024
1.0.2 112 1/6/2024
1.0.1 140 12/29/2023
1.0.1-prev-1 110 12/20/2023
1.0.0 103 12/19/2023
0.0.6 105 12/19/2023
0.0.6-prev-1 90 12/19/2023
0.0.3 111 12/19/2023
0.0.2 112 12/18/2023
0.0.1 112 12/18/2023