Input of callback: trigger an update when it is updated.
| 148 | |
| 149 | |
| 150 | class 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 | |
| 165 | class State(DashDependency): # pylint: disable=too-few-public-methods |
no outgoing calls
searching dependent graphs…