forked from gpbl/react-day-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request gpbl#637 from TrySound/fix-umd-env
Replace env with production to fix umd crashing in runtime
- Loading branch information
Showing
5 changed files
with
21 additions
and
17 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
export default from './DayPicker'; | ||
export DateUtils from './DateUtils'; | ||
export LocaleUtils from './LocaleUtils'; | ||
export ModifiersUtils from './ModifiersUtils'; | ||
import DayPicker from './DayPicker'; | ||
import Input from './DayPickerInput'; | ||
import * as DateUtils from './DateUtils'; | ||
import * as LocaleUtils from './LocaleUtils'; | ||
import * as ModifiersUtils from './ModifiersUtils'; | ||
|
||
DayPicker.Input = Input; | ||
DayPicker.DateUtils = DateUtils; | ||
DayPicker.LocaleUtils = LocaleUtils; | ||
DayPicker.ModifiersUtils = ModifiersUtils; | ||
|
||
export default DayPicker; |
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