@andreagiugni/tailwind-dashboard-ui 0.5.4 → 0.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -1357,9 +1357,10 @@ var AccordionItem = ({
1357
1357
  id: panelId,
1358
1358
  role: "region",
1359
1359
  "aria-labelledby": buttonId,
1360
- hidden: !open,
1360
+ "aria-hidden": !open,
1361
+ inert: !open,
1361
1362
  className: chunkYERNSNT4_cjs.cn(
1362
- "grid transition-all duration-200 ease-in-out",
1363
+ "grid transition-[grid-template-rows,opacity] duration-300 ease-in-out motion-reduce:transition-none",
1363
1364
  open ? "grid-rows-[1fr] opacity-100" : "grid-rows-[0fr] opacity-0"
1364
1365
  ),
1365
1366
  children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "px-4 pb-4 text-sm text-gray-500 dark:text-gray-400", children }) })