Skip to content

Releases: VapiAI/client-sdk-react

v0.0.14

04 Oct 23:47
22d54f3
Compare
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
Compare
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
Compare
Choose a tag to compare

Fix message cut-off

v0.0.11

16 Aug 00:18
835bc39
Compare
Choose a tag to compare
  • Added mute button to voice widget

v0.0.10

15 Aug 23:31
c433880
Compare
Choose a tag to compare
  • Added React 19 support

v0.0.9

13 Jul 02:03
Compare
Choose a tag to compare
fixed default

v0.0.8

09 Jul 03:51
517d9cc
Compare
Choose a tag to compare
  • Renamed properties with backward compatibility

v0.0.7

03 Jul 23:40
60a938b
Compare
Choose a tag to compare
  • Transcript rendering improvements

v0.0.6

03 Jul 19:45
Compare
Choose a tag to compare
  • Fixes the chat rendering issue

v0.0.5

03 Jul 19:17
917cb13
Compare
Choose a tag to compare
  • Messages/Transcript rendering improvements