MudExRichTextEditor 8.14.0

dotnet add package MudExRichTextEditor --version 8.14.0
                    
NuGet\Install-Package MudExRichTextEditor -Version 8.14.0
                    
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="8.14.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MudExRichTextEditor" Version="8.14.0" />
                    
Directory.Packages.props
<PackageReference Include="MudExRichTextEditor" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MudExRichTextEditor --version 8.14.0
                    
#r "nuget: MudExRichTextEditor, 8.14.0"
                    
#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.
#:package MudExRichTextEditor@8.14.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MudExRichTextEditor&version=8.14.0
                    
Install as a Cake Addin
#tool nuget:?package=MudExRichTextEditor&version=8.14.0
                    
Install as a Cake Tool

MudExRichTextEditor

NUGET PACKAGE | LIVE DEMO

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

Features

Image Resizing

Images inserted in the editor (including from attachments) can be resized directly by clicking on them. Resize handles will appear at the corners, allowing you to drag and adjust the image size. This feature is enabled by default in the Standard and Full presets via the QuillBlotFormatterModule.

To enable image resizing in custom configurations, include the QuillBlotFormatterModule:

@using MudExRichTextEditor.Extensibility

<MudExRichTextEdit Modules="@_modules" />

@code {
    private IQuillModule[] _modules = [
        new QuillBlotFormatterModule(),
        // other modules...
    ];
}

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 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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on MudExRichTextEditor:

Package Downloads
AonBlzrDevOps

Package Description

MudraX.Blazor.Core

MudraX Blazor Core Library

AMS-Utl

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
8.14.0 2,381 11/9/2025
8.13.0 2,424 10/14/2025
8.12.0 2,811 9/9/2025
8.11.1 1,006 8/31/2025
8.11.0 300 8/30/2025
8.5.2 24,765 4/23/2025
8.0.3 6,376 3/27/2025
8.0.2 824 3/24/2025
8.0.1 9,378 2/11/2025
8.0.0 4,599 1/19/2025
8.0.0-prev-1 129 1/13/2025
2.0.2 6,120 11/18/2024
2.0.1 303 11/17/2024
2.0.0 294 11/17/2024
1.0.9 18,542 5/20/2024
1.0.8 460 5/19/2024
1.0.7 557 4/30/2024
1.0.6 4,083 3/22/2024
1.0.5 2,330 3/13/2024
1.0.4 499 2/18/2024
1.0.4-prev-2 181 1/29/2024
1.0.4-prev-1 168 1/23/2024
1.0.3 2,544 1/7/2024
1.0.3-prev 171 1/6/2024
1.0.2 220 1/6/2024
1.0.1 260 12/29/2023
1.0.1-prev-1 197 12/20/2023
1.0.0 203 12/19/2023
0.0.6 189 12/19/2023
0.0.6-prev-1 185 12/19/2023
0.0.3 193 12/19/2023
0.0.2 189 12/18/2023
0.0.1 278 12/18/2023