Skip to content

Commit 766399a

Browse files
committed
version bump up + fixes required by as-cran check
1 parent 41d3cbb commit 766399a

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.Rbuildignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@
1212
^readme_assets$
1313
^docs$
1414
^examples$
15-
^index.html
15+
^index.html$
16+

DESCRIPTION

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
Package: shiny.semantic
22
Type: Package
33
Title: Semantic UI Support for Shiny
4-
Version: 0.2.4.9002
4+
Version: 0.3.0
55
Authors@R: c(person("Filip", "Stachura", email = "[email protected]",
66
role = "aut"),
77
person("Dominik", "Krzeminski", email = "[email protected]",
8-
role = "cre"))
8+
role = "cre"),
9+
person(family = "Appsilon Sp. z o.o.", role = c("cph")))
910
Description: Creating a great user interface for your Shiny apps
1011
can be a hassle, especially if you want to work purely in R
1112
and don't want to use, for instance HTML templates. This

R/calendar.R

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
#' shinyApp(ui = ui, server = server)
3636
#' }
3737
#'
38+
#' \dontrun{
3839
#' # Calendar with max and min
3940
#' uicalendar(
4041
#' name = "date_finish",
@@ -48,7 +49,8 @@
4849
#' name = "month",
4950
#' type = "month"
5051
#' )
51-
#'
52+
#' }
53+
#' @rdname uicalendar
5254
#' @export
5355
uicalendar <- function(name, value = NULL, placeholder = NULL, type = "date", min = NA, max = NA) {
5456
cal_widget <-

man/uicalendar.Rd

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shiny.semantic.Rproj

+1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ StripTrailingWhitespace: Yes
1818
BuildType: Package
1919
PackageUseDevtools: Yes
2020
PackageInstallArgs: --no-multiarch --with-keep.source
21+
PackageCheckArgs: --as-cran
2122
PackageRoxygenize: rd,collate,namespace

0 commit comments

Comments
 (0)