This project was generated with Angular CLI version 14.1.0. The project provides the following set of standalone Angular pipes:
The Intl object is the namespace for the ECMAScript Internationalization API, which provides language sensitive string comparison, number formatting, and date and time formatting. For more information, take a look at the mdm web docs.
The latest changes are available within this repository in the project's CHANGELOG file.
Format a date according to locale and formatting options.
Just like the Angular DatePipe, IntlDatePipe is executed only when it detects a pure change to the input value. A pure change is either a change to a primitive input value (such as String, Number, Boolean, or Symbol), or a changed object reference (such as Date, Array, Function, or Object).
Note that mutating a Date object does not cause the pipe to be rendered again. To ensure that the pipe is executed, you must create a new Date object.
The default locale used for formatting is the one provided by the Angular LOCALE_ID
injection token. See the I18n guide for more information. It can also be passed into the pipe as a third parameter.
The time zone of the formatted value can be specified either by passing it in as a property of the second parameter of the pipe, or by setting the default through the INTL_DATE_TIMEZONE
injection token. The value that is passed in as the second parameter takes precedence over the one defined using the injection token.
The pipe comes with a set of pre-defined format options as shown below.
Option | Examples (given in en-US locale) |
---|---|
'short' |
6/15/15, 9:03 AM |
'medium' |
Jun 15, 2015, 9:03:01 AM |
'long' |
June 15, 2015 at 9:03:01 AM GMT+1 |
'full' |
Monday, June 15, 2015 at 9:03:01 AM GMT+01:00 |
'shortDate' |
6/15/15 |
'mediumDate' |
Jun 15, 2015 |
'longDate' |
June 15, 2015 |
'fullDate' |
Monday, June 15, 2015 |
'shortTime' |
9:03 AM |
'mediumTime' |
9:03:01 AM |
'longTime' |
9:03:01 AM GMT+1 |
'fullTime' |
9:03:01 AM GMT+01:00 |
You can add custom configuration and presets using the INTL_DATE_OPTIONS
injection token. This allows the definition of additional presets as well as setting a default preset, which is used if no preset name is provided to the pipe.
@NgModule({
//…,
providers: [
//…,
{
provide: INTL_DATE_OPTIONS,
useValue: {
defaultPreset: 'custom'
presets: {
custom: {
dateStyle: 'short'
}
}
}
},
{
provide: INTL_DATE_TIMEZONE,
useValue: 'America/Los_Angeles'
}
]
})
Parameter | Type | Description |
---|---|---|
value |
Date | string | number | null | undefined |
The date to be formatted, given as a JS date, string or number. |
options |
string | IntlDateLocalOptions |
The name of a preset or custom formatting options. |
...locales |
string[] |
A list of locale overwrites. |
See mdn web docs | Browser compatibility.
Format a relative time according to locale and formatting options.
See mdn web docs | Browser compatibility (Intl.RelativeTimeFormat
) and mdn web docs | Browser compatibility (Intl.DateTimeFormat
).
Format a number according to locale and formatting options.
See mdn web docs | Browser compatibility.
Enables plural-sensitive formatting.
The IntlPluralPipe provides help for pluralization based on parameters provided in the options. The locales and options parameters customize the behavior of the pipe and let applications specify the language conventions that should be used.
The pipe comes with a set of pre-defined sort options as shown below.
Option | Examples (given in en-US locale) |
---|---|
'cardinal' |
3 → other |
'ordinal' |
3 → few |
You can add custom configuration and presets using the INTL_PLURAL_OPTIONS
injection token. This allows the definition of additional presets as well as setting a default preset, which is used if no preset name is provided to the pipe.
@NgModule({
//…,
providers: [
//…,
{
provide: INTL_PLURAL_OPTIONS,
useValue: {
defaultPreset: 'custom'
presets: {
custom: {
type: 'ordinal'
}
}
}
}
]
})
Parameter | Type | Description |
---|---|---|
value |
number | null |
The number to be converted. |
options |
string | IntlPluralLocalOptions |
The name of a preset or custom pluralization options. |
...locales |
string[] |
A list of locale overwrites. |
See mdn web docs | Browser compatibility.
Enables language-sensitive string comparison.
The IntlSortPipe sorts a list of strings based on parameters provided in the options. The locales and options parameters customize the behavior of the pipe and let applications specify the language conventions that should be used to sort the list.
You can add custom configuration and presets using the INTL_SORT_OPTIONS
injection token. This allows the definition of additional presets as well as setting a default preset, which is used if no preset name is provided to the pipe.
@NgModule({
//…,
providers: [
//…,
{
provide: INTL_SORT_OPTIONS,
useValue: {
defaultPreset: 'custom'
presets: {
custom: {
sensitivity: 'base'
}
}
}
}
]
})
The pipe comes with a set of pre-defined sort options as shown below.
Option | Examples (given in en-US locale) |
---|---|
'lowerFirst' |
['a', 'e', 'z', 'Z'] |
'upperFirst' |
['a', 'e', 'Z', 'z'] |
Parameter | Type | Description |
---|---|---|
value |
string[] | null |
The list of strings to be sorted. |
options |
string | IntlSortLocalOptions |
The name of a preset or custom sort options. |
...locales |
string[] |
A list of locale overwrites. |
See mdn web docs | Browser compatibility.
This project exists thanks to all the people who contribute.
The license is available within this repository in the LICENSE file.