forked from react-toolbox/react-toolbox
-
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.
Index date picker localisation functions
- Loading branch information
1 parent
9af07bc
commit 862199d
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
5 changes: 3 additions & 2 deletions
5
packages/react-toolbox-core/src/components/DatePicker/index.ts
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,5 +1,6 @@ | ||
export * from './locale'; | ||
export { default as datePickerFactory } from './DatePicker'; | ||
export { default as dayFactory } from './Day'; | ||
export { default as monthFactory } from './Month'; | ||
export { default as rangePickerFactory } from './RangePicker'; | ||
export { default as singlePickerFactory } from './SinglePicker'; | ||
export { default as monthFactory } from './Month'; | ||
export { default as dayFactory } from './Day'; |
4 changes: 4 additions & 0 deletions
4
packages/react-toolbox-core/src/components/DatePicker/locale/index.ts
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,4 @@ | ||
export { default as dateLocales } from './dateLocales'; | ||
export { default as getFullDayOfWeek } from './getFullDayOfWeek'; | ||
export { default as getFullMonth } from './getFullMonth'; | ||
export { default as getShortMonth } from './getShortMonth'; |