myoperator-mcp 0.2.134 → 0.2.135
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 +8 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3624,7 +3624,12 @@ const PageHeader = React.forwardRef(
|
|
|
3624
3624
|
{...props}
|
|
3625
3625
|
>
|
|
3626
3626
|
{/* Top Row: Icon/Back + Title + Description */}
|
|
3627
|
-
<div
|
|
3627
|
+
<div
|
|
3628
|
+
className={cn(
|
|
3629
|
+
"flex flex-1 min-w-0",
|
|
3630
|
+
description ? "items-start sm:items-center" : "items-center"
|
|
3631
|
+
)}
|
|
3632
|
+
>
|
|
3628
3633
|
{/* Left Section: Icon or Back Button */}
|
|
3629
3634
|
{leftElement && (
|
|
3630
3635
|
<div className="flex-shrink-0 mr-4">{leftElement}</div>
|
|
@@ -3632,8 +3637,8 @@ const PageHeader = React.forwardRef(
|
|
|
3632
3637
|
|
|
3633
3638
|
{/* Content Section: Title + Description */}
|
|
3634
3639
|
<div className="flex-1 min-w-0">
|
|
3635
|
-
<div className="flex items-center gap-2">
|
|
3636
|
-
<h1 className="m-0 text-lg font-semibold text-semantic-text-primary truncate">
|
|
3640
|
+
<div className="flex min-h-10 items-center gap-2">
|
|
3641
|
+
<h1 className="m-0 text-lg font-semibold leading-none text-semantic-text-primary truncate">
|
|
3637
3642
|
{title}
|
|
3638
3643
|
</h1>
|
|
3639
3644
|
{badge && (
|
package/package.json
CHANGED