monkey-front-core 0.0.287 → 0.0.289
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-by-program-directive.mjs +9 -5
- package/esm2020/lib/core/services/config/monkeyecx-currency-config.service.mjs +2 -2
- package/fesm2015/monkey-front-core.mjs +9 -5
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +9 -5
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/directives/monkeyecx-feature-by-program-directive.d.ts +1 -0
- package/monkey-front-core-0.0.289.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.287.tgz +0 -0
|
@@ -3989,7 +3989,7 @@ class MonkeyEcxCurrencyConfigService {
|
|
|
3989
3989
|
data: {
|
|
3990
3990
|
currency,
|
|
3991
3991
|
currencies,
|
|
3992
|
-
callback: (
|
|
3992
|
+
callback: (currency = 'BRL') => {
|
|
3993
3993
|
this.onHandleCurrencyConfig({
|
|
3994
3994
|
currency,
|
|
3995
3995
|
environment
|
|
@@ -4886,8 +4886,15 @@ class MonkeyEcxFeatureByProgramDirective {
|
|
|
4886
4886
|
this.feature = '';
|
|
4887
4887
|
this.monkeyConfigService.config().subscribe((_) => {
|
|
4888
4888
|
this.config = _;
|
|
4889
|
+
this.init();
|
|
4889
4890
|
});
|
|
4890
4891
|
}
|
|
4892
|
+
init() {
|
|
4893
|
+
if (!this.feature)
|
|
4894
|
+
return;
|
|
4895
|
+
this.cdr.detectChanges();
|
|
4896
|
+
this.handleDisplay();
|
|
4897
|
+
}
|
|
4891
4898
|
handleDisplay() {
|
|
4892
4899
|
const { feature, config } = this;
|
|
4893
4900
|
let display = 'none';
|
|
@@ -4906,10 +4913,7 @@ class MonkeyEcxFeatureByProgramDirective {
|
|
|
4906
4913
|
this.cdr.detectChanges();
|
|
4907
4914
|
}
|
|
4908
4915
|
ngOnInit() {
|
|
4909
|
-
|
|
4910
|
-
return;
|
|
4911
|
-
this.cdr.detectChanges();
|
|
4912
|
-
this.handleDisplay();
|
|
4916
|
+
this.init();
|
|
4913
4917
|
}
|
|
4914
4918
|
}
|
|
4915
4919
|
MonkeyEcxFeatureByProgramDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFeatureByProgramDirective, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: MonkeyEcxConfigService }], target: i0.ɵɵFactoryTarget.Directive });
|