myoperator-mcp 0.2.174 → 0.2.176
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 +13 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4136,10 +4136,12 @@ const PageHeader = React.forwardRef(
|
|
|
4136
4136
|
responsive: "flex-col sm:flex-row sm:items-center",
|
|
4137
4137
|
};
|
|
4138
4138
|
|
|
4139
|
+
// Height is content-driven only \u2014 min-height (any breakpoint) clipped wrapped subheads in app shells.
|
|
4140
|
+
// ~76px single-row bar on lg is approximated with padding instead of min-h / fixed h.
|
|
4139
4141
|
const heightClasses = {
|
|
4140
|
-
horizontal: "
|
|
4141
|
-
vertical: "
|
|
4142
|
-
responsive: "
|
|
4142
|
+
horizontal: "py-4 lg:py-[18px]",
|
|
4143
|
+
vertical: "py-4",
|
|
4144
|
+
responsive: "py-4 lg:py-[18px]",
|
|
4143
4145
|
};
|
|
4144
4146
|
|
|
4145
4147
|
// Render actions for desktop (all inline)
|
|
@@ -4233,7 +4235,7 @@ const PageHeader = React.forwardRef(
|
|
|
4233
4235
|
{/* Top Row: Icon/Back + Title + Description */}
|
|
4234
4236
|
<div
|
|
4235
4237
|
className={cn(
|
|
4236
|
-
"flex flex-1 min-w-0",
|
|
4238
|
+
"flex min-h-0 flex-1 min-w-0",
|
|
4237
4239
|
description ? "items-start sm:items-center" : "items-center"
|
|
4238
4240
|
)}
|
|
4239
4241
|
>
|
|
@@ -4243,8 +4245,8 @@ const PageHeader = React.forwardRef(
|
|
|
4243
4245
|
)}
|
|
4244
4246
|
|
|
4245
4247
|
{/* Content Section: Title + Description */}
|
|
4246
|
-
<div className="flex-1 min-w-0">
|
|
4247
|
-
<div className="flex h-auto items-center gap-2
|
|
4248
|
+
<div className="min-h-0 flex-1 min-w-0">
|
|
4249
|
+
<div className="flex h-auto min-h-0 items-center gap-2">
|
|
4248
4250
|
<h1 className="m-0 text-lg font-semibold leading-normal text-semantic-text-primary truncate">
|
|
4249
4251
|
{title}
|
|
4250
4252
|
</h1>
|
|
@@ -5610,7 +5612,11 @@ const SelectContent = React.forwardRef(
|
|
|
5610
5612
|
position === "popper" &&
|
|
5611
5613
|
"h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]"
|
|
5612
5614
|
)}
|
|
5613
|
-
|
|
5615
|
+
{...((onViewportScrollEnd
|
|
5616
|
+
? { onScrollEnd: onViewportScrollEnd }
|
|
5617
|
+
: {}) as React.ComponentPropsWithoutRef<
|
|
5618
|
+
typeof SelectPrimitive.Viewport
|
|
5619
|
+
>)}
|
|
5614
5620
|
>
|
|
5615
5621
|
{children}
|
|
5616
5622
|
</SelectPrimitive.Viewport>
|
package/package.json
CHANGED