myoperator-ui 0.0.176 → 0.0.178
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 +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2315,7 +2315,7 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
|
|
|
2315
2315
|
key={option.value}
|
|
2316
2316
|
value={option.value}
|
|
2317
2317
|
disabled={option.disabled}
|
|
2318
|
-
|
|
2318
|
+
onSelect={() => handleItemSelect(option)}
|
|
2319
2319
|
>
|
|
2320
2320
|
{option.label}
|
|
2321
2321
|
</SelectItem>
|
|
@@ -2332,7 +2332,7 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
|
|
|
2332
2332
|
key={option.value}
|
|
2333
2333
|
value={option.value}
|
|
2334
2334
|
disabled={option.disabled}
|
|
2335
|
-
|
|
2335
|
+
onSelect={() => handleItemSelect(option)}
|
|
2336
2336
|
>
|
|
2337
2337
|
{option.label}
|
|
2338
2338
|
</SelectItem>
|
|
@@ -3001,7 +3001,7 @@ const TableHead = React.forwardRef<HTMLTableCellElement, TableHeadProps>(
|
|
|
3001
3001
|
<th
|
|
3002
3002
|
ref={ref}
|
|
3003
3003
|
className={cn(
|
|
3004
|
-
"h-12 px-4 text-left align-middle font-
|
|
3004
|
+
"h-12 px-4 text-left align-middle font-semibold text-semantic-text-muted text-sm [&:has([role=checkbox])]:pr-0",
|
|
3005
3005
|
sticky && "sticky left-0 bg-[var(--color-neutral-100)] z-10",
|
|
3006
3006
|
sortDirection && "cursor-pointer select-none",
|
|
3007
3007
|
className
|