{"id":16634520,"url":"https://github.com/realliangshiwei/lsw.abp.antdesignui","last_synced_at":"2025-04-04T18:10:33.011Z","repository":{"id":37861649,"uuid":"463219213","full_name":"realLiangshiwei/Lsw.Abp.AntDesignUI","owner":"realLiangshiwei","description":"An Abp Blazor Theme based Ant-Design-Blazor","archived":false,"fork":false,"pushed_at":"2024-07-20T05:17:04.000Z","size":4906,"stargazers_count":125,"open_issues_count":3,"forks_count":35,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-10-29T21:11:22.673Z","etag":null,"topics":["abp","ant-design","blazor","theme"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/realLiangshiwei.png","metadata":{"files":{"readme":"README.Blazor.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-24T16:26:03.000Z","updated_at":"2024-10-28T15:58:22.000Z","dependencies_parsed_at":"2023-02-09T21:45:48.101Z","dependency_job_id":"b2080bf6-9ec1-4a59-bab2-36c1ee81d3c3","html_url":"https://github.com/realLiangshiwei/Lsw.Abp.AntDesignUI","commit_stats":null,"previous_names":["realliangshiwei/lsw.abp.antdesignui"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/realLiangshiwei%2FLsw.Abp.AntDesignUI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/realLiangshiwei%2FLsw.Abp.AntDesignUI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/realLiangshiwei%2FLsw.Abp.AntDesignUI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/realLiangshiwei%2FLsw.Abp.AntDesignUI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/realLiangshiwei","download_url":"https://codeload.github.com/realLiangshiwei/Lsw.Abp.AntDesignUI/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247226215,"owners_count":20904465,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["abp","ant-design","blazor","theme"],"created_at":"2024-10-12T05:39:23.817Z","updated_at":"2025-04-04T18:10:32.993Z","avatar_url":"https://github.com/realLiangshiwei.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"The first step is to use ABP CLI to create a new project.\n\n`abp new BookStore -u blazor`\n\n\u003e See the [ABP official documentation](https://docs.abp.io) to learn [ABP framework](https://github.com/abpframework/abp).\n\n**Replace LeptonXLiteTheme with AntBlazorTheme packages**\n\n* Remove `Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme` Package.\n* Replace `Volo.Abp.Identity.Blazor.WebAssembly` with `Lsw.Abp.IdentityManagement.Blazor.WebAssembly.AntDesignUI`\n* Replace `Volo.Abp.SettingManagement.Blazor.WebAssembly` with `Lsw.Abp.SettingManagement.Blazor.WebAssembly.AntDesignUI`\n* Replace `Volo.Abp.TenantManagement.Blazor.WebAssembly` with `Lsw.Abp.TenantManagement.Blazor.WebAssembly.AntDesignUI`\n\n```\n\n**Open `_Imports.razor` and add with the following:**\n\n```csharp\n@using AntDesign\n@using Lsw.Abp.AntDesignUI\n@using Lsw.Abp.AntDesignUI.Components\n@using Lsw.Abp.AspnetCore.Components.Web.AntDesignTheme.Layout\n```\n\n**Open `BookStoreBlazorModule` make the following changes:**\n\n* Remove the `ConfigureBlazorise` method\n* Fix wrong using namespace\n* Update module dependencies\n    * For example, replace `AbpIdentityBlazorWebAssemblyModule` with `AbpIdentityBlazorWebAssemblyAntDesignModule`\n\n**Open `BookStoreMenuContributor` to update icon:**\n\n* `\"fas fa-home\"` to `IconType.Outline.Home`\n* `\"fa fa-cog\"` to `IconType.Outline.Setting`\n\n**Open `Index.razor` and replace with the following:**\n\n```csharp\n@page \"/\"\n@inherits BookStoreComponentBase\n\n\u003cAbpPageHeader Title=\"Index\"\u003e\u003c/AbpPageHeader\u003e\n\n\u003cdiv class=\"page-content\"\u003e\n    \u003cdiv style=\"text-align: center\"\u003e\n        \n        \u003cAlert Type=\"@AlertType.Success\"\n               Message=\"Success\"\n               Description=\" Congratulations, BookStore is successfully running!\"\n               ShowIcon=\"true\"/\u003e\n\n        \u003cDivider/\u003e\n\n    \u003c/div\u003e\n\u003c/div\u003e\n\n```\n\nRun the `dotnet build` \u0026 `abp bundle` command in the `BookStore.Blazor` folder.\n\nThat's all, enjoy your code :).\n\n![3](img/3.png)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frealliangshiwei%2Flsw.abp.antdesignui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frealliangshiwei%2Flsw.abp.antdesignui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frealliangshiwei%2Flsw.abp.antdesignui/lists"}