myoperator-mcp 0.2.278 → 0.2.279

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.
Files changed (2) hide show
  1. package/dist/index.js +7 -7
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -927,11 +927,11 @@ const buttonVariants = cva(
927
927
  "border border-dashed border-semantic-bg-hover bg-transparent text-semantic-text-muted hover:border-semantic-border-primary hover:text-semantic-text-secondary hover:bg-[var(--color-neutral-50)]",
928
928
  },
929
929
  size: {
930
- default: "min-w-20 py-2.5 px-4 [&_svg]:size-4",
931
- sm: "min-w-16 py-2.5 px-4 text-xs [&_svg]:size-[18px]",
932
- lg: "min-w-24 py-3 px-6 [&_svg]:size-5",
933
- icon: "h-8 w-8 rounded-md",
934
- "icon-sm": "h-7 w-7 rounded-md",
930
+ default: "h-9 min-w-20 px-4 [&_svg]:size-4",
931
+ sm: "h-8 min-w-16 px-3 text-xs [&_svg]:size-[18px]",
932
+ lg: "h-10 min-w-24 px-6 [&_svg]:size-5",
933
+ icon: "h-9 w-9 rounded-md",
934
+ "icon-sm": "h-8 w-8 rounded-md",
935
935
  "icon-lg": "h-10 w-10 rounded-md",
936
936
  },
937
937
  },
@@ -4448,7 +4448,7 @@ const PageHeader = React.forwardRef(
4448
4448
  {/* Visible actions row - full width grid */}
4449
4449
  <div className="grid gap-2" style={{ gridTemplateColumns: gridCols }}>
4450
4450
  {visibleActions.map((action, index) => (
4451
- <div key={index} className="[&>*]:w-full [&>*]:h-9">
4451
+ <div key={index} className="[&>*]:w-full [&>*]:min-h-9">
4452
4452
  {action}
4453
4453
  </div>
4454
4454
  ))}
@@ -4474,7 +4474,7 @@ const PageHeader = React.forwardRef(
4474
4474
  {isOverflowExpanded && overflowActions.length > 0 && (
4475
4475
  <div className="flex flex-col gap-2">
4476
4476
  {overflowActions.map((action, index) => (
4477
- <div key={index} className="[&>*]:w-full [&>*]:h-9">
4477
+ <div key={index} className="[&>*]:w-full [&>*]:min-h-9">
4478
4478
  {action}
4479
4479
  </div>
4480
4480
  ))}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-mcp",
3
- "version": "0.2.278",
3
+ "version": "0.2.279",
4
4
  "description": "MCP server for myOperator UI components - enables AI assistants to access component metadata, examples, and design tokens",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",