openms-insight 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,32 @@
1
+ """
2
+ Streamlit Vue Components - Interactive visualization components for Streamlit.
3
+
4
+ This package provides reusable, interactive Streamlit components backed by Vue.js
5
+ visualizations with cross-component selection state management.
6
+ """
7
+
8
+ from .core.base import BaseComponent
9
+ from .core.state import StateManager
10
+ from .core.registry import register_component, get_component_class
11
+ from .core.cache import CacheMissError
12
+
13
+ from .components.table import Table
14
+ from .components.lineplot import LinePlot
15
+ from .components.heatmap import Heatmap
16
+ from .components.sequenceview import SequenceView
17
+
18
+ __version__ = "0.1.0"
19
+
20
+ __all__ = [
21
+ # Core
22
+ "BaseComponent",
23
+ "StateManager",
24
+ "register_component",
25
+ "get_component_class",
26
+ "CacheMissError",
27
+ # Components
28
+ "Table",
29
+ "LinePlot",
30
+ "Heatmap",
31
+ "SequenceView",
32
+ ]
@@ -0,0 +1,11 @@
1
+ """Visualization components."""
2
+
3
+ from .table import Table
4
+ from .lineplot import LinePlot
5
+ from .heatmap import Heatmap
6
+
7
+ __all__ = [
8
+ "Table",
9
+ "LinePlot",
10
+ "Heatmap",
11
+ ]