monkey-front-core 0.0.175 → 0.0.176
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/core/directives/monkeyecx-popover.directive.mjs +12 -6
- package/fesm2015/monkey-front-core.mjs +11 -5
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +11 -5
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.176.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.175.tgz +0 -0
|
@@ -1910,11 +1910,17 @@ class MonkeyEcxPopoverDirective {
|
|
|
1910
1910
|
this._popover = show;
|
|
1911
1911
|
console.log('show');
|
|
1912
1912
|
console.log(show);
|
|
1913
|
-
|
|
1914
|
-
|
|
1913
|
+
try {
|
|
1914
|
+
if (show) {
|
|
1915
|
+
this.createPopover();
|
|
1916
|
+
}
|
|
1917
|
+
else if (this.overlayRef) {
|
|
1918
|
+
this.overlayRef.dispose();
|
|
1919
|
+
}
|
|
1915
1920
|
}
|
|
1916
|
-
|
|
1917
|
-
|
|
1921
|
+
catch (e) {
|
|
1922
|
+
console.log('e -> popover');
|
|
1923
|
+
console.log(e);
|
|
1918
1924
|
}
|
|
1919
1925
|
}
|
|
1920
1926
|
get target() {
|
|
@@ -2061,7 +2067,7 @@ class MonkeyEcxPopoverDirective {
|
|
|
2061
2067
|
console.log('error no popover');
|
|
2062
2068
|
console.log(e);
|
|
2063
2069
|
}
|
|
2064
|
-
console.log('
|
|
2070
|
+
console.log('20');
|
|
2065
2071
|
}
|
|
2066
2072
|
ngOnDestroy() {
|
|
2067
2073
|
this.popover = false;
|