Skip to content

Releases: Cognigy/WebchatWidget

2.10.3

26 Nov 10:21
Compare
Choose a tag to compare

Bug Fixes

  • fix month selection for date picker not being displayed correctly

2.10.2

22 Nov 11:04
Compare
Choose a tag to compare

Bug Fixes

  • fixed issue that prevented Internet Explorer 11 to connect to the Endpoint

2.10.1

12 Nov 10:44
Compare
Choose a tag to compare

Bug Fixes

  • fix empty image URLs causing the webchat to crash

2.10 - Customizable Avatars

30 Oct 16:03
Compare
Choose a tag to compare

New Features

  • During the conversation, you can swap the image URLs used for Bot and User avatars by sending certain message content:

Set a user avatar override

{
  "_webchat": {
   " userAvatarOverrideUrl": "https://placekitten.com/200/200"
  }
}

Reset the user avatar

{
  "_webchat": {
    "userAvatarOverrideUrl": ""
  }
}

Set a bot avatar override

{
  "_webchat": {
    "botAvatarOverrideUrl": "https://placekitten.com/200/200"
  }
}

Reset the bot avatar

{
  "_webchat": {
    "botAvatarOverrideUrl": ""
  }
}

Bug Fixes

  • Using the speech input plugin will no longer append JSON text to the message text
  • Using Webchat / Messenger templates with images in the Say node should now load images with complex URLs correctly

2.9.1

17 Oct 15:15
Compare
Choose a tag to compare

Bug Fixes

  • fixed incorrect behaviour when using nested routes for endpoints, e.g. in API gateways like https://endpoint.some-cognigy-installation.com/some/sub/route/78sdoyh78sor7ea9aerh978r.

2.9.0 - CSS Customization

26 Sep 09:58
Compare
Choose a tag to compare

New Features

  • Add CSS classes to allow customization

Bug Fixes

  • Fix visual errors for RTL layouts

2.8.2

10 Sep 13:06
Compare
Choose a tag to compare

Bug Fixes

  • Fix text input field losing focus after submitting in IE11

2.8.1

29 Aug 15:23
Compare
Choose a tag to compare

Bug Fixes

  • use idempotent-babel-loader for legacy-builds to avoid conflicts with plugins or the host page

Other Fixes

  • updated packages according to npm audit

2.8.0 - Connection Status Indicator, Dynamic Image Aspect Ratios

23 Aug 15:31
Compare
Choose a tag to compare

New Features

Connection Status Indicator

This optional feature will show an overlay over the Webchat when the connection is lost during a conversation until it reconnects. You can enable it by passing enableConnectionStatusIndicator in the Webchat settings during initialization as in the example code below.

initWebchat('...', {
  settings: {
    enableConnectionStatusIndicator: true
  }
})

Dynamic Image Aspect Ratios

You can now change the fixed image aspect ratios of certain Webchat Templates to be dynamic (the image is as high as it needs to be) via the dynamicImageAspectRatio setting.
This affects the following Webchat templates:

  • Image in Gallery Template
  • Header Image in List Template
  • Image in Media/Attachment Template
initWebchat('...', {
  settings: {
    dynamicImageAspectRatio: true
  }
})

2.7.1

16 Aug 14:31
Compare
Choose a tag to compare

Bug Fixes

  • fix date-pickers weekends setting to select mondays instead of saturdays