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