Skip to content

Commit

Permalink
update NEWS for #29
Browse files Browse the repository at this point in the history
  • Loading branch information
timelyportfolio committed May 14, 2019
1 parent 5e5b55e commit 4d558b1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: reactR
Type: Package
Title: React Helpers
Version: 0.4.0
Date: 2019-04-10
Version: 0.4.1
Date: 2019-05-14
Authors@R: c(
person(
"Facebook", "Inc"
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

* Add support for `shiny::registerInputHandler` in Shiny inputs; [pull 28](https://github.com/react-R/reactR/pull/28)

* Add support for Shiny rate limit [pull 29](https://github.com/react-R/reactR/pull/29)

# reactR 0.4.0

* Add Shiny input scaffold and functionality; [tutorial](https://react-r.github.io/reactR/articles/intro_inputs.html) and [pull 22](https://github.com/react-R/reactR/pull/22) thanks @alandipert
Expand Down
4 changes: 3 additions & 1 deletion inst/examples/antd.R
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ class App extends React.Component {
<antd.Steps current={current} size="small">
{steps.map(item => <antd.Steps.Step key={item.title} title={item.title} />)}
</antd.Steps>
<div className="steps-content">{steps[this.state.current].content}</div>
<div className="steps-content" style={{minHeight: "600px", display: "flex", alignItems: "center"}}>
{steps[this.state.current].content}
</div>
<div className="steps-action">
{
this.state.current < steps.length - 1
Expand Down

0 comments on commit 4d558b1

Please sign in to comment.