12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- """Stub file for reflex/components/next/image.py"""
- # ------------------- DO NOT EDIT ----------------------
- # This file was generated by `reflex/utils/pyi_generator.py`!
- # ------------------------------------------------------
- from typing import Any, Literal, Optional, overload
- from reflex.event import EventType
- from reflex.style import Style
- from reflex.vars.base import Var
- from .base import NextComponent
- DEFAULT_W_H = "100%"
- class Image(NextComponent):
- @overload
- @classmethod
- def create( # type: ignore
- cls,
- *children,
- width: int | str | None = None,
- height: int | str | None = None,
- src: Any | Var[Any] | None = None,
- alt: Var[str] | str | None = None,
- loader: Any | Var[Any] | None = None,
- fill: Var[bool] | bool | None = None,
- sizes: Var[str] | str | None = None,
- quality: Var[int] | int | None = None,
- priority: Var[bool] | bool | None = None,
- placeholder: Var[str] | str | None = None,
- loading: Literal["eager", "lazy"] | Var[Literal["eager", "lazy"]] | None = None,
- blur_data_url: Var[str] | str | 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_click: Optional[EventType[()]] = None,
- on_context_menu: Optional[EventType[()]] = None,
- on_double_click: Optional[EventType[()]] = None,
- on_error: Optional[EventType[()]] = None,
- on_focus: Optional[EventType[()]] = None,
- on_load: 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,
- ) -> "Image":
- """Create an Image component from next/image.
- Args:
- *children: The children of the component.
- width: The width of the image.
- height: The height of the image.
- src: This can be either an absolute external URL, or an internal path
- alt: Used to describe the image for screen readers and search engines.
- loader: A custom function used to resolve image URLs.
- fill: A boolean that causes the image to fill the parent element, which is useful when the width and height are unknown. Default to True
- sizes: A string, similar to a media query, that provides information about how wide the image will be at different breakpoints.
- quality: The quality of the optimized image, an integer between 1 and 100, where 100 is the best quality and therefore largest file size. Defaults to 75.
- priority: When true, the image will be considered high priority and preload. Lazy loading is automatically disabled for images using priority.
- placeholder: A placeholder to use while the image is loading. Possible values are blur, empty, or data:image/.... Defaults to empty.
- loading: The loading behavior of the image. Defaults to lazy. Can hurt performance, recommended to use `priority` instead.
- blur_data_url: A Data URL to be used as a placeholder image before the src image successfully loads. Only takes effect when combined with placeholder="blur".
- on_load: Fires when the image has loaded.
- on_error: Fires when the image has an error.
- style: The style of the component.
- key: A unique key for the component.
- id: The id for the component.
- class_name: The class name for the component.
- autofocus: Whether the component should take the focus once the page is loaded
- custom_attrs: custom attribute
- **props:The props of the component.
- Returns:
- _type_: _description_
- """
- ...
|