myoperator-ui 0.0.177 → 0.0.179-beta.0
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>
|
|
@@ -3613,7 +3613,7 @@ const TooltipContent = React.forwardRef<
|
|
|
3613
3613
|
ref={ref}
|
|
3614
3614
|
sideOffset={sideOffset}
|
|
3615
3615
|
className={cn(
|
|
3616
|
-
"z-
|
|
3616
|
+
"z-[9999] overflow-hidden rounded-md bg-semantic-primary px-3 py-1.5 text-xs text-semantic-text-inverted shadow-md animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
|
3617
3617
|
className
|
|
3618
3618
|
)}
|
|
3619
3619
|
{...props}
|