openms-insight 0.1.2__py3-none-any.whl → 0.1.4__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.
@@ -5,15 +5,15 @@ This package provides reusable, interactive Streamlit components backed by Vue.j
5
5
  visualizations with cross-component selection state management.
6
6
  """
7
7
 
8
+ from .components.heatmap import Heatmap
9
+ from .components.lineplot import LinePlot
10
+ from .components.sequenceview import SequenceView, SequenceViewResult
11
+ from .components.table import Table
8
12
  from .core.base import BaseComponent
9
- from .core.state import StateManager
10
- from .core.registry import register_component, get_component_class
11
13
  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
14
+ from .core.registry import get_component_class, register_component
15
+ from .core.state import StateManager
16
+ from .rendering.bridge import clear_component_annotations, get_component_annotations
17
17
 
18
18
  __version__ = "0.1.0"
19
19
 
@@ -29,4 +29,8 @@ __all__ = [
29
29
  "LinePlot",
30
30
  "Heatmap",
31
31
  "SequenceView",
32
+ "SequenceViewResult",
33
+ # Utilities
34
+ "get_component_annotations",
35
+ "clear_component_annotations",
32
36
  ]
@@ -1,8 +1,8 @@
1
1
  """Visualization components."""
2
2
 
3
- from .table import Table
4
- from .lineplot import LinePlot
5
3
  from .heatmap import Heatmap
4
+ from .lineplot import LinePlot
5
+ from .table import Table
6
6
 
7
7
  __all__ = [
8
8
  "Table",