Skip to content

Commit

Permalink
Move calendar inside date picker
Browse files Browse the repository at this point in the history
  • Loading branch information
javivelasco committed Oct 20, 2015
1 parent 07c17b0 commit 23bbfb9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import PureRenderMixin from 'react-addons-pure-render-mixin';
import time from '../../utils/time';
import style from './style';
import time from '../utils/time';

export default React.createClass({
mixins: [PureRenderMixin],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React from 'react';
import PureRenderMixin from 'react-addons-pure-render-mixin';
import CSSTransitionGroup from 'react-addons-css-transition-group';
import { SlideLeft, SlideRight } from '../animations';
import FontIcon from '../font_icon';
import Ripple from '../ripple';
import { SlideLeft, SlideRight } from '../../animations';
import FontIcon from '../../font_icon';
import Ripple from '../../ripple';
import utils from '../../utils';
import Month from './month';
import style from './style';
import utils from '../utils';

export default React.createClass({
mixins: [PureRenderMixin],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';
import PureRenderMixin from 'react-addons-pure-render-mixin';
import utils from '../../utils';
import Day from './day';
import style from './style';
import utils from '../utils';

export default React.createClass({
mixins: [PureRenderMixin],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "../variables";
@import "../../variables";

$calendar-primary: $color-primary;
$calendar-primary-contrast: $color-primary-contrast;
Expand Down
2 changes: 1 addition & 1 deletion components/date_picker/dialog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import PureRenderMixin from 'react-addons-pure-render-mixin';
import style from './style';
import time from '../utils/time';
import Calendar from '../calendar';
import Calendar from './calendar';
import Dialog from '../dialog';

export default React.createClass({
Expand Down

0 comments on commit 23bbfb9

Please sign in to comment.