diff --git a/changelogOld/CHANGELOG.v6.md b/changelogOld/CHANGELOG.v6.md index 603ff9f69953..a2f1b629a898 100644 --- a/changelogOld/CHANGELOG.v6.md +++ b/changelogOld/CHANGELOG.v6.md @@ -2188,7 +2188,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos It already contains [line](https://mui.com/x/react-charts/lines/), [bar](https://mui.com/x/react-charts/bars/), and [scatter](https://mui.com/x/react-charts/scatter/) charts, with basic customization features. Check out the [documentation](https://mui.com/x/react-charts/) to see what it can do, and open issues to get the feature you need implemented. -- 🚀 Introducing UTC and timezone support for pickers. +- 🚀 Introducing UTC and timezones support for pickers. diff --git a/docs/data/date-pickers/timezone/timezone.md b/docs/data/date-pickers/timezone/timezone.md index a095bfc9a124..5e1eb1fe02f7 100644 --- a/docs/data/date-pickers/timezone/timezone.md +++ b/docs/data/date-pickers/timezone/timezone.md @@ -11,7 +11,7 @@ packageName: '@mui/x-date-pickers'
Date and Time Pickers support UTC and timezones.
:::warning -UTC and timezone support is an ongoing topic. +UTC and timezones support is an ongoing effort. Only `AdapterDayjs`, `AdapterLuxon` and `AdapterMoment` are currently compatible with UTC dates and timezones. ::: @@ -184,7 +184,7 @@ const date2 = DateTime.fromISO('2022-04-17T15:30', { zone: 'UTC' }); const date3 = DateTime.fromSQL('2022-04-17 15:30:00', { zone: 'UTC' }); ``` -Please check out the documentation of the [UTC and timezone on Luxon](https://moment.github.io/luxon/#/zones) for more details. +Please check out the documentation of the [UTC and timezones on Luxon](https://moment.github.io/luxon/#/zones) for more details. ::: You can then pass your UTC date to your picker: @@ -234,7 +234,7 @@ const date1 = DateTime.fromISO('2022-04-17T15:30', { zone: 'America/New_York' }) const date2 = DateTime.fromSQL('2022-04-17 15:30:00', { zone: 'America/New_York' }); ``` -Please check out the documentation of the [UTC and timezone on Luxon](https://moment.github.io/luxon/#/zones) for more details. +Please check out the documentation of the [UTC and timezones on Luxon](https://moment.github.io/luxon/#/zones) for more details. ::: You can then pass your date in the wanted timezone to your picker: @@ -262,7 +262,7 @@ function App() { {{"demo": "LuxonTimezone.js", "defaultCodeOpen": false}} :::info -Please check out the documentation of the [UTC and timezone on Luxon](https://moment.github.io/luxon/#/zones) for more details on how to manipulate the timezones. +Please check out the documentation of the [UTC and timezones on Luxon](https://moment.github.io/luxon/#/zones) for more details on how to manipulate the timezones. ::: ## Usage with Moment diff --git a/docs/data/pages.ts b/docs/data/pages.ts index 763c8eb6d293..dfa4c550422e 100644 --- a/docs/data/pages.ts +++ b/docs/data/pages.ts @@ -354,7 +354,7 @@ const pages: MuiPage[] = [ }, { pathname: '/x/react-date-pickers/timezone', - title: 'UTC and timezone', + title: 'UTC and timezones', }, { pathname: '/x/react-date-pickers/calendar-systems' }, ],