@idds/react 1.5.18 → 1.5.20

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.es.js CHANGED
@@ -1481,7 +1481,7 @@ function Breadcrumb({
1481
1481
  if (text.length <= maxLength) return text;
1482
1482
  return `${text.substring(0, maxLength)}...`;
1483
1483
  };
1484
- return /* @__PURE__ */ jsx("nav", { className: clsx("ina-breadcrumb", className), "aria-label": "Breadcrumb", children: /* @__PURE__ */ jsx("ol", { className: "ina-breadcrumb__list", children: items.map((item, index) => {
1484
+ return /* @__PURE__ */ jsx("div", { className: clsx("ina-breadcrumb", className), "aria-label": "Breadcrumb", children: /* @__PURE__ */ jsx("ol", { className: "ina-breadcrumb__list", children: items.map((item, index) => {
1485
1485
  const isLast = index === items.length - 1;
1486
1486
  const isActive = isLast;
1487
1487
  const truncatedLabel = truncateText(item.label, isLast);