Compatibility Issue with Angular v19 - <progress-bar> Component Not Working
Hello,
I am encountering an issue while using the angular-progress-bar package (version 1.0.11) in an Angular v19 project with standalone components. Despite following the documentation and importing the ProgressBarModule correctly, the
Steps to Reproduce:
- Install the package using npm install angular-progress-bar.
- Import ProgressBarModule in the app.config.ts file: import { ProgressBarModule } from 'angular-progress-bar';
- Add ProgressBarModule to the providers array using importProvidersFrom: importProvidersFrom(ProgressBarModule)
- Use the
component in a standalone component's HTML file: <progress-bar [progress]="75" [color]="'#488aff'">
Observed Behavior:
The
Environment: Angular Version: 19.0.0 angular-progress-bar Version: 1.0.11 Node.js Version: [Your Node.js version] Browser: [Browser and version] Additional Notes: The issue might be related to compatibility with Angular v19 and its standalone component architecture. If the package is not yet compatible with Angular v19, please provide guidance or update the package to support the latest Angular version. Thank you for your assistance!