docs: add deprecation info about default currency code (#34771)

In v10 the default currency code will be taken from the
current locale, rather than simply defaulting to `USD`.

PR Close #34771
This commit is contained in:
Pete Bacon Darwin
2020-01-10 12:41:05 +00:00
committed by atscott
parent a7cd7d4df6
commit a8c789d98d
4 changed files with 50 additions and 5 deletions

View File

@ -39,6 +39,23 @@ export const LOCALE_ID = new InjectionToken<string>('LocaleId');
*
* See the [i18n guide](guide/i18n#setting-up-locale) for more information.
*
* <div class="alert is-helpful">
*
* **Deprecation notice:**
*
* The default currency code is currently always `USD` but this is deprecated from v9.
*
* **In v10 the default currency code will be taken from the current locale.**
*
* If you need the previous behavior then set it by creating a `DEFAULT_CURRENCY_CODE` provider in
* your application `NgModule`:
*
* ```ts
* {provide: DEFAULT_CURRENCY_CODE, useValue: 'USD'}
* ```
*
* </div>
*
* @usageNotes
* ### Example
*