myoperator-mcp 0.2.15 → 0.2.16
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 +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1463,6 +1463,8 @@ export interface PageHeaderProps
|
|
|
1463
1463
|
infoIcon?: React.ReactNode
|
|
1464
1464
|
/** Action buttons/elements rendered on the right side */
|
|
1465
1465
|
actions?: React.ReactNode
|
|
1466
|
+
/** Show bottom border (default: true) */
|
|
1467
|
+
showBorder?: boolean
|
|
1466
1468
|
}
|
|
1467
1469
|
|
|
1468
1470
|
const PageHeader = React.forwardRef<HTMLDivElement, PageHeaderProps>(
|
|
@@ -1475,6 +1477,7 @@ const PageHeader = React.forwardRef<HTMLDivElement, PageHeaderProps>(
|
|
|
1475
1477
|
onBackClick,
|
|
1476
1478
|
infoIcon,
|
|
1477
1479
|
actions,
|
|
1480
|
+
showBorder = true,
|
|
1478
1481
|
...props
|
|
1479
1482
|
}, ref) => {
|
|
1480
1483
|
// Determine what to show on the left: back button, icon, or nothing
|
|
@@ -1509,6 +1512,7 @@ const PageHeader = React.forwardRef<HTMLDivElement, PageHeaderProps>(
|
|
|
1509
1512
|
className={cn(
|
|
1510
1513
|
pageHeaderVariants(),
|
|
1511
1514
|
"h-[76px] px-4",
|
|
1515
|
+
showBorder && "border-b border-[#E4E4E4]",
|
|
1512
1516
|
className
|
|
1513
1517
|
)}
|
|
1514
1518
|
{...props}
|
package/package.json
CHANGED