-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Doc(Migration): Add a migration guide
Initialized with the Date migration guide.
- Loading branch information
Olivier YOUF
committed
Oct 27, 2020
1 parent
96e7210
commit b5fb870
Showing
5 changed files
with
56 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<h1>Migration Guide</h1> | ||
|
||
- [From version 1.x to 2.0.x](#from-version-1x-to-20x) | ||
- [Date Input](#date-input) | ||
|
||
# From version 1.x to 2.0.x | ||
|
||
## Date Input | ||
|
||
We updated the React DatePicker from 1.X to 3.X. The library no longer uses moment. Instead it uses DateFns as a dependency for date management. Therefore, the Date Input no longer uses moment object for the value, but a Javascript [Date object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date). Also, the onChange callback return a Date value instead of a moment Value. | ||
|
||
The `locale` param also changed. It is a string which set the language of the component. You can find the full list on [DateFns's website](https://date-fns.org/v2.0.0-alpha.18/docs/I18n#supported-languages). | ||
|
||
We also added a `format` param which allow to specify the way to display value in viewvalue and in the field. He have to be a [unicode format](https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table) | ||
|
||
In 1.X: | ||
|
||
```javascript | ||
<DateInput | ||
label='Enter a date' | ||
locale='fr-fr' | ||
value={moment('11/26/2017', 'MM/DD/YYYY')} | ||
/> | ||
``` | ||
|
||
In 2.0.x | ||
|
||
```javascript | ||
<DateInput | ||
label='Enter a date' | ||
locale='fr' | ||
value={new Date('11-26-2017')} | ||
format='dd/MM/yyyyy' | ||
/> | ||
``` | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters