TipsyBaboon.UI
1.1.3
dotnet add package TipsyBaboon.UI --version 1.1.3
NuGet\Install-Package TipsyBaboon.UI -Version 1.1.3
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="TipsyBaboon.UI" Version="1.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TipsyBaboon.UI" Version="1.1.3" />
<PackageReference Include="TipsyBaboon.UI" />
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 TipsyBaboon.UI --version 1.1.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: TipsyBaboon.UI, 1.1.3"
#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 TipsyBaboon.UI@1.1.3
#: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=TipsyBaboon.UI&version=1.1.3
#tool nuget:?package=TipsyBaboon.UI&version=1.1.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
TipsyBaboon.UI
Razor Pages UI components for TipsyBaboon framework.
Features
- Auto-Generated Pages - Index, Detail, Create pages for all models
- Generic CRUD API - RESTful endpoints for all entities
- Bootstrap 5 UI - Responsive, mobile-ready interfaces
- Field Renderers - Extensible field rendering engine
- Inline Editing - Edit records in grids without navigation
- Modal Dialogs - Quick create/edit in popups
- Permission UI - Role and permission management pages
- Change History - Visual diff views showing field-level changes
- Layout Editor - Customize page layouts visually
- Custom Actions - Add buttons with custom JavaScript handlers
Installation
dotnet add package TipsyBaboon.Core
dotnet add package TipsyBaboon.SqlServer
dotnet add package TipsyBaboon.UI
Usage
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddTipsyBaboon(config =>
{
config.UseSqlServer();
config.AddModule("MyApp", connStr);
});
var app = builder.Build();
app.UseTipsyBaboon();
app.UseEndpoints(endpoints => endpoints.MapTipsyBaboonPages());
app.Run();
Custom Field Renderers
FieldRenderer.Register<Color>(new FieldRegistrationParams<Color>
{
PartialPath = "~/Pages/Fields/_ColorPickerField.cshtml",
RequiredScripts = new List<string> { "/js/color-picker.js" }
});
Requirements
- TipsyBaboon.Core >= 1.1.0
- .NET 10.0+
- Bootstrap 5 (consumer-provided CSS)
License
MIT License - Copyright © 2026 Tipsy Baboon
| 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
- Microsoft.AspNetCore.Authentication.Google (>= 10.0.2)
- Microsoft.AspNetCore.Authentication.MicrosoftAccount (>= 10.0.2)
- Microsoft.Extensions.FileProviders.Embedded (>= 10.0.2)
- QRCoder (>= 1.7.0)
- TipsyBaboon.Core (>= 1.1.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.