expost calendar

This commit is contained in:
yiminghe 2015-08-24 14:30:08 +08:00
parent 7a6f190e9e
commit 60c1f06bb1
2 changed files with 19 additions and 3 deletions

View File

@ -17,7 +17,7 @@ Locale.shortMonths = ['1月', '2月', '3月', '4月', '5月', '6月',
let defaultCalendarValue = new GregorianCalendar(zhCn);
defaultCalendarValue.setTime(Date.now());
export default React.createClass({
const AntDatepicker = React.createClass({
getInitialState() {
var value;
if (this.props.value) {
@ -93,3 +93,19 @@ export default React.createClass({
);
}
});
const AntCalendar = React.createClass({
getDefaultProps() {
return {
locale: CalendarLocale,
prefixCls: 'ant-calendar',
};
},
render() {
return <Calendar {...this.props}/>;
}
});
AntDatepicker.Calendar = AntCalendar;
export default AntDatepicker;

View File

@ -39,7 +39,7 @@
"is-equal-shallow": "~0.1.3",
"object-assign": "3.x",
"rc-animate": "~1.2.0",
"rc-calendar": "~3.14.2",
"rc-calendar": "~3.15.0",
"rc-checkbox": "~1.1.1",
"rc-collapse": "~1.3.0",
"rc-dialog": "~5.0.2",
@ -90,7 +90,7 @@
"scripts": {
"babel": "babel components --out-dir lib",
"release": "npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*",
"start": "npm run clean && nico server --watch",
"start": "npm run clean && nico server --watch --port=9000",
"clean": "rm -rf _site dist",
"deploy": "rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js",
"lint": "eslint components index.js --ext '.js,.jsx'",