From 46f817ba1d42fe556949df6144297b03f14a39e4 Mon Sep 17 00:00:00 2001 From: Isoumyajit Date: Tue, 22 Jul 2025 18:08:44 +0530 Subject: [PATCH] AAE-36716 fixing text-form-field blur mechanism in control Value Accessor --- .../lib/form/components/widgets/text/text-mask.component.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/core/src/lib/form/components/widgets/text/text-mask.component.ts b/lib/core/src/lib/form/components/widgets/text/text-mask.component.ts index 82fa6417fc..1491640f21 100644 --- a/lib/core/src/lib/form/components/widgets/text/text-mask.component.ts +++ b/lib/core/src/lib/form/components/widgets/text/text-mask.component.ts @@ -75,6 +75,11 @@ export class InputMaskDirective implements OnChanges, ControlValueAccessor { } } + @HostListener('blur') + onBlur() { + this._onTouched(); + } + ngOnChanges(changes: SimpleChanges) { if (changes['inputMask']?.currentValue['mask']) { this.inputMask = changes['inputMask'].currentValue;