Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MudTooltip: Activation via Hover, Focus or Click #4647

Merged
merged 15 commits into from Nov 30, 2022

Conversation

mckaragoz
Copy link
Member

Description

Fixes #4564.
First of all, we needed to wait popover fix to see true effects on server-side mobile. It's done, so we can discuss it now.

So why we need this?

With #4086 Focus event added to the tooltip, but that may be a problem for some situations, because there is no other option to prevent it.

Here is an example. The "GitHub Repository" tooltip doesn't close when you open a new tab and turn the page, because it still has focus and for current situation no way to prevent this.

20220522_020214.mp4

Examples can be multiplied. So instead of force users to certain scenarios, adding options could make sense. The other argument, we still can not guarantee to certainly working tooltip/popover for all server-side/wasm projects. So this PR raises the probability of creating workarounds if we have side effects or something other with .net 7 in future.

So its not a breaking change. Tooltip still shows on focus and hover, but now we have options that ShowOnHover and ShowOnFocus. For the upper example, users can set ShowOnFocus="false" to disable the tooltip.

Or, users still want the tooltip with hover. This time they can use ClickBehavior="TooltipClickBehavior.ClickToHide". With this, tooltip shows on focus, but when user click on it, it disappears. It will solve the problems like upper example.

This PR doesn't have a touch addition. I think touch is a more general thing and should be discussed to adding whole library. But users can play with parameters to have their own touch reaction.

The result of this PR:

20220522_015551.mp4
20220522_015721.mp4

How Has This Been Tested?

Tested visually with Server-Side and WASM and the touch versions.

Types of changes

  • Bug fix (non-breaking change which fixes an issue) (fixes bugs, but actually they are not bugs)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)

Checklist:

  • The PR is submitted to the correct branch (dev).
  • My code follows the code style of this project.
  • I've added relevant tests.

@mckaragoz mckaragoz changed the title Tooltip react with Tooltip Event Reactions: Hover, Focus and Click Arrangements May 21, 2022
@codecov
Copy link

codecov bot commented May 21, 2022

Codecov Report

Base: 91.50% // Head: 91.50% // Increases project coverage by +0.00% 🎉

Coverage data is based on head (db6dbfd) compared to base (fe75d61).
Patch coverage: 88.23% of modified lines in pull request are covered.

Additional details and impacted files
@@           Coverage Diff           @@
##              dev    #4647   +/-   ##
=======================================
  Coverage   91.50%   91.50%           
=======================================
  Files         381      381           
  Lines       14959    14976   +17     
=======================================
+ Hits        13688    13704   +16     
- Misses       1271     1272    +1     
Impacted Files Coverage Δ
src/MudBlazor/Components/Tooltip/MudTooltip.razor 100.00% <ø> (ø)
...c/MudBlazor/Components/Tooltip/MudTooltip.razor.cs 94.44% <88.23%> (-3.00%) ⬇️
src/MudBlazor/Components/Chip/MudChip.razor.cs 94.11% <0.00%> (+0.11%) ⬆️
...lazor/Components/FileUpload/MudFileUpload.razor.cs 96.29% <0.00%> (+0.14%) ⬆️
...r/Components/Autocomplete/MudAutocomplete.razor.cs 92.85% <0.00%> (+0.42%) ⬆️

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

@mckaragoz mckaragoz requested a review from Garderoben May 21, 2022 23:22
@mikes-gh mikes-gh added the API change API that needs approval label Sep 13, 2022
@mikes-gh mikes-gh changed the title Tooltip Event Reactions: Hover, Focus and Click Arrangements MudTooltip: Event Reactions - Hover, Focus and Click Arrangements Sep 13, 2022
@henon
Copy link
Collaborator

henon commented Nov 28, 2022

I expected that ClickToHide would hide the tooltip when directly clicking on the tooltip. Also, how can one toggle the tooltip by clicking? Can one use both ClickToShow and ClickToHide at the same time? It is impossible right now, right? Wouldn't a single option ClickToToggle be better than ClickToShow and ClickToHide ?

@henon
Copy link
Collaborator

henon commented Nov 28, 2022

Actually a bool ToggleOnClick would be the better API then

@mckaragoz
Copy link
Member Author

mckaragoz commented Nov 28, 2022

Actually a bool ToggleOnClick would be the better API then

Why not. But first i say why i add this, then you decide better. ClickToShow option directly means the toggle thing, ClickToHide is only for hide tooltip (to sure it will always hide). There is two situation i don't know:

  1. If there will be racing condition (or focus to open, click to close - so can the click call focus again? I don't know), is there a change to false open the tooltip again instead of closing?
  2. Probably there will be more work about touch events in future, click pattern should not conflict with possible touch implementations.

Actually i like the bool parameter. If you say ok, i can change.

@henon
Copy link
Collaborator

henon commented Nov 28, 2022

There can not be a race condition I think. OK, let's do the bool parameter. Click should later just also work for touch too.

@mckaragoz
Copy link
Member Author

Changed to bool parameter and text of docs, could you look at these again?

@henon
Copy link
Collaborator

henon commented Nov 28, 2022

The doc text is ok. The last thing I want to discuss are the side-effects of ToggleOnClick. It is impossible to have a hover tooltip that can be clicked away now?

@henon henon changed the title MudTooltip: Event Reactions - Hover, Focus and Click Arrangements MudTooltip: Activation via Hover, Focus or Click Nov 28, 2022
@mckaragoz
Copy link
Member Author

The doc text is ok. The last thing I want to discuss are the side-effects of ToggleOnClick. It is impossible to have a hover tooltip that can be clicked away now?

As the latest behavior, ToggleOnClick overrides all focus and hover. But i don't understand clicked away part.

@henon
Copy link
Collaborator

henon commented Nov 28, 2022

I know it overrides the others. I just want to know if this is side-effect is absolutely necessary or if it would also work if it would not override the others.

For instance, setting ShowOnFocus = true and ToggleOnClick = true, what if ToggleOnClick has no side-effect? Would it still work? Right now, you can not have both.

@mckaragoz
Copy link
Member Author

mckaragoz commented Nov 28, 2022

I know it overrides the others. I just want to know if this is side-effect is absolutely necessary or if it would also work if it would not override the others.

For instance, setting ShowOnFocus = true and ToggleOnClick = true, what if ToggleOnClick has no side-effect? Would it still work? Right now, you can not have both.

I tried and not see a side effect, at least on standard usage. Then i can offer to simplify this most, remove the "ShowOn" texts and add three parameters Hover Focus Click and each three is independent. If hover is false, the tooltip also doesn't hide when mouse leave etc.

@mckaragoz
Copy link
Member Author

@henon thanks, i like the new API now, its much clear and much fixable if there will be some bugs. I changed the names and behavior. Also changed GitHub and example "Run" button behavior to show tooltip properly.

@henon
Copy link
Collaborator

henon commented Nov 30, 2022

@mckaragoz: So I guess the enum can be removed? And in the docs the Note: about the side effect can be removed.

I am not sure about the naming Click, Hover and Focus, it is not clear from the names what they do. ShowOnClick, ShowOnHover and ShowOnFocus is much more concise. You agree @mikes-gh ?

@mikes-gh
Copy link
Contributor

@mckaragoz: So I guess the enum can be removed? And in the docs the Note: about the side effect can be removed.

I am not sure about the naming Click, Hover and Focus, it is not clear from the names what they do. ShowOnClick, ShowOnHover and ShowOnFocus is much more concise. You agree @mikes-gh ?

Yes you are right Click Hover Focus are actions not behaviours.

@mikes-gh
Copy link
Contributor

Also probably needs tests. Can I just be clear these parameters can all coexist? ShowOnFocus in combination with ShowOnHover is good for accessibility for example with keyboard users without fine motor skills.

@mckaragoz
Copy link
Member Author

Also probably needs tests. Can I just be clear these parameters can all coexist? ShowOnFocus in combination with ShowOnHover is good for accessibility for example with keyboard users without fine motor skills.

In current situation, tooltip already works on hover and on focus, but there is no click option to show/hide. The new one doesn't have breaking changes, it has hover and focus to true, and click to false by default, same behavior.

And yes, all three are possible at the same time, or possible all combinations.

This is important for me because for now there is no option to disable focus option without disabling all tooltip. With this everything is possible :)

@mikes-gh
Copy link
Contributor

In current situation, tooltip already works on hover and on focus, but there is no click option to show/hide. The new one doesn't have breaking changes, it has hover and focus to true, and click to false by default, same behavior.

You've added logic thats not covered by the tests.

Also I would change the Example file name to be consistent with terminology.
TooltipReactExample -> TooltipActivationExample

@mckaragoz
Copy link
Member Author

In current situation, tooltip already works on hover and on focus, but there is no click option to show/hide. The new one doesn't have breaking changes, it has hover and focus to true, and click to false by default, same behavior.

You've added logic thats not covered by the tests.

Also I would change the Example file name to be consistent with terminology.
TooltipReactExample -> TooltipActivationExample

Yeah I will handle all, but henon asks you for the new API naming, should we have "ShowOnHover" or simply "Hover"?

@henon
Copy link
Collaborator

henon commented Nov 30, 2022

@mckaragoz all with ShowOn prefix please

@mckaragoz
Copy link
Member Author

@henon sorry, didn't see the mikes's message on upper, changed names and docs, removed enum, add a click test. And other hover and focus events tests work.

@henon henon merged commit 5e89563 into MudBlazor:dev Nov 30, 2022
@henon
Copy link
Collaborator

henon commented Nov 30, 2022

Many thanks!

@mikes-gh mikes-gh added the enhancement New feature or request label Dec 4, 2022
@mikes-gh mikes-gh added this to the 6.1.3 milestone Dec 4, 2022
mblichowski added a commit to mblichowski/MudBlazor-extended that referenced this pull request Jan 29, 2023
* Update to 6.0.16

* Git: Exclude MacOS filesystem files (MudBlazor#5311)

* Docs: Corrected divider color after default change

* MudForm: Add LabelAttribute to replace DisplayAttribute (MudBlazor#5329)

* 6.0.17-dev.1

* DataGrid: Fixed minor spelling mistake (MudBlazor#5333)

* Docs: MudDropZone fix repeated word

* Docs:  Fix spelling mistake in MudDrawer example

* Docs: Fix the error message for StringLengthAttribute in KanBan example

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.3.1 to 17.3.2 in /src (MudBlazor#5365)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.3.1 to 17.3.2.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Commits](microsoft/vstest@v17.3.1...v17.3.2)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump bunit from 1.9.8 to 1.10.14 in /src (MudBlazor#5366)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.9.8 to 1.10.14.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.9.8...v1.10.14)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Docs: Add page tab to dialog focus trap example (MudBlazor#5349)

* MudRadioButton: Fix content positioning (MudBlazor#5336, MudBlazor#5348)

Co-authored-by: Jonas B <jonasmitb@gmail.com>

* v6.0.16 master merge bugfix

* MudDataGrid: Added the case sensitivity when filtering string columns

* MudDataGrid: Added new hierarchy feature (MudBlazor#5273)

* MudTable: Wrap internal MudSelect in Standalone=false cascading value (MudBlazor#5378)

* Docs: fix incorrect component rendered for button elevation example (MudBlazor#5387)

* MudDataGrid, MudVirtualize: Add parameter OverscanCount (MudBlazor#5371)

* MudList: Nested Lists inherit Dense setting (MudBlazor#4861) (MudBlazor#5035)

* FormControls: Rename internal cascading parameter from Standalone to SubscribeToParentForm (MudBlazor#5422)

* MudTable: Ensure selection is updated when items are removed (MudBlazor#5455)

* MudDatePicker: Added support for custom classes to be applied to specific days (MudBlazor#4672)

Co-authored-by: Juri Capovilla <juricapovilla@live.it>

* net7: Use native mouse events (MudBlazor#5229)

* MudForm: Only set Validation if For is set (MudBlazor#5419)

MudForm: Only set Validation if For is not null

* Restore .gitignore change by 4fcb43d

* MudDataGrid: Check if property is writable before setting value. (MudBlazor#5428)

* Datagrid should check if property is writable before setting value.

* Add datagrid form edit unit test.

* Revert "Divider: Fix the color of divider component (MudBlazor#4197) (MudBlazor#5178)"

This reverts commit 9c2769f.

* Revert "Docs: Corrected divider color after default change"

This reverts commit 34e7e26.

* Update to 6.0.17

* Snackbar: can now display RenderFragments and custom components in addition to string messages. (MudBlazor#5310)

* MudNavlink: Enable protected access to some internals (MudBlazor#5224)

* Table: Add the option of triggering edits on button click instead of row click (MudBlazor#5467)

* Docs: Fix typo in Divider page (MudBlazor#5454)

* MudForm: Assign Validation to Form controls on subscribe (MudBlazor#5501)

* Docs: Improve wording within LayoutPage documentation. (MudBlazor#5476)

* Docs: Add workaround for google analytics interop error (MudBlazor#5513)

* Docs: Add workaround for google analytics interop error

* Increase version in docs.js script src

* Events:  Use native mouse events in net7 (MudBlazor#5517)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly.DevServer requirement (MudBlazor#5520)

Updates the requirements on [Microsoft.AspNetCore.Components.WebAssembly.DevServer](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.9...v6.0.10)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.DevServer
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly.Server requirement (MudBlazor#5521)

Updates the requirements on [Microsoft.AspNetCore.Components.WebAssembly.Server](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.9...v6.0.10)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.Server
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Update Microsoft.AspNetCore.Components requirement in /src (MudBlazor#5522)

Updates the requirements on [Microsoft.AspNetCore.Components](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.9...v6.0.10)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly requirement (MudBlazor#5524)

Updates the requirements on [Microsoft.AspNetCore.Components.WebAssembly](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.9...v6.0.10)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump bunit from 1.10.14 to 1.11.7 in /src (MudBlazor#5523)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.10.14 to 1.11.7.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.10.14...v1.11.7)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudTable: Fix table trim warnings (net7 linker) (MudBlazor#5519)

* Trimming: Additional annotations (MudBlazor#5537)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* Tests: Make tests net7 friendly (MudBlazor#5559)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* Build: Seperate EnumSwitch code to avoid BL0007 (MudBlazor#5561)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* MudDrawer: Remove event listeners (MudBlazor#5562)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* Build(deps): Update Microsoft.AspNetCore.Components.Web requirement (MudBlazor#5570)

Updates the requirements on [Microsoft.AspNetCore.Components.Web](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.9...v6.0.10)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.Web
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump FluentAssertions from 6.7.0 to 6.8.0 in /src (MudBlazor#5571)

Bumps [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 6.7.0 to 6.8.0.
- [Release notes](https://github.com/fluentassertions/fluentassertions/releases)
- [Changelog](https://github.com/fluentassertions/fluentassertions/blob/develop/AcceptApiChanges.ps1)
- [Commits](fluentassertions/fluentassertions@6.7.0...6.8.0)

---
updated-dependencies:
- dependency-name: FluentAssertions
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudCollapse: Remove Event Listeners (MudBlazor#5563)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* MudSwipeArea: Add Sensitivity and SwipeDelta (MudBlazor#5496)

* Add ILogger to MudComponentBase (MudBlazor#5549)

* Docs: Installation guide now specifies where to register Services (MudBlazor#5451)

* MudDataGrid: ExpandAllGroups (persist group expansions) (MudBlazor#5410)

* OverflowBehavior: Fix typo in enum (obsoleting misspelled entry) (MudBlazor#5485)

* MudDataGrid: Add onmousedown callback parameter on DataGrid row (MudBlazor#5383)

* Build(deps): Bump coverlet.msbuild from 3.1.2 to 3.2.0 in /src (MudBlazor#5623)

Bumps [coverlet.msbuild](https://github.com/coverlet-coverage/coverlet) from 3.1.2 to 3.2.0.
- [Release notes](https://github.com/coverlet-coverage/coverlet/releases)
- [Commits](https://github.com/coverlet-coverage/coverlet/commits/v3.2.0)

---
updated-dependencies:
- dependency-name: coverlet.msbuild
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump NUnit3TestAdapter from 4.2.1 to 4.3.0 in /src (MudBlazor#5624)

Bumps [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) from 4.2.1 to 4.3.0.
- [Release notes](https://github.com/nunit/nunit3-vs-adapter/releases)
- [Commits](nunit/nunit3-vs-adapter@V4.2.1...V4.3.0)

---
updated-dependencies:
- dependency-name: NUnit3TestAdapter
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* ScrollManager: Add ScrollIntoView (MudBlazor#5564)

* Build(deps): Bump ColorCode.HTML from 2.0.13 to 2.0.14 in /src (MudBlazor#5625)

Bumps [ColorCode.HTML](https://github.com/CommunityToolkit/ColorCode-Universal) from 2.0.13 to 2.0.14.
- [Release notes](https://github.com/CommunityToolkit/ColorCode-Universal/releases)
- [Commits](https://github.com/CommunityToolkit/ColorCode-Universal/commits/v2.0.14)

---
updated-dependencies:
- dependency-name: ColorCode.HTML
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudDataGrid: Fix HierarchyColumn behavior (MudBlazor#5534)

* MudCollapse: Supress render due to native event (MudBlazor#5639)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* Docs: MudRadioGroup: vertical align (MudBlazor#5597)

* New Component: MudFileUpload (MudBlazor#5488)

* Revert "MudDataGrid: Add onmousedown callback parameter on DataGrid row (MudBlazor#5383)"

This reverts commit 90b1076.

* MudCollapse: Better solution to non-rendering event (Add EventUtil) (MudBlazor#5661)


Co-authored-by: Meinrad Recheis <meinrad.recheis@gmail.com>

* Docs: Corrections to pointer events section (MudBlazor#5663)

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.3.2 to 17.4.0 in /src (MudBlazor#5679)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.3.2 to 17.4.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Commits](microsoft/vstest@v17.3.2...v17.4.0)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Picker: Improve test coverage and fix ColorPicker bug (MudBlazor#5680)

* Tests: Fix some missing awaits (MudBlazor#5684)

* Theming: Easier customization of dark mode (MudBlazor#5676)

* MudDataGrid: Add FormFieldChanged event (MudBlazor#5689)

* MudNavLink: Allow custom ActiveClass (MudBlazor#5619)

* Build: Use net6 for local build (MudBlazor#5690)

* Update to 6.0.18

* Snackbar: Testing a potential fix MudBlazor#5695

* Revert "Snackbar: Testing a potential fix MudBlazor#5695". We know now that it is a trimming issue

This reverts commit a22a487.

* Snackbar: Fix accidental API break by PR MudBlazor#5310 (MudBlazor#5701)

Snackbar: Fix API break MudBlazor#5696 by PR MudBlazor#5310

* Snackbar: Fix break due to trimming of SnackbarMessageType (MudBlazor#5711)

* v6.0.19-dev1

* Build: add net7 library (multi-targeting) (MudBlazor#5713)

* v6.0.19-dev2 (net7 support)

* Divider: Fix inconsistent thickness (MudBlazor#5490, MudBlazor#5491)

* Tests: Fix locale issue due to date literal (MudBlazor#5729)

* vv6.0.19-dev3 (net7 support)

* MudDataGrid: Add GroupClassFunc and GroupStyleFunc (MudBlazor#5560)

* MudDataGrid: Fix missing DataGrid reference in FilterDefinition (MudBlazor#5498)

* v6.1.0 (net7 support) (MudBlazor#5732)

* Build: Fix staging publish

* MudMenu: Fix MouseEventArgs on net7 on BSS (MudBlazor#5738)

* v6.1.1

* Build: Add nuget publish github action

* Build: Add manual nuget publish

* Build: Fix manual tag version

* Build: Fix syntax error in nuget publish

* Build: Fix Environment variable test

* v6.1.2 (MudBlazor#5751)

* Build: Dont publish nuget release

* Build(deps): Bump ReportGenerator from 5.1.10 to 5.1.11 in /src (MudBlazor#5743)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.10 to 5.1.11.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.10...v5.1.11)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump Blazored.LocalStorage from 4.2.0 to 4.3.0 in /src (MudBlazor#5746)

Bumps [Blazored.LocalStorage](https://github.com/Blazored/LocalStorage) from 4.2.0 to 4.3.0.
- [Release notes](https://github.com/Blazored/LocalStorage/releases)
- [Commits](Blazored/LocalStorage@v4.2.0...v4.3.0)

---
updated-dependencies:
- dependency-name: Blazored.LocalStorage
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build: Fix code coverage due to SDK 7.0.100 bug

* Changed dispose/event removal order from: (MudBlazor#5706)

* Docs: Update README to reflect support for .NET 7 (MudBlazor#5767)

* MudLink: Add OnClick parameter (MudBlazor#1518) (MudBlazor#5785)

* Charts: Make Legend Clickable (MudBlazor#5484)

* MudColorPicker: Fix MaxLength on HEX TextField for transparent colors (MudBlazor#5582)



Co-authored-by: David Griesser <dg@devigus.com>

* ScrollManager: Fix exceptions no JS environment (MudBlazor#5770)

* MudDialog:  Fix Dialog is null in IDialogReference (MudBlazor#5101)

* Build: Use simpler syntax for internals visibility (MudBlazor#5797)

* Update CONTRIBUTING.md (MudBlazor#5799)

* Build(deps): Bump FluentValidation from 11.2.2 to 11.3.0 in /src (MudBlazor#5803)

Bumps [FluentValidation](https://github.com/JeremySkinner/fluentvalidation) from 11.2.2 to 11.3.0.
- [Release notes](https://github.com/JeremySkinner/fluentvalidation/releases)
- [Changelog](https://github.com/FluentValidation/FluentValidation/blob/main/Changelog.txt)
- [Commits](FluentValidation/FluentValidation@11.2.2...11.3.0)

---
updated-dependencies:
- dependency-name: FluentValidation
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump ReportGenerator from 5.1.11 to 5.1.12 in /src (MudBlazor#5806)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.11 to 5.1.12.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.11...v5.1.12)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump NUnit3TestAdapter from 4.3.0 to 4.3.1 in /src (MudBlazor#5807)

Bumps [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) from 4.3.0 to 4.3.1.
- [Release notes](https://github.com/nunit/nunit3-vs-adapter/releases)
- [Commits](nunit/nunit3-vs-adapter@V4.3.0...V4.3.1)

---
updated-dependencies:
- dependency-name: NUnit3TestAdapter
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump bunit from 1.11.7 to 1.12.6 in /src (MudBlazor#5804)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.11.7 to 1.12.6.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.11.7...v1.12.6)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Tests: Fix test after bUnit update (MudBlazor#5808)

* Fix ResizeBasedService trim warning (MudBlazor#5809)

* Build: Fix static assets need 2 builds to publish (MudBlazor#5801)

* Build: Fix static assets need 2 builds to publish

* Build: deploy-nuget fixes

* Build: Update secrets token for slot swap

* Remove unused code in ElementReferenceExtensions (MudBlazor#5810)

* Revert "Build: Fix static assets need 2 builds to publish (MudBlazor#5801)" (MudBlazor#5817)

This reverts commit 98068aa.

* Build: Fix static assets need 2 builds to publish (MudBlazor#5818)(MudBlazor#5801) (MudBlazor#5818)

* MudCarousel: Fix swipe direction for next/previous in rtl (MudBlazor#5811)

* MudRadio: Change the default value of the ContentPlacement. (MudBlazor#5813)

* Docs: Update index statistics (MudBlazor#5835)

* MudTable: Fix inconsistent row border thickness (MudBlazor#5822, MudBlazor#5823)

* Table: Fix inconsistent border thickness

* Remove redundant (default) lines border-collapse: separate;

Co-authored-by: Dennis Mlinaric <dennism@acs-australia.com.au>

* Tests/Components: Remove unnecessary Console.WriteLine (MudBlazor#5836)

* TreeView: Add Public Select Method and Disable Text Selection When ExpandOnDoubleClick is true (MudBlazor#5856)

* MudTable: Fixed table grouping item selection issue (MudBlazor#5759) (MudBlazor#5760)

* Build(deps): Bump FluentValidation from 11.3.0 to 11.4.0 in /src (MudBlazor#5866)

Bumps [FluentValidation](https://github.com/JeremySkinner/fluentvalidation) from 11.3.0 to 11.4.0.
- [Release notes](https://github.com/JeremySkinner/fluentvalidation/releases)
- [Changelog](https://github.com/FluentValidation/FluentValidation/blob/main/Changelog.txt)
- [Commits](FluentValidation/FluentValidation@11.3.0...11.4.0)

---
updated-dependencies:
- dependency-name: FluentValidation
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* add a docstring in BunitTest

* Tests: Autocomplete loading finishes too quickly to test progress (MudBlazor#5872)

* Chip: Fix pointer cursor if href set (MudBlazor#5871)

* Chip: Fix pointer cursor if href set

* Classname property back to lambda

* MudBaseButton: Make OnClickHandler virtual (MudBlazor#5879)

MudBlazor#5878

* MudFileUpload: Maximum file count integrated as a parameter (MudBlazor#5861)

Co-authored-by: Florian <florian@inflex.at>

* Build: Automate release notes (MudBlazor#5881)

* Build: Update exclude labels for release notes

* FileUpload: Cleanup MaximumFileCount tests and update docs. (MudBlazor#5882)

* MudTooltip: Activation via Hover, Focus or Click (MudBlazor#4647)

* MudTimePicker: Fix TimePicker validation in MudForm (MudBlazor#5883) (MudBlazor#5884)

* TreeView: Fix closing arrow transition (MudBlazor#5858)

* Build: Update projects to net7 (MudBlazor#5873)

* fixed typo referenced in MudBlazor#5889 (MudBlazor#5893)

* Build: New workflows for release pipeline (MudBlazor#5899)

* Build: Remove old workflow files

* Build: Remove stray vscode settings file

* Build: Fix website-version inputs

* Build: Fix  deploy-mudblazor worklflow

* Build: Fix versioning parameter on release workflows

* Build: Fix assembly version in nuget

* Build: Fix snippets and API docs include

* Build: Add action for mudblazor HEAD

* Build(deps): Bump Moq from 4.18.2 to 4.18.3 in /src (MudBlazor#5909)

Bumps [Moq](https://github.com/moq/moq4) from 4.18.2 to 4.18.3.
- [Release notes](https://github.com/moq/moq4/releases)
- [Changelog](https://github.com/moq/moq4/blob/main/CHANGELOG.md)
- [Commits](devlooped/moq@v4.18.2...v4.18.3)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build: Add trymudblazor deploy on release

* Build: Fix deploy-trymudblazor action

* Build: Fix deploy-trymudblazor action

* Build: Fix deploy-trymudblazor action

* Build: Compile exclude needs `\` comparison

* Build: Update workflow badge

* Table: SelectedItem should fire regardless of EditTrigger setting (MudBlazor#5903)

* Popover : Check popoverContentNode null before use (MudBlazor#5897)

* Tests: Fix TimePicker validation test (MudBlazor#5924)

* Tests: Fix IDialog interface so it can be Moqed (MudBlazor#5925)

* Tests: Refactor to correct naming of TimePicker

* MudSnackbar: Fix overflowing, long message (MudBlazor#3945) (MudBlazor#5929)

* Docs: Add local development requirements (MudBlazor#5930)

* Build: Don't deploy sites for pre-release packages (MudBlazor#5931)

* MudDataGrid: Fixed the resizer handle staying visible (MudBlazor#5851)

* MudDialog: Fix not aligned Toolbar buttons on Dialog header (MudBlazor#5497) (MudBlazor#5725)

* MudDialog: Fix close button in RTL (MudBlazor#5951)

* MudDataGrid: Fix the FilterHeaderCell visible when the Column is hidden (MudBlazor#5777)

* Fix the filter header cell visible when the column is hidden

* Moved the Column.Hidden check so the cell is not rendered only when the column  is hidden

* Moved the null check in the first line

* Updated a test to ensure the filter row is rendered correctly even when a column is not filterable

* MudDataGrid: ServerData initialization fix (MudBlazor#5635)

* MudAlert: Fix CloseIcon color in Filled Variant (MudBlazor#5436) (MudBlazor#5449)

* Select and Autocomplete: Add ListClass (MudBlazor#5402)

* Add ListClass

* Basic Unit Test

* MudTreeViewItem: add CanExpand Property (MudBlazor#4093) (MudBlazor#4097)

* MudTreeViewItem: changed summary of canExpand property of MudTreeViewItem (MudBlazor#5953)

* MudProgress:  Fixed border radius for rounded linear progress bar (MudBlazor#5963)

* BreakpointService: IsMediaSize should will return true for Breakpoint.Always (MudBlazor#5898)

* MudAutoComplete: Don't write to console for errors (MudBlazor#5970)

* MudTable: Allow row-click without selecting checkbox when in multi-select mode (MudBlazor#5961)

* Docs: Fix InvalidOperationException in "Record Type Support" docs example (MudBlazor#5978)

* Build: Remove coverage workaround now SDK 7.0.1 is released

* Build: Update Package versions to 7.0.1

* Docs: Fix GitHub dark mode logo

* Build: Fix badge new shields io url

* Build: Fix build badge markdown

* Build: Add github log to build badge

* Make Blazor Error UI message more legible (MudBlazor#5996)

* Fix table CSS when subtales appear in the last row. (MudBlazor#5992)

* MudTable: Added OverscanCount as a parameter. (MudBlazor#5990)

* MudDataGrid: Fix CollapseAll not clearing internal variable (MudBlazor#5995)

* MudTable: Fixed checkbox state for MultiSelect and (Multi)Grouping (MudBlazor#5985)

* Build: Prioritise breaking change label match

* MudTable: Toggle multigrouping checkbox ocassionaly flickers (MudBlazor#6003)

* Dialog: Fix Unselectable Content Text (MudBlazor#5355)

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.4.0 to 17.4.1 in /src (MudBlazor#6011)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.4.0 to 17.4.1.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.4.0...v17.4.1)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump bunit from 1.12.6 to 1.13.5 in /src (MudBlazor#6015)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.12.6 to 1.13.5.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.12.6...v1.13.5)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump ReportGenerator from 5.1.12 to 5.1.13 in /src (MudBlazor#6014)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.12 to 5.1.13.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.12...v5.1.13)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Rename Cancelled to Canceled and forward for non-breaking (MudBlazor#4856)

* MudTable: Implement "All" option for MudTablePager. (MudBlazor#5994)

* Icons: Remove any <Title> tags on generation (MudBlazor#6023)

* Icons: Update material icons (MudBlazor#6034)

* MudTabs: Add MinimumTabWidth property (MudBlazor#6044)

* MudTabs: Added CustomMinimumTabWidth property

* Changed property to "MinimumTabWidth" and added default 160px, removed min-width class style and added permanent inline style.

* Removed all references to "Custom"

* Prevent BoundingClientRect trimming and throwing JsInteropException (MudBlazor#6053)

* MudFileUpload: Remove erroneous semi-colons (MudBlazor#6058)

* MudTabPanel: Fix possible System.NullReferenceException on Dispose (MudBlazor#6064)

* MudTable: Fix table KeyNotFoundException. (MudBlazor#6065)

* MudTabs: Fix TabPanel collections are not in sync (MudBlazor#6070)

* Build(deps): Bump Moq from 4.18.3 to 4.18.4 in /src (MudBlazor#6080)

Bumps [Moq](https://github.com/moq/moq4) from 4.18.3 to 4.18.4.
- [Release notes](https://github.com/moq/moq4/releases)
- [Changelog](https://github.com/moq/moq4/blob/main/CHANGELOG.md)
- [Commits](devlooped/moq@v4.18.3...v4.18.4)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudAutocomplete: Fix TextChanged event not sending the text (MudBlazor#6120)

* Docs: Remove redundant nullable usage of NavigationSection (MudBlazor#6098)

* MudTable: Fix 2nd level checkbox default indeterminate state (MudBlazor#6075)

* Docs: added note about Elevation and Outlined properties (MudBlazor#6071)

* Docs: Show how to use custom SVG icons

* Error box: Change background when circuit (connection) is lost. (MudBlazor#6115, MudBlazor#6116)

* MudDivider: Fix fullwidth behavior in flex containers (MudBlazor#5458, MudBlazor#5472)

* MudTooltip: Fix Style not forwarded to popover (MudBlazor#6045, MudBlazor#6051)

* MudDialog: Added Draggable as a DialogOption. (MudBlazor#6083)

* Revert "MudDialog: Added Draggable as a DialogOption. (MudBlazor#6083)" due to reported dragging issues.

This reverts commit 52134a5.

* Build(deps): Bump bunit from 1.13.5 to 1.14.4 in /src (MudBlazor#6156)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.13.5 to 1.14.4.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.13.5...v1.14.4)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump Microsoft.AspNetCore.Components.WebAssembly in /src (MudBlazor#6159)

Bumps [Microsoft.AspNetCore.Components.WebAssembly](https://github.com/dotnet/aspnetcore) from 7.0.1 to 7.0.2.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v7.0.1...v7.0.2)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump Microsoft.AspNetCore.Components.WebAssembly.DevServer (MudBlazor#6158)

Bumps [Microsoft.AspNetCore.Components.WebAssembly.DevServer](https://github.com/dotnet/aspnetcore) from 7.0.1 to 7.0.2.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v7.0.1...v7.0.2)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.DevServer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump Microsoft.AspNetCore.Components.WebAssembly.Server (MudBlazor#6157)

Bumps [Microsoft.AspNetCore.Components.WebAssembly.Server](https://github.com/dotnet/aspnetcore) from 7.0.1 to 7.0.2.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v7.0.1...v7.0.2)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.Server
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudTable: Add null check on server data items in FilteredItems (MudBlazor#6186)

* MudTable: Enable FluentValidation for TableRowValidator. (MudBlazor#6193)

* MudTabs: Fix incorrect ActivePanelIndex (MudBlazor#6100)

* Build: Exclude reverted PRs from release notes

* MudDateRangePicker: Fix DateRangePicker validation in MudForm (MudBlazor#6194) (MudBlazor#6195)

Fixes an issue where the `MudDateRangePicker` component would keep a
`MudForm` invalid unless its value was changed via the text input.

The `MudDateRangePicker` component is now considered `Touched` if its
value is changed via the picker itself.

Fixes: MudBlazor#6194

* MudInput: Add Accessibility Titles to Nested Icons (MudBlazor#5531)

* Build(deps): Bump ReportGenerator from 5.1.13 to 5.1.15 in /src (MudBlazor#6208)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.13 to 5.1.15.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.13...v5.1.15)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump FluentAssertions from 6.8.0 to 6.9.0 in /src (MudBlazor#6206)

Bumps [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 6.8.0 to 6.9.0.
- [Release notes](https://github.com/fluentassertions/fluentassertions/releases)
- [Changelog](https://github.com/fluentassertions/fluentassertions/blob/develop/AcceptApiChanges.ps1)
- [Commits](fluentassertions/fluentassertions@6.8.0...6.9.0)

---
updated-dependencies:
- dependency-name: FluentAssertions
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudOverlay: Fix Absolute property comment (MudBlazor#6225)

* merge bugfix

* v6.1.8-mblichowski-dev1.0.0 update

* v6.1.8-mblichowski-dev1.1.0 update

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Jonny Larsson <jonny@gardnet.nu>
Co-authored-by: Dennis Rahmen <mail@dennisrahmen.de>
Co-authored-by: Riley Nielsen <riley@nielsen.tech>
Co-authored-by: Meinrad Recheis <meinrad.recheis@gmail.com>
Co-authored-by: XDFUN <79282060+XDFUN@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jonas B <jonasmitb@gmail.com>
Co-authored-by: nick <nicoloarmando.deastis@gmail.com>
Co-authored-by: Riley Nielsen <rnielsen@srfconsulting.com>
Co-authored-by: Jon Hodgins <19355502+JonHodgins@users.noreply.github.com>
Co-authored-by: Quentin Metge <quentin.metge@hotmail.fr>
Co-authored-by: Julien Chevalier <25689385+Julien-Chevalier-PXL@users.noreply.github.com>
Co-authored-by: Keith <keith@keithfimreite.com>
Co-authored-by: kiske1 <juricapovilla@gmail.com>
Co-authored-by: Juri Capovilla <juricapovilla@live.it>
Co-authored-by: سجاد Arash <72276897+sajjadarashhh@users.noreply.github.com>
Co-authored-by: csombi <74978649+csombi@users.noreply.github.com>
Co-authored-by: Ben Stein <ben.s.stein@gmail.com>
Co-authored-by: Hugo Castro de Deco <hugodeco@sufficit.com.br>
Co-authored-by: vegguid <75315940+vegguid@users.noreply.github.com>
Co-authored-by: 95Conor <44531451+95Conor@users.noreply.github.com>
Co-authored-by: Jonas B <62108893+JonBunator@users.noreply.github.com>
Co-authored-by: Mike Surcouf <mike@surcouf.co.uk>
Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>
Co-authored-by: Mike Surcouf <mike@surcouf.je>
Co-authored-by: Mehmet Can Karagöz <78308169+mckaragoz@users.noreply.github.com>
Co-authored-by: Tyler Trahan <tyler@tylertrahan.com>
Co-authored-by: Javier Goday <jgoday@gmail.com>
Co-authored-by: Jason Gutierrez <jasong84@gmail.com>
Co-authored-by: Yannis <yannisdemacedo@gmail.com>
Co-authored-by: TDroogers <34547552+TDroogers@users.noreply.github.com>
Co-authored-by: Gary Chan <gary.chan@c0g1t8.com>
Co-authored-by: dennml <dennml@gmail.com>
Co-authored-by: Daniele Corsini <franklupog@gmail.com>
Co-authored-by: Jeffrey Jangli <shogun.net@outlook.com>
Co-authored-by: Adam Renaud <33334607+rena0157@users.noreply.github.com>
Co-authored-by: Pawel <57046415+BieleckiLtd@users.noreply.github.com>
Co-authored-by: Daniel <dgross@intronik.de>
Co-authored-by: DoobieAsDave <39911245+DoobieAsDave@users.noreply.github.com>
Co-authored-by: David Griesser <dg@devigus.com>
Co-authored-by: Artyom M <artem.melnikov@live.com>
Co-authored-by: Abduwaris Ghujamniyaz <997007106@qq.com>
Co-authored-by: Dennis Mlinaric <dennism@acs-australia.com.au>
Co-authored-by: Gopichandar Selvaraj <gopichandarbe@gmail.com>
Co-authored-by: Michel de Kok <info@micheldekok.nl>
Co-authored-by: Andrew Palmer <a@codelifter.net>
Co-authored-by: Florian Dengg <47749824+ummerland@users.noreply.github.com>
Co-authored-by: Florian <florian@inflex.at>
Co-authored-by: Jason Rebelo <igotinfected@gmail.com>
Co-authored-by: popandepo <74258784+popandepo@users.noreply.github.com>
Co-authored-by: Stuart Aitken <s.aitken88@gmail.com>
Co-authored-by: SinisterMaya <yan.gauthier05@gmail.com>
Co-authored-by: Massimo Giambona <m4ss1m0g@users.noreply.github.com>
Co-authored-by: Chris <58083980+creeve-qci@users.noreply.github.com>
Co-authored-by: David V <49674671+fondraco@users.noreply.github.com>
Co-authored-by: Lennart Kleymann <privat@lennart-kleymann.de>
Co-authored-by: Makhmutov Neil <makhmutov.nail@gmail.com>
Co-authored-by: pars-dev <109645063+pars-dev@users.noreply.github.com>
Co-authored-by: Suenodk <36229816+Suenodk@users.noreply.github.com>
Co-authored-by: snakex64 <39806655+snakex64@users.noreply.github.com>
Co-authored-by: Bevan Weiss <bevanweiss@users.noreply.github.com>
Co-authored-by: Qian <26250460+QianMoXi@users.noreply.github.com>
Co-authored-by: Hayden Ravenscroft <hayden.ravenscroft@hotmail.com>
Co-authored-by: Idan <61008695+idan-h@users.noreply.github.com>
Co-authored-by: WalterWillis <47991935+WalterWillis@users.noreply.github.com>
Co-authored-by: Martin Lantzsch <martin@linux-doku.de>
mblichowski added a commit to mblichowski/MudBlazor-extended that referenced this pull request Jan 29, 2023
* Autocomplete: Add progress indicator and cancellation token (MudBlazor#4868)


Co-authored-by: Artjom Zabelin <a.zabelin@europaket.de>
Co-authored-by: Benjamin Kappel <b.kappel90@outlook.de>

* Build(deps): Bump FluentValidation from 11.2.1 to 11.2.2 in /src (MudBlazor#5254)

Bumps [FluentValidation](https://github.com/JeremySkinner/fluentvalidation) from 11.2.1 to 11.2.2.
- [Release notes](https://github.com/JeremySkinner/fluentvalidation/releases)
- [Changelog](https://github.com/FluentValidation/FluentValidation/blob/main/Changelog.txt)
- [Commits](FluentValidation/FluentValidation@11.2.1...11.2.2)

---
updated-dependencies:
- dependency-name: FluentValidation
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudDrawerContainer: Call StateHasChanged after removing Drawer to ensure classes are updated (MudBlazor#4363) (MudBlazor#4650)

* MudTable: Preserve checked state when virtualized and MultiSelection="true" (MudBlazor#5245)

* Docs: Fix content security policy for different regions (MudBlazor#5267)

* MudHighlighter: Support multiple highligted texts (MudBlazor#5165)

* RTLProvider: RightToLeft cascading parameter should be named. (MudBlazor#5270)

* UnitTestViewer: Fix 'app' selector error

* Docs: Fix launch config for vscode

* Docs: Add BSS launch config for vscode

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly.DevServer requirement (MudBlazor#5300)

Updates the requirements on [Microsoft.AspNetCore.Components.WebAssembly.DevServer](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.8...v6.0.9)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.DevServer
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly.Server requirement (MudBlazor#5301)

Updates the requirements on [Microsoft.AspNetCore.Components.WebAssembly.Server](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.8...v6.0.9)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.Server
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly requirement (MudBlazor#5302)

Updates the requirements on [Microsoft.AspNetCore.Components.WebAssembly](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.8...v6.0.9)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Update Microsoft.AspNetCore.Components requirement in /src (MudBlazor#5303)

Updates the requirements on [Microsoft.AspNetCore.Components](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.8...v6.0.9)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Update Microsoft.AspNetCore.Components.Web requirement (MudBlazor#5304)

Updates the requirements on [Microsoft.AspNetCore.Components.Web](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.8...v6.0.9)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.Web
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudAutocomplete: Fix FullWidth (MudBlazor#5288)

* Autocomplete: Fix CSS issue (MudBlazor#5315)

* Update to 6.0.16

* Git: Exclude MacOS filesystem files (MudBlazor#5311)

* Docs: Corrected divider color after default change

* MudForm: Add LabelAttribute to replace DisplayAttribute (MudBlazor#5329)

* 6.0.17-dev.1

* DataGrid: Fixed minor spelling mistake (MudBlazor#5333)

* Docs: MudDropZone fix repeated word

* Docs:  Fix spelling mistake in MudDrawer example

* Docs: Fix the error message for StringLengthAttribute in KanBan example

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.3.1 to 17.3.2 in /src (MudBlazor#5365)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.3.1 to 17.3.2.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Commits](microsoft/vstest@v17.3.1...v17.3.2)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump bunit from 1.9.8 to 1.10.14 in /src (MudBlazor#5366)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.9.8 to 1.10.14.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.9.8...v1.10.14)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Docs: Add page tab to dialog focus trap example (MudBlazor#5349)

* MudRadioButton: Fix content positioning (MudBlazor#5336, MudBlazor#5348)

Co-authored-by: Jonas B <jonasmitb@gmail.com>

* MudDataGrid: Added the case sensitivity when filtering string columns

* MudDataGrid: Added new hierarchy feature (MudBlazor#5273)

* MudTable: Wrap internal MudSelect in Standalone=false cascading value (MudBlazor#5378)

* Docs: fix incorrect component rendered for button elevation example (MudBlazor#5387)

* MudDataGrid, MudVirtualize: Add parameter OverscanCount (MudBlazor#5371)

* MudList: Nested Lists inherit Dense setting (MudBlazor#4861) (MudBlazor#5035)

* FormControls: Rename internal cascading parameter from Standalone to SubscribeToParentForm (MudBlazor#5422)

* MudTable: Ensure selection is updated when items are removed (MudBlazor#5455)

* MudDatePicker: Added support for custom classes to be applied to specific days (MudBlazor#4672)

Co-authored-by: Juri Capovilla <juricapovilla@live.it>

* net7: Use native mouse events (MudBlazor#5229)

* MudForm: Only set Validation if For is set (MudBlazor#5419)

MudForm: Only set Validation if For is not null

* Restore .gitignore change by 4fcb43d

* MudDataGrid: Check if property is writable before setting value. (MudBlazor#5428)

* Datagrid should check if property is writable before setting value.

* Add datagrid form edit unit test.

* Revert "Divider: Fix the color of divider component (MudBlazor#4197) (MudBlazor#5178)"

This reverts commit 9c2769f.

* Revert "Docs: Corrected divider color after default change"

This reverts commit 34e7e26.

* Update to 6.0.17

* Snackbar: can now display RenderFragments and custom components in addition to string messages. (MudBlazor#5310)

* MudNavlink: Enable protected access to some internals (MudBlazor#5224)

* Table: Add the option of triggering edits on button click instead of row click (MudBlazor#5467)

* Docs: Fix typo in Divider page (MudBlazor#5454)

* MudForm: Assign Validation to Form controls on subscribe (MudBlazor#5501)

* Docs: Improve wording within LayoutPage documentation. (MudBlazor#5476)

* Docs: Add workaround for google analytics interop error (MudBlazor#5513)

* Docs: Add workaround for google analytics interop error

* Increase version in docs.js script src

* Events:  Use native mouse events in net7 (MudBlazor#5517)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly.DevServer requirement (MudBlazor#5520)

Updates the requirements on [Microsoft.AspNetCore.Components.WebAssembly.DevServer](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.9...v6.0.10)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.DevServer
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly.Server requirement (MudBlazor#5521)

Updates the requirements on [Microsoft.AspNetCore.Components.WebAssembly.Server](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.9...v6.0.10)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.Server
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Update Microsoft.AspNetCore.Components requirement in /src (MudBlazor#5522)

Updates the requirements on [Microsoft.AspNetCore.Components](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.9...v6.0.10)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly requirement (MudBlazor#5524)

Updates the requirements on [Microsoft.AspNetCore.Components.WebAssembly](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.9...v6.0.10)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump bunit from 1.10.14 to 1.11.7 in /src (MudBlazor#5523)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.10.14 to 1.11.7.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.10.14...v1.11.7)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudTable: Fix table trim warnings (net7 linker) (MudBlazor#5519)

* Trimming: Additional annotations (MudBlazor#5537)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* Tests: Make tests net7 friendly (MudBlazor#5559)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* Build: Seperate EnumSwitch code to avoid BL0007 (MudBlazor#5561)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* MudDrawer: Remove event listeners (MudBlazor#5562)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* Build(deps): Update Microsoft.AspNetCore.Components.Web requirement (MudBlazor#5570)

Updates the requirements on [Microsoft.AspNetCore.Components.Web](https://github.com/dotnet/aspnetcore) to permit the latest version.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.9...v6.0.10)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.Web
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump FluentAssertions from 6.7.0 to 6.8.0 in /src (MudBlazor#5571)

Bumps [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 6.7.0 to 6.8.0.
- [Release notes](https://github.com/fluentassertions/fluentassertions/releases)
- [Changelog](https://github.com/fluentassertions/fluentassertions/blob/develop/AcceptApiChanges.ps1)
- [Commits](fluentassertions/fluentassertions@6.7.0...6.8.0)

---
updated-dependencies:
- dependency-name: FluentAssertions
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudCollapse: Remove Event Listeners (MudBlazor#5563)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* MudSwipeArea: Add Sensitivity and SwipeDelta (MudBlazor#5496)

* Add ILogger to MudComponentBase (MudBlazor#5549)

* Docs: Installation guide now specifies where to register Services (MudBlazor#5451)

* MudDataGrid: ExpandAllGroups (persist group expansions) (MudBlazor#5410)

* OverflowBehavior: Fix typo in enum (obsoleting misspelled entry) (MudBlazor#5485)

* MudDataGrid: Add onmousedown callback parameter on DataGrid row (MudBlazor#5383)

* Build(deps): Bump coverlet.msbuild from 3.1.2 to 3.2.0 in /src (MudBlazor#5623)

Bumps [coverlet.msbuild](https://github.com/coverlet-coverage/coverlet) from 3.1.2 to 3.2.0.
- [Release notes](https://github.com/coverlet-coverage/coverlet/releases)
- [Commits](https://github.com/coverlet-coverage/coverlet/commits/v3.2.0)

---
updated-dependencies:
- dependency-name: coverlet.msbuild
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump NUnit3TestAdapter from 4.2.1 to 4.3.0 in /src (MudBlazor#5624)

Bumps [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) from 4.2.1 to 4.3.0.
- [Release notes](https://github.com/nunit/nunit3-vs-adapter/releases)
- [Commits](nunit/nunit3-vs-adapter@V4.2.1...V4.3.0)

---
updated-dependencies:
- dependency-name: NUnit3TestAdapter
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* ScrollManager: Add ScrollIntoView (MudBlazor#5564)

* Build(deps): Bump ColorCode.HTML from 2.0.13 to 2.0.14 in /src (MudBlazor#5625)

Bumps [ColorCode.HTML](https://github.com/CommunityToolkit/ColorCode-Universal) from 2.0.13 to 2.0.14.
- [Release notes](https://github.com/CommunityToolkit/ColorCode-Universal/releases)
- [Commits](https://github.com/CommunityToolkit/ColorCode-Universal/commits/v2.0.14)

---
updated-dependencies:
- dependency-name: ColorCode.HTML
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudDataGrid: Fix HierarchyColumn behavior (MudBlazor#5534)

* MudCollapse: Supress render due to native event (MudBlazor#5639)

Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>

* Docs: MudRadioGroup: vertical align (MudBlazor#5597)

* New Component: MudFileUpload (MudBlazor#5488)

* Revert "MudDataGrid: Add onmousedown callback parameter on DataGrid row (MudBlazor#5383)"

This reverts commit 90b1076.

* MudCollapse: Better solution to non-rendering event (Add EventUtil) (MudBlazor#5661)


Co-authored-by: Meinrad Recheis <meinrad.recheis@gmail.com>

* Docs: Corrections to pointer events section (MudBlazor#5663)

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.3.2 to 17.4.0 in /src (MudBlazor#5679)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.3.2 to 17.4.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Commits](microsoft/vstest@v17.3.2...v17.4.0)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Picker: Improve test coverage and fix ColorPicker bug (MudBlazor#5680)

* Tests: Fix some missing awaits (MudBlazor#5684)

* Theming: Easier customization of dark mode (MudBlazor#5676)

* MudDataGrid: Add FormFieldChanged event (MudBlazor#5689)

* MudNavLink: Allow custom ActiveClass (MudBlazor#5619)

* Build: Use net6 for local build (MudBlazor#5690)

* Update to 6.0.18

* Snackbar: Testing a potential fix MudBlazor#5695

* Revert "Snackbar: Testing a potential fix MudBlazor#5695". We know now that it is a trimming issue

This reverts commit a22a487.

* Snackbar: Fix accidental API break by PR MudBlazor#5310 (MudBlazor#5701)

Snackbar: Fix API break MudBlazor#5696 by PR MudBlazor#5310

* Snackbar: Fix break due to trimming of SnackbarMessageType (MudBlazor#5711)

* v6.0.19-dev1

* Build: add net7 library (multi-targeting) (MudBlazor#5713)

* v6.0.19-dev2 (net7 support)

* Divider: Fix inconsistent thickness (MudBlazor#5490, MudBlazor#5491)

* Tests: Fix locale issue due to date literal (MudBlazor#5729)

* vv6.0.19-dev3 (net7 support)

* MudDataGrid: Add GroupClassFunc and GroupStyleFunc (MudBlazor#5560)

* MudDataGrid: Fix missing DataGrid reference in FilterDefinition (MudBlazor#5498)

* v6.1.0 (net7 support) (MudBlazor#5732)

* Build: Fix staging publish

* MudMenu: Fix MouseEventArgs on net7 on BSS (MudBlazor#5738)

* v6.1.1

* Build: Add nuget publish github action

* Build: Add manual nuget publish

* Build: Fix manual tag version

* Build: Fix syntax error in nuget publish

* Build: Fix Environment variable test

* v6.1.2 (MudBlazor#5751)

* Build: Dont publish nuget release

* Build(deps): Bump ReportGenerator from 5.1.10 to 5.1.11 in /src (MudBlazor#5743)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.10 to 5.1.11.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.10...v5.1.11)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump Blazored.LocalStorage from 4.2.0 to 4.3.0 in /src (MudBlazor#5746)

Bumps [Blazored.LocalStorage](https://github.com/Blazored/LocalStorage) from 4.2.0 to 4.3.0.
- [Release notes](https://github.com/Blazored/LocalStorage/releases)
- [Commits](Blazored/LocalStorage@v4.2.0...v4.3.0)

---
updated-dependencies:
- dependency-name: Blazored.LocalStorage
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build: Fix code coverage due to SDK 7.0.100 bug

* Changed dispose/event removal order from: (MudBlazor#5706)

* Docs: Update README to reflect support for .NET 7 (MudBlazor#5767)

* MudLink: Add OnClick parameter (MudBlazor#1518) (MudBlazor#5785)

* Charts: Make Legend Clickable (MudBlazor#5484)

* MudColorPicker: Fix MaxLength on HEX TextField for transparent colors (MudBlazor#5582)



Co-authored-by: David Griesser <dg@devigus.com>

* ScrollManager: Fix exceptions no JS environment (MudBlazor#5770)

* MudDialog:  Fix Dialog is null in IDialogReference (MudBlazor#5101)

* Build: Use simpler syntax for internals visibility (MudBlazor#5797)

* Update CONTRIBUTING.md (MudBlazor#5799)

* Build(deps): Bump FluentValidation from 11.2.2 to 11.3.0 in /src (MudBlazor#5803)

Bumps [FluentValidation](https://github.com/JeremySkinner/fluentvalidation) from 11.2.2 to 11.3.0.
- [Release notes](https://github.com/JeremySkinner/fluentvalidation/releases)
- [Changelog](https://github.com/FluentValidation/FluentValidation/blob/main/Changelog.txt)
- [Commits](FluentValidation/FluentValidation@11.2.2...11.3.0)

---
updated-dependencies:
- dependency-name: FluentValidation
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump ReportGenerator from 5.1.11 to 5.1.12 in /src (MudBlazor#5806)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.11 to 5.1.12.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.11...v5.1.12)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump NUnit3TestAdapter from 4.3.0 to 4.3.1 in /src (MudBlazor#5807)

Bumps [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) from 4.3.0 to 4.3.1.
- [Release notes](https://github.com/nunit/nunit3-vs-adapter/releases)
- [Commits](nunit/nunit3-vs-adapter@V4.3.0...V4.3.1)

---
updated-dependencies:
- dependency-name: NUnit3TestAdapter
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump bunit from 1.11.7 to 1.12.6 in /src (MudBlazor#5804)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.11.7 to 1.12.6.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.11.7...v1.12.6)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Tests: Fix test after bUnit update (MudBlazor#5808)

* Fix ResizeBasedService trim warning (MudBlazor#5809)

* Build: Fix static assets need 2 builds to publish (MudBlazor#5801)

* Build: Fix static assets need 2 builds to publish

* Build: deploy-nuget fixes

* Build: Update secrets token for slot swap

* Remove unused code in ElementReferenceExtensions (MudBlazor#5810)

* Revert "Build: Fix static assets need 2 builds to publish (MudBlazor#5801)" (MudBlazor#5817)

This reverts commit 98068aa.

* Build: Fix static assets need 2 builds to publish (MudBlazor#5818)(MudBlazor#5801) (MudBlazor#5818)

* MudCarousel: Fix swipe direction for next/previous in rtl (MudBlazor#5811)

* MudRadio: Change the default value of the ContentPlacement. (MudBlazor#5813)

* Docs: Update index statistics (MudBlazor#5835)

* MudTable: Fix inconsistent row border thickness (MudBlazor#5822, MudBlazor#5823)

* Table: Fix inconsistent border thickness

* Remove redundant (default) lines border-collapse: separate;

Co-authored-by: Dennis Mlinaric <dennism@acs-australia.com.au>

* Tests/Components: Remove unnecessary Console.WriteLine (MudBlazor#5836)

* TreeView: Add Public Select Method and Disable Text Selection When ExpandOnDoubleClick is true (MudBlazor#5856)

* MudTable: Fixed table grouping item selection issue (MudBlazor#5759) (MudBlazor#5760)

* Build(deps): Bump FluentValidation from 11.3.0 to 11.4.0 in /src (MudBlazor#5866)

Bumps [FluentValidation](https://github.com/JeremySkinner/fluentvalidation) from 11.3.0 to 11.4.0.
- [Release notes](https://github.com/JeremySkinner/fluentvalidation/releases)
- [Changelog](https://github.com/FluentValidation/FluentValidation/blob/main/Changelog.txt)
- [Commits](FluentValidation/FluentValidation@11.3.0...11.4.0)

---
updated-dependencies:
- dependency-name: FluentValidation
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* add a docstring in BunitTest

* Tests: Autocomplete loading finishes too quickly to test progress (MudBlazor#5872)

* Chip: Fix pointer cursor if href set (MudBlazor#5871)

* Chip: Fix pointer cursor if href set

* Classname property back to lambda

* MudBaseButton: Make OnClickHandler virtual (MudBlazor#5879)

MudBlazor#5878

* MudFileUpload: Maximum file count integrated as a parameter (MudBlazor#5861)

Co-authored-by: Florian <florian@inflex.at>

* Build: Automate release notes (MudBlazor#5881)

* Build: Update exclude labels for release notes

* FileUpload: Cleanup MaximumFileCount tests and update docs. (MudBlazor#5882)

* MudTooltip: Activation via Hover, Focus or Click (MudBlazor#4647)

* MudTimePicker: Fix TimePicker validation in MudForm (MudBlazor#5883) (MudBlazor#5884)

* TreeView: Fix closing arrow transition (MudBlazor#5858)

* Build: Update projects to net7 (MudBlazor#5873)

* fixed typo referenced in MudBlazor#5889 (MudBlazor#5893)

* Build: New workflows for release pipeline (MudBlazor#5899)

* Build: Remove old workflow files

* Build: Remove stray vscode settings file

* Build: Fix website-version inputs

* Build: Fix  deploy-mudblazor worklflow

* Build: Fix versioning parameter on release workflows

* Build: Fix assembly version in nuget

* Build: Fix snippets and API docs include

* Build: Add action for mudblazor HEAD

* Build(deps): Bump Moq from 4.18.2 to 4.18.3 in /src (MudBlazor#5909)

Bumps [Moq](https://github.com/moq/moq4) from 4.18.2 to 4.18.3.
- [Release notes](https://github.com/moq/moq4/releases)
- [Changelog](https://github.com/moq/moq4/blob/main/CHANGELOG.md)
- [Commits](devlooped/moq@v4.18.2...v4.18.3)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build: Add trymudblazor deploy on release

* Build: Fix deploy-trymudblazor action

* Build: Fix deploy-trymudblazor action

* Build: Fix deploy-trymudblazor action

* Build: Compile exclude needs `\` comparison

* Build: Update workflow badge

* Table: SelectedItem should fire regardless of EditTrigger setting (MudBlazor#5903)

* Popover : Check popoverContentNode null before use (MudBlazor#5897)

* Tests: Fix TimePicker validation test (MudBlazor#5924)

* Tests: Fix IDialog interface so it can be Moqed (MudBlazor#5925)

* Tests: Refactor to correct naming of TimePicker

* MudSnackbar: Fix overflowing, long message (MudBlazor#3945) (MudBlazor#5929)

* Docs: Add local development requirements (MudBlazor#5930)

* Build: Don't deploy sites for pre-release packages (MudBlazor#5931)

* MudDataGrid: Fixed the resizer handle staying visible (MudBlazor#5851)

* MudDialog: Fix not aligned Toolbar buttons on Dialog header (MudBlazor#5497) (MudBlazor#5725)

* MudDialog: Fix close button in RTL (MudBlazor#5951)

* MudDataGrid: Fix the FilterHeaderCell visible when the Column is hidden (MudBlazor#5777)

* Fix the filter header cell visible when the column is hidden

* Moved the Column.Hidden check so the cell is not rendered only when the column  is hidden

* Moved the null check in the first line

* Updated a test to ensure the filter row is rendered correctly even when a column is not filterable

* MudDataGrid: ServerData initialization fix (MudBlazor#5635)

* MudAlert: Fix CloseIcon color in Filled Variant (MudBlazor#5436) (MudBlazor#5449)

* Select and Autocomplete: Add ListClass (MudBlazor#5402)

* Add ListClass

* Basic Unit Test

* MudTreeViewItem: add CanExpand Property (MudBlazor#4093) (MudBlazor#4097)

* MudTreeViewItem: changed summary of canExpand property of MudTreeViewItem (MudBlazor#5953)

* MudProgress:  Fixed border radius for rounded linear progress bar (MudBlazor#5963)

* BreakpointService: IsMediaSize should will return true for Breakpoint.Always (MudBlazor#5898)

* MudAutoComplete: Don't write to console for errors (MudBlazor#5970)

* MudTable: Allow row-click without selecting checkbox when in multi-select mode (MudBlazor#5961)

* Docs: Fix InvalidOperationException in "Record Type Support" docs example (MudBlazor#5978)

* Build: Remove coverage workaround now SDK 7.0.1 is released

* Build: Update Package versions to 7.0.1

* Docs: Fix GitHub dark mode logo

* Build: Fix badge new shields io url

* Build: Fix build badge markdown

* Build: Add github log to build badge

* Make Blazor Error UI message more legible (MudBlazor#5996)

* Fix table CSS when subtales appear in the last row. (MudBlazor#5992)

* MudTable: Added OverscanCount as a parameter. (MudBlazor#5990)

* MudDataGrid: Fix CollapseAll not clearing internal variable (MudBlazor#5995)

* MudTable: Fixed checkbox state for MultiSelect and (Multi)Grouping (MudBlazor#5985)

* Build: Prioritise breaking change label match

* MudTable: Toggle multigrouping checkbox ocassionaly flickers (MudBlazor#6003)

* Dialog: Fix Unselectable Content Text (MudBlazor#5355)

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.4.0 to 17.4.1 in /src (MudBlazor#6011)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.4.0 to 17.4.1.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.4.0...v17.4.1)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump bunit from 1.12.6 to 1.13.5 in /src (MudBlazor#6015)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.12.6 to 1.13.5.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.12.6...v1.13.5)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump ReportGenerator from 5.1.12 to 5.1.13 in /src (MudBlazor#6014)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.12 to 5.1.13.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.12...v5.1.13)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Rename Cancelled to Canceled and forward for non-breaking (MudBlazor#4856)

* MudTable: Implement "All" option for MudTablePager. (MudBlazor#5994)

* Icons: Remove any <Title> tags on generation (MudBlazor#6023)

* Icons: Update material icons (MudBlazor#6034)

* MudTabs: Add MinimumTabWidth property (MudBlazor#6044)

* MudTabs: Added CustomMinimumTabWidth property

* Changed property to "MinimumTabWidth" and added default 160px, removed min-width class style and added permanent inline style.

* Removed all references to "Custom"

* Prevent BoundingClientRect trimming and throwing JsInteropException (MudBlazor#6053)

* MudFileUpload: Remove erroneous semi-colons (MudBlazor#6058)

* MudTabPanel: Fix possible System.NullReferenceException on Dispose (MudBlazor#6064)

* MudTable: Fix table KeyNotFoundException. (MudBlazor#6065)

* MudTabs: Fix TabPanel collections are not in sync (MudBlazor#6070)

* Build(deps): Bump Moq from 4.18.3 to 4.18.4 in /src (MudBlazor#6080)

Bumps [Moq](https://github.com/moq/moq4) from 4.18.3 to 4.18.4.
- [Release notes](https://github.com/moq/moq4/releases)
- [Changelog](https://github.com/moq/moq4/blob/main/CHANGELOG.md)
- [Commits](devlooped/moq@v4.18.3...v4.18.4)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudAutocomplete: Fix TextChanged event not sending the text (MudBlazor#6120)

* Docs: Remove redundant nullable usage of NavigationSection (MudBlazor#6098)

* MudTable: Fix 2nd level checkbox default indeterminate state (MudBlazor#6075)

* Docs: added note about Elevation and Outlined properties (MudBlazor#6071)

* Docs: Show how to use custom SVG icons

* Error box: Change background when circuit (connection) is lost. (MudBlazor#6115, MudBlazor#6116)

* MudDivider: Fix fullwidth behavior in flex containers (MudBlazor#5458, MudBlazor#5472)

* MudTooltip: Fix Style not forwarded to popover (MudBlazor#6045, MudBlazor#6051)

* MudDialog: Added Draggable as a DialogOption. (MudBlazor#6083)

* Revert "MudDialog: Added Draggable as a DialogOption. (MudBlazor#6083)" due to reported dragging issues.

This reverts commit 52134a5.

* Build(deps): Bump bunit from 1.13.5 to 1.14.4 in /src (MudBlazor#6156)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.13.5 to 1.14.4.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.13.5...v1.14.4)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump Microsoft.AspNetCore.Components.WebAssembly in /src (MudBlazor#6159)

Bumps [Microsoft.AspNetCore.Components.WebAssembly](https://github.com/dotnet/aspnetcore) from 7.0.1 to 7.0.2.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v7.0.1...v7.0.2)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump Microsoft.AspNetCore.Components.WebAssembly.DevServer (MudBlazor#6158)

Bumps [Microsoft.AspNetCore.Components.WebAssembly.DevServer](https://github.com/dotnet/aspnetcore) from 7.0.1 to 7.0.2.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v7.0.1...v7.0.2)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.DevServer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump Microsoft.AspNetCore.Components.WebAssembly.Server (MudBlazor#6157)

Bumps [Microsoft.AspNetCore.Components.WebAssembly.Server](https://github.com/dotnet/aspnetcore) from 7.0.1 to 7.0.2.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v7.0.1...v7.0.2)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.Server
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudTable: Add null check on server data items in FilteredItems (MudBlazor#6186)

* MudTable: Enable FluentValidation for TableRowValidator. (MudBlazor#6193)

* MudTabs: Fix incorrect ActivePanelIndex (MudBlazor#6100)

* Build: Exclude reverted PRs from release notes

* MudDateRangePicker: Fix DateRangePicker validation in MudForm (MudBlazor#6194) (MudBlazor#6195)

Fixes an issue where the `MudDateRangePicker` component would keep a
`MudForm` invalid unless its value was changed via the text input.

The `MudDateRangePicker` component is now considered `Touched` if its
value is changed via the picker itself.

Fixes: MudBlazor#6194

* MudInput: Add Accessibility Titles to Nested Icons (MudBlazor#5531)

* Build(deps): Bump ReportGenerator from 5.1.13 to 5.1.15 in /src (MudBlazor#6208)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.13 to 5.1.15.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.13...v5.1.15)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump FluentAssertions from 6.8.0 to 6.9.0 in /src (MudBlazor#6206)

Bumps [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 6.8.0 to 6.9.0.
- [Release notes](https://github.com/fluentassertions/fluentassertions/releases)
- [Changelog](https://github.com/fluentassertions/fluentassertions/blob/develop/AcceptApiChanges.ps1)
- [Commits](fluentassertions/fluentassertions@6.8.0...6.9.0)

---
updated-dependencies:
- dependency-name: FluentAssertions
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudOverlay: Fix Absolute property comment (MudBlazor#6225)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: ArtworkAD <ArtjomZabelin@gmail.com>
Co-authored-by: Artjom Zabelin <a.zabelin@europaket.de>
Co-authored-by: Benjamin Kappel <b.kappel90@outlook.de>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dan Heron <51314385+danheron@users.noreply.github.com>
Co-authored-by: Javier Goday <jgoday@gmail.com>
Co-authored-by: Mike Surcouf <mike@surcouf.co.uk>
Co-authored-by: Enderlook <enderlook@gmail.com>
Co-authored-by: Riley Nielsen <riley@nielsen.tech>
Co-authored-by: Mike Surcouf <mikes@surcouf.co.uk>
Co-authored-by: Jonny Larsson <jonny@gardnet.nu>
Co-authored-by: Dennis Rahmen <mail@dennisrahmen.de>
Co-authored-by: Meinrad Recheis <meinrad.recheis@gmail.com>
Co-authored-by: XDFUN <79282060+XDFUN@users.noreply.github.com>
Co-authored-by: Jonas B <jonasmitb@gmail.com>
Co-authored-by: nick <nicoloarmando.deastis@gmail.com>
Co-authored-by: Riley Nielsen <rnielsen@srfconsulting.com>
Co-authored-by: Jon Hodgins <19355502+JonHodgins@users.noreply.github.com>
Co-authored-by: Quentin Metge <quentin.metge@hotmail.fr>
Co-authored-by: Julien Chevalier <25689385+Julien-Chevalier-PXL@users.noreply.github.com>
Co-authored-by: kiske1 <juricapovilla@gmail.com>
Co-authored-by: Juri Capovilla <juricapovilla@live.it>
Co-authored-by: سجاد Arash <72276897+sajjadarashhh@users.noreply.github.com>
Co-authored-by: csombi <74978649+csombi@users.noreply.github.com>
Co-authored-by: Ben Stein <ben.s.stein@gmail.com>
Co-authored-by: Hugo Castro de Deco <hugodeco@sufficit.com.br>
Co-authored-by: vegguid <75315940+vegguid@users.noreply.github.com>
Co-authored-by: 95Conor <44531451+95Conor@users.noreply.github.com>
Co-authored-by: Jonas B <62108893+JonBunator@users.noreply.github.com>
Co-authored-by: Mike Surcouf <mike@surcouf.je>
Co-authored-by: Mehmet Can Karagöz <78308169+mckaragoz@users.noreply.github.com>
Co-authored-by: Tyler Trahan <tyler@tylertrahan.com>
Co-authored-by: Jason Gutierrez <jasong84@gmail.com>
Co-authored-by: Yannis <yannisdemacedo@gmail.com>
Co-authored-by: TDroogers <34547552+TDroogers@users.noreply.github.com>
Co-authored-by: Gary Chan <gary.chan@c0g1t8.com>
Co-authored-by: dennml <dennml@gmail.com>
Co-authored-by: Daniele Corsini <franklupog@gmail.com>
Co-authored-by: Jeffrey Jangli <shogun.net@outlook.com>
Co-authored-by: Adam Renaud <33334607+rena0157@users.noreply.github.com>
Co-authored-by: Pawel <57046415+BieleckiLtd@users.noreply.github.com>
Co-authored-by: Daniel <dgross@intronik.de>
Co-authored-by: DoobieAsDave <39911245+DoobieAsDave@users.noreply.github.com>
Co-authored-by: David Griesser <dg@devigus.com>
Co-authored-by: Artyom M <artem.melnikov@live.com>
Co-authored-by: Abduwaris Ghujamniyaz <997007106@qq.com>
Co-authored-by: Dennis Mlinaric <dennism@acs-australia.com.au>
Co-authored-by: Gopichandar Selvaraj <gopichandarbe@gmail.com>
Co-authored-by: Michel de Kok <info@micheldekok.nl>
Co-authored-by: Andrew Palmer <a@codelifter.net>
Co-authored-by: Florian Dengg <47749824+ummerland@users.noreply.github.com>
Co-authored-by: Florian <florian@inflex.at>
Co-authored-by: Jason Rebelo <igotinfected@gmail.com>
Co-authored-by: popandepo <74258784+popandepo@users.noreply.github.com>
Co-authored-by: Stuart Aitken <s.aitken88@gmail.com>
Co-authored-by: SinisterMaya <yan.gauthier05@gmail.com>
Co-authored-by: Massimo Giambona <m4ss1m0g@users.noreply.github.com>
Co-authored-by: Chris <58083980+creeve-qci@users.noreply.github.com>
Co-authored-by: David V <49674671+fondraco@users.noreply.github.com>
Co-authored-by: Lennart Kleymann <privat@lennart-kleymann.de>
Co-authored-by: Makhmutov Neil <makhmutov.nail@gmail.com>
Co-authored-by: pars-dev <109645063+pars-dev@users.noreply.github.com>
Co-authored-by: Suenodk <36229816+Suenodk@users.noreply.github.com>
Co-authored-by: snakex64 <39806655+snakex64@users.noreply.github.com>
Co-authored-by: Bevan Weiss <bevanweiss@users.noreply.github.com>
Co-authored-by: Qian <26250460+QianMoXi@users.noreply.github.com>
Co-authored-by: Hayden Ravenscroft <hayden.ravenscroft@hotmail.com>
Co-authored-by: Idan <61008695+idan-h@users.noreply.github.com>
Co-authored-by: WalterWillis <47991935+WalterWillis@users.noreply.github.com>
Co-authored-by: Martin Lantzsch <martin@linux-doku.de>
3dots pushed a commit to 3dots/MudBlazor that referenced this pull request Mar 23, 2023
mblichowski added a commit to mblichowski/MudBlazor-extended that referenced this pull request Mar 23, 2023
* Docs: MudRadioGroup: vertical align (MudBlazor#5597)

* New Component: MudFileUpload (MudBlazor#5488)

* Revert "MudDataGrid: Add onmousedown callback parameter on DataGrid row (MudBlazor#5383)"

This reverts commit 90b1076.

* MudCollapse: Better solution to non-rendering event (Add EventUtil) (MudBlazor#5661)


Co-authored-by: Meinrad Recheis <meinrad.recheis@gmail.com>

* Docs: Corrections to pointer events section (MudBlazor#5663)

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.3.2 to 17.4.0 in /src (MudBlazor#5679)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.3.2 to 17.4.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Commits](microsoft/vstest@v17.3.2...v17.4.0)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Picker: Improve test coverage and fix ColorPicker bug (MudBlazor#5680)

* Tests: Fix some missing awaits (MudBlazor#5684)

* Theming: Easier customization of dark mode (MudBlazor#5676)

* MudDataGrid: Add FormFieldChanged event (MudBlazor#5689)

* MudNavLink: Allow custom ActiveClass (MudBlazor#5619)

* Build: Use net6 for local build (MudBlazor#5690)

* Update to 6.0.18

* Snackbar: Testing a potential fix MudBlazor#5695

* Revert "Snackbar: Testing a potential fix MudBlazor#5695". We know now that it is a trimming issue

This reverts commit a22a487.

* Snackbar: Fix accidental API break by PR MudBlazor#5310 (MudBlazor#5701)

Snackbar: Fix API break MudBlazor#5696 by PR MudBlazor#5310

* Snackbar: Fix break due to trimming of SnackbarMessageType (MudBlazor#5711)

* v6.0.19-dev1

* Build: add net7 library (multi-targeting) (MudBlazor#5713)

* v6.0.19-dev2 (net7 support)

* Divider: Fix inconsistent thickness (MudBlazor#5490, MudBlazor#5491)

* Tests: Fix locale issue due to date literal (MudBlazor#5729)

* vv6.0.19-dev3 (net7 support)

* MudDataGrid: Add GroupClassFunc and GroupStyleFunc (MudBlazor#5560)

* MudDataGrid: Fix missing DataGrid reference in FilterDefinition (MudBlazor#5498)

* v6.1.0 (net7 support) (MudBlazor#5732)

* Build: Fix staging publish

* MudMenu: Fix MouseEventArgs on net7 on BSS (MudBlazor#5738)

* v6.1.1

* Build: Add nuget publish github action

* Build: Add manual nuget publish

* Build: Fix manual tag version

* Build: Fix syntax error in nuget publish

* Build: Fix Environment variable test

* v6.1.2 (MudBlazor#5751)

* Build: Dont publish nuget release

* Build(deps): Bump ReportGenerator from 5.1.10 to 5.1.11 in /src (MudBlazor#5743)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.10 to 5.1.11.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.10...v5.1.11)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump Blazored.LocalStorage from 4.2.0 to 4.3.0 in /src (MudBlazor#5746)

Bumps [Blazored.LocalStorage](https://github.com/Blazored/LocalStorage) from 4.2.0 to 4.3.0.
- [Release notes](https://github.com/Blazored/LocalStorage/releases)
- [Commits](Blazored/LocalStorage@v4.2.0...v4.3.0)

---
updated-dependencies:
- dependency-name: Blazored.LocalStorage
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build: Fix code coverage due to SDK 7.0.100 bug

* Changed dispose/event removal order from: (MudBlazor#5706)

* Docs: Update README to reflect support for .NET 7 (MudBlazor#5767)

* MudLink: Add OnClick parameter (MudBlazor#1518) (MudBlazor#5785)

* Charts: Make Legend Clickable (MudBlazor#5484)

* MudColorPicker: Fix MaxLength on HEX TextField for transparent colors (MudBlazor#5582)



Co-authored-by: David Griesser <dg@devigus.com>

* ScrollManager: Fix exceptions no JS environment (MudBlazor#5770)

* MudDialog:  Fix Dialog is null in IDialogReference (MudBlazor#5101)

* Build: Use simpler syntax for internals visibility (MudBlazor#5797)

* Update CONTRIBUTING.md (MudBlazor#5799)

* Build(deps): Bump FluentValidation from 11.2.2 to 11.3.0 in /src (MudBlazor#5803)

Bumps [FluentValidation](https://github.com/JeremySkinner/fluentvalidation) from 11.2.2 to 11.3.0.
- [Release notes](https://github.com/JeremySkinner/fluentvalidation/releases)
- [Changelog](https://github.com/FluentValidation/FluentValidation/blob/main/Changelog.txt)
- [Commits](FluentValidation/FluentValidation@11.2.2...11.3.0)

---
updated-dependencies:
- dependency-name: FluentValidation
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump ReportGenerator from 5.1.11 to 5.1.12 in /src (MudBlazor#5806)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.11 to 5.1.12.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.11...v5.1.12)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump NUnit3TestAdapter from 4.3.0 to 4.3.1 in /src (MudBlazor#5807)

Bumps [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) from 4.3.0 to 4.3.1.
- [Release notes](https://github.com/nunit/nunit3-vs-adapter/releases)
- [Commits](nunit/nunit3-vs-adapter@V4.3.0...V4.3.1)

---
updated-dependencies:
- dependency-name: NUnit3TestAdapter
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump bunit from 1.11.7 to 1.12.6 in /src (MudBlazor#5804)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.11.7 to 1.12.6.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.11.7...v1.12.6)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Tests: Fix test after bUnit update (MudBlazor#5808)

* Fix ResizeBasedService trim warning (MudBlazor#5809)

* Build: Fix static assets need 2 builds to publish (MudBlazor#5801)

* Build: Fix static assets need 2 builds to publish

* Build: deploy-nuget fixes

* Build: Update secrets token for slot swap

* Remove unused code in ElementReferenceExtensions (MudBlazor#5810)

* Revert "Build: Fix static assets need 2 builds to publish (MudBlazor#5801)" (MudBlazor#5817)

This reverts commit 98068aa.

* Build: Fix static assets need 2 builds to publish (MudBlazor#5818)(MudBlazor#5801) (MudBlazor#5818)

* MudCarousel: Fix swipe direction for next/previous in rtl (MudBlazor#5811)

* MudRadio: Change the default value of the ContentPlacement. (MudBlazor#5813)

* Docs: Update index statistics (MudBlazor#5835)

* MudTable: Fix inconsistent row border thickness (MudBlazor#5822, MudBlazor#5823)

* Table: Fix inconsistent border thickness

* Remove redundant (default) lines border-collapse: separate;

Co-authored-by: Dennis Mlinaric <dennism@acs-australia.com.au>

* Tests/Components: Remove unnecessary Console.WriteLine (MudBlazor#5836)

* TreeView: Add Public Select Method and Disable Text Selection When ExpandOnDoubleClick is true (MudBlazor#5856)

* MudTable: Fixed table grouping item selection issue (MudBlazor#5759) (MudBlazor#5760)

* Build(deps): Bump FluentValidation from 11.3.0 to 11.4.0 in /src (MudBlazor#5866)

Bumps [FluentValidation](https://github.com/JeremySkinner/fluentvalidation) from 11.3.0 to 11.4.0.
- [Release notes](https://github.com/JeremySkinner/fluentvalidation/releases)
- [Changelog](https://github.com/FluentValidation/FluentValidation/blob/main/Changelog.txt)
- [Commits](FluentValidation/FluentValidation@11.3.0...11.4.0)

---
updated-dependencies:
- dependency-name: FluentValidation
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* add a docstring in BunitTest

* Tests: Autocomplete loading finishes too quickly to test progress (MudBlazor#5872)

* Chip: Fix pointer cursor if href set (MudBlazor#5871)

* Chip: Fix pointer cursor if href set

* Classname property back to lambda

* MudBaseButton: Make OnClickHandler virtual (MudBlazor#5879)

MudBlazor#5878

* MudFileUpload: Maximum file count integrated as a parameter (MudBlazor#5861)

Co-authored-by: Florian <florian@inflex.at>

* Build: Automate release notes (MudBlazor#5881)

* Build: Update exclude labels for release notes

* FileUpload: Cleanup MaximumFileCount tests and update docs. (MudBlazor#5882)

* MudTooltip: Activation via Hover, Focus or Click (MudBlazor#4647)

* MudTimePicker: Fix TimePicker validation in MudForm (MudBlazor#5883) (MudBlazor#5884)

* TreeView: Fix closing arrow transition (MudBlazor#5858)

* Build: Update projects to net7 (MudBlazor#5873)

* fixed typo referenced in MudBlazor#5889 (MudBlazor#5893)

* Build: New workflows for release pipeline (MudBlazor#5899)

* Build: Remove old workflow files

* Build: Remove stray vscode settings file

* Build: Fix website-version inputs

* Build: Fix  deploy-mudblazor worklflow

* Build: Fix versioning parameter on release workflows

* Build: Fix assembly version in nuget

* Build: Fix snippets and API docs include

* Build: Add action for mudblazor HEAD

* Build(deps): Bump Moq from 4.18.2 to 4.18.3 in /src (MudBlazor#5909)

Bumps [Moq](https://github.com/moq/moq4) from 4.18.2 to 4.18.3.
- [Release notes](https://github.com/moq/moq4/releases)
- [Changelog](https://github.com/moq/moq4/blob/main/CHANGELOG.md)
- [Commits](devlooped/moq@v4.18.2...v4.18.3)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build: Add trymudblazor deploy on release

* Build: Fix deploy-trymudblazor action

* Build: Fix deploy-trymudblazor action

* Build: Fix deploy-trymudblazor action

* Build: Compile exclude needs `\` comparison

* Build: Update workflow badge

* Table: SelectedItem should fire regardless of EditTrigger setting (MudBlazor#5903)

* Popover : Check popoverContentNode null before use (MudBlazor#5897)

* Tests: Fix TimePicker validation test (MudBlazor#5924)

* Tests: Fix IDialog interface so it can be Moqed (MudBlazor#5925)

* Tests: Refactor to correct naming of TimePicker

* MudSnackbar: Fix overflowing, long message (MudBlazor#3945) (MudBlazor#5929)

* Docs: Add local development requirements (MudBlazor#5930)

* Build: Don't deploy sites for pre-release packages (MudBlazor#5931)

* MudDataGrid: Fixed the resizer handle staying visible (MudBlazor#5851)

* MudDialog: Fix not aligned Toolbar buttons on Dialog header (MudBlazor#5497) (MudBlazor#5725)

* MudDialog: Fix close button in RTL (MudBlazor#5951)

* MudDataGrid: Fix the FilterHeaderCell visible when the Column is hidden (MudBlazor#5777)

* Fix the filter header cell visible when the column is hidden

* Moved the Column.Hidden check so the cell is not rendered only when the column  is hidden

* Moved the null check in the first line

* Updated a test to ensure the filter row is rendered correctly even when a column is not filterable

* MudDataGrid: ServerData initialization fix (MudBlazor#5635)

* MudAlert: Fix CloseIcon color in Filled Variant (MudBlazor#5436) (MudBlazor#5449)

* Select and Autocomplete: Add ListClass (MudBlazor#5402)

* Add ListClass

* Basic Unit Test

* MudTreeViewItem: add CanExpand Property (MudBlazor#4093) (MudBlazor#4097)

* MudTreeViewItem: changed summary of canExpand property of MudTreeViewItem (MudBlazor#5953)

* MudProgress:  Fixed border radius for rounded linear progress bar (MudBlazor#5963)

* BreakpointService: IsMediaSize should will return true for Breakpoint.Always (MudBlazor#5898)

* MudAutoComplete: Don't write to console for errors (MudBlazor#5970)

* MudTable: Allow row-click without selecting checkbox when in multi-select mode (MudBlazor#5961)

* Docs: Fix InvalidOperationException in "Record Type Support" docs example (MudBlazor#5978)

* Build: Remove coverage workaround now SDK 7.0.1 is released

* Build: Update Package versions to 7.0.1

* Docs: Fix GitHub dark mode logo

* Build: Fix badge new shields io url

* Build: Fix build badge markdown

* Build: Add github log to build badge

* Make Blazor Error UI message more legible (MudBlazor#5996)

* Fix table CSS when subtales appear in the last row. (MudBlazor#5992)

* MudTable: Added OverscanCount as a parameter. (MudBlazor#5990)

* MudDataGrid: Fix CollapseAll not clearing internal variable (MudBlazor#5995)

* MudTable: Fixed checkbox state for MultiSelect and (Multi)Grouping (MudBlazor#5985)

* Build: Prioritise breaking change label match

* MudTable: Toggle multigrouping checkbox ocassionaly flickers (MudBlazor#6003)

* Dialog: Fix Unselectable Content Text (MudBlazor#5355)

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.4.0 to 17.4.1 in /src (MudBlazor#6011)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.4.0 to 17.4.1.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.4.0...v17.4.1)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump bunit from 1.12.6 to 1.13.5 in /src (MudBlazor#6015)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.12.6 to 1.13.5.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.12.6...v1.13.5)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump ReportGenerator from 5.1.12 to 5.1.13 in /src (MudBlazor#6014)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.12 to 5.1.13.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.12...v5.1.13)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Rename Cancelled to Canceled and forward for non-breaking (MudBlazor#4856)

* MudTable: Implement "All" option for MudTablePager. (MudBlazor#5994)

* Icons: Remove any <Title> tags on generation (MudBlazor#6023)

* Icons: Update material icons (MudBlazor#6034)

* MudTabs: Add MinimumTabWidth property (MudBlazor#6044)

* MudTabs: Added CustomMinimumTabWidth property

* Changed property to "MinimumTabWidth" and added default 160px, removed min-width class style and added permanent inline style.

* Removed all references to "Custom"

* Prevent BoundingClientRect trimming and throwing JsInteropException (MudBlazor#6053)

* MudFileUpload: Remove erroneous semi-colons (MudBlazor#6058)

* MudTabPanel: Fix possible System.NullReferenceException on Dispose (MudBlazor#6064)

* MudTable: Fix table KeyNotFoundException. (MudBlazor#6065)

* MudTabs: Fix TabPanel collections are not in sync (MudBlazor#6070)

* Build(deps): Bump Moq from 4.18.3 to 4.18.4 in /src (MudBlazor#6080)

Bumps [Moq](https://github.com/moq/moq4) from 4.18.3 to 4.18.4.
- [Release notes](https://github.com/moq/moq4/releases)
- [Changelog](https://github.com/moq/moq4/blob/main/CHANGELOG.md)
- [Commits](devlooped/moq@v4.18.3...v4.18.4)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudAutocomplete: Fix TextChanged event not sending the text (MudBlazor#6120)

* Docs: Remove redundant nullable usage of NavigationSection (MudBlazor#6098)

* MudTable: Fix 2nd level checkbox default indeterminate state (MudBlazor#6075)

* Docs: added note about Elevation and Outlined properties (MudBlazor#6071)

* Docs: Show how to use custom SVG icons

* Error box: Change background when circuit (connection) is lost. (MudBlazor#6115, MudBlazor#6116)

* MudDivider: Fix fullwidth behavior in flex containers (MudBlazor#5458, MudBlazor#5472)

* MudTooltip: Fix Style not forwarded to popover (MudBlazor#6045, MudBlazor#6051)

* MudDialog: Added Draggable as a DialogOption. (MudBlazor#6083)

* Revert "MudDialog: Added Draggable as a DialogOption. (MudBlazor#6083)" due to reported dragging issues.

This reverts commit 52134a5.

* Build(deps): Bump bunit from 1.13.5 to 1.14.4 in /src (MudBlazor#6156)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.13.5 to 1.14.4.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.13.5...v1.14.4)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump Microsoft.AspNetCore.Components.WebAssembly in /src (MudBlazor#6159)

Bumps [Microsoft.AspNetCore.Components.WebAssembly](https://github.com/dotnet/aspnetcore) from 7.0.1 to 7.0.2.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v7.0.1...v7.0.2)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump Microsoft.AspNetCore.Components.WebAssembly.DevServer (MudBlazor#6158)

Bumps [Microsoft.AspNetCore.Components.WebAssembly.DevServer](https://github.com/dotnet/aspnetcore) from 7.0.1 to 7.0.2.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v7.0.1...v7.0.2)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.DevServer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump Microsoft.AspNetCore.Components.WebAssembly.Server (MudBlazor#6157)

Bumps [Microsoft.AspNetCore.Components.WebAssembly.Server](https://github.com/dotnet/aspnetcore) from 7.0.1 to 7.0.2.
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v7.0.1...v7.0.2)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Components.WebAssembly.Server
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudTable: Add null check on server data items in FilteredItems (MudBlazor#6186)

* MudTable: Enable FluentValidation for TableRowValidator. (MudBlazor#6193)

* MudTabs: Fix incorrect ActivePanelIndex (MudBlazor#6100)

* Build: Exclude reverted PRs from release notes

* MudDateRangePicker: Fix DateRangePicker validation in MudForm (MudBlazor#6194) (MudBlazor#6195)

Fixes an issue where the `MudDateRangePicker` component would keep a
`MudForm` invalid unless its value was changed via the text input.

The `MudDateRangePicker` component is now considered `Touched` if its
value is changed via the picker itself.

Fixes: MudBlazor#6194

* MudInput: Add Accessibility Titles to Nested Icons (MudBlazor#5531)

* Build(deps): Bump ReportGenerator from 5.1.13 to 5.1.15 in /src (MudBlazor#6208)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.13 to 5.1.15.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.13...v5.1.15)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump FluentAssertions from 6.8.0 to 6.9.0 in /src (MudBlazor#6206)

Bumps [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 6.8.0 to 6.9.0.
- [Release notes](https://github.com/fluentassertions/fluentassertions/releases)
- [Changelog](https://github.com/fluentassertions/fluentassertions/blob/develop/AcceptApiChanges.ps1)
- [Commits](fluentassertions/fluentassertions@6.8.0...6.9.0)

---
updated-dependencies:
- dependency-name: FluentAssertions
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudOverlay: Fix Absolute property comment (MudBlazor#6225)

* MudAutocomplete: Add option to search while an option is selected (MudBlazor#6231)

Add Parameter "Strict" which when false shows search results even if something is already selected.

* MudTabPanel: Add ShowCloseIcon property (MudBlazor#6197)

* MudThemeProvider: Add sudo css selector for generated theme (5781) (MudBlazor#5798)

Co-authored-by: Theunis van der Stoep <theunis.vanderstoep@allegiance.co.za>

* Create ROADMAP.md

* Update ROADMAP.md

* Update ROADMAP.md

* Update ROADMAP.md

* InputBase: Add ForceUpdate (fixes MudBlazor#5132) (MudBlazor#6266)

* MudButton: Add IconSize property (MudBlazor#6040)

* Github actions: Add automatic issue/PR labeling (MudBlazor#6257)

* Build(deps): Bump ReportGenerator from 5.1.15 to 5.1.16 in /src (MudBlazor#6285)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.15 to 5.1.16.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.15...v5.1.16)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump bunit from 1.14.4 to 1.15.5 in /src (MudBlazor#6286)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.14.4 to 1.15.5.
- [Release notes](https://github.com/bUnit-dev/bUnit/releases)
- [Changelog](https://github.com/bUnit-dev/bUnit/blob/main/CHANGELOG.md)
- [Commits](bUnit-dev/bUnit@v1.14.4...v1.15.5)

---
updated-dependencies:
- dependency-name: bunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudSwitch: Add Size Parameter (MudBlazor#5673)

Co-authored-by: Yan Gauthier <yan.gauthier@genikinc.com>

* Tabs: Fix disabling prevButton after upsizing (MudBlazor#6235) (MudBlazor#6236)

* MudSwitch: Show Validation ErrorText (MudBlazor#6247) (MudBlazor#6268)

Fixes: MudBlazor#6247

* Docs: MudSwitch: Add a separate section for the Size param (MudBlazor#6307)

Co-authored-by: Yan Gauthier <yan.gauthier@genikinc.com>

* Fix NullReferenceException in ResizeOptions equality logic MudBlazor#6128 (MudBlazor#6308)

* Minor fix in Calculator example

* Build(deps): Bump FluentValidation from 11.4.0 to 11.5.0 in /src (MudBlazor#6315)

* Build(deps): Bump bunit from 1.15.5 to 1.16.2 in /src (MudBlazor#6316)

* Build(deps): Bump ReportGenerator from 5.1.16 to 5.1.17 in /src (MudBlazor#6318)

* ResizeObserver: Fix typo in directory name (MudBlazor#6303)

* Build(deps): Bump FluentAssertions from 6.9.0 to 6.10.0 in /src (MudBlazor#6317)

* Tabs: Fix scroll buttons not working on low width (MudBlazor#5212, MudBlazor#6304)

* MudDialog: CSS fix for scroll when size is greater than view height (MudBlazor#3368, MudBlazor#4132)

* MudTabs: Optionally cancel tab panel activations (MudBlazor#4738)

* Build(deps): Bump Microsoft.AspNetCore.Components.WebAssembly.DevServer (MudBlazor#6352)

* Build(deps): Bump Microsoft.AspNetCore.Components.WebAssembly.Server (MudBlazor#6354)

* MudPicker: Fix flickering in delayed BSS (MudBlazor#5450, MudBlazor#3425, MudBlazor#6344)

* Build(deps): Bump Microsoft.AspNetCore.Components.WebAssembly in /src (MudBlazor#6355)

* MudCheckbox: Use flex-row-reverse instead of mud-rtl (Fixes MudBlazor#5634) (MudBlazor#6377)

* MudTable: Fix V3022 warning (MudBlazor#6374)

* Build(deps): Bump NUnit3TestAdapter from 4.3.1 to 4.4.0 in /src (MudBlazor#6397)

* Build(deps): Bump bunit from 1.16.2 to 1.18.4 in /src (MudBlazor#6400)

* Build(deps): Bump FluentValidation from 11.5.0 to 11.5.1 in /src (MudBlazor#6401)

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.5.0 in /src (MudBlazor#6398)

* Build(deps): Bump ReportGenerator from 5.1.17 to 5.1.18 in /src (MudBlazor#6399)

* Move Mr-Technician to core team. (MudBlazor#6402)

* Autocomplete: Correct summary for Strict (MudBlazor#6396)

* Avatar: Refactor Image support (MudBlazor#6382)

* Refactor Avatar.

* Remove Category attributes from obsolete parameters.

* Update src/MudBlazor/Components/Avatar/MudAvatar.razor

Co-authored-by: Jonas B. <62108893+JonBunator@users.noreply.github.com>

* Update src/MudBlazor/Components/Avatar/MudAvatar.razor.cs

Co-authored-by: Jonas B. <62108893+JonBunator@users.noreply.github.com>

* Update src/MudBlazor/Components/Avatar/MudAvatar.razor.cs

Co-authored-by: Jonas B. <62108893+JonBunator@users.noreply.github.com>

---------

Co-authored-by: Jonas B. <62108893+JonBunator@users.noreply.github.com>

* Dialog: Fix issues with nested inline Dialogs (MudBlazor#6390)

* Add ForceInline option to Dialog.

* Clarify unit test.

* Add force inline dialog docs.

* Remove ForceInline parameter.

* Rewrite docs.

* Improve nested inline dialog docs.

* Remove ForceInline from datagrid.

* MudCarousel: Fix wrong transition direction when using SelectedIndex (MudBlazor#6392, MudBlazor#6394)

* MudMenu: Fix Touch Bubbling Which Causes Other Unwanted Click Event Firing on Mobile Devices (MudBlazor#6358)

* Update README.md (MudBlazor#6339)

* Docs: MudDialog clarifications and formatting fixes

* MudDataGrid: Configuration using expressions (MudBlazor#6049)

MudDataGrid: Configuration using expressions (MudBlazor#6049)

Co-authored-by: Terry Phillips <terry@nextcrew.com>

* Docs: Remove experimental warning from MudDataGrid.

* MudDropZone: Add support for Chromium based browsers on Mobile (MudBlazor#4818)

MudDropZone: Add support for Chromium based browsers on Mobile (MudBlazor#4818)

* SourceCodeGenerator: Add support for enum source code generation (MudBlazor#6306)

SourceCodeGenerator: Add support for enum source code generation (MudBlazor#6306)

* Fix .csproj formatting (MudBlazor#6422)

* Fix analyzer NullReferenceException in old ToDescriptionString, add test scanrio for it. (MudBlazor#6423)

* Datagrid: Fix Dialog (MudBlazor#6415)

* MudDropZone: Fix code formatting (MudBlazor#6425)

* MudDataGrid : Fixes Select All when using ServerData (MudBlazor#5999)

* Fixes Select All on MudDataGrid when using ServerData

Fixes MudBlazor#5555

* ThemeProvider: Allow watching dark/light system setting (MudBlazor#6320)

Watch dark light theme settings for system.

Co-authored-by: Jonas B. <62108893+JonBunator@users.noreply.github.com>

* Make sure the loading indicator is shown when loading from server (by invoking StateHasChanged asynchronously) (MudBlazor#4665)

Refactor code to make use of the HasServerData property available

Co-authored-by: Simon Ensslen <simon.ensslen@griesser.ch>

* README.md grammar fix

* Update README.md

* ThemeProvider: Trimming and minor formatting fix (MudBlazor#6444)

* Build(deps): Bump NUnit3TestAdapter from 4.4.0 to 4.4.2 in /src (MudBlazor#6434)

Bumps [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) from 4.4.0 to 4.4.2.
- [Release notes](https://github.com/nunit/nunit3-vs-adapter/releases)
- [Commits](nunit/nunit3-vs-adapter@V4.4.0...V4.4.2)

---
updated-dependencies:
- dependency-name: NUnit3TestAdapter
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Build(deps): Bump Microsoft.CodeAnalysis.CSharp in /src (MudBlazor#6435)

Bumps [Microsoft.CodeAnalysis.CSharp](https://github.com/dotnet/roslyn) from 4.4.0 to 4.5.0.
- [Release notes](https://github.com/dotnet/roslyn/releases)
- [Changelog](https://github.com/dotnet/roslyn/blob/main/docs/Breaking%20API%20Changes.md)
- [Commits](https://github.com/dotnet/roslyn/commits)

---
updated-dependencies:
- dependency-name: Microsoft.CodeAnalysis.CSharp
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add Kuro to the contribution team and fix obsolete warnings. (MudBlazor#6446)

* Fix obsolete workaround for images in MudAvatar. (MudBlazor#6448)

* RadioGroup: Add ReadOnly and Disabled options. (MudBlazor#6418)

* Add ReadOnly and Disabled options to RadioGroup.

* Add unit tests.

* Docs: correct class name in Snackbar>Configuration (MudBlazor#6447)

Co-authored-by: Jason Brandt <jlbrandt@bluebunny.com>

* MudDatePicker: Add disabled functionality for months only picker (MudBlazor#6438)

* added disabled functionality for months only picker

---------

Co-authored-by: Jakob Sorgeloos <SorgelJ@basfad.basf.net>
Co-authored-by: Jakob <jksg@fwo.be>

* MudDataGrid: Fix missing content/error in Cell edit mode for HierarchyColumn (MudBlazor#6024)

* MudDatePicker: Disable months if day is fixed (MudBlazor#6336) (MudBlazor#6338)

* MudDatePicker: Add disabling months if day is fixed (MudBlazor#6336)

* Docs: Fix release page and roadmap page (MudBlazor#6455)

* Docs: Fixed markdown on release page

* Remade into list and less custom css

* Added page title to release page

* Added roadmap from the GitHub markdown file

* Added roadmap link to connect-src

* Added support for older releases and its markdown

* Build(deps): Bump ReportGenerator from 5.1.18 to 5.1.19 in /src (MudBlazor#6461)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.18 to 5.1.19.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.18...v5.1.19)

---
updated-dependencies:
- dependency-name: ReportGenerator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MudBaseInput: Obsolete OnKeyPress, to be removed in v7 (MudBlazor#6464)

* Autocomplete: Fix Autocomplete opening on Reset (MudBlazor#6387)

* Fix issue where autocompletes would open upon reset using server side blazor.
* Revert "SetText should be string.Empty, not null."

This reverts commit b36b2ec.

* MudAutocomplete: Fix KeyDown Event (MudBlazor#6462)

* added tests for keydown event

Co-authored-by: Jakob Sorgeloos <SorgelJ@basfad.basf.net>

* MudDataGrid: change status from experimental to stable in docs

* MudDialog: Change OnBackdropClick Action to EventCallback (MudBlazor#6151)

* Changed MudDialog's OnBackdropClick delegate to support async methods. Closes MudBlazor#6146


---------

Co-authored-by: Meinrad Recheis <meinrad.recheis@gmail.com>

* MudTable: Add filtered items cache for each render. (MudBlazor#6470)

* MudTable: Add filtered items cache for each render.

---------

Co-authored-by: Štěpán Adámek <stepan.adamek@ima.cz>

* MudDataGrid: Improve nullability, encapsulation and some nits (MudBlazor#6421)

* Improve nullability, encapsulation and some nits in DataGrid

* MudDataGrid: Sorting and filtering performance improvements. (MudBlazor#6495)

* MudDataGrid: Improve sorting and filtering performance using FilteredItems cache.

* MudDataTable: Ensure PropertyFunc is compiled only once.

---------

Co-authored-by: Štěpán Adámek <stepan.adamek@ima.cz>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: TDroogers <34547552+TDroogers@users.noreply.github.com>
Co-authored-by: Riley Nielsen <rnielsen@srfconsulting.com>
Co-authored-by: Meinrad Recheis <meinrad.recheis@gmail.com>
Co-authored-by: Mike Surcouf <mike@surcouf.je>
Co-authored-by: Gary Chan <gary.chan@c0g1t8.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jonny Larsson <jonny@gardnet.nu>
Co-authored-by: dennml <dennml@gmail.com>
Co-authored-by: Daniele Corsini <franklupog@gmail.com>
Co-authored-by: nick <nicoloarmando.deastis@gmail.com>
Co-authored-by: Jeffrey Jangli <shogun.net@outlook.com>
Co-authored-by: Adam Renaud <33334607+rena0157@users.noreply.github.com>
Co-authored-by: Pawel <57046415+BieleckiLtd@users.noreply.github.com>
Co-authored-by: Daniel <dgross@intronik.de>
Co-authored-by: DoobieAsDave <39911245+DoobieAsDave@users.noreply.github.com>
Co-authored-by: David Griesser <dg@devigus.com>
Co-authored-by: Artyom M <artem.melnikov@live.com>
Co-authored-by: Mehmet Can Karagöz <78308169+mckaragoz@users.noreply.github.com>
Co-authored-by: Abduwaris Ghujamniyaz <997007106@qq.com>
Co-authored-by: Dennis Mlinaric <dennism@acs-australia.com.au>
Co-authored-by: Jonas B <62108893+JonBunator@users.noreply.github.com>
Co-authored-by: Gopichandar Selvaraj <gopichandarbe@gmail.com>
Co-authored-by: Michel de Kok <info@micheldekok.nl>
Co-authored-by: Andrew Palmer <a@codelifter.net>
Co-authored-by: Florian Dengg <47749824+ummerland@users.noreply.github.com>
Co-authored-by: Florian <florian@inflex.at>
Co-authored-by: Riley Nielsen <riley@nielsen.tech>
Co-authored-by: Jason Rebelo <igotinfected@gmail.com>
Co-authored-by: popandepo <74258784+popandepo@users.noreply.github.com>
Co-authored-by: Stuart Aitken <s.aitken88@gmail.com>
Co-authored-by: SinisterMaya <yan.gauthier05@gmail.com>
Co-authored-by: Massimo Giambona <m4ss1m0g@users.noreply.github.com>
Co-authored-by: Chris <58083980+creeve-qci@users.noreply.github.com>
Co-authored-by: David V <49674671+fondraco@users.noreply.github.com>
Co-authored-by: Lennart Kleymann <privat@lennart-kleymann.de>
Co-authored-by: Makhmutov Neil <makhmutov.nail@gmail.com>
Co-authored-by: pars-dev <109645063+pars-dev@users.noreply.github.com>
Co-authored-by: Suenodk <36229816+Suenodk@users.noreply.github.com>
Co-authored-by: snakex64 <39806655+snakex64@users.noreply.github.com>
Co-authored-by: Bevan Weiss <bevanweiss@users.noreply.github.com>
Co-authored-by: Qian <26250460+QianMoXi@users.noreply.github.com>
Co-authored-by: Hayden Ravenscroft <hayden.ravenscroft@hotmail.com>
Co-authored-by: Idan <61008695+idan-h@users.noreply.github.com>
Co-authored-by: WalterWillis <47991935+WalterWillis@users.noreply.github.com>
Co-authored-by: Martin Lantzsch <martin@linux-doku.de>
Co-authored-by: stoepa <theunisvdstoep@gmail.com>
Co-authored-by: Theunis van der Stoep <theunis.vanderstoep@allegiance.co.za>
Co-authored-by: Yan Gauthier <yan.gauthier@genikinc.com>
Co-authored-by: Łukasz Prajer <50521366+gaplin@users.noreply.github.com>
Co-authored-by: Habetdin <15926758+Habetdin@users.noreply.github.com>
Co-authored-by: Keith <keith@keithfimreite.com>
Co-authored-by: Lukas Klinger <lk@mim.gmbh>
Co-authored-by: Henrique Clausing <hclausing@gmail.com>
Co-authored-by: Marius <107558311+rusfield@users.noreply.github.com>
Co-authored-by: Terry Phillips <terry.w.phillips@gmail.com>
Co-authored-by: Terry Phillips <terry@nextcrew.com>
Co-authored-by: Henry <emorell96@hotmail.com>
Co-authored-by: Justin Lampe <xC0dex@users.noreply.github.com>
Co-authored-by: alfadelta88 <107624826+alfadelta88@users.noreply.github.com>
Co-authored-by: Simon Ensslen <sensslen@users.noreply.github.com>
Co-authored-by: Simon Ensslen <simon.ensslen@griesser.ch>
Co-authored-by: dev-jlb <101914968+dev-jlb@users.noreply.github.com>
Co-authored-by: Jason Brandt <jlbrandt@bluebunny.com>
Co-authored-by: Jakob Sorgeloos <sorgeloosjakob@gmail.com>
Co-authored-by: Jakob Sorgeloos <SorgelJ@basfad.basf.net>
Co-authored-by: Jakob <jksg@fwo.be>
Co-authored-by: adameste <32512271+adameste@users.noreply.github.com>
Co-authored-by: Štěpán Adámek <stepan.adamek@ima.cz>
ScarletKuro pushed a commit to ScarletKuro/MudBlazor that referenced this pull request Mar 27, 2023
ferraridavide pushed a commit to ferraridavide/MudBlazor that referenced this pull request May 30, 2023
ilovepilav pushed a commit to ilovepilav/MudBlazor that referenced this pull request Nov 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
API change API that needs approval enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Tooltip on Button that opens a Dialog
3 participants