https://perchance.org/doc-t2i-framework-plugin-v2
You can use the visible()=> property of components to control their display using conditions. If you set the same display conditions for multiple components, you can group them so that they only appear together.
If you want to access a component through the html code panel, for example, select this persona, then you can use:
document.querySelector('select[data-name="persona "]')
or completely ctn of this component:
document.querySelector('select[data-name="persona "]').closest('.input-ctn')
example of use, hide this component:
const tm = document.querySelector('select[data-name="persona "]').closest('.input-ctn');
tm.style.display = 'none';