|
3 | 3 | # ------------------- DO NOT EDIT ---------------------- |
4 | 4 | # This file was generated by `reflex/utils/pyi_generator.py`! |
5 | 5 | # ------------------------------------------------------ |
6 | | -from collections.abc import Mapping, Sequence |
| 6 | +from collections.abc import Callable, Mapping, Sequence |
7 | 7 | from typing import Any |
8 | 8 |
|
9 | 9 | from reflex_base.components.component import Component |
@@ -156,6 +156,7 @@ class VarTypesComponent(Component): |
156 | 156 | items: Var[list[str]] | list[str] | None = None, |
157 | 157 | metadata: Var[dict[str, Any]] | dict[str, Any] | None = None, |
158 | 158 | nested: Var[list[dict[str, Any]]] | list[dict[str, Any]] | None = None, |
| 159 | + on_check: Callable[[], bool] | Var[Callable[[], bool]] | None = None, |
159 | 160 | style: Sequence[Mapping[str, Any]] |
160 | 161 | | Mapping[str, Any] |
161 | 162 | | Var[Mapping[str, Any]] |
@@ -196,6 +197,7 @@ class VarTypesComponent(Component): |
196 | 197 | items: A list of string items. |
197 | 198 | metadata: Metadata dictionary. |
198 | 199 | nested: Nested structures. |
| 200 | + on_check: A callable that returns bool. |
199 | 201 | style: The style of the component. |
200 | 202 | key: A unique key for the component. |
201 | 203 | id: The id for the component. |
|
0 commit comments