@opencxh/ui-kit 3.123.0 → 3.123.2

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
@@ -559,7 +559,7 @@ const $t = {
559
559
  sm: "text-sm",
560
560
  md: "text-base",
561
561
  lg: "text-md",
562
- full: "text-md"
562
+ full: "text-base"
563
563
  }, ge = me(
564
564
  ({
565
565
  label: t,
@@ -3021,7 +3021,7 @@ const nn = ({
3021
3021
  return /* @__PURE__ */ e("div", { className: "flex flex-col gap-2", children: C.options?.map((k) => /* @__PURE__ */ c(
3022
3022
  "label",
3023
3023
  {
3024
- className: "flex cursor-pointer items-center gap-2 text-base text-text",
3024
+ className: "flex cursor-pointer items-center gap-3 text-base text-text",
3025
3025
  children: [
3026
3026
  /* @__PURE__ */ e(
3027
3027
  "input",
@@ -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
+ n === "warning" && "border border-warning-border",
4178
+ n === "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",