myoperator-mcp 0.2.124 → 0.2.125
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2433,7 +2433,7 @@ const DropdownMenuItem = React.forwardRef(({ className, inset, children, descrip
|
|
|
2433
2433
|
<DropdownMenuPrimitive.Item
|
|
2434
2434
|
ref={ref}
|
|
2435
2435
|
className={cn(
|
|
2436
|
-
"relative flex cursor-pointer select-none items-center rounded-sm px-2 py-2 text-sm text-semantic-text-secondary outline-none transition-colors focus:bg-semantic-bg-ui focus:text-semantic-text-primary data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
2436
|
+
"relative flex cursor-pointer select-none items-center gap-2 rounded-sm px-2 py-2 text-sm text-semantic-text-secondary outline-none transition-colors focus:bg-semantic-bg-ui focus:text-semantic-text-primary data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
2437
2437
|
inset && "pl-8",
|
|
2438
2438
|
className
|
|
2439
2439
|
)}
|
|
@@ -5868,7 +5868,7 @@ const Tag = React.forwardRef(
|
|
|
5868
5868
|
{...props}
|
|
5869
5869
|
>
|
|
5870
5870
|
{label && <span className="font-semibold mr-1">{label}</span>}
|
|
5871
|
-
<span className="font-normal">{children}</span>
|
|
5871
|
+
<span className="font-normal inline-flex items-center gap-1">{children}</span>
|
|
5872
5872
|
</span>
|
|
5873
5873
|
);
|
|
5874
5874
|
}
|
package/package.json
CHANGED