myoperator-mcp 0.2.332 → 0.2.334
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 +10 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4693,7 +4693,7 @@ const DropdownMenuSubContent = React.forwardRef(({ className, ...props }: React.
|
|
|
4693
4693
|
<DropdownMenuPrimitive.SubContent
|
|
4694
4694
|
ref={ref}
|
|
4695
4695
|
className={cn(
|
|
4696
|
-
"z-[9999] min-w-[8rem] overflow-
|
|
4696
|
+
"z-[9999] max-h-[min(20rem,var(--radix-dropdown-menu-content-available-height))] min-w-[8rem] overflow-y-auto overscroll-contain rounded-md border border-solid border-semantic-border-layout bg-semantic-bg-primary p-1 text-semantic-text-primary shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-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",
|
|
4697
4697
|
className
|
|
4698
4698
|
)}
|
|
4699
4699
|
{...props}
|
|
@@ -4708,7 +4708,7 @@ const DropdownMenuContent = React.forwardRef(({ className, sideOffset = 4, ...pr
|
|
|
4708
4708
|
ref={ref}
|
|
4709
4709
|
sideOffset={sideOffset}
|
|
4710
4710
|
className={cn(
|
|
4711
|
-
"z-[9999] min-w-[8rem] overflow-
|
|
4711
|
+
"z-[9999] max-h-[min(20rem,var(--radix-dropdown-menu-content-available-height))] min-w-[8rem] overflow-y-auto overscroll-contain rounded-md border border-solid border-semantic-border-layout bg-semantic-bg-primary p-1 text-semantic-text-primary shadow-md",
|
|
4712
4712
|
"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-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",
|
|
4713
4713
|
className
|
|
4714
4714
|
)}
|
|
@@ -8197,7 +8197,7 @@ const SelectContent = React.forwardRef(
|
|
|
8197
8197
|
<SelectPrimitive.Content
|
|
8198
8198
|
ref={ref}
|
|
8199
8199
|
className={cn(
|
|
8200
|
-
"relative z-[9999] max-h-96
|
|
8200
|
+
"relative z-[9999] max-h-96 w-[var(--radix-select-trigger-width)] max-w-[var(--radix-select-trigger-width)] overflow-hidden rounded bg-semantic-bg-primary border border-solid border-semantic-border-layout shadow-md",
|
|
8201
8201
|
"data-[state=open]:animate-in data-[state=closed]:animate-out",
|
|
8202
8202
|
"data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
8203
8203
|
"data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95",
|
|
@@ -8217,7 +8217,7 @@ const SelectContent = React.forwardRef(
|
|
|
8217
8217
|
className={cn(
|
|
8218
8218
|
"p-1",
|
|
8219
8219
|
position === "popper" &&
|
|
8220
|
-
"h-[var(--radix-select-trigger-height)] w-full
|
|
8220
|
+
"h-[var(--radix-select-trigger-height)] w-full"
|
|
8221
8221
|
)}
|
|
8222
8222
|
>
|
|
8223
8223
|
{children}
|
|
@@ -8246,7 +8246,7 @@ const SelectItem = React.forwardRef(({ className, children, ...props }: React.Co
|
|
|
8246
8246
|
<SelectPrimitive.Item
|
|
8247
8247
|
ref={ref}
|
|
8248
8248
|
className={cn(
|
|
8249
|
-
"relative flex w-full cursor-pointer select-none items-
|
|
8249
|
+
"relative flex w-full cursor-pointer select-none items-start rounded-sm py-2 pl-4 pr-8 text-base text-semantic-text-primary outline-none",
|
|
8250
8250
|
"hover:bg-semantic-bg-ui focus:bg-semantic-bg-ui",
|
|
8251
8251
|
"data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
8252
8252
|
className
|
|
@@ -8258,9 +8258,11 @@ const SelectItem = React.forwardRef(({ className, children, ...props }: React.Co
|
|
|
8258
8258
|
<Check className="size-4 text-semantic-brand" />
|
|
8259
8259
|
</SelectPrimitive.ItemIndicator>
|
|
8260
8260
|
</span>
|
|
8261
|
-
<
|
|
8262
|
-
<
|
|
8263
|
-
|
|
8261
|
+
<span className="min-w-0 flex-1 whitespace-normal break-words leading-normal">
|
|
8262
|
+
<SelectPrimitive.ItemText>
|
|
8263
|
+
{children}
|
|
8264
|
+
</SelectPrimitive.ItemText>
|
|
8265
|
+
</span>
|
|
8264
8266
|
</SelectPrimitive.Item>
|
|
8265
8267
|
));
|
|
8266
8268
|
SelectItem.displayName = SelectPrimitive.Item.displayName;
|
package/package.json
CHANGED