Skip to content

Commit ce55728

Browse files
committed
Remove files
2 parents 54bbae2 + 4d0a8c1 commit ce55728

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+35941
-19964
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[![npm](https://img.shields.io/npm/v/react-bootstrap-datetimepicker.svg)](https://www.npmjs.com/package/react-bootstrap-datetimepicker)
2+
[![CircleCI](https://img.shields.io/circleci/project/LKay/react-bootstrap-datetimepicker.svg)](https://circleci.com/gh/LKay/react-bootstrap-datetimepicker)
3+
[![Codecov](https://img.shields.io/codecov/c/github/LKay/react-bootstrap-datetimepicker.svg)](https://codecov.io/github/LKay/react-bootstrap-datetimepicker)
4+
15
react-bootstrap-datetimepicker
26
===============================
37

dist/react.bootstrap.datetimepicker.js

Lines changed: 35675 additions & 16347 deletions
Large diffs are not rendered by default.

dist/react.bootstrap.datetimepicker.min.js

Lines changed: 28 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/js/docs.js

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,33 @@ const icons = {
3232
}
3333

3434
class Docs extends Component {
35+
36+
state = {
37+
date : null
38+
};
39+
40+
onClickChangeDate = () => {
41+
this.setState({
42+
date : moment().add(2, "days").toISOString()
43+
})
44+
};
45+
3546
render () {
3647
return (
3748
<div className="container-fluid">
3849
<div className="container">
3950
<h1>Works</h1>
4051
<div className="row" style={ style }>
4152
<div className="col-md-4">
42-
<DateTimePicker useCurrent={false} showClose showClear showTodayButton toolbarPlacement="bottom" />
53+
<DateTimePicker useCurrent={false} showClose showClear showTodayButton toolbarPlacement="bottom" value={ this.state.date } />
4354
</div>
55+
56+
<a onClick={ this.onClickChangeDate }>CHANGE</a>
4457
</div>
4558

4659
<div className="row" style={ style }>
4760
<div className="col-md-4">
48-
<DateTimePicker useCurrent={false} showClose showClear showTodayButton toolbarPlacement="bottom" icons={ icons } />
61+
<DateTimePicker useCurrent={false} debug showClose showClear showTodayButton toolbarPlacement="bottom" icons={ icons } mode="date" />
4962
</div>
5063
</div>
5164

lib/components/container.js

Lines changed: 0 additions & 104 deletions
This file was deleted.

lib/components/container.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/components/fade.js

Lines changed: 0 additions & 61 deletions
This file was deleted.

lib/components/fade.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/components/input.js

Lines changed: 0 additions & 100 deletions
This file was deleted.

0 commit comments

Comments
 (0)