@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.
- package/esm2020/lib/components/validation-dialog/tru-validation-dialog.mjs +3 -3
- package/fesm2015/trudb-tru-common-lib.mjs +2 -2
- package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
- package/fesm2020/trudb-tru-common-lib.mjs +2 -2
- package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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.
|
|
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.
|
|
4896
|
+
this.elementRef.nativeElement.classList.add('hide');
|
|
4897
4897
|
}));
|
|
4898
4898
|
}
|
|
4899
4899
|
ngOnDestroy() {
|