We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
visible
Add a visible property in component bindings to allow components to inherit the visibility state of another component.
Enable components to reference the visible property of other components instead of duplicating complex visibility conditions.
Instead of:
ComponentA: { visibility: condition1 && condition2 } ComponentB: { visibility: condition1 && condition2 }
We'd have:
ComponentA: { visibility: condition1 && condition2 } ComponentB: { visibility: ComponentA.visible }
The text was updated successfully, but these errors were encountered:
BUDI-8940 Add a `visible` Property to Components for Binding
Sorry, something went wrong.
No branches or pull requests
Description
Add a
visible
property in component bindings to allow components to inherit the visibility state of another component.Proposed Solution
Enable components to reference the
visible
property of other components instead of duplicating complex visibility conditions.Example:
Instead of:
We'd have:
The text was updated successfully, but these errors were encountered: