myoperator-mcp 0.2.263 → 0.2.265

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 +15 -10
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1451,7 +1451,7 @@ ContactListItem.displayName = "ContactListItem";
1451
1451
  export { ContactListItem };
1452
1452
  `,
1453
1453
  "creatable-multi-select": `import * as React from "react"
1454
- import { ChevronRight, Plus, Info, X } from "lucide-react"
1454
+ import { ChevronDown, Plus, Info, X } from "lucide-react"
1455
1455
 
1456
1456
  import { cn } from "@/lib/utils"
1457
1457
  import {
@@ -1681,7 +1681,7 @@ const CreatableMultiSelect = React.forwardRef(
1681
1681
  >
1682
1682
  {summaryTriggerLabel}
1683
1683
  </span>
1684
- <ChevronRight
1684
+ <ChevronDown
1685
1685
  className="mt-1 size-5 shrink-0 self-start text-semantic-text-muted opacity-70"
1686
1686
  aria-hidden
1687
1687
  />
@@ -1771,7 +1771,7 @@ const CreatableMultiSelect = React.forwardRef(
1771
1771
  ))
1772
1772
  )}
1773
1773
  </div>
1774
- <ChevronRight
1774
+ <ChevronDown
1775
1775
  className="mt-1 size-5 shrink-0 self-start text-semantic-text-muted opacity-70"
1776
1776
  aria-hidden
1777
1777
  />
@@ -1961,20 +1961,25 @@ const creatableSelectTriggerVariants = cva(
1961
1961
 
1962
1962
  /**
1963
1963
  * Tailwind classes for the "Enter \u21B5" hint in creatable dropdown headers (shared by Primary Role and Tone).
1964
- * If your Tailwind config uses \`prefix\` (e.g. \`"tw-"\`), prefix every utility here or these strings will not compile.
1964
+ *
1965
+ * Wrapped in \`cn(...)\` so the CLI's prefixer transforms the inner literal at install time.
1966
+ * If you copy this source manually (rather than via \`npx myoperator-ui add ...\`) and your
1967
+ * Tailwind config uses \`prefix\` (e.g. \`"tw-"\`), prefix every utility yourself or these
1968
+ * strings will not compile.
1965
1969
  */
1966
- export const creatableEnterHintKbdClassName =
1970
+ export const creatableEnterHintKbdClassName = cn(
1967
1971
  "inline-flex items-center gap-0.5 rounded border border-solid border-semantic-border-layout bg-semantic-bg-ui px-1.5 py-0.5 font-sans text-[10px] font-medium text-semantic-text-muted"
1972
+ )
1968
1973
 
1969
1974
  /** Primary Role: hint row above the options list (custom role + Enter kbd). */
1970
- export const creatablePrimaryRoleHintRowClassName =
1975
+ export const creatablePrimaryRoleHintRowClassName = cn(
1971
1976
  "flex items-center justify-between border-b border-solid border-semantic-border-layout px-4 py-2"
1977
+ )
1972
1978
 
1973
- /**
1974
- * Tone / CreatableMultiSelect: inner hint row (place inside a full-bleed wrapper with \`-mx-4\` + \`border-b\` on the panel).
1975
- */
1976
- export const creatableToneHintRowClassName =
1979
+ /** Tone / CreatableMultiSelect: inner hint row (place inside a full-bleed wrapper with \`-mx-4\` + \`border-b\` on the panel). */
1980
+ export const creatableToneHintRowClassName = cn(
1977
1981
  "flex min-h-[45px] shrink-0 items-center justify-between gap-2.5 px-4 py-2.5"
1982
+ )
1978
1983
 
1979
1984
  export interface CreatableSelectOption {
1980
1985
  value: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-mcp",
3
- "version": "0.2.263",
3
+ "version": "0.2.265",
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",