Added event handling support to VisNetwork and enhanced component documentation

This commit is contained in:
2025-12-02 20:46:54 +01:00
parent e34d675e38
commit 378775cdf9
12 changed files with 123 additions and 16 deletions

View File

@@ -35,15 +35,6 @@ class TestLayoutBehaviour:
assert layout._main_content == content
assert result == layout # Should return self for chaining
def test_i_can_set_footer_content(self, root_instance):
"""Test setting footer content."""
layout = Layout(root_instance, app_name="Test App")
content = Div("Footer content")
layout.set_footer(content)
assert layout._footer_content == content
def test_i_can_add_content_to_left_drawer(self, root_instance):
"""Test adding content to left drawer."""
layout = Layout(root_instance, app_name="Test App")