@sikka/hawa 0.38.3-next → 0.38.5-next

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.
Files changed (46) hide show
  1. package/dist/{DropdownMenu-Cgb6bKEn.d.mts → DropdownMenu-B3cTLPDi.d.mts} +2 -2
  2. package/dist/{DropdownMenu-vd38nhPj.d.ts → DropdownMenu-BO1TNMm5.d.ts} +2 -2
  3. package/dist/appLayout/index.js +8 -2
  4. package/dist/appLayout/index.js.map +1 -1
  5. package/dist/appLayout/index.mjs +8 -2
  6. package/dist/appLayout/index.mjs.map +1 -1
  7. package/dist/appTopbar/index.js +8 -2
  8. package/dist/appTopbar/index.js.map +1 -1
  9. package/dist/appTopbar/index.mjs +8 -2
  10. package/dist/appTopbar/index.mjs.map +1 -1
  11. package/dist/blocks/index.d.mts +1 -1
  12. package/dist/blocks/index.d.ts +1 -1
  13. package/dist/blocks/index.js +8 -2
  14. package/dist/blocks/index.mjs +2 -2
  15. package/dist/blocks/pricing/index.js +1 -1
  16. package/dist/blocks/pricing/index.mjs +1 -1
  17. package/dist/{chunk-275MR7RO.mjs → chunk-HDOYDKDV.mjs} +1 -1
  18. package/dist/{chunk-2POUSHCT.mjs → chunk-SL4ONYNR.mjs} +1 -1
  19. package/dist/{chunk-XPHEFAOH.mjs → chunk-VE7EQ6VH.mjs} +9 -4
  20. package/dist/dataTable/index.js +8 -2
  21. package/dist/dataTable/index.js.map +1 -1
  22. package/dist/dataTable/index.mjs +8 -2
  23. package/dist/dataTable/index.mjs.map +1 -1
  24. package/dist/dropdownMenu/index.d.mts +3 -2
  25. package/dist/dropdownMenu/index.d.ts +3 -2
  26. package/dist/dropdownMenu/index.js +9 -4
  27. package/dist/dropdownMenu/index.js.map +1 -1
  28. package/dist/dropdownMenu/index.mjs +9 -4
  29. package/dist/dropdownMenu/index.mjs.map +1 -1
  30. package/dist/elements/index.d.mts +2 -1
  31. package/dist/elements/index.d.ts +2 -1
  32. package/dist/elements/index.js +9 -4
  33. package/dist/elements/index.mjs +5 -5
  34. package/dist/index.d.mts +3 -2
  35. package/dist/index.d.ts +3 -2
  36. package/dist/index.js +9 -4
  37. package/dist/index.mjs +9 -4
  38. package/dist/layout/index.d.mts +1 -1
  39. package/dist/layout/index.d.ts +1 -1
  40. package/dist/layout/index.js +8 -2
  41. package/dist/layout/index.mjs +2 -2
  42. package/dist/splitButton/index.js +8 -2
  43. package/dist/splitButton/index.js.map +1 -1
  44. package/dist/splitButton/index.mjs +8 -2
  45. package/dist/splitButton/index.mjs.map +1 -1
  46. package/package.json +1 -1
@@ -557,7 +557,7 @@ var DropdownMenuContent = React6.forwardRef(({ className, sideOffset = 4, ...pro
557
557
  }
558
558
  )));
559
559
  DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
560
- var DropdownMenuItem = React6.forwardRef(({ className, inset, badged, slug, LinkComponent, ...props }, ref) => {
560
+ var DropdownMenuItem = React6.forwardRef(({ className, inset, badged, slug, LinkComponent = "a", ...props }, ref) => {
561
561
  return /* @__PURE__ */ React6.createElement(LinkComponent, { href: slug }, /* @__PURE__ */ React6.createElement(
562
562
  DropdownMenuPrimitive.Item,
563
563
  {
@@ -745,7 +745,13 @@ var DropdownMenu = ({
745
745
  var _a;
746
746
  const ItemLinkComponent = item.slug ? LinkComponent : "a";
747
747
  if (item.itemType === "separator") {
748
- return /* @__PURE__ */ React6.createElement(DropdownMenuSeparator, { key: index });
748
+ return /* @__PURE__ */ React6.createElement(
749
+ DropdownMenuSeparator,
750
+ {
751
+ key: index,
752
+ className: classNames == null ? void 0 : classNames.separator
753
+ }
754
+ );
749
755
  } else if (item.itemType === "label") {
750
756
  return /* @__PURE__ */ React6.createElement(DropdownMenuLabel, { key: index }, item.label);
751
757
  } else if (item.itemType === "radio") {