Skip to content

Commit

Permalink
fix(api): expose only meaningful classes
Browse files Browse the repository at this point in the history
  • Loading branch information
jourdain committed Apr 25, 2023
1 parent d9e0962 commit 3ccff7c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions trame_rca/widgets/rca.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
"""RCA Widgets only support vue2 for now.
"""
from trame_client.widgets.core import AbstractElement
from .. import module

__all__ = [
"RemoteControlledArea",
"DisplayArea",
"StatisticsDisplay",
"ImageDisplayArea",
"MediaSourceDisplayArea",
"VideoDecoderDisplayArea",
"RawImageDisplayArea",
]


class HtmlElement(AbstractElement):
def __init__(self, _elem_name, children=None, **kwargs):
Expand Down

0 comments on commit 3ccff7c

Please sign in to comment.