@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.
- package/dist/{DropdownMenu-Cgb6bKEn.d.mts → DropdownMenu-B3cTLPDi.d.mts} +2 -2
- package/dist/{DropdownMenu-vd38nhPj.d.ts → DropdownMenu-BO1TNMm5.d.ts} +2 -2
- package/dist/appLayout/index.js +8 -2
- package/dist/appLayout/index.js.map +1 -1
- package/dist/appLayout/index.mjs +8 -2
- package/dist/appLayout/index.mjs.map +1 -1
- package/dist/appTopbar/index.js +8 -2
- package/dist/appTopbar/index.js.map +1 -1
- package/dist/appTopbar/index.mjs +8 -2
- package/dist/appTopbar/index.mjs.map +1 -1
- package/dist/blocks/index.d.mts +1 -1
- package/dist/blocks/index.d.ts +1 -1
- package/dist/blocks/index.js +8 -2
- package/dist/blocks/index.mjs +2 -2
- package/dist/blocks/pricing/index.js +1 -1
- package/dist/blocks/pricing/index.mjs +1 -1
- package/dist/{chunk-275MR7RO.mjs → chunk-HDOYDKDV.mjs} +1 -1
- package/dist/{chunk-2POUSHCT.mjs → chunk-SL4ONYNR.mjs} +1 -1
- package/dist/{chunk-XPHEFAOH.mjs → chunk-VE7EQ6VH.mjs} +9 -4
- package/dist/dataTable/index.js +8 -2
- package/dist/dataTable/index.js.map +1 -1
- package/dist/dataTable/index.mjs +8 -2
- package/dist/dataTable/index.mjs.map +1 -1
- package/dist/dropdownMenu/index.d.mts +3 -2
- package/dist/dropdownMenu/index.d.ts +3 -2
- package/dist/dropdownMenu/index.js +9 -4
- package/dist/dropdownMenu/index.js.map +1 -1
- package/dist/dropdownMenu/index.mjs +9 -4
- package/dist/dropdownMenu/index.mjs.map +1 -1
- package/dist/elements/index.d.mts +2 -1
- package/dist/elements/index.d.ts +2 -1
- package/dist/elements/index.js +9 -4
- package/dist/elements/index.mjs +5 -5
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +9 -4
- package/dist/index.mjs +9 -4
- package/dist/layout/index.d.mts +1 -1
- package/dist/layout/index.d.ts +1 -1
- package/dist/layout/index.js +8 -2
- package/dist/layout/index.mjs +2 -2
- package/dist/splitButton/index.js +8 -2
- package/dist/splitButton/index.js.map +1 -1
- package/dist/splitButton/index.mjs +8 -2
- package/dist/splitButton/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/appLayout/index.mjs
CHANGED
@@ -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(
|
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") {
|