We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I am using version “ngx-file-drag-drop”: “^10.0.0” for an angular project with angular 18.
When integrating the module into my module, I get the following error message during import:
import { NgxFileDragDropModule } from 'ngx-file-drag-drop';
The text was updated successfully, but these errors were encountered:
What is the error message?
Sorry, something went wrong.
Oh, you're trying to import it as a module. You need to import it as a standalone component instead.
import { Component } from '@angular/core'; import { NgxFileDragDropComponent } from 'ngx-file-drag-drop'; @Component({ selector: 'my-selector', standalone: true, imports: [ NgxFileDragDropComponent, ], templateUrl: './app.component.html', styleUrl: './app.component.css', })
I will need update the documentation and examples.
Thank's
No branches or pull requests
I am using version “ngx-file-drag-drop”: “^10.0.0” for an angular project with angular 18.
When integrating the module into my module, I get the following error message during import:
import { NgxFileDragDropModule } from 'ngx-file-drag-drop';
The text was updated successfully, but these errors were encountered: