@opencxh/ui-kit 3.123.1 → 3.123.3

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 CHANGED
@@ -4169,10 +4169,13 @@ function pn({
4169
4169
  className: d(
4170
4170
  // A bubble never spans the whole column; it narrows further from md,
4171
4171
  // where the thread itself is wide enough for the difference to matter.
4172
- "min-w-0 max-w-bubble border md:max-w-bubble-md",
4173
- n === "warning" && "border-warning-border",
4174
- n === "note" && "border-note-border",
4175
- n === "default" && "border-border",
4172
+ "min-w-0 max-w-bubble md:max-w-bubble-md",
4173
+ // No outline on an ordinary message: its fill already separates it from
4174
+ // the thread, and a border on every bubble turns a conversation into a
4175
+ // stack of boxes. The flagged tones keep theirs — there the outline is
4176
+ // the signal, not decoration.
4177
+ // tone === "warning" && "border border-warning-border",
4178
+ // tone === "note" && "border border-note-border",
4176
4179
  // The tight corner points back at the sender.
4177
4180
  t === "out" ? "rounded-lg rounded-tr-sm" : "rounded-lg rounded-tl-sm",
4178
4181
  n === "note" ? "bg-note-soft" : t === "out" ? "bg-bubble-out-soft" : "bg-surface",