Skip to content

Commit

Permalink
Added TODO follow up comments (deephaven#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed May 22, 2024
1 parent 9937ba9 commit c1efd29
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions plugins/ui/src/deephaven/ui/components/action_group.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from ..elements import BaseElement


# TODO: pydocs for action_group #481
def action_group(*children, **props):
"""
An ActionGroup is a grouping of ActionButtons that are related to one another.
Expand Down
1 change: 1 addition & 0 deletions plugins/ui/src/deephaven/ui/components/action_menu.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from ..elements import BaseElement


# TODO: pydocs for action_menu #482
def action_menu(*children, **props):
"""
ActionMenu combines an ActionButton with a Menu for simple "more actions" use cases.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
ListActionGroupElement = Element


# TODO: pydocs for list_action_group #483
def list_action_group(
*children: ActionGroupItem,
on_action: Callable[[ActionKey, Key], None] | None = None,
Expand Down
1 change: 1 addition & 0 deletions plugins/ui/src/deephaven/ui/components/list_action_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
ListActionMenuElement = Element


# TODO: pydocs for list_action_menu #484
def list_action_menu(
*children: ActionMenuItem,
on_action: Callable[[ActionKey, Key], None] | None = None,
Expand Down

0 comments on commit c1efd29

Please sign in to comment.