🌈A set of enterprise-class UI components based on Ant Design and Blazor WebAssembly.
Перейти к файлу
James Yeung 7393fbf4ac
refactor(module: reusetabs): inherts tabs (#4200)
* refactor(module: reusetabs): inherts tabs

* OnRemoveTab

* fix refresh

* fix ink position

* fix closing
2024-09-15 00:11:51 +08:00
.github fix build action (#4182) 2024-09-10 08:04:56 +08:00
.vscode rename the docs project 2021-02-06 20:15:46 +08:00
components refactor(module: reusetabs): inherts tabs (#4200) 2024-09-15 00:11:51 +08:00
docs docs: fix menu generator (#4157) 2024-09-03 13:29:19 +08:00
scripts docs: fix g2plot js (#4185) 2024-09-10 15:02:54 +08:00
site feat(module: reusetabs): Add singleton page setting for reusing page instance. (#4151) 2024-09-14 19:54:38 +08:00
src/AntDesign.Extensions.Localization chore: Enable some code analyze rules (#4126) 2024-08-28 00:54:33 +08:00
tests fix(module: tabs): draggable and contextmenu incottectly (#4199) 2024-09-13 22:39:40 +08:00
.editorconfig chore: Enable some code analyze rules (#4126) 2024-08-28 00:54:33 +08:00
.gitattributes Make github main language as C# (#153) 2020-05-25 22:59:11 +08:00
.gitignore docs: enhance documentation automation (#3013) 2024-08-25 14:37:41 +08:00
.gitpod.yml chore: add gitpod support (#2646) 2022-08-31 06:01:54 +00:00
AntDesign.sln docs: enhance documentation automation (#3013) 2024-08-25 14:37:41 +08:00
CHANGELOG.en-US.md Changelog 0.20.4 (#4179) 2024-09-10 00:28:04 +08:00
CHANGELOG.zh-CN.md Changelog 0.20.4 (#4179) 2024-09-10 00:28:04 +08:00
CODE_OF_CONDUCT.md docs: add guides (#414) 2020-07-23 14:44:33 +08:00
CONTRIBUTING.md docs: fix dingtalk link & remove slack link (#2410) 2022-04-30 18:35:58 +08:00
DOCUMENTATION.md docs: enhance documentation automation (#3013) 2024-08-25 14:37:41 +08:00
Directory.Build.props chore: fix SolutionDir for building (#1011) 2021-01-23 01:15:23 +08:00
LICENSE docs: add the copyright of .NET Foundation (#1272) 2021-03-23 17:38:41 +08:00
README-zh_CN.md docs: fix menu generator (#4157) 2024-09-03 13:29:19 +08:00
README.md docs: fix menu generator (#4157) 2024-09-03 13:29:19 +08:00
THIRD-PARTY-NOTICES.txt chore: clean up the repo (#3298) 2023-06-12 22:31:57 +08:00
build-config.js chore: sync ant-design v4.20.7 (#2497) 2022-06-04 00:44:34 +08:00
gulpfile.js chore: sync ant-design v4.20.7 (#2497) 2022-06-04 00:44:34 +08:00
logo.svg chore: add a logo and update readme 2019-12-26 15:50:38 +08:00
package-lock.json chore: add eslint (#3702) 2024-02-27 12:42:10 +08:00
package.json fix(module: modal): repeated cleaning dom (#3665) (#3673) 2024-02-28 23:29:48 +08:00

README.md

Ant Design Blazor

A rich set of enterprise-class UI components based on Ant Design and Blazor.

Build AntDesign AntDesign AntDesign.Templates codecov AntDesign Ding Talk Group Discord Server

English | 简体中文

Features

  • 🌈 Enterprise-class UI designed for web applications.
  • 📦 A set of high-quality Blazor components out of the box.
  • 💕 Supports WebAssembly-based client-side and SignalR-based server-side UI event interaction.
  • 🎨 Supports Progressive Web Applications (PWA).
  • 🛡 Build with C#, a multi-paradigm static language for an efficient development experience.
  • 🌍 Internationalization support for dozens of languages.
  • 🎁 Seamless integration with existing ASP.NET Core MVC and Razor Pages projects.

🌈 Online Examples

WebAssembly static hosting on:

🖥 Environment Support

  • Supports .NET Core 3.1 / .NET 5 / .NET 6 / .Net 7 / .NET 8.
  • Supports WebAssembly static file deployment.
  • Supports 4 major browsers engines, and Internet Explorer 11+ (Blazor Server only)
  • Supports .NET MAUI / WPF / Windows Forms and other Blazor Hybrid workloads.
  • Supports Electron and other Web standards-based environments.

Due to WebAssembly restriction, Blazor WebAssembly doesn't support IE browser, but Blazor Server supports IE 11† with additional polyfills. See official documentation.

From .NET 5, IE 11 is no longer officially supported. See Blazor: Updated browser support. Unofficial support is provided by Blazor.Polyfill community project.

💿 Current Version

🎨 Design Specification

Regularly synchronize with Official Ant Design specifications, you can check the sync logs online.

Therefore, you can use the custom theme styles of Ant Design directly.

Before the 1.0 release, we will only sync antd 4.x styles.

📦 Installation Guide

Prerequirement

Option 1: Create a new project from the dotnet new template AntDesign.Templates

We have provided the dotnet new template to create a Boilerplate project out of the box

Pro Template

  • Install the template

    $ dotnet new --install AntDesign.Templates
    
  • Create the Boilerplate project with the template

    $ dotnet new antdesign -o MyAntDesignApp
    

Options for the template

Options Description Type Default
-f | --full If specified, generates all pages of Ant Design Pro bool false
-ho | --host Specify the hosting model 'webapp' | 'wasm' | 'server' 'webapp'
--styles Whether use NodeJS and Less to compile your custom themes. css | less css
--no-restore If specified, skips the automatic restore of the project on create bool false

Option 2: Import Ant Design Blazor into an existing project

  • Go to the project folder of the application and install the Nuget package reference

    $ dotnet add package AntDesign
    
  • Register the services in Program.cs

    builder.Services.AddAntDesign();
    

    or Startup.cs

    services.AddAntDesign();
    
  • Add namespace in _Imports.razor

    @using AntDesign
    
  • Introduce CSS and JS files in appropriate places. The WebApp project was introduced in App.razor, and the WebAssembly project was introduced in index.html

      <link href="_content/AntDesign/css/ant-design-blazor.css" rel="stylesheet">
      <script src="_content/AntDesign/js/ant-design-blazor.js"></script>
    
  • To display the pop-up component dynamically, you need to add the <AntContainer /> component in App.razor.

    • For Blazor WebApp, you also need to specify render mode to <Routes /> for interactivity.
    <Routes @rendermode="RenderMode.InteractiveAuto" />            <-- specify the rendermode ✨
    + <AntContainer @rendermode="RenderMode.InteractiveAuto" />    <-- add this component ✨
    
    • For legacy blazor apps just add a line of code:
    <Router AppAssembly="@typeof(MainLayout).Assembly">
        <Found Context="routeData">
            <RouteView RouteData="routeData" DefaultLayout="@typeof(MainLayout)" />
        </Found>
        <NotFound>
            <LayoutView Layout="@typeof(MainLayout)">
                <Result Status="404" />
            </LayoutView>
        </NotFound>
    </Router>
    
    +  <AntContainer />   <-- add this component ✨
    
  • Finally, it can be referenced in the .razor component!

    <Button Type="@ButtonType.Primary">Hello World!</Button>
    

🔨 Development

Gitpod

Click the button below to start a new workspace for development for free.

Open in Gitpod

Local

  • Install .NET Core SDK 8.0.100 or later.

  • Install Node.js (only for building style files and interoperable TypeScript files)

  • Clone to local development

    $ git clone https://github.com/ant-design-blazor/ant-design-blazor.git
    $ cd ant-design-blazor
    $ npm install
    $ dotnet build ./site/AntDesign.Docs.Build/AntDesign.Docs.Build.csproj
    $ npm start
    
  • Visit https://localhost:5001 in your supported browser and check local development documentation for details.

    Visual Studio 2022 is recommended for development.

🗺 Roadmap

Check out this issue to learn about our development plans for the 1.0 release.

You can also find the latest news about the features we will implement in the future with antd5.0 style.

🤝 Contributing

PRs Welcome

If you would like to contribute, feel free to create a Pull Request, or give us Bug Report.

💕 Donation

This project is an MIT-licensed open source project. In order to achieve better and sustainable development of the project, we expect to gain more backers. We will use the proceeds for community operations and promotion. You can support us in any of the following ways:

We will put the detailed donation records on the backer list.

Community Support

If you encounter any problems in the process, feel free to ask for help via following channels. We also encourage experienced users to help newcomers.

  • Discord Server

  • 钉钉群

    Scan QR Code with DingTalk

Contributors

This project exists thanks to all the people who contribute.

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information see the .NET Foundation Code of Conduct.

☀️ License

AntDesign

.NET Foundation

This project is supported by the .NET Foundation.