myoperator-mcp 0.2.62 → 0.2.64
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 +9 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2477,7 +2477,9 @@ const PageHeader = React.forwardRef<HTMLDivElement, PageHeaderProps>(
|
|
|
2477
2477
|
// Render actions for desktop (all inline)
|
|
2478
2478
|
const renderDesktopActions = () => (
|
|
2479
2479
|
<div className="hidden sm:flex items-center gap-2 ml-6">
|
|
2480
|
-
{actionsArray
|
|
2480
|
+
{actionsArray.map((action, index) => (
|
|
2481
|
+
<React.Fragment key={index}>{action}</React.Fragment>
|
|
2482
|
+
))}
|
|
2481
2483
|
</div>
|
|
2482
2484
|
);
|
|
2483
2485
|
|
|
@@ -2532,7 +2534,11 @@ const PageHeader = React.forwardRef<HTMLDivElement, PageHeaderProps>(
|
|
|
2532
2534
|
|
|
2533
2535
|
// For horizontal layout, always show all actions inline
|
|
2534
2536
|
const renderHorizontalActions = () => (
|
|
2535
|
-
<div className="flex items-center gap-2 ml-4">
|
|
2537
|
+
<div className="flex items-center gap-2 ml-4">
|
|
2538
|
+
{actionsArray.map((action, index) => (
|
|
2539
|
+
<React.Fragment key={index}>{action}</React.Fragment>
|
|
2540
|
+
))}
|
|
2541
|
+
</div>
|
|
2536
2542
|
);
|
|
2537
2543
|
|
|
2538
2544
|
const renderActions = () => {
|
|
@@ -2742,7 +2748,7 @@ export const ReadableField = React.forwardRef<HTMLDivElement, ReadableFieldProps
|
|
|
2742
2748
|
)}
|
|
2743
2749
|
>
|
|
2744
2750
|
{/* Value Display */}
|
|
2745
|
-
<span className="text-base text-
|
|
2751
|
+
<span className="text-base text-semantic-text-primary tracking-[0.08px] truncate">
|
|
2746
2752
|
{displayValue}
|
|
2747
2753
|
</span>
|
|
2748
2754
|
|
package/package.json
CHANGED