-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Polish blueprint mode of pre-chat starter prompts (#5279)
* Adds RTL * Fix gap in blueprint * Add entry * Update packages/fluent-theme/src/components/preChatActivity/StarterPromptsCardAction.module.css Co-authored-by: Eugene <[email protected]> * Update packages/fluent-theme/src/components/preChatActivity/StarterPromptsCardAction.module.css Co-authored-by: Eugene <[email protected]> * Update packages/fluent-theme/src/components/preChatActivity/StarterPromptsCardAction.module.css Co-authored-by: Eugene <[email protected]> * Use gap instead * Move CSS rule order * Fix flakiness * Update snapshots * Revert "Update snapshots" This reverts commit 350baff. * Use row gap * Fix layout --------- Co-authored-by: Eugene <[email protected]>
- Loading branch information
Showing
20 changed files
with
29 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+1.3 KB
(110%)
...-fluent-theme-applied-ui-state-should-display-properly-in-dark-theme-2-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-525 Bytes
(98%)
...-fluent-theme-applied-ui-state-should-display-properly-in-dark-theme-3-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-308 Bytes
(99%)
...-fluent-theme-applied-ui-state-should-display-properly-in-dark-theme-6-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-266 Bytes
(99%)
...-fluent-theme-applied-ui-state-should-display-properly-in-dark-theme-7-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+28.4 KB
...theme-applied-ui-state-should-display-properly-in-dark-theme-and-rtl-1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+24.9 KB
...theme-applied-ui-state-should-display-properly-in-dark-theme-and-rtl-2-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+28.2 KB
...theme-applied-ui-state-should-display-properly-in-dark-theme-and-rtl-3-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+28.7 KB
...theme-applied-ui-state-should-display-properly-in-dark-theme-and-rtl-4-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+30.8 KB
...theme-applied-ui-state-should-display-properly-in-dark-theme-and-rtl-5-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+29.1 KB
...theme-applied-ui-state-should-display-properly-in-dark-theme-and-rtl-6-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+30.1 KB
...theme-applied-ui-state-should-display-properly-in-dark-theme-and-rtl-7-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+148 Bytes
(100%)
...fluent-theme-applied-ui-state-should-display-properly-in-light-theme-2-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-582 Bytes
(98%)
...fluent-theme-applied-ui-state-should-display-properly-in-light-theme-3-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.24 KB
(96%)
...fluent-theme-applied-ui-state-should-display-properly-in-light-theme-6-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-304 Bytes
(99%)
...fluent-theme-applied-ui-state-should-display-properly-in-light-theme-7-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 5 additions & 2 deletions
7
packages/test/page-object/src/globals/pageObjects/uploadFile.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
import allOutgoingActivitiesSent from '../pageConditions/allOutgoingActivitiesSent'; | ||
import getUploadButton from '../pageElements/uploadButton'; | ||
|
||
export default function uploadFile(filename) { | ||
return host.upload(getUploadButton(), filename); | ||
export default async function uploadFile(filename, { waitForSend = true } = {}) { | ||
await host.upload(getUploadButton(), filename); | ||
|
||
waitForSend && (await allOutgoingActivitiesSent()); | ||
} |