@opencxh/ui-kit 3.112.0 → 3.112.1
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/src/content/MessageBubble.d.ts +6 -3
- package/package.json +1 -1
|
@@ -13,9 +13,12 @@ export interface MessageBubbleProps {
|
|
|
13
13
|
*/
|
|
14
14
|
tone?: "default" | "warning" | "note";
|
|
15
15
|
/**
|
|
16
|
-
* Layout only —
|
|
17
|
-
*
|
|
18
|
-
*
|
|
16
|
+
* Layout only — padding, flex behaviour, margins.
|
|
17
|
+
*
|
|
18
|
+
* Not width: the bubble caps its own, because `cn` is plain clsx with no
|
|
19
|
+
* tailwind-merge, so a `max-w-*` passed here would not reliably beat the
|
|
20
|
+
* default — both land in the class list and CSS order decides. A message
|
|
21
|
+
* that runs the full width of the thread stops reading as a message.
|
|
19
22
|
*/
|
|
20
23
|
className?: string;
|
|
21
24
|
children: React.ReactNode;
|