You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: shiny/experimental/ui/_sidebar.py
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -132,8 +132,7 @@ def sidebar(
132
132
`sidebar=` argument of:
133
133
134
134
* :func:`~shiny.experimental.ui.layout_sidebar`
135
-
* Creates a sidebar layout component which can be dropped inside any
136
-
:func:`~shiny.ui.page` or :func:`~shiny.experimental.ui.card` context.
135
+
* Creates a sidebar layout component which can be dropped inside any Shiny UI page method (e.g. :func:`~shiny.experimental.ui.page_fillable`) or :func:`~shiny.experimental.ui.card` context.
137
136
* :func:`~shiny.experimental.ui.navset_bar`, :func:`~shiny.experimental.ui.navset_tab_card`, and :func:`~shiny.experimental.ui.navset_pill_card`
138
137
* Creates a multi page/tab UI with a singular `sidebar()` (which is
139
138
shown on every page/tab).
@@ -164,7 +163,7 @@ def sidebar(
164
163
title
165
164
A character title to be used as the sidebar title, which will be wrapped in a
166
165
`<div>` element with class `sidebar-title`. You can also provide a custom
167
-
:func:`~shiny.htmltools.tag` for the title element, in which case you'll
166
+
:class:`~htmltools.Tag` for the title element, in which case you'll
168
167
likely want to give this element `class = "sidebar-title"`.
169
168
bg,fg
170
169
A background or foreground color.
@@ -259,8 +258,9 @@ def layout_sidebar(
259
258
"""
260
259
Sidebar layout
261
260
262
-
Create a sidebar layout component which can be dropped inside any
263
-
:func:`~shiny.ui.page` or :func:`~shiny.experimental.ui.card` context.
261
+
Create a sidebar layout component which can be dropped inside any Shiny UI page
262
+
method (e.g. :func:`~shiny.experimental.ui.page_fillable`) or
0 commit comments