Skip to content

Commit

Permalink
remove Number type
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanalvizo committed Jul 5, 2024
1 parent 1137cd5 commit 512659f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions plugins/ui/src/deephaven/ui/components/form.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
DimensionValue,
JustifySelf,
LayoutFlex,
Number,
Position,
ValidationState,
ValidationBehavior,
Expand Down Expand Up @@ -48,12 +47,12 @@ def form(
# on_reset,
# on_invalid,
flex: LayoutFlex | None = None,
flex_grow: Number | None = None,
flex_shrink: Number | None = None,
flex_grow: float | None = None,
flex_shrink: float | None = None,
flex_basis: DimensionValue | None = None,
align_self: AlignSelf | None = None,
justify_self: JustifySelf | None = None,
order: Number | None = None,
order: int | None = None,
grid_area: str | None = None,
grid_row: str | None = None,
grid_row_start: str | None = None,
Expand Down Expand Up @@ -82,7 +81,7 @@ def form(
end: DimensionValue | None = None,
left: DimensionValue | None = None,
right: DimensionValue | None = None,
z_index: Number | None = None,
z_index: int | None = None,
is_hidden: bool | None = None,
id: str | None = None,
aria_label: str | None = None,
Expand Down

0 comments on commit 512659f

Please sign in to comment.