Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
3df080d
Add new `text_*()` fns
rich-iannone Mar 3, 2023
576df36
Update NAMESPACE
rich-iannone Mar 3, 2023
2fd7592
Update _pkgdown.yml
rich-iannone Mar 3, 2023
6101816
Update data_color.R
rich-iannone Mar 3, 2023
ccd3648
Update text_transform.Rd
rich-iannone Mar 3, 2023
1b33957
Create text_replace.Rd
rich-iannone Mar 3, 2023
fcb2f16
Create text_case_when.Rd
rich-iannone Mar 3, 2023
cd981c8
Create text_case_match.Rd
rich-iannone Mar 3, 2023
705bc49
Update help files using roxygen
rich-iannone Mar 3, 2023
6a9f8b1
Update text_transform.R
rich-iannone Mar 4, 2023
be7d7dc
Update text_transform.R
rich-iannone Mar 4, 2023
79af793
Update text_case_match.Rd
rich-iannone Mar 4, 2023
654ab34
Update text_case_when.Rd
rich-iannone Mar 4, 2023
3e7d787
Update text_replace.Rd
rich-iannone Mar 4, 2023
ae0eee3
Update text_transform.R
rich-iannone Mar 4, 2023
cdd7ec6
Update text_case_match.Rd
rich-iannone Mar 4, 2023
227ecf6
Update text_transform.R
rich-iannone Mar 5, 2023
58f34f0
Update _pkgdown.yml
rich-iannone Mar 5, 2023
29617c4
Update help files using roxygen
rich-iannone Mar 5, 2023
ee633eb
Update _pkgdown.yml
rich-iannone Mar 5, 2023
8097046
Regenerate function ID values
rich-iannone Mar 5, 2023
dcf606b
Update examples in the `text_transform()` fn
rich-iannone Mar 5, 2023
5792d5a
Update text_transform.Rd
rich-iannone Mar 5, 2023
c3c04b9
Update man_text_transform_1.png
rich-iannone Mar 5, 2023
0d75ad4
Create man_text_transform_2.png
rich-iannone Mar 5, 2023
f193f81
Update examples
rich-iannone Mar 5, 2023
eede9dd
Create man_text_replace_1.png
rich-iannone Mar 5, 2023
95d1807
Create man_text_case_match_1.png
rich-iannone Mar 5, 2023
34ad72d
Update help files using roxygen
rich-iannone Mar 5, 2023
c0f509b
Update text_transform.R
rich-iannone Mar 5, 2023
4c3fdbb
Update man_text_case_match_1.png
rich-iannone Mar 5, 2023
c6c20e1
Create man_text_case_match_2.png
rich-iannone Mar 5, 2023
9d63499
Create man_text_case_when_1.png
rich-iannone Mar 5, 2023
00a10a5
Update text_case_when.Rd
rich-iannone Mar 5, 2023
78d6145
Update text_case_match.Rd
rich-iannone Mar 5, 2023
e51943e
Update DESCRIPTION
rich-iannone Mar 5, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ Imports:
base64enc (>= 0.1-3),
bigD (>= 0.2),
bitops (>= 1.0-7),
cli (>= 3.4.1),
commonmark (>= 1.8),
dplyr (>= 1.0.8),
fs (>= 1.5.2),
ggplot2 (>= 3.3.5),
glue (>= 1.6.1),
htmltools (>= 0.5.2),
cli (>= 3.6.0),
commonmark (>= 1.8.1),
dplyr (>= 1.1.0),
fs (>= 1.6.1),
ggplot2 (>= 3.4.1),
glue (>= 1.6.2),
htmltools (>= 0.5.4),
htmlwidgets (>= 1.6.1),
magrittr (>= 2.0.2),
reactable (>= 0.2.3),
reactable (>= 0.4.3),
rlang (>= 1.0.2),
sass (>= 0.4.1),
scales (>= 1.2.0),
tibble (>= 3.1.6),
tidyselect (>= 1.1.1)
sass (>= 0.4.5),
scales (>= 1.2.1),
tibble (>= 3.1.8),
tidyselect (>= 1.2.0)
Suggests:
covr,
digest (>= 0.6.31),
Expand Down
3 changes: 3 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@ export(tab_stubhead)
export(tab_style)
export(tab_style_body)
export(test_image)
export(text_case_match)
export(text_case_when)
export(text_replace)
export(text_transform)
export(vars)
export(vec_fmt_bytes)
Expand Down
2 changes: 1 addition & 1 deletion R/data_color.R
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@
#'
#' @family data formatting functions
#' @section Function ID:
#' 3-28
#' 3-27
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down
56 changes: 28 additions & 28 deletions R/helpers.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#'
#' @family helper functions
#' @section Function ID:
#' 7-1
#' 8-1
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -78,7 +78,7 @@ md <- function(text) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-2
#' 8-2
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -139,7 +139,7 @@ is_rtf <- function(x) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-3
#' 8-3
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -193,7 +193,7 @@ px <- function(x) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-4
#' 8-4
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -250,7 +250,7 @@ pct <- function(x) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-5
#' 8-5
#'
#' @section Function Introduced:
#' `v0.8.0` (November 16, 2022)
Expand Down Expand Up @@ -342,7 +342,7 @@ stub <- function() {
#'
#' @family helper functions
#' @section Function ID:
#' 7-6
#' 8-6
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -453,7 +453,7 @@ cells_title <- function(groups = c("title", "subtitle")) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-7
#' 8-7
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -553,7 +553,7 @@ cells_stubhead <- function() {
#'
#' @family helper functions
#' @section Function ID:
#' 7-8
#' 8-8
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -675,7 +675,7 @@ cells_column_spanners <- function(spanners = everything()) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-9
#' 8-9
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -789,7 +789,7 @@ cells_column_labels <- function(columns = everything()) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-10
#' 8-10
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -918,7 +918,7 @@ cells_group <- function(groups = everything()) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-11
#' 8-11
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -1049,7 +1049,7 @@ cells_stub <- function(rows = everything()) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-12
#' 8-12
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -1216,7 +1216,7 @@ cells_body <- function(
#'
#' @family helper functions
#' @section Function ID:
#' 7-13
#' 8-13
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -1365,7 +1365,7 @@ cells_summary <- function(
#'
#' @family helper functions
#' @section Function ID:
#' 7-14
#' 8-14
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -1510,7 +1510,7 @@ cells_grand_summary <- function(
#'
#' @family helper functions
#' @section Function ID:
#' 7-15
#' 8-15
#'
#' @section Function Introduced:
#' `v0.3.0` (May 12, 2021)
Expand Down Expand Up @@ -1637,7 +1637,7 @@ cells_stub_summary <- function(
#'
#' @family helper functions
#' @section Function ID:
#' 7-16
#' 8-16
#'
#' @section Function Introduced:
#' `v0.3.0` (May 12, 2021)
Expand Down Expand Up @@ -1752,7 +1752,7 @@ cells_stub_grand_summary <- function(rows = everything()) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-17
#' 8-17
#'
#' @section Function Introduced:
#' `v0.3.0` (May 12, 2021)
Expand Down Expand Up @@ -1851,7 +1851,7 @@ cells_footnotes <- function() {
#'
#' @family helper functions
#' @section Function ID:
#' 7-18
#' 8-18
#'
#' @section Function Introduced:
#' `v0.3.0` (May 12, 2021)
Expand Down Expand Up @@ -1924,7 +1924,7 @@ cells_source_notes <- function() {
#'
#' @family helper functions
#' @section Function ID:
#' 7-19
#' 8-19
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -2053,7 +2053,7 @@ currency <- function(
#'
#' @family helper functions
#' @section Function ID:
#' 7-20
#' 8-20
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -2232,7 +2232,7 @@ cell_style_to_html.cell_text <- function(style) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-21
#' 8-21
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -2359,7 +2359,7 @@ cell_style_to_html.cell_fill <- function(style) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-22
#' 8-22
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -2556,7 +2556,7 @@ cell_style_structure <- function(name, obj, subclass = name) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-23
#' 8-23
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -2617,7 +2617,7 @@ adjust_luminance <- function(
#'
#' @family helper functions
#' @section Function ID:
#' 7-24
#' 8-24
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -2656,7 +2656,7 @@ latex_special_chars <- c(
#'
#' @family helper functions
#' @section Function ID:
#' 7-25
#' 8-25
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -2730,7 +2730,7 @@ escape_latex <- function(text) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-26
#' 8-26
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -2830,7 +2830,7 @@ gt_latex_dependencies <- function() {
#'
#' @family helper functions
#' @section Function ID:
#' 7-27
#' 8-27
#'
#' @section Function Introduced:
#' `v0.2.2` (August 5, 2020)
Expand Down Expand Up @@ -2900,7 +2900,7 @@ google_font <- function(name) {
#'
#' @family helper functions
#' @section Function ID:
#' 7-28
#' 8-28
#'
#' @section Function Introduced:
#' `v0.2.2` (August 5, 2020)
Expand Down
8 changes: 4 additions & 4 deletions R/image.R
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
#'
#' @family image addition functions
#' @section Function ID:
#' 8-1
#' 9-1
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -181,7 +181,7 @@ web_image <- function(
#'
#' @family image addition functions
#' @section Function ID:
#' 8-2
#' 9-2
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -286,7 +286,7 @@ local_image <- function(
#'
#' @family image addition functions
#' @section Function ID:
#' 8-3
#' 9-3
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -349,7 +349,7 @@ ggplot_image <- function(
#'
#' @family image addition functions
#' @section Function ID:
#' 8-4
#' 9-4
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down
12 changes: 6 additions & 6 deletions R/info_tables.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#'
#' @family information functions
#' @section Function ID:
#' 10-1
#' 11-1
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -135,7 +135,7 @@ info_date_style <- function() {
#'
#' @family information functions
#' @section Function ID:
#' 10-2
#' 11-2
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -268,7 +268,7 @@ info_time_style <- function() {
#'
#' @family information functions
#' @section Function ID:
#' 10-3
#' 11-3
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -424,7 +424,7 @@ info_currencies <- function(
#'
#' @family information functions
#' @section Function ID:
#' 10-4
#' 11-4
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -590,7 +590,7 @@ info_locales <- function(begins_with = NULL) {
#'
#' @family information functions
#' @section Function ID:
#' 10-5
#' 11-5
#'
#' @section Function Introduced:
#' `v0.2.0.5` (March 31, 2020)
Expand Down Expand Up @@ -701,7 +701,7 @@ info_paletteer <- function(color_pkgs = NULL) {
#'
#' @family information functions
#' @section Function ID:
#' 10-6
#' 11-6
#'
#' @section Function Introduced:
#' `v0.2.2` (August 5, 2020)
Expand Down
Loading