jrquick17 / ionic4-tooltips

Tooltips module for AngularJS/Angular2+ and Ionic 2+.
https://ionic4-tooltips.jrquick.com
MIT License
12 stars 9 forks source link

Ionic 5 + Angular 9 requires @angular/animations. #10

Closed JeongJun-Lee closed 3 years ago

JeongJun-Lee commented 4 years ago

By manual, when BrowserAnimationsModule is added to app.module.ts, it also requires to install @angular/animations. There is no error on installing except for upper thing, but unfortunately silently it doesn't work without any error. It is looks like not ready to Ionic5+Angular9.

jrierab commented 4 years ago

In Ionic 5, use also: npm install @angular/animations --save

Then, there was a problem with the animation if the tooltip position was not specified. I simply added: positionV='bottom' ... and then all tooltips began to work.

jrquick17 commented 3 years ago

I have added @angular/animations to peer dependencies in v2.0.3. Thanks!