Closed Mr-Vinti closed 5 months ago
Yes, it will be there is this month itself.
i can do it @Napster2210
@Tweniee, can you help me to solve ngx spinner issue? I can see only loaidng... not svg spinner
@diamond97dev sure, tell me how can help you.
issue was that I used not matched css in angular json. I tested ngx-spinner in my angular latest version 17.0.4, and all was good.
thanks for reply, I already fixed the issue.
On Thu, Nov 30, 2023 at 2:48 PM Abhishek Upadhyay @.***> wrote:
@diamond97dev https://github.com/diamond97dev sure, tell me how can help you.
— Reply to this email directly, view it on GitHub https://github.com/Napster2210/ngx-spinner/issues/270#issuecomment-1833720742, or unsubscribe https://github.com/notifications/unsubscribe-auth/BBQLDTERMADA3HSVGURET6TYHB6ARAVCNFSM6AAAAAA7U4QSKGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMZTG4ZDANZUGI . You are receiving this because you were mentioned.Message ID: @.***>
Yes, it will be there is this month itself.
@Napster2210, any updates ?
@kirandeepkaur13 Yes, it will be released in this month.
its ok on angular 17 , you have to use below version of angular material
"@angular/cdk": "^16.2.12", "@angular/material": "^16.2.12", "ngx-spinner": "~16.0.2",
Hi @Napster2210 ,
any progress? This is only library that is holding me back from migrating to angular 17.
Thanks
The current version of the library works fine with Angular v17 app. Just provide animationsAsync
in app.config.ts (in case if your app is standalone) and import related services/modules.
And call it in your component;
and voila
Works for me with Angular Material 17.0.3
@sebastianhaberey can you provide your package.json content, please?
Thanks for sharing, Sebastian! It looks like i was also able to run an install with the latest versions of angular. That's weird because ngx-spinner was throwing me an error before that it needed a version up to angular 16
@Napster2210
Just following up on when 17 will be available? It's not working for me on Angular 17. The overlay comes up and it displays the text in small size, but the animations don't show up. I can show and hide the overlay, just the animations not showing.
For some additional context, below is the reason why I had to updated to Angular 17. There's a high severity vuln. in 16 that hasn't been fixed.
Any updates on Angular 17 support? It's already two months since the release.
@Napster2210 Just following up on when 17 will be available? It's not working for me on Angular 17. The overlay comes up and it displays the text in small size, but the animations don't show up. I can show and hide the overlay, just the animations not showing.
Same issue here ! . Angular v17. No animation , just text and overlay !
Ngx-Spinner 16.0.2 si funciona en angular 17
<ngx-spinner fullScreen="false" type="ball-spin-clockwise"
size="medium" color="#5CC87A" bdColor="transparent">
found fix, you should add your animations manually to angular.json:
"architect": {
"build": {
...
"options": {
...
"styles": [
"node_modules/ngx-spinner/animations/ball-spin-clockwise.css",
"src/styles.css"
],
...
@Tweniee, can you help me to solve ngx spinner issue? I can see only loaidng... not svg spinner
i have the same issue
Sure
Not sure about the progress of this but @mrmercc solution works for me
Not sure about the progress of this but @mrmercc solution works for me
If it works, don't touch it :))
I can confirm with the above guidance from @mrmercc and the hint from @denhaandrei to import the animations it works fine for me with Angular 17.3.1
I tried both options and it is not showing the overlay/text/image.
AppConfig:
Package.json:
AppComponent.html:
AppComponent.ts:
Angular.json:
I found the issue and fixed it. Thanks @mrmercc , the solution you proposed works for me.
Any my issue is I specified name of the spinner in html and missed in the show and hide method.
So I fixed that by
this.spinnerService.show("pageSpinner");
V17 is now available: https://www.npmjs.com/package/ngx-spinner/v/17.0.0
Hello,
Thank you for bumping the version. I have validated that the new version is working perfectly.
Angular recently launched v17. Any plans on supporting the new version?