kukhariev / ngx-uploadx

Angular Resumable Upload Module
https://github.com/kukhariev/ngx-uploadx
MIT License
43 stars 23 forks source link

Unable to build the angular application due to **uploadx** #452

Closed akshaybogar1984 closed 3 months ago

akshaybogar1984 commented 3 months ago

Description: Unable to build the angular application due to uploadx

Steps to reproduce:

  1. execute npm i ngx-uploadx in our sample angular application
  2. build is failing after build.

@Component({ selector: 'app-home', templateUrl: <input type="file" [**uploadx**]="options" (state)="onUpload($event)"> })

kukhariev commented 3 months ago

Yes, that's a typo. Thank you very much!

@Component({
  selector: 'app-home',
  template: `
  <input type="file" [uploadx]="options" (state)="onUpload($event)">
  `
})