| Name | Modified | Size | Downloads / 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 toOnKey*. -
Modal:
-
The return value of the method
CreateConfirmAsync<TComponent, TComponentOptions, TResult>(ConfirmOptions config, TComponentOptions componentOptions);is changed fromTask<ConfirmRef<TResult>>toTask<ConfirmResult>. -
The settings of delegates such as
OnOkandOnCancelin 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
- @stfei made their first contribution in https://github.com/ant-design-blazor/ant-design-blazor/pull/4626
- @Yusuftmle made their first contribution in https://github.com/ant-design-blazor/ant-design-blazor/pull/4669
- @alchiweb made their first contribution in https://github.com/ant-design-blazor/ant-design-blazor/pull/4684
- @shuangbaojun made their first contribution in https://github.com/ant-design-blazor/ant-design-blazor/pull/4700
Full Changelog: https://github.com/ant-design-blazor/ant-design-blazor/compare/1.4.3...1.5.0