First of all, thanks for all you're work on this project. The pickers look great!
| Tech | Version |
|---------------------|---------|
| material-ui-pickers | ^1.0.0-beta.12 |
| material-ui | ^1.0.0-beta.23 |
| React | ^16.2.0 |
| Browser | Chrome 63.0.3239.84 64bit |
| Platform | MacOS High Sierra 10.13.2 |
Right now to use the components such as DatePicker without their wrapper and text field, you have to import from material-ui-pickers/src/.... The problem with this is that the code is not run through babel and transpiled at this point, so while this works for webpack, which does the transpiling itself, it does not work in all settings. In my case, I'm running into trouble with my SSR setup.
It would be nice to make the wrappers explicit and export them from the index script, i.e. import {DatePickerDialog, DatePicker} from 'material-ui-pickers'. Or maybe material-ui style: import DatePickerDialog from 'material-ui-pickers/DatePickerDialog'. I'm happy to help if needed.
Funny timing, I was actually coming to the issues to ask how to use the dialog only 馃槃 馃憤
You can do it now with
import DatePickerDialog from 'material-ui-pickers/DatePicker/DatePicker'
Great, thank you!
Most helpful comment
You can do it now with