@agentprojectcontext/apx 1.53.4 → 1.53.5

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.
@@ -18,7 +18,7 @@
18
18
  <link rel="apple-touch-icon" href="/favicon/dark/apple-touch-icon.png" media="(prefers-color-scheme: dark)" />
19
19
  <link rel="manifest" href="/favicon/white/site.webmanifest" media="(prefers-color-scheme: light)" />
20
20
  <link rel="manifest" href="/favicon/dark/site.webmanifest" media="(prefers-color-scheme: dark)" />
21
- <script type="module" crossorigin src="/assets/index-Cy355-jV.js"></script>
21
+ <script type="module" crossorigin src="/assets/index-DJpij6dQ.js"></script>
22
22
  <link rel="stylesheet" crossorigin href="/assets/index-BwnMDZaD.css">
23
23
  </head>
24
24
  <body class="bg-background text-foreground antialiased">
@@ -84,8 +84,10 @@ export function Field({
84
84
  badge?: string;
85
85
  children: ReactNode;
86
86
  }) {
87
+ // Do not wrap controls in <label>: complex fields (contentEditable +
88
+ // buttons/popovers) can redirect clicks to the wrong nested control.
87
89
  return (
88
- <label className="block space-y-1">
90
+ <div className="block space-y-1">
89
91
  <span className="flex items-center gap-1.5 text-xs font-medium text-muted-foreground">
90
92
  {label}
91
93
  {badge && (
@@ -94,7 +96,7 @@ export function Field({
94
96
  </span>
95
97
  {children}
96
98
  {hint && <span className="block text-[11px] text-muted-foreground/70">{hint}</span>}
97
- </label>
99
+ </div>
98
100
  );
99
101
  }
100
102