Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanalvizo committed Sep 6, 2024
1 parent a252aed commit bb0a1de
Show file tree
Hide file tree
Showing 3 changed files with 2,493 additions and 1 deletion.
11 changes: 10 additions & 1 deletion plugins/ui/src/deephaven/ui/components/icon.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
Position,
IconSize,
IconColor,
IconTypes,
)
from .._internal.utils import create_props


def icon(
name: str,
name: IconTypes,
size: IconSize | None = None,
color: IconColor | None = None,
flex: LayoutFlex | None = None,
Expand Down Expand Up @@ -109,8 +110,16 @@ def icon(
z_index: The stacking order for the element
is_hidden: Hides the element.
id: The unique identifier of the element.
aria_label: The label for the element.
aria_hidden: Whether the element is hidden from the accessibility tree.
aria_labelledby: The id of the element that labels the element.
aria_describedby: The id of the element that describes the element.
aria_details: The details for the element.
UNSAFE_class_name: Set the CSS className for the element. Only use as a last resort. Use style props instead.
UNSAFE_style: Set the inline style for the element. Only use as a last resort. Use style props instead.
Returns:
The rendered icon element.
"""

children, props = create_props(locals())
Expand Down
1 change: 1 addition & 0 deletions plugins/ui/src/deephaven/ui/components/types/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
from .events import *
from .layout import *
from .validate import *
from .icon_types import *
Loading

0 comments on commit bb0a1de

Please sign in to comment.