move generated stubs to separate directory, too messty

This commit is contained in:
Maxim Kurnikov
2018-11-10 17:49:18 +03:00
parent 7436d641e3
commit 96cd3ddb27
446 changed files with 58 additions and 71 deletions

View File

@@ -0,0 +1,79 @@
from typing import Any, Dict, List, Optional, Union
from django.forms.fields import Field
from django.forms.forms import BaseForm
from django.forms.renderers import DjangoTemplates
from django.forms.utils import ErrorList
from django.forms.widgets import Widget
from django.utils.safestring import SafeText
class BoundField:
initial: Any
form: django.forms.forms.BaseForm = ...
field: django.forms.fields.Field = ...
name: str = ...
html_name: str = ...
html_initial_name: str = ...
html_initial_id: str = ...
label: str = ...
help_text: str = ...
def __init__(self, form: BaseForm, field: Field, name: str) -> None: ...
def subwidgets(self) -> List[BoundWidget]: ...
def __bool__(self) -> bool: ...
def __iter__(self): ...
def __len__(self) -> int: ...
def __getitem__(
self, idx: Union[int, slice, str]
) -> Union[List[BoundWidget], BoundWidget]: ...
@property
def errors(self) -> ErrorList: ...
def as_widget(
self,
widget: Optional[Widget] = ...,
attrs: None = ...,
only_initial: bool = ...,
) -> SafeText: ...
def as_text(self, attrs: None = ..., **kwargs: Any) -> SafeText: ...
def as_textarea(self, attrs: None = ..., **kwargs: Any) -> SafeText: ...
def as_hidden(self, attrs: None = ..., **kwargs: Any) -> SafeText: ...
@property
def data(self) -> Any: ...
def value(self) -> Any: ...
def label_tag(
self,
contents: Optional[str] = ...,
attrs: Optional[Dict[str, str]] = ...,
label_suffix: Optional[str] = ...,
) -> SafeText: ...
def css_classes(self, extra_classes: None = ...) -> str: ...
@property
def is_hidden(self) -> bool: ...
@property
def auto_id(self) -> str: ...
@property
def id_for_label(self) -> str: ...
def initial(self) -> Any: ...
def build_widget_attrs(
self, attrs: Dict[str, str], widget: Optional[Widget] = ...
) -> Dict[str, Union[bool, str]]: ...
class BoundWidget:
parent_widget: django.forms.widgets.Widget = ...
data: Dict[
str, Optional[Union[Dict[str, Union[bool, str]], int, str]]
] = ...
renderer: django.forms.renderers.DjangoTemplates = ...
def __init__(
self,
parent_widget: Widget,
data: Dict[str, Optional[Union[Dict[str, Union[bool, str]], int, str]]],
renderer: DjangoTemplates,
) -> None: ...
def tag(self, wrap_label: bool = ...) -> SafeText: ...
@property
def template_name(self) -> str: ...
@property
def id_for_label(self) -> str: ...
@property
def choice_label(self) -> str: ...