@versini/ui-bubble 10.0.0 → 10.0.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/README.md +4 -4
- package/dist/common/constants.js +3 -3
- package/dist/components/Bubble/Bubble.d.ts +1 -1
- package/dist/components/Bubble/Bubble.js +3 -3
- package/dist/components/Bubble/BubbleTypes.js +3 -3
- package/dist/components/Bubble/utilities.js +3 -3
- package/dist/components/BubbleConstants/BubbleConstants.js +3 -3
- package/dist/components/index.js +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -152,7 +152,7 @@ function ChatExample() {
|
|
|
152
152
|
|
|
153
153
|
```tsx
|
|
154
154
|
import { Bubble } from "@versini/ui-bubble/bubble";
|
|
155
|
-
import {
|
|
155
|
+
import { BUBBLE_FOOTER_EMPTY } from "@versini/ui-bubble/constants";
|
|
156
156
|
|
|
157
157
|
function AdvancedFooterExample() {
|
|
158
158
|
return (
|
|
@@ -164,7 +164,7 @@ function AdvancedFooterExample() {
|
|
|
164
164
|
footer={[
|
|
165
165
|
{ key: "Message ID", value: "msg-123" },
|
|
166
166
|
{ key: "Sent", value: "2:30 PM" },
|
|
167
|
-
|
|
167
|
+
BUBBLE_FOOTER_EMPTY, // Empty row that maintains height
|
|
168
168
|
{ key: "Delivered", value: "2:31 PM" },
|
|
169
169
|
{ key: "Read", value: "2:35 PM" },
|
|
170
170
|
{ value: "12/22/2025 2:36 PM EDT" } // Value only, no key displayed
|
|
@@ -298,9 +298,9 @@ The `footer` prop accepts an array of footer items with the following types:
|
|
|
298
298
|
}
|
|
299
299
|
|
|
300
300
|
// Empty row: maintains height for layout consistency
|
|
301
|
-
|
|
301
|
+
BUBBLE_FOOTER_EMPTY;
|
|
302
302
|
```
|
|
303
303
|
|
|
304
304
|
### Special Values
|
|
305
305
|
|
|
306
|
-
- `
|
|
306
|
+
- `BUBBLE_FOOTER_EMPTY` - Import from `@versini/ui-bubble/constants` to create an empty footer row that maintains height
|
package/dist/common/constants.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-bubble v10.0.
|
|
2
|
+
@versini/ui-bubble v10.0.1
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUBBLE__) {
|
|
7
7
|
window.__VERSINI_UI_BUBBLE__ = {
|
|
8
|
-
version: "10.0.
|
|
9
|
-
buildTime: "12/22/2025
|
|
8
|
+
version: "10.0.1",
|
|
9
|
+
buildTime: "12/22/2025 03:48 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-bubble",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { BubbleProps } from "./BubbleTypes";
|
|
2
|
-
export type { BubbleProps } from "./BubbleTypes";
|
|
2
|
+
export type { BubbleFooter, BubbleFooterItem, BubbleFooterKeyValue, BubbleFooterValueOnly, BubbleProps, } from "./BubbleTypes";
|
|
3
3
|
export declare const Bubble: ({ children, kind, className, contentClassName, footer, rawFooter, copyToClipboard, copyToClipboardFocusMode, copyToClipboardMode, noMaxWidth, tail, gradient, }: BubbleProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-bubble v10.0.
|
|
2
|
+
@versini/ui-bubble v10.0.1
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUBBLE__) {
|
|
7
7
|
window.__VERSINI_UI_BUBBLE__ = {
|
|
8
|
-
version: "10.0.
|
|
9
|
-
buildTime: "12/22/2025
|
|
8
|
+
version: "10.0.1",
|
|
9
|
+
buildTime: "12/22/2025 03:48 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-bubble",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-bubble v10.0.
|
|
2
|
+
@versini/ui-bubble v10.0.1
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUBBLE__) {
|
|
7
7
|
window.__VERSINI_UI_BUBBLE__ = {
|
|
8
|
-
version: "10.0.
|
|
9
|
-
buildTime: "12/22/2025
|
|
8
|
+
version: "10.0.1",
|
|
9
|
+
buildTime: "12/22/2025 03:48 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-bubble",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-bubble v10.0.
|
|
2
|
+
@versini/ui-bubble v10.0.1
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUBBLE__) {
|
|
7
7
|
window.__VERSINI_UI_BUBBLE__ = {
|
|
8
|
-
version: "10.0.
|
|
9
|
-
buildTime: "12/22/2025
|
|
8
|
+
version: "10.0.1",
|
|
9
|
+
buildTime: "12/22/2025 03:48 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-bubble",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-bubble v10.0.
|
|
2
|
+
@versini/ui-bubble v10.0.1
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUBBLE__) {
|
|
7
7
|
window.__VERSINI_UI_BUBBLE__ = {
|
|
8
|
-
version: "10.0.
|
|
9
|
-
buildTime: "12/22/2025
|
|
8
|
+
version: "10.0.1",
|
|
9
|
+
buildTime: "12/22/2025 03:48 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-bubble",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
package/dist/components/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-bubble v10.0.
|
|
2
|
+
@versini/ui-bubble v10.0.1
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_BUBBLE__) {
|
|
7
7
|
window.__VERSINI_UI_BUBBLE__ = {
|
|
8
|
-
version: "10.0.
|
|
9
|
-
buildTime: "12/22/2025
|
|
8
|
+
version: "10.0.1",
|
|
9
|
+
buildTime: "12/22/2025 03:48 PM EST",
|
|
10
10
|
homepage: "https://www.npmjs.com/package/@versini/ui-bubble",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-bubble",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"sideEffects": [
|
|
59
59
|
"**/*.css"
|
|
60
60
|
],
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "c129d519f4afee8d1fe8a2706033073fe4c38902"
|
|
62
62
|
}
|