← Browse

@burakdmir/abp-ui

A

ABP Framework v10.x (10.4/10.5) UI: MVC/Razor Pages (AbpPageModel), Blazor (AbpComponentBase), Angular, React (--modern), theming (LeptonX), menu contributor, dynamic proxy. Use when developing frontend, UI, pages, or components in ABP.

skillclaude

Install

agr install @burakdmir/abp-ui --target claude

Writes 1 file into .claude/skills/, pinned to git-04502e4d.

  • .claude/skills/abp-ui/SKILL.md

Document


name: abp-ui description: "ABP Framework v10.x (10.4/10.5) UI: MVC/Razor Pages (AbpPageModel), Blazor (AbpComponentBase), Angular, React (--modern), theming (LeptonX), menu contributor, dynamic proxy. Use when developing frontend, UI, pages, or components in ABP."

ABP Framework — UI & Frontend

ABP Framework v10.x (10.4/10.5) UI framework integrations. MVC, Blazor, Angular, React, theming.

Trigger

  • "ABP UI"
  • "ABP MVC"
  • "ABP Blazor"
  • "ABP Angular"
  • "ABP React"
  • "ABP theme"

UI Frameworks

FrameworkTypeNote
MVC/Razor PagesServer-sideDefault
Blazor Web AppServer-side (.NET 10)Modern Blazor
Blazor WASMClient-sideSPA
AngularClient-sideTypeScript
ReactClient-sideModern template

MVC Controller

[Area("App")]
[Route("api/app/book")]
public class BookController : AbpController
{
    private readonly IBookAppService _bookAppService;
    public BookController(IBookAppService bookAppService) => _bookAppService = bookAppService;
    
    [HttpGet]
    public Task<PagedResultDto<BookDto>> GetListAsync(PagedAndSortedResultRequestDto input) =>
        _bookAppService.GetListAsync(input);
}

Razor Page

public class IndexModel : AbpPageModel
{
    public List<BookDto> Books { get; set; }
    public IndexModel(IBookAppService bookAppService) => _bookAppService = bookAppService;
    
    public async Task OnGetAsync()
    {
        var result = await _bookAppService.GetListAsync(new());
        Books = result.Items;
    }
}

Blazor Component

@page "/books"
@inject IBookAppService BookAppService

@if (books == null) { <p>Loading...</p> }
else {
    @foreach (var book in books.Items)
    {
        <div>@book.Name - @book.Price</div>
    }
}

@code {
    private PagedResultDto<BookDto> books;
    protected override async Task OnInitializedAsync() =>
        books = await BookAppService.GetListAsync(new());
}

React (Modern)

abp new Acme.BookStore --template app --modern
abp new Acme.BookStore --modern --shadcn-theme blue

Theme: slate, pink, blue, turquoise, orange, purple

Theming

abp new Acme.BookStore --theme leptonx-lite
abp new Acme.BookStore --theme basic

Permission

public static class BookStorePermissions
{
    public const string GroupName = "BookStore";
    public const string Books = GroupName + ".Books";
    public const string BooksCreate = Books + ".Create";
}

Best Practices

  1. MVC/Razor Pages as the default choice
  2. Use Blazor Web App (.NET 10)
  3. Use the --modern flag for React
  4. Define permissions in a constant class

v10.5+

  • Blazorise upgraded to 2.2.1; CMS Kit editor uses CodeMirror 6.0.2. Align direct pins and re-test custom Blazor components / editor pages.

Related

API · Authorization · Localization · Framework · Docs: https://abp.io/docs/latest/framework/ui

Trustgrade A

  • passBody integrity

    Whether the stored document is plausibly the kind of file the artifact declares, rather than something fetched by mistake.

  • passType matchnot applicable to this artifact type

    Whether the artifact is really the kind of thing its metadata claims it is.

  • passFreshness

    How long since the source repository was last pushed to.

  • passPrompt injection

    Scans the artifact's own text for instructions aimed at your agent rather than at you.

  • passLicense

    Whether the source repository declares an SPDX license permissive enough to redistribute.

How the grade is calculated

Each check contributes 0 points when it passes, 1 when it warns, and 2 when it fails. The total maps to a letter:

  • Aevery check passed
  • Bone warning
  • Ctwo warnings
  • Dprompt injection or body integrity failed, or three warnings
  • Fone of those failed, and something else is wrong

These are automated hygiene checks, not a security audit, and not a dependency or vulnerability scan. A grade of A means nothing was flagged — not that the artifact is safe.

Versions

  • git-04502e4dcfed2026-07-31