No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

42 líneas
1.4KB

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/components.R
  3. \name{bulma_message}
  4. \alias{bulma_message}
  5. \title{Bulma Message}
  6. \usage{
  7. bulma_message(..., header = NULL, delete = FALSE, color = NULL,
  8. size = c("normal", "small", "medium", "large"), width = NULL,
  9. centered = !is.null(width), column_class = NULL)
  10. }
  11. \arguments{
  12. \item{...}{Message body}
  13. \item{header}{Message header}
  14. \item{delete}{Should delete button be displayed in upper right corner?}
  15. \item{size}{Text size, one of \code{"small"}, \code{"normal"} (default),
  16. \code{"medium"}, or \code{"large"}.}
  17. \item{width}{Width of the message. If \code{NULL} then width is 100% of container.
  18. If specified, the message is wrapped in a \code{column} div (see \code{\link[=bulma_column]{bulma_column()}}
  19. for more information and for valid column sizes).}
  20. \item{centered}{Should the message container be centered horizontally?
  21. Requires \code{width} to be specified. If \code{TRUE}, the message container is
  22. inside a \code{column} div inside a \code{columns} div.}
  23. \item{column_class}{Additional parameters passed to the \code{class} argument
  24. of the \code{column} div. Only used if \code{width} is specified.}
  25. }
  26. \description{
  27. Creates a message box with optional title bar.
  28. }
  29. \references{
  30. \url{https://bulma.io/documentation/components/message/}
  31. }
  32. \seealso{
  33. Other Bulma components: \code{\link{bulma_sidenote}}
  34. }
  35. \concept{Bulma components}