(self)
| 919 | self.validation_layout = layout_value |
| 920 | |
| 921 | def _layout_value(self): |
| 922 | if self._layout_is_function: |
| 923 | layout = self._layout() # type: ignore[reportOptionalCall] |
| 924 | else: |
| 925 | layout = self._layout |
| 926 | |
| 927 | # Add any extra components |
| 928 | if self._extra_components: |
| 929 | layout = html.Div(children=[layout] + self._extra_components) # type: ignore[reportArgumentType] |
| 930 | |
| 931 | return layout |
| 932 | |
| 933 | @property |
| 934 | def index_string(self) -> str: |
no outgoing calls
no test coverage detected