quick-chat-react 1.0.2 → 1.0.4

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 CHANGED
@@ -283,6 +283,7 @@ For a user to appear in search results they must have a `profiles` row in your S
283
283
  | `email` | `string` | No | User's email address. |
284
284
  | `description` | `string` | No | Short bio or role shown on profile. |
285
285
  | `accessToken` | `string` | Yes (external mode) | Supabase JWT. Required for `authMode="external"`. |
286
+ | `refreshToken` | `string` | Yes (external mode) | Supabase refresh token. Required alongside `accessToken` — omitting it causes the session to silently expire after 1 hour. |
286
287
 
287
288
  ### `<ChatButton>`
288
289
 
@@ -302,6 +303,8 @@ For a user to appear in search results they must have a `profiles` row in your S
302
303
  | `iconColor` | `string` | — | Icon color (CSS color value). |
303
304
  | `icon` | `ReactNode` | — | Custom icon element. |
304
305
  | `label` | `string` | `"Open chat"` | Accessible aria-label for the button. |
306
+ | `className` | `string` | — | Extra CSS classes on the button element. |
307
+ | `style` | `CSSProperties` | — | Inline styles on the button element. |
305
308
 
306
309
  ### `<UserAvatar>`
307
310