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" />
                    
Directory.Packages.props
<PackageReference Include="TipsyBaboon.UI" />
                    
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 TipsyBaboon.UI --version 1.1.3
                    
#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
                    
Install as a Cake Addin
#tool nuget:?package=TipsyBaboon.UI&version=1.1.3
                    
Install as a Cake Tool

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 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.

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.1.3 119 3/11/2026
1.1.2 108 3/9/2026
1.1.1 114 2/16/2026
1.1.0 112 2/16/2026