Skip to content

Commit

Permalink
v0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pvictor committed Sep 18, 2024
1 parent b49dc93 commit c46d2b8
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: toastui
Title: Interactive Tables, Calendars and Charts for the Web
Version: 0.3.3.9000
Version: 0.3.4
Authors@R: c(
person("Victor", "Perrier", email = "victor.perrier@dreamrs.fr", role = c("aut", "cre", "cph")),
person("Fanny", "Meyer", role = "aut"),
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

* Updated `cal_props()` example.
* Turn off `usageStatistics` option for `datagrid()` and `chart()` (same as for `calendar()`).

* `datagridOutput()` / `renderDatagrid()` fixed a bug causing table to have a css class `recalculating` added to the outpput element.


# toastui 0.3.3
Expand Down
8 changes: 4 additions & 4 deletions R/data.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#' \item{Genre}{Genre name}
#' \item{Subgenre}{Subgenre name}
#' }
#' @source Gibs on Kaggle (\url{https://www.kaggle.com/notgibs/500-greatest-albums-of-all-time-rolling-stone})
#' @source Gibs on Kaggle (https://www.kaggle.com/datasets/notgibs/500-greatest-albums-of-all-time-rolling-stone/)
"rolling_stones_500"

#' Rolling Stone's 50 Greatest Albums of All Time
Expand All @@ -27,7 +27,7 @@
#' \item{Genre}{Genre name}
#' \item{Subgenre}{Subgenre name}
#' }
#' @source Gibs on Kaggle (\url{https://www.kaggle.com/notgibs/500-greatest-albums-of-all-time-rolling-stone})
#' @source Gibs on Kaggle (https://www.kaggle.com/datasets/notgibs/500-greatest-albums-of-all-time-rolling-stone/)
"rolling_stones_50"


Expand Down Expand Up @@ -59,7 +59,7 @@
#' \item{\code{Industry}}{a numeric vector}
#' \item{\code{Service}}{a numeric vector}
#' }
#' @source fernandol on Kaggle (\url{https://www.kaggle.com/fernandol/countries-of-the-world})
#' @source fernandol on Kaggle (https://www.kaggle.com/datasets/fernandol/countries-of-the-world/)
"countries"


Expand All @@ -79,7 +79,7 @@
#' \item{JP_Sales}{Sales in Japan (in millions)}
#' \item{Other_Sales}{Sales in the rest of the world (in millions)}
#' }
#' @source GregorySmith on Kaggle (\url{https://www.kaggle.com/gregorut/videogamesales})
#' @source GregorySmith on Kaggle (https://www.kaggle.com/datasets/gregorut/videogamesales/)
"ps3_games"


Expand Down
6 changes: 3 additions & 3 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## Test environments
* local Ubuntu 22.04 install, R 4.3.2
* ubuntu 22.04, Windows 10, macOS (on GitHub Actions), R 4.3.2
* local Ubuntu 22.04 install, R 4.4.1
* ubuntu 22.04, Windows 10, macOS (on GitHub Actions), R 4.4.1
* win-builder (devel and release)

## R CMD check results

0 errors | 0 warnings | 0 note

* Updated JavaScript assets.
* Fixed bugs.
2 changes: 1 addition & 1 deletion man/countries.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/ps3_games.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/rolling_stones_50.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/rolling_stones_500.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions vignettes/toastui.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ library(toastui)

Create interactive tables with lot of options to customize content and that you can edit in Shiny applications.

```{r grid}
```
datagrid(rolling_stones_50)
```

Expand All @@ -44,7 +44,7 @@ datagrid(rolling_stones_50)

Create interactive calendars that you can navigate and display schedules. In Shiny you can add, update or delete schedules.

```{r calendar}
```
calendar(cal_demo_data())
```

Expand All @@ -58,7 +58,7 @@ calendar(cal_demo_data())

Create interactive charts:

```{r chart}
```
chart(mtcars, caes(mpg, disp, color = cyl), type = "scatter")
```

Expand Down

0 comments on commit c46d2b8

Please sign in to comment.