-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into rc-v0.5.6.1
- Loading branch information
Showing
11 changed files
with
176 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,48 @@ | ||
Package: htmltools | ||
Type: Package | ||
Package: htmltools | ||
Title: Tools for HTML | ||
Version: 0.5.6.1 | ||
Version: 0.5.6.9001 | ||
Authors@R: c( | ||
person("Joe", "Cheng", role = "aut", email = "[email protected]"), | ||
person("Carson", "Sievert", role = c("aut", "cre"), email = "[email protected]", comment = c(ORCID = "0000-0002-4958-2844")), | ||
person("Barret", "Schloerke", role = "aut", email = "[email protected]", comment = c(ORCID = "0000-0001-9986-114X")), | ||
person("Winston", "Chang", role = "aut", email = "[email protected]", comment = c(ORCID = "0000-0002-1576-2126")), | ||
person("Yihui", "Xie", role = "aut", email = "[email protected]"), | ||
person("Jeff", "Allen", role = "aut"), | ||
person("Posit Software, PBC", role = c("cph", "fnd")) | ||
) | ||
person("Joe", "Cheng", , "[email protected]", role = "aut"), | ||
person("Carson", "Sievert", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0002-4958-2844")), | ||
person("Barret", "Schloerke", , "[email protected]", role = "aut", | ||
comment = c(ORCID = "0000-0001-9986-114X")), | ||
person("Winston", "Chang", , "[email protected]", role = "aut", | ||
comment = c(ORCID = "0000-0002-1576-2126")), | ||
person("Yihui", "Xie", , "[email protected]", role = "aut"), | ||
person("Jeff", "Allen", role = "aut"), | ||
person("Posit Software, PBC", role = c("cph", "fnd")) | ||
) | ||
Description: Tools for HTML generation and output. | ||
License: GPL (>= 2) | ||
URL: https://github.com/rstudio/htmltools, | ||
https://rstudio.github.io/htmltools/ | ||
BugReports: https://github.com/rstudio/htmltools/issues | ||
Depends: | ||
R (>= 2.14.1) | ||
Imports: | ||
utils, | ||
digest, | ||
grDevices, | ||
base64enc, | ||
rlang (>= 0.4.12), | ||
digest, | ||
ellipsis, | ||
fastmap (>= 1.1.0), | ||
ellipsis | ||
grDevices, | ||
rlang (>= 1.0.0), | ||
utils | ||
Suggests: | ||
markdown, | ||
testthat, | ||
withr, | ||
Cairo, | ||
markdown, | ||
ragg, | ||
shiny | ||
Enhances: knitr | ||
License: GPL (>= 2) | ||
URL: https://github.com/rstudio/htmltools, https://rstudio.github.io/htmltools/ | ||
BugReports: https://github.com/rstudio/htmltools/issues | ||
RoxygenNote: 7.2.3 | ||
shiny, | ||
testthat, | ||
withr | ||
Enhances: | ||
knitr | ||
Config/Needs/check: knitr | ||
Config/Needs/website: rstudio/quillt, bench | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.3 | ||
Collate: | ||
'colors.R' | ||
'fill.R' | ||
|
@@ -50,8 +58,3 @@ Collate: | |
'utils.R' | ||
'tags.R' | ||
'template.R' | ||
Roxygen: list(markdown = TRUE) | ||
Config/Needs/check: knitr | ||
Config/Needs/website: | ||
rstudio/quillt, | ||
bench |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,19 @@ | ||
.html-fill-container { | ||
display: flex; | ||
flex-direction: column; | ||
width: 100%; | ||
min-width: 0; | ||
/* Prevent the container from expanding vertically or horizontally beyond its | ||
parent's constraints. */ | ||
min-height: 0; | ||
min-width: 0; | ||
} | ||
.html-fill-container > .html-fill-item { | ||
/* Fill items can grow and shrink freely within | ||
available vertical space in fillable container */ | ||
flex: 1 1 auto; | ||
overflow: auto; | ||
width: 100%; | ||
min-height: 0; | ||
min-width: 0; | ||
} | ||
.html-fill-container > :not(.html-fill-item) { | ||
/* Prevent shrinking or growing of non-fill items */ | ||
flex: 0 0 auto; | ||
} | ||
.html-fill-container > .html-fill-item.html-fill-item-overflow-hidden { | ||
overflow: hidden; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters