William Wong
William Wong
@stevengum DLJS is having issues when bumping Webpack from 4 to 5 (due to security vulnerability). Starting from webpack@5, the `botframework-streaming` package is no longer working properly due to poor...
Looking at it now.
Related to https://github.com/microsoft/BotFramework-WebChat/issues/3039. If the transcript showing any dates beyond yesterday, it will blow up. 🤯
# Note to fixer Custom voice font support is done by changing the URL endpoint, documented here, https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/rest-apis#text-to-speech-api.
@gabog Understand this is an ask for Emulator. We are trying out GitHub new issue transfer to get the work done. The issue is being transferred to BotFramework-WebChat, get it...
Web Chat now support Custom Speech and Custom Voice. I have updated the first comment for UI requirements (what things we need from the user to enable these features). For...
@tonyanziano when we implement this, you can refer to [`BotFramework-WebChat/SPEECH.md`](https://github.com/microsoft/BotFramework-WebChat/blob/master/SPEECH.md) for how to do all the jobs. I am outlining here to simplify your reading task. 😉 - Basic -...
This is not trivial since the browser may also provide artificial scrolling. For example, if you go to https://compulim.github.io/react-scroll-to-bottom, the right hand side is a sticky top panel. When you...
Need to do some experiments to see how retrofitting works. Also, need to improve the customization story a little bit. Otherwise, a plain dot on lower-right hand side will not...
To use `useObserveScrollPosition` hook: ```js // This is the content rendered inside the scrollable container const ScrollContent = () => { const observer = useCallback(({ scrollTop }) => { console.log(scrollTop);...