@versini/ui-bubble 11.1.0 → 12.0.0
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/983.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-bubble
|
|
2
|
+
@versini/ui-bubble v12.0.0
|
|
3
3
|
© 2026 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -45,7 +45,7 @@ const getBubbleColorClasses = ({ kind, gradient })=>{
|
|
|
45
45
|
});
|
|
46
46
|
};
|
|
47
47
|
const getBubbleTypographyClasses = ({ kind })=>{
|
|
48
|
-
return clsx("
|
|
48
|
+
return clsx("plume plume-dark dark:plume-lighter", "plume-blockquote:my-1", "plume-ol:my-1 plume-ul:my-1", {
|
|
49
49
|
"text-copy-lighter": kind === "right"
|
|
50
50
|
});
|
|
51
51
|
};
|
|
@@ -131,7 +131,7 @@ const Bubble = ({ children, kind = "left", className, contentClassName, footerCl
|
|
|
131
131
|
* This prevents layout shifts when the last bubble is received.
|
|
132
132
|
*/ if (isFooterEmpty(item)) {
|
|
133
133
|
return /*#__PURE__*/ jsx("div", {
|
|
134
|
-
className: "
|
|
134
|
+
className: "plume-p:m-0",
|
|
135
135
|
children: /*#__PURE__*/ jsx("p", {
|
|
136
136
|
className: bubbleClasses.footer,
|
|
137
137
|
"aria-hidden": "true",
|
|
@@ -147,7 +147,7 @@ const Bubble = ({ children, kind = "left", className, contentClassName, footerCl
|
|
|
147
147
|
* Renders as "Sent: 12:00 PM"
|
|
148
148
|
*/ if (isFooterKeyValue(item)) {
|
|
149
149
|
return /*#__PURE__*/ jsx("div", {
|
|
150
|
-
className: "
|
|
150
|
+
className: "plume-p:m-0",
|
|
151
151
|
children: /*#__PURE__*/ jsxs("p", {
|
|
152
152
|
className: bubbleClasses.footer,
|
|
153
153
|
children: [
|
|
@@ -162,7 +162,7 @@ const Bubble = ({ children, kind = "left", className, contentClassName, footerCl
|
|
|
162
162
|
* Handle value-only items: `{ value: "12:00 PM" }`
|
|
163
163
|
* Renders just the value without a key prefix.
|
|
164
164
|
*/ return /*#__PURE__*/ jsx("div", {
|
|
165
|
-
className: "
|
|
165
|
+
className: "plume-p:m-0",
|
|
166
166
|
children: /*#__PURE__*/ jsx("p", {
|
|
167
167
|
className: bubbleClasses.footer,
|
|
168
168
|
children: item.value
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-bubble",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@versini/ui-types": "8.3.0"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@versini/ui-button": "
|
|
56
|
+
"@versini/ui-button": "12.0.0",
|
|
57
57
|
"@versini/ui-icons": "4.18.1",
|
|
58
58
|
"clsx": "2.1.1",
|
|
59
59
|
"tailwindcss": "4.1.18"
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"sideEffects": [
|
|
62
62
|
"**/*.css"
|
|
63
63
|
],
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "ace8376be408d1f21ced7ba7a3259891476690e4"
|
|
65
65
|
}
|