Skip to content

Commit 064206c

Browse files
committed
Add css and fill to __all__ in ui and express.ui
1 parent 39d80a5 commit 064206c

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

shiny/express/ui/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@
2929
strong,
3030
)
3131

32+
from ...ui import (
33+
css,
34+
fill,
35+
)
36+
3237
from ...ui import (
3338
AccordionPanel,
3439
AnimationOptions,
@@ -169,6 +174,9 @@
169174
"span",
170175
"strong",
171176
"tags",
177+
# Submodules
178+
"css",
179+
"fill",
172180
# Imports from ...ui
173181
"AccordionPanel",
174182
"AnimationOptions",

shiny/ui/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@
3232
)
3333

3434
# Expose the following modules for extended usage: ex: ui.fill.as_fill_item(x)
35-
from . import css, fill # noqa: F401 # pyright: ignore[reportUnusedImport]
35+
from . import (
36+
css,
37+
fill,
38+
)
3639
from ._accordion import (
3740
AccordionPanel,
3841
accordion,
@@ -346,6 +349,9 @@
346349
"strong",
347350
"em",
348351
"hr",
352+
# Submodules
353+
"css",
354+
"fill",
349355
# utils
350356
"js_eval",
351357
)

0 commit comments

Comments
 (0)