Can we support opening multiple content panels at a time?
I would merge a PR for that. SUI core calls this exclusive. In our case it might look like:
<Accordion exclusive={false} />
Can you please give some pointers on where to fix this?
It would be in modifying src/modules/Accordion/Accordion.js. It currently accepts a single activeIndex value. That index is the index of the currently open panel. It would need to accept an array of indices. Then, every index in the array would correspond to an open panel.
Most helpful comment
It would be in modifying
src/modules/Accordion/Accordion.js. It currently accepts a singleactiveIndexvalue. That index is the index of the currently open panel. It would need to accept an array of indices. Then, every index in the array would correspond to an open panel.