Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
AdornmentColor="@AdornmentColor" IconSize="@IconSize" OnBlur="HandleOnBlur"
Clearable="@Clearable" OnClearButtonClick="HandleClearButtonClick"
@attributes="UserAttributes" />
<MudPopover Class="" Open=@(_isOpen) MaxHeight="@MaxHeight" AnchorOrigin="@AnchorOrigin" TransformOrigin="@TransformOrigin" RelativeWidth="true">
<MudPopover Class="@PopoverClass" Style="@PopoverStyle" Open=@(_isOpen) MaxHeight="@MaxHeight" AnchorOrigin="@AnchorOrigin" TransformOrigin="@TransformOrigin" RelativeWidth="true">
@if (ShowToolbar || SubmitOnClose == false)
{
<div class="d-flex">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ protected override void OnInitialized()
[CascadingParameter(Name = "Standalone")]
internal bool StandaloneEx { get; set; } = true;

[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public string PopoverClass { get; set; }

[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public string PopoverStyle { get; set; }

/// <summary>
/// The date format that determines the text and wheel order. Default is Thread.CurrentThread.CurrentUICulture.DateTimeFormat.ShortDatePattern.
/// </summary>
Expand Down