Steps to reproduce
I installed the following packages in Angular 18 application
"@uppy/angular": "^0.7.0",
"@uppy/core": "^4.2.1",
"@uppy/dashboard": "^4.1.0",
Followed the following instructions to setup in Angular Angular | Uppy
Added this code in the component.html
file
<uppy-dashboard [uppy]="uppy"> </uppy-dashboard>
and component.ts
file as
import {Component} from '@angular/core';
import {UppyAngularDashboardModule} from "@uppy/angular";
import {Uppy} from "@uppy/core";
@Component({
selector: 'app-file-upload',
standalone: true,
imports: [
UppyAngularDashboardModule
],
templateUrl: './file-upload.component.html',
styleUrls: [
'./file-upload.component.scss',
],
})
export class FileUploadComponent {
uppy: Uppy = new Uppy({
debug: true, autoProceed: true, animateOpenClose: false
});
}
However the animateOpenClose
is giving an error as
Also, the HTML show the following error
Expected behavior
The code should be working as given in the doc. Or the doc should be updated with clear instructions.
Actual behavior
I am getting error in declaring options for the uppy-dashboard
component.