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.
1 parent 2a0c4e4 commit 285401fCopy full SHA for 285401f
src/nipanel/__init__.py
@@ -3,7 +3,7 @@
3
from importlib.metadata import version
4
5
from nipanel._panel import Panel
6
-from nipanel._streamlit_components import enum_selectbox
+from nipanel.controls._enum_selectbox import enum_selectbox
7
from nipanel._streamlit_panel import StreamlitPanel
8
from nipanel._streamlit_panel_initializer import create_panel, get_panel_accessor
9
from nipanel._streamlit_panel_value_accessor import StreamlitPanelValueAccessor
src/nipanel/_streamlit_components.py renamed to src/nipanel/controls/_enum_selectbox.py
@@ -1,4 +1,4 @@
1
-"""Streamlit UI components for NI Panel."""
+"""A selectbox that allows selecting an Enum value."""
2
from enum import Enum
from typing import Any, Callable, TypeVar
0 commit comments