@arcfusionz/arc-primitive-ui 0.3.4 → 0.3.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.
@@ -31,7 +31,11 @@ interface BreadcrumbItemProps extends Omit<ComponentPropsWithoutRef<"li">, "clas
31
31
  /** Additional classes merged after the item recipe. */
32
32
  className?: string;
33
33
  }
34
- /** One entry in the trail: wraps a link, the current page, or a composed control. */
34
+ /**
35
+ * One entry in the trail: wraps a link, the current page, or a composed
36
+ * control. Supporting metadata such as a `Badge` belongs beside that primary
37
+ * crumb content in the same item, keeping it outside the link's click target.
38
+ */
35
39
  declare const BreadcrumbItem: import("react").ForwardRefExoticComponent<BreadcrumbItemProps & import("react").RefAttributes<HTMLLIElement>>;
36
40
  interface BreadcrumbLinkVariantsOptions {
37
41
  className?: string;
@@ -81,7 +81,11 @@ const BreadcrumbList = forwardRef(({ render, className, ...rest }, ref) => useRe
81
81
  }
82
82
  }));
83
83
  BreadcrumbList.displayName = "BreadcrumbList";
84
- /** One entry in the trail: wraps a link, the current page, or a composed control. */
84
+ /**
85
+ * One entry in the trail: wraps a link, the current page, or a composed
86
+ * control. Supporting metadata such as a `Badge` belongs beside that primary
87
+ * crumb content in the same item, keeping it outside the link's click target.
88
+ */
85
89
  const BreadcrumbItem = forwardRef(({ render, className, ...rest }, ref) => useRender({
86
90
  defaultTagName: "li",
87
91
  render,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcfusionz/arc-primitive-ui",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "ArcFusion primitive UI components",
5
5
  "license": "MIT",
6
6
  "type": "module",