🌈A set of enterprise-class UI components based on Ant Design and Blazor WebAssembly.
Перейти к файлу
Diego Frata 7119351b9f fix(module: table): fix collection modified exception (#570) 2020-09-05 20:27:52 +08:00
.config chore: add format hook (#477) 2020-08-11 05:41:46 +08:00
.github chore: remove mention of typescript in PR template (#485) 2020-08-10 13:23:24 +08:00
.vscode feat: add simple table component (#86) 2020-05-30 01:46:41 +08:00
components fix(module: table): fix collection modified exception (#570) 2020-09-05 20:27:52 +08:00
docs docs: show how to create a project with template (#533) 2020-08-25 12:42:02 +08:00
scripts docs: add charts demo (#449) 2020-08-05 11:13:04 +08:00
site feat: add text keyboard parameter,and update demo (#566) 2020-09-04 11:24:50 +08:00
tests fix(module: table): fix collection modified exception (#570) 2020-09-05 20:27:52 +08:00
.editorconfig feat: add simple table component (#86) 2020-05-30 01:46:41 +08:00
.gitattributes Make github main language as C# (#153) 2020-05-25 22:59:11 +08:00
.gitignore chore: add codecov step for actions (#463) 2020-08-05 22:36:52 +08:00
AntDesign.sln feat(module: modal): support getting the result from confirm (#476) 2020-08-22 09:24:55 +08:00
CODE_OF_CONDUCT.md docs: add guides (#414) 2020-07-23 14:44:33 +08:00
CONTRIBUTING.md docs: add guides (#414) 2020-07-23 14:44:33 +08:00
LICENSE chore: update license 3rd party (#486) 2020-08-10 14:24:23 +08:00
LICENSE-ant-design.txt chore: update license 3rd party (#486) 2020-08-10 14:24:23 +08:00
README-zh_CN.md docs: Update README-zh_CN.md (#543) 2020-08-31 10:26:55 +08:00
README.md docs: show how to create a project with template (#533) 2020-08-25 12:42:02 +08:00
commitlint.config.js chore: add commit lint & adjust build directory 2020-03-09 18:16:44 +08:00
logo.svg chore: add a logo and update readme 2019-12-26 15:50:38 +08:00
package.json chore: add format hook (#477) 2020-08-11 05:41:46 +08:00

README.md

Ant Design Blazor

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

AntDesign AntDesign codecov AntDesign Slack Group Ding Talk Group

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.
  • ⚙️ .NET Standard 2.1 based, with direct reference to the rich .NET ecosystem.
  • 🎁 Seamless integration with existing ASP.NET Core MVC and Razor Pages projects.

🌈 Online Examples

WebAssembly static hosting examples:

🖥 Environment Support

  • .NET Core 3.1
  • Blazor WebAssembly 3.2 Release
  • Supports two-way binding on the server side
  • Supports WebAssembly static file deployment
  • Support 4 major browsers engines, and Internet Explorer 11+ (Blazor Server only)
  • Run directly on Electron and other Web standards-based environments
IE / Edge
Edge / IE
Firefox
Firefox
Chrome
Chrome
Safari
Safari
Opera
Opera
Electron
Electron
Edge 16 / IE 11† 522 57 11 44 Chromium 57

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

💿 Current Version

  • Release: AntDesign
  • Development: AntDesign

🎨 Design Specification

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

📦 Installation Guide

Create a new project from the dotnet new template

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

  • Install the template

    $ dotnet new --install AntDesign.Templates::0.1.0-*
    
  • 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 'wasm' | 'server' | 'hosted' 'wasm'
--no-restore If specified, skips the automatic restore of the project on create bool false

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

    services.AddAntDesign();
    
  • Link the static files in wwwroot/index.html (WebAssembly) or Pages/_Host.cshtml (Server)

    <link href="_content/AntDesign/css/ant-design-blazor.css" rel="stylesheet" />
    <script src="_content/AntDesign/js/ant-design-blazor.js"></script>
    
  • Add namespace in _Imports.razor

    @using AntDesign
    
  • To display the pop-up component dynamically, you need to add the <AntContainer /> component in App.razor.

    <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="primary">Hello World!</Button>
    

⌨️ Local Development

  • Install .NET Core SDK 3.1.300 or later.

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

  • Clone to local development

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

    Visual Studio 2019 is recommended for development.

🗺 Roadmap

Check out this issue to learn about our development plans for 2020.

🤝 Contributing

PRs Welcome

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

Contributors

This project exists thanks to all the people who contribute.

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

  • Slack Group (English)
  • Ding Talk Group (Chinese)
Scan QR Code with DingTalk

☀️ License

AntDesign