We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
options
1 parent 8787772 commit f09bb8fCopy full SHA for f09bb8f
shiny/ui/_input_select.py
@@ -2,6 +2,8 @@
2
3
from __future__ import annotations
4
5
+from shiny.types import Jsonifiable
6
+
7
__all__ = (
8
"input_select",
9
"input_selectize",
@@ -57,7 +59,7 @@ def input_selectize(
57
59
multiple: bool = False,
58
60
width: Optional[str] = None,
61
remove_button: Optional[bool] = None,
- options: Optional[dict[str, str | float | JSEval]] = None,
62
+ options: Optional[dict[str, Jsonifiable | JSEval]] = None,
63
) -> Tag:
64
"""
65
Create a select list that can be used to choose a single or multiple items from a
0 commit comments