-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pre release changes 0.5.0 #451
Changes from all commits
72acc64
71e7b75
ec9782f
4c68bd8
e177689
c60bd58
890b8ef
be7fb03
2148a80
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,61 @@ | ||
Package: shiny.semantic | ||
Type: Package | ||
Package: shiny.semantic | ||
Title: Semantic UI Support for Shiny | ||
Version: 0.4.3.9002 | ||
Version: 0.5.0 | ||
Authors@R: c(person("Filip", "Stachura", email = "filip@appsilon.com", role = "aut"), | ||
person("Dominik", "Krzeminski", email = "dominik@appsilon.com", role = "aut"), | ||
person("Krystian", "Igras", email = "krystian@appsilon.com", role = "aut"), | ||
person("Adam", "Forys", email = "adam@appsilon.com", role = "aut"), | ||
person("Dominik", "Krzeminski", role = "aut"), | ||
person("Krystian", "Igras", role = "aut"), | ||
person("Adam", "Forys", role = "aut"), | ||
person("Paweł", "Przytuła", email = "pawel@appsilon.com", role = "aut"), | ||
person("Jakub", "Chojna", email = "jakub.chojna@appsilon.com", role = "aut"), | ||
person("Olga", "Mierzwa-Sulima", email = "olga@appsilon.com", role = "aut"), | ||
person("Jakub", "Nowicki", email = "opensource+kuba@appsilon.com", role = c("aut", "cre")), | ||
person("Ashley", "Baldry", role = "ctb"), | ||
person("Jakub", "Chojna", email = "jakub.chojna@appsilon.com", role = "ctb"), | ||
person("Olga", "Mierzwa-Sulima", email = "olga@appsilon.com", role = "ctb"), | ||
person("Pedro", "Manuel Coutinho da Silva", email = "pedro@appsilon.com", role = "ctb"), | ||
person("Paweł", "Przytuła", email = "pawel@appsilon.com", role = "ctb"), | ||
person("Kamil", "Żyła", email = "kamil@appsilon.com", role = "ctb"), | ||
person("Rabii", "Bouhestine", email = "rabii@appsilon.com", role = "ctb"), | ||
person("Developers", "Appsilon", email = "support+opensource@appsilon.com", role = "cre"), | ||
person("Rabii", "Bouhestine", role = "ctb"), | ||
person("Federico", "Rivandeira", email = "federico@appsilon.com", role = "ctb"), | ||
person(family = "Appsilon Sp. z o.o.", role = c("cph"))) | ||
Description: Creating a great user interface for your Shiny apps | ||
can be a hassle, especially if you want to work purely in R | ||
and don't want to use, for instance HTML templates. This | ||
package adds support for a powerful UI library Fomantic UI - | ||
<https://fomantic-ui.com/> (before Semantic). It also supports | ||
universal UI input binding that works with various DOM elements. | ||
BugReports: https://github.com/Appsilon/shiny.semantic/issues | ||
Encoding: UTF-8 | ||
LazyData: TRUE | ||
Description: Creating a great user interface for your Shiny apps can be a | ||
hassle, especially if you want to work purely in R and don't want to | ||
use, for instance HTML templates. This package adds support for a | ||
powerful UI library Fomantic UI - <https://fomantic-ui.com/> (before | ||
Semantic). It also supports universal UI input binding that works with | ||
various DOM elements. | ||
License: MIT + file LICENSE | ||
VignetteBuilder: knitr | ||
URL: https://appsilon.github.io/shiny.semantic/, https://github.com/Appsilon/shiny.semantic | ||
BugReports: https://github.com/Appsilon/shiny.semantic/issues | ||
Imports: | ||
shiny (>= 0.12.1), | ||
glue, | ||
grDevices, | ||
htmltools (>= 0.2.6), | ||
htmlwidgets (>= 0.8), | ||
purrr (>= 0.2.2), | ||
stats, | ||
magrittr, | ||
jsonlite, | ||
grDevices, | ||
glue, | ||
magrittr, | ||
purrr (>= 0.2.2), | ||
R6, | ||
semantic.assets (>= 1.1.0) | ||
semantic.assets (>= 1.1.0), | ||
shiny (>= 0.12.1), | ||
stats | ||
Suggests: | ||
covr, | ||
dplyr, | ||
tibble, | ||
knitr, | ||
testthat, | ||
lintr, | ||
DT, | ||
covr, | ||
gapminder, | ||
knitr, | ||
leaflet, | ||
plotly, | ||
rmarkdown, | ||
lintr, | ||
markdown, | ||
rcmdcheck, | ||
mockery, | ||
plotly, | ||
rcmdcheck, | ||
rmarkdown, | ||
testthat, | ||
tibble, | ||
withr | ||
VignetteBuilder: | ||
knitr | ||
Encoding: UTF-8 | ||
Language: en-US | ||
LazyData: TRUE | ||
RoxygenNote: 7.2.3 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style comment:
There are places in which we are using explicitly namespaced functions like here
purrr::map
and other places in which we don't. Why not using@importFrom purrr map map2 etc...
in here?If there is a reason to do so then it's fine, if not, then maybe we should start to consolidate the style.
If you think we should consolidate it then I can create an issue for it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We definitely should consolidate - if you could create an issue that would be great.