Skip to content

Commit

Permalink
unbreak pyi plotly (#4320)
Browse files Browse the repository at this point in the history
  • Loading branch information
adhami3310 authored Nov 7, 2024
1 parent 3bd35f5 commit 68407ce
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions reflex/components/plotly/plotly.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,16 @@ class Plotly(NoSSRComponent):
on_before_hover: Optional[EventType[[], BASE_STATE]] = None,
on_blur: Optional[EventType[[], BASE_STATE]] = None,
on_button_clicked: Optional[EventType[[], BASE_STATE]] = None,
on_click: Optional[EventType[[List[Point]], BASE_STATE]] = None,
on_click: Optional[
Union[EventType[[], BASE_STATE], EventType[[List[Point]], BASE_STATE]]
] = None,
on_context_menu: Optional[EventType[[], BASE_STATE]] = None,
on_deselect: Optional[EventType[[], BASE_STATE]] = None,
on_double_click: Optional[EventType[[], BASE_STATE]] = None,
on_focus: Optional[EventType[[], BASE_STATE]] = None,
on_hover: Optional[EventType[[List[Point]], BASE_STATE]] = None,
on_hover: Optional[
Union[EventType[[], BASE_STATE], EventType[[List[Point]], BASE_STATE]]
] = None,
on_mount: Optional[EventType[[], BASE_STATE]] = None,
on_mouse_down: Optional[EventType[[], BASE_STATE]] = None,
on_mouse_enter: Optional[EventType[[], BASE_STATE]] = None,
Expand All @@ -92,11 +96,17 @@ class Plotly(NoSSRComponent):
on_relayouting: Optional[EventType[[], BASE_STATE]] = None,
on_restyle: Optional[EventType[[], BASE_STATE]] = None,
on_scroll: Optional[EventType[[], BASE_STATE]] = None,
on_selected: Optional[EventType[[List[Point]], BASE_STATE]] = None,
on_selecting: Optional[EventType[[List[Point]], BASE_STATE]] = None,
on_selected: Optional[
Union[EventType[[], BASE_STATE], EventType[[List[Point]], BASE_STATE]]
] = None,
on_selecting: Optional[
Union[EventType[[], BASE_STATE], EventType[[List[Point]], BASE_STATE]]
] = None,
on_transition_interrupted: Optional[EventType[[], BASE_STATE]] = None,
on_transitioning: Optional[EventType[[], BASE_STATE]] = None,
on_unhover: Optional[EventType[[List[Point]], BASE_STATE]] = None,
on_unhover: Optional[
Union[EventType[[], BASE_STATE], EventType[[List[Point]], BASE_STATE]]
] = None,
on_unmount: Optional[EventType[[], BASE_STATE]] = None,
**props,
) -> "Plotly":
Expand Down

0 comments on commit 68407ce

Please sign in to comment.