From 9a3ababb9c0c221e650666958dc6911acc6b1962 Mon Sep 17 00:00:00 2001 From: Soumyajit Chakraborty <51930458+Isoumyajit@users.noreply.github.com> Date: Thu, 24 Jul 2025 13:32:16 +0530 Subject: [PATCH] AAE-36716 fixing text-form-field blur mechanism in control Value Accessor (#11045) 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 18672aa1e8..469759268f 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 @@ -74,6 +74,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;