Discussion for angular (2+) - need help? create a stackblitz with your issue to get help faster using this template: https://stackblitz.com/fork/angular-issue-repro2
AndrewKushnir on master
fix(router): Only retrieve stor… (compare)
AndrewKushnir on 12.0.x
fix(router): Only retrieve stor… (compare)
AndrewKushnir on 11.2.x
fix(router): Only retrieve stor… (compare)
AndrewKushnir on master
build(docs-infra): upgrade cli … (compare)
AndrewKushnir on master
build: update @babel/cli to ver… (compare)
AndrewKushnir on 12.0.x
build: update @babel/cli to ver… (compare)
AndrewKushnir on 12.0.x
refactor(dev-infra): move `getR… (compare)
AndrewKushnir on master
refactor(dev-infra): move `getR… (compare)
Hi everyone, does anyone know how to get the mat-error and mat-hit animations? I have made a custom the mat-error and mat-hint like elements and would like to animate them exactly as in material. Thank you.
Just in case if someone needs it:export const materrorhintanime = trigger("materrorhint",[
transition(':enter',[
style({
opacity:0,
transform: "translateY(-7px)"
}),
animate("200ms ease-out", style({
opacity:1,
transform: "translateY(0)"
}),)
]),
])
import { animate, style, transition, trigger } from "@angular/animations";
export const materrorhintanime = trigger("materrorhint",[
transition(':enter',[
style({
opacity:0,
transform: "translateY(-7px)"
}),
animate("200ms ease-out", style({
opacity:1,
transform: "translateY(0)"
}),)
]),
])
@bilusau, I don't know why you started here, and it looks that you know nothing about Angular. It would be best when you start reading with official docs on https://angular.io and get some basic info first.
I want when data insert button enabled,, when data remove button disabled... there is no form use
@ViewChildren
because it instantiates a QueryList
in fact, https://angular.io/api/core/QueryList and it has changes
observable.