We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello I'm trying to use events like this: html:
<image-upload (removed)="onRemoved($event)" (uploadFinished)="onUploadFinished($event)" (uploadStateChanged)="onUploadStateChanged($event)"></image-upload>
in my component:
onUploadFinished(file: FileHolder) { console.log(file); } onRemoved(file: FileHolder) { console.log(file); } onUploadStateChanged(state: boolean) { console.log(state); }
When I select an image, I give some errors on browser console:
The text was updated successfully, but these errors were encountered:
I'm not sure if you ever resolved this but I looked through the change log and:
Typescript signature: [name: string]: any;
[name: string]: any;
onFileUploadFinish
uploadFinished
onRemove
removed
isPending
uploadStateChanged
This resolved the issue for me.
Sorry, something went wrong.
No branches or pull requests
Hello
I'm trying to use events like this:
html:
in my component:
When I select an image, I give some errors on browser console:
The text was updated successfully, but these errors were encountered: