Add switch to control component class inheritance.

This commit is contained in:
Rodrigo Girão Serrão
2023-01-11 12:30:58 +00:00
parent 1c4fe0c4fb
commit 81d3201b1d

View File

@@ -98,6 +98,9 @@ class DOMNode(MessagePump):
# True if this node inherits the CSS from the base class.
_inherit_css: ClassVar[bool] = True
# True if this node inherits the component classes from the base class.
_inherit_component_classes: ClassVar[bool] = True
# True to inherit bindings from base class
_inherit_bindings: ClassVar[bool] = True