ant-design-blazor/components/date-picker/internal/DatePickerStatus.cs
笨木头 e42aa8aeb7 feat(module: range-picker): support form (#496)
* 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>
2020-08-14 12:43:48 +08:00

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;
}
}