Skip to content

Commit

Permalink
Update pyi
Browse files Browse the repository at this point in the history
  • Loading branch information
picklelo committed Apr 25, 2024
1 parent e8a05cf commit 5c07531
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion reflex/components/radix/themes/components/data_list.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class DataListLabel(RadixThemesComponent):
width: Optional[Union[Var[str], str]] = None,
min_width: Optional[Union[Var[str], str]] = None,
max_width: Optional[Union[Var[str], str]] = None,
color: Optional[
color_scheme: Optional[
Union[
Var[
Literal[
Expand Down
4 changes: 2 additions & 2 deletions reflex/components/radix/themes/components/icon_button.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ class IconButton(el.Button, RadixLoadingProp, RadixThemesComponent):
Literal["none", "small", "medium", "large", "full"],
]
] = None,
loading: Optional[Union[Var[bool], bool]] = None,
auto_focus: Optional[
Union[Var[Union[str, int, bool]], Union[str, int, bool]]
] = None,
Expand Down Expand Up @@ -175,6 +174,7 @@ class IconButton(el.Button, RadixLoadingProp, RadixThemesComponent):
title: Optional[
Union[Var[Union[str, int, bool]], Union[str, int, bool]]
] = None,
loading: Optional[Union[Var[bool], bool]] = None,
style: Optional[Style] = None,
key: Optional[Any] = None,
id: Optional[Any] = None,
Expand Down Expand Up @@ -238,7 +238,6 @@ class IconButton(el.Button, RadixLoadingProp, RadixThemesComponent):
color_scheme: Override theme color for button
high_contrast: Whether to render the button with higher contrast color against background
radius: Override theme radius for button: "none" | "small" | "medium" | "large" | "full"
loading: If set, show an rx.spinner instead of the component children.
auto_focus: Automatically focuses the button when the page loads
disabled: Disables the button
form: Associates the button with a form (by id)
Expand Down Expand Up @@ -266,6 +265,7 @@ class IconButton(el.Button, RadixLoadingProp, RadixThemesComponent):
spell_check: Defines whether the element may be checked for spelling errors.
tab_index: Defines the position of the current element in the tabbing order.
title: Defines a tooltip for the element.
loading: If set, show an rx.spinner instead of the component children.
style: The style of the component.
key: A unique key for the component.
id: The id for the component.
Expand Down

0 comments on commit 5c07531

Please sign in to comment.