Nick Norrell
Nick Norrell
Running into this same issue ☹️ Not only will the nested collapse's `collapse-open` & `collapse-closed` classes not work, it also messes up the smooth transition on the parent's collapse.
If anyone is looking for an interim workaround, I resolved this issue by doing the following: (This example is a React component but the concept should apply outside of React...
Also having this issue. It's problematic when using this as a fallback for Suspense components, as there is no animation since it doesn't animate until the page loads (at which...
If anyone else is looking for an interim solution for things like entity support, I threw together this: View typings ```typescript export type CioEntity = "person" | "object" | "delivery";...