diff --git a/CHANGELOG.md b/CHANGELOG.md index 88bd8f3d8d..d6df59e6e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -400,6 +400,7 @@ Breaking changes in this release: - Fixed virtual keyboard should show up on tap after being suppressed, in iOS 26.2, by [@compulim](https://github.com/compulim) in PR [#5678](https://github.com/microsoft/BotFramework-WebChat/pull/5678) - Fixed compatibility with `create-react-app` by adding file extension to `core-js` imports, by [@compulim](https://github.com/compulim) in PR [#5680](https://github.com/microsoft/BotFramework-WebChat/pull/5680) - Fixed virtual keyboard should be collapsed after being suppressed, in iOS 26.3, by [@compulim](https://github.com/compulim) in PR [#5757](https://github.com/microsoft/BotFramework-WebChat/pull/5757) +- Fixed Fluent/Copilot typing indicator animation background color, in PR [#5770](https://github.com/microsoft/BotFramework-WebChat/pull/5770), by [@OEvgeny](https://github.com/OEvgeny) ## [4.18.0] - 2024-07-10 diff --git a/__tests__/html2/typing/typingIndicator.scroll.copilot.dark.html b/__tests__/html2/typing/typingIndicator.scroll.copilot.dark.html new file mode 100644 index 0000000000..4c0c8168c6 --- /dev/null +++ b/__tests__/html2/typing/typingIndicator.scroll.copilot.dark.html @@ -0,0 +1,9 @@ + + +
+ + + + diff --git a/__tests__/html2/typing/typingIndicator.scroll.copilot.dark.html.snap-1.png b/__tests__/html2/typing/typingIndicator.scroll.copilot.dark.html.snap-1.png new file mode 100644 index 0000000000..ac6d2f67e3 Binary files /dev/null and b/__tests__/html2/typing/typingIndicator.scroll.copilot.dark.html.snap-1.png differ diff --git a/__tests__/html2/typing/typingIndicator.scroll.copilot.dark.html.snap-2.png b/__tests__/html2/typing/typingIndicator.scroll.copilot.dark.html.snap-2.png new file mode 100644 index 0000000000..ba4df54f75 Binary files /dev/null and b/__tests__/html2/typing/typingIndicator.scroll.copilot.dark.html.snap-2.png differ diff --git a/__tests__/html2/typing/typingIndicator.scroll.fluent.dark.html b/__tests__/html2/typing/typingIndicator.scroll.fluent.dark.html new file mode 100644 index 0000000000..a5d955a6bb --- /dev/null +++ b/__tests__/html2/typing/typingIndicator.scroll.fluent.dark.html @@ -0,0 +1,9 @@ + + + + + + + diff --git a/__tests__/html2/typing/typingIndicator.scroll.fluent.dark.html.snap-1.png b/__tests__/html2/typing/typingIndicator.scroll.fluent.dark.html.snap-1.png new file mode 100644 index 0000000000..22facf3088 Binary files /dev/null and b/__tests__/html2/typing/typingIndicator.scroll.fluent.dark.html.snap-1.png differ diff --git a/__tests__/html2/typing/typingIndicator.scroll.fluent.dark.html.snap-2.png b/__tests__/html2/typing/typingIndicator.scroll.fluent.dark.html.snap-2.png new file mode 100644 index 0000000000..d212fa83d4 Binary files /dev/null and b/__tests__/html2/typing/typingIndicator.scroll.fluent.dark.html.snap-2.png differ diff --git a/__tests__/html2/typing/typingIndicator.scroll.html b/__tests__/html2/typing/typingIndicator.scroll.html index 1004ddfcc7..8dc93a51ec 100644 --- a/__tests__/html2/typing/typingIndicator.scroll.html +++ b/__tests__/html2/typing/typingIndicator.scroll.html @@ -1,127 +1,170 @@ - - - - - - - - - - - - - - + + + + + + + + + + - - + + // THEN: Should hide typing indicator. + await waitFor(() => expect(pageElements.typingIndicator()).toBeFalsy()); + + // THEN: Should match snapshot. + await host.snapshot('local'); + }); + +