I have input type "file".
<input type="file" class="someCssClass"
(drop)="onImageDrop($event)" required>
I want to restrict user so that they can't click on the file box to select a file to upload. Only drag and drop should be permitted on the file input box.
But how can I restrict the user? Please help as user is able to click on the file input box and browse folder option is coming on click which I don't want. Drag and Drop is working as expected and I am fine with that.