Skip to content

Commit 4d558b1

Browse files
update NEWS for #29
1 parent 5e5b55e commit 4d558b1

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: reactR
22
Type: Package
33
Title: React Helpers
4-
Version: 0.4.0
5-
Date: 2019-04-10
4+
Version: 0.4.1
5+
Date: 2019-05-14
66
Authors@R: c(
77
person(
88
"Facebook", "Inc"

NEWS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

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

5+
* Add support for Shiny rate limit [pull 29](https://github.com/react-R/reactR/pull/29)
6+
57
# reactR 0.4.0
68

79
* 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

inst/examples/antd.R

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,9 @@ class App extends React.Component {
137137
<antd.Steps current={current} size="small">
138138
{steps.map(item => <antd.Steps.Step key={item.title} title={item.title} />)}
139139
</antd.Steps>
140-
<div className="steps-content">{steps[this.state.current].content}</div>
140+
<div className="steps-content" style={{minHeight: "600px", display: "flex", alignItems: "center"}}>
141+
{steps[this.state.current].content}
142+
</div>
141143
<div className="steps-action">
142144
{
143145
this.state.current < steps.length - 1

0 commit comments

Comments
 (0)