Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

MudAppBar: Fix default value of WrapContent (#6808, #6869) #6929

Merged
merged 3 commits into from
May 27, 2023

Conversation

henon
Copy link
Collaborator

@henon henon commented May 27, 2023

This is a hotfix of an accidental breaking change made by the PR #6808, which was remedied for MudToolbar with #6869 but for MudAppBar the wrong (breaking) default value was chosen, which is remedied in this PR.

@henon
Copy link
Collaborator Author

henon commented May 27, 2023

Any idea what's up with the MudExpansionPanel_Without_MultiExpansion_Doesnt_Crash_With_Multiple_Expanded_Tabs test?

@ScarletKuro
Copy link
Member

Any idea what's up with the MudExpansionPanel_Without_MultiExpansion_Doesnt_Crash_With_Multiple_Expanded_Tabs test?

Yes, there is some inconsistency in this test.
However, I usually resolve this issue by re-triggering the tests, which typically leads to successful outcome.
Sometimes, for unknown reason the output exceeds the maximum limit of 100 lines in FluentAssertions, resulting in the following message:

Output has exceeded the maximum of 100 lines. Increase FormattingOptions.MaxLines on AssertionScope or AssertionOptions to include more lines.

I had similar inconsistencies arising from object nesting, I fixed it with the following code:

[OneTimeSetUp]
public void Init()
{
    AssertionOptions.FormattingOptions.MaxDepth = 100;
}

[OneTimeTearDown]
public void Cleanup()
{
    AssertionOptions.FormattingOptions.MaxDepth = 5; //default
}

I guess you can do similar fix with AssertionOptions.FormattingOptions.MaxLines.

@henon henon merged commit 70fcd0c into MudBlazor:dev May 27, 2023
3 checks passed
@henon henon added the bug Something does not work as intended/expected label May 27, 2023
mblichowski added a commit to mblichowski/MudBlazor-extended that referenced this pull request May 31, 2023
* MudAutocomplete: Fix highlight of selected item when Strict is set to false (MudBlazor#6489)

* MudOverlay: Add nullable annotation. (MudBlazor#6665)

* MudMainContent: Add nullable annotation. (MudBlazor#6664)

* MudMainContent: Add nullable annotation.

* inconsistent test fail

* MudOverlay: CA2012: Use ValueTasks correctly (MudBlazor#6670)

* MudTabs: Fix XSS in Text (MudBlazor#5478) (MudBlazor#6680)

Co-authored-by: Sean O'Donnell <Sean.O'Donnell@americanfidelity.com>

* MudText: Add nullable annotation. (MudBlazor#6677)

* MudVirtualize: Add nullable annotation. (MudBlazor#6678)

* MudSimpleTable: Add nullable annotation. (MudBlazor#6679)

* MudBooleanInput: Add nullable annotation. (MudBlazor#6681)

* MudBooleanInput: Add nullable annotation.

* Update bug_report.yml (MudBlazor#6696)

* Form components: Add ResetAsync / ResetValueAsync (MudBlazor#6693)

* MudSwitch: LabelPosition.Start uses row-reverse instead of RTL (MudBlazor#6638)

* MudSwitch: Fixes a bug with LabelPosition.Start and character that exists in RTL alphabet
---------

Co-authored-by: Yan Gauthier <yan.gauthier@genikinc.com>

* Docs: Fix typo in toggle example (MudBlazor#6709)

* MudAutocomplete: Fix Race Condition MudBlazor#6475 (MudBlazor#6701)

* Dialog: Add ClassBackground Option to Support Blurred Background (MudBlazor#6725)

* Build(deps): Bump FluentValidation from 11.5.1 to 11.5.2 in /src (MudBlazor#6617)

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

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

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

* MudBreakpointProvider: Add nullable annotation (MudBlazor#6720)

* BreakpointService & ResizeService: KeyNotFoundException fix MudBlazor#3993 MudBlazor#3356 MudBlazor#3698 (MudBlazor#6727)

* BreakpointService & ResizeService: KeyNotFoundException fix MudBlazor#3993 MudBlazor#3356 MudBlazor#3698
* Add SubscribeAsync & UnsubscribeAsync

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

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

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

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

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

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

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

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

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

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

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

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

* Build(deps): Bump FluentAssertions from 6.10.0 to 6.11.0 in /src (MudBlazor#6733)

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

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

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

* MudChip, MudChipSet: Await where applicable (MudBlazor#6735)

* MudChip & MudChipSet await where applicable

* NotifySelection -> NotifySelectionAsync

* MudHighlighter: Add nullable annotation. (MudBlazor#6731)

* MudHighlighter: Add nullable annotation.

* MudDialog: Fix description of the DefaultFocus parameter (MudBlazor#6751)

* MudCollapse: Add nullable annotation. (MudBlazor#6747)

* MudDataGrid: Add drag and drop column reordering (MudBlazor#6700)

* MudDataGrid: Add Drag and Drop support for MudDataGrid



---------

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

* MudAppBar: Bottom=true should render <footer> instead of <header> (MudBlazor#6646)

* Fix HTML tag upon positioning MudAppBar at the bottom

* Add unit tests for AppBar fix

* Update copyright year in AppBarTests.cs

* Obsolete ICommand & CommandParameter (MudBlazor#6773)

* DateRangePicker: Highlight current date (MudBlazor#6753)

* DateRangePicker: Highlight current date as in normal DatePickers

* Added Tests

* MudPicker: HandleKeyDown was called twice (MudBlazor#6777)

* Build(deps): Bump bunit from 1.18.4 to 1.19.14 in /src (MudBlazor#6780)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.18.4 to 1.19.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.18.4...v1.19.14)

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

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

* MudButton: Add ability to set custom rel attribute content (MudBlazor#6301)

* SnackbarOptions: Remove Parameter attribute from non-component class. (MudBlazor#6801)

* MudAutoComplete: Add BeforeItemsTemplate and AfterItemsTemplate (MudBlazor#6752)

* MudAutoComplete: Add BeforItemsTemplate and AfterItemsTemplate

* MudTreeView: Don't accept clicks and selection changes for Disabled items (MudBlazor#6783)

* MudTreeView: Evaluate the Disabled-Parameter for Selection

* Added Tests for DoubleClick

* Returning early if component TreeView is disabled

* Allow expanding / collapsing TreeViewItems on disabled TreeViews

* Fix typo in size parameter. (MudBlazor#6807)

Co-authored-by: Riley Nielsen <rnielsen@Rileys-MacBook-Pro.local>

* MudDataGrid: Fix runtime exception with PageSizeOptions (MudBlazor#6784)

Co-authored-by: Yan Gauthier <yan.gauthier@genikinc.com>

* MudToolBar: Allow longer content (MudBlazor#6808)

* ToolBar: allow larger content

* Reset flex-wrap value for pagination-toolbar.

---------

Co-authored-by: Brecht Debaere <Brecht.Debaere@spray.com>

* MudTable: Avoid NoRecordsContent showing before loading data (MudBlazor#6811)

* Table: Initialize Loading to true to avoid NoRecordsContent showing

* Add unit tests

---------

Co-authored-by: Brecht Debaere <Brecht.Debaere@spray.com>
Co-authored-by: Riley Nielsen <rnielsen@Rileys-MacBook-Pro.local>

* MudPicker: Add OnClick event (MudBlazor#6797) (MudBlazor#6798)

Add OnClick event for all Pickers

* Build(deps): Bump ReportGenerator from 5.1.19 to 5.1.20 in /src (MudBlazor#6782)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.19 to 5.1.20.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.19...v5.1.20)

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

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

* MudMenu: Added Example with nested Menu (MudBlazor#6828)

* MudAutocomplete: Fix Value binding not updating (MudBlazor#6805)

* Fixes MudBlazor#5993
* AutocompleteImmediateCoerceValueTest added

* MudDropContainer: Fix bad index when dropping item on itself (MudBlazor#5006) (MudBlazor#6830)

* Docs: Remove ReadOnly from Form example (MudBlazor#6832)

* Remove ReadOnly from example

* Update MudFormExample.razor

* Docs: Toggle MudMini menu icon when menu is open. (MudBlazor#6384)

* MudDataGrid: FilterDefinition as interface (MudBlazor#6848)

* MudDataGrid: FilterDefinition as interface

* Evaluate FieldType only once

* MudTable: Fix discrepency with initial RowsPerPage in TablePager (MudBlazor#6776)

Co-authored-by: Yan Gauthier <yan.gauthier@genikinc.com>

* Build: Temporarily fix SDK at 7.0.203 (MudBlazor#6864)

* Build: Temporarily fix SDK version on build server (MudBlazor#6865)

* Build: Workaround Fix for 7.0.302 SDK bug (MudBlazor#6872)

* Build: Remove SDK version fix (MudBlazor#6873)

* MudTimePicker: Fix duplicate hour event in minute mode MudBlazor#6523 (MudBlazor#6599)

* MudTimepicker: Delete duplicate submit event (MudBlazor#6523)
* MudTimepicker: Resolved problem with hour event being called even in minute mode

Co-authored-by: sho <miomini3715@gmail.com>

* ISnackbar: Add RemoveByKey MudBlazor#6857 (MudBlazor#6860)

* Add "void ISnackbar.RemoveByKey(string)" API

* Add documentation for "ISnackbar.RemoveByKey"

* Add test for "ISnackbar.RemoveByKey"

* ScrollToTop: Add OnClick event (MudBlazor#6870)

* Added OnClick event for MudScrollToTop (MudBlazor#6517)

+ MudScrollToTop it is an invisible wrapper for all inner components is does not allow 'clicking' them. So i think that better way to handle clicking is to add event handler for MudScrollToTop.
+ Added tests for MudScrollToTop;

* Fixed return type of OnButtonClick + typo fixed.

+ Renamed MudScrollToTop.OnElementClick to MudScrollToTop.OnButtonClick;
+ Return type of MudScrollToTop.OnButtonClick (void -> Task) changed;
+ Typo fix;

* Direct JS call replaced with ScrollManager method call

Direct JS API call replaced with ScrollManager method call in visual test for ScrollToTop component

* Types of test parameters changed string->bool

* PickerToolbar: Fix issue with landscape mode for non-static pickers (MudBlazor#5867) (MudBlazor#6874)

* MudPickerToolbar: Fix issue with landscape mode for non static pickers (MudBlazor#5867)

* MudPickerToolbar: Add tests for MudPickerToolbar (MudBlazor#5867)

* fix table loading style (MudBlazor#6885)

* Build: Update AspNetCore Packages (MudBlazor#6894)

* Build: Update webcompiler to 3.5.44 (MudBlazor#6895)

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.6.0 in /src (MudBlazor#6902)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.5.0 to 17.6.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.5.0...v17.6.0)

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

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

* Tabs: Add TabHeaderClass property (MudBlazor#5424) (MudBlazor#6298)

* Tabs: Add TabToolbarClass property (MudBlazor#5424)

* Tabs: Rename TabToolbarClass to TabHeaderClass and also toolbar to tabHeader in doc strings (MudBlazor#5424)

* Build(deps): Bump Microsoft.CodeAnalysis.CSharp in /src (MudBlazor#6903)

Bumps [Microsoft.CodeAnalysis.CSharp](https://github.com/dotnet/roslyn) from 4.5.0 to 4.6.0.
- [Release notes](https://github.com/dotnet/roslyn/releases)
- [Changelog](https://github.com/dotnet/roslyn/blob/main/docs/Breaking%20API%20Changes.md)
- [Commits](https://github.com/dotnet/roslyn/commits)

---
updated-dependencies:
- dependency-name: Microsoft.CodeAnalysis.CSharp
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

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

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

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

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

* Build(deps): Bump bunit from 1.19.14 to 1.20.8 in /src (MudBlazor#6905)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.19.14 to 1.20.8.
- [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.19.14...v1.20.8)

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

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

* Build(deps): Bump ReportGenerator from 5.1.20 to 5.1.21 in /src (MudBlazor#6906)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.20 to 5.1.21.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.20...v5.1.21)

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

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

* MudToolBar: Optional Wrapping and Appbar compatibility (MudBlazor#6869)

* Added Parameter Wrapping to MudToolBar

* Fixed Documentation naming from Appbar to ToolBar

* Added Wrapping Parameter to AppBar.razor.cs

* Added Wrapping Parameter to AppBar.razor

* toolbar css now supports wrapping, and appbar-height

* Fixed missing parenthesis in _toolbar.scss

* possible fix for sass error

* Renamed Wrapping to WrapContent

* Remove newline in MudToolBar.razor

---------

Co-authored-by: Riley Nielsen <riley@nielsen.tech>

* Revert Build(deps): Bump Microsoft.CodeAnalysis.CSharp (MudBlazor#6903) (MudBlazor#6913)

* MudDataGrid: Removed duplicate code from filter header cell (MudBlazor#6912)

* Build: Fix build to 7.0.203 SDK until 7.0.302 SDK is fixed (MudBlazor#6915)

* MudToolBar: Add example and test for new WrapContent (MudBlazor#6916)

* MudDataGrid: Remove unused UnitTests.Viewer (MudBlazor#6928)

* MudAppBar: Fix default value of WrapContent (MudBlazor#6808, MudBlazor#6869) (MudBlazor#6929)

* MudAppBar: Fix default value of WrapContent (MudBlazor#6808, MudBlazor#6869)

* MudColorPicker: Fix/Enable color picker validation (MudBlazor#6841) (MudBlazor#6924)

Fixes: MudBlazor#6841

* MudDataGrid: Filterable false removes filter from dropdown in filters panel MudBlazor#6137 (MudBlazor#6212)

Co-authored-by: Ben Groseclose <bgroseclose@nhaschools.com>

* MudTable: Add methods to expand or collapse all groups (MudBlazor#6812)

* MudTable: Added "ToggleExpandGroups" to expand or collapse all groups

* Added documentation for the new "ToggleExpandGroups" feature

* Fixed dateformat on the releases-page (MudBlazor#6945)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: csombi <74978649+csombi@users.noreply.github.com>
Co-authored-by: Artyom M <artem.melnikov@live.com>
Co-authored-by: elodon <14009318+elodon@users.noreply.github.com>
Co-authored-by: Sean O'Donnell <Sean.O'Donnell@americanfidelity.com>
Co-authored-by: TDroogers <34547552+TDroogers@users.noreply.github.com>
Co-authored-by: SinisterMaya <yan.gauthier05@gmail.com>
Co-authored-by: Yan Gauthier <yan.gauthier@genikinc.com>
Co-authored-by: Oriol Mesa <urimr26cat@gmail.com>
Co-authored-by: Mehmet Can Karagöz <78308169+mckaragoz@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Robin <41902900+RickMcDee@users.noreply.github.com>
Co-authored-by: segfault- <david.luyk@gmail.com>
Co-authored-by: segfault <five90-segfault@outlook.com>
Co-authored-by: Meinrad Recheis <meinrad.recheis@gmail.com>
Co-authored-by: Martin Arndt <5111490+Eagle3386@users.noreply.github.com>
Co-authored-by: TehGM <TehGM@users.noreply.github.com>
Co-authored-by: Derek Welton <31353783+derekwelton@users.noreply.github.com>
Co-authored-by: Riley Nielsen <riley@nielsen.tech>
Co-authored-by: Riley Nielsen <rnielsen@Rileys-MacBook-Pro.local>
Co-authored-by: bdebaere <brechtdebaere@protonmail.com>
Co-authored-by: Brecht Debaere <Brecht.Debaere@spray.com>
Co-authored-by: Wesley Ferrera <wesleley@live.com>
Co-authored-by: Benjamin Höglinger-Stelzer <nefarius@dhmx.at>
Co-authored-by: ZephyrZiggurat <110614738+ZephyrZiggurat@users.noreply.github.com>
Co-authored-by: Mike Surcouf <mike@surcouf.je>
Co-authored-by: sho <66288825+sho12333@users.noreply.github.com>
Co-authored-by: sho <miomini3715@gmail.com>
Co-authored-by: Kumima <93973732+Kumima@users.noreply.github.com>
Co-authored-by: Vladimir Senchikhin <wind-up-bird@yandex.ru>
Co-authored-by: lostinmilkshake <38134495+lostinmilkshake@users.noreply.github.com>
Co-authored-by: Jing Ling <lingjing0921@live.com>
Co-authored-by: Łukasz Prajer <50521366+gaplin@users.noreply.github.com>
Co-authored-by: Tim Weidner <55436069+TimWeidner@users.noreply.github.com>
Co-authored-by: adgranger <131141262+adgranger@users.noreply.github.com>
Co-authored-by: Jason Rebelo <igotinfected@gmail.com>
Co-authored-by: Benjamin Groseclose <benjamin.groseclose@hotmail.com>
Co-authored-by: Ben Groseclose <bgroseclose@nhaschools.com>
mblichowski added a commit to mblichowski/MudBlazor-extended that referenced this pull request Aug 18, 2023
* MudAutocomplete: Fix highlight of selected item when Strict is set to false (MudBlazor#6489)

* MudOverlay: Add nullable annotation. (MudBlazor#6665)

* MudMainContent: Add nullable annotation. (MudBlazor#6664)

* MudMainContent: Add nullable annotation.

* inconsistent test fail

* MudOverlay: CA2012: Use ValueTasks correctly (MudBlazor#6670)

* MudTabs: Fix XSS in Text (MudBlazor#5478) (MudBlazor#6680)

Co-authored-by: Sean O'Donnell <Sean.O'Donnell@americanfidelity.com>

* MudText: Add nullable annotation. (MudBlazor#6677)

* MudVirtualize: Add nullable annotation. (MudBlazor#6678)

* MudSimpleTable: Add nullable annotation. (MudBlazor#6679)

* MudBooleanInput: Add nullable annotation. (MudBlazor#6681)

* MudBooleanInput: Add nullable annotation.

* Update bug_report.yml (MudBlazor#6696)

* Form components: Add ResetAsync / ResetValueAsync (MudBlazor#6693)

* MudSwitch: LabelPosition.Start uses row-reverse instead of RTL (MudBlazor#6638)

* MudSwitch: Fixes a bug with LabelPosition.Start and character that exists in RTL alphabet
---------

Co-authored-by: Yan Gauthier <yan.gauthier@genikinc.com>

* Docs: Fix typo in toggle example (MudBlazor#6709)

* MudAutocomplete: Fix Race Condition MudBlazor#6475 (MudBlazor#6701)

* Dialog: Add ClassBackground Option to Support Blurred Background (MudBlazor#6725)

* Build(deps): Bump FluentValidation from 11.5.1 to 11.5.2 in /src (MudBlazor#6617)

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

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

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

* MudBreakpointProvider: Add nullable annotation (MudBlazor#6720)

* BreakpointService & ResizeService: KeyNotFoundException fix MudBlazor#3993 MudBlazor#3356 MudBlazor#3698 (MudBlazor#6727)

* BreakpointService & ResizeService: KeyNotFoundException fix MudBlazor#3993 MudBlazor#3356 MudBlazor#3698
* Add SubscribeAsync & UnsubscribeAsync

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

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

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

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

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

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

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

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

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

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

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

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

* Build(deps): Bump FluentAssertions from 6.10.0 to 6.11.0 in /src (MudBlazor#6733)

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

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

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

* MudChip, MudChipSet: Await where applicable (MudBlazor#6735)

* MudChip & MudChipSet await where applicable

* NotifySelection -> NotifySelectionAsync

* MudHighlighter: Add nullable annotation. (MudBlazor#6731)

* MudHighlighter: Add nullable annotation.

* MudDialog: Fix description of the DefaultFocus parameter (MudBlazor#6751)

* MudCollapse: Add nullable annotation. (MudBlazor#6747)

* MudDataGrid: Add drag and drop column reordering (MudBlazor#6700)

* MudDataGrid: Add Drag and Drop support for MudDataGrid



---------

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

* MudAppBar: Bottom=true should render <footer> instead of <header> (MudBlazor#6646)

* Fix HTML tag upon positioning MudAppBar at the bottom

* Add unit tests for AppBar fix

* Update copyright year in AppBarTests.cs

* Obsolete ICommand & CommandParameter (MudBlazor#6773)

* DateRangePicker: Highlight current date (MudBlazor#6753)

* DateRangePicker: Highlight current date as in normal DatePickers

* Added Tests

* MudPicker: HandleKeyDown was called twice (MudBlazor#6777)

* Build(deps): Bump bunit from 1.18.4 to 1.19.14 in /src (MudBlazor#6780)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.18.4 to 1.19.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.18.4...v1.19.14)

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

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

* MudButton: Add ability to set custom rel attribute content (MudBlazor#6301)

* SnackbarOptions: Remove Parameter attribute from non-component class. (MudBlazor#6801)

* MudAutoComplete: Add BeforeItemsTemplate and AfterItemsTemplate (MudBlazor#6752)

* MudAutoComplete: Add BeforItemsTemplate and AfterItemsTemplate

* MudTreeView: Don't accept clicks and selection changes for Disabled items (MudBlazor#6783)

* MudTreeView: Evaluate the Disabled-Parameter for Selection

* Added Tests for DoubleClick

* Returning early if component TreeView is disabled

* Allow expanding / collapsing TreeViewItems on disabled TreeViews

* Fix typo in size parameter. (MudBlazor#6807)

Co-authored-by: Riley Nielsen <rnielsen@Rileys-MacBook-Pro.local>

* MudDataGrid: Fix runtime exception with PageSizeOptions (MudBlazor#6784)

Co-authored-by: Yan Gauthier <yan.gauthier@genikinc.com>

* MudToolBar: Allow longer content (MudBlazor#6808)

* ToolBar: allow larger content

* Reset flex-wrap value for pagination-toolbar.

---------

Co-authored-by: Brecht Debaere <Brecht.Debaere@spray.com>

* MudTable: Avoid NoRecordsContent showing before loading data (MudBlazor#6811)

* Table: Initialize Loading to true to avoid NoRecordsContent showing

* Add unit tests

---------

Co-authored-by: Brecht Debaere <Brecht.Debaere@spray.com>
Co-authored-by: Riley Nielsen <rnielsen@Rileys-MacBook-Pro.local>

* MudPicker: Add OnClick event (MudBlazor#6797) (MudBlazor#6798)

Add OnClick event for all Pickers

* Build(deps): Bump ReportGenerator from 5.1.19 to 5.1.20 in /src (MudBlazor#6782)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.19 to 5.1.20.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.19...v5.1.20)

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

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

* MudMenu: Added Example with nested Menu (MudBlazor#6828)

* MudAutocomplete: Fix Value binding not updating (MudBlazor#6805)

* Fixes MudBlazor#5993
* AutocompleteImmediateCoerceValueTest added

* MudDropContainer: Fix bad index when dropping item on itself (MudBlazor#5006) (MudBlazor#6830)

* Docs: Remove ReadOnly from Form example (MudBlazor#6832)

* Remove ReadOnly from example

* Update MudFormExample.razor

* Docs: Toggle MudMini menu icon when menu is open. (MudBlazor#6384)

* MudDataGrid: FilterDefinition as interface (MudBlazor#6848)

* MudDataGrid: FilterDefinition as interface

* Evaluate FieldType only once

* MudTable: Fix discrepency with initial RowsPerPage in TablePager (MudBlazor#6776)

Co-authored-by: Yan Gauthier <yan.gauthier@genikinc.com>

* Build: Temporarily fix SDK at 7.0.203 (MudBlazor#6864)

* Build: Temporarily fix SDK version on build server (MudBlazor#6865)

* Build: Workaround Fix for 7.0.302 SDK bug (MudBlazor#6872)

* Build: Remove SDK version fix (MudBlazor#6873)

* MudTimePicker: Fix duplicate hour event in minute mode MudBlazor#6523 (MudBlazor#6599)

* MudTimepicker: Delete duplicate submit event (MudBlazor#6523)
* MudTimepicker: Resolved problem with hour event being called even in minute mode

Co-authored-by: sho <miomini3715@gmail.com>

* ISnackbar: Add RemoveByKey MudBlazor#6857 (MudBlazor#6860)

* Add "void ISnackbar.RemoveByKey(string)" API

* Add documentation for "ISnackbar.RemoveByKey"

* Add test for "ISnackbar.RemoveByKey"

* ScrollToTop: Add OnClick event (MudBlazor#6870)

* Added OnClick event for MudScrollToTop (MudBlazor#6517)

+ MudScrollToTop it is an invisible wrapper for all inner components is does not allow 'clicking' them. So i think that better way to handle clicking is to add event handler for MudScrollToTop.
+ Added tests for MudScrollToTop;

* Fixed return type of OnButtonClick + typo fixed.

+ Renamed MudScrollToTop.OnElementClick to MudScrollToTop.OnButtonClick;
+ Return type of MudScrollToTop.OnButtonClick (void -> Task) changed;
+ Typo fix;

* Direct JS call replaced with ScrollManager method call

Direct JS API call replaced with ScrollManager method call in visual test for ScrollToTop component

* Types of test parameters changed string->bool

* PickerToolbar: Fix issue with landscape mode for non-static pickers (MudBlazor#5867) (MudBlazor#6874)

* MudPickerToolbar: Fix issue with landscape mode for non static pickers (MudBlazor#5867)

* MudPickerToolbar: Add tests for MudPickerToolbar (MudBlazor#5867)

* fix table loading style (MudBlazor#6885)

* Build: Update AspNetCore Packages (MudBlazor#6894)

* Build: Update webcompiler to 3.5.44 (MudBlazor#6895)

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.6.0 in /src (MudBlazor#6902)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.5.0 to 17.6.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.5.0...v17.6.0)

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

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

* Tabs: Add TabHeaderClass property (MudBlazor#5424) (MudBlazor#6298)

* Tabs: Add TabToolbarClass property (MudBlazor#5424)

* Tabs: Rename TabToolbarClass to TabHeaderClass and also toolbar to tabHeader in doc strings (MudBlazor#5424)

* Build(deps): Bump Microsoft.CodeAnalysis.CSharp in /src (MudBlazor#6903)

Bumps [Microsoft.CodeAnalysis.CSharp](https://github.com/dotnet/roslyn) from 4.5.0 to 4.6.0.
- [Release notes](https://github.com/dotnet/roslyn/releases)
- [Changelog](https://github.com/dotnet/roslyn/blob/main/docs/Breaking%20API%20Changes.md)
- [Commits](https://github.com/dotnet/roslyn/commits)

---
updated-dependencies:
- dependency-name: Microsoft.CodeAnalysis.CSharp
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

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

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

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

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

* Build(deps): Bump bunit from 1.19.14 to 1.20.8 in /src (MudBlazor#6905)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.19.14 to 1.20.8.
- [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.19.14...v1.20.8)

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

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

* Build(deps): Bump ReportGenerator from 5.1.20 to 5.1.21 in /src (MudBlazor#6906)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.20 to 5.1.21.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.20...v5.1.21)

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

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

* MudToolBar: Optional Wrapping and Appbar compatibility (MudBlazor#6869)

* Added Parameter Wrapping to MudToolBar

* Fixed Documentation naming from Appbar to ToolBar

* Added Wrapping Parameter to AppBar.razor.cs

* Added Wrapping Parameter to AppBar.razor

* toolbar css now supports wrapping, and appbar-height

* Fixed missing parenthesis in _toolbar.scss

* possible fix for sass error

* Renamed Wrapping to WrapContent

* Remove newline in MudToolBar.razor

---------

Co-authored-by: Riley Nielsen <riley@nielsen.tech>

* Revert Build(deps): Bump Microsoft.CodeAnalysis.CSharp (MudBlazor#6903) (MudBlazor#6913)

* MudDataGrid: Removed duplicate code from filter header cell (MudBlazor#6912)

* Build: Fix build to 7.0.203 SDK until 7.0.302 SDK is fixed (MudBlazor#6915)

* MudToolBar: Add example and test for new WrapContent (MudBlazor#6916)

* MudDataGrid: Remove unused UnitTests.Viewer (MudBlazor#6928)

* MudAppBar: Fix default value of WrapContent (MudBlazor#6808, MudBlazor#6869) (MudBlazor#6929)

* MudAppBar: Fix default value of WrapContent (MudBlazor#6808, MudBlazor#6869)

* MudColorPicker: Fix/Enable color picker validation (MudBlazor#6841) (MudBlazor#6924)

Fixes: MudBlazor#6841

* MudDataGrid: Filterable false removes filter from dropdown in filters panel MudBlazor#6137 (MudBlazor#6212)

Co-authored-by: Ben Groseclose <bgroseclose@nhaschools.com>

* MudTable: Add methods to expand or collapse all groups (MudBlazor#6812)

* MudTable: Added "ToggleExpandGroups" to expand or collapse all groups

* Added documentation for the new "ToggleExpandGroups" feature

* Fixed dateformat on the releases-page (MudBlazor#6945)

* MudMenuItem: Add AutoClose parameter for controlling closing behavior (MudBlazor#6942)

* MudMenuItem: Adds CloseMenuOnClick parameter to optionally prevent menu close on click

* MudMenuItem: Adds test for CloseMenuOnClick parameter

* MudMenuItem: Rename CloseMenuOnClick to AutoClose

* MudMenuItem: Correction in AutoClose parameter doc

* Docs: Correct typos (MudBlazor#6845)

* Update GridPage.razor

* Fix typo in LinkPage.razor

* Update MudMessageBox.razor.cs

* Inputs: Fix order of Value and Text changes for increased stability (MudBlazor#6900)

* PopoverService: New design (MudBlazor#6953)

* PopoverService: New design

* IPopoverService: Rename SubscribeOnPopoverUpdate/UnsubscribeOnSubscribeOnPopoverUpdate to Subscribe/Unsubscribe

* PopoverService: early exit in UpdatePopoverAsync

* ObserverManager: Remove sync Notify

* ObserverManager: Remove ILogger param name comment

* IPopoverService: Rename CountProvidersAsync to GetProviderCountAsync

* Rename MudPopoverState to MudPopoverHolder

* ObserverManager: Add remark about defunc

* Rename BackgroundTaskBase to BackgroundWorkerBase, add additional explanation in XML comments

* Obsolete IMudPopoverService, MudPopoverService, MudPopoverHandler

* Rename PopoverBase to MudPopoverBase

* Add explanations to IMudPopoverHolder

* Add comment to MudPopoverBase

* ObserverManager: remove obvious xml comments

* PopoverService: Remove ConfigureAwait(false) (MudBlazor#6981)

* MudExpansionPanels: Add nullable annotation. (MudBlazor#6976)

* MudExpansionPanels: Add nullable annotation.

* Some nits

* MudProgress: Add nullable annotation. (MudBlazor#6993)

* MudProgress: Add nullable annotation.

* Use NumericConverter<double>.AreEqual

* Implements MudBlazor#6988 (MudBlazor#6989)

* Revert "MudHighlighter: Add Markup parameter to render Text using MarkupString" (MudBlazor#7004)

This reverts commit 6499da0.

* Docs: MudDatePicker - Added example for IsDateDisabledFunc and AdditionalDateClassesFunc (MudBlazor#6262)

* Docs: MudDatePicker - Added example for IsDateDisabledFunc and AdditionalDateClassesFunc

* Update DatePickerPage.razor

Fixed the grammar to read "By setting the IsDateDisabledFunc parameter"

* Update DatePickerPage.razor

Correct minor typo

---------

Co-authored-by: Raffaele Borrelli <r.borrelli@nispa.onmicrosoft.com>
Co-authored-by: Riley Nielsen <riley@nielsen.tech>

* MudNavLink: Adjusted line-height and alignment when in mini drawer (MudBlazor#5848) (MudBlazor#6958)

* DocStrings: Handle base and derived class with same (MudBlazor#7016)

* MudImage: Add nullable annotation. (MudBlazor#6997)

* PopoverService: Move StateHasChanged from responsibility (MudBlazor#6998)

* PopoverService: Move StateHasChanged from responsibility

* MudSelect: Fix loss of focus to receive key strokes (MudBlazor#7023)

* MudSelect: Fix focus lose to receive key strokes

* Remove debug output

* ColorPickerTests: Fix flaky test (MudBlazor#7025)

* MudDialog: Add generic DialogParameters<T> (MudBlazor#7029)

* DialogParameters: Add generic variant

* PopoverService: Fix DisposeAsync deadlock on WPF/WinForm platforms (MudBlazor#7044)

* Revert "Build: Fix build to 7.0.203 SDK until 7.0.302 SDK is fixed (MudBlazor#6915)" (MudBlazor#7052)

This reverts commit 751011a.

* Revert "Build: Workaround Fix for 7.0.302 SDK bug (MudBlazor#6872)"

This reverts commit b8d8b71.

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.6.0 to 17.6.2 in /src (MudBlazor#6999)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.6.0 to 17.6.2.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.6.0...v17.6.2)

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

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

* Build(deps): Bump ReportGenerator from 5.1.21 to 5.1.22 in /src (MudBlazor#7000)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.21 to 5.1.22.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.21...v5.1.22)

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

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

* Build(deps): Bump Blazor-Analytics from 3.11.0 to 3.12.0 in /src (MudBlazor#7001)

Bumps [Blazor-Analytics](https://github.com/isc30/blazor-analytics) from 3.11.0 to 3.12.0.
- [Release notes](https://github.com/isc30/blazor-analytics/releases)
- [Commits](isc30/blazor-analytics@v3.11.0...v3.12.0)

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

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

* Build(deps): Bump NUnit3TestAdapter from 4.4.2 to 4.5.0 in /src (MudBlazor#6969)

Bumps [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) from 4.4.2 to 4.5.0.
- [Release notes](https://github.com/nunit/nunit3-vs-adapter/releases)
- [Commits](nunit/nunit3-vs-adapter@V4.4.2...V4.5.0)

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

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

* MudDataGrid: Add ability to completely use own IFilterDefinition (MudBlazor#7057)

* MudDataGrid: Add ability to completely use own IFilterDefinition

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

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

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

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

* Docs: Add multiple Accept example to FileUpload. (MudBlazor#6890)

* DataGrid: Allow resizing when overflowing with sticky columns (MudBlazor#6991)

Co-authored-by: Yan Gauthier <yan.gauthier@genikinc.com>

* FileUploadTests: set culture to InvariantCulture to remove dependency on local system culture. (MudBlazor#7030)

* MudDateRangePicker: Add support for `AdditionalDateClassesFunc` (MudBlazor#6202) (MudBlazor#6203)

* SortDefinition: Fix build warning about missing nullable (MudBlazor#7067)

* MudBlazor.Docs.Wasm: enable nullable (MudBlazor#7068)

* MudRating: Add nullable annotation. (MudBlazor#7069)

* MudStack: Add nullable annotation. (MudBlazor#7071)

* MudSwipeArea: Add nullable annotation. (MudBlazor#7072)

* ServiceCollectionExtensions: Fix registration with options (MudBlazor#7065)

* ServiceCollectionExtensions: Fix registration

* Remove ExcludeFromCodeCoverage from ServiceCollectionExtensions

* Revert "Remove ExcludeFromCodeCoverage from ServiceCollectionExtensions"

This reverts commit f166b30.

* MudRTLProvider: Add nullable annotation. (MudBlazor#7073)

* Docs: remove unused leftover in MudRTLProvider folder

* MudContainer: Add nullable annotation. (MudBlazor#7075)

* MudSlider: Add nullable annotation. (MudBlazor#7077)

* MudDataGrid: Add Localization Capabilites (MudBlazor#7024)

* MudDataGrid: Add Localization Capabilities

---------

Co-authored-by: Artyom M <artem.melnikov@live.com>
Co-authored-by: Meinrad Recheis <meinrad.recheis@gmail.com>

* DataGridServerMultiSelectionTest: use PropertyColumn instead (MudBlazor#7079)

* MudCheckBox: Add nullable annotation. (MudBlazor#7082)

* MudCheckBox: Add nullable annotation.

* MudElement: Add nullable annotation. (MudBlazor#7083)

* MudPaper: Add nullable annotation. (MudBlazor#7084)

* MudHidden: Add nullable annotation. (MudBlazor#7087)

* Palette: suppress obsolete warning in our code base (MudBlazor#7078)

* MudSwitch: Add nullable annotation. (MudBlazor#7088)

* EventUtil: nullable & XML comments (MudBlazor#7090)

* ResizeListenerService & BreakpointService: Allow user defined breakpoints (MudBlazor#7074)

* ResizeListenerService & BreakpointService: Allow user defined breakpoints
* Add Clone extension, update comments

* MudTimeline: Add nullable annotation (MudBlazor#7096)

Co-authored-by: Artyom M <artem.melnikov@live.com>

* MudTooltip: Add nullable annotation. (MudBlazor#7094)

Co-authored-by: Artyom M <artem.melnikov@live.com>

* MudToolBar: Add nullable annotation. (MudBlazor#7095)

* MudThemeProvider: Add nullable annotation. (MudBlazor#7097)

Co-authored-by: Artyom M <artem.melnikov@live.com>

* Localization: fix net6.0 dependencies (MudBlazor#7104)

* PopoverService: Clear all observers on DisposeAsync & nits (MudBlazor#7105)

* MudForm: Remove child form from parent form on Dispose (MudBlazor#7086)

* Removes child from from parent MudForm instance when it is disposed.
Fixes MudBlazor#7066
---------

Signed-off-by: Jimit Ndiaye <jimitndiaye@gmail.com>

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

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

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

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

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

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

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

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

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

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

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

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

* MudHighlighter: Add Markup parameter to render Text using HTML Markup (MudBlazor#7092)

* implements MudBlazor#7091

* Localization: sync dependency versions (MudBlazor#7112)

* MudSkeleton: Add nullable annotation. (MudBlazor#7113)

* MudScrollToTop: Add nullable annotation. (MudBlazor#7114)

* Move ScarletKuro to core team. (MudBlazor#7119)

* MudPagination: Add nullable annotation. (MudBlazor#7124)

* MudPageContentNavigation: Add nullable annotation. (MudBlazor#7125)

* MudBreadcrumbs: Add nullable annotation. (MudBlazor#7126)

* DateRangePicker: Add Parameter Clearable (MudBlazor#6430)

* DateRangePickerClearable

* Little Test

* MudDatePicker: Fix ArgumentOutOfRangeException (MudBlazor#7120) (MudBlazor#7127)

* Popover: Fix "Cannot read properties of null"(JS) (MudBlazor#7131)

* DataGrid: Make FilterDefinition compatible with EF Core (MudBlazor#7109)

Co-authored-by: Artyom M <artem.melnikov@live.com>

* Themes: nullable & XML comments (MudBlazor#7089)

* Themes: nullable & XML comments

* add Obsolete

* MudBaseButton: Add nullable annotation. (MudBlazor#7136)

* MudMessageBox: Add nullable annotation. (MudBlazor#7137)

* BrowserViewportSevice: Rework of IBreakpointService & IResizeService (MudBlazor#7098)

* BrowserViewportSevice: Rework of IBreakpointService & IResizeService

* Rename

* MudCarousel: Add nullable annotation. (MudBlazor#7138)

* ResizeService & BreakpointService: Obsolete (MudBlazor#7139)

* mudResizeListener.js: Fix cancelListener (MudBlazor#7140)

* Docs: Remove Warning on install (MudBlazor#7141)

When I install MudBlazor.Templates, I see this message:
'Warning: use of 'dotnet new --install' is deprecated. Use 'dotnet new install' instead.'

* Add SourceLink support (MudBlazor#7143)

* ResizeService & BreakpointService: Fix Obsolete (MudBlazor#7147)

* MudLayout: Add nullable annotation. (MudBlazor#7148)

* MudRender: Add nullable annotation. (MudBlazor#7149)

* SetHueSlider: fix flaky test (MudBlazor#7150)

* Extensions: Add nullable annotation. (MudBlazor#7151)

* MudSparkLine: Add nullable annotation. (MudBlazor#7152)

* Build: fix Tests for 1.21.9 version (MudBlazor#7157)

* Build(deps): Bump Microsoft.NET.Test.Sdk from 17.6.2 to 17.6.3 in /src (MudBlazor#7145)

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.6.2 to 17.6.3.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.6.2...v17.6.3)

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

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

* MudDataGrid: Fix flaky data grid test (MudBlazor#7160)

* Docs: Fix copy-to-clipboard function for certain snippets (MudBlazor#7161)

* MudForm/MudBaseInput: Fix swallowed user input on `FieldChanged` re-render (MudBlazor#7158) (MudBlazor#7159)

* MudForm/MudBaseInput: Fix swalled user input on FieldChanged re-render
(MudBlazor#7158)

Fixes: MudBlazor#7158

* Add unit test to validate changes

* Nuget package: Use PackageLicenseExpression instead of PackageLicenseFile (MudBlazor#7168)

* MudDataGrid: Added the EditDialogOptions to inline MudDialog for the DataGridEditMode.Form (MudBlazor#7162)

* MudDataGrid: Fix SingleSelection (MudBlazor#7021)

Co-authored-by: Artyom M <artem.melnikov@live.com>

* MudLink: Add nullable annotation. (MudBlazor#7175)

* MudNavMenu: Add nullable annotation. (MudBlazor#7176)

* MudFileUpload: Add AppendMultipleFiles property (MudBlazor#7027)

* MudFileUpload: Changed how OnChange method stores files when T = IReadOnlyList. (MudBlazor#6699)

* Changed returned value of FilesChanged from Files to _value

* Add FileUploadAppendMultiple property.

* Correct docs message.

* Add unit test.

---------

Co-authored-by: Riley Nielsen <riley@nielsen.tech>

* MudTabs: Fix flickering with initial ActivePanelIndex != 1 (MudBlazor#7058)

Co-authored-by: Pecze Tamás <tpecze@abesse.hu>

* DataGrid: Fix Select-all behaviour when filtered (MudBlazor#7142) (MudBlazor#7167)

* MudDrawer: Add nullable annotation. (MudBlazor#7186)

* TimePicker: Handle conversion error (MudBlazor#6947)

Co-authored-by: Stefan Jetzer <sj@devigus.com>

* MudTable/MudDataGrid: ItemSize parameter for components using Virtualize (MudBlazor#7190)

* add itemsize to mudvirtualize

* add itemsize to mudtable

* add itemsize muddatagrid

* MudDebouncedInput: Fix swallowed user input on component re-render (MudBlazor#7193) (MudBlazor#7194)

* MudDebouncedInput: Fix swalled user input on component re-render (MudBlazor#7193)

Fixes: MudBlazor#7193

* Fix formatting

* Suppress text update only when debounce is active

Fixes a regression where a default `Value` for a debounced field would
not set the `Text` property on initial render, even though the `Value`
was successfully updated.

* Add more tests

* MudRangeInput: fix clearable button is misaligned (MudBlazor#7200)

* MudDataGrid: Fix when nested property has same name (MudBlazor#7198)

* Docs: Fix reference type issue on `DropZone` reorder save example (MudBlazor#7191) (MudBlazor#7209)

* Build(deps): Bump ReportGenerator from 5.1.22 to 5.1.23 in /src (MudBlazor#7185)

Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.1.22 to 5.1.23.
- [Release notes](https://github.com/danielpalme/ReportGenerator/releases)
- [Commits](danielpalme/ReportGenerator@v5.1.22...v5.1.23)

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

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

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

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

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

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

* Date/Time Pickers: Add DisableUnderline param like in MudTextField (MudBlazor#7226)

* Fix issue_7070 (MudBlazor#7207)

* Build(deps): Bump FluentValidation from 11.5.2 to 11.6.0 in /src (MudBlazor#7184)

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

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

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

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

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

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

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

* MudMask: Fix Clearable with non-PatternMasks (MudBlazor#7238) (MudBlazor#7244)

* MudMask: Fix `Clearable` not working as expected

..with different `Mask` implementations other than `PatternMask`.

Fixes: MudBlazor#7238

* Tooltip: Fix arrow placement when using ChildContent (MudBlazor#7271)

* Docs: Updated Sponsors (MudBlazor#7288)

* Docs: Fixed content security policy for Carbon Ads (MudBlazor#7289)

* Doc: Fix wrong z-index order in themeing doc ( MudBlazor#6707) (MudBlazor#7294)

* Build(deps): Bump bunit from 1.21.9 to 1.22.19 in /src (MudBlazor#7279)

Bumps [bunit](https://github.com/bUnit-dev/bUnit) from 1.21.9 to 1.22.19.
- [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.21.9...v1.22.19)

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

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

* DataGridAdvancedExample.razor: Fix typo "gobally" (MudBlazor#7300)

* MudColor: Change ToString default mode to RGBA (MudBlazor#7275, MudBlazor#7303)

* MudDataGrid: Fix CurrentPage not working (MudBlazor#7267) (MudBlazor#7308)

* MudDataGrid: New parameter "SelectOnRowClick" (MudBlazor#6547)

* MudMenu: Add IsOpen property (MudBlazor#7266) (MudBlazor#7290)

* MudTable: Add doc for default column sorting direction and allow unsorted (MudBlazor#7293)

* MudFocusTrap: Add nullable annotation. (MudBlazor#7331)

* Prerendering: Check if JSRuntime is available (MudBlazor#7333)

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

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

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

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

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

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

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

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

* Optimization: Replace .Count() > 0 with .Any() (MudBlazor#6809)

* Replace .Count() > 0 with .Any()

* Use Count property instead of Count method

---------

Co-authored-by: Brecht Debaere <Brecht.Debaere@spray.com>

* MudInputControl: Add nullable annotation. (MudBlazor#7340)

* merge bugfix

* Active tab toggling merge bugfix

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Jimit Ndiaye <jimitndiaye@gmail.com>
Co-authored-by: csombi <74978649+csombi@users.noreply.github.com>
Co-authored-by: Artyom M <artem.melnikov@live.com>
Co-authored-by: elodon <14009318+elodon@users.noreply.github.com>
Co-authored-by: Sean O'Donnell <Sean.O'Donnell@americanfidelity.com>
Co-authored-by: TDroogers <34547552+TDroogers@users.noreply.github.com>
Co-authored-by: SinisterMaya <yan.gauthier05@gmail.com>
Co-authored-by: Yan Gauthier <yan.gauthier@genikinc.com>
Co-authored-by: Oriol Mesa <urimr26cat@gmail.com>
Co-authored-by: Mehmet Can Karagöz <78308169+mckaragoz@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Robin <41902900+RickMcDee@users.noreply.github.com>
Co-authored-by: segfault- <david.luyk@gmail.com>
Co-authored-by: segfault <five90-segfault@outlook.com>
Co-authored-by: Meinrad Recheis <meinrad.recheis@gmail.com>
Co-authored-by: Martin Arndt <5111490+Eagle3386@users.noreply.github.com>
Co-authored-by: TehGM <TehGM@users.noreply.github.com>
Co-authored-by: Derek Welton <31353783+derekwelton@users.noreply.github.com>
Co-authored-by: Riley Nielsen <riley@nielsen.tech>
Co-authored-by: Riley Nielsen <rnielsen@Rileys-MacBook-Pro.local>
Co-authored-by: bdebaere <brechtdebaere@protonmail.com>
Co-authored-by: Brecht Debaere <Brecht.Debaere@spray.com>
Co-authored-by: Wesley Ferrera <wesleley@live.com>
Co-authored-by: Benjamin Höglinger-Stelzer <nefarius@dhmx.at>
Co-authored-by: ZephyrZiggurat <110614738+ZephyrZiggurat@users.noreply.github.com>
Co-authored-by: Mike Surcouf <mike@surcouf.je>
Co-authored-by: sho <66288825+sho12333@users.noreply.github.com>
Co-authored-by: sho <miomini3715@gmail.com>
Co-authored-by: Kumima <93973732+Kumima@users.noreply.github.com>
Co-authored-by: Vladimir Senchikhin <wind-up-bird@yandex.ru>
Co-authored-by: lostinmilkshake <38134495+lostinmilkshake@users.noreply.github.com>
Co-authored-by: Jing Ling <lingjing0921@live.com>
Co-authored-by: Łukasz Prajer <50521366+gaplin@users.noreply.github.com>
Co-authored-by: Tim Weidner <55436069+TimWeidner@users.noreply.github.com>
Co-authored-by: adgranger <131141262+adgranger@users.noreply.github.com>
Co-authored-by: Jason Rebelo <igotinfected@gmail.com>
Co-authored-by: Benjamin Groseclose <benjamin.groseclose@hotmail.com>
Co-authored-by: Ben Groseclose <bgroseclose@nhaschools.com>
Co-authored-by: Davide Ferrari <xthehacker2000x@gmail.com>
Co-authored-by: Jeffrey Jangli <shogun.net@outlook.com>
Co-authored-by: Raffaele Borrelli <raf@silentio.it>
Co-authored-by: Raffaele Borrelli <r.borrelli@nispa.onmicrosoft.com>
Co-authored-by: joe-gregory <josephedward2nd@gmail.com>
Co-authored-by: Simon Schulze <57634354+SSchulze1989@users.noreply.github.com>
Co-authored-by: Eric M <41730826+EricEzaM@users.noreply.github.com>
Co-authored-by: Meduris <Meduris@users.noreply.github.com>
Co-authored-by: Samuel Meenzen <samuel@meenzen.net>
Co-authored-by: Jimit Ndiaye <jimitndiaye@gmail.com>
Co-authored-by: Dionysis Chasakis <chasakisd@gmail.com>
Co-authored-by: Alfonso Martín Tapia <15892182+alfonso-martin-tapia@users.noreply.github.com>
Co-authored-by: Barna Zoltán <barna.zoltan93@gmail.com>
Co-authored-by: Jakob Sorgeloos <sorgeloosjakob@gmail.com>
Co-authored-by: Geccoka <102720674+Geccoka@users.noreply.github.com>
Co-authored-by: Pecze Tamás <tpecze@abesse.hu>
Co-authored-by: Richard Davies <rathga@gmail.com>
Co-authored-by: Cerberus4444 <stefanjetzer@hotmail.com>
Co-authored-by: Stefan Jetzer <sj@devigus.com>
Co-authored-by: Marc Zwart <marcdevin@hotmail.com>
Co-authored-by: Mark Novak <67005577+tavanuka@users.noreply.github.com>
Co-authored-by: DennisOstertag <71711275+DennisOstertag@users.noreply.github.com>
Co-authored-by: o-khytrov <o.khytrov@gmail.com>
Co-authored-by: Jonny Larsson <jonny@gardnet.nu>
Co-authored-by: AlessandroMartinelli <a.martinelli1990@gmail.com>
Co-authored-by: hybrid2102 <1963205+hybrid2102@users.noreply.github.com>
Co-authored-by: Ben <bb@itconsultgmbh.de>
Co-authored-by: Alasdair Cooper <alasdair.code@hotmail.com>
Co-authored-by: Drastamat Sargsyan <60714122+DrastamatSargsyan@users.noreply.github.com>
Co-authored-by: Martin Stoeckli <developer@martinstoeckli.ch>
ScarletKuro pushed a commit that referenced this pull request Aug 19, 2023
* MudAppBar: Fix default value of WrapContent (#6808, #6869)
ilovepilav pushed a commit to ilovepilav/MudBlazor that referenced this pull request Nov 25, 2023
@henon henon deleted the appbar_hotfix branch December 30, 2023 11:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something does not work as intended/expected
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants