Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
glin committed May 28, 2020
1 parent 4191820 commit d8a7f6e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: reactable
Type: Package
Title: Interactive Data Tables Based on 'React Table'
Version: 0.1.0.9000
Version: 0.2.0
Authors@R: c(
person("Greg", "Lin", email = "[email protected]", role = c("aut", "cre")),
person("Tanner", "Linsley", role = c("ctb", "cph"), comment = "React Table library"),
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# reactable 0.1.0.9000
# reactable 0.2.0

### New features

Expand Down
4 changes: 2 additions & 2 deletions vignettes/conditional-styling.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ props <- tibble::tribble(
"aggregated", "true", "whether the row is aggregated",
"subRows", '[{Petal.Length: 1.7, Species: "setosa"}, ...]', "array of sub row data objects (aggregated rows only)",
"level", "0", "row nesting depth (zero-based)",
"selected", "true", "whether the row is selected (new in v0.1.0.9000)"
"selected", "true", "whether the row is selected (new in v0.2.0)"
)
reactable(props, sortable = FALSE, bordered = TRUE, columns = list(
Expand Down Expand Up @@ -302,7 +302,7 @@ props <- tibble::tribble(
"aggregated", "true", "whether the row is aggregated",
"subRows", '[{Petal.Length: 1.7, Species: "setosa"}, ...]', "array of sub row data objects (aggregated rows only)",
"level", "0", "row nesting depth (zero-based)",
"selected", "true", "whether the row is selected (new in v0.1.0.9000)"
"selected", "true", "whether the row is selected (new in v0.2.0)"
)
reactable(props, sortable = FALSE, bordered = TRUE, columns = list(
Expand Down
2 changes: 1 addition & 1 deletion vignettes/custom-rendering.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ props <- tibble::tribble(
"viewIndex", "0", "row index within the page (zero-based)",
"page", "2", "page index (zero-based)",
"level", "0", "row nesting depth (zero-based)",
"selected", "true", "whether the row is selected (new in v0.1.0.9000)"
"selected", "true", "whether the row is selected (new in v0.2.0)"
)
reactable(props, sortable = FALSE, bordered = TRUE, columns = list(
Expand Down
18 changes: 9 additions & 9 deletions vignettes/examples.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ reactable(iris[1:5, ],

### Default expanded rows

> **New in v0.1.0.9000**
> **New in v0.2.0**
You can expand all rows by default by setting `defaultExpanded` to `TRUE`:
```{r}
Expand Down Expand Up @@ -962,7 +962,7 @@ or to Shiny apps [here](https://shiny.rstudio.com/articles/css.html).

## Theming

> **New in v0.1.0.9000**
> **New in v0.2.0**
Themes provide a powerful way to customize table styling that can be reused
across tables. You can either set theme variables to change the default styles
Expand Down Expand Up @@ -1150,7 +1150,7 @@ reactable(iris[1:5, ], onClick = JS("

## Language Options

> **New in v0.1.0.9000**
> **New in v0.2.0**
You can customize the language in the table by providing a set of `reactableLang()`
options to `language`:
Expand Down Expand Up @@ -1253,7 +1253,7 @@ shinyApp(ui, server)
#### Default selected rows

> **New in v0.1.0.9000**
> **New in v0.2.0**
You can preselect rows by specifying a vector of row indices in `defaultSelected`:
```{r}
Expand All @@ -1262,7 +1262,7 @@ reactable(iris[1:4, ], selection = "multiple", defaultSelected = c(1, 3))

#### Style selected rows

> **New in v0.1.0.9000**
> **New in v0.2.0**
You can style selected rows using `rowSelectedStyle` in `reactableTheme()`:
```{r}
Expand Down Expand Up @@ -1297,7 +1297,7 @@ reactable(

#### Customize the selection column

> **New in v0.1.0.9000**
> **New in v0.2.0**
You can customize the selection column using `".selection"` as the column name:
```{r}
Expand All @@ -1317,7 +1317,7 @@ reactable(

### Update a reactable instance

> **New in v0.1.0.9000**
> **New in v0.2.0**
You can update the selected rows, expanded rows, or current page using `updateReactable()`:
```{r, eval=FALSE}
Expand Down Expand Up @@ -1373,7 +1373,7 @@ shinyApp(ui, server)

### Get the state of a reactable instance

> **New in v0.1.0.9000**
> **New in v0.2.0**
You can get the current page, page size, number of pages, or selected rows
using `getReactableState()`:
Expand Down Expand Up @@ -1447,7 +1447,7 @@ filter_select <- without_bootstrap(crosstalk::filter_select)
bscols <- without_bootstrap(crosstalk::bscols)
```

> **New in v0.1.0.9000**
> **New in v0.2.0**
You can link selection and filtering with other HTML widgets in an R Markdown
document or Shiny app using [Crosstalk](https://rstudio.github.io/crosstalk).
Expand Down

0 comments on commit d8a7f6e

Please sign in to comment.