Questions tagged [angular-transitions]

It is about the CSS templates related to ngAnimate.

It is about the CSS templates related to ngAnimate. ngAnimate is the angular component and transitions is the CSS implementation for that component.

20 questions
0
votes
1 answer

angular 5 "Function expressions are not supported in decorators"

I'm having a hard time compiling my angular project with ng build --prod the problem comes in the component IndexComponent : index.componenent.ts import { Component, OnInit } from '@angular/core'; import { indexTransition } from…
tbarbot
  • 225
  • 1
  • 4
  • 18
0
votes
1 answer

Angular 5 and transition only in 'new' items

My component's template renders a list:
{{ m.name }}
The component animates it @Component({ selector: 'app-client-detail', templateUrl:…
0
votes
1 answer

What is Equivalent of next in $routeChangeStart in $transitions

I am building a permission-based access control app in angularjs. I want the parameter in $transitions which would be equivalent to 'next' parameter in $routeChangeStart. function ($rootScope, $state, $transitions, LoginService) { …
chan
  • 274
  • 1
  • 5
  • 24
0
votes
0 answers

Angular 2 determine state based on element class

I have carousel in Angular 2 and I want to add transitions to it. I did Tour of Heroes tutorial and so I have in app.component.ts:
0
votes
2 answers

How to add translations to $translateProvider from outside the config?

I am new to angular js. For language translation I am using angular-translate service in my work.I am getting the entire translations which I need to assign in $translateProvider by an API call response.I know that I can assign the translations to…
1
2