@exem-ui/react 0.3.4-next.20260608091641 → 0.3.4-next.20260609002221

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.mjs CHANGED
@@ -360,6 +360,9 @@ Breadcrumb.Page = forwardRef(
360
360
  }
361
361
  )
362
362
  );
363
+ Breadcrumb.Path = forwardRef(
364
+ ({ className, ...props }, ref) => /* @__PURE__ */ jsx("span", { ref, className: cn("text-text-tertiary", className), ...props })
365
+ );
363
366
  Breadcrumb.Separator = forwardRef(
364
367
  ({ children, className, ...props }, ref) => /* @__PURE__ */ jsx(
365
368
  "li",
@@ -394,6 +397,7 @@ Breadcrumb.List.displayName = "Breadcrumb.List";
394
397
  Breadcrumb.Item.displayName = "Breadcrumb.Item";
395
398
  Breadcrumb.Link.displayName = "Breadcrumb.Link";
396
399
  Breadcrumb.Page.displayName = "Breadcrumb.Page";
400
+ Breadcrumb.Path.displayName = "Breadcrumb.Path";
397
401
  Breadcrumb.Separator.displayName = "Breadcrumb.Separator";
398
402
  Breadcrumb.Ellipsis.displayName = "Breadcrumb.Ellipsis";
399
403
  var TabsContext = createContext({ type: "primary" });