Skip to content

Releases: VapiAI/client-sdk-react

v0.0.15

19 Oct 10:31
8b626c7

Choose a tag to compare

What's Changed

  • Updates the Widget component and underlying hooks to support reconnecting to active calls within the same browser tab.
  • Upgrades @vapi-ai/web dependency to 2.5.0 for roomDeleteOnUserLeaveEnabled and reconnect method support.
  • Use session storage to store active call and expanded state for better user experience

New Contributors

Full Changelog: v0.0.14...v0.0.15

v0.0.14

04 Oct 23:47
22d54f3

Choose a tag to compare

Fix: Isolate Widget CSS to Prevent Host Page Style Conflicts

Problem

Widget's global CSS (especially Tailwind base reset) was injecting into host pages and overriding their styles, causing conflicts and breaking host page layouts.

Solution

Implemented selector-based CSS scoping. All widget styles are now scoped to .vapi-widget-wrapper container.

CSS Generation

Before: .flex { display: flex; } (global, affects host page)
After: .vapi-widget-wrapper .flex { display: flex !important; } (scoped, isolated)

v0.0.13

04 Oct 23:11
70397e2

Choose a tag to compare

What's Changed

  • VAP-999 Add end chat button and logic by @Ash110 in #21

New Contributors

Full Changelog: v0.0.12...v0.0.13

v0.0.12

20 Aug 01:09
95f3aba

Choose a tag to compare

Fix message cut-off

v0.0.11

16 Aug 00:18
835bc39

Choose a tag to compare

  • Added mute button to voice widget

v0.0.10

15 Aug 23:31
c433880

Choose a tag to compare

  • Added React 19 support

v0.0.9

13 Jul 02:03

Choose a tag to compare

fixed default

v0.0.8

09 Jul 03:51
517d9cc

Choose a tag to compare

  • Renamed properties with backward compatibility

v0.0.7

03 Jul 23:40
60a938b

Choose a tag to compare

  • Transcript rendering improvements

v0.0.6

03 Jul 19:45

Choose a tag to compare

  • Fixes the chat rendering issue