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, Optional, Type, 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: Var[int] | int | None = None,
- debounce_timeout: Var[int] | int | None = None,
- force_notify_by_enter: Var[bool] | bool | None = None,
- force_notify_on_blur: Var[bool] | bool | None = None,
- value: Var[float | int | str] | float | int | str | None = None,
- input_ref: Var[str] | str | None = None,
- element: Type[Component] | Var[Type[Component]] | None = None,
- style: Style | None = None,
- key: Any | None = None,
- id: Any | None = None,
- class_name: Any | None = None,
- autofocus: bool | None = None,
- custom_attrs: dict[str, Var | Any] | None = 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
|