32 lines
1.5 KiB
Python
32 lines
1.5 KiB
Python
"""Stub file for breadcrumb.py"""
|
|
# ------------------- DO NOT EDIT ----------------------
|
|
# This file was generated by `scripts/pyi_generator.py`!
|
|
# ------------------------------------------------------
|
|
|
|
from typing import Union, overload, Optional
|
|
from reflex.components.component import Component
|
|
from reflex.components.libs.chakra import ChakraComponent
|
|
from reflex.components.navigation.link import Link
|
|
from reflex.vars import Var, BaseVar, ComputedVar
|
|
from reflex.event import EventChain
|
|
|
|
class Breadcrumb(ChakraComponent):
|
|
@overload
|
|
@classmethod
|
|
def create(cls, *children, items, separator: Optional[Union[Var[str], str]] = None, separator_margin: Optional[Union[Var[str], str]] = None, **props) -> "Breadcrumb": ... # type: ignore
|
|
|
|
class BreadcrumbItem(ChakraComponent):
|
|
@overload
|
|
@classmethod
|
|
def create(cls, *children, label, href, is_current_page: Optional[Union[Var[bool], bool]] = None, is_last_child: Optional[Union[Var[bool], bool]] = None, separator: Optional[Union[Var[str], str]] = None, spacing: Optional[Union[Var[str], str]] = None, **props) -> "BreadcrumbItem": ... # type: ignore
|
|
|
|
class BreadcrumbSeparator(ChakraComponent):
|
|
@overload
|
|
@classmethod
|
|
def create(cls, *children, **props) -> "BreadcrumbSeparator": ... # type: ignore
|
|
|
|
class BreadcrumbLink(Link):
|
|
@overload
|
|
@classmethod
|
|
def create(cls, *children, is_current_page: Optional[Union[Var[bool], bool]] = None, **props) -> "BreadcrumbLink": ... # type: ignore
|