Skip to content

Commit d8a7f6e

Browse files
committed
Bump version
1 parent 4191820 commit d8a7f6e

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: reactable
22
Type: Package
33
Title: Interactive Data Tables Based on 'React Table'
4-
Version: 0.1.0.9000
4+
Version: 0.2.0
55
Authors@R: c(
66
person("Greg", "Lin", email = "glin@glin.io", role = c("aut", "cre")),
77
person("Tanner", "Linsley", role = c("ctb", "cph"), comment = "React Table library"),

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# reactable 0.1.0.9000
1+
# reactable 0.2.0
22

33
### New features
44

vignettes/conditional-styling.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ props <- tibble::tribble(
192192
"aggregated", "true", "whether the row is aggregated",
193193
"subRows", '[{Petal.Length: 1.7, Species: "setosa"}, ...]', "array of sub row data objects (aggregated rows only)",
194194
"level", "0", "row nesting depth (zero-based)",
195-
"selected", "true", "whether the row is selected (new in v0.1.0.9000)"
195+
"selected", "true", "whether the row is selected (new in v0.2.0)"
196196
)
197197
198198
reactable(props, sortable = FALSE, bordered = TRUE, columns = list(
@@ -302,7 +302,7 @@ props <- tibble::tribble(
302302
"aggregated", "true", "whether the row is aggregated",
303303
"subRows", '[{Petal.Length: 1.7, Species: "setosa"}, ...]', "array of sub row data objects (aggregated rows only)",
304304
"level", "0", "row nesting depth (zero-based)",
305-
"selected", "true", "whether the row is selected (new in v0.1.0.9000)"
305+
"selected", "true", "whether the row is selected (new in v0.2.0)"
306306
)
307307
308308
reactable(props, sortable = FALSE, bordered = TRUE, columns = list(

vignettes/custom-rendering.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ props <- tibble::tribble(
316316
"viewIndex", "0", "row index within the page (zero-based)",
317317
"page", "2", "page index (zero-based)",
318318
"level", "0", "row nesting depth (zero-based)",
319-
"selected", "true", "whether the row is selected (new in v0.1.0.9000)"
319+
"selected", "true", "whether the row is selected (new in v0.2.0)"
320320
)
321321
322322
reactable(props, sortable = FALSE, bordered = TRUE, columns = list(

vignettes/examples.Rmd

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ reactable(iris[1:5, ],
688688

689689
### Default expanded rows
690690

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

963963
## Theming
964964

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

11511151
## Language Options
11521152

1153-
> **New in v0.1.0.9000**
1153+
> **New in v0.2.0**
11541154
11551155
You can customize the language in the table by providing a set of `reactableLang()`
11561156
options to `language`:
@@ -1253,7 +1253,7 @@ shinyApp(ui, server)
12531253
12541254
#### Default selected rows
12551255

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

12631263
#### Style selected rows
12641264

1265-
> **New in v0.1.0.9000**
1265+
> **New in v0.2.0**
12661266
12671267
You can style selected rows using `rowSelectedStyle` in `reactableTheme()`:
12681268
```{r}
@@ -1297,7 +1297,7 @@ reactable(
12971297

12981298
#### Customize the selection column
12991299

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

13181318
### Update a reactable instance
13191319

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

13741374
### Get the state of a reactable instance
13751375

1376-
> **New in v0.1.0.9000**
1376+
> **New in v0.2.0**
13771377
13781378
You can get the current page, page size, number of pages, or selected rows
13791379
using `getReactableState()`:
@@ -1447,7 +1447,7 @@ filter_select <- without_bootstrap(crosstalk::filter_select)
14471447
bscols <- without_bootstrap(crosstalk::bscols)
14481448
```
14491449

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

0 commit comments

Comments
 (0)