Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pydom/types/html/html_body_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pydom.types.html.html_element_props import HTMLElementProps


class HTMLBodyElement(HTMLElementProps, total=False, closed=False):
class HTMLBodyElement(HTMLElementProps, total=False):
alink: Optional[str]
"""
**@deprecated** Use the CSS color property in conjunction with the :active pseudo-class instead
Expand Down
4 changes: 2 additions & 2 deletions src/pydom/types/html/html_element.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from typing import TYPE_CHECKING, Dict, Iterable, Union, Literal, Optional
from typing import TYPE_CHECKING, Any, Dict, Iterable, Union, Literal, Optional

from typing_extensions import TypedDict

if TYPE_CHECKING:
from pydom.styling import StyleSheet


class HTMLElement(TypedDict, total=False, closed=False):
class HTMLElement(TypedDict, total=False, extra_items=Any):
access_key: Optional[str]
auto_capitalize: Optional[str]
classes: Optional[Union[str, Iterable[str]]]
Expand Down
2 changes: 1 addition & 1 deletion src/pydom/types/html/html_head_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
from pydom.types.html.html_element_props import HTMLElementProps


class HTMLHeadElement(HTMLElementProps, total=False, closed=False):
class HTMLHeadElement(HTMLElementProps, total=False):
profile: Optional[str]