i have been using v4 of mantine and have not got enough time to migrate to v5. is there documentation for older versions?
im having a problem with accordian.
i want default opened on an item. i looked into Accordian.Item props and found there is opened : boolean | undefined but it doesnt really works
tried another option with Accordian initialItem?: number but not any luck too
heres a sample of my code
<Accordion multiple>
<Accordion.Item label="General Information">
<tr className="flex justify-between p-2">
<td>First Name</td>
<td>{first_name || "N/A"}</td>
</tr>
<tr className="flex justify-between p-2">
<td>Middle Name</td>
<td>{middle_name || "N/A"}</td>
</tr>
<tr className="flex justify-between p-2">
<td>Last Name</td>
<td>{last_name || "N/A"}</td>
</tr>
</Accordion.Item>
</Accordian>
mantine version :4.2.2