Nikita Barsukov
Nikita Barsukov
- [ ] Show the modules that are actually required in the example - [X] Be flexible enough for wide area of special cases, like dialog components
stackblitz' developers know about angular 13 problem https://github.com/stackblitz/core/issues/1657 Also, something wrong with latest version of angular 12. It worked few days ago :( I guess we should wait for some...
Let's dont merge until merging of this PR https://github.com/Tinkoff/taiga-ui/pull/2322
Our internal teams also requires `min`/`max` input props for this input
Probably, it is impossible to fix until fixing this issue: https://github.com/angular/angular/issues/10887#issuecomment-421289798 Deprecated FieldError component uses `Default`-change detection strategy (that is why it works). Our new pipe requires observable with changes...
Another **not** perfect solution: ```ts export class TuiFieldErrorPipe implements PipeTransform { private readonly isTouched$ = this.refresh$.pipe( throttleTime(200), startWith(null), map(() => this.touched), distinctUntilChanged(), tuiZonefree(this.ngZone), ); // ... constructor( @Inject(NgZone) private readonly...
@vladimirpotekhin @waterplea let's discuss)
Utility `markControlAsTouchedAndValidate` does not help(
It is **only** reproducible **for Mac OS Big Sure | Safari 14.1.** **Catalina | Safari 13.1 (no bug):** https://user-images.githubusercontent.com/35179038/190190632-31a1ae3d-933f-4445-bc9e-1d0a31411c1d.mov **Big Sur | Safari 14.1 (bug!):** https://user-images.githubusercontent.com/35179038/190190939-852c9be0-904f-4ebb-bd09-d04911b469bf.mov **Monterey | Safari 15.3...
Probably, it is just a temporary Safari bug that is already solved. Can we close it ?