diff --git a/.github/workflows/cron-checks.yml b/.github/workflows/cron-checks.yml index 4b17d99509c..ce96ab787b9 100644 --- a/.github/workflows/cron-checks.yml +++ b/.github/workflows/cron-checks.yml @@ -21,33 +21,28 @@ jobs: strategy: matrix: include: - - ios: 18.5 - xcode: 16.4 - os: macos-15 + - ios: "26.0" + device: "iPhone 17 Pro" + setup_runtime: false + - ios: "18.5" device: "iPhone 16 Pro" setup_runtime: false - - ios: 17.5 - xcode: 15.4 - os: macos-14 + - ios: "17.5" device: "iPhone 15 Pro" - setup_runtime: false - - ios: 16.4 - xcode: 15.3 # fails on 15.4 - os: macos-14 + setup_runtime: true + - ios: "16.4" device: "iPhone 14 Pro" setup_runtime: true - - ios: 15.5 - xcode: 15.3 # fails on 15.4 - os: macos-14 + - ios: "15.5" device: "iPhone 13 Pro" setup_runtime: true fail-fast: false - runs-on: ${{ matrix.os }} + runs-on: macos-15 env: GITHUB_EVENT: ${{ toJson(github.event) }} ALLURE_TOKEN: ${{ secrets.ALLURE_TOKEN }} STREAM_DEMO_APP_SECRET: ${{ secrets.STREAM_DEMO_APP_SECRET }} - XCODE_VERSION: ${{ matrix.xcode }} + XCODE_VERSION: "26.0.1" IOS_SIMULATOR_DEVICE: "${{ matrix.device }} (${{ matrix.ios }})" # For the Allure report steps: - uses: actions/checkout@v4.1.1 @@ -94,30 +89,25 @@ jobs: strategy: matrix: include: - - ios: 18.5 - xcode: 16.4 - os: macos-15 + - ios: "26.0" + device: "iPhone 17 Pro" + setup_runtime: false + - ios: "18.5" device: "iPhone 16 Pro" setup_runtime: false - - ios: 17.5 - xcode: 15.4 - os: macos-14 + - ios: "17.5" device: "iPhone 15 Pro" - setup_runtime: false - - ios: 16.4 - xcode: 15.3 # fails on 15.4 - os: macos-14 + setup_runtime: true + - ios: "16.4" device: "iPhone 14 Pro" setup_runtime: true - - ios: 15.5 - xcode: 15.3 # fails on 15.4 - os: macos-14 + - ios: "15.5" device: "iPhone 13 Pro" setup_runtime: true fail-fast: false - runs-on: ${{ matrix.os }} + runs-on: macos-15 env: - XCODE_VERSION: ${{ matrix.xcode }} + XCODE_VERSION: "26.0.1" steps: - uses: actions/checkout@v4.1.1 - uses: ./.github/actions/bootstrap @@ -147,24 +137,25 @@ jobs: fastlane/test_output/logs/*/Diagnostics/simctl_diagnostics/DiagnosticReports/* build-old-xcode: - name: Build LLC + UI (Xcode 15) + name: Build LLC + UI (Old Xcode) runs-on: macos-14 env: - XCODE_VERSION: "15.4" + XCODE_VERSION: "16.1" steps: - name: Connect Bot uses: webfactory/ssh-agent@v0.7.0 with: ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }} - uses: actions/checkout@v4.1.1 + - uses: ./.github/actions/xcode-cache - uses: ./.github/actions/ruby-cache - name: List Xcode versions run: mdfind "kMDItemCFBundleIdentifier = 'com.apple.dt.Xcode'" - name: Build LLC - run: bundle exec fastlane test device:"iPhone 8" build_for_testing:true + run: bundle exec fastlane test device:"iPhone 16" build_for_testing:true timeout-minutes: 25 - name: Build UI - run: bundle exec fastlane test_ui device:"iPhone 8" build_for_testing:true + run: bundle exec fastlane test_ui device:"iPhone 16" build_for_testing:true timeout-minutes: 25 - name: Build XCFrameworks run: bundle exec fastlane build_xcframeworks @@ -177,7 +168,7 @@ jobs: name: Automated Code Review runs-on: macos-14 env: - XCODE_VERSION: "15.4" + XCODE_VERSION: "16.1" steps: - uses: actions/checkout@v4.1.1 - uses: ./.github/actions/bootstrap diff --git a/.github/workflows/smoke-checks.yml b/.github/workflows/smoke-checks.yml index ca081cdadde..1b503170a83 100644 --- a/.github/workflows/smoke-checks.yml +++ b/.github/workflows/smoke-checks.yml @@ -20,7 +20,7 @@ concurrency: env: HOMEBREW_NO_INSTALL_CLEANUP: 1 # Disable cleanup for homebrew, we don't need it on CI - IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.5)" + IOS_SIMULATOR_DEVICE: "iPhone 17 Pro (26.0)" GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_PR_NUM: ${{ github.event.pull_request.number }} @@ -48,7 +48,7 @@ jobs: name: Automated Code Review runs-on: macos-14 env: - XCODE_VERSION: "15.4" + XCODE_VERSION: "16.1" if: ${{ github.event.inputs.record_snapshots != 'true' }} steps: - uses: actions/checkout@v4.1.1 @@ -63,21 +63,22 @@ jobs: if: startsWith(github.event.pull_request.head.ref, 'release/') build-old-xcode: - name: Build LLC + UI (Xcode 15) + name: Build SDKs (Old Xcode) runs-on: macos-14 if: ${{ github.event.inputs.record_snapshots != 'true' }} env: - XCODE_VERSION: "15.4" + XCODE_VERSION: "16.1" steps: - uses: actions/checkout@v4.1.1 + - uses: ./.github/actions/xcode-cache - uses: ./.github/actions/ruby-cache - name: List Xcode versions run: mdfind "kMDItemCFBundleIdentifier = 'com.apple.dt.Xcode'" - name: Build LLC - run: bundle exec fastlane test device:"iPhone 13" build_for_testing:true + run: bundle exec fastlane test device:"iPhone 16" build_for_testing:true timeout-minutes: 25 - name: Build UI - run: bundle exec fastlane test_ui device:"iPhone 13" build_for_testing:true + run: bundle exec fastlane test_ui device:"iPhone 16" build_for_testing:true timeout-minutes: 25 test-llc-debug: @@ -179,6 +180,8 @@ jobs: - build-test-app-and-frameworks env: LAUNCH_ID: ${{ needs.allure_testops_launch.outputs.launch_id }} + IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.5)" # TODO: IOS-1181 + XCODE_VERSION: "16.4" # TODO: IOS-1181 strategy: matrix: batch: [0, 1] diff --git a/CHANGELOG.md b/CHANGELOG.md index f9ce16a7365..45cbe5840f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Add `ChatChannelController.setPushPreference(level:)` - Add `ChatChannelController.snoozePushNotifications(until:)` +## ⚠️ Important +- From now on, our XCFrameworks will be built with Swift 5.9. In order to use them, you need Xcode 15 or above. + # [4.89.0](https://github.com/GetStream/stream-chat-swift/releases/tag/4.89.0) _September 22, 2025_ diff --git a/Githubfile b/Githubfile index 9ff612bf585..144dffafb0c 100644 --- a/Githubfile +++ b/Githubfile @@ -4,7 +4,6 @@ export ALLURECTL_VERSION='2.16.0' export XCRESULTS_VERSION='1.19.1' export YEETD_VERSION='1.0' export GCLOUD_VERSION='464.0.0' -export MINT_VERSION='0.17.5' export SONAR_VERSION='6.2.1.4610' export IPSW_VERSION='3.1.592' export INTERFACE_ANALYZER_VERSION='1.0.7' diff --git a/Package.swift b/Package.swift index 17c6eec1c8a..d0b7b32eaaa 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version:5.7 +// swift-tools-version:5.10 import Foundation import PackageDescription @@ -25,7 +25,7 @@ let package = Package( .library( name: "StreamChatTestMockServer", targets: ["StreamChatTestMockServer"] - ), + ) ], targets: [ .target( @@ -52,7 +52,7 @@ let package = Package( path: "TestTools/StreamChatTestMockServer", exclude: ["Info.plist"], resources: [.process("Fixtures")] - ), + ) ] ) diff --git a/StreamChat-XCFramework.podspec b/StreamChat-XCFramework.podspec index 8450d891931..faf9bc79ec3 100644 --- a/StreamChat-XCFramework.podspec +++ b/StreamChat-XCFramework.podspec @@ -1,25 +1,25 @@ Pod::Spec.new do |spec| - spec.name = "StreamChat-XCFramework" - spec.version = "4.89.0" - spec.summary = "StreamChat iOS Client" - spec.description = "stream-chat-swift is the official Swift client for Stream Chat, a service for building chat applications." + spec.name = 'StreamChat-XCFramework' + spec.version = '4.89.0' + spec.summary = 'StreamChat iOS Client' + spec.description = 'stream-chat-swift is the official Swift client for Stream Chat, a service for building chat applications.' - spec.homepage = "https://getstream.io/chat/" - spec.license = { :type => "BSD-3", :file => "LICENSE" } - spec.author = { "getstream.io" => "support@getstream.io" } - spec.social_media_url = "https://getstream.io" + spec.homepage = 'https://getstream.io/chat/' + spec.license = { type: 'BSD-3', file: 'LICENSE' } + spec.author = { 'getstream.io' => 'support@getstream.io' } + spec.social_media_url = 'https://getstream.io' - spec.swift_version = '5.7' - spec.ios.deployment_target = '13.0' + spec.swift_version = '5.9' + spec.ios.deployment_target = '13.0' spec.requires_arc = true - spec.framework = "Foundation" - spec.ios.framework = "UIKit" + spec.framework = 'Foundation' + spec.ios.framework = 'UIKit' - spec.module_name = "StreamChat" - spec.source = { :http => "https://github.com/GetStream/stream-chat-swift/releases/download/#{spec.version}/#{spec.module_name}.zip" } + spec.module_name = 'StreamChat' + spec.source = { http: "https://github.com/GetStream/stream-chat-swift/releases/download/#{spec.version}/#{spec.module_name}.zip" } spec.vendored_frameworks = "#{spec.module_name}.xcframework" spec.preserve_paths = "#{spec.module_name}.xcframework/*" - spec.cocoapods_version = ">= 1.11.0" + spec.cocoapods_version = '>= 1.11.0' end diff --git a/StreamChat.podspec b/StreamChat.podspec index f2ee2ab268b..0d2773321d6 100644 --- a/StreamChat.podspec +++ b/StreamChat.podspec @@ -1,24 +1,24 @@ Pod::Spec.new do |spec| - spec.name = "StreamChat" - spec.version = "4.89.0" - spec.summary = "StreamChat iOS Chat Client" - spec.description = "stream-chat-swift is the official Swift client for Stream Chat, a service for building chat applications." + spec.name = 'StreamChat' + spec.version = '4.89.0' + spec.summary = 'StreamChat iOS Chat Client' + spec.description = 'stream-chat-swift is the official Swift client for Stream Chat, a service for building chat applications.' - spec.homepage = "https://getstream.io/chat/" - spec.license = { :type => "BSD-3", :file => "LICENSE" } - spec.author = { "getstream.io" => "support@getstream.io" } - spec.social_media_url = "https://getstream.io" + spec.homepage = 'https://getstream.io/chat/' + spec.license = { type: 'BSD-3', file: 'LICENSE' } + spec.author = { 'getstream.io' => 'support@getstream.io' } + spec.social_media_url = 'https://getstream.io' - spec.swift_version = '5.7' + spec.swift_version = '5.9' spec.ios.deployment_target = '13.0' spec.osx.deployment_target = '11.0' spec.requires_arc = true - spec.framework = "Foundation" - spec.ios.framework = "UIKit" + spec.framework = 'Foundation' + spec.ios.framework = 'UIKit' - spec.module_name = "StreamChat" - spec.source = { :git => "https://github.com/GetStream/stream-chat-swift.git", :tag => "#{spec.version}" } - spec.source_files = ["Sources/StreamChat/**/*.swift"] - spec.resource_bundles = { "StreamChat" => ["Sources/StreamChat/**/*.xcdatamodeld"] } + spec.module_name = 'StreamChat' + spec.source = { git: 'https://github.com/GetStream/stream-chat-swift.git', tag: "#{spec.version}" } + spec.source_files = ['Sources/StreamChat/**/*.swift'] + spec.resource_bundles = { 'StreamChat' => ['Sources/StreamChat/**/*.xcdatamodeld'] } end diff --git a/StreamChatUI-XCFramework.podspec b/StreamChatUI-XCFramework.podspec index 036d4f61adf..b494e30d021 100644 --- a/StreamChatUI-XCFramework.podspec +++ b/StreamChatUI-XCFramework.podspec @@ -1,26 +1,26 @@ Pod::Spec.new do |spec| - spec.name = "StreamChatUI-XCFramework" - spec.version = "4.89.0" - spec.summary = "StreamChat UI Components" - spec.description = "StreamChatUI SDK offers flexible UI components able to display data provided by StreamChat SDK." + spec.name = 'StreamChatUI-XCFramework' + spec.version = '4.89.0' + spec.summary = 'StreamChat UI Components' + spec.description = 'StreamChatUI SDK offers flexible UI components able to display data provided by StreamChat SDK.' - spec.homepage = "https://getstream.io/chat/" - spec.license = { :type => "BSD-3", :file => "LICENSE" } - spec.author = { "getstream.io" => "support@getstream.io" } - spec.social_media_url = "https://getstream.io" + spec.homepage = 'https://getstream.io/chat/' + spec.license = { type: 'BSD-3', file: 'LICENSE' } + spec.author = { 'getstream.io' => 'support@getstream.io' } + spec.social_media_url = 'https://getstream.io' - spec.swift_version = '5.7' - spec.platform = :ios, "13.0" + spec.swift_version = '5.9' + spec.platform = :ios, '13.0' spec.requires_arc = true - spec.framework = "Foundation", "UIKit" + spec.framework = 'Foundation', 'UIKit' - spec.module_name = "StreamChatUI" - spec.source = { :http => "https://github.com/GetStream/stream-chat-swift/releases/download//#{spec.version}/#{spec.module_name}.zip" } + spec.module_name = 'StreamChatUI' + spec.source = { http: "https://github.com/GetStream/stream-chat-swift/releases/download//#{spec.version}/#{spec.module_name}.zip" } spec.vendored_frameworks = "#{spec.module_name}.xcframework" spec.preserve_paths = "#{spec.module_name}.xcframework/*" - spec.dependency "StreamChat-XCFramework", "#{spec.version}" + spec.dependency 'StreamChat-XCFramework', "#{spec.version}" - spec.cocoapods_version = ">= 1.11.0" + spec.cocoapods_version = '>= 1.11.0' end diff --git a/StreamChatUI.podspec b/StreamChatUI.podspec index e9ff916df1b..5dbba32616a 100644 --- a/StreamChatUI.podspec +++ b/StreamChatUI.podspec @@ -1,24 +1,25 @@ Pod::Spec.new do |spec| - spec.name = "StreamChatUI" - spec.version = "4.89.0" - spec.summary = "StreamChat UI Components" - spec.description = "StreamChatUI SDK offers flexible UI components able to display data provided by StreamChat SDK." + spec.name = 'StreamChatUI' + spec.version = '4.89.0' + spec.summary = 'StreamChat UI Components' + spec.description = 'StreamChatUI SDK offers flexible UI components able to display data provided by StreamChat SDK.' - spec.homepage = "https://getstream.io/chat/" - spec.license = { :type => "BSD-3", :file => "LICENSE" } - spec.author = { "getstream.io" => "support@getstream.io" } - spec.social_media_url = "https://getstream.io" + spec.homepage = 'https://getstream.io/chat/' + spec.license = { type: 'BSD-3', file: 'LICENSE' } + spec.author = { 'getstream.io' => 'support@getstream.io' } + spec.social_media_url = 'https://getstream.io' - spec.swift_version = '5.7' - spec.platform = :ios, "13.0" + spec.swift_version = '5.9' + spec.platform = :ios, '13.0' spec.requires_arc = true - spec.framework = "Foundation", "UIKit" + spec.framework = 'Foundation', 'UIKit' - spec.module_name = "StreamChatUI" - spec.source = { :git => "https://github.com/GetStream/stream-chat-swift.git", :tag => "#{spec.version}" } - spec.source_files = ["Sources/StreamChatUI/**/*.swift", "Sources/StreamNuke/**/*.swift", "Sources/StreamSwiftyGif/**/*.swift"] - spec.resource_bundles = { "StreamChatUIResources" => ["Sources/StreamChatUI/Resources/**/*"] } + spec.module_name = 'StreamChatUI' + spec.source = { git: 'https://github.com/GetStream/stream-chat-swift.git', tag: "#{spec.version}" } + spec.source_files = ['Sources/StreamChatUI/**/*.swift', 'Sources/StreamNuke/**/*.swift', + 'Sources/StreamSwiftyGif/**/*.swift'] + spec.resource_bundles = { 'StreamChatUIResources' => ['Sources/StreamChatUI/Resources/**/*'] } - spec.dependency "StreamChat", "#{spec.version}" + spec.dependency 'StreamChat', "#{spec.version}" end diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_chatChannel_isPopulated.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_chatChannel_isPopulated.default-light.png index 6bb1bb651c1..fe131a96fce 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_chatChannel_isPopulated.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_chatChannel_isPopulated.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png index 749cc367c14..37ce9457fdd 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png index dd06757e9c3..1aee37250dc 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png index 8ad5f3226a9..5fae82c0d80 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png index 81d1ac20fe4..4e4d2c30a24 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_showsDraftInComposer.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_showsDraftInComposer.default-light.png index 3063f79a23c..4d9b2b7e88c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_showsDraftInComposer.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_showsDraftInComposer.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_whenDraftIsUpdatedFromEvent_updatesDraftInComposer.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_whenDraftIsUpdatedFromEvent_updatesDraftInComposer.default-light.png index 3eb7592add4..1a5d0cd005c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_whenDraftIsUpdatedFromEvent_updatesDraftInComposer.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_whenDraftIsUpdatedFromEvent_updatesDraftInComposer.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_whenDraftIsUpdatedFromEvent_whenThread_shouldNotUpdateChannelComposer.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_whenDraftIsUpdatedFromEvent_whenThread_shouldNotUpdateChannelComposer.default-light.png index 7bbf423886d..9d476fd91ad 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_whenDraftIsUpdatedFromEvent_whenThread_shouldNotUpdateChannelComposer.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_whenDraftIsUpdatedFromEvent_whenThread_shouldNotUpdateChannelComposer.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_withCommand_showsDraftInComposer.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_withCommand_showsDraftInComposer.default-light.png index 6d01a658d6b..f479d78ea5c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_withCommand_showsDraftInComposer.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_withCommand_showsDraftInComposer.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_withQuotedMessage_showsDraftInComposer.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_withQuotedMessage_showsDraftInComposer.default-light.png index 335f080c05b..bb51f0d734b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_withQuotedMessage_showsDraftInComposer.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_withQuotedMessage_showsDraftInComposer.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_withUnknownCommand_showsDraftInComposer.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_withUnknownCommand_showsDraftInComposer.default-light.png index f75224664cc..fc35284c9b0 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_withUnknownCommand_showsDraftInComposer.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_channelWithDraftMessage_withUnknownCommand_showsDraftInComposer.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_defaultAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_defaultAppearance.default-light.png index 5cf7894bf70..50f8aba4a38 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_defaultAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_defaultAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_deletedMessagesVisibilityWhenAlwaysVisible.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_deletedMessagesVisibilityWhenAlwaysVisible.default-light.png index 6a10a4703e2..9b50786aa7e 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_deletedMessagesVisibilityWhenAlwaysVisible.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_deletedMessagesVisibilityWhenAlwaysVisible.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_deletedMessagesVisibilityWhenOnlyVisibleToYou.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_deletedMessagesVisibilityWhenOnlyVisibleToYou.default-light.png index e1d2c9344da..5b44631b772 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_deletedMessagesVisibilityWhenOnlyVisibleToYou.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_deletedMessagesVisibilityWhenOnlyVisibleToYou.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_deletedMessagesWithAttachmentsAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_deletedMessagesWithAttachmentsAppearance.default-light.png index fdba52d3265..c4ad3db7865 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_deletedMessagesWithAttachmentsAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_deletedMessagesWithAttachmentsAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.default-light.png index a107279bbb9..57c3bc2bdee 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png index 9dc075044eb..550c8644976 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png index c984201f96c..a515a0deddd 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.small-dark.png index 68b1c29be75..632e2dc8a47 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_emptyAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_headerViewForMessage_whenUnreadSeparatorIsDisabled_whenMessageShouldShowDateSeparator_AndIsMarkedAsUnread.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_headerViewForMessage_whenUnreadSeparatorIsDisabled_whenMessageShouldShowDateSeparator_AndIsMarkedAsUnread.default-light.png index 14c89f40429..7899d4c1e5f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_headerViewForMessage_whenUnreadSeparatorIsDisabled_whenMessageShouldShowDateSeparator_AndIsMarkedAsUnread.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_headerViewForMessage_whenUnreadSeparatorIsDisabled_whenMessageShouldShowDateSeparator_AndIsMarkedAsUnread.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_headerViewForMessage_whenUnreadSeparatorIsEnabled_whenMessageShouldShowDateSeparator_AndIsMarkedAsUnread.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_headerViewForMessage_whenUnreadSeparatorIsEnabled_whenMessageShouldShowDateSeparator_AndIsMarkedAsUnread.default-light.png index 17e73f7d843..60fdf51cb4e 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_headerViewForMessage_whenUnreadSeparatorIsEnabled_whenMessageShouldShowDateSeparator_AndIsMarkedAsUnread.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_headerViewForMessage_whenUnreadSeparatorIsEnabled_whenMessageShouldShowDateSeparator_AndIsMarkedAsUnread.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_messageListFooterViewAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_messageListFooterViewAppearance.default-light.png index 524be812c61..389a7a9a899 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_messageListFooterViewAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_messageListFooterViewAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_messageListHeaderViewAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_messageListHeaderViewAppearance.default-light.png index 619c3aa5712..571fd721241 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_messageListHeaderViewAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_messageListHeaderViewAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.default-light.png index 8741a00873c..c214fc10231 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.extraExtraExtraLarge-light.png index 42aedfa3869..5266b435a0b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.rightToLeftLayout-default.png index 4bd8ae24a71..e6aa3408bef 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.small-dark.png index 76f614f265c..cb85d131432 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.default-light.png index b90c03e2d26..0912e66d4ff 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.extraExtraExtraLarge-light.png index 1ea8f305108..b677e2b6da2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.rightToLeftLayout-default.png index 84836d3b883..c83e4fa059b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.small-dark.png index 70c090352de..71df40f094a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_onlyEmojiMessageAppearance_whenQuotingMessage.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_staticDateSeparatorsAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_staticDateSeparatorsAppearance.default-light.png index d2d6be2adc7..bfc92bcd9d1 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_staticDateSeparatorsAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_staticDateSeparatorsAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageEditedAt_editedMessageIsNotGrouped.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageEditedAt_editedMessageIsNotGrouped.default-light.png index 0cba0888ca4..43e3807520c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageEditedAt_editedMessageIsNotGrouped.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageEditedAt_editedMessageIsNotGrouped.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageFromCurrentUserIsFollowedByEphemeralMessage_messagesAreNotGrouped.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageFromCurrentUserIsFollowedByEphemeralMessage_messagesAreNotGrouped.default-light.png index 262b1141254..64dcfffd7e0 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageFromCurrentUserIsFollowedByEphemeralMessage_messagesAreNotGrouped.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageFromCurrentUserIsFollowedByEphemeralMessage_messagesAreNotGrouped.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageFromCurrentUserIsFollowedByErrorMessage_messagesAreNotGrouped.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageFromCurrentUserIsFollowedByErrorMessage_messagesAreNotGrouped.default-light.png index 9eadbb4c9e1..ba2e447ed30 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageFromCurrentUserIsFollowedByErrorMessage_messagesAreNotGrouped.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageFromCurrentUserIsFollowedByErrorMessage_messagesAreNotGrouped.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageFromCurrentUserIsFollowedBySystemMessage_messagesAreNotGrouped.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageFromCurrentUserIsFollowedBySystemMessage_messagesAreNotGrouped.default-light.png index afeee908544..cb830853b16 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageFromCurrentUserIsFollowedBySystemMessage_messagesAreNotGrouped.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenMessageFromCurrentUserIsFollowedBySystemMessage_messagesAreNotGrouped.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenReactionIsAddedByCurrentUserWithSameType_shouldUpdateReactionColor.default-light-after-current-user-reaction.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenReactionIsAddedByCurrentUserWithSameType_shouldUpdateReactionColor.default-light-after-current-user-reaction.png index 40ed4c75cb6..ab1906b4b97 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenReactionIsAddedByCurrentUserWithSameType_shouldUpdateReactionColor.default-light-after-current-user-reaction.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenReactionIsAddedByCurrentUserWithSameType_shouldUpdateReactionColor.default-light-after-current-user-reaction.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenReactionIsAddedByCurrentUserWithSameType_shouldUpdateReactionColor.default-light-before-current-user-reaction.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenReactionIsAddedByCurrentUserWithSameType_shouldUpdateReactionColor.default-light-before-current-user-reaction.png index 1465fb0906c..54e14e26263 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenReactionIsAddedByCurrentUserWithSameType_shouldUpdateReactionColor.default-light-before-current-user-reaction.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenReactionIsAddedByCurrentUserWithSameType_shouldUpdateReactionColor.default-light-before-current-user-reaction.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenShouldMessagesStartAtTheTopIsTrue.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenShouldMessagesStartAtTheTopIsTrue.small-dark.png index 1a5214e62c0..1827e7e0e9e 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenShouldMessagesStartAtTheTopIsTrue.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenShouldMessagesStartAtTheTopIsTrue.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessageOutOfScreen_shouldShowJumpToUnreadPill_whenJumpToUnreadIsDisabled.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessageOutOfScreen_shouldShowJumpToUnreadPill_whenJumpToUnreadIsDisabled.default-light.png index f8ea83c1fa6..1a87678b0a8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessageOutOfScreen_shouldShowJumpToUnreadPill_whenJumpToUnreadIsDisabled.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessageOutOfScreen_shouldShowJumpToUnreadPill_whenJumpToUnreadIsDisabled.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessageOutOfScreen_shouldShowJumpToUnreadPill_whenJumpToUnreadIsEnabled.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessageOutOfScreen_shouldShowJumpToUnreadPill_whenJumpToUnreadIsEnabled.default-light.png index f8ea83c1fa6..1a87678b0a8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessageOutOfScreen_shouldShowJumpToUnreadPill_whenJumpToUnreadIsEnabled.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessageOutOfScreen_shouldShowJumpToUnreadPill_whenJumpToUnreadIsEnabled.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessage_whenFeatureIsDisabled_shouldShowABannerOnTopOfIt.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessage_whenFeatureIsDisabled_shouldShowABannerOnTopOfIt.default-light.png index d718385e418..28e71b43751 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessage_whenFeatureIsDisabled_shouldShowABannerOnTopOfIt.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessage_whenFeatureIsDisabled_shouldShowABannerOnTopOfIt.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessage_whenFeatureIsEnabled_shouldShowABannerOnTopOfIt.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessage_whenFeatureIsEnabled_shouldShowABannerOnTopOfIt.default-light.png index ee5404d1bb2..6a7f34ca04f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessage_whenFeatureIsEnabled_shouldShowABannerOnTopOfIt.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenThereIsAnUnreadMessage_whenFeatureIsEnabled_shouldShowABannerOnTopOfIt.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromAnotherUserIs1minOrLess_messagesAreGrouped.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromAnotherUserIs1minOrLess_messagesAreGrouped.default-light.png index 20cb5fdbf1a..2e9a3f7b5f6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromAnotherUserIs1minOrLess_messagesAreGrouped.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromAnotherUserIs1minOrLess_messagesAreGrouped.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromAnotherUserIsMoreThan1min_messagesAreNotGrouped.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromAnotherUserIsMoreThan1min_messagesAreNotGrouped.default-light.png index 220d4feba11..2f3d9194b1e 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromAnotherUserIsMoreThan1min_messagesAreNotGrouped.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromAnotherUserIsMoreThan1min_messagesAreNotGrouped.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromTheCurrentUserIs1minOrLess_messagesAreGrouped.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromTheCurrentUserIs1minOrLess_messagesAreGrouped.default-light.png index e3010440229..b567d2a68f4 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromTheCurrentUserIs1minOrLess_messagesAreGrouped.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromTheCurrentUserIs1minOrLess_messagesAreGrouped.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromTheCurrentUserIsMoreThan1min_messagesAreNotGrouped.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromTheCurrentUserIsMoreThan1min_messagesAreNotGrouped.default-light.png index 2b40eced727..a159db75ac9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromTheCurrentUserIsMoreThan1min_messagesAreNotGrouped.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannel/__Snapshots__/ChatChannelVC_Tests/test_whenTimeIntervalBetween2MessagesFromTheCurrentUserIsMoreThan1min_messagesAreNotGrouped.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.default-light.png index 773bdb86b31..13f52e3b0d8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png index f69b961b24e..403eb2522fa 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png index 1f774bb0b78..f47ab736810 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.small-dark.png index d13bc6dcd70..c139327aa01 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_defaultAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.default-light.png index 8dc9c26401d..1d26cd13bc2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png index dc27df86426..797b74e78ed 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png index 7ee9e3ed7af..bbadb4314f6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.small-dark.png index 2506bfbbc51..70bd7724816 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_emptyAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.default-light.png index be89b54219e..3223b5061ef 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.extraExtraExtraLarge-light.png index 5054b9441f7..a59e56900f6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.rightToLeftLayout-default.png index af88f6ccd70..e22a763089f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.small-dark.png index 439722c36d9..314175608e4 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatChannelSearchVC_Tests/test_loadingAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.default-light.png index a094c9f7d9b..36c39dc9225 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png index ffc8f725a5c..f9db9b87351 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png index 724f2953911..572b68741de 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.small-dark.png index 0c8cd0939ca..b07cb9028a6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_defaultAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.default-light.png index 8dc9c26401d..1d26cd13bc2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png index dc27df86426..797b74e78ed 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png index 7ee9e3ed7af..bbadb4314f6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.small-dark.png index 2506bfbbc51..70bd7724816 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_emptyAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.default-light.png index be89b54219e..3223b5061ef 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.extraExtraExtraLarge-light.png index 5054b9441f7..a59e56900f6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.rightToLeftLayout-default.png index af88f6ccd70..e22a763089f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.small-dark.png index 439722c36d9..314175608e4 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/Search/__Snapshots__/ChatMessageSearchVC_Tests/test_loadingAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.default-light.png index 2329f5f3d1f..dce6e7bbd73 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png index 2329f5f3d1f..dce6e7bbd73 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png index 2329f5f3d1f..dce6e7bbd73 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.small-dark.png index b2e34ce3f59..5f179fb886b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png index c4cee74c6c3..34ef3afdc9c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png index c4cee74c6c3..34ef3afdc9c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png index c4cee74c6c3..34ef3afdc9c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png index f6a7bace946..7622f6347a3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.default-light.png index a4617ad0bf9..35cabb04885 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png index a4617ad0bf9..35cabb04885 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.rightToLeftLayout-default.png index a4617ad0bf9..35cabb04885 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.small-dark.png index f12c092c426..37a60bc19ad 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListEmptyView_Tests/test_defaultAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png index 7609e9f0fa7..f76a7290807 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png index c0520cd4cdd..622d01940fc 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png index 2413ba070a0..a7c73b4a8ec 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png index 0b0eabcc854..e9967a9fd8b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.default-light.png index 0460b69b2a0..f7a05497b7f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.extraExtraExtraLarge-light.png index 6cd0706ff18..05627873f13 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.rightToLeftLayout-default.png index c43f42041d3..43803936a74 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.small-dark.png index 194698aeddd..247bb79e5b2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_appearance_previewMessageIsVoiceRecording.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.default-light.png index 6b9d3627f33..f54286a0d9d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.extraExtraExtraLarge-light.png index f32f7cbf144..5b90e904dfc 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.rightToLeftLayout-default.png index 220be467170..d24ed04e591 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.small-dark.png index c6841125e76..7f260c95529 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_chatChannelList_isPopulated.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png index 1fb21a4fc8b..a84bdf7d915 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png index 47b28a52a99..f186b472882 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png index db993455f48..6eec7d28213 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png index e808e504d12..0a867d64c03 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingComponents.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingComponents.default-dark.png index 084e0db26d9..aa299ed7145 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingComponents.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingComponents.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingComponents.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingComponents.default-light.png index 48f080de124..c1d6b7629e2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingComponents.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingComponents.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png index 416870edcc3..b775898b407 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png index 9183bdb0088..4c42eca9023 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.default-light.png index 442b1ff53f4..cc417479828 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.extraExtraExtraLarge-light.png index 532133fba9d..dff8d36f1db 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.rightToLeftLayout-default.png index b8047169ab8..b87a1efc85f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.small-dark.png index 6162bf875e3..eadeb409c6b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_appearance_withSearchBar.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.default-light.png index 73fe7a401be..d3682406c5a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png index b09a2c858e8..cc7c9cf3d92 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png index e0017ca01a5..f9529fac2db 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.small-dark.png index 08eeee559c5..119f62fee88 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_defaultAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.default-light.png index 95afbba8cc1..6a49210304e 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png index a66d4b121f5..4edd220ab12 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png index 5cbabaa348e..ede7de6c777 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.small-dark.png index 7465f4f2818..065d9779498 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelListVC_Tests/test_emptyAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png index d94f814e0da..725e9ec075d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png index 206e08bdb41..106c0c5f934 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png index dd7d07119f6..8ce1f335940 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png index 1d65420a7b3..bb398ecbc59 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatChannelList/__Snapshots__/ChatChannelUnreadCountView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatFileAttachmentListView+ItemView_Tests/test_appearance_pdf_whenDownloadedThenShareIcon.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatFileAttachmentListView+ItemView_Tests/test_appearance_pdf_whenDownloadedThenShareIcon.default-light.png index 0badc8d12d5..e27fa89cfa1 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatFileAttachmentListView+ItemView_Tests/test_appearance_pdf_whenDownloadedThenShareIcon.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatFileAttachmentListView+ItemView_Tests/test_appearance_pdf_whenDownloadedThenShareIcon.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.default-light.png index 1291adc135e..a999d699967 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.extraExtraExtraLarge-light.png index 2c9c7e2d0b1..4a54273a5f5 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.rightToLeftLayout-default.png index 8f58907d38c..b2b0a8075b3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.small-dark.png index 02cbd7fae9f..8674393e561 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.default-light.png index db4e8fe80d6..080d8522b89 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png index f439a8fca29..6054fe5b156 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png index 8cf157e83f9..cb325b6d8a7 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.small-dark.png index a4ccfa11f48..4d6eae5fbf3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png index 46b186afe4f..0697d34cf10 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png index d8a518e82b4..032d927deb7 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png index 640fda3b690..a4c0494f0db 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png index 3b82a893f32..85c12f6d32f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.default-light.png index ac8c4f880e2..9141e35416d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.extraExtraExtraLarge-light.png index 145c9042189..f1824dfb64d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.rightToLeftLayout-default.png index bacd640efec..d1399548dca 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.small-dark.png index 44bb7058e71..61b7602af5c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenLongTexts.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.default-light.png index 3a68e5d1e8c..13958dee9c1 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.extraExtraExtraLarge-light.png index 8faf3a65619..bf6abc14d51 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.rightToLeftLayout-default.png index 08f3a1ed29e..fe9a7a03391 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.small-dark.png index 067c5ac4f2b..982ee94000c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoAuthor.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.default-light.png index 3afe6879671..5fee8aa61a5 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.extraExtraExtraLarge-light.png index ac1750fd567..ab9de1fa501 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.rightToLeftLayout-default.png index f9e73b58fcb..11c020377a7 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.small-dark.png index e2c7e9af903..04836d4cada 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoImagePreview.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.default-light.png index 373a71d43e7..b8c7c1831fd 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.extraExtraExtraLarge-light.png index 64d8d74bfd3..804671d4d92 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.rightToLeftLayout-default.png index cf6519b06b6..256cf5da874 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.small-dark.png index 460a448ce1d..13d12997323 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitle.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.default-light.png index 2faacc6beb9..252349f02a9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.extraExtraExtraLarge-light.png index bcb4556c213..c2f0b777d95 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.rightToLeftLayout-default.png index 55f48bf931f..716fda66e19 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.small-dark.png index e48f8fdbc80..c1ca93969e9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageLinkPreviewView_Tests/test_appearance_whenNoTitleAndText.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png index e0365b8d1b3..56259aa96ee 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png index a8d2414ae1f..c416c517f3e 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png index 460c92bdc48..ccfcc15c678 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png index 01e74cd129d..757f3703ec8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.default-light.png index 1015188cdc6..8774bea1d4c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.extraExtraExtraLarge-light.png index 7b7f3a91a45..c61909fdcda 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.rightToLeftLayout-default.png index 184857f2191..c51c71cfaa3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.small-dark.png index f097dfbcd30..09bd2a13930 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_five_attachments.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.default-light.png index 4b601fe4daa..75762f8fe03 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.extraExtraExtraLarge-light.png index 8edca26607f..f7596fc0822 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.rightToLeftLayout-default.png index 993b050c3c0..dfe9643dc7d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.small-dark.png index fbc02041997..f4918001f18 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_one_attachment.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.default-light.png index 0e51f4db588..a135e18d61b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.extraExtraExtraLarge-light.png index a8c06f2c605..a2b85af9076 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.rightToLeftLayout-default.png index aa796da50d8..b8e5746ae76 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.small-dark.png index e592f9858cf..b333ddbb4e5 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Attachments/__Snapshots__/ChatMessageVoiceRecordingAttachmentListView_Tests/test_appearance_two_attachments.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-continuousBubble-quotedMessage-reactions-text-threadInfo-timestamp.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-continuousBubble-quotedMessage-reactions-text-threadInfo-timestamp.png index 48358168e8f..100fb37aeb9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-continuousBubble-quotedMessage-reactions-text-threadInfo-timestamp.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-continuousBubble-quotedMessage-reactions-text-threadInfo-timestamp.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-quotedMessage-reactions-text-timestamp.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-quotedMessage-reactions-text-timestamp.png index ea61e232c80..e6159e2a2a4 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-quotedMessage-reactions-text-timestamp.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-quotedMessage-reactions-text-timestamp.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-quotedMessage-text-timestamp.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-quotedMessage-text-timestamp.png index 344c861e089..5715a3a0252 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-quotedMessage-text-timestamp.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-quotedMessage-text-timestamp.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-reactions-text-timestamp.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-reactions-text-timestamp.png index bce8014e9c8..ec7ac93d9c0 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-reactions-text-timestamp.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-reactions-text-timestamp.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-text-timestamp.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-text-timestamp.png index cd2e0f7a916..12a432f9ea5 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-text-timestamp.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatar-bubble-text-timestamp.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-quotedMessage-reactions-text-threadInfo.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-quotedMessage-reactions-text-threadInfo.png index a0af9dfa6de..f4c92e299cc 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-quotedMessage-reactions-text-threadInfo.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-quotedMessage-reactions-text-threadInfo.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-quotedMessage-reactions-text.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-quotedMessage-reactions-text.png index 6fbc595e9e5..496c31ae676 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-quotedMessage-reactions-text.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-quotedMessage-reactions-text.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-quotedMessage-text.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-quotedMessage-text.png index 30adf0c8fb4..e55ff511e86 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-quotedMessage-text.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-quotedMessage-text.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-reactions-text.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-reactions-text.png index 8b113509421..f25d36b09da 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-reactions-text.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-reactions-text.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-text.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-text.png index 15a6944ea64..51f310c514d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-text.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-avatarSizePadding-bubble-continuousBubble-text.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-errorIndicator-flipped-quotedMessage-reactions-text-threadInfo-timestamp.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-errorIndicator-flipped-quotedMessage-reactions-text-threadInfo-timestamp.png index 8c77f3b9acc..2990b05e846 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-errorIndicator-flipped-quotedMessage-reactions-text-threadInfo-timestamp.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-errorIndicator-flipped-quotedMessage-reactions-text-threadInfo-timestamp.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-errorIndicator-flipped-quotedMessage-reactions-text-threadInfo.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-errorIndicator-flipped-quotedMessage-reactions-text-threadInfo.png index b9e0afb4eec..bcb01548b90 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-errorIndicator-flipped-quotedMessage-reactions-text-threadInfo.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-errorIndicator-flipped-quotedMessage-reactions-text-threadInfo.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-reactions-text-threadInfo-timestamp.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-reactions-text-threadInfo-timestamp.png index 55499413345..e34e5998314 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-reactions-text-threadInfo-timestamp.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-reactions-text-threadInfo-timestamp.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-reactions-text-threadInfo.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-reactions-text-threadInfo.png index c17066e27fd..9e64fab0689 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-reactions-text-threadInfo.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-reactions-text-threadInfo.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-reactions-text.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-reactions-text.png index cd5b6de75da..1051c2b100a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-reactions-text.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-reactions-text.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-text.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-text.png index 654445c432a..f81643a6522 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-text.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-quotedMessage-text.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-reactions-text.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-reactions-text.png index dccd131e98e..ab3ad649d58 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-reactions-text.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-reactions-text.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-text.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-text.png index 3f8667bcb46..dae4a74ddd0 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-text.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-continuousBubble-flipped-text.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-quotedMessage-reactions-text-timestamp.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-quotedMessage-reactions-text-timestamp.png index a8ea135fa45..3d3554ca9e3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-quotedMessage-reactions-text-timestamp.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-quotedMessage-reactions-text-timestamp.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-quotedMessage-text-timestamp.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-quotedMessage-text-timestamp.png index d7bcaaedf5b..d9ec32e79aa 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-quotedMessage-text-timestamp.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-quotedMessage-text-timestamp.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-reactions-text-timestamp.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-reactions-text-timestamp.png index 5071820d24b..905a1e42446 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-reactions-text-timestamp.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-reactions-text-timestamp.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-text-timestamp.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-text-timestamp.png index 551042ef28f..feb693cc49b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-text-timestamp.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance.default-light-bubble-flipped-text-timestamp.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png index 347d0207d9d..47b36f35a2b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png index 878a2e6d0f2..04709d61330 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png index 6925157f042..0816ebbb255 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png index de12ae3788e..6572a1105f1 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.default-light.png index 347d0207d9d..47b36f35a2b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.extraExtraExtraLarge-light.png index 878a2e6d0f2..04709d61330 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.rightToLeftLayout-default.png index 6925157f042..0816ebbb255 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.small-dark.png index de12ae3788e..6572a1105f1 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceCustomization_usingUIConfig.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.default-light.png index c4a08d9e5e6..71b85147951 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.extraExtraExtraLarge-light.png index 176c8722457..b1f162cc562 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.rightToLeftLayout-default.png index c4a08d9e5e6..71b85147951 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.small-dark.png index 99d8708d86d..9f1d85f01d3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForErrorMessage.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.default-light.png index c4a08d9e5e6..71b85147951 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.extraExtraExtraLarge-light.png index 176c8722457..b1f162cc562 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.rightToLeftLayout-default.png index c4a08d9e5e6..71b85147951 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.small-dark.png index 99d8708d86d..9f1d85f01d3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearanceForSystemMessage.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsPendingSend.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsPendingSend.default-dark.png index dd99d0e4dd5..39a9999cfab 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsPendingSend.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsPendingSend.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsPendingSend.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsPendingSend.default-light.png index 4c5641200f2..d6d1e06396f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsPendingSend.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsPendingSend.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inDirectMesssagesChannel.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inDirectMesssagesChannel.default-dark.png index 2926e922628..7abda53b5b2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inDirectMesssagesChannel.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inDirectMesssagesChannel.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inDirectMesssagesChannel.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inDirectMesssagesChannel.default-light.png index c4b3fc1c3ff..451f34cbaa8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inDirectMesssagesChannel.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inDirectMesssagesChannel.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inGroupChannel.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inGroupChannel.default-dark.png index 145284a408a..1d2b1e2e375 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inGroupChannel.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inGroupChannel.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inGroupChannel.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inGroupChannel.default-light.png index 58504e1d6f3..f427a557482 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inGroupChannel.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsRead_inGroupChannel.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsSent.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsSent.default-dark.png index 1fbf58a3c6f..d66ed251c66 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsSent.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsSent.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsSent.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsSent.default-light.png index 0caf074cb25..b43cf7adfc1 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsSent.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageFromTheCurrentUserIsSent.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLink.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLink.default-dark.png index 9db268473f3..7183e6a470e 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLink.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLink.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLink.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLink.default-light.png index d1faafe4292..e895a9c53f8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLink.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLink.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkAndMarkdown.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkAndMarkdown.default-light.png index e6c7ea30017..e0e48b3380d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkAndMarkdown.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkAndMarkdown.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkAndMention.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkAndMention.default-light.png index 7259936c941..026711c0609 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkAndMention.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkAndMention.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutAuthor.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutAuthor.default-dark.png index f365a989f7a..d66230994db 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutAuthor.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutAuthor.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutAuthor.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutAuthor.default-light.png index 3302b0e1023..3c087bde642 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutAuthor.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutAuthor.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImage.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImage.default-dark.png index 95d22234885..ddd8016a0d9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImage.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImage.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImage.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImage.default-light.png index 941ae5b3373..beca4b42c5d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImage.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImage.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImageAndAuthor.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImageAndAuthor.default-dark.png index fd68ecc95b8..d2557701cd2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImageAndAuthor.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImageAndAuthor.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImageAndAuthor.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImageAndAuthor.default-light.png index 70d19dd0270..4a3d3a9e318 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImageAndAuthor.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasLinkWithoutImageAndAuthor.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasOnlyOneImage_masksAllTopCorners.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasOnlyOneImage_masksAllTopCorners.default-light.png index c4e08c0ffe4..662f6517695 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasOnlyOneImage_masksAllTopCorners.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasOnlyOneImage_masksAllTopCorners.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenHasAttachment.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenHasAttachment.default-light.png index f68a05237ab..0683664b2bb 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenHasAttachment.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenHasAttachment.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenIsSentByCurrentUser.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenIsSentByCurrentUser.default-dark.png index ea14e39d09a..586e65e8fc5 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenIsSentByCurrentUser.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenIsSentByCurrentUser.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenIsSentByCurrentUser.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenIsSentByCurrentUser.default-light.png index 575e4d45167..7e2b8e084b8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenIsSentByCurrentUser.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenIsSentByCurrentUser.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotLastInGroup.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotLastInGroup.default-dark.png index 217a62fecb2..52159342f11 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotLastInGroup.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotLastInGroup.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotLastInGroup.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotLastInGroup.default-light.png index 1b7ed3cd8b7..5a08d642682 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotLastInGroup.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotLastInGroup.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotSentByCurrentUser.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotSentByCurrentUser.default-dark.png index 6720d823189..50d1ba1f2f2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotSentByCurrentUser.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotSentByCurrentUser.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotSentByCurrentUser.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotSentByCurrentUser.default-light.png index feee3e0e059..9a9927ee53c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotSentByCurrentUser.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageHasTranslation_whenNotSentByCurrentUser.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsBounced.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsBounced.default-light.png index c6158802e40..9aba6444341 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsBounced.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsBounced.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.default-light.png index 3189dad38ed..8968d720c92 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.extraExtraExtraLarge-light.png index 3b0202ea3a1..86858eb2699 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.rightToLeftLayout-default.png index 1ab0122ceed..cbde3beed59 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.small-dark.png index b1a69cac54e..cd50163bcdb 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited_andDeleted_shouldNotShowEditedLabel.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited_andDeleted_shouldNotShowEditedLabel.default-light.png index ce9d60784fb..26a7d1396a5 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited_andDeleted_shouldNotShowEditedLabel.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageIsEdited_andDeleted_shouldNotShowEditedLabel.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent.default-dark.png index 39fcf7d2916..d8ef876db15 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent.default-light.png index 9e2141e1041..fb70d2b5367 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenDuplicatedMentions.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenDuplicatedMentions.default-dark.png index 4803fdffe7b..a5cf7b8921d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenDuplicatedMentions.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenDuplicatedMentions.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenDuplicatedMentions.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenDuplicatedMentions.default-light.png index 8aa81982906..a5e5323608c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenDuplicatedMentions.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenDuplicatedMentions.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenNoName.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenNoName.default-dark.png index 150c185751f..d84c679b40a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenNoName.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenNoName.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenNoName.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenNoName.default-light.png index 748cb24bae4..54e3908987d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenNoName.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithAMentionedUserIsSent_whenNoName.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownFromTheCurrentUserIsSent.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownFromTheCurrentUserIsSent.default-dark.png index cf237e03393..2a296c788fa 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownFromTheCurrentUserIsSent.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownFromTheCurrentUserIsSent.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownFromTheCurrentUserIsSent.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownFromTheCurrentUserIsSent.default-light.png index 8fb44a4e5f4..32dba36a51f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownFromTheCurrentUserIsSent.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownFromTheCurrentUserIsSent.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownItalicStyleFromTheCurrentUserIsSent.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownItalicStyleFromTheCurrentUserIsSent.default-dark.png index ca068ed0120..72683663167 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownItalicStyleFromTheCurrentUserIsSent.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownItalicStyleFromTheCurrentUserIsSent.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownItalicStyleFromTheCurrentUserIsSent.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownItalicStyleFromTheCurrentUserIsSent.default-light.png index 47048407240..d615433de9c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownItalicStyleFromTheCurrentUserIsSent.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownItalicStyleFromTheCurrentUserIsSent.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownOrderedListFromTheCurrentUserIsSent.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownOrderedListFromTheCurrentUserIsSent.default-dark.png index 54b50e04f82..afc45367323 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownOrderedListFromTheCurrentUserIsSent.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownOrderedListFromTheCurrentUserIsSent.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownOrderedListFromTheCurrentUserIsSent.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownOrderedListFromTheCurrentUserIsSent.default-light.png index 46164dc1714..0b9b0be532d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownOrderedListFromTheCurrentUserIsSent.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithMarkdownOrderedListFromTheCurrentUserIsSent.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithoutMarkdownOrderedListFromTheCurrentUserIsSent.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithoutMarkdownOrderedListFromTheCurrentUserIsSent.default-dark.png index ae80aa2fb31..908629df8ae 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithoutMarkdownOrderedListFromTheCurrentUserIsSent.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithoutMarkdownOrderedListFromTheCurrentUserIsSent.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithoutMarkdownOrderedListFromTheCurrentUserIsSent.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithoutMarkdownOrderedListFromTheCurrentUserIsSent.default-light.png index 377d153d671..a0984b95250 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithoutMarkdownOrderedListFromTheCurrentUserIsSent.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenMessageWithoutMarkdownOrderedListFromTheCurrentUserIsSent.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenQuoteMessageHasTranslation.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenQuoteMessageHasTranslation.default-light.png index 4277806648f..c1f7db9b40b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenQuoteMessageHasTranslation.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageContentView_Tests/test_appearance_whenQuoteMessageHasTranslation.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageErrorIndicator_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageErrorIndicator_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png index edad8e0ff8e..19ed5546f79 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageErrorIndicator_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageErrorIndicator_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageErrorIndicator_Tests/test_appearanceCustomization_usingSubclassing.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageErrorIndicator_Tests/test_appearanceCustomization_usingSubclassing.default-light.png index ce43da9e303..48f8f599c10 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageErrorIndicator_Tests/test_appearanceCustomization_usingSubclassing.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageErrorIndicator_Tests/test_appearanceCustomization_usingSubclassing.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.default-light.png index acc5e216779..25497adf8e9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.extraExtraExtraLarge-light.png index 48fef443e5b..e93f68968cd 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.rightToLeftLayout-default.png index 329e8830600..22f4c908ec5 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.small-dark.png index a3b224777d9..540b020ca04 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.default-light.png index e098b9f6fbf..2d7fc50d98f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.extraExtraExtraLarge-light.png index 5f1fe67e6b9..0e32fea8d8a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.rightToLeftLayout-default.png index 38eafb8eeac..8b310ede59f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.small-dark.png index 763abde118c..34154b80e7b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_code_custom.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.default-light.png index 72d2e87e0f9..ebcb88c02c0 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.extraExtraExtraLarge-light.png index 33c340b417a..7d74ed48155 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.rightToLeftLayout-default.png index 7846f2da284..35e3a90492b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.small-dark.png index dc9e0780b36..cacaf9ba386 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.default-light.png index 72d2e87e0f9..ebcb88c02c0 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.extraExtraExtraLarge-light.png index 33c340b417a..7d74ed48155 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.rightToLeftLayout-default.png index 7846f2da284..35e3a90492b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.small-dark.png index dc9e0780b36..cacaf9ba386 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_appearance_scaled_font.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.default-light.png index 2d891bc6296..6c24af1c089 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.extraExtraExtraLarge-light.png index d6ed24646f4..42873f41243 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.rightToLeftLayout-default.png index 2ca4337917e..d04ff45fd97 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.small-dark.png index ea3368f5eeb..5a25d385545 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_headers_custom.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.default-light.png index aaf665fe377..f68f98ec73f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.extraExtraExtraLarge-light.png index 94fb5e5da6e..a08f0fc62b9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.rightToLeftLayout-default.png index c399ef06156..0b63307c87d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.small-dark.png index 3c41bde61e2..0262607c790 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_inlinePresentationIntents.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.default-light.png index 62932bf34c0..f1382b36820 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.extraExtraExtraLarge-light.png index 9703cd03d25..a69d77ef736 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.rightToLeftLayout-default.png index 5dc9e4ae32d..0469e7c2f46 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.small-dark.png index e19459bd743..fd2543242e3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_links.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.default-light.png index 778dba851ff..086e158daaa 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.extraExtraExtraLarge-light.png index 65bf98d0d53..6d05cb0b052 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.rightToLeftLayout-default.png index 5d5049704dc..6e727f0d42f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.small-dark.png index 4554d57628a..98667f9ab83 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_mixedLists_nested.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.default-light.png index 39a2ee19e76..3a80b0fb471 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.extraExtraExtraLarge-light.png index 74fcc44c9ed..af21f05c05b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.rightToLeftLayout-default.png index 5fa820a99c8..664a52ac5bb 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.small-dark.png index 5aab686db43..b62f51aa92d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedList_nested_wrappedTextItem.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.default-light.png index 858b0119db4..dae683b5323 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.extraExtraExtraLarge-light.png index e8ea1d050a2..8897b8ee26b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.rightToLeftLayout-default.png index 098a302c479..1d89882df25 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.small-dark.png index 8fbdfc05f34..ca0b53079f8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.default-light.png index 5c74f901c3e..6852024c270 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.extraExtraExtraLarge-light.png index 4d34f7b8b37..f24750b6651 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.rightToLeftLayout-default.png index 70b7801b18e..79e4563d093 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.small-dark.png index 4be0d86c001..c84f48b57de 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_orderedLists_nested.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.default-light.png index 39770b026f5..936d73edeff 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.extraExtraExtraLarge-light.png index 726725ad4c7..cb57b3897a6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.rightToLeftLayout-default.png index 5c533a88145..840f2a06a20 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.small-dark.png index e7dc3781a79..4028be9cbad 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.default-light.png index 83daff8d895..e14833e21c2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.extraExtraExtraLarge-light.png index 1a50b7c10ea..2b3ca32982f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.rightToLeftLayout-default.png index d6f2c82bce6..5a06b5b7163 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.small-dark.png index 895b0115807..dfa0e4c03a9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_multipleLines.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.default-light.png index 6616d144430..11b360d98f1 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.extraExtraExtraLarge-light.png index 596bc4255e2..11b7579f697 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.rightToLeftLayout-default.png index 2a6cdecc56e..b115e7047e1 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.small-dark.png index 831e29326ed..52b956f0702 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_quote_separate.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.default-light.png index c7fc7743ed2..775479f1bf9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.extraExtraExtraLarge-light.png index f8156701a46..79a8c677ff6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.rightToLeftLayout-default.png index fa04c011e37..903a7953ed0 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.small-dark.png index 5d7c58e0921..21d83d5c829 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.default-light.png index e7af76effa1..7c52fc5df37 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.extraExtraExtraLarge-light.png index 655beaa68d5..cb52e98d611 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.rightToLeftLayout-default.png index 9c36db4d6e1..fffd5961554 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.small-dark.png index d221f38e932..9de6574ec1d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_text_custom.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.default-light.png index f96d94e1c9b..a431f301094 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.extraExtraExtraLarge-light.png index 66d44a2377b..420d87d5b13 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.rightToLeftLayout-default.png index c2698469fcd..870e425856b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.small-dark.png index 803de476f6c..2dfdf03dda3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.default-light.png index b240078cdb5..0852f5e64a8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.extraExtraExtraLarge-light.png index 096a7b505b8..a5195391851 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.rightToLeftLayout-default.png index 3b824f2cb10..1fb95e09864 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.small-dark.png index 1fc5304c798..dff2a19a03d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_thematicBreak_custom.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.default-light.png index 6dcab8f623d..6f6151dda69 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.extraExtraExtraLarge-light.png index b354ccc5d6a..7065b55728f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.rightToLeftLayout-default.png index 09dd7432ac0..83614e831de 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.small-dark.png index 6644c512fde..aea222006a5 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.default-light.png index bd880cd33ae..f2c35247d5c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.extraExtraExtraLarge-light.png index 644c80f9759..297f2e546c0 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.rightToLeftLayout-default.png index 6282cf54f82..4e17f2ea668 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.small-dark.png index 4ded20d6081..33a928ef6ab 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/ChatMessage/__Snapshots__/ChatMessageMarkdown_Tests/test_unorderedLists_nested.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.default-light.png index 60cb3fa5344..6ef1715dc52 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.extraExtraExtraLarge-light.png index dbed00603dd..4bb7fc2c606 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.rightToLeftLayout-default.png index 4b0166f4a3b..021c0321daf 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.small-dark.png index 4b601de09a4..09c5430c8a0 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.default-light.png index 183fb8c059f..a919377a883 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.extraExtraExtraLarge-light.png index 4b1560238db..ae4e00043ae 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.rightToLeftLayout-default.png index a9c6ea6df8a..00bb7b3869f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.small-dark.png index 9e2ec639837..6fd88e74a89 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollAllOptionsListVC_Tests/test_appearance_whenIsClosed.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCommentListVC_Tests/test_appearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCommentListVC_Tests/test_appearance.rightToLeftLayout-default.png index a4e10b2b543..00a2bd3cdec 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCommentListVC_Tests/test_appearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCommentListVC_Tests/test_appearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCommentListVC_Tests/test_appearance_whenAlreadyCommented.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCommentListVC_Tests/test_appearance_whenAlreadyCommented.rightToLeftLayout-default.png index ddc72191d05..04d85669f1b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCommentListVC_Tests/test_appearance_whenAlreadyCommented.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCommentListVC_Tests/test_appearance_whenAlreadyCommented.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.default-light.png index c836cf3fa7c..baf0cc5c2f3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.extraExtraExtraLarge-light.png index 8a3893b2a53..34c461bfa78 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.rightToLeftLayout-default.png index 9e9bf009195..5788641b68d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.small-dark.png index f711b7f836f..5b9a447e286 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenCanCreatePoll.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenCanCreatePoll.default-dark.png index 75a4633a702..d55da0e6a4b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenCanCreatePoll.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenCanCreatePoll.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenCanCreatePoll.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenCanCreatePoll.default-light.png index 15aa32351f2..c746b32f7d4 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenCanCreatePoll.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenCanCreatePoll.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesEnabledByDefault.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesEnabledByDefault.default-dark.png index be979bf49ba..5606a9f1f3f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesEnabledByDefault.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesEnabledByDefault.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesEnabledByDefault.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesEnabledByDefault.default-light.png index 8823340ecf9..4aa3f2fc941 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesEnabledByDefault.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesEnabledByDefault.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesNotSupported.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesNotSupported.default-dark.png index f0782e34fe3..d1ef7f12445 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesNotSupported.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesNotSupported.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesNotSupported.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesNotSupported.default-light.png index 284ba8e571c..023154db951 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesNotSupported.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenFeaturesNotSupported.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenMaxVotesOnlyDisabled.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenMaxVotesOnlyDisabled.default-dark.png index a61efc1a155..00bc0a3e467 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenMaxVotesOnlyDisabled.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenMaxVotesOnlyDisabled.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenMaxVotesOnlyDisabled.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenMaxVotesOnlyDisabled.default-light.png index 338d6c3d519..378e6d39099 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenMaxVotesOnlyDisabled.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_whenMaxVotesOnlyDisabled.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.default-light.png index b92915b4fae..1069797f9bd 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.extraExtraExtraLarge-light.png index 5bf1a2f7141..91d77ee243c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.rightToLeftLayout-default.png index e1996a0dc6e..f7c3a54b268 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.small-dark.png index 813249a642e..34594ef3bf6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollCreationVC_Tests/test_appearance_withErrors.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollResultsVC_Tests/test_appearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollResultsVC_Tests/test_appearance.rightToLeftLayout-default.png index 99b0bfe837e..8b5fdf67e34 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollResultsVC_Tests/test_appearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollResultsVC_Tests/test_appearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollResultsVoteListVC_Tests/test_appearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollResultsVoteListVC_Tests/test_appearance.rightToLeftLayout-default.png index adf2924d49a..de9d1ae61ca 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollResultsVoteListVC_Tests/test_appearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Poll/__Snapshots__/PollResultsVoteListVC_Tests/test_appearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_customAppearance.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_customAppearance.default-dark.png index ef122294d93..a6c03cf7ccf 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_customAppearance.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_customAppearance.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_customAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_customAppearance.default-light.png index 55e5cf82bb3..b8c910386d9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_customAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_customAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.default-light.png index 77724d6decb..3c19f1e66cc 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png index bf8b42ff97d..4cd912e3b1d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png index 2aafd2bf6ba..592594791f8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.small-dark.png index 1a2aa75541a..62c33116055 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/ChatMessageReactionAuthorsVC/__Snapshots__/ChatMessageReactionAuthorsVC_Tests/test_defaultAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.default-light.png index 3e5088265b0..86e32b8937b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.extraExtraExtraLarge-light.png index 3e5088265b0..86e32b8937b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.rightToLeftLayout-default.png index 6dc2bb8ed9b..3367f6229fd 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.small-dark.png index 589d7b5ea47..0fee55786b4 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenBigIcons.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenCustomReactionAtSorting.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenCustomReactionAtSorting.default-light.png index 95ac94d02a7..abf1fbd3bd2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenCustomReactionAtSorting.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenCustomReactionAtSorting.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenCustomSorting.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenCustomSorting.default-light.png index 56c44e11f68..ff82a27d525 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenCustomSorting.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenCustomSorting.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.default-light.png index 837540b0901..643601d1b4f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.extraExtraExtraLarge-light.png index 837540b0901..643601d1b4f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.rightToLeftLayout-default.png index fe96373b873..5176c64982b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.small-dark.png index a45b2ebee2a..1599a0683d8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatMessageList/Reactions/__Snapshots__/ChatMessageReactionsView_Tests/test_defaultAppearance_whenSmallIcons.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_chatThreadVC_isPopulated.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_chatThreadVC_isPopulated.default-light.png index 81bacaa3250..11dbcb64f46 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_chatThreadVC_isPopulated.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_chatThreadVC_isPopulated.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png index daba927d8f5..794b7539423 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png index 71669cea7b9..42014899e53 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png index 6a62030d92a..ab2634ddc00 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png index ddd70a89836..375c734dd14 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC+SwiftUI_Tests/test_customNavigationViewValues_arePopulated.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_defaultAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_defaultAppearance.default-light.png index 16897515f43..207e2787402 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_defaultAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_defaultAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_emptyAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_emptyAppearance.default-light.png index 28127a9a1a1..b5d2d2004eb 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_emptyAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_emptyAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_threadWithDraftReply_showsDraftInComposer.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_threadWithDraftReply_showsDraftInComposer.default-light.png index 5cc4c786c48..6060cf46922 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_threadWithDraftReply_showsDraftInComposer.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_threadWithDraftReply_showsDraftInComposer.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_threadWithDraftReply_whenDraftIsUpdatedFromEvent_updatesDraftInComposer.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_threadWithDraftReply_whenDraftIsUpdatedFromEvent_updatesDraftInComposer.default-light.png index ed26ae11bc6..8122f253e98 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_threadWithDraftReply_whenDraftIsUpdatedFromEvent_updatesDraftInComposer.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_threadWithDraftReply_whenDraftIsUpdatedFromEvent_updatesDraftInComposer.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_whenShouldMessagesStartAtTheTopIsTrue.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_whenShouldMessagesStartAtTheTopIsTrue.small-dark.png index a16f63b993b..a5656f55541 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_whenShouldMessagesStartAtTheTopIsTrue.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_whenShouldMessagesStartAtTheTopIsTrue.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_whenThreadRendersParentMessageEnabledIsFalse.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_whenThreadRendersParentMessageEnabledIsFalse.default-light.png index b1d95009be6..b4d2bb2e073 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_whenThreadRendersParentMessageEnabledIsFalse.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThread/__Snapshots__/ChatThreadVC_Tests/test_whenThreadRendersParentMessageEnabledIsFalse.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.default-light.png index f6eef71a729..2916f4680e9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png index 2b258eaff52..26d5f12c710 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png index 2221b593886..ce306700c0d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.small-dark.png index 84a42647451..0e726ff887a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_defaultAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnErrorView_whenThreadsNotEmpty_shouldShowLoadingHeaderBannerView.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnErrorView_whenThreadsNotEmpty_shouldShowLoadingHeaderBannerView.default-dark.png index 3831ee49f0f..64047f270a6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnErrorView_whenThreadsNotEmpty_shouldShowLoadingHeaderBannerView.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnErrorView_whenThreadsNotEmpty_shouldShowLoadingHeaderBannerView.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnErrorView_whenThreadsNotEmpty_shouldShowLoadingHeaderBannerView.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnErrorView_whenThreadsNotEmpty_shouldShowLoadingHeaderBannerView.default-light.png index 201c9ca798f..4b4d181e906 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnErrorView_whenThreadsNotEmpty_shouldShowLoadingHeaderBannerView.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnErrorView_whenThreadsNotEmpty_shouldShowLoadingHeaderBannerView.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnHeaderBannerView_shouldShowLoadingHeaderBannerView.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnHeaderBannerView_shouldShowLoadingHeaderBannerView.default-dark.png index 3831ee49f0f..64047f270a6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnHeaderBannerView_shouldShowLoadingHeaderBannerView.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnHeaderBannerView_shouldShowLoadingHeaderBannerView.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnHeaderBannerView_shouldShowLoadingHeaderBannerView.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnHeaderBannerView_shouldShowLoadingHeaderBannerView.default-light.png index 201c9ca798f..4b4d181e906 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnHeaderBannerView_shouldShowLoadingHeaderBannerView.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_didTapOnHeaderBannerView_shouldShowLoadingHeaderBannerView.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.default-light.png index cebf12a7240..508715038ae 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.extraExtraExtraLarge-light.png index 4d6b94bd990..8c54fc2062a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.rightToLeftLayout-default.png index b0b7af96709..1e26918b3ec 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.small-dark.png index 2c30bb9e832..1d2749a2082 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/ChatThreadList/__Snapshots__/ChatThreadListVC_Tests/test_newThreadsAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png index 232eb338353..5e4fd851da6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png index 232eb338353..5e4fd851da6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png index 232eb338353..5e4fd851da6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png index 232eb338353..5e4fd851da6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/AvatarView/__Snapshots__/ChatChannelAvatarView+SwiftUI_Tests/test_injectedSwiftUIView.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/ConfirmButton/__Snapshots__/ConfirmButton_Tests/test_defaultAppearance.default-dark-new-enabled.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/ConfirmButton/__Snapshots__/ConfirmButton_Tests/test_defaultAppearance.default-dark-new-enabled.png index 9b41c9ceb17..09f30662bda 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/ConfirmButton/__Snapshots__/ConfirmButton_Tests/test_defaultAppearance.default-dark-new-enabled.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/ConfirmButton/__Snapshots__/ConfirmButton_Tests/test_defaultAppearance.default-dark-new-enabled.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/ConfirmButton/__Snapshots__/ConfirmButton_Tests/test_defaultAppearance.default-light-new-enabled.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/ConfirmButton/__Snapshots__/ConfirmButton_Tests/test_defaultAppearance.default-light-new-enabled.png index 0d8c343aff0..4c69c364338 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/ConfirmButton/__Snapshots__/ConfirmButton_Tests/test_defaultAppearance.default-light-new-enabled.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/ConfirmButton/__Snapshots__/ConfirmButton_Tests/test_defaultAppearance.default-light-new-enabled.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png index c8d783a1b86..ec943e7dc1b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView+SwiftUI_Tests/test_injectedSwiftUIView.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_appearanceCustomization_usingComponents.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_appearanceCustomization_usingComponents.default-light.png index 7de96f573fd..fd0bef3f687 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_appearanceCustomization_usingComponents.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_appearanceCustomization_usingComponents.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png index 8b7bf6645bc..a6af0a3579c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.default-light.png index df91954a2f9..f6d42cc9c24 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png index 23e51fdb6b1..dc9a02dde00 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.rightToLeftLayout-default.png index 53f9d201a12..d483fe00c55 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.small-dark.png index ae113a79b06..c4b8c122641 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_defaultAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.default-light.png index df91954a2f9..f6d42cc9c24 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.extraExtraExtraLarge-light.png index 23e51fdb6b1..dc9a02dde00 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.rightToLeftLayout-default.png index 53f9d201a12..d483fe00c55 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.small-dark.png index ae113a79b06..c4b8c122641 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentLeftAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.default-light.png index 53f9d201a12..d483fe00c55 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.extraExtraExtraLarge-light.png index 663a0651696..5a43e483d2d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.rightToLeftLayout-default.png index df91954a2f9..f6d42cc9c24 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.small-dark.png index c7e2375ef13..3d1bcac1c6e 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withAvatarAlignmentRightAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.default-light.png index 9a64115e2f4..c1b168a70d3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.extraExtraExtraLarge-light.png index b4c520c50e1..1033aec2cb3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.rightToLeftLayout-default.png index bcda1ea566d..04d364eabde 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.small-dark.png index a68bd03d6a9..6d03dbafc31 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withDeletedMessage.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.default-light-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.default-light-emptyText.png index 987dafcbe60..249d755d666 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.default-light-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.default-light-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.default-light.png index 66d88bcc805..d429c219b88 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.extraExtraExtraLarge-light-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.extraExtraExtraLarge-light-emptyText.png index 7847b9f6341..08265b02f50 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.extraExtraExtraLarge-light-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.extraExtraExtraLarge-light-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.extraExtraExtraLarge-light.png index d154ae2c94d..5384d78a38a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.rightToLeftLayout-default-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.rightToLeftLayout-default-emptyText.png index d236ead5517..c9cedacc4a7 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.rightToLeftLayout-default-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.rightToLeftLayout-default-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.rightToLeftLayout-default.png index 67cf1d4e93b..6e27427d4d9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.small-dark-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.small-dark-emptyText.png index 4df1e71be83..cdde011679f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.small-dark-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.small-dark-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.small-dark.png index 30b15fd521b..76bb2de4a7d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.default-light-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.default-light-emptyText.png index 1a41a6c0385..f615022479f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.default-light-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.default-light-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.default-light.png index 4675f8e2dbf..d9938547efe 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.extraExtraExtraLarge-light-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.extraExtraExtraLarge-light-emptyText.png index f3c6b3270e5..8dbff28b41f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.extraExtraExtraLarge-light-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.extraExtraExtraLarge-light-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.extraExtraExtraLarge-light.png index cd43d8c66b3..f77292cc992 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.rightToLeftLayout-default-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.rightToLeftLayout-default-emptyText.png index 9546973846a..0df9ad7831b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.rightToLeftLayout-default-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.rightToLeftLayout-default-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.rightToLeftLayout-default.png index bcb8a628532..4ac8d6444b6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.small-dark-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.small-dark-emptyText.png index eec1470572c..a1fca38973c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.small-dark-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.small-dark-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.small-dark.png index e09f2e252dd..8d21bb1b5a4 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withFileAttachmentAppearance_currentUser.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.default-light-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.default-light-emptyText.png index d0f10227f29..43c3a85df01 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.default-light-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.default-light-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.default-light.png index 2f63426a535..cdf186dd619 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.extraExtraExtraLarge-light-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.extraExtraExtraLarge-light-emptyText.png index db7a225bfe3..aa0a7af01b5 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.extraExtraExtraLarge-light-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.extraExtraExtraLarge-light-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.extraExtraExtraLarge-light.png index bb380c5529b..9360f015535 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.rightToLeftLayout-default-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.rightToLeftLayout-default-emptyText.png index d71c6fd0331..db0eb0d2228 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.rightToLeftLayout-default-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.rightToLeftLayout-default-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.rightToLeftLayout-default.png index d2a2b0a0f5a..d7a007e8c44 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.small-dark-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.small-dark-emptyText.png index 5e12b91fc03..48c373e86e8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.small-dark-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.small-dark-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.small-dark.png index b4c4e93431e..298e29af7af 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withGiphyAttachmentAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.default-light-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.default-light-emptyText.png index ec870d593e3..9fbfe4124f6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.default-light-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.default-light-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.default-light.png index 2f63426a535..cdf186dd619 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.extraExtraExtraLarge-light-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.extraExtraExtraLarge-light-emptyText.png index 6835b0833bd..e25fb99f384 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.extraExtraExtraLarge-light-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.extraExtraExtraLarge-light-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.extraExtraExtraLarge-light.png index bb380c5529b..9360f015535 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.rightToLeftLayout-default-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.rightToLeftLayout-default-emptyText.png index c9622bc42f8..89c3a034358 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.rightToLeftLayout-default-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.rightToLeftLayout-default-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.rightToLeftLayout-default.png index d2a2b0a0f5a..d7a007e8c44 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.small-dark-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.small-dark-emptyText.png index 5ab2dede4cc..c83cdb94345 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.small-dark-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.small-dark-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.small-dark.png index b4c4e93431e..298e29af7af 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.default-light-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.default-light-emptyText.png index ff87786f6d5..e0b62d4e4b6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.default-light-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.default-light-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.default-light.png index 362076fe7da..a3941fd9a7c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.extraExtraExtraLarge-light-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.extraExtraExtraLarge-light-emptyText.png index 78a8dc8838b..24ece771ffe 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.extraExtraExtraLarge-light-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.extraExtraExtraLarge-light-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.extraExtraExtraLarge-light.png index 4e9c19c1ff1..1fab61188ef 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.rightToLeftLayout-default-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.rightToLeftLayout-default-emptyText.png index f8d960ee58c..2f96eb02b0d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.rightToLeftLayout-default-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.rightToLeftLayout-default-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.rightToLeftLayout-default.png index 3dd843745cc..f9a03a9e28b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.small-dark-emptyText.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.small-dark-emptyText.png index d019f86e786..aa8c291e117 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.small-dark-emptyText.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.small-dark-emptyText.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.small-dark.png index 2a03bad1943..669a1f3a652 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withImageAttachmentAppearance_currentUser.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.default-light.png index d324512f05a..cbfc9ad9901 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.extraExtraExtraLarge-light.png index d76b36d8cf9..64a09acc244 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.rightToLeftLayout-default.png index 2f51497f963..b365f21542d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.small-dark.png index 5b4eaf809d1..c437df61c45 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.default-light.png index 5a1e0cd97f0..2f266330366 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.extraExtraExtraLarge-light.png index fa1e390e317..84357b9bc66 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.rightToLeftLayout-default.png index 1606c4fa6b9..f56ff79efa6 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.small-dark.png index 5d3a2060902..ac23015ad90 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLinkAttachmentAppearance_currentUser.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.default-light.png index c247ae5f4c7..3482f331462 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.extraExtraExtraLarge-light.png index f37b7b29617..e75a983f07d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.rightToLeftLayout-default.png index 53ae70c6514..c0bc97f1aa0 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.small-dark.png index c3f1927086c..09cad540b4d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withLongTextAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withPoll.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withPoll.default-light.png index 44111279948..82f1998b945 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withPoll.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withPoll.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withTranslatedText.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withTranslatedText.default-light.png index 688ccc47a9f..c6cc05c0484 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withTranslatedText.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withTranslatedText.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withTranslatedText_whenHasAttachments.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withTranslatedText_whenHasAttachments.default-light.png index 33ea1542137..23700960bae 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withTranslatedText_whenHasAttachments.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withTranslatedText_whenHasAttachments.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.default-light.png index 3dedc0d47b8..5d3e6923595 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.extraExtraExtraLarge-light.png index 8135e33cbee..73d4a77c92c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.rightToLeftLayout-default.png index db52279c377..27a58919f3a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.small-dark.png index 2c2e0e2d929..6bd36c5f697 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment_whenEmptyText.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment_whenEmptyText.default-light.png index 6deafdb8e9d..3781b8bde50 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment_whenEmptyText.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_withUnsupportedAttachment_whenEmptyText.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_wrappedInSwiftUI.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_wrappedInSwiftUI.default-light.png index 2811b1f5e9f..d2333c318c0 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_wrappedInSwiftUI.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/QuotedChatMessageView/__Snapshots__/QuotedChatMessageView_Tests/test_wrappedInSwiftUI.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.default-light.png index 4fd742ce188..a603b46026d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.extraExtraExtraLarge-light.png index 4fd742ce188..a603b46026d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.rightToLeftLayout-default.png index 4fd742ce188..a603b46026d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.small-dark.png index 4fd742ce188..a603b46026d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/RecordButton/__Snapshots__/RecordButton_Tests/test_appearance_wasConfiguredCorrectly.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/SendButton/__Snapshots__/SendButton_Tests/test_defaultAppearance.default-dark-new-enabled.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/SendButton/__Snapshots__/SendButton_Tests/test_defaultAppearance.default-dark-new-enabled.png index 54aeb829910..a490803f185 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/SendButton/__Snapshots__/SendButton_Tests/test_defaultAppearance.default-dark-new-enabled.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/SendButton/__Snapshots__/SendButton_Tests/test_defaultAppearance.default-dark-new-enabled.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/SendButton/__Snapshots__/SendButton_Tests/test_defaultAppearance.default-light-new-enabled.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/SendButton/__Snapshots__/SendButton_Tests/test_defaultAppearance.default-light-new-enabled.png index dfa93047efe..1bc8262a58e 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/SendButton/__Snapshots__/SendButton_Tests/test_defaultAppearance.default-light-new-enabled.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/SendButton/__Snapshots__/SendButton_Tests/test_defaultAppearance.default-light-new-enabled.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.default-light-user-name-not-set.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.default-light-user-name-not-set.png index 8025f2d8729..b236b25d7bc 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.default-light-user-name-not-set.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.default-light-user-name-not-set.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.default-light-with-online-indicator.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.default-light-with-online-indicator.png index 4934d9d5f32..d24c2f393c1 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.default-light-with-online-indicator.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.default-light-with-online-indicator.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png index 90b199cd8ad..06e8e51d913 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light-user-name-not-set.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light-user-name-not-set.png index 352555a1dbc..eabe86ca8e5 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light-user-name-not-set.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light-user-name-not-set.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light-with-online-indicator.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light-with-online-indicator.png index 032c60c43ae..2b214997fdf 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light-with-online-indicator.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light-with-online-indicator.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png index 79621150447..179941d6db8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default-user-name-not-set.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default-user-name-not-set.png index 86b5c5b9ef6..cd4909440b5 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default-user-name-not-set.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default-user-name-not-set.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default-with-online-indicator.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default-with-online-indicator.png index 4ebc7c56d90..badf35619fc 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default-with-online-indicator.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default-with-online-indicator.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png index 40b2dc98dea..dff5e52be2c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.small-dark-user-name-not-set.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.small-dark-user-name-not-set.png index 14738caa8a9..af81b9d9a86 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.small-dark-user-name-not-set.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.small-dark-user-name-not-set.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.small-dark-with-online-indicator.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.small-dark-with-online-indicator.png index 0cc9b916023..896dc39fbd5 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.small-dark-with-online-indicator.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.small-dark-with-online-indicator.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png index 37cf00c632c..f097ea5d757 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/ChatMentionSuggestionView/__Snapshots__/ChatMentionSuggestionView_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_appearanceCustomization_usingSubclassing.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_appearanceCustomization_usingSubclassing.default-light.png index 70a9823d723..7c7a23ff1bc 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_appearanceCustomization_usingSubclassing.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_appearanceCustomization_usingSubclassing.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.default-light.png index b5951098097..3bd4a7c9a1a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.extraExtraExtraLarge-light.png index c8d80b04383..5a204940229 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.rightToLeftLayout-default.png index ef10d91ce1b..b877d3e2e7a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.small-dark.png index 422b20da748..e31742493b7 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_defaultAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_emptyAppearance.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_emptyAppearance.default-dark.png index ff18d8ed901..dc8b82501fa 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_emptyAppearance.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_emptyAppearance.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_emptyAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_emptyAppearance.default-light.png index 863d6b1d670..7d3c5c67ca1 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_emptyAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/CommonViews/Suggestions/__Snapshots__/ChatSuggestionsVC_Tests/test_commands_emptyAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.default-light.png index e3b6888c604..6b25a800d54 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.extraExtraExtraLarge-light.png index 9543d41635c..092dfb6decf 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.rightToLeftLayout-default.png index 974a0f7b373..8261a63f2ca 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.small-dark.png index 9ba791e7abd..24f21e0b4b2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedOneAfterThree.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.default-light.png index e3b6888c604..6b25a800d54 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.extraExtraExtraLarge-light.png index 9543d41635c..092dfb6decf 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.rightToLeftLayout-default.png index 974a0f7b373..8261a63f2ca 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.small-dark.png index 9ba791e7abd..24f21e0b4b2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedSameTime.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.default-light.png index e3b6888c604..6b25a800d54 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.extraExtraExtraLarge-light.png index 9543d41635c..092dfb6decf 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.rightToLeftLayout-default.png index 974a0f7b373..8261a63f2ca 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.small-dark.png index 9ba791e7abd..24f21e0b4b2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedThreeAfterOne.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.default-light.png index e3b6888c604..6b25a800d54 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.extraExtraExtraLarge-light.png index 9543d41635c..092dfb6decf 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.rightToLeftLayout-default.png index 974a0f7b373..8261a63f2ca 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.small-dark.png index 9ba791e7abd..24f21e0b4b2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withFourAttachments_addedTwoAfterTwo.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withLongFileNames.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withLongFileNames.default-light.png index f8c50362d2d..4c07f5d7bd2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withLongFileNames.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withLongFileNames.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.default-light.png index 0827d5ebc12..6f6c1c5d4c4 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.extraExtraExtraLarge-light.png index 327e0ea3fe6..73f3152d47e 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.rightToLeftLayout-default.png index cdb55025b1b..63cfbcd487b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.small-dark.png index 75c482a7778..75aee952125 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_attachmentsPreview_withMultipleAttachmentTypes.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SkipSlowModeIsOnWithCountdownShown.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SkipSlowModeIsOnWithCountdownShown.default-light.png index edb86aeaf73..8b1a4a7fe8b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SkipSlowModeIsOnWithCountdownShown.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SkipSlowModeIsOnWithCountdownShown.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.default-light.png index 93e042c077f..02004ab605f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.extraExtraExtraLarge-light.png index 10e9b06ab20..f1209d38102 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.rightToLeftLayout-default.png index 604b312d6cd..09e6be4955e 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.small-dark.png index 016365a2c68..26cdddaa8d5 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_channelWithSlowModeActive_messageIsSent_SlowModeIsOnWithCountdownShown.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.default-light.png index 73790ef9758..8f0d5ae1958 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.extraExtraExtraLarge-light.png index 23c6c6783c6..eadc2f1b33f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.rightToLeftLayout-default.png index 492878ed94c..4cda9b53d44 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.small-dark.png index fd8800eb7fb..ea125f3a4eb 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_commandWithEmptyArgs_hasSendButtonEnabled.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_dismissLinkPreview.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_dismissLinkPreview.default-light.png index 28432384291..96f65cd36a1 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_dismissLinkPreview.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_dismissLinkPreview.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_linkPreview_whenComposerLinkPreviewDisabled_thenNoHighlighting.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_linkPreview_whenComposerLinkPreviewDisabled_thenNoHighlighting.default-light.png index 2a172545b99..81023396307 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_linkPreview_whenComposerLinkPreviewDisabled_thenNoHighlighting.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_linkPreview_whenComposerLinkPreviewDisabled_thenNoHighlighting.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_linkPreview_whenComposerLinkPreviewEnabled_thenHighlightsLinks.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_linkPreview_whenComposerLinkPreviewEnabled_thenHighlightsLinks.default-light.png index 28432384291..96f65cd36a1 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_linkPreview_whenComposerLinkPreviewEnabled_thenHighlightsLinks.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_linkPreview_whenComposerLinkPreviewEnabled_thenHighlightsLinks.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.default-light.png index a53ba62a829..e79c2e2fef3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.extraExtraExtraLarge-light.png index 05fd35ea2b8..50f1a0f75ac 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.rightToLeftLayout-default.png index cc893bbbe25..cce921ce555 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.small-dark.png index 19e4b51c6e4..3a459880035 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_quotedTranslatedMessage.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showCommandSuggestionsView.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showCommandSuggestionsView.default-light.png index ebaae59f142..e4d56ade25f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showCommandSuggestionsView.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showCommandSuggestionsView.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview.default-light.png index 9db6b1686fb..bc6248c4308 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview.rightToLeftLayout-default.png index 95ca856946c..4da48bf6ad8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview.small-dark.png index 50f1ddfa070..fabd171235c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoDescription.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoDescription.default-light.png index a8e75815da6..f707a0a0ea4 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoDescription.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoDescription.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoImage.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoImage.default-light.png index b65527c9e9c..e0ed3055fef 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoImage.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoImage.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoMetadata.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoMetadata.default-light.png index 3d16e881095..e3aeec08ad3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoMetadata.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoMetadata.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoTitle.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoTitle.default-light.png index 10cda953ce9..674de852c82 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoTitle.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showLinkPreview_whenNoTitle.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showMentionSuggestionsView.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showMentionSuggestionsView.default-light.png index 0d4891f4e10..d1ed1294365 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showMentionSuggestionsView.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Composer/__Snapshots__/ComposerVC_Tests/test_showMentionSuggestionsView.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png index 79d1d6241ae..04fd908d06b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png index 75ce602c640..d6601f40ec9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png index 14bc094eb89..e0465e8bb0d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png index cdb3fc316f8..85d19638d87 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.default-light.png index 1b59bf8b0fe..5a063cee2ca 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.extraExtraExtraLarge-light.png index 59f982c6a94..bf15dcbeeaa 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.rightToLeftLayout-default.png index 97f0830dc93..44cdbdfbe81 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.small-dark.png index 940d90a4088..813647c16d4 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_appearanceCustomization_usingUIConfig.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.default-light.png index 79d1d6241ae..04fd908d06b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png index 75ce602c640..d6601f40ec9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png index 14bc094eb89..e0465e8bb0d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.small-dark.png index 21d0921ea3f..29b975ebf15 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_defaultAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_snapshotWithMessageTimestampOlderDate.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_snapshotWithMessageTimestampOlderDate.default-light.png index a1cb23420ef..4dff600e427 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_snapshotWithMessageTimestampOlderDate.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_snapshotWithMessageTimestampOlderDate.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_snapshotWithMessageTimestampToday.default-light.png b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_snapshotWithMessageTimestampToday.default-light.png index f9d3b9f57ba..f4ac1843ccd 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_snapshotWithMessageTimestampToday.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/Gallery/__Snapshots__/GalleryVC_Tests/test_snapshotWithMessageTimestampToday.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.default-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.default-light.png index bdab0ccf108..9bc92797b94 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.extraExtraExtraLarge-light.png index fe3a0845e7e..b69493e1449 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.rightToLeftLayout-default.png index 40d9918a33f..063d1392218 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.small-dark.png index eac3df05373..cf062783207 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionControl_Tests/test_defaultAppearance_whenPrimary.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.default-light.png index 7fe6f6155e1..e3eedbdd891 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png index 71a7d198a5e..734bcfef326 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png index c729e77336e..8311f0663af 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.small-dark.png index e69646c15fd..23abaceff28 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png index 6b79dfd5aed..b0af91579c4 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png index e3480b38fc2..707443f1239 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png index 0b4e970df48..67cbcce7622 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png index 43bde1eb035..4cca54e4102 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_appearanceCustomization_usingSubclassing.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.default-light.png index 3db2206d3f3..0cefe7bbb7e 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png index 04d695aa756..731536e2a96 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png index 33c988f28b8..5f73da39acf 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.small-dark.png index b4c6f9c125b..aecda079aa9 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_defaultAppearance.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_messageActions_hasCorrectOrdering.default-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_messageActions_hasCorrectOrdering.default-light.png index 7130380a065..e97620e5bee 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_messageActions_hasCorrectOrdering.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessageActionsVC_Tests/test_messageActions_hasCorrectOrdering.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingAppearance.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingAppearance.default-dark.png index 0dbc9142b40..15451bd2900 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingAppearance.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingAppearance.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingAppearance.default-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingAppearance.default-light.png index de2fbc24043..416be6efb08 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingAppearance.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingAppearance.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png index 33272e0ea5b..424ab3b7361 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingAppearance.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png index 1b358336e13..424ffef00be 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingSubclassing.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png index b215b6d6000..7e5968ee163 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_appearanceCustomization_usingSubclassing.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_defaultAppearance_when_largeLongMessage.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_defaultAppearance_when_largeLongMessage.default-dark.png index 295ca7acded..a50fbdeb2da 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_defaultAppearance_when_largeLongMessage.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_defaultAppearance_when_largeLongMessage.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_defaultAppearance_when_largeLongMessage.default-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_defaultAppearance_when_largeLongMessage.default-light.png index d18d23cc815..837faa9a33e 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_defaultAppearance_when_largeLongMessage.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_defaultAppearance_when_largeLongMessage.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_defaultAppearance_when_largeLongMessage.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_defaultAppearance_when_largeLongMessage.rightToLeftLayout-default.png index fd24251630b..f4770781e9d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_defaultAppearance_when_largeLongMessage.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_defaultAppearance_when_largeLongMessage.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountEqual4_shouldOnlyHaveSmallerHeight.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountEqual4_shouldOnlyHaveSmallerHeight.default-dark.png index b0275f94497..82f6018c3d3 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountEqual4_shouldOnlyHaveSmallerHeight.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountEqual4_shouldOnlyHaveSmallerHeight.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountEqual4_shouldOnlyHaveSmallerHeight.default-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountEqual4_shouldOnlyHaveSmallerHeight.default-light.png index 36de77a24b6..1d19b18038a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountEqual4_shouldOnlyHaveSmallerHeight.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountEqual4_shouldOnlyHaveSmallerHeight.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountLessThan4_shouldHaveSmallerWidth.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountLessThan4_shouldHaveSmallerWidth.default-dark.png index c2d9e45d4dc..df431f483fc 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountLessThan4_shouldHaveSmallerWidth.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountLessThan4_shouldHaveSmallerWidth.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountLessThan4_shouldHaveSmallerWidth.default-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountLessThan4_shouldHaveSmallerWidth.default-light.png index 32c1c6189e2..854e64004a7 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountLessThan4_shouldHaveSmallerWidth.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountLessThan4_shouldHaveSmallerWidth.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountMoreThan4_shouldHaveBiggerWidth.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountMoreThan4_shouldHaveBiggerWidth.default-dark.png index 6bef7b44a7d..2f3f11fc7c1 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountMoreThan4_shouldHaveBiggerWidth.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountMoreThan4_shouldHaveBiggerWidth.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountMoreThan4_shouldHaveBiggerWidth.default-light.png b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountMoreThan4_shouldHaveBiggerWidth.default-light.png index 3624ebcd34d..6aa8ff05a92 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountMoreThan4_shouldHaveBiggerWidth.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/MessageActionsPopup/__Snapshots__/ChatMessagePopupVC_Tests/test_reactions_whenReactionsCountMoreThan4_shouldHaveBiggerWidth.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.default-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.default-light.png index fab17e930f4..3e681535962 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.extraExtraExtraLarge-light.png index fab17e930f4..3e681535962 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.rightToLeftLayout-default.png index 59fd18bf140..e43cc878154 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.small-dark.png index a86c2d22db3..a25b1ba51e8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPaused_snapshotsAreAsExpected.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.default-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.default-light.png index 7be7fb81c03..fb62342f7e2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.extraExtraExtraLarge-light.png index 7be7fb81c03..fb62342f7e2 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.rightToLeftLayout-default.png index 2dea6957244..00bc6487509 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.small-dark.png index 6a06f2326cc..769c7cdd7ad 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.default-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.default-light.png index cb679268ac0..9b18b8f3d0b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.extraExtraExtraLarge-light.png index cb679268ac0..9b18b8f3d0b 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.rightToLeftLayout-default.png index 31c06944b3b..365132667e0 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.small-dark.png index 9a8dfe027f6..7d2f0ba48bf 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/LiveRecordingView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.default-light-IncreasedDuration.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.default-light-IncreasedDuration.png index cb308c33453..89439d9c05f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.default-light-IncreasedDuration.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.default-light-IncreasedDuration.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.default-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.default-light.png index 14624cec068..3a6dbf06ba8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.extraExtraExtraLarge-light-IncreasedDuration.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.extraExtraExtraLarge-light-IncreasedDuration.png index cb308c33453..89439d9c05f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.extraExtraExtraLarge-light-IncreasedDuration.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.extraExtraExtraLarge-light-IncreasedDuration.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.extraExtraExtraLarge-light.png index 14624cec068..3a6dbf06ba8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.rightToLeftLayout-default-IncreasedDuration.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.rightToLeftLayout-default-IncreasedDuration.png index 1284ee091bb..90c77f63956 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.rightToLeftLayout-default-IncreasedDuration.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.rightToLeftLayout-default-IncreasedDuration.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.rightToLeftLayout-default.png index 79cb9821b74..ad9d406484d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.small-dark-IncreasedDuration.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.small-dark-IncreasedDuration.png index cb308c33453..89439d9c05f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.small-dark-IncreasedDuration.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.small-dark-IncreasedDuration.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.small-dark.png index 14624cec068..3a6dbf06ba8 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/RecordingIndicatorView_Tests/test_appearance_snapshotsAreAsExpected.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.default-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.default-light.png index c1fc1dfd418..3092808fb77 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.extraExtraExtraLarge-light.png index c1fc1dfd418..3092808fb77 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.rightToLeftLayout-default.png index c271398fde9..4b86b0d91cc 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.small-dark.png index 77952886c57..092df40680a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isPlaying_snapshotsAreAsExpected.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.default-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.default-light.png index 65af6726f3b..17c4890d13d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.extraExtraExtraLarge-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.extraExtraExtraLarge-light.png index 65af6726f3b..17c4890d13d 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.extraExtraExtraLarge-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.extraExtraExtraLarge-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.rightToLeftLayout-default.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.rightToLeftLayout-default.png index cc10265151c..13c9dd84779 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.rightToLeftLayout-default.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.rightToLeftLayout-default.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.small-dark.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.small-dark.png index d64848dd637..02f20b8fc69 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.small-dark.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/Views/__Snapshots__/WaveformView_Tests/test_appearance_isRecording_snapshotsAreAsExpected.small-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_idle_viewIsConfiguredAsExpected.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_idle_viewIsConfiguredAsExpected.default-dark.png index fc32514ad6b..81f32e72149 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_idle_viewIsConfiguredAsExpected.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_idle_viewIsConfiguredAsExpected.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_idle_viewIsConfiguredAsExpected.default-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_idle_viewIsConfiguredAsExpected.default-light.png index 4edb9d4e98c..73823b3a263 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_idle_viewIsConfiguredAsExpected.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_idle_viewIsConfiguredAsExpected.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_locked_viewIsConfiguredAsExpected.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_locked_viewIsConfiguredAsExpected.default-dark.png index d15580f64c7..f8bafb82a42 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_locked_viewIsConfiguredAsExpected.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_locked_viewIsConfiguredAsExpected.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_locked_viewIsConfiguredAsExpected.default-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_locked_viewIsConfiguredAsExpected.default-light.png index e180dd1fcbe..83b867c1c6a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_locked_viewIsConfiguredAsExpected.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_locked_viewIsConfiguredAsExpected.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_afterHideViewsDebouncerExecution_viewIsConfiguredAsExpected.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_afterHideViewsDebouncerExecution_viewIsConfiguredAsExpected.default-dark.png index 090541fd7eb..3618587bdfb 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_afterHideViewsDebouncerExecution_viewIsConfiguredAsExpected.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_afterHideViewsDebouncerExecution_viewIsConfiguredAsExpected.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_afterHideViewsDebouncerExecution_viewIsConfiguredAsExpected.default-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_afterHideViewsDebouncerExecution_viewIsConfiguredAsExpected.default-light.png index 276733c742d..57ce789a585 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_afterHideViewsDebouncerExecution_viewIsConfiguredAsExpected.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_afterHideViewsDebouncerExecution_viewIsConfiguredAsExpected.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_viewIsConfiguredAsExpected.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_viewIsConfiguredAsExpected.default-dark.png index d15580f64c7..f8bafb82a42 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_viewIsConfiguredAsExpected.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_viewIsConfiguredAsExpected.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_viewIsConfiguredAsExpected.default-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_viewIsConfiguredAsExpected.default-light.png index e180dd1fcbe..83b867c1c6a 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_viewIsConfiguredAsExpected.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_preview_viewIsConfiguredAsExpected.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_recording_viewIsConfiguredAsExpected.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_recording_viewIsConfiguredAsExpected.default-dark.png index dcf50b452bb..cc3e3b37bd7 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_recording_viewIsConfiguredAsExpected.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_recording_viewIsConfiguredAsExpected.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_recording_viewIsConfiguredAsExpected.default-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_recording_viewIsConfiguredAsExpected.default-light.png index 7b3aa3812f1..32f9c686f4c 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_recording_viewIsConfiguredAsExpected.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_recording_viewIsConfiguredAsExpected.default-light.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_showingTip_viewIsConfiguredAsExpected.default-dark.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_showingTip_viewIsConfiguredAsExpected.default-dark.png index 33e1a692925..51c7971b342 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_showingTip_viewIsConfiguredAsExpected.default-dark.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_showingTip_viewIsConfiguredAsExpected.default-dark.png differ diff --git a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_showingTip_viewIsConfiguredAsExpected.default-light.png b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_showingTip_viewIsConfiguredAsExpected.default-light.png index 7cc74c09383..b5f8722604f 100644 Binary files a/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_showingTip_viewIsConfiguredAsExpected.default-light.png and b/Tests/StreamChatUITests/SnapshotTests/VoiceRecording/__Snapshots__/VoiceRecordingVC_Tests/test_updateContent_showingTip_viewIsConfiguredAsExpected.default-light.png differ diff --git a/Tests/StreamChatUITests/Utils/DefaultMarkdownFormatter_Tests.swift b/Tests/StreamChatUITests/Utils/DefaultMarkdownFormatter_Tests.swift index 399f5fa1a6d..367aae69fcc 100644 --- a/Tests/StreamChatUITests/Utils/DefaultMarkdownFormatter_Tests.swift +++ b/Tests/StreamChatUITests/Utils/DefaultMarkdownFormatter_Tests.swift @@ -63,42 +63,75 @@ final class DefaultMarkdownFormatter_Tests: XCTestCase { let expectedCodeAttributedSubstring = "let property: Double = 10.0" let expectedLinkAttributedSubstring = "this link" let expectedLinkURL = "https://docs.swift.org/swift-book/" - let expectedUnorderedListedSubstrings = ["\u{2022} class", "\u{2022} struct", "\u{2022} enum", "\u{2022} actor"] + let expectedListItems = ["class", "struct", "enum", "actor"] // WHEN let attributedString = sut.format(stringWithMarkdown, attributes: [:]) // THEN - attributedString.enumerateAttributes(in: NSRange( - location: 0, - length: attributedString.length - )) { attributes, range, _ in + var listItemBuffer = "" + var currentHeadIndent: CGFloat? + + attributedString.enumerateAttributes(in: NSRange(location: 0, length: attributedString.length)) { attributes, range, _ in + let substring = attributedString.attributedSubstring(from: range).string let fontAttribute = attributes[.font] as? UIFont + // Heading 1 check if let headerAttribute = fontAttribute, headerAttribute.fontDescriptor.pointSize == UIFont.preferredFont(forTextStyle: .title1).pointSize { - XCTAssertEqual(expectedHeading1AttributedSubstring, attributedString.attributedSubstring(from: range).string) + XCTAssertEqual(expectedHeading1AttributedSubstring, substring) + + // Strikethrough check } else if let strikethroughAttribute = attributes[.strikethroughStyle] as? NSNumber, strikethroughAttribute == 1 { - XCTAssertEqual(expectedStrikethroughAttributedSubstring, attributedString.attributedSubstring(from: range).string) + XCTAssertEqual(expectedStrikethroughAttributedSubstring, substring) + + // Bold check } else if let boldAttribute = fontAttribute, boldAttribute.fontDescriptor.symbolicTraits.contains(.traitBold) { - XCTAssertEqual(expectedBoldAttributedSubstring, attributedString.attributedSubstring(from: range).string) + XCTAssertEqual(expectedBoldAttributedSubstring, substring) + + // Code font check } else if let fontAttribute = fontAttribute, let fontNameAttribute = fontAttribute.fontDescriptor.fontAttributes[.name] as? String, fontNameAttribute == DefaultMarkdownFormatter().styles.codeFont.name { - XCTAssertEqual(expectedCodeAttributedSubstring, attributedString.attributedSubstring(from: range).string) + XCTAssertEqual(expectedCodeAttributedSubstring, substring) + + // Link check } else if let linkAttribute = attributes[.link] as? NSURL, let url = linkAttribute.absoluteString { - XCTAssertEqual(expectedLinkAttributedSubstring, attributedString.attributedSubstring(from: range).string) + XCTAssertEqual(expectedLinkAttributedSubstring, substring) XCTAssertEqual(expectedLinkURL, url) - } else if let paragraphStyleAttribute = attributes[.paragraphStyle] as? NSParagraphStyle, - paragraphStyleAttribute.headIndent > 0 { - XCTAssertEqual( - true, - expectedUnorderedListedSubstrings.contains(attributedString.attributedSubstring(from: range).string) - ) } + + // List item handling + if let paragraphStyle = attributes[.paragraphStyle] as? NSParagraphStyle, + paragraphStyle.headIndent > 0 { + // same list item as previous? + if currentHeadIndent == paragraphStyle.headIndent { + listItemBuffer += substring + } else { + // process previous buffer + if !listItemBuffer.isEmpty { + XCTAssertTrue(expectedListItems.contains { listItemBuffer.contains($0) }) + } + // start new buffer + listItemBuffer = substring + currentHeadIndent = paragraphStyle.headIndent + } + } else { + // process any leftover buffer + if !listItemBuffer.isEmpty { + XCTAssertTrue(expectedListItems.contains { listItemBuffer.contains($0) }) + listItemBuffer = "" + currentHeadIndent = nil + } + } + } + + // process last buffer + if !listItemBuffer.isEmpty { + XCTAssertTrue(expectedListItems.contains { listItemBuffer.contains($0) }) } } diff --git a/fastlane/Fastfile b/fastlane/Fastfile index f45aa1c0b2f..f7f5f85047f 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -7,7 +7,7 @@ require 'net/http' import 'Sonarfile' import 'Allurefile' -xcode_version = ENV['XCODE_VERSION'] || '16.4' +xcode_version = ENV['XCODE_VERSION'] || '26.0.1' xcode_project = 'StreamChat.xcodeproj' sdk_names = ['StreamChat', 'StreamChatUI'] github_repo = ENV['GITHUB_REPOSITORY'] || 'GetStream/stream-chat-swift' diff --git a/fastlane/Scanfile b/fastlane/Scanfile index 41dc67ee93b..adc7b4d148d 100644 --- a/fastlane/Scanfile +++ b/fastlane/Scanfile @@ -1,19 +1,2 @@ -# For more information about this configuration visit -# https://docs.fastlane.tools/actions/scan/#scanfile - -# In general, you can use the options available -# fastlane scan --help - -devices(["iPhone 11"]) - -# Needed for Sonar -code_coverage(true) - -# Our integration tests need to run in parallel -disable_concurrent_testing(true) - -configuration("Debug") - +configuration('Debug') result_bundle(true) - -skip_slack(true)