mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
e42aa8aeb7
* feat(module: range-picker): support form * fix(module: range-picker): has no default value in from * fix: picker's close behaviour and range arrow's style is wrong * feat(module: datepicker): change placeholder on mouse over * style(module: datepicker): adjust range arrow Co-authored-by: James Yeung <shunjiey@hotmail.com>
17 lines
470 B
C#
17 lines
470 B
C#
|
|
namespace AntDesign.Internal
|
|
{
|
|
public class DatePickerStatus
|
|
{
|
|
internal string _initPicker = null;
|
|
/// <summary>
|
|
/// note that has picker selected value
|
|
/// </summary>
|
|
internal bool _hadSelectValue = false;
|
|
/// <summary>
|
|
/// note that has picker selected value. is would set to false when picker open every time.
|
|
/// </summary>
|
|
internal bool _currentShowHadSelectValue = false;
|
|
}
|
|
}
|