Skip to content

Commit

Permalink
Making component imports explicit (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Jun 7, 2024
1 parent c7f4b1f commit 67ed9c9
Showing 1 changed file with 29 additions and 15 deletions.
44 changes: 29 additions & 15 deletions plugins/ui/src/deephaven/ui/components/__init__.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,30 @@
from .action_button import *
from .action_button import action_button
from .action_group import action_group
from .action_menu import action_menu
from .basic import *
from .button import *
from .button_group import *
from .checkbox import *
from .basic import (
base_element,
grid,
heading,
icon_wrapper,
illustrated_message,
form,
switch,
tabs,
tab_list,
tab_panels,
text,
view,
)
from .button import button
from .button_group import button_group
from .checkbox import checkbox
from .column import column
from .combo_box import *
from .content import *
from .contextual_help import *
from .combo_box import combo_box
from .content import content
from .contextual_help import contextual_help
from .dashboard import dashboard
from .date_picker import *
from .flex import *
from .date_picker import date_picker
from .flex import flex
from .fragment import fragment
from .icon import icon
from .item import item
Expand All @@ -20,19 +33,19 @@
from .list_action_menu import list_action_menu
from .list_view import list_view
from .make_component import make_component as component
from .number_field import *
from .number_field import number_field
from .panel import panel
from .picker import picker
from .radio import radio
from .radio_group import radio_group
from .range_slider import *
from .range_slider import range_slider
from .row import row
from .section import section
from .slider import *
from .slider import slider
from .stack import stack
from .table import table
from .text_field import *
from .toggle_button import *
from .text_field import text_field
from .toggle_button import toggle_button
from .types import *

from . import html
Expand All @@ -51,6 +64,7 @@
"content",
"contextual_help",
"dashboard",
"date_picker",
"flex",
"form",
"fragment",
Expand Down

0 comments on commit 67ed9c9

Please sign in to comment.