mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
477c57f9db
* feat(module: table): allow access to filter operator and condition * feat(module: table): allow access to filter operator and condition * feat(module:table): allow remove the first filter * Update Column.razor * feat(module:table): modify closing button position * feat(module:table): match new style * feat(module:table): add header column divider * fix(module:table): apply filter when close the filter panel by clicking the filter icon * Update Column.razor * style(module:table): trim Column.razor * Update Column.razor * Update Column.razor * Update Column.razor * Update Column.razor * fix(module:overlaytrigger): fix overlay not close after overlay size changes * unify muiltiple filter popup containers to one
99 lines
4.3 KiB
C#
99 lines
4.3 KiB
C#
@namespace AntDesign
|
|
@inherits OverlayTrigger
|
|
|
|
@using AntDesign.Internal
|
|
|
|
@if (ChildContent != null)
|
|
{
|
|
<div class="@ClassMapper.Class" @ref="@Ref" Id="@Id" style="display: inline-flex; @Style"
|
|
@onclick="OnClickDiv"
|
|
@onmouseenter="OnTriggerMouseEnter"
|
|
@onmouseleave="OnTriggerMouseLeave"
|
|
@oncontextmenu="OnTriggerContextmenu"
|
|
@onfocusin="OnTriggerFocusIn"
|
|
@onfocusout="OnTriggerFocusOut"
|
|
@oncontextmenu:preventDefault>
|
|
@ChildContent
|
|
</div>
|
|
}
|
|
@if (Unbound != null)
|
|
{
|
|
@Unbound(RefBack)
|
|
}
|
|
|
|
|
|
<CascadingValue Value="this" Name="Trigger" IsFixed="@true">
|
|
<CascadingValue Value="@ArrowPointAtCenter" Name="ArrowPointAtCenter">
|
|
<Overlay @ref="_overlay"
|
|
OnOverlayMouseEnter="OnOverlayMouseEnter"
|
|
OnOverlayMouseLeave="OnOverlayMouseLeave"
|
|
OnOverlayMouseUp="OnOverlayMouseUp">
|
|
|
|
<div class="ant-popover-content">
|
|
<div class="ant-popover-arrow">
|
|
<span class="ant-popover-arrow-content"></span>
|
|
</div>
|
|
<div class="ant-popover-inner" role="tooltip">
|
|
<div class="ant-popover-inner-content">
|
|
<div class="ant-popover-message">
|
|
@if (IconTemplate != null)
|
|
{
|
|
@IconTemplate
|
|
}
|
|
else
|
|
{
|
|
<Icon Type="@Icon" />
|
|
}
|
|
<div class="ant-popover-message-title">
|
|
@if (TitleTemplate != null)@TitleTemplate else @Title
|
|
</div>
|
|
</div>
|
|
<div class="ant-popover-buttons">
|
|
@if (CancelButtonProps != null)
|
|
{
|
|
<Button OnClick="@Cancel" Size="@AntSizeLDSType.Small"
|
|
Block="@CancelButtonProps.Block"
|
|
Ghost="@CancelButtonProps.Ghost"
|
|
Search="@CancelButtonProps.Search"
|
|
Loading="@CancelButtonProps.Loading"
|
|
Type="@CancelButtonProps.Type"
|
|
Shape="@CancelButtonProps.Shape"
|
|
Icon="@CancelButtonProps.Icon"
|
|
Disabled="@CancelButtonProps.Disabled"
|
|
Danger="@CancelButtonProps.IsDanger">
|
|
@CancelText
|
|
</Button>
|
|
}
|
|
else
|
|
{
|
|
<Button OnClick="@Cancel" Size="@AntSizeLDSType.Small">
|
|
@CancelText
|
|
</Button>
|
|
}
|
|
@if (OkButtonProps != null)
|
|
{
|
|
<Button OnClick="@Confirm" Size="small" Type="@OkType"
|
|
Block="@OkButtonProps.Block"
|
|
Ghost="@OkButtonProps.Ghost"
|
|
Search="@OkButtonProps.Search"
|
|
Loading="@OkButtonProps.Loading"
|
|
Shape="@OkButtonProps.Shape"
|
|
Icon="@OkButtonProps.Icon"
|
|
Disabled="@OkButtonProps.Disabled"
|
|
Danger="@OkButtonProps.IsDanger">
|
|
@OkText
|
|
</Button>
|
|
}
|
|
else
|
|
{
|
|
<Button OnClick="@Confirm" Size="small" type="@OkType">
|
|
@OkText
|
|
</Button>
|
|
}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Overlay>
|
|
</CascadingValue>
|
|
</CascadingValue> |