@trudb/tru-common-lib 0.0.344 → 0.0.345

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.
@@ -4889,11 +4889,11 @@ class TruValidationDialog {
4889
4889
  this.errorMsg = this.config.errorMsg;
4890
4890
  this.listeners.push(this.renderer.listen(this.elementRef.nativeElement.previousElementSibling, 'mouseenter', (event) => {
4891
4891
  this.elementRef.nativeElement.classList.remove('hide');
4892
- this.elementRef.nativeElement.classList.show('show');
4892
+ this.elementRef.nativeElement.classList.add('show');
4893
4893
  }));
4894
4894
  this.listeners.push(this.renderer.listen(this.elementRef.nativeElement.previousElementSibling, 'mouseleave', (event) => {
4895
4895
  this.elementRef.nativeElement.classList.remove('show');
4896
- this.elementRef.nativeElement.classList.show('hide');
4896
+ this.elementRef.nativeElement.classList.add('hide');
4897
4897
  }));
4898
4898
  }
4899
4899
  ngOnDestroy() {