__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
from collections.abc import Iterator
from typing import Any, Generic, TypeVar
from wtforms.fields.core import Field, _Widget
from wtforms.form import BaseForm, _FormErrors
from wtforms.meta import DefaultMeta, _SupportsGettextAndNgettext
__all__ = ("FormField",)
_BoundFormT = TypeVar("_BoundFormT", bound=BaseForm)
class FormField(Field, Generic[_BoundFormT]):
form_class: type[_BoundFormT]
form: _BoundFormT
separator: str
def __init__(
self: FormField[_BoundFormT], # pyright: ignore[reportInvalidTypeVarUse] #11780
form_class: type[_BoundFormT],
label: str | None = None,
validators: None = None,
separator: str = "-",
*,
description: str = "",
id: str | None = None,
default: object | None = None,
widget: _Widget[FormField[_BoundFormT]] | None = None,
render_kw: dict[str, Any] | None = None,
name: str | None = None,
_form: BaseForm | None = None,
_prefix: str = "",
_translations: _SupportsGettextAndNgettext | None = None,
_meta: DefaultMeta | None = None,
) -> None: ...
def __iter__(self) -> Iterator[Field]: ...
def __getitem__(self, name: str) -> Field: ...
def __getattr__(self, name: str) -> Field: ...
@property
def data(self) -> dict[str, Any]: ...
@property
def errors(self) -> _FormErrors: ... # type: ignore[override]
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __init__.pyi | File | 1.97 KB | 0644 |
|
| choices.pyi | File | 3.12 KB | 0644 |
|
| core.pyi | File | 5.77 KB | 0644 |
|
| datetime.pyi | File | 5.05 KB | 0644 |
|
| form.pyi | File | 1.39 KB | 0644 |
|
| list.pyi | File | 2.18 KB | 0644 |
|
| numeric.pyi | File | 5.44 KB | 0644 |
|
| simple.pyi | File | 2.45 KB | 0644 |
|