myoperator-ui 0.0.129 → 0.0.130
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/index.js +5 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5440,7 +5440,7 @@ export const EventGroupComponent = React.forwardRef<
|
|
|
5440
5440
|
>
|
|
5441
5441
|
<AccordionItem value={group.id}>
|
|
5442
5442
|
{/* Header row with checkbox OUTSIDE the trigger button to avoid nested buttons */}
|
|
5443
|
-
<div className="flex items-center gap-3 p-4 hover:bg-
|
|
5443
|
+
<div className="flex items-center gap-3 p-4 hover:bg-neutral-200">
|
|
5444
5444
|
<Checkbox
|
|
5445
5445
|
checked={checkboxState}
|
|
5446
5446
|
onCheckedChange={handleGroupCheckbox}
|
|
@@ -5522,7 +5522,10 @@ export const EventItemComponent = React.forwardRef<
|
|
|
5522
5522
|
return (
|
|
5523
5523
|
<div
|
|
5524
5524
|
ref={ref}
|
|
5525
|
-
className={cn(
|
|
5525
|
+
className={cn(
|
|
5526
|
+
"flex items-start gap-3 py-2 pl-8 pr-4 hover:bg-neutral-200",
|
|
5527
|
+
className
|
|
5528
|
+
)}
|
|
5526
5529
|
{...props}
|
|
5527
5530
|
>
|
|
5528
5531
|
<Checkbox
|