I'm using ng2-file-upload module for Angular2 and I want to have a drag and drop area and at the same time the posibility to click in that area and select a single file.
In their examples it is separated and there is no example with both together. For example:
<div ng2FileDrop
[ngClass]="{'nv-file-over': hasBaseDropZoneOver}"
(fileOver)="fileOverBase($event)"
[uploader]="uploader"
class="well my-drop-zone">
Base drop zone
</div>
Single
<input type="file" ng2FileSelect [uploader]="uploader" />
Thanks!