mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
da55e9e7e8
* fix: add class name prefix for zoom and slide-up animations. * fix(module: popconfirm): fix animation * fix(module: popover): correct animation, sync de
46 lines
2.1 KiB
C#
46 lines
2.1 KiB
C#
@namespace AntDesign
|
|
@inherits DatePickerBase<TValue>
|
|
@typeparam TValue
|
|
@using AntDesign.Internal;
|
|
|
|
<CascadingValue Value='$"{PrefixCls}-dropdown"' Name="PrefixCls">
|
|
<OverlayTrigger @ref="@_dropDown"
|
|
Visible="Open"
|
|
IsButton="@true"
|
|
Disabled="Disabled"
|
|
PopupContainerSelector="@PopupContainerSelector"
|
|
OnVisibleChange="visible => { AutoFocus = visible; OnOpenChange.InvokeAsync(visible); }"
|
|
OverlayEnterCls="ant-slide-up-enter ant-slide-up-enter-active ant-slide-up"
|
|
OverlayLeaveCls="ant-slide-up-leave ant-slide-up-leave-active ant-slide-up"
|
|
Trigger="new TriggerType[] { TriggerType.Click }">
|
|
<Overlay>
|
|
<div class="@(PrefixCls)-panel-container">
|
|
<div class="@(PrefixCls)-panel">
|
|
<DatePickerPanelChooser TValue="TValue" DatePicker="@this" OnSelect="async (date, index) => await OnSelect(date)" />
|
|
</div>
|
|
</div>
|
|
</Overlay>
|
|
<Unbound>
|
|
<div class="@ClassMapper.Class"
|
|
@ref="@context.Current"
|
|
style="@Style"
|
|
Id="@Id">
|
|
<DatePickerInput @ref="_inputStart"
|
|
PrefixCls="@PrefixCls"
|
|
Size="@Size"
|
|
Disabled="@Disabled"
|
|
Value="@GetInputValue(0)"
|
|
Placeholder="@_placeholders[0]"
|
|
ReadOnly="@InputReadOnly"
|
|
AutoFocus="@AutoFocus"
|
|
OnClick="async e => { await OnInputClick(); }"
|
|
OnKeyUp="@OnKeyUp"
|
|
OnInput="e => OnInput(e, 0)"
|
|
ShowTime="@(Picker == DatePickerType.Time)"
|
|
OnClickClear="e => ClearValue(0)"
|
|
AllowClear="@AllowClear" />
|
|
</div>
|
|
</Unbound>
|
|
</OverlayTrigger>
|
|
</CascadingValue>
|