i-tech-shared-components 1.4.73-alpha.1775075798296 → 1.4.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3048,9 +3048,13 @@ class TimeInputComponent {
|
|
|
3048
3048
|
setTimeout(() => this.timeFieldEl?.nativeElement.focus());
|
|
3049
3049
|
}
|
|
3050
3050
|
deactivate() {
|
|
3051
|
+
if (this.mode === '12h') {
|
|
3052
|
+
this.convertIfOver12Hours();
|
|
3053
|
+
}
|
|
3051
3054
|
this.activeSegment = null;
|
|
3052
3055
|
this.hourBuffer = '';
|
|
3053
3056
|
this.minuteBuffer = '';
|
|
3057
|
+
this.emitControlValue();
|
|
3054
3058
|
}
|
|
3055
3059
|
onKeyDown(event) {
|
|
3056
3060
|
if (this.activeSegment === null)
|