@versini/ui-bubble 4.0.5 → 4.1.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/index.d.ts CHANGED
@@ -44,10 +44,14 @@ type BubbleProps = {
44
44
  * footer={{
45
45
  * "Sent": "12:00 PM",
46
46
  * "Delivered": "12:01 PM",
47
+ * "Verified": Bubble.FOOTER_EMPTY,
47
48
  * "Read": "12:02 PM",
48
49
  * }}
49
50
  * >Hello World</Bubble>
50
51
  * ```
52
+ * This will create a footer with 4 rows, with the row before last being
53
+ * empty but taking the full height of a normal row.
54
+ *
51
55
  */
52
56
  footer?: {
53
57
  [key: string]: string | number | undefined | null;
@@ -88,6 +92,7 @@ type BubbleProps = {
88
92
  tail?: boolean;
89
93
  };
90
94
 
95
+ declare const BUBBLE_FOOTER_EMPTY = "FOOTER_EMPTY";
91
96
  declare const Bubble: ({ children, kind, className, contentClassName, footer, rawFooter, copyToClipboard, copyToClipboardFocusMode, copyToClipboardMode, noMaxWidth, tail, }: BubbleProps) => react_jsx_runtime.JSX.Element;
92
97
 
93
- export { BUBBLE_CLASSNAME, Bubble };
98
+ export { BUBBLE_CLASSNAME, BUBBLE_FOOTER_EMPTY, Bubble };