@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
@@ -1043,7 +1043,6 @@ import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
1043
1043
|
var DropdownMenuRoot = DropdownMenuPrimitive.Root;
|
1044
1044
|
var DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
|
1045
1045
|
var DropdownMenuGroup = DropdownMenuPrimitive.Group;
|
1046
|
-
var DropdownMenuPortal = DropdownMenuPrimitive.Portal;
|
1047
1046
|
var DropdownMenuSub = DropdownMenuPrimitive.Sub;
|
1048
1047
|
var DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
|
1049
1048
|
var DropdownMenuSubTrigger = React10.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ React10.createElement(
|
@@ -1106,7 +1105,7 @@ var DropdownMenuContent = React10.forwardRef(({ className, sideOffset = 4, ...pr
|
|
1106
1105
|
}
|
1107
1106
|
)));
|
1108
1107
|
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
|
1109
|
-
var DropdownMenuItem = React10.forwardRef(({ className, inset, badged, slug, LinkComponent, ...props }, ref) => {
|
1108
|
+
var DropdownMenuItem = React10.forwardRef(({ className, inset, badged, slug, LinkComponent = "a", ...props }, ref) => {
|
1110
1109
|
return /* @__PURE__ */ React10.createElement(LinkComponent, { href: slug }, /* @__PURE__ */ React10.createElement(
|
1111
1110
|
DropdownMenuPrimitive.Item,
|
1112
1111
|
{
|
@@ -1294,7 +1293,13 @@ var DropdownMenu = ({
|
|
1294
1293
|
var _a;
|
1295
1294
|
const ItemLinkComponent = item.slug ? LinkComponent : "a";
|
1296
1295
|
if (item.itemType === "separator") {
|
1297
|
-
return /* @__PURE__ */ React10.createElement(
|
1296
|
+
return /* @__PURE__ */ React10.createElement(
|
1297
|
+
DropdownMenuSeparator,
|
1298
|
+
{
|
1299
|
+
key: index,
|
1300
|
+
className: classNames == null ? void 0 : classNames.separator
|
1301
|
+
}
|
1302
|
+
);
|
1298
1303
|
} else if (item.itemType === "label") {
|
1299
1304
|
return /* @__PURE__ */ React10.createElement(DropdownMenuLabel, { key: index }, item.label);
|
1300
1305
|
} else if (item.itemType === "radio") {
|
@@ -1652,10 +1657,10 @@ export {
|
|
1652
1657
|
UncheckMark,
|
1653
1658
|
MenuIcon,
|
1654
1659
|
Chip,
|
1660
|
+
Portal,
|
1655
1661
|
DropdownMenuRoot,
|
1656
1662
|
DropdownMenuTrigger,
|
1657
1663
|
DropdownMenuGroup,
|
1658
|
-
DropdownMenuPortal,
|
1659
1664
|
DropdownMenuSub,
|
1660
1665
|
DropdownMenuRadioGroup,
|
1661
1666
|
DropdownMenuSubTrigger,
|
package/dist/dataTable/index.js
CHANGED
@@ -560,7 +560,7 @@ var DropdownMenuContent = React6.forwardRef(({ className, sideOffset = 4, ...pro
|
|
560
560
|
}
|
561
561
|
)));
|
562
562
|
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
|
563
|
-
var DropdownMenuItem = React6.forwardRef(({ className, inset, badged, slug, LinkComponent, ...props }, ref) => {
|
563
|
+
var DropdownMenuItem = React6.forwardRef(({ className, inset, badged, slug, LinkComponent = "a", ...props }, ref) => {
|
564
564
|
return /* @__PURE__ */ React6.createElement(LinkComponent, { href: slug }, /* @__PURE__ */ React6.createElement(
|
565
565
|
DropdownMenuPrimitive.Item,
|
566
566
|
{
|
@@ -748,7 +748,13 @@ var DropdownMenu = ({
|
|
748
748
|
var _a;
|
749
749
|
const ItemLinkComponent = item.slug ? LinkComponent : "a";
|
750
750
|
if (item.itemType === "separator") {
|
751
|
-
return /* @__PURE__ */ React6.createElement(
|
751
|
+
return /* @__PURE__ */ React6.createElement(
|
752
|
+
DropdownMenuSeparator,
|
753
|
+
{
|
754
|
+
key: index,
|
755
|
+
className: classNames == null ? void 0 : classNames.separator
|
756
|
+
}
|
757
|
+
);
|
752
758
|
} else if (item.itemType === "label") {
|
753
759
|
return /* @__PURE__ */ React6.createElement(DropdownMenuLabel, { key: index }, item.label);
|
754
760
|
} else if (item.itemType === "radio") {
|