@sikka/hawa 0.38.1-next → 0.38.3-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-BYiPSEYy.d.mts → DropdownMenu-Cgb6bKEn.d.mts} +5 -0
- package/dist/{DropdownMenu-ChxqadLu.d.ts → DropdownMenu-vd38nhPj.d.ts} +5 -0
- package/dist/appLayout/index.js +5 -2
- package/dist/appLayout/index.js.map +1 -1
- package/dist/appLayout/index.mjs +5 -2
- package/dist/appLayout/index.mjs.map +1 -1
- package/dist/appTopbar/index.js +5 -2
- package/dist/appTopbar/index.js.map +1 -1
- package/dist/appTopbar/index.mjs +5 -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 +5 -2
- package/dist/blocks/index.mjs +2 -2
- package/dist/{chunk-UDJFVH2I.mjs → chunk-275MR7RO.mjs} +1 -1
- package/dist/{chunk-F23GAE2P.mjs → chunk-2POUSHCT.mjs} +1 -1
- package/dist/{chunk-V7O5MQZQ.mjs → chunk-XPHEFAOH.mjs} +5 -2
- package/dist/dataTable/index.js +5 -2
- package/dist/dataTable/index.js.map +1 -1
- package/dist/dataTable/index.mjs +5 -2
- package/dist/dataTable/index.mjs.map +1 -1
- package/dist/dropdownMenu/index.d.mts +5 -0
- package/dist/dropdownMenu/index.d.ts +5 -0
- package/dist/dropdownMenu/index.js +5 -2
- package/dist/dropdownMenu/index.js.map +1 -1
- package/dist/dropdownMenu/index.mjs +5 -2
- package/dist/dropdownMenu/index.mjs.map +1 -1
- package/dist/elements/index.d.mts +1 -1
- package/dist/elements/index.d.ts +1 -1
- package/dist/elements/index.js +5 -2
- package/dist/elements/index.mjs +3 -3
- package/dist/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -2
- package/dist/index.mjs +5 -2
- package/dist/layout/index.d.mts +1 -1
- package/dist/layout/index.d.ts +1 -1
- package/dist/layout/index.js +5 -2
- package/dist/layout/index.mjs +2 -2
- package/dist/splitButton/index.js +5 -2
- package/dist/splitButton/index.js.map +1 -1
- package/dist/splitButton/index.mjs +5 -2
- package/dist/splitButton/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -1229,6 +1229,7 @@ var DropdownMenu = ({
|
|
1229
1229
|
sideOffset,
|
1230
1230
|
side,
|
1231
1231
|
className,
|
1232
|
+
classNames,
|
1232
1233
|
triggerClassname,
|
1233
1234
|
triggerProps,
|
1234
1235
|
align,
|
@@ -1266,7 +1267,7 @@ var DropdownMenu = ({
|
|
1266
1267
|
DropdownMenuTrigger,
|
1267
1268
|
{
|
1268
1269
|
asChild: true,
|
1269
|
-
className: triggerClassname,
|
1270
|
+
className: cn(classNames == null ? void 0 : classNames.trigger, triggerClassname),
|
1270
1271
|
...triggerProps
|
1271
1272
|
},
|
1272
1273
|
trigger
|
@@ -1280,6 +1281,7 @@ var DropdownMenu = ({
|
|
1280
1281
|
alignOffset,
|
1281
1282
|
className: cn(
|
1282
1283
|
className,
|
1284
|
+
classNames == null ? void 0 : classNames.content,
|
1283
1285
|
widthStyles[width],
|
1284
1286
|
"hawa-flex hawa-flex-col hawa-gap-1 hawa-overflow-y-auto"
|
1285
1287
|
),
|
@@ -1404,7 +1406,8 @@ var DropdownMenu = ({
|
|
1404
1406
|
className: cn(
|
1405
1407
|
sizeStyles[size],
|
1406
1408
|
!item.icon && !item.label ? "hawa-px-0 hawa-py-0 focus:hawa-bg-transparent " : "focus:hawa-bg-accent ",
|
1407
|
-
item.presist && "focus:hawa-bg-transparent"
|
1409
|
+
item.presist && "focus:hawa-bg-transparent",
|
1410
|
+
classNames == null ? void 0 : classNames.item
|
1408
1411
|
)
|
1409
1412
|
},
|
1410
1413
|
item.icon && item.icon,
|
package/dist/dataTable/index.js
CHANGED
@@ -683,6 +683,7 @@ var DropdownMenu = ({
|
|
683
683
|
sideOffset,
|
684
684
|
side,
|
685
685
|
className,
|
686
|
+
classNames,
|
686
687
|
triggerClassname,
|
687
688
|
triggerProps,
|
688
689
|
align,
|
@@ -720,7 +721,7 @@ var DropdownMenu = ({
|
|
720
721
|
DropdownMenuTrigger,
|
721
722
|
{
|
722
723
|
asChild: true,
|
723
|
-
className: triggerClassname,
|
724
|
+
className: cn(classNames == null ? void 0 : classNames.trigger, triggerClassname),
|
724
725
|
...triggerProps
|
725
726
|
},
|
726
727
|
trigger
|
@@ -734,6 +735,7 @@ var DropdownMenu = ({
|
|
734
735
|
alignOffset,
|
735
736
|
className: cn(
|
736
737
|
className,
|
738
|
+
classNames == null ? void 0 : classNames.content,
|
737
739
|
widthStyles[width],
|
738
740
|
"hawa-flex hawa-flex-col hawa-gap-1 hawa-overflow-y-auto"
|
739
741
|
),
|
@@ -858,7 +860,8 @@ var DropdownMenu = ({
|
|
858
860
|
className: cn(
|
859
861
|
sizeStyles[size],
|
860
862
|
!item.icon && !item.label ? "hawa-px-0 hawa-py-0 focus:hawa-bg-transparent " : "focus:hawa-bg-accent ",
|
861
|
-
item.presist && "focus:hawa-bg-transparent"
|
863
|
+
item.presist && "focus:hawa-bg-transparent",
|
864
|
+
classNames == null ? void 0 : classNames.item
|
862
865
|
)
|
863
866
|
},
|
864
867
|
item.icon && item.icon,
|