Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 3, 2025

This PR contains the following updates:

Package Change Age Confidence
AntDesign 1.4.3 -> 1.5.0 age confidence

Release Notes

ant-design-blazor/ant-design-blazor (AntDesign)

v1.5.0

Compare Source

✨What's Changed

⚠️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:

        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: ant-design-blazor/ant-design-blazor@1.4.3...1.5.0


Configuration

📅 Schedule: Branch creation - "before 5:00am,before 10am,before 3pm,before 8pm" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (squash) November 3, 2025 06:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant