Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

70 Zeilen
2.2KB

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/layout.R
  3. \name{bulma_level}
  4. \alias{bulma_level}
  5. \title{Bulma Level}
  6. \usage{
  7. bulma_level(
  8. ...,
  9. left = NULL,
  10. right = NULL,
  11. is_mobile = TRUE,
  12. type = c("item", "header"),
  13. container_tag = c("div", "nav"),
  14. class = NULL,
  15. style = NULL,
  16. level_class = NULL,
  17. level_style = NULL
  18. )
  19. }
  20. \arguments{
  21. \item{...}{Items to be wrapped in a \code{"level-item"} \verb{<div>} and included in the
  22. main level container. If only one argument is provided and that argument is
  23. a list, the items inside the list will be treated as individual level items.}
  24. \item{left}{A list of items to be placed in the left side of the level in a
  25. \code{"level-left"} container.}
  26. \item{right}{A list of items to be placed in the right side of the level in a
  27. \code{"level-right"} container.}
  28. \item{type}{One of \code{"item"} or \code{"header"}. The default (\code{"item"}) places level
  29. items in the standard \code{"level-item"} container. Use \code{"header"} to use the
  30. names of the arguments in \code{...} as headers over their elements to create a
  31. large single-row pseudo-table. See examples for more details.}
  32. \item{container_tag}{Which tag should be used for the main \code{"level"} container?
  33. One of \code{"div"} or \code{"nav"}.}
  34. \item{class}{Additional classes applied to level container}
  35. \item{style}{Additional style parameters applied to level container}
  36. \item{level_class}{Additional classes applied to all level item containers (except
  37. for manually created level items).}
  38. \item{level_style}{Additional style arguments applied to all level item containers
  39. (except for manually create level items).}
  40. }
  41. \description{
  42. A multi-purpose horizontal level that can contain almost any other element.
  43. }
  44. \examples{
  45. bulma_level("Home", "Menu", "Bulma", "Reservations", "Contact")
  46. bulma_level("Tweets" = 3456, Following = 123, Followers = "456K", Likes = 789, type = "header")
  47. iris_vals <- lapply(iris, function(x) length(unique(x)))
  48. bulma_level(iris_vals, type = "header")
  49. }
  50. \references{
  51. \url{https://bulma.io/documentation/layout/level/}
  52. }
  53. \seealso{
  54. Other Bulma layouts:
  55. \code{\link{bulma_level_item_header}()},
  56. \code{\link{bulma_level_items_header}()},
  57. \code{\link{bulma_level_item}()}
  58. }
  59. \concept{Bulma layouts}