Add props flag to not set "hidden" attribute on Tabs.Content in Tabs component
E
Elson Liang
Instead of the tab content being given the "hidden" attribute when unselected, I would prefer if it was just given absolute positioning with opacity zero instead, or let me handle the style myself.
This is because some of the components in my content requires a static height on mount, or have on resize observers. Unselected content with the "hidden" attribute do not have static sizes.
Filipe Pfluck
In some components I also wanted to remove the 'hidden' attribute so I just added hidden={false} for now