MCPcopy Index your code
hub / github.com/plotly/dash / Input

Class Input

dash/dependencies.py:150–162  ·  view source on GitHub ↗

Input of callback: trigger an update when it is updated.

Source from the content-addressed store, hash-verified

148
149
150class Input(DashDependency): # pylint: disable=too-few-public-methods
151 """Input of callback: trigger an update when it is updated."""
152
153 def __init__(
154 self,
155 component_id: ComponentIdType,
156 component_property: str,
157 allow_optional: bool = False,
158 ):
159 super().__init__(component_id, component_property)
160 self.allow_optional = allow_optional
161
162 allowed_wildcards = (MATCH, ALL, ALLSMALLER)
163
164
165class State(DashDependency): # pylint: disable=too-few-public-methods

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…