This commit is contained in:
2025-09-07 22:09:54 +02:00
parent e1b817252c
commit 2fc0d000b6
7796 changed files with 2159515 additions and 933 deletions

View File

@ -0,0 +1,231 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class A(Component):
"""An A component.
A is a wrapper for the <a> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- download (string; optional):
Indicates that the hyperlink is to be used for downloading a
resource.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- href (string; optional):
The URL of a linked resource.
- hrefLang (string; optional):
Specifies the language of the linked resource.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- media (string; optional):
Specifies a hint of the media for which the linked resource was
designed.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- referrerPolicy (string; optional):
Specifies which referrer is sent when fetching the resource.
- rel (string; optional):
Specifies the relationship of the target object to the link
object.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- shape (string; optional)
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- target (string; optional):
Specifies where to open the linked document (in the case of an <a>
element) or where to display the response received (in the case of
a <form> element).
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "A"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
download: typing.Optional[str] = None,
href: typing.Optional[str] = None,
hrefLang: typing.Optional[str] = None,
media: typing.Optional[str] = None,
referrerPolicy: typing.Optional[str] = None,
rel: typing.Optional[str] = None,
shape: typing.Optional[str] = None,
target: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"download",
"draggable",
"hidden",
"href",
"hrefLang",
"key",
"lang",
"media",
"n_clicks",
"n_clicks_timestamp",
"referrerPolicy",
"rel",
"role",
"shape",
"spellCheck",
"style",
"tabIndex",
"target",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"download",
"draggable",
"hidden",
"href",
"hrefLang",
"key",
"lang",
"media",
"n_clicks",
"n_clicks_timestamp",
"referrerPolicy",
"rel",
"role",
"shape",
"spellCheck",
"style",
"tabIndex",
"target",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(A, self).__init__(children=children, **args)
setattr(A, "__init__", _explicitize_args(A.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Abbr(Component):
"""An Abbr component.
Abbr is a wrapper for the <abbr> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Abbr"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Abbr, self).__init__(children=children, **args)
setattr(Abbr, "__init__", _explicitize_args(Abbr.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Acronym(Component):
"""An Acronym component.
Acronym is a wrapper for the <acronym> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/acronym
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Acronym"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Acronym, self).__init__(children=children, **args)
setattr(Acronym, "__init__", _explicitize_args(Acronym.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Address(Component):
"""An Address component.
Address is a wrapper for the <address> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Address"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Address, self).__init__(children=children, **args)
setattr(Address, "__init__", _explicitize_args(Address.__init__))

View File

@ -0,0 +1,237 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Area(Component):
"""An Area component.
Area is a wrapper for the <area> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- alt (string; optional):
Alternative text in case an image can't be displayed.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- coords (string; optional):
A set of values specifying the coordinates of the hot-spot region.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- download (string; optional):
Indicates that the hyperlink is to be used for downloading a
resource.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- href (string; optional):
The URL of a linked resource.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- media (string; optional):
Specifies a hint of the media for which the linked resource was
designed.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- referrerPolicy (string; optional):
Specifies which referrer is sent when fetching the resource.
- rel (string; optional):
Specifies the relationship of the target object to the link
object.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- shape (string; optional)
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- target (string; optional):
Specifies where to open the linked document (in the case of an <a>
element) or where to display the response received (in the case of
a <form> element).
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Area"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
alt: typing.Optional[str] = None,
coords: typing.Optional[str] = None,
download: typing.Optional[str] = None,
href: typing.Optional[str] = None,
media: typing.Optional[str] = None,
referrerPolicy: typing.Optional[str] = None,
rel: typing.Optional[str] = None,
shape: typing.Optional[str] = None,
target: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"alt",
"aria-*",
"className",
"contentEditable",
"coords",
"data-*",
"dir",
"disable_n_clicks",
"download",
"draggable",
"hidden",
"href",
"key",
"lang",
"media",
"n_clicks",
"n_clicks_timestamp",
"referrerPolicy",
"rel",
"role",
"shape",
"spellCheck",
"style",
"tabIndex",
"target",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"alt",
"aria-*",
"className",
"contentEditable",
"coords",
"data-*",
"dir",
"disable_n_clicks",
"download",
"draggable",
"hidden",
"href",
"key",
"lang",
"media",
"n_clicks",
"n_clicks_timestamp",
"referrerPolicy",
"rel",
"role",
"shape",
"spellCheck",
"style",
"tabIndex",
"target",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Area, self).__init__(children=children, **args)
setattr(Area, "__init__", _explicitize_args(Area.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Article(Component):
"""An Article component.
Article is a wrapper for the <article> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Article"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Article, self).__init__(children=children, **args)
setattr(Article, "__init__", _explicitize_args(Article.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Aside(Component):
"""An Aside component.
Aside is a wrapper for the <aside> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/aside
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Aside"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Aside, self).__init__(children=children, **args)
setattr(Aside, "__init__", _explicitize_args(Aside.__init__))

View File

@ -0,0 +1,229 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Audio(Component):
"""An Audio component.
Audio is a wrapper for the <audio> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- autoPlay (a value equal to: 'autoPlay', 'autoplay', 'AUTOPLAY' | boolean; optional):
The audio or video should play as soon as possible.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- controls (a value equal to: 'controls', 'CONTROLS' | boolean; optional):
Indicates whether the browser should show playback controls to the
user.
- crossOrigin (string; optional):
How the element handles cross-origin requests.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- loop (a value equal to: 'loop', 'LOOP' | boolean; optional):
Indicates whether the media should start playing from the start
when it's finished.
- muted (a value equal to: 'muted', 'MUTED' | boolean; optional):
Indicates whether the audio will be initially silenced on page
load.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- preload (string; optional):
Indicates whether the whole resource, parts of it or nothing
should be preloaded.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- src (string; optional):
The URL of the embeddable content.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Audio"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
autoPlay: typing.Optional[
typing.Union[Literal["autoPlay", "autoplay", "AUTOPLAY"], bool]
] = None,
controls: typing.Optional[
typing.Union[Literal["controls", "CONTROLS"], bool]
] = None,
crossOrigin: typing.Optional[str] = None,
loop: typing.Optional[typing.Union[Literal["loop", "LOOP"], bool]] = None,
muted: typing.Optional[typing.Union[Literal["muted", "MUTED"], bool]] = None,
preload: typing.Optional[str] = None,
src: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"autoPlay",
"className",
"contentEditable",
"controls",
"crossOrigin",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"loop",
"muted",
"n_clicks",
"n_clicks_timestamp",
"preload",
"role",
"spellCheck",
"src",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"autoPlay",
"className",
"contentEditable",
"controls",
"crossOrigin",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"loop",
"muted",
"n_clicks",
"n_clicks_timestamp",
"preload",
"role",
"spellCheck",
"src",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Audio, self).__init__(children=children, **args)
setattr(Audio, "__init__", _explicitize_args(Audio.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class B(Component):
"""A B component.
B is a wrapper for the <b> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/b
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "B"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(B, self).__init__(children=children, **args)
setattr(B, "__init__", _explicitize_args(B.__init__))

View File

@ -0,0 +1,193 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Base(Component):
"""A Base component.
Base is a wrapper for the <base> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- href (string; optional):
The URL of a linked resource.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- target (string; optional):
Specifies where to open the linked document (in the case of an <a>
element) or where to display the response received (in the case of
a <form> element).
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Base"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
href: typing.Optional[str] = None,
target: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"href",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"target",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"href",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"target",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Base, self).__init__(children=children, **args)
setattr(Base, "__init__", _explicitize_args(Base.__init__))

View File

@ -0,0 +1,183 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Basefont(Component):
"""A Basefont component.
Basefont is a wrapper for the <basefont> HTML5 element.
OBSOLETE: <basefont> is included for completeness, but should be avoided
as it is only supported by Internet Explorer.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/basefont
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Basefont"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Basefont, self).__init__(children=children, **args)
setattr(Basefont, "__init__", _explicitize_args(Basefont.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Bdi(Component):
"""A Bdi component.
Bdi is a wrapper for the <bdi> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdi
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Bdi"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Bdi, self).__init__(children=children, **args)
setattr(Bdi, "__init__", _explicitize_args(Bdi.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Bdo(Component):
"""A Bdo component.
Bdo is a wrapper for the <bdo> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdo
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Bdo"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Bdo, self).__init__(children=children, **args)
setattr(Bdo, "__init__", _explicitize_args(Bdo.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Big(Component):
"""A Big component.
Big is a wrapper for the <big> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/big
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Big"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Big, self).__init__(children=children, **args)
setattr(Big, "__init__", _explicitize_args(Big.__init__))

View File

@ -0,0 +1,183 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Blink(Component):
"""A Blink component.
Blink is a wrapper for the <blink> HTML5 element.
OBSOLETE: <blink> is included for completeness, but should be avoided
as it is not supported by any modern browsers.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blink
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Blink"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Blink, self).__init__(children=children, **args)
setattr(Blink, "__init__", _explicitize_args(Blink.__init__))

View File

@ -0,0 +1,185 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Blockquote(Component):
"""A Blockquote component.
Blockquote is a wrapper for the <blockquote> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- cite (string; optional):
Contains a URI which points to the source of the quote or change.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Blockquote"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
cite: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"cite",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"cite",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Blockquote, self).__init__(children=children, **args)
setattr(Blockquote, "__init__", _explicitize_args(Blockquote.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Br(Component):
"""A Br component.
Br is a wrapper for the <br> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/br
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Br"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Br, self).__init__(children=children, **args)
setattr(Br, "__init__", _explicitize_args(Br.__init__))

View File

@ -0,0 +1,270 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Button(Component):
"""A Button component.
Button is a wrapper for the <button> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- autoFocus (a value equal to: 'autoFocus', 'autofocus', 'AUTOFOCUS' | boolean; optional):
The element should be automatically focused after the page loaded.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- disabled (a value equal to: 'disabled', 'DISABLED' | boolean; optional):
Indicates whether the user can interact with the element.
- draggable (string; optional):
Defines whether the element can be dragged.
- form (string; optional):
Indicates the form that is the owner of the element.
- formAction (string; optional):
Indicates the action of the element, overriding the action defined
in the <form>.
- formEncType (string; optional):
If the button/input is a submit button (e.g., type=\"submit\"),
this attribute sets the encoding type to use during form
submission. If this attribute is specified, it overrides the
enctype attribute of the button's form owner.
- formMethod (string; optional):
If the button/input is a submit button (e.g., type=\"submit\"),
this attribute sets the submission method to use during form
submission (GET, POST, etc.). If this attribute is specified, it
overrides the method attribute of the button's form owner.
- formNoValidate (a value equal to: 'formNoValidate', 'formnovalidate', 'FORMNOVALIDATE' | boolean; optional):
If the button/input is a submit button (e.g., type=\"submit\"),
this boolean attribute specifies that the form is not to be
validated when it is submitted. If this attribute is specified, it
overrides the novalidate attribute of the button's form owner.
- formTarget (string; optional):
If the button/input is a submit button (e.g., type=\"submit\"),
this attribute specifies the browsing context (for example, tab,
window, or inline frame) in which to display the response that is
received after submitting the form. If this attribute is
specified, it overrides the target attribute of the button's form
owner.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- name (string; optional):
Name of the element. For example used by the server to identify
the fields in form submits.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- type (string; optional):
Defines the type of the element.
- value (string; optional):
Defines a default value which will be displayed in the element on
page load."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Button"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
autoFocus: typing.Optional[
typing.Union[Literal["autoFocus", "autofocus", "AUTOFOCUS"], bool]
] = None,
disabled: typing.Optional[
typing.Union[Literal["disabled", "DISABLED"], bool]
] = None,
form: typing.Optional[str] = None,
formAction: typing.Optional[str] = None,
formEncType: typing.Optional[str] = None,
formMethod: typing.Optional[str] = None,
formNoValidate: typing.Optional[
typing.Union[
Literal["formNoValidate", "formnovalidate", "FORMNOVALIDATE"], bool
]
] = None,
formTarget: typing.Optional[str] = None,
name: typing.Optional[str] = None,
type: typing.Optional[str] = None,
value: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"autoFocus",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"disabled",
"draggable",
"form",
"formAction",
"formEncType",
"formMethod",
"formNoValidate",
"formTarget",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"type",
"value",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"autoFocus",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"disabled",
"draggable",
"form",
"formAction",
"formEncType",
"formMethod",
"formNoValidate",
"formTarget",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"type",
"value",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Button, self).__init__(children=children, **args)
setattr(Button, "__init__", _explicitize_args(Button.__init__))

View File

@ -0,0 +1,197 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Canvas(Component):
"""A Canvas component.
Canvas is a wrapper for the <canvas> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- height (string | number; optional):
Specifies the height of elements listed here. For all other
elements, use the CSS height property. Note: In some instances,
such as <div>, this is a legacy attribute, in which case the CSS
height property should be used instead.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- width (string | number; optional):
For the elements listed here, this establishes the element's
width. Note: For all other instances, such as <div>, this is a
legacy attribute, in which case the CSS width property should be
used instead."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Canvas"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
height: typing.Optional[typing.Union[str, NumberType]] = None,
width: typing.Optional[typing.Union[str, NumberType]] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"height",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"width",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"height",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"width",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Canvas, self).__init__(children=children, **args)
setattr(Canvas, "__init__", _explicitize_args(Canvas.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Caption(Component):
"""A Caption component.
Caption is a wrapper for the <caption> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Caption"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Caption, self).__init__(children=children, **args)
setattr(Caption, "__init__", _explicitize_args(Caption.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Center(Component):
"""A Center component.
Center is a wrapper for the <center> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/center
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Center"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Center, self).__init__(children=children, **args)
setattr(Center, "__init__", _explicitize_args(Center.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Cite(Component):
"""A Cite component.
Cite is a wrapper for the <cite> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Cite"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Cite, self).__init__(children=children, **args)
setattr(Cite, "__init__", _explicitize_args(Cite.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Code(Component):
"""A Code component.
Code is a wrapper for the <code> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/code
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Code"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Code, self).__init__(children=children, **args)
setattr(Code, "__init__", _explicitize_args(Code.__init__))

View File

@ -0,0 +1,184 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Col(Component):
"""A Col component.
Col is a wrapper for the <col> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- span (string; optional)
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Col"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
span: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"span",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"span",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Col, self).__init__(children=children, **args)
setattr(Col, "__init__", _explicitize_args(Col.__init__))

View File

@ -0,0 +1,184 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Colgroup(Component):
"""A Colgroup component.
Colgroup is a wrapper for the <colgroup> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- span (string; optional)
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Colgroup"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
span: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"span",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"span",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Colgroup, self).__init__(children=children, **args)
setattr(Colgroup, "__init__", _explicitize_args(Colgroup.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Content(Component):
"""A Content component.
Content is a wrapper for the <content> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/content
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Content"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Content, self).__init__(children=children, **args)
setattr(Content, "__init__", _explicitize_args(Content.__init__))

View File

@ -0,0 +1,186 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Data(Component):
"""A Data component.
Data is a wrapper for the <data> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/data
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- value (string; optional):
Defines a default value which will be displayed in the element on
page load."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Data"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
value: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"value",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"value",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Data, self).__init__(children=children, **args)
setattr(Data, "__init__", _explicitize_args(Data.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Datalist(Component):
"""A Datalist component.
Datalist is a wrapper for the <datalist> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Datalist"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Datalist, self).__init__(children=children, **args)
setattr(Datalist, "__init__", _explicitize_args(Datalist.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Dd(Component):
"""A Dd component.
Dd is a wrapper for the <dd> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dd
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Dd"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Dd, self).__init__(children=children, **args)
setattr(Dd, "__init__", _explicitize_args(Dd.__init__))

View File

@ -0,0 +1,191 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Del(Component):
"""A Del component.
Del is a wrapper for the <del> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- cite (string; optional):
Contains a URI which points to the source of the quote or change.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dateTime (string; optional):
Indicates the date and time associated with the element.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Del"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
cite: typing.Optional[str] = None,
dateTime: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"cite",
"className",
"contentEditable",
"data-*",
"dateTime",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"cite",
"className",
"contentEditable",
"data-*",
"dateTime",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Del, self).__init__(children=children, **args)
setattr(Del, "__init__", _explicitize_args(Del.__init__))

View File

@ -0,0 +1,187 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Details(Component):
"""A Details component.
Details is a wrapper for the <details> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- open (a value equal to: 'open', 'OPEN' | boolean; optional):
Indicates whether the contents are currently visible (in the case
of a <details> element) or whether the dialog is active and can be
interacted with (in the case of a <dialog> element).
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Details"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
open: typing.Optional[typing.Union[Literal["open", "OPEN"], bool]] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"open",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"open",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Details, self).__init__(children=children, **args)
setattr(Details, "__init__", _explicitize_args(Details.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Dfn(Component):
"""A Dfn component.
Dfn is a wrapper for the <dfn> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dfn
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Dfn"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Dfn, self).__init__(children=children, **args)
setattr(Dfn, "__init__", _explicitize_args(Dfn.__init__))

View File

@ -0,0 +1,187 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Dialog(Component):
"""A Dialog component.
Dialog is a wrapper for the <dialog> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- open (a value equal to: 'open', 'OPEN' | boolean; optional):
Indicates whether the contents are currently visible (in the case
of a <details> element) or whether the dialog is active and can be
interacted with (in the case of a <dialog> element).
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Dialog"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
open: typing.Optional[typing.Union[Literal["open", "OPEN"], bool]] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"open",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"open",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Dialog, self).__init__(children=children, **args)
setattr(Dialog, "__init__", _explicitize_args(Dialog.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Div(Component):
"""A Div component.
Div is a wrapper for the <div> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Div"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Div, self).__init__(children=children, **args)
setattr(Div, "__init__", _explicitize_args(Div.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Dl(Component):
"""A Dl component.
Dl is a wrapper for the <dl> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Dl"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Dl, self).__init__(children=children, **args)
setattr(Dl, "__init__", _explicitize_args(Dl.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Dt(Component):
"""A Dt component.
Dt is a wrapper for the <dt> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dt
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Dt"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Dt, self).__init__(children=children, **args)
setattr(Dt, "__init__", _explicitize_args(Dt.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Em(Component):
"""An Em component.
Em is a wrapper for the <em> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/em
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Em"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Em, self).__init__(children=children, **args)
setattr(Em, "__init__", _explicitize_args(Em.__init__))

View File

@ -0,0 +1,209 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Embed(Component):
"""An Embed component.
Embed is a wrapper for the <embed> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/embed
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- height (string | number; optional):
Specifies the height of elements listed here. For all other
elements, use the CSS height property. Note: In some instances,
such as <div>, this is a legacy attribute, in which case the CSS
height property should be used instead.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- src (string; optional):
The URL of the embeddable content.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- type (string; optional):
Defines the type of the element.
- width (string | number; optional):
For the elements listed here, this establishes the element's
width. Note: For all other instances, such as <div>, this is a
legacy attribute, in which case the CSS width property should be
used instead."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Embed"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
height: typing.Optional[typing.Union[str, NumberType]] = None,
src: typing.Optional[str] = None,
type: typing.Optional[str] = None,
width: typing.Optional[typing.Union[str, NumberType]] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"height",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"src",
"style",
"tabIndex",
"title",
"type",
"width",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"height",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"src",
"style",
"tabIndex",
"title",
"type",
"width",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Embed, self).__init__(children=children, **args)
setattr(Embed, "__init__", _explicitize_args(Embed.__init__))

View File

@ -0,0 +1,200 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Fieldset(Component):
"""A Fieldset component.
Fieldset is a wrapper for the <fieldset> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- disabled (a value equal to: 'disabled', 'DISABLED' | boolean; optional):
Indicates whether the user can interact with the element.
- draggable (string; optional):
Defines whether the element can be dragged.
- form (string; optional):
Indicates the form that is the owner of the element.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- name (string; optional):
Name of the element. For example used by the server to identify
the fields in form submits.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Fieldset"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
disabled: typing.Optional[
typing.Union[Literal["disabled", "DISABLED"], bool]
] = None,
form: typing.Optional[str] = None,
name: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"disabled",
"draggable",
"form",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"disabled",
"draggable",
"form",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Fieldset, self).__init__(children=children, **args)
setattr(Fieldset, "__init__", _explicitize_args(Fieldset.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Figcaption(Component):
"""A Figcaption component.
Figcaption is a wrapper for the <figcaption> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figcaption
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Figcaption"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Figcaption, self).__init__(children=children, **args)
setattr(Figcaption, "__init__", _explicitize_args(Figcaption.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Figure(Component):
"""A Figure component.
Figure is a wrapper for the <figure> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figure
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Figure"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Figure, self).__init__(children=children, **args)
setattr(Figure, "__init__", _explicitize_args(Figure.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Font(Component):
"""A Font component.
Font is a wrapper for the <font> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/font
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Font"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Font, self).__init__(children=children, **args)
setattr(Font, "__init__", _explicitize_args(Font.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Footer(Component):
"""A Footer component.
Footer is a wrapper for the <footer> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Footer"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Footer, self).__init__(children=children, **args)
setattr(Footer, "__init__", _explicitize_args(Footer.__init__))

View File

@ -0,0 +1,242 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Form(Component):
"""A Form component.
Form is a wrapper for the <form> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accept (string; optional):
List of types the server accepts, typically a file type.
- acceptCharset (string; optional):
The character set, which if provided must be \"UTF-8\".
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- action (string; optional):
The URI of a program that processes the information submitted via
the form.
- aria-* (string; optional):
A wildcard aria attribute.
- autoComplete (string; optional):
Indicates whether controls in this form can by default have their
values automatically completed by the browser.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- encType (string; optional):
Defines the content type of the form data when the method is POST.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- method (string; optional):
Defines which HTTP method to use when submitting the form. Can be
GET (default) or POST.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- name (string; optional):
Name of the element. For example used by the server to identify
the fields in form submits.
- noValidate (a value equal to: 'noValidate', 'novalidate', 'NOVALIDATE' | boolean; optional):
This attribute indicates that the form shouldn't be validated when
submitted.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- target (string; optional):
Specifies where to open the linked document (in the case of an <a>
element) or where to display the response received (in the case of
a <form> element).
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Form"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accept: typing.Optional[str] = None,
acceptCharset: typing.Optional[str] = None,
action: typing.Optional[str] = None,
autoComplete: typing.Optional[str] = None,
encType: typing.Optional[str] = None,
method: typing.Optional[str] = None,
name: typing.Optional[str] = None,
noValidate: typing.Optional[
typing.Union[Literal["noValidate", "novalidate", "NOVALIDATE"], bool]
] = None,
target: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accept",
"acceptCharset",
"accessKey",
"action",
"aria-*",
"autoComplete",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"encType",
"hidden",
"key",
"lang",
"method",
"n_clicks",
"n_clicks_timestamp",
"name",
"noValidate",
"role",
"spellCheck",
"style",
"tabIndex",
"target",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accept",
"acceptCharset",
"accessKey",
"action",
"aria-*",
"autoComplete",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"encType",
"hidden",
"key",
"lang",
"method",
"n_clicks",
"n_clicks_timestamp",
"name",
"noValidate",
"role",
"spellCheck",
"style",
"tabIndex",
"target",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Form, self).__init__(children=children, **args)
setattr(Form, "__init__", _explicitize_args(Form.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Frame(Component):
"""A Frame component.
Frame is a wrapper for the <frame> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/frame
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Frame"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Frame, self).__init__(children=children, **args)
setattr(Frame, "__init__", _explicitize_args(Frame.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Frameset(Component):
"""A Frameset component.
Frameset is a wrapper for the <frameset> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/frameset
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Frameset"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Frameset, self).__init__(children=children, **args)
setattr(Frameset, "__init__", _explicitize_args(Frameset.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class H1(Component):
"""A H1 component.
H1 is a wrapper for the <h1> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h1
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "H1"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(H1, self).__init__(children=children, **args)
setattr(H1, "__init__", _explicitize_args(H1.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class H2(Component):
"""A H2 component.
H2 is a wrapper for the <h2> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h2
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "H2"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(H2, self).__init__(children=children, **args)
setattr(H2, "__init__", _explicitize_args(H2.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class H3(Component):
"""A H3 component.
H3 is a wrapper for the <h3> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h3
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "H3"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(H3, self).__init__(children=children, **args)
setattr(H3, "__init__", _explicitize_args(H3.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class H4(Component):
"""A H4 component.
H4 is a wrapper for the <h4> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h4
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "H4"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(H4, self).__init__(children=children, **args)
setattr(H4, "__init__", _explicitize_args(H4.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class H5(Component):
"""A H5 component.
H5 is a wrapper for the <h5> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h5
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "H5"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(H5, self).__init__(children=children, **args)
setattr(H5, "__init__", _explicitize_args(H5.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class H6(Component):
"""A H6 component.
H6 is a wrapper for the <h6> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h6
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "H6"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(H6, self).__init__(children=children, **args)
setattr(H6, "__init__", _explicitize_args(H6.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Header(Component):
"""A Header component.
Header is a wrapper for the <header> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/header
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Header"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Header, self).__init__(children=children, **args)
setattr(Header, "__init__", _explicitize_args(Header.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Hgroup(Component):
"""A Hgroup component.
Hgroup is a wrapper for the <hgroup> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hgroup
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Hgroup"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Hgroup, self).__init__(children=children, **args)
setattr(Hgroup, "__init__", _explicitize_args(Hgroup.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Hr(Component):
"""A Hr component.
Hr is a wrapper for the <hr> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Hr"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Hr, self).__init__(children=children, **args)
setattr(Hr, "__init__", _explicitize_args(Hr.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class I(Component):
"""An I component.
I is a wrapper for the <i> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/i
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "I"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(I, self).__init__(children=children, **args)
setattr(I, "__init__", _explicitize_args(I.__init__))

View File

@ -0,0 +1,234 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Iframe(Component):
"""An Iframe component.
Iframe is a wrapper for the <iframe> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- allow (string; optional):
Specifies a feature-policy for the iframe.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- height (string | number; optional):
Specifies the height of elements listed here. For all other
elements, use the CSS height property. Note: In some instances,
such as <div>, this is a legacy attribute, in which case the CSS
height property should be used instead.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- name (string; optional):
Name of the element. For example used by the server to identify
the fields in form submits.
- referrerPolicy (string; optional):
Specifies which referrer is sent when fetching the resource.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- sandbox (string; optional):
Stops a document loaded in an iframe from using certain features
(such as submitting forms or opening new windows).
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- src (string; optional):
The URL of the embeddable content.
- srcDoc (string; optional)
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- width (string | number; optional):
For the elements listed here, this establishes the element's
width. Note: For all other instances, such as <div>, this is a
legacy attribute, in which case the CSS width property should be
used instead."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Iframe"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
allow: typing.Optional[str] = None,
height: typing.Optional[typing.Union[str, NumberType]] = None,
name: typing.Optional[str] = None,
referrerPolicy: typing.Optional[str] = None,
sandbox: typing.Optional[str] = None,
src: typing.Optional[str] = None,
srcDoc: typing.Optional[str] = None,
width: typing.Optional[typing.Union[str, NumberType]] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"allow",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"height",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"referrerPolicy",
"role",
"sandbox",
"spellCheck",
"src",
"srcDoc",
"style",
"tabIndex",
"title",
"width",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"allow",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"height",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"referrerPolicy",
"role",
"sandbox",
"spellCheck",
"src",
"srcDoc",
"style",
"tabIndex",
"title",
"width",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Iframe, self).__init__(children=children, **args)
setattr(Iframe, "__init__", _explicitize_args(Iframe.__init__))

View File

@ -0,0 +1,237 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Img(Component):
"""An Img component.
Img is a wrapper for the <img> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- alt (string; optional):
Alternative text in case an image can't be displayed.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- crossOrigin (string; optional):
How the element handles cross-origin requests.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- height (string | number; optional):
Specifies the height of elements listed here. For all other
elements, use the CSS height property. Note: In some instances,
such as <div>, this is a legacy attribute, in which case the CSS
height property should be used instead.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- referrerPolicy (string; optional):
Specifies which referrer is sent when fetching the resource.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- sizes (string; optional)
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- src (string; optional):
The URL of the embeddable content.
- srcSet (string; optional):
One or more responsive image candidates.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- useMap (string; optional)
- width (string | number; optional):
For the elements listed here, this establishes the element's
width. Note: For all other instances, such as <div>, this is a
legacy attribute, in which case the CSS width property should be
used instead."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Img"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
alt: typing.Optional[str] = None,
crossOrigin: typing.Optional[str] = None,
height: typing.Optional[typing.Union[str, NumberType]] = None,
referrerPolicy: typing.Optional[str] = None,
sizes: typing.Optional[str] = None,
src: typing.Optional[str] = None,
srcSet: typing.Optional[str] = None,
useMap: typing.Optional[str] = None,
width: typing.Optional[typing.Union[str, NumberType]] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"alt",
"aria-*",
"className",
"contentEditable",
"crossOrigin",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"height",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"referrerPolicy",
"role",
"sizes",
"spellCheck",
"src",
"srcSet",
"style",
"tabIndex",
"title",
"useMap",
"width",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"alt",
"aria-*",
"className",
"contentEditable",
"crossOrigin",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"height",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"referrerPolicy",
"role",
"sizes",
"spellCheck",
"src",
"srcSet",
"style",
"tabIndex",
"title",
"useMap",
"width",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Img, self).__init__(children=children, **args)
setattr(Img, "__init__", _explicitize_args(Img.__init__))

View File

@ -0,0 +1,191 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Ins(Component):
"""An Ins component.
Ins is a wrapper for the <ins> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ins
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- cite (string; optional):
Contains a URI which points to the source of the quote or change.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dateTime (string; optional):
Indicates the date and time associated with the element.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Ins"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
cite: typing.Optional[str] = None,
dateTime: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"cite",
"className",
"contentEditable",
"data-*",
"dateTime",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"cite",
"className",
"contentEditable",
"data-*",
"dateTime",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Ins, self).__init__(children=children, **args)
setattr(Ins, "__init__", _explicitize_args(Ins.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Kbd(Component):
"""A Kbd component.
Kbd is a wrapper for the <kbd> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Kbd"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Kbd, self).__init__(children=children, **args)
setattr(Kbd, "__init__", _explicitize_args(Kbd.__init__))

View File

@ -0,0 +1,184 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Keygen(Component):
"""A Keygen component.
Keygen is a wrapper for the <keygen> HTML5 element.
DEPRECATED: <keygen> is included for completeness, but should be avoided
as it is not supported by all browsers and may be removed at any time from
those that do support it.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Keygen"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Keygen, self).__init__(children=children, **args)
setattr(Keygen, "__init__", _explicitize_args(Keygen.__init__))

View File

@ -0,0 +1,191 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Label(Component):
"""A Label component.
Label is a wrapper for the <label> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- form (string; optional):
Indicates the form that is the owner of the element.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- htmlFor (string; optional):
Describes elements which belongs to this one.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Label"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
htmlFor: typing.Optional[str] = None,
form: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"form",
"hidden",
"htmlFor",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"form",
"hidden",
"htmlFor",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Label, self).__init__(children=children, **args)
setattr(Label, "__init__", _explicitize_args(Label.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Legend(Component):
"""A Legend component.
Legend is a wrapper for the <legend> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/legend
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Legend"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Legend, self).__init__(children=children, **args)
setattr(Legend, "__init__", _explicitize_args(Legend.__init__))

View File

@ -0,0 +1,186 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Li(Component):
"""A Li component.
Li is a wrapper for the <li> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- value (string; optional):
Defines a default value which will be displayed in the element on
page load."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Li"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
value: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"value",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"value",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Li, self).__init__(children=children, **args)
setattr(Li, "__init__", _explicitize_args(Li.__init__))

View File

@ -0,0 +1,235 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Link(Component):
"""A Link component.
Link is a wrapper for the <link> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- crossOrigin (string; optional):
How the element handles cross-origin requests.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- href (string; optional):
The URL of a linked resource.
- hrefLang (string; optional):
Specifies the language of the linked resource.
- integrity (string; optional):
Specifies a Subresource Integrity value that allows browsers to
verify what they fetch.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- media (string; optional):
Specifies a hint of the media for which the linked resource was
designed.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- referrerPolicy (string; optional):
Specifies which referrer is sent when fetching the resource.
- rel (string; optional):
Specifies the relationship of the target object to the link
object.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- sizes (string; optional)
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- type (string; optional):
Defines the type of the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Link"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
crossOrigin: typing.Optional[str] = None,
href: typing.Optional[str] = None,
hrefLang: typing.Optional[str] = None,
integrity: typing.Optional[str] = None,
media: typing.Optional[str] = None,
referrerPolicy: typing.Optional[str] = None,
rel: typing.Optional[str] = None,
sizes: typing.Optional[str] = None,
type: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"crossOrigin",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"href",
"hrefLang",
"integrity",
"key",
"lang",
"media",
"n_clicks",
"n_clicks_timestamp",
"referrerPolicy",
"rel",
"role",
"sizes",
"spellCheck",
"style",
"tabIndex",
"title",
"type",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"crossOrigin",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"href",
"hrefLang",
"integrity",
"key",
"lang",
"media",
"n_clicks",
"n_clicks_timestamp",
"referrerPolicy",
"rel",
"role",
"sizes",
"spellCheck",
"style",
"tabIndex",
"title",
"type",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Link, self).__init__(children=children, **args)
setattr(Link, "__init__", _explicitize_args(Link.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Main(Component):
"""A Main component.
Main is a wrapper for the <main> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/main
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Main"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Main, self).__init__(children=children, **args)
setattr(Main, "__init__", _explicitize_args(Main.__init__))

View File

@ -0,0 +1,186 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class MapEl(Component):
"""A MapEl component.
MapEl is a wrapper for the <map> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/map
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- name (string; optional):
Name of the element. For example used by the server to identify
the fields in form submits.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "MapEl"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
name: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(MapEl, self).__init__(children=children, **args)
setattr(MapEl, "__init__", _explicitize_args(MapEl.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Mark(Component):
"""A Mark component.
Mark is a wrapper for the <mark> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/mark
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Mark"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Mark, self).__init__(children=children, **args)
setattr(Mark, "__init__", _explicitize_args(Mark.__init__))

View File

@ -0,0 +1,190 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Marquee(Component):
"""A Marquee component.
Marquee is a wrapper for the <marquee> HTML5 element.
DEPRECATED: <marquee> is included for completeness, but should be avoided
as browsers may remove it at any time.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/marquee
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- loop (a value equal to: 'loop', 'LOOP' | boolean; optional):
Indicates whether the media should start playing from the start
when it's finished.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Marquee"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
loop: typing.Optional[typing.Union[Literal["loop", "LOOP"], bool]] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"loop",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"loop",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Marquee, self).__init__(children=children, **args)
setattr(Marquee, "__init__", _explicitize_args(Marquee.__init__))

View File

@ -0,0 +1,210 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Meta(Component):
"""A Meta component.
Meta is a wrapper for the <meta> HTML5 element.
CAUTION: <meta> is included for completeness, but generally will not behave
as expected since <meta> tags should be static HTML content in the <head> of
the document. Dash components are dynamic <body> content.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- charSet (string; optional):
Declares the character encoding of the page or script.
- className (string; optional):
Often used with CSS to style elements with common properties.
- content (string; optional):
A value associated with http-equiv or name depending on the
context.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- httpEquiv (string; optional):
Defines a pragma directive.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- name (string; optional):
Name of the element. For example used by the server to identify
the fields in form submits.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Meta"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
charSet: typing.Optional[str] = None,
content: typing.Optional[str] = None,
httpEquiv: typing.Optional[str] = None,
name: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"charSet",
"className",
"content",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"httpEquiv",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"charSet",
"className",
"content",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"httpEquiv",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Meta, self).__init__(children=children, **args)
setattr(Meta, "__init__", _explicitize_args(Meta.__init__))

View File

@ -0,0 +1,222 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Meter(Component):
"""A Meter component.
Meter is a wrapper for the <meter> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- form (string; optional):
Indicates the form that is the owner of the element.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- high (string; optional):
Indicates the lower bound of the upper range.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- low (string; optional):
Indicates the upper bound of the lower range.
- max (string | number; optional):
Indicates the maximum value allowed.
- min (string | number; optional):
Indicates the minimum value allowed.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- optimum (string; optional):
Indicates the optimal numeric value.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- value (string; optional):
Defines a default value which will be displayed in the element on
page load."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Meter"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
form: typing.Optional[str] = None,
high: typing.Optional[str] = None,
low: typing.Optional[str] = None,
max: typing.Optional[typing.Union[str, NumberType]] = None,
min: typing.Optional[typing.Union[str, NumberType]] = None,
optimum: typing.Optional[str] = None,
value: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"form",
"hidden",
"high",
"key",
"lang",
"low",
"max",
"min",
"n_clicks",
"n_clicks_timestamp",
"optimum",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"value",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"form",
"hidden",
"high",
"key",
"lang",
"low",
"max",
"min",
"n_clicks",
"n_clicks_timestamp",
"optimum",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"value",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Meter, self).__init__(children=children, **args)
setattr(Meter, "__init__", _explicitize_args(Meter.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Nav(Component):
"""A Nav component.
Nav is a wrapper for the <nav> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nav
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Nav"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Nav, self).__init__(children=children, **args)
setattr(Nav, "__init__", _explicitize_args(Nav.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Nobr(Component):
"""A Nobr component.
Nobr is a wrapper for the <nobr> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nobr
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Nobr"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Nobr, self).__init__(children=children, **args)
setattr(Nobr, "__init__", _explicitize_args(Nobr.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Noscript(Component):
"""A Noscript component.
Noscript is a wrapper for the <noscript> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noscript
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Noscript"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Noscript, self).__init__(children=children, **args)
setattr(Noscript, "__init__", _explicitize_args(Noscript.__init__))

View File

@ -0,0 +1,227 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class ObjectEl(Component):
"""An ObjectEl component.
ObjectEl is a wrapper for the <object> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data (string; optional):
Specifies the URL of the resource.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- form (string; optional):
Indicates the form that is the owner of the element.
- height (string | number; optional):
Specifies the height of elements listed here. For all other
elements, use the CSS height property. Note: In some instances,
such as <div>, this is a legacy attribute, in which case the CSS
height property should be used instead.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- name (string; optional):
Name of the element. For example used by the server to identify
the fields in form submits.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- type (string; optional):
Defines the type of the element.
- useMap (string; optional)
- width (string | number; optional):
For the elements listed here, this establishes the element's
width. Note: For all other instances, such as <div>, this is a
legacy attribute, in which case the CSS width property should be
used instead."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "ObjectEl"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
data: typing.Optional[str] = None,
form: typing.Optional[str] = None,
height: typing.Optional[typing.Union[str, NumberType]] = None,
name: typing.Optional[str] = None,
type: typing.Optional[str] = None,
useMap: typing.Optional[str] = None,
width: typing.Optional[typing.Union[str, NumberType]] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"form",
"height",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"type",
"useMap",
"width",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"form",
"height",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"type",
"useMap",
"width",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(ObjectEl, self).__init__(children=children, **args)
setattr(ObjectEl, "__init__", _explicitize_args(ObjectEl.__init__))

View File

@ -0,0 +1,200 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Ol(Component):
"""An Ol component.
Ol is a wrapper for the <ol> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- reversed (a value equal to: 'reversed', 'REVERSED' | boolean; optional):
Indicates whether the list should be displayed in a descending
order instead of an ascending order.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- start (string; optional):
Defines the first number if other than 1.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- type (string; optional):
Defines the type of the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Ol"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
reversed: typing.Optional[
typing.Union[Literal["reversed", "REVERSED"], bool]
] = None,
start: typing.Optional[str] = None,
type: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"reversed",
"role",
"spellCheck",
"start",
"style",
"tabIndex",
"title",
"type",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"reversed",
"role",
"spellCheck",
"start",
"style",
"tabIndex",
"title",
"type",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Ol, self).__init__(children=children, **args)
setattr(Ol, "__init__", _explicitize_args(Ol.__init__))

View File

@ -0,0 +1,193 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Optgroup(Component):
"""An Optgroup component.
Optgroup is a wrapper for the <optgroup> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- disabled (a value equal to: 'disabled', 'DISABLED' | boolean; optional):
Indicates whether the user can interact with the element.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- label (string; optional):
Specifies a user-readable title of the element.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Optgroup"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
disabled: typing.Optional[
typing.Union[Literal["disabled", "DISABLED"], bool]
] = None,
label: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"disabled",
"draggable",
"hidden",
"key",
"label",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"disabled",
"draggable",
"hidden",
"key",
"label",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Optgroup, self).__init__(children=children, **args)
setattr(Optgroup, "__init__", _explicitize_args(Optgroup.__init__))

View File

@ -0,0 +1,208 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Option(Component):
"""An Option component.
Option is a wrapper for the <option> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- disabled (a value equal to: 'disabled', 'DISABLED' | boolean; optional):
Indicates whether the user can interact with the element.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- label (string; optional):
Specifies a user-readable title of the element.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- selected (a value equal to: 'selected', 'SELECTED' | boolean; optional):
Defines a value which will be selected on page load.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- value (string; optional):
Defines a default value which will be displayed in the element on
page load."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Option"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
disabled: typing.Optional[
typing.Union[Literal["disabled", "DISABLED"], bool]
] = None,
label: typing.Optional[str] = None,
selected: typing.Optional[
typing.Union[Literal["selected", "SELECTED"], bool]
] = None,
value: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"disabled",
"draggable",
"hidden",
"key",
"label",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"selected",
"spellCheck",
"style",
"tabIndex",
"title",
"value",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"disabled",
"draggable",
"hidden",
"key",
"label",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"selected",
"spellCheck",
"style",
"tabIndex",
"title",
"value",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Option, self).__init__(children=children, **args)
setattr(Option, "__init__", _explicitize_args(Option.__init__))

View File

@ -0,0 +1,203 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Output(Component):
"""An Output component.
Output is a wrapper for the <output> HTML5 element.
CAUTION: <output> is included for completeness, but its typical usage
requires the oninput attribute of the enclosing <form> element, which
is not accessible to Dash.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- form (string; optional):
Indicates the form that is the owner of the element.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- htmlFor (string; optional):
Describes elements which belongs to this one.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- name (string; optional):
Name of the element. For example used by the server to identify
the fields in form submits.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Output"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
htmlFor: typing.Optional[str] = None,
form: typing.Optional[str] = None,
name: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"form",
"hidden",
"htmlFor",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"form",
"hidden",
"htmlFor",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Output, self).__init__(children=children, **args)
setattr(Output, "__init__", _explicitize_args(Output.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class P(Component):
"""A P component.
P is a wrapper for the <p> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "P"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(P, self).__init__(children=children, **args)
setattr(P, "__init__", _explicitize_args(P.__init__))

View File

@ -0,0 +1,193 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Param(Component):
"""A Param component.
Param is a wrapper for the <param> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/param
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- name (string; optional):
Name of the element. For example used by the server to identify
the fields in form submits.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- value (string; optional):
Defines a default value which will be displayed in the element on
page load."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Param"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
name: typing.Optional[str] = None,
value: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"value",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"name",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"value",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Param, self).__init__(children=children, **args)
setattr(Param, "__init__", _explicitize_args(Param.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Picture(Component):
"""A Picture component.
Picture is a wrapper for the <picture> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Picture"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Picture, self).__init__(children=children, **args)
setattr(Picture, "__init__", _explicitize_args(Picture.__init__))

View File

@ -0,0 +1,185 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Plaintext(Component):
"""A Plaintext component.
Plaintext is a wrapper for the <plaintext> HTML5 element.
OBSOLETE: <plaintext> is included for completeness, but should be avoided
as browsers may remove it at any time, and its behavior when added
dynamically by Dash is not what it would be statically on page load.
Use <pre> or <code> instead.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/plaintext
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Plaintext"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Plaintext, self).__init__(children=children, **args)
setattr(Plaintext, "__init__", _explicitize_args(Plaintext.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Pre(Component):
"""A Pre component.
Pre is a wrapper for the <pre> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Pre"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Pre, self).__init__(children=children, **args)
setattr(Pre, "__init__", _explicitize_args(Pre.__init__))

View File

@ -0,0 +1,198 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Progress(Component):
"""A Progress component.
Progress is a wrapper for the <progress> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- form (string; optional):
Indicates the form that is the owner of the element.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- max (string | number; optional):
Indicates the maximum value allowed.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- value (string; optional):
Defines a default value which will be displayed in the element on
page load."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Progress"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
form: typing.Optional[str] = None,
max: typing.Optional[typing.Union[str, NumberType]] = None,
value: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"form",
"hidden",
"key",
"lang",
"max",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"value",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"form",
"hidden",
"key",
"lang",
"max",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
"value",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Progress, self).__init__(children=children, **args)
setattr(Progress, "__init__", _explicitize_args(Progress.__init__))

View File

@ -0,0 +1,185 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Q(Component):
"""A Q component.
Q is a wrapper for the <q> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/q
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- cite (string; optional):
Contains a URI which points to the source of the quote or change.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Q"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
cite: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"cite",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"cite",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Q, self).__init__(children=children, **args)
setattr(Q, "__init__", _explicitize_args(Q.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Rb(Component):
"""A Rb component.
Rb is a wrapper for the <rb> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rb
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Rb"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Rb, self).__init__(children=children, **args)
setattr(Rb, "__init__", _explicitize_args(Rb.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Rp(Component):
"""A Rp component.
Rp is a wrapper for the <rp> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rp
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Rp"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Rp, self).__init__(children=children, **args)
setattr(Rp, "__init__", _explicitize_args(Rp.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Rt(Component):
"""A Rt component.
Rt is a wrapper for the <rt> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rt
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Rt"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Rt, self).__init__(children=children, **args)
setattr(Rt, "__init__", _explicitize_args(Rt.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Rtc(Component):
"""A Rtc component.
Rtc is a wrapper for the <rtc> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rtc
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Rtc"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Rtc, self).__init__(children=children, **args)
setattr(Rtc, "__init__", _explicitize_args(Rtc.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Ruby(Component):
"""A Ruby component.
Ruby is a wrapper for the <ruby> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ruby
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Ruby"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Ruby, self).__init__(children=children, **args)
setattr(Ruby, "__init__", _explicitize_args(Ruby.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class S(Component):
"""A S component.
S is a wrapper for the <s> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/s
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "S"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(S, self).__init__(children=children, **args)
setattr(S, "__init__", _explicitize_args(S.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Samp(Component):
"""A Samp component.
Samp is a wrapper for the <samp> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/samp
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Samp"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Samp, self).__init__(children=children, **args)
setattr(Samp, "__init__", _explicitize_args(Samp.__init__))

View File

@ -0,0 +1,227 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Script(Component):
"""A Script component.
Script is a wrapper for the <script> HTML5 element.
CAUTION: <script> is included for completeness, but you cannot execute
JavaScript code by providing it to a <script> element. Use a clientside
callback for this purpose instead.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- async (a value equal to: 'async', 'ASYNC' | boolean; optional):
Executes the script asynchronously.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- crossOrigin (string; optional):
How the element handles cross-origin requests.
- data-* (string; optional):
A wildcard data attribute.
- defer (a value equal to: 'defer', 'DEFER' | boolean; optional):
Indicates that the script should be executed after the page has
been parsed.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- integrity (string; optional):
Specifies a Subresource Integrity value that allows browsers to
verify what they fetch.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- referrerPolicy (string; optional):
Specifies which referrer is sent when fetching the resource.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- src (string; optional):
The URL of the embeddable content.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element.
- type (string; optional):
Defines the type of the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Script"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
crossOrigin: typing.Optional[str] = None,
defer: typing.Optional[typing.Union[Literal["defer", "DEFER"], bool]] = None,
integrity: typing.Optional[str] = None,
referrerPolicy: typing.Optional[str] = None,
src: typing.Optional[str] = None,
type: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"async",
"className",
"contentEditable",
"crossOrigin",
"data-*",
"defer",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"integrity",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"referrerPolicy",
"role",
"spellCheck",
"src",
"style",
"tabIndex",
"title",
"type",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"async",
"className",
"contentEditable",
"crossOrigin",
"data-*",
"defer",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"integrity",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"referrerPolicy",
"role",
"spellCheck",
"src",
"style",
"tabIndex",
"title",
"type",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Script, self).__init__(children=children, **args)
setattr(Script, "__init__", _explicitize_args(Script.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Section(Component):
"""A Section component.
Section is a wrapper for the <section> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Section"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Section, self).__init__(children=children, **args)
setattr(Section, "__init__", _explicitize_args(Section.__init__))

View File

@ -0,0 +1,240 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Select(Component):
"""A Select component.
Select is a wrapper for the <select> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- autoComplete (string; optional):
Indicates whether controls in this form can by default have their
values automatically completed by the browser.
- autoFocus (a value equal to: 'autoFocus', 'autofocus', 'AUTOFOCUS' | boolean; optional):
The element should be automatically focused after the page loaded.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- disabled (a value equal to: 'disabled', 'DISABLED' | boolean; optional):
Indicates whether the user can interact with the element.
- draggable (string; optional):
Defines whether the element can be dragged.
- form (string; optional):
Indicates the form that is the owner of the element.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- multiple (a value equal to: 'multiple', 'MULTIPLE' | boolean; optional):
Indicates whether multiple values can be entered in an input of
the type email or file.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- name (string; optional):
Name of the element. For example used by the server to identify
the fields in form submits.
- required (a value equal to: 'required', 'REQUIRED' | boolean; optional):
Indicates whether this element is required to fill out or not.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- size (string | number; optional):
Defines the width of the element (in pixels). If the element's
type attribute is text or password then it's the number of
characters.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Select"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
autoFocus: typing.Optional[
typing.Union[Literal["autoFocus", "autofocus", "AUTOFOCUS"], bool]
] = None,
autoComplete: typing.Optional[str] = None,
disabled: typing.Optional[
typing.Union[Literal["disabled", "DISABLED"], bool]
] = None,
form: typing.Optional[str] = None,
multiple: typing.Optional[
typing.Union[Literal["multiple", "MULTIPLE"], bool]
] = None,
name: typing.Optional[str] = None,
required: typing.Optional[
typing.Union[Literal["required", "REQUIRED"], bool]
] = None,
size: typing.Optional[typing.Union[str, NumberType]] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"autoComplete",
"autoFocus",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"disabled",
"draggable",
"form",
"hidden",
"key",
"lang",
"multiple",
"n_clicks",
"n_clicks_timestamp",
"name",
"required",
"role",
"size",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"autoComplete",
"autoFocus",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"disabled",
"draggable",
"form",
"hidden",
"key",
"lang",
"multiple",
"n_clicks",
"n_clicks_timestamp",
"name",
"required",
"role",
"size",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Select, self).__init__(children=children, **args)
setattr(Select, "__init__", _explicitize_args(Select.__init__))

View File

@ -0,0 +1,184 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Shadow(Component):
"""A Shadow component.
Shadow is a wrapper for the <shadow> HTML5 element.
DEPRECATED: <shadow> is included for completeness, but should be avoided
as it is not supported by all browsers and may be removed at any time from
those that do support it.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/shadow
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Shadow"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Shadow, self).__init__(children=children, **args)
setattr(Shadow, "__init__", _explicitize_args(Shadow.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Slot(Component):
"""A Slot component.
Slot is a wrapper for the <slot> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Slot"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Slot, self).__init__(children=children, **args)
setattr(Slot, "__init__", _explicitize_args(Slot.__init__))

View File

@ -0,0 +1,179 @@
# AUTO GENERATED FILE - DO NOT EDIT
import typing # noqa: F401
from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401
from dash.development.base_component import Component, _explicitize_args
ComponentType = typing.Union[
str,
int,
float,
Component,
None,
typing.Sequence[typing.Union[str, int, float, Component, None]],
]
NumberType = typing.Union[
typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex
]
class Small(Component):
"""A Small component.
Small is a wrapper for the <small> HTML5 element.
For detailed attribute info see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/small
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of this component.
- id (string; optional):
The ID of this component, used to identify dash components in
callbacks. The ID needs to be unique across all of the components
in an app.
- accessKey (string; optional):
Keyboard shortcut to activate or add focus to the element.
- aria-* (string; optional):
A wildcard aria attribute.
- className (string; optional):
Often used with CSS to style elements with common properties.
- contentEditable (string; optional):
Indicates whether the element's content is editable.
- data-* (string; optional):
A wildcard data attribute.
- dir (string; optional):
Defines the text direction. Allowed values are ltr (Left-To-Right)
or rtl (Right-To-Left).
- disable_n_clicks (boolean; optional):
When True, this will disable the n_clicks prop. Use this to
remove event listeners that may interfere with screen readers.
- draggable (string; optional):
Defines whether the element can be dragged.
- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional):
Prevents rendering of given element, while keeping child elements,
e.g. script elements, active.
- key (string; optional):
A unique identifier for the component, used to improve performance
by React.js while rendering components See
https://reactjs.org/docs/lists-and-keys.html for more info.
- lang (string; optional):
Defines the language used in the element.
- n_clicks (number; default 0):
An integer that represents the number of times that this element
has been clicked on.
- n_clicks_timestamp (number; default -1):
An integer that represents the time (in ms since 1970) at which
n_clicks changed. This can be used to tell which button was
changed most recently.
- role (string; optional):
Defines an explicit role for an element for use by assistive
technologies.
- spellCheck (string; optional):
Indicates whether spell checking is allowed for the element.
- tabIndex (string | number; optional):
Overrides the browser's default tab order and follows the one
specified instead.
- title (string; optional):
Text to be displayed in a tooltip when hovering over the element."""
_children_props = []
_base_nodes = ["children"]
_namespace = "dash_html_components"
_type = "Small"
def __init__(
self,
children: typing.Optional[ComponentType] = None,
id: typing.Optional[typing.Union[str, dict]] = None,
n_clicks: typing.Optional[NumberType] = None,
n_clicks_timestamp: typing.Optional[NumberType] = None,
disable_n_clicks: typing.Optional[bool] = None,
key: typing.Optional[str] = None,
accessKey: typing.Optional[str] = None,
className: typing.Optional[str] = None,
contentEditable: typing.Optional[str] = None,
dir: typing.Optional[str] = None,
draggable: typing.Optional[str] = None,
hidden: typing.Optional[typing.Union[Literal["hidden", "HIDDEN"], bool]] = None,
lang: typing.Optional[str] = None,
role: typing.Optional[str] = None,
spellCheck: typing.Optional[str] = None,
style: typing.Optional[typing.Any] = None,
tabIndex: typing.Optional[typing.Union[str, NumberType]] = None,
title: typing.Optional[str] = None,
**kwargs
):
self._prop_names = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self._valid_wildcard_attributes = ["data-", "aria-"]
self.available_properties = [
"children",
"id",
"accessKey",
"aria-*",
"className",
"contentEditable",
"data-*",
"dir",
"disable_n_clicks",
"draggable",
"hidden",
"key",
"lang",
"n_clicks",
"n_clicks_timestamp",
"role",
"spellCheck",
"style",
"tabIndex",
"title",
]
self.available_wildcard_properties = ["data-", "aria-"]
_explicit_args = kwargs.pop("_explicit_args")
_locals = locals()
_locals.update(kwargs) # For wildcard attrs and excess named props
args = {k: _locals[k] for k in _explicit_args if k != "children"}
super(Small, self).__init__(children=children, **args)
setattr(Small, "__init__", _explicitize_args(Small.__init__))

Some files were not shown because too many files have changed in this diff Show More