Download Latest Version 1.5.1 source code.tar.gz (4.2 MB)
Email in envelope

Get an email when there's a new version of Ant Design Blazor

Home / 1.5.0
Name Modified Size InfoDownloads / Week
Parent folder
1.5.0 source code.tar.gz 2025-11-03 4.1 MB
1.5.0 source code.zip 2025-11-03 5.8 MB
README.md 2025-11-03 7.0 kB
Totals: 3 Items   9.9 MB 0

✨What's Changed

  • Table
  • πŸ†• Add support for controlling the closure of the panel when customizing the filter panel. #4645 @ElderJames
  • πŸ†• Add support hiding the add button of the field type filter when FilterMultiple=false is set. #4684 @alchiweb
  • πŸ†• Add a new property, ScrollItemIntoView, to scroll to the specified row of data. #4664 @pankey888
  • πŸ†• Add support for directly submitting QueryModel to the backend enables correct model binding, and supports direct filtering and sorting of IQueryable. #4658 @ElderJames

  • Upload

  • πŸ†• Add Defer delayed upload mode. (#4626). #4626 @stfei
  • πŸ†• Added support for usesing Object URL to display images before uploading at the Defer mode. #4680 @ElderJames
  • πŸ†• Add support for pasting and uploading via text box. #4650 @ElderJames

  • Tabs

  • πŸ†• Added touching swipe page turning function. #4581 @ElderJames
  • 🐞 Fixed avoid re-rendering already closed Tab pages. #4681 @ElderJames

  • ReuseTabs

  • 🐞 Fixed the issue where the Pin property of ReuseTabs becomes ineffective when the page is not in the same assembly. #4702 @shuangbaojun
  • πŸ›  Refactor the page caching strategy of ReuseTabs. #4679 @ElderJames

  • Select

  • πŸ†• Add enable SelectOption to support setting the ChildContent for label rendering. #4662 @ElderJames
  • 🐞 Fixed the exception when the Select is not bound to a Value in FromItem. #4700 @[shuangbaojun](https://github.com/shuangbaojun)[#4709](https://github.com/shuangbaojun/issues/4709)
  • 🐞 Fixed Select should only require ValueName to none-null in DataSource mode. #4683 @ElderJames

  • Input

  • πŸ›  Refactor to remove duplicate rendering of ant-input-group-wrapper. #4689 @zandiarash
  • πŸ›  Refactor the naming of some APIs: OnkeyDown, OnkeyDownAsync, and OnkeyUp. #4697 @zandiarash
  • 🐞 Fixed the RTL style of InputGroup。 #4694 @zandiarash

  • πŸ†• Added Mentions support custom prefixes and multiple prefixes. #4652 @ElderJames

  • πŸ†• Added Carousel supports touch swipe to turn pages. #4580 @ElderJames

  • πŸ›  Refactor Modal so that ModalService.CreateComfirmAsync() directly returns ConfirmResult and normally triggers delegates such as OnOk/OnCancel. 2ff57a1 @shuangbaojun

  • 🐞 Fixed Datepicker the exception that occurs when it destroys the date picker. #4715 @pankey888
  • 🐞 Fixed TreeSelect throws an exception if Value is not bound in FromItem. #4714 @shuangbaojun

  • 🐞 Fixed Badge the missing namespace for the BadgeSize enumeration. #4660 @ElderJames

  • 🐞 Fixed the JsInvokeAsync method so that it no longer prints exception stack traces to the console. #4669 @Yusuftmle
  • πŸ“– Fixed Icons Docs the incorrect IconThemeType when copying Icons. #4706 @zandiarash

⚠️Breaking Changes

  • Table: By default, FilterMultiple=false, and the built-in Filter does not display the "+" button. To enable it, simply set "FilterMultiple=true".
  • Input: The original Onkey* API has been renamed to OnKey*.
  • Modal:

  • The return value of the method CreateConfirmAsync<TComponent, TComponentOptions, TResult>(ConfirmOptions config, TComponentOptions componentOptions); is changed from Task<ConfirmRef<TResult>> to Task<ConfirmResult>.

  • The settings of delegates such as OnOk and OnCancel in ModalService.CreateComfirmAsync(...) have been changed from being set in ConfirmRef to being set in ConfirmOptions:

    ```cs var options = new ConfirmOptions<string>() { Title = "Confirm", Width = 350, Content = content, OnOpen = async () => { Console.WriteLine("Open Confirm"); }, OnClose = async () => { Console.WriteLine("Close Confirm"); }, OnCancel = async (result) => { Console.WriteLine($"OnCancel:{result}"); }, OnOk = async (result) => { Console.WriteLine($"OnOk:{result}"); } };

    await ModalService.CreateConfirmAsync(options); ```

❀️ New Contributors

Full Changelog: https://github.com/ant-design-blazor/ant-design-blazor/compare/1.4.3...1.5.0

Source: README.md, updated 2025-11-03