monkey-front-core 0.0.494 → 0.0.495

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.
@@ -3,7 +3,7 @@ import { Component, Input, NgModule, Pipe, ViewEncapsulation, Injectable, Inject
3
3
  import * as i1 from 'monkey-style-guide';
4
4
  import { MonkeyButtonModule, MonkeyModalModule, MonkeyIconModule, MonkeyInputModule, MonkeyRadioButtonModule, MonkeyOptionModule, MonkeyUtils, MonkeyStyleGuideModule, MonkeyStyleGuideModalService, MonkeyStyleGuideSettingsService, MonkeyStyleGuideSnackbarService } from 'monkey-style-guide';
5
5
  import * as i2 from '@angular/common';
6
- import { CommonModule, formatNumber, CurrencyPipe, DatePipe, registerLocaleData } from '@angular/common';
6
+ import { CommonModule, formatCurrency, formatNumber, CurrencyPipe, DatePipe, registerLocaleData } from '@angular/common';
7
7
  import * as i1$1 from '@ngx-translate/core';
8
8
  import { TranslateModule, TranslateService } from '@ngx-translate/core';
9
9
  import * as moment_ from 'moment';
@@ -752,6 +752,9 @@ class MonkeyEcxFormatCurrencyPipe {
752
752
  const locale = this.lang.toString();
753
753
  console.log('coreee');
754
754
  console.log(locale);
755
+ console.log(this.currencyPipe.transform(value, currency, symbol, '', locale));
756
+ console.log('======');
757
+ console.log(formatCurrency(value, locale, currency));
755
758
  return this.currencyPipe.transform(value, currency, symbol, '', locale);
756
759
  }
757
760
  }