Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🕵🏾‍♀️ visual changes to review in the Visual Change Report

vr-tests-web-components/Avatar 1 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-web-components/Avatar. - Dark Mode.normal.chromium_1.png 298 Changed
vr-tests-web-components/MenuList 3 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-web-components/MenuList. - RTL.2nd selected.chromium.png 17 Changed
vr-tests-web-components/MenuList. - RTL.1st selected.chromium_2.png 39384 Changed
vr-tests-web-components/MenuList. - RTL.normal.chromium_1.png 39083 Changed
vr-tests-web-components/RadioGroup 1 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-web-components/RadioGroup. - Dark Mode.2nd selected.chromium_3.png 119 Changed
vr-tests-web-components/TextInput 1 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-web-components/TextInput. - Dark Mode.normal.chromium_1.png 288 Changed

"type": "prerelease",
"comment": "Added part for content and actions in fluent-message-bar",
"packageName": "@fluentui/web-components",
"email": "support@marvinkleinmusic.de",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import type { MessageBar } from './message-bar.js';
export function messageBarTemplate<T extends MessageBar>(): ElementViewTemplate<T> {
return html<T>`
<slot name="icon"></slot>
<div class="content">
<div class="content" part="content">
<slot></slot>
</div>
<div class="actions">
<div class="actions" part="actions">
<slot name="actions"></slot>
</div>
<slot name="dismiss"></slot>
Expand Down
2 changes: 2 additions & 0 deletions packages/web-components/src/message-bar/message-bar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import { MessageBarIntent, MessageBarLayout, MessageBarShape } from './message-b
* @slot actions - Content that can be provided for the actions
* @slot dismiss - Content that can be provided for the dismiss button
* @slot - The default slot for the content
* @csspart content - The wrapper for the message
* @csspart actions - The wrapper for extra action buttons related to the message
* @public
*/
export class MessageBar extends FASTElement {
Expand Down
Loading