We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It looks like some css margin/paddings are not aligned with mud blazor project. I think when 7.0.0 was published it was ok (but not 100% sure)
Setup MudBlazor version: 7.12.0 CodeBeam.MudBlazor.Extensions version: 7.0.2
Code example
<MudGrid> <MudItem lg="4"> <MudTextField @bind-Value="TextValue" Label="Outlined" Variant="Variant.Outlined"></MudTextField> </MudItem> <MudItem xs="12" sm="4" Class="d-flex gap-4"> <MudSelectExtended MultiSelection="true" ItemCollection="_states" SearchBox="true" T="string" Label="Standard Search" Variant="Variant.Outlined" /> </MudItem> </MudGrid> @code { public string TextValue { get; set; } private string[] _states = { "Alabama", "Alaska", "American Samoa", "Arizona", "Arkansas", "California", "Colorado", "Connecticut", "Delaware", "District of Columbia", "Federated States of Micronesia", "Florida", "Georgia", "Guam", "Hawaii", "Idaho", "Illinois", "Indiana", "Iowa", "Kansas", "Kentucky", "Louisiana", "Maine", "Marshall Islands", "Maryland", "Massachusetts", "Michigan", "Minnesota", "Mississippi", "Missouri", "Montana", "Nebraska", "Nevada", "New Hampshire", "New Jersey", "New Mexico", "New York", "North Carolina", "North Dakota", "Northern Mariana Islands", "Ohio", "Oklahoma", "Oregon", "Palau", "Pennsylvania", "Puerto Rico", "Rhode Island", "South Carolina", "South Dakota", "Tennessee", "Texas", "Utah", "Vermont", "Virgin Island", "Virginia", "Washington", "West Virginia", "Wisconsin", "Wyoming", }; private bool SearchItems(string value, string searchString) { if (searchString == "") { return true; } if (value.StartsWith(searchString, StringComparison.CurrentCultureIgnoreCase)) { return true; } return false; } }
Image
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It looks like some css margin/paddings are not aligned with mud blazor project. I think when 7.0.0 was published it was ok (but not 100% sure)
Setup
MudBlazor version: 7.12.0
CodeBeam.MudBlazor.Extensions version: 7.0.2
Code example
Image
The text was updated successfully, but these errors were encountered: