update pyi

This commit is contained in:
Lendemor 2025-01-16 16:58:39 +01:00
parent 61b92eaa86
commit 4fd55a78f7

View File

@ -132,10 +132,10 @@ class FormRoot(FormComponent, HTMLForm):
on_submit: Optional[ on_submit: Optional[
Union[ Union[
Union[ Union[
EventType[[], BASE_STATE], EventType[[Dict[str, Any]], BASE_STATE] EventType[[], BASE_STATE], EventType[[dict[str, Any]], BASE_STATE]
], ],
Union[ Union[
EventType[[], BASE_STATE], EventType[[Dict[str, str]], BASE_STATE] EventType[[], BASE_STATE], EventType[[dict[str, str]], BASE_STATE]
], ],
] ]
] = None, ] = None,
@ -608,10 +608,10 @@ class Form(FormRoot):
on_submit: Optional[ on_submit: Optional[
Union[ Union[
Union[ Union[
EventType[[], BASE_STATE], EventType[[Dict[str, Any]], BASE_STATE] EventType[[], BASE_STATE], EventType[[dict[str, Any]], BASE_STATE]
], ],
Union[ Union[
EventType[[], BASE_STATE], EventType[[Dict[str, str]], BASE_STATE] EventType[[], BASE_STATE], EventType[[dict[str, str]], BASE_STATE]
], ],
] ]
] = None, ] = None,
@ -741,10 +741,10 @@ class FormNamespace(ComponentNamespace):
on_submit: Optional[ on_submit: Optional[
Union[ Union[
Union[ Union[
EventType[[], BASE_STATE], EventType[[Dict[str, Any]], BASE_STATE] EventType[[], BASE_STATE], EventType[[dict[str, Any]], BASE_STATE]
], ],
Union[ Union[
EventType[[], BASE_STATE], EventType[[Dict[str, str]], BASE_STATE] EventType[[], BASE_STATE], EventType[[dict[str, str]], BASE_STATE]
], ],
] ]
] = None, ] = None,