monkey-front-core 0.0.248 → 0.0.249
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-feature-directive.mjs +7 -1
- package/fesm2015/monkey-front-core.mjs +6 -0
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +6 -0
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.249.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.248.tgz +0 -0
|
@@ -4760,15 +4760,21 @@ class MonkeyEcxFeatureDirective {
|
|
|
4760
4760
|
return;
|
|
4761
4761
|
const flag = this.getFeature(this.feature);
|
|
4762
4762
|
let display = 'none';
|
|
4763
|
+
console.log('1');
|
|
4763
4764
|
if (!MonkeyEcxUtils.persistNullEmptyUndefined(flag)) {
|
|
4764
4765
|
return;
|
|
4765
4766
|
}
|
|
4767
|
+
console.log('2');
|
|
4766
4768
|
if (flag) {
|
|
4767
4769
|
display = 'block';
|
|
4768
4770
|
}
|
|
4771
|
+
console.log('3');
|
|
4769
4772
|
if (display === 'none') {
|
|
4770
4773
|
this.elementRef.nativeElement.remove();
|
|
4771
4774
|
}
|
|
4775
|
+
console.log('4');
|
|
4776
|
+
console.log('display');
|
|
4777
|
+
console.log(display);
|
|
4772
4778
|
this.elementRef.nativeElement.style.display = display;
|
|
4773
4779
|
this.cdr.detectChanges();
|
|
4774
4780
|
}
|