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.

50 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(
  8. ...,
  9. header = NULL,
  10. delete = FALSE,
  11. color = NULL,
  12. size = c("normal", "small", "medium", "large"),
  13. width = NULL,
  14. centered = !is.null(width),
  15. column_class = NULL
  16. )
  17. }
  18. \arguments{
  19. \item{...}{Message body}
  20. \item{header}{Message header}
  21. \item{delete}{Should delete button be displayed in upper right corner?}
  22. \item{size}{Text size, one of \code{"small"}, \code{"normal"} (default),
  23. \code{"medium"}, or \code{"large"}.}
  24. \item{width}{Width of the message. If \code{NULL} then width is 100\% of container.
  25. If specified, the message is wrapped in a \code{column} div (see \code{\link[=bulma_column]{bulma_column()}}
  26. for more information and for valid column sizes).}
  27. \item{centered}{Should the message container be centered horizontally?
  28. Requires \code{width} to be specified. If \code{TRUE}, the message container is
  29. inside a \code{column} div inside a \code{columns} div.}
  30. \item{column_class}{Additional parameters passed to the \code{class} argument
  31. of the \code{column} div. Only used if \code{width} is specified.}
  32. }
  33. \description{
  34. Creates a message box with optional title bar.
  35. }
  36. \references{
  37. \url{https://bulma.io/documentation/components/message/}
  38. }
  39. \seealso{
  40. Other Bulma components:
  41. \code{\link{bulma_sidenote}()}
  42. }
  43. \concept{Bulma components}