- Allow user to specify arbitrary props that will be passed on to the underlying node (eg props: name, placeholder, data-*, ...)
- Allow React 15.x as a peer dependency
- [Breaking] react-pikaday now uses ES6 modules through Babel. If you use ES6 modules, you shouldn't have to change anything. If you use CommonJS, you'll now need to import react-pikaday like so:
// before
var Pikaday = require('react-pikaday');
//after
var Pikaday = require('react-pikaday').default;
- react-pikaday now uses a peer dependency for React, preventing duplicate copies of React from being installed (#13)
- react-pikaday no longer uses the long-deprecated
getDOMNode()
API (#14)
- The version of
react-pikaday
on NPM is now prebuilt through Babel and no longer requires a build step. Sorry for the delay on this!
- Potentially breaking change for some: removed the
/** @jsx React.DOM */
pragma, which has been deprecated since React 0.12 and now fails to compile in Babel (thanks @jaseemabid) - Clear input manually to avoid relying on Pikaday fork (thanks @jgable)
- Add browserify support (thanks @srlindemann)