diff --git a/examples/global_pyplot/app.py b/examples/global_pyplot/app.py index 96752da5a..e9de2f7f0 100644 --- a/examples/global_pyplot/app.py +++ b/examples/global_pyplot/app.py @@ -9,6 +9,7 @@ ui.tags.h5("A plot should appear immediately below this text."), ), ui.output_plot("mpl"), + ui.tags.hr(), ui.panel_conditional( "input.render", ui.tags.h5("An error message should appear immediately below this text."), diff --git a/examples/static_plots/app.py b/examples/static_plots/app.py index 8334e613d..4004c183a 100644 --- a/examples/static_plots/app.py +++ b/examples/static_plots/app.py @@ -118,6 +118,7 @@ def holoviews(): @output @render.plot def xarray(): + # `pooch` module required to download `open_dataset` import xarray as xr airtemps = xr.tutorial.open_dataset("air_temperature") diff --git a/setup.cfg b/setup.cfg index d1437ec04..079e062fb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -72,6 +72,13 @@ test = plotnine plotly duckdb + holoviews + bokeh + xarray + geopandas + missingno + pooch + dev = black>=23.1.0 flake8>=6.0.0 diff --git a/shiny/experimental/e2e/sidebar/app.py b/shiny/experimental/e2e/sidebar/app.py index dddfb42b2..46a581a1e 100644 --- a/shiny/experimental/e2e/sidebar/app.py +++ b/shiny/experimental/e2e/sidebar/app.py @@ -7,8 +7,9 @@ app_ui = ui.page_fixed( ui.h1("Toggle Sidebars"), ui.div( - ui.input_action_button("open_all", "Show all", class_="me-1"), - ui.input_action_button("close_all", "Close all", class_="me-2"), + ui.input_action_button("open_all", "Show all", class_="me-1 mb-1"), + ui.input_action_button("close_all", "Close all", class_="mb-1"), + ui.tags.br(), ui.input_action_button("toggle_outer", "Toggle outer", class_="me-1"), ui.input_action_button("toggle_inner", "Toggle inner"), class_="my-2",