12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- """Stub file for reflex/components/core/debounce.py"""
- # ------------------- DO NOT EDIT ----------------------
- # This file was generated by `reflex/utils/pyi_generator.py`!
- # ------------------------------------------------------
- from typing import Any, Dict, Optional, Type, Union, overload
- from reflex.components.component import Component
- from reflex.event import EventType
- from reflex.style import Style
- from reflex.vars.base import Var
- DEFAULT_DEBOUNCE_TIMEOUT = 300
- class DebounceInput(Component):
- @overload
- @classmethod
- def create( # type: ignore
- cls,
- *children,
- min_length: Optional[Union[Var[int], int]] = None,
- debounce_timeout: Optional[Union[Var[int], int]] = None,
- force_notify_by_enter: Optional[Union[Var[bool], bool]] = None,
- force_notify_on_blur: Optional[Union[Var[bool], bool]] = None,
- value: Optional[Union[Var[Union[float, int, str]], float, int, str]] = None,
- input_ref: Optional[Union[Var[str], str]] = None,
- element: Optional[Union[Type[Component], Var[Type[Component]]]] = None,
- style: Optional[Style] = None,
- key: Optional[Any] = None,
- id: Optional[Any] = None,
- class_name: Optional[Any] = None,
- autofocus: Optional[bool] = None,
- custom_attrs: Optional[Dict[str, Union[Var, Any]]] = None,
- on_blur: Optional[EventType[()]] = None,
- on_change: Optional[EventType[()]] = None,
- on_click: Optional[EventType[()]] = None,
- on_context_menu: Optional[EventType[()]] = None,
- on_double_click: Optional[EventType[()]] = None,
- on_focus: Optional[EventType[()]] = None,
- on_mount: Optional[EventType[()]] = None,
- on_mouse_down: Optional[EventType[()]] = None,
- on_mouse_enter: Optional[EventType[()]] = None,
- on_mouse_leave: Optional[EventType[()]] = None,
- on_mouse_move: Optional[EventType[()]] = None,
- on_mouse_out: Optional[EventType[()]] = None,
- on_mouse_over: Optional[EventType[()]] = None,
- on_mouse_up: Optional[EventType[()]] = None,
- on_scroll: Optional[EventType[()]] = None,
- on_unmount: Optional[EventType[()]] = None,
- **props,
- ) -> "DebounceInput":
- """Create a DebounceInput component.
- Carry first child props directly on this tag.
- Since react-debounce-input wants to create and manage the underlying
- input component itself, we carry all props, events, and styles from
- the child, and then neuter the child's render method so it produces no output.
- Args:
- children: The child component to wrap.
- props: The component props.
- Returns:
- The DebounceInput component.
- Raises:
- RuntimeError: unless exactly one child element is provided.
- ValueError: if the child element does not have an on_change handler.
- """
- ...
- debounce_input = DebounceInput.create
|