Component
Timepicker
Describe the bug
onFocus and onBlur are called even when input is disabled
To Reproduce
<Form.Timepicker
label="This is the disabled state"
disabled
onFocus={() => console.log("@@@@@@ focus")}
onBlur={() => console.log("@@@@@ blur")}
/>
Expected behavior
onFocus and onBlur should not be invoked when disabled={true}
Additional context
Check the other form inputs as well
Ensure that onFocus is not called when input is disabled
Component
TimepickerDescribe the bug
onFocusandonBlurare called even when input is disabledTo Reproduce
Expected behavior
onFocusandonBlurshould not be invoked whendisabled={true}Additional context
Check the other form inputs as well
Ensure that
onFocusis not called when input is disabled