Skip to content

MudTable: Ensure selection is updated when items are removed#5455

Merged
henon merged 2 commits intoMudBlazor:devfrom
Mr-Technician:table-multiselect-fix
Oct 8, 2022
Merged

MudTable: Ensure selection is updated when items are removed#5455
henon merged 2 commits intoMudBlazor:devfrom
Mr-Technician:table-multiselect-fix

Conversation

@Mr-Technician
Copy link
Member

Description

This PR fixes a bug where removing items from the Items collection would not remove them from the SelectedItems hashset, leading to odd behavior. For example, if all items are selected and an item is removed, the header checkbox will uncheck, as the number of selected items becomes greater than the items.

How Has This Been Tested?

unit

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • 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.

return FilteredItems?.Contains(t) ?? false;
}

public override void UpdateSelection() => SelectedItemsChanged.InvokeAsync(SelectedItems);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@henon I think this is the best way of handling this. We can't modify Context.Selection without manually invoking SelectedItemsChanged via an additional method such as this.

@codecov
Copy link

codecov bot commented Oct 8, 2022

Codecov Report

Base: 91.41% // Head: 91.41% // Decreases project coverage by -0.00% ⚠️

Coverage data is based on head (4de09ba) compared to base (f329541).
Patch coverage: 87.50% of modified lines in pull request are covered.

Additional details and impacted files
@@            Coverage Diff             @@
##              dev    #5455      +/-   ##
==========================================
- Coverage   91.41%   91.41%   -0.01%     
==========================================
  Files         373      373              
  Lines       14813    14821       +8     
==========================================
+ Hits        13541    13548       +7     
- Misses       1272     1273       +1     
Impacted Files Coverage Δ
src/MudBlazor/Components/Table/MudTableBase.cs 92.75% <ø> (ø)
src/MudBlazor/Components/Table/MudTable.razor.cs 85.93% <80.00%> (-0.16%) ⬇️
src/MudBlazor/Components/Table/TableContext.cs 98.68% <100.00%> (+0.05%) ⬆️

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.

@henon henon changed the title Table: Ensure selection is updated when items are removed MudTable: Ensure selection is updated when items are removed Oct 8, 2022
@henon henon added bug Unexpected behavior or functionality not working as intended bug-functional labels Oct 8, 2022
@henon henon added this to the 6.0.17 milestone Oct 8, 2022
@henon henon merged commit fcdc604 into MudBlazor:dev Oct 8, 2022
@henon
Copy link
Contributor

henon commented Oct 8, 2022

Thanks @Mr-Technician

@Mr-Technician Mr-Technician deleted the table-multiselect-fix branch October 8, 2022 19:12
@henon henon added the hacktoberfest-accepted Issues and PRs which were accepted as Hacktoberfest submissions label Oct 13, 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 <[email protected]>

* 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 <[email protected]>

* 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 <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 <[email protected]>

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

Co-authored-by: Mike Surcouf <[email protected]>

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

Co-authored-by: Mike Surcouf <[email protected]>

* MudDrawer: Remove event listeners (MudBlazor#5562)

Co-authored-by: Mike Surcouf <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

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

* MudCollapse: Remove Event Listeners (MudBlazor#5563)

Co-authored-by: Mike Surcouf <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 <[email protected]>

* 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 <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>
Co-authored-by: Jonny Larsson <[email protected]>
Co-authored-by: Dennis Rahmen <[email protected]>
Co-authored-by: Riley Nielsen <[email protected]>
Co-authored-by: Meinrad Recheis <[email protected]>
Co-authored-by: XDFUN <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jonas B <[email protected]>
Co-authored-by: nick <[email protected]>
Co-authored-by: Riley Nielsen <[email protected]>
Co-authored-by: Jon Hodgins <[email protected]>
Co-authored-by: Quentin Metge <[email protected]>
Co-authored-by: Julien Chevalier <[email protected]>
Co-authored-by: Keith <[email protected]>
Co-authored-by: kiske1 <[email protected]>
Co-authored-by: Juri Capovilla <[email protected]>
Co-authored-by: سجاد Arash <[email protected]>
Co-authored-by: csombi <[email protected]>
Co-authored-by: Ben Stein <[email protected]>
Co-authored-by: Hugo Castro de Deco <[email protected]>
Co-authored-by: vegguid <[email protected]>
Co-authored-by: 95Conor <[email protected]>
Co-authored-by: Jonas B <[email protected]>
Co-authored-by: Mike Surcouf <[email protected]>
Co-authored-by: Mike Surcouf <[email protected]>
Co-authored-by: Mike Surcouf <[email protected]>
Co-authored-by: Mehmet Can Karagöz <[email protected]>
Co-authored-by: Tyler Trahan <[email protected]>
Co-authored-by: Javier Goday <[email protected]>
Co-authored-by: Jason Gutierrez <[email protected]>
Co-authored-by: Yannis <[email protected]>
Co-authored-by: TDroogers <[email protected]>
Co-authored-by: Gary Chan <[email protected]>
Co-authored-by: dennml <[email protected]>
Co-authored-by: Daniele Corsini <[email protected]>
Co-authored-by: Jeffrey Jangli <[email protected]>
Co-authored-by: Adam Renaud <[email protected]>
Co-authored-by: Pawel <[email protected]>
Co-authored-by: Daniel <[email protected]>
Co-authored-by: DoobieAsDave <[email protected]>
Co-authored-by: David Griesser <[email protected]>
Co-authored-by: Artyom M <[email protected]>
Co-authored-by: Abduwaris Ghujamniyaz <[email protected]>
Co-authored-by: Dennis Mlinaric <[email protected]>
Co-authored-by: Gopichandar Selvaraj <[email protected]>
Co-authored-by: Michel de Kok <[email protected]>
Co-authored-by: Andrew Palmer <[email protected]>
Co-authored-by: Florian Dengg <[email protected]>
Co-authored-by: Florian <[email protected]>
Co-authored-by: Jason Rebelo <[email protected]>
Co-authored-by: popandepo <[email protected]>
Co-authored-by: Stuart Aitken <[email protected]>
Co-authored-by: SinisterMaya <[email protected]>
Co-authored-by: Massimo Giambona <[email protected]>
Co-authored-by: Chris <[email protected]>
Co-authored-by: David V <[email protected]>
Co-authored-by: Lennart Kleymann <[email protected]>
Co-authored-by: Makhmutov Neil <[email protected]>
Co-authored-by: pars-dev <[email protected]>
Co-authored-by: Suenodk <[email protected]>
Co-authored-by: snakex64 <[email protected]>
Co-authored-by: Bevan Weiss <[email protected]>
Co-authored-by: Qian <[email protected]>
Co-authored-by: Hayden Ravenscroft <[email protected]>
Co-authored-by: Idan <[email protected]>
Co-authored-by: WalterWillis <[email protected]>
Co-authored-by: Martin Lantzsch <[email protected]>
mblichowski added a commit to mblichowski/MudBlazor-extended that referenced this pull request Jan 29, 2023
* Fix for dialog scrolling issue

Fix for dialog scrolling issue #3368

* refine max height

per @mckaragoz requested changes

* MudPicker: Value should reset when Form.Reset() is called. (#4968)

* Reset the underlying MudPicker value in ResetValue.

* Add datepicker to table reset test.

* Fix broken form tests.

* DatePicker: Fix KeyInterceptor Crash (#4987)

* fixes #4897 and #4853

* restructure call sequence of AfterRenderAsync to prio base class call

* Build(deps): Bump Microsoft.ApplicationInsights.AspNetCore in /src (#4954)

Bumps [Microsoft.ApplicationInsights.AspNetCore](https://github.com/Microsoft/ApplicationInsights-dotnet) from 2.20.0 to 2.21.0.
- [Release notes](https://github.com/Microsoft/ApplicationInsights-dotnet/releases)
- [Changelog](https://github.com/microsoft/ApplicationInsights-dotnet/blob/main/CHANGELOG.md)
- [Commits](https://github.com/Microsoft/ApplicationInsights-dotnet/compare/2.20.0...2.21.0)

---
updated-dependencies:
- dependency-name: Microsoft.ApplicationInsights.AspNetCore
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

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

* Table: Fix NoRecordsContent row changing background color on hover (#3105, #4963)

* Update _dialog.scss

Fix for Fullscreen overflow

* TimeLineItem: Add DotStyle attribute (#4635, #4999)

* MenuItem: Add optional Icon parameter (#4641)


Co-authored-by: Simon Ensslen <[email protected]>

* Breadcrumbs: Fix MaxItems collapsing logic (#4995)

Looking at example in docs: Currently if there are 5 items and MaxItems is set to 5, breadcrumbs are collapsed. TO me it should collapse only when MaxItems is exceeded: 6 or more.

* DefaultConverter: Add AllowThousands flag to all integer type TryParse calls (#4948)

Add AllowThousands to all integer type TryParse calls in Converter class

* Table: Add Comparer property to support record types. (#4998)

* NumericField: Fix decimal precision and overflows (#4973)

* NumericField: Fix decimal precision and overflows (#4971)

* Docs: Added new sponsor Timewarp to pages

* ThemeProvider: fix nullref

* Table: fix example (#4998)

* DialogService: Fix for trimming (#5032)

* DateRangePicker: Adding AutoClose parameter (#4878)

DateRanger: Adding AutoClose parameter

Co-authored-by: Berenger Caby <[email protected]>

* Docs: Disable AggressiveAttributeTrimming for MudBlazor.Docs.Wasm -> MudBlazor.Docs.WasmHost during PublishTrimmed (#5044)

* Build(deps): Bump FluentValidation from 11.1.0 to 11.1.1 in /src (#5045)

* Build(deps): Bump Moq from 4.18.1 to 4.18.2 in /src (#5046)

* RadioGroup: Add InputClass and InputStyle for backward compatibility (#4944)

* SnackbarOptions: Add IconColor and IconSize properties (#4429)

* Docs: fix typo (#5036)

* MudMenuItem: Add IconColor and IconSize properties (#5061)

* CheckBox: Add ability to disable keyboard input (#5072)

* Add ability to disable keyboard input in MudCheckBox

* Invert switch to enable keyboard

* CheckBox: fix doc

* MudScrollToTop: Fix Exception When Changing Page (#5060)

* NumericField: Resolve nullable issue introduced by #4971 (#5077)

* Carousel: Allow to disable swipe gesture (#5062)

[Feature] Add ability to disable swipe gesture for MudCarousel

* Table: Add ApplyButtonPosition parameter (#5090)

* Form Inputs: Add OnlyValidateIfDirty to Trigger Validation only if dirty (#3726)

MudBaseInput: The validation is only triggered if the user has changed the input value at least once (#2879)

Co-authored-by: Raffael Schärer <[email protected]>

* JsInterop: Centralizing JS error handling part one (#5105)

* Dialog: Fix corrupted Parameters with Multiple open Dialogs (#4895)

* DataGrid: Fix filter and several other bugs (#4942, #4924, #4921, #4551) (#5093)

* DataGrid: prevent trimming of FilterOperator (#5133)

* Select: Update Text when switching to MultiSelection (#4962)

* ColorPicker: Remember the View Chosen by the User (#4949)

* Input: Remove tabstop from clear button (#5067) (#5107)

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

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](https://github.com/dotnet/aspnetcore/compare/v6.0.7...v6.0.8)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

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

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](https://github.com/dotnet/aspnetcore/compare/v6.0.7...v6.0.8)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.2.0 to 17.3.0 in /src (#5096)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.2.0 to 17.3.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Commits](https://github.com/microsoft/vstest/compare/v17.2.0...v17.3.0)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

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

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](https://github.com/dotnet/aspnetcore/compare/v6.0.7...v6.0.8)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

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

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](https://github.com/dotnet/aspnetcore/compare/v6.0.7...v6.0.8)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* DataGrid: Fix Broken Filter (#5091)

* Build(deps): Bump FluentValidation from 11.1.1 to 11.2.0 in /src (#5095)

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

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

Signed-off-by: dependabot[bot] <[email protected]>

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

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

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](https://github.com/dotnet/aspnetcore/compare/v6.0.7...v6.0.8)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* Docs: Fixed Typography spelling errors (#5040)

* Fixed some docs discrepancies. (#5136)

Added a new example for Virtualization.
Added a new example for Observability.

* DataGrid: AggregationDefinition is applied to groups (#5125)

Co-authored-by: Meinrad Recheis <[email protected]>

* Switch: Add LabelPosition property to specify the label's Start/End position (#5152)

* Docs: Programatically removing a Snackbar (#5016)

* added documentation for programatically remove snackbar

* updated text and highligthing

* Checkbox: Add LabelPosition property to specify the label's Start/End position (#5163)

* TablePager: Add default English aria-labels (#5099)

* DataGrid: Change expression builder for nullables bool, DateTime and numbers Type (#5126)  (#5174)

* DataGrid: Change expression builder for nullables bool, DateTime and numbers Type (#5133)

* Add new tests

* DataGrid: Added functionality to disable user interaction with MudDataGridPager

* DataGrid: Support Guid for FilterDefinition

* PopoverProvider: Throw exception when duplicate providers detected (#5102)

* Docs: Add ChartOptions to MudChart in LineExample2 (#5176) (#5177)

* Build(deps): Bump FluentValidation from 11.2.0 to 11.2.1 in /src (#5182)

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

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* Update to 6.0.15

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

* DataGrid: Add Culture property to DataGrid Column (#5183)

* #5138: Add Culture property to MudBlazor.Column

* Add DataGrid Culture property

* Docs: Fix in Description of MudFormComponent.For (#5202)

* TreeView: Fix multiselect checkbox color (#5171, #5172)

* Treeview: Fix conflicting iconbutton css selectors (#5153)

* Docs: Fix FontAwesome Icons not showing up in TryMudBlazor (#5211)

* Docs: Add better docs for OnClick/OnTouch in MudMenu. (#5215)

* Squashed commit of the following:

commit 0d4de1f1ae1b32a3855819fd5897ccd09a8fba18
Merge: ce5eef14 f796a50b
Author: Jonny Larsson <[email protected]>
Date:   Wed Aug 31 16:01:56 2022 +0200

    Merge 6.0.15

commit f796a50b28d27556577b66d4d7882b9b18d480d9
Author: Jonny Larsson <[email protected]>
Date:   Wed Aug 31 16:01:39 2022 +0200

    Update to 6.0.15

commit 7a4a9328988827a8aaa4ecb5270f3ecc2a170500
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Aug 30 14:33:45 2022 +0800

    Build(deps): Bump FluentValidation from 11.2.0 to 11.2.1 in /src (#5182)

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

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

    Signed-off-by: dependabot[bot] <[email protected]>

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

commit 78b6e0f0c4b07427692ed9c72630c292922a3a62
Author: Shahriyar <[email protected]>
Date:   Mon Aug 29 01:01:42 2022 +0430

    Docs: Add ChartOptions to MudChart in LineExample2 (#5176) (#5177)

commit 7c5c3f2ab1e1102b1bd25e2a79e1ac6fe8d20832
Author: Riley Nielsen <[email protected]>
Date:   Sun Aug 28 02:39:39 2022 -0500

    PopoverProvider: Throw exception when duplicate providers detected (#5102)

commit 2b48809cd84e0b61382b68c3f6e33943d9d91948
Author: Javier Goday <[email protected]>
Date:   Sun Aug 28 08:20:43 2022 +0200

    DataGrid: Support Guid for FilterDefinition

commit 7ada096a99054c1d69c8aa3a566769ce58862e87
Author: dustuu <[email protected]>
Date:   Sat Aug 27 16:00:28 2022 -0400

    DataGrid: Added functionality to disable user interaction with MudDataGridPager

commit 90546a8ad783522fe990cc9e9f28c7325b52935f
Author: bennnos <[email protected]>
Date:   Sat Aug 27 21:59:45 2022 +0200

     DataGrid: Change expression builder for nullables bool, DateTime and numbers Type (#5126)  (#5174)

    * DataGrid: Change expression builder for nullables bool, DateTime and numbers Type (#5133)

    * Add new tests

commit 7f054c7973ed303af2ead6ec6da0ae8f00b5a16c
Author: Chris <[email protected]>
Date:   Sat Aug 27 10:40:18 2022 -0500

    TablePager: Add default English aria-labels (#5099)

commit df844f59ff1d876882bce4a58fcd121bf2680dfe
Author: Jeffrey Jangli <[email protected]>
Date:   Fri Aug 26 11:58:57 2022 +0200

    Checkbox: Add LabelPosition property to specify the label's Start/End position (#5163)

commit 56202c8b62987b02e040de1fd70b0b01ee1cb739
Author: Sigurd <[email protected]>
Date:   Wed Aug 24 16:29:13 2022 +0200

    Docs: Programatically removing a Snackbar (#5016)

    * added documentation for programatically remove snackbar

    * updated text and highligthing

commit 7e6ee9acf89db145c4236de21e6283de958b6d50
Author: Jeffrey Jangli <[email protected]>
Date:   Wed Aug 24 15:52:57 2022 +0200

     Switch: Add LabelPosition property to specify the label's Start/End position (#5152)

commit 745afafc354467957b64fafe763a5b61fb5235d4
Author: Terry Phillips <[email protected]>
Date:   Wed Aug 24 04:41:09 2022 -0400

     DataGrid: AggregationDefinition is applied to groups (#5125)

    Co-authored-by: Meinrad Recheis <[email protected]>

commit d206f336615453a40a2c9e651955e99d4f531143
Author: Terry Phillips <[email protected]>
Date:   Wed Aug 24 03:49:55 2022 -0400

    Fixed some docs discrepancies. (#5136)

    Added a new example for Virtualization.
    Added a new example for Observability.

commit 9c6d413d4c3f602098f7f1b087921c61a69bf077
Author: Matthew Parker <[email protected]>
Date:   Wed Aug 24 17:48:58 2022 +1000

    Docs: Fixed Typography spelling errors (#5040)

commit 3bb4f2c46a76fa638c35888d3d51e79a73cb1467
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Aug 24 15:46:15 2022 +0800

    Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly requirement (#5094)

    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](https://github.com/dotnet/aspnetcore/compare/v6.0.7...v6.0.8)

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

    Signed-off-by: dependabot[bot] <[email protected]>

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

commit f5a76b20222749325f80076f070b26394fb39bda
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Aug 24 15:45:38 2022 +0800

    Build(deps): Bump FluentValidation from 11.1.1 to 11.2.0 in /src (#5095)

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

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

    Signed-off-by: dependabot[bot] <[email protected]>

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

commit cecee93460bc2a818cb512bd6e3d21dd2b4c120a
Author: Terry Phillips <[email protected]>
Date:   Wed Aug 24 03:44:09 2022 -0400

    DataGrid: Fix Broken Filter (#5091)

commit 11645c4314bda7f3fac2803bef6e42379c546908
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Aug 24 15:34:45 2022 +0800

    Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly.DevServer requirement (#5154)

    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](https://github.com/dotnet/aspnetcore/compare/v6.0.7...v6.0.8)

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

    Signed-off-by: dependabot[bot] <[email protected]>

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

commit 24077afbc33e11a2b8f44b261629954f4cfb3c0f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Aug 24 15:34:13 2022 +0800

    Build(deps): Update Microsoft.AspNetCore.Components.Web requirement (#5155)

    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](https://github.com/dotnet/aspnetcore/compare/v6.0.7...v6.0.8)

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

    Signed-off-by: dependabot[bot] <[email protected]>

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

commit 27a9a945a8254f55f280fd276b69076a051bdd95
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Aug 24 15:26:54 2022 +0800

    Build(deps): Bump Microsoft.NET.Test.Sdk from 17.2.0 to 17.3.0 in /src (#5096)

    Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.2.0 to 17.3.0.
    - [Release notes](https://github.com/microsoft/vstest/releases)
    - [Commits](https://github.com/microsoft/vstest/compare/v17.2.0...v17.3.0)

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

    Signed-off-by: dependabot[bot] <[email protected]>

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

commit a46862978f02051689eb94d0cb4289316bb9b52b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Aug 24 15:26:37 2022 +0800

    Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly.Server requirement (#5097)

    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](https://github.com/dotnet/aspnetcore/compare/v6.0.7...v6.0.8)

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

    Signed-off-by: dependabot[bot] <[email protected]>

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

commit a672487c8c07119dad6b156fceb1af39370ebf68
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Aug 24 15:26:26 2022 +0800

    Build(deps): Update Microsoft.AspNetCore.Components requirement in /src (#5098)

    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](https://github.com/dotnet/aspnetcore/compare/v6.0.7...v6.0.8)

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

    Signed-off-by: dependabot[bot] <[email protected]>

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

commit 957fb7a86f902890bde28c174aff44d8b91bced2
Author: Daniel Haas <[email protected]>
Date:   Tue Aug 23 12:19:09 2022 +0200

    Input: Remove tabstop from clear button (#5067) (#5107)

commit 1c6035132f29cc4a450ac2f216d2d011456ed0fc
Author: Benjamin Kappel <[email protected]>
Date:   Mon Aug 22 05:48:53 2022 -0500

    ColorPicker: Remember the View Chosen by the User (#4949)

commit efdb22cc4ff3a6a355c8f9daf444d121c4b823df
Author: Javier Goday <[email protected]>
Date:   Mon Aug 22 12:43:28 2022 +0200

    Select: Update Text when switching to MultiSelection (#4962)

commit 28b0b088e3df23f67838d9c74655ddbe5eb74b53
Author: Artyom M <[email protected]>
Date:   Sun Aug 21 15:09:13 2022 +0300

    DataGrid: prevent trimming of FilterOperator (#5133)

commit 0e2fc1e4437e2881abd043cdebb95347fd199aac
Author: Terry Phillips <[email protected]>
Date:   Sat Aug 20 12:00:17 2022 -0400

    DataGrid: Fix filter and several other bugs (#4942, #4924, #4921, #4551) (#5093)

commit b559b3dbc53f44e60bd5d83d6d5603489856db12
Author: Daniel <[email protected]>
Date:   Fri Aug 19 22:10:40 2022 +0200

    Dialog: Fix corrupted Parameters with Multiple open Dialogs (#4895)

commit 5d6ba1b42ab3a444fe68e0329ee8b44533171aba
Author: Benjamin Kappel <[email protected]>
Date:   Tue Aug 16 14:57:59 2022 -0500

    JsInterop: Centralizing JS error handling part one (#5105)

commit 1574458885583f9281b87fb13c05a532b6b26359
Author: Raffael Schärer <[email protected]>
Date:   Tue Aug 16 10:57:05 2022 +0200

    Form Inputs: Add OnlyValidateIfDirty to Trigger Validation only if dirty (#3726)

    MudBaseInput: The validation is only triggered if the user has changed the input value at least once (#2879)

    Co-authored-by: Raffael Schärer <[email protected]>

commit d55e31c20351899b7d10d0947ff4dc8b036c9ad4
Author: Benjamin Kappel <[email protected]>
Date:   Tue Aug 16 01:18:19 2022 -0500

    Table: Add ApplyButtonPosition parameter (#5090)

commit acabb327b71dcd4a32b6785d7e895b756e06054b
Author: Artyom M <[email protected]>
Date:   Mon Aug 15 21:05:38 2022 +0300

    Carousel: Allow to disable swipe gesture (#5062)

    [Feature] Add ability to disable swipe gesture for MudCarousel

commit 33229b5c1b8e26c7bf577a05f707df9b214c7464
Author: Marcus <[email protected]>
Date:   Mon Aug 15 19:24:35 2022 +0200

    NumericField: Resolve nullable issue introduced by #4971 (#5077)

commit 672ed3e05cf528aa289e3f1fa03b0c3b1f07f8b6
Author: Artyom M <[email protected]>
Date:   Mon Aug 15 20:04:15 2022 +0300

    MudScrollToTop: Fix Exception When Changing Page (#5060)

commit 921601ce27a64864b449bd8d05264e18296bb871
Author: Meinrad Recheis <[email protected]>
Date:   Sat Aug 13 12:59:43 2022 +0200

    CheckBox: fix doc

commit c35289d29bca02943ff15f98dcb95936774458ca
Author: Anti-Apple4life <[email protected]>
Date:   Sat Aug 13 06:47:38 2022 -0400

    CheckBox: Add ability to disable keyboard input (#5072)

    * Add ability to disable keyboard input in MudCheckBox

    * Invert switch to enable keyboard

commit 66894b28cdee27b576ae5a82841c6bbbf519efc3
Author: Jeffrey Jangli <[email protected]>
Date:   Wed Aug 10 16:43:52 2022 +0200

     MudMenuItem: Add IconColor and IconSize properties (#5061)

commit 9376e68a57cea9e863f3448b56f95c2b60853911
Author: Qingxiao Ren <[email protected]>
Date:   Wed Aug 10 15:29:59 2022 +0800

    Docs: fix typo (#5036)

commit 3bdba194f65d66a7bc28a4658507598cd6d49bb0
Author: Jeffrey Jangli <[email protected]>
Date:   Wed Aug 10 06:22:18 2022 +0000

    SnackbarOptions: Add IconColor and IconSize properties (#4429)

commit aefba20621e76caf6bc703e7655ae3b34fd63054
Author: Mehmet Can Karagöz <[email protected]>
Date:   Tue Aug 9 22:37:44 2022 +0300

    RadioGroup: Add InputClass and InputStyle for backward compatibility (#4944)

commit ad4b97ddbbf7f7c8eb27ee780e1706ec1d767a78
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Aug 9 08:15:31 2022 +0000

    Build(deps): Bump Moq from 4.18.1 to 4.18.2 in /src (#5046)

commit 4f6c47379a02d6acb25794afe70e70aea0df872e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Aug 9 08:11:07 2022 +0000

    Build(deps): Bump FluentValidation from 11.1.0 to 11.1.1 in /src (#5045)

commit 1ad6d0b15238e5aa31dcd9d3fea02ae758564a22
Author: Artyom M <[email protected]>
Date:   Mon Aug 8 17:22:56 2022 +0300

    Docs: Disable AggressiveAttributeTrimming for MudBlazor.Docs.Wasm -> MudBlazor.Docs.WasmHost during PublishTrimmed (#5044)

commit 66f9c2ebb15f416fa0eb80b46e30cc2156213b37
Author: Bérenger Caby <[email protected]>
Date:   Sun Aug 7 21:25:08 2022 +0200

    DateRangePicker: Adding AutoClose parameter (#4878)

    DateRanger: Adding AutoClose parameter

    Co-authored-by: Berenger Caby <[email protected]>

commit 612e8996cb839cbcfc427c97a509990bbc879a6b
Author: Artyom M <[email protected]>
Date:   Sat Aug 6 18:58:00 2022 +0300

    DialogService: Fix for trimming (#5032)

commit 0b124f75b97b56f3da12b9dc2b8e53fda2aed180
Author: Meinrad Recheis <[email protected]>
Date:   Fri Aug 5 22:20:13 2022 +0200

    Table: fix example (#4998)

commit 6cbfa9e3b0abf0c736290c43f6bdc72adbfc87c4
Author: Meinrad Recheis <[email protected]>
Date:   Fri Aug 5 22:11:24 2022 +0200

    ThemeProvider: fix nullref

commit 6992dccddf305174b53b4d373c0a5194d3b86afd
Author: Jonny Larsson <[email protected]>
Date:   Fri Aug 5 16:13:28 2022 +0200

    Docs: Added new sponsor Timewarp to pages

commit c8ee390ec7063b0ec393746fec4c328f2f8e8bf9
Author: Marcus <[email protected]>
Date:   Thu Aug 4 22:10:37 2022 +0200

     NumericField: Fix decimal precision and overflows (#4973)

    * NumericField: Fix decimal precision and overflows (#4971)

commit 155a6e43023e7ea781f3263a28c51b8e476c162a
Author: Riley Nielsen <[email protected]>
Date:   Thu Aug 4 15:04:22 2022 -0500

    Table: Add Comparer property to support record types. (#4998)

commit 1bdb9f3da57bfdb5caa026418f6fc8088f61e035
Author: John <[email protected]>
Date:   Thu Aug 4 15:49:07 2022 -0400

    DefaultConverter: Add AllowThousands flag to all integer type TryParse calls (#4948)

    Add AllowThousands to all integer type TryParse calls in Converter class

commit 868a7b1f3b5c39833e8d5dbdd2ad4b9fc6663ff5
Author: Tomasz Sołtysik <[email protected]>
Date:   Thu Aug 4 10:00:13 2022 +0200

    Breadcrumbs: Fix MaxItems collapsing logic (#4995)

    Looking at example in docs: Currently if there are 5 items and MaxItems is set to 5, breadcrumbs are collapsed. TO me it should collapse only when MaxItems is exceeded: 6 or more.

commit 10f2f9d3ad00e07d7a701ff8c63b8fa904adf8d5
Author: sensslen <[email protected]>
Date:   Wed Aug 3 12:48:08 2022 +0200

    MenuItem: Add optional Icon parameter (#4641)

    Co-authored-by: Simon Ensslen <[email protected]>

commit 4fd7d3b4cc8228adbd8c474736a61c3c6ea48e71
Author: Javier Goday <[email protected]>
Date:   Wed Aug 3 08:25:36 2022 +0200

    TimeLineItem: Add DotStyle attribute (#4635, #4999)

commit 91c570339bf900620270d585f01845bdcdf27a93
Author: AljazOblonsek <[email protected]>
Date:   Tue Aug 2 10:50:13 2022 +0200

    Table: Fix NoRecordsContent row changing background color on hover (#3105, #4963)

commit 48f81d3163b746d1c09a073e1a103a36f870d3a2
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Aug 2 10:42:37 2022 +0200

    Build(deps): Bump Microsoft.ApplicationInsights.AspNetCore in /src (#4954)

    Bumps [Microsoft.ApplicationInsights.AspNetCore](https://github.com/Microsoft/ApplicationInsights-dotnet) from 2.20.0 to 2.21.0.
    - [Release notes](https://github.com/Microsoft/ApplicationInsights-dotnet/releases)
    - [Changelog](https://github.com/microsoft/ApplicationInsights-dotnet/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/Microsoft/ApplicationInsights-dotnet/compare/2.20.0...2.21.0)

    ---
    updated-dependencies:
    - dependency-name: Microsoft.ApplicationInsights.AspNetCore
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <[email protected]>

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

commit 3f7076000b72034f45ff84e4a393d2bbd08f280d
Author: Benjamin Kappel <[email protected]>
Date:   Sat Jul 30 13:07:25 2022 -0500

    DatePicker: Fix KeyInterceptor Crash (#4987)

    * fixes #4897 and #4853

    * restructure call sequence of AfterRenderAsync to prio base class call

commit e2192a9af1346b850cb89d3a0b0aac9a0699b816
Author: Riley Nielsen <[email protected]>
Date:   Sat Jul 30 13:00:57 2022 -0500

    MudPicker: Value should reset when Form.Reset() is called. (#4968)

    * Reset the underlying MudPicker value in ResetValue.

    * Add datepicker to table reset test.

    * Fix broken form tests.

* Build(deps): Bump ReportGenerator from 5.1.9 to 5.1.10 in /src (#5219)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.9 to 5.1.10.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](https://github.com/danielpalme/ReportGenerator/compare/v5.1.9...v5.1.10)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.3.0 to 17.3.1 in /src (#5220)

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

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* DataGrid: Fixed several issues with filters. (#5203)

* Fixed several issues with filters.

* Renamed FilterEx to Filter.
Added more tests cases.

* Fixed culture issue where test was failing.

* MudSwipeArea: Add option to prevent default on touch events. (#3048)

-_-

* XML-Docs: Update time based parameters to include milliseconds (#5216)

* DataGrid: Update sort indicator from SetSortAsync (#5210)

* Form Inputs: Set Label property using Display attribute and For expression (#5225)

* Autocomplete: Add progress indicator and cancellation token (#4868)


Co-authored-by: Artjom Zabelin <[email protected]>
Co-authored-by: Benjamin Kappel <[email protected]>

* Build(deps): Bump FluentValidation from 11.2.1 to 11.2.2 in /src (#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](https://github.com/JeremySkinner/fluentvalidation/compare/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] <[email protected]>

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

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

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

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

* MudHighlighter: Support multiple highligted texts (#5165)

* RTLProvider: RightToLeft cascading parameter should be named. (#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 (#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](https://github.com/dotnet/aspnetcore/compare/v6.0.8...v6.0.9)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly.Server requirement (#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](https://github.com/dotnet/aspnetcore/compare/v6.0.8...v6.0.9)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly requirement (#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](https://github.com/dotnet/aspnetcore/compare/v6.0.8...v6.0.9)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* Build(deps): Update Microsoft.AspNetCore.Components requirement in /src (#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](https://github.com/dotnet/aspnetcore/compare/v6.0.8...v6.0.9)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* Build(deps): Update Microsoft.AspNetCore.Components.Web requirement (#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](https://github.com/dotnet/aspnetcore/compare/v6.0.8...v6.0.9)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* MudAutocomplete: Fix FullWidth (#5288)

* Autocomplete: Fix CSS issue (#5315)

* Update to 6.0.16

* Git: Exclude MacOS filesystem files (#5311)

* Docs: Corrected divider color after default change

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

* 6.0.17-dev.1

* DataGrid: Fixed minor spelling mistake (#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 (#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](https://github.com/microsoft/vstest/compare/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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 (#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](https://github.com/bUnit-dev/bUnit/compare/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] <[email protected]>

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

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

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

Co-authored-by: Jonas B <[email protected]>

* v6.0.16 master merge bugfix

* MudDataGrid: Added the case sensitivity when filtering string columns

* MudDataGrid: Added new hierarchy feature (#5273)

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

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

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

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

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

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

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

Co-authored-by: Juri Capovilla <[email protected]>

* net7: Use native mouse events (#5229)

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

MudForm: Only set Validation if For is not null

* Restore .gitignore change by 4fcb43dcd558ce38f0a4b6e812eb906a52b91c1e

* MudDataGrid: Check if property is writable before setting value. (#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 (#4197) (#5178)"

This reverts commit 9c2769f443db4dc7c4ce90def0d66c22c0888ee1.

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

This reverts commit 34e7e269011dda06973babc15232c86ae58a627b.

* Update to 6.0.17

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

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

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

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

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

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

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

* Docs: Add workaround for google analytics interop error

* Increase version in docs.js script src

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

Co-authored-by: Mike Surcouf <[email protected]>

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly.DevServer requirement (#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](https://github.com/dotnet/aspnetcore/compare/v6.0.9...v6.0.10)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly.Server requirement (#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](https://github.com/dotnet/aspnetcore/compare/v6.0.9...v6.0.10)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* Build(deps): Update Microsoft.AspNetCore.Components requirement in /src (#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](https://github.com/dotnet/aspnetcore/compare/v6.0.9...v6.0.10)

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* Build(deps): Update Microsoft.AspNetCore.Components.WebAssembly requirement (#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](https://github.com/dotnet/aspnetcore/compare/v6.0.9...v6.0.10)

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

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 (#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](https://github.com/bUnit-dev/bUnit/compare/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] <[email protected]>

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

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

* Trimming: Additional annotations (#5537)

Co-authored-by: Mike Surcouf <[email protected]>

* Tests: Make tests net7 friendly (#5559)

Co-authored-by: Mike Surcouf <[email protected]>

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

Co-authored-by: Mike Surcouf <[email protected]>

* MudDrawer: Remove event listeners (#5562)

Co-authored-by: Mike Surcouf <[email protected]>

* Build(deps): Update Microsoft.AspNetCore.Components.Web requirement (#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](https://github.com/dotnet/aspnetcore/compare/v6.0.9...v6.0.10)

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

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 (#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](https://github.com/fluentassertions/fluentassertions/compare/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] <[email protected]>

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

* MudCollapse: Remove Event Listeners (#5563)

Co-authored-by: Mike Surcouf <[email protected]>

* MudSwipeArea: Add Sensitivity and SwipeDelta (#5496)

* Add ILogger to MudComponentBase (#5549)

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

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

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

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

* Build(deps): Bump coverlet.msbuild from 3.1.2 to 3.2.0 in /src (#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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 (#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](https://github.com/nunit/nunit3-vs-adapter/compare/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] <[email protected]>

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

* ScrollManager: Add ScrollIntoView (#5564)

* Build(deps): Bump ColorCode.HTML from 2.0.13 to 2.0.14 in /src (#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] <[email protected]>

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

* MudDataGrid: Fix HierarchyColumn behavior (#5534)

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

Co-authored-by: Mike Surcouf <[email protected]>

* Docs: MudRadioGroup: vertical align (#5597)

* New Component: MudFileUpload (#5488)

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

This reverts commit 90b10764f94be0d71ee16a6b7eb50bb6a28c35e5.

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


Co-authored-by: Meinrad Recheis <[email protected]>

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

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.3.2 to 17.4.0 in /src (#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](https://github.com/microsoft/vstest/compare/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] <[email protected]>

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

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

* Tests: Fix some missing awaits (#5684)

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

* MudDataGrid: Add FormFieldChanged event (#5689)

* MudNavLink: Allow custom ActiveClass (#5619)

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

* Update to 6.0.18

* Snackbar: Testing a potential fix #5695

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

This reverts commit a22a4876f06cc290c8f10a9f65ed1ff97102403e.

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

Snackbar: Fix API break #5696 by PR #5310

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

* v6.0.19-dev1

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

* v6.0.19-dev2 (net7 support)

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

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

* vv6.0.19-dev3 (net7 support)

* MudDataGrid: Add GroupClassFunc and GroupStyleFunc (#5560)

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

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

* Build: Fix staging publish

* MudMenu: Fix MouseEventArgs on net7 on BSS (#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 (#5751)

* Build: Dont publish nuget release

* v6.1.8-mblichowski-dev1.2.0 update

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Keith <[email protected]>
Co-authored-by: Riley Nielsen <[email protected]>
Co-authored-by: Benjamin Kappel <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AljazOblonsek <[email protected]>
Co-authored-by: Javier Goday <[email protected]>
Co-authored-by: sensslen <[email protected]>
Co-authored-by: Simon Ensslen <[email protected]>
Co-authored-by: Tomasz Sołtysik <[email protected]>
Co-authored-by: John <[email protected]>
Co-authored-by: Marcus <[email protected]>
Co-authored-by: Jonny Larsson <[email protected]>
Co-authored-by: Meinrad Recheis <[email protected]>
Co-authored-by: Artyom M <[email protected]>
Co-authored-by: Bérenger Caby <[email protected]>
Co-authored-by: Berenger Caby <[email protected]>
Co-authored-by: Mehmet Can Karagöz <[email protected]>
Co-authored-by: Jeffrey Jangli <[email protected]>
Co-authored-by: Qingxiao Ren <[email protected]>
Co-authored-by: Anti-Apple4life <[email protected]>
Co-authored-by: Raffael Schärer <[email protected]>
Co-authored-by: Raffael Schärer <[email protected]>
Co-authored-by: Daniel <[email protected]>
Co-authored-by: Terry Phillips <[email protected]>
Co-authored-by: Daniel Haas <[email protected]>
Co-authored-by: Matthew Parker <[email protected]>
Co-authored-by: Sigurd <[email protected]>
Co-authored-by: Chris <[email protected]>
Co-authored-by: bennnos <[email protected]>
Co-authored-by: dustuu <[email protected]>
Co-authored-by: Shahriyar <[email protected]>
Co-authored-by: csombi <[email protected]>
Co-authored-by: lane88 <[email protected]>
Co-authored-by: Abdallh Bin Hatheem Ali <[email protected]>
Co-authored-by: Andrej Kmetík <[email protected]>
Co-authored-by: Manuel Grundner <[email protected]>
Co-authored-by: Riley Nielsen <[email protected]>
Co-authored-by: ArtworkAD <[email protected]>
Co-authored-by: Artjom Zabelin <[email protected]>
Co-authored-by: Benjamin Kappel <[email protected]>
Co-authored-by: Dan Heron <[email protected]>
Co-authored-by: Mike Surcouf <[email protected]>
Co-authored-by: Enderlook <[email protected]>
Co-authored-by: Mike Surcouf <[email protected]>
Co-authored-by: Dennis Rahmen <[email protected]>
Co-authored-by: XDFUN <[email protected]>
Co-authored-by: Jonas B <[email protected]>
Co-authored-by: nick <[email protected]>
Co-authored-by: Jon Hodgins <[email protected]>
Co-authored-by: Quentin Metge <[email protected]>
Co-authored-by: Julien Chevalier <[email protected]>
Co-authored-by: kiske1 <[email protected]>
Co-authored-by: Juri Capovilla <[email protected]>
Co-authored-by: سجاد Arash <[email protected]>
Co-authored-by: Ben Stein <[email protected]>
Co-authored-by: Hugo Castro de Deco <[email protected]>
Co-authored-by: vegguid <[email protected]>
Co-authored-by: 95Conor <[email protected]>
Co-authored-by: Jonas B <[email protected]>
Co-authored-by: Mike Surcouf <[email protected]>
Co-authored-by: Tyler Trahan <[email protected]>
Co-authored-by: Jason Gutierrez <[email protected]>
Co-authored-by: Yannis <[email protected]>
Co-authored-by: TDroogers <[email protected]>
Co-authored-by: Gary Chan <[email protected]>
Co-authored-by: dennml <[email protected]>
Co-authored-by: Daniele Corsini <[email protected]>
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 <[email protected]>
Co-authored-by: Benjamin Kappel <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 <[email protected]>

* 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 <[email protected]>

* 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 <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 <[email protected]>

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

Co-authored-by: Mike Surcouf <[email protected]>

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

Co-authored-by: Mike Surcouf <[email protected]>

* MudDrawer: Remove event listeners (MudBlazor#5562)

Co-authored-by: Mike Surcouf <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

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

* MudCollapse: Remove Event Listeners (MudBlazor#5563)

Co-authored-by: Mike Surcouf <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 <[email protected]>

* 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 <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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 <[email protected]>

* 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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
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] <[email protected]>

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

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

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: ArtworkAD <[email protected]>
Co-authored-by: Artjom Zabelin <[email protected]>
Co-authored-by: Benjamin Kappel <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dan Heron <[email protected]>
Co-authored-by: Javier Goday <[email protected]>
Co-authored-by: Mike Surcouf <[email protected]>
Co-authored-by: Enderlook <[email protected]>
Co-authored-by: Riley Nielsen <[email protected]>
Co-authored-by: Mike Surcouf <[email protected]>
Co-authored-by: Jonny Larsson <[email protected]>
Co-authored-by: Dennis Rahmen <[email protected]>
Co-authored-by: Meinrad Recheis <[email protected]>
Co-authored-by: XDFUN <[email protected]>
Co-authored-by: Jonas B <[email protected]>
Co-authored-by: nick <[email protected]>
Co-authored-by: Riley Nielsen <[email protected]>
Co-authored-by: Jon Hodgins <[email protected]>
Co-authored-by: Quentin Metge <[email protected]>
Co-authored-by: Julien Chevalier <[email protected]>
Co-authored-by: kiske1 <[email protected]>
Co-authored-by: Juri Capovilla <[email protected]>
Co-authored-by: سجاد Arash <[email protected]>
Co-authored-by: csombi <[email protected]>
Co-authored-by: Ben Stein <[email protected]>
Co-authored-by: Hugo Castro de Deco <[email protected]>
Co-authored-by: vegguid <[email protected]>
Co-authored-by: 95Conor <[email protected]>
Co-authored-by: Jonas B <[email protected]>
Co-authored-by: Mike Surcouf <[email protected]>
Co-authored-by: Mehmet Can Karagöz <[email protected]>
Co-authored-by: Tyler Trahan <[email protected]>
Co-authored-by: Jason Gutierrez <[email protected]>
Co-authored-by: Yannis <[email protected]>
Co-authored-by: TDroogers <[email protected]>
Co-authored-by: Gary Chan <[email protected]>
Co-authored-by: dennml <[email protected]>
Co-authored-by: Daniele Corsini <[email protected]>
Co-authored-by: Jeffrey Jangli <[email protected]>
Co-authored-by: Adam Renaud <[email protected]>
Co-authored-by: Pawel <[email protected]>
Co-authored-by: Daniel <[email protected]>
Co-authored-by: DoobieAsDave <[email protected]>
Co-authored-by: David Griesser <[email protected]>
Co-authored-by: Artyom M <[email protected]>
Co-authored-by: Abduwaris Ghujamniyaz <[email protected]>
Co-authored-by: Dennis Mlinaric <[email protected]>
Co-authored-by: Gopichandar Selvaraj <[email protected]>
Co-authored-by: Michel de Kok <[email protected]>
Co-authored-by: Andrew Palmer <[email protected]>
Co-authored-by: Florian Dengg <[email protected]>
Co-authored-by: Florian <[email protected]>
Co-authored-by: Jason Rebelo <[email protected]>
Co-authored-by: popandepo <[email protected]>
Co-authored-by: Stuart Aitken <[email protected]>
Co-authored-by: SinisterMaya <[email protected]>
Co-authored-by: Massimo Giambona <[email protected]>
Co-authored-by: Chris <[email protected]>
Co-authored-by: David V <[email protected]>
Co-authored-by: Lennart Kleymann <[email protected]>
Co-authored-by: Makhmutov Neil <[email protected]>
Co-authored-by: pars-dev <[email protected]>
Co-authored-by: Suenodk <[email protected]>
Co-authored-by: snakex64 <[email protected]>
Co-authored-by: Bevan Weiss <[email protected]>
Co-authored-by: Qian <[email protected]>
Co-authored-by: Hayden Ravenscroft <[email protected]>
Co-authored-by: Idan <[email protected]>
Co-authored-by: WalterWillis <[email protected]>
Co-authored-by: Martin Lantzsch <[email protected]>
3dots pushed a commit to 3dots/MudBlazor that referenced this pull request Mar 23, 2023
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

bug Unexpected behavior or functionality not working as intended hacktoberfest-accepted Issues and PRs which were accepted as Hacktoberfest submissions

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants