Ivy.Widgets.Tiptap
1.3.21
dotnet add package Ivy.Widgets.Tiptap --version 1.3.21
NuGet\Install-Package Ivy.Widgets.Tiptap -Version 1.3.21
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="Ivy.Widgets.Tiptap" Version="1.3.21" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ivy.Widgets.Tiptap" Version="1.3.21" />
<PackageReference Include="Ivy.Widgets.Tiptap" />
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 Ivy.Widgets.Tiptap --version 1.3.21
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Ivy.Widgets.Tiptap, 1.3.21"
#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 Ivy.Widgets.Tiptap@1.3.21
#: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=Ivy.Widgets.Tiptap&version=1.3.21
#tool nuget:?package=Ivy.Widgets.Tiptap&version=1.3.21
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Ivy.Widgets.Tiptap
A rich text editor widget for Ivy Framework powered by Tiptap.
Installation
dotnet add package Ivy.Widgets.Tiptap
Usage
Basic Usage with State
using Ivy.Widgets.Tiptap;
var content = UseState("<p>Hello, world!</p>");
new TiptapInput(content);
Controlled Usage
new TiptapInput(
value: "<p>Initial content</p>",
onChange: e => Console.WriteLine($"Content changed: {e.Value}")
);
With Placeholder
new TiptapInput(content, placeholder: "Start typing...");
Extension Methods
content.ToTiptapInput()
.Placeholder("Enter your text...")
.AutoFocus()
.ShowToolbar()
.HandleFocus(() => Console.WriteLine("Focused"))
.OnBlur(() => Console.WriteLine("Blurred"));
Features
- Bold, Italic, Strikethrough, Code formatting
- Headings (H1, H2, H3)
- Bullet and Ordered lists
- Blockquotes and Code blocks
- Horizontal rules
- Undo/Redo support
- Customizable toolbar
- Placeholder text
- Read-only mode
- Focus/Blur event handlers
Properties
| Property | Type | Default | Description |
|---|---|---|---|
Value |
string |
"" |
The HTML content of the editor |
Placeholder |
string? |
null |
Placeholder text when empty |
Disabled |
bool |
false |
Disables the editor |
Editable |
bool |
true |
Makes the editor read-only when false |
AutoFocus |
bool |
false |
Automatically focus on mount |
ShowToolbar |
bool |
true |
Show/hide the formatting toolbar |
Nullable |
bool |
false |
Whether the value can be null |
Events
| Event | Description |
|---|---|
OnChange |
Fired when the content changes |
OnFocus |
Fired when the editor gains focus |
OnBlur |
Fired when the editor loses focus |
License
Apache-2.0
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. 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.
-
net10.0
- Ivy (>= 1.3.21)
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.3.21 | 102 | 8/18/2026 |
| 1.3.20 | 110 | 8/13/2026 |
| 1.3.17 | 109 | 8/2/2026 |
| 1.3.16 | 99 | 7/28/2026 |
| 1.3.15 | 105 | 7/26/2026 |
| 1.3.13 | 118 | 7/25/2026 |
| 1.3.12 | 124 | 7/23/2026 |
| 1.3.11 | 111 | 7/23/2026 |
| 1.3.10 | 112 | 7/18/2026 |
| 1.3.9 | 118 | 7/14/2026 |
| 1.3.8 | 118 | 7/10/2026 |
| 1.3.7 | 111 | 7/10/2026 |
| 1.3.6 | 105 | 7/3/2026 |
| 1.3.5 | 111 | 7/3/2026 |
| 1.3.4 | 114 | 7/2/2026 |
| 1.3.3 | 110 | 7/2/2026 |
| 1.3.2 | 107 | 7/2/2026 |
| 1.3.1 | 117 | 6/29/2026 |
| 1.3.0 | 117 | 6/29/2026 |
| 1.2.72 | 126 | 6/27/2026 |
Loading failed