Ivy.Widgets.Tiptap
1.3.6
dotnet add package Ivy.Widgets.Tiptap --version 1.3.6
NuGet\Install-Package Ivy.Widgets.Tiptap -Version 1.3.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="Ivy.Widgets.Tiptap" Version="1.3.6" />
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.6" />
<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.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Ivy.Widgets.Tiptap, 1.3.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.
#:package Ivy.Widgets.Tiptap@1.3.6
#: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.6
#tool nuget:?package=Ivy.Widgets.Tiptap&version=1.3.6
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.6)
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.6 | 33 | 7/3/2026 |
| 1.3.5 | 43 | 7/3/2026 |
| 1.3.4 | 42 | 7/2/2026 |
| 1.3.3 | 65 | 7/2/2026 |
| 1.3.2 | 57 | 7/2/2026 |
| 1.3.1 | 95 | 6/29/2026 |
| 1.3.0 | 93 | 6/29/2026 |
| 1.2.72 | 106 | 6/27/2026 |
| 1.2.71 | 91 | 6/26/2026 |
| 1.2.70 | 98 | 6/25/2026 |
| 1.2.69 | 100 | 6/25/2026 |
| 1.2.68 | 103 | 6/25/2026 |
| 1.2.67 | 101 | 6/18/2026 |
| 1.2.66 | 93 | 6/3/2026 |
| 1.2.65 | 101 | 6/2/2026 |
| 1.2.63 | 106 | 5/31/2026 |
| 1.2.62 | 100 | 5/29/2026 |
| 1.2.61 | 100 | 5/29/2026 |
| 1.2.60 | 97 | 5/28/2026 |
| 1.2.60-pre-20260527074837 | 107 | 5/27/2026 |
Loading failed