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
renovate[bot] on karma-sauce-launcher-4.x
build: update karma-sauce-launc… (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.