Skip to content

Commit 2db0691

Browse files
committed
Showcase update
1 parent 491f68f commit 2db0691

File tree

7 files changed

+13
-24
lines changed

7 files changed

+13
-24
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ UI components built on top of [React-Bootstrap](https://react-bootstrap.github.i
3636
* [Karma](https://karma-runner.github.io/0.13/index.html) for testing.
3737
* [React](https://facebook.github.io/react/) for ui.
3838
* [React-Bootstrap](https://react-bootstrap.github.io/) for ui components
39-
* [Recharts](http://recharts.org/) for ui chart components
4039
* [Recaptcha](https://github.com/appleboy/react-recaptcha) for ui reCAPTCHA component
4140
* [GoogleMap](https://github.com/istarkov/google-map-react) for ui GoogleMap component
4241
* [Enzyme](https://github.com/airbnb/enzyme) for ui testing

docs/bundle.4dfa5e35155702e6baf5.js renamed to docs/bundle.6cb31ba0c16141b426d0.js

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

docs/bundle.4dfa5e35155702e6baf5.js.map renamed to docs/bundle.6cb31ba0c16141b426d0.js.map

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

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<!-- version: 1.1.19 -->
6-
<!-- build time: Thu Feb 02 2017 11:43:51 GMT+0300 (+03) -->
6+
<!-- build time: Thu Feb 02 2017 12:12:44 GMT+0300 (+03) -->
77
<meta charset="UTF-8">
88
<title>robe-react-ui Showcase</title>
99
<meta http-equiv="X-UA-Compatible" content="IE=edge">
@@ -22,6 +22,6 @@
2222
<div id="app">
2323
<img src="./loading.gif" height="76px" style="top: 40%; left: 45%; position: fixed;">
2424
</div>
25-
<script src="bundle.4dfa5e35155702e6baf5.js"></script>
25+
<script src="bundle.6cb31ba0c16141b426d0.js"></script>
2626
</body>
2727
</html>

site/Welcome.jsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,10 @@ export default class Welcome extends ShallowComponent {
4040
</Col>
4141
</Row>
4242
<Row className="well" >
43-
<Col sm={6}>
43+
<Col sm={12}>
4444
<h4>Bootstrap Support</h4>
4545
We support bootstrap components by wrapping <a href="https://react-bootstrap.github.io/components.html"><code>React Bootstrap</code></a>.
4646
</Col>
47-
<Col sm={6}>
48-
<h4>Charting Support</h4>
49-
We support Area, Bar, Line, Pie, Radar and another chart components by wrapping <a href="http://recharts.org/"><code>Recharts</code></a>.
50-
</Col>
5147
</Row>
5248
<Row>
5349
<Alert bsStyle="warning">

site/index.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,6 @@ class Site extends ShallowComponent {
100100
window.open("https://react-bootstrap.github.io/components.html");
101101
return;
102102
}
103-
if (key === "Recharts") {
104-
window.open("http://recharts.org/");
105-
return;
106-
}
107103
if (key === "en_US") {
108104
this.setState({
109105
language: undefined

src/charts/Legend.jsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ export default class Legend extends ShallowComponent {
99
static propTypes = {
1010
className: React.PropTypes.string,
1111
width: React.PropTypes.number,
12-
data: React.PropTypes.array
1312
};
1413

1514
static defaultProps = {
16-
width: 500,
17-
data: []
15+
width: 500
1816
};
1917

2018
constructor(props) {

0 commit comments

Comments
 (0)