Skip to content

Commit

Permalink
fixup! fix(react-message-bar): force Links inside to be underlined
Browse files Browse the repository at this point in the history
  • Loading branch information
mainframev committed Sep 25, 2024
1 parent 68713bf commit 59c927e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
```ts

/// <reference types="react" />

import { BackgroundAppearanceContextValue } from '@fluentui/react-shared-contexts';
import type { ComponentProps } from '@fluentui/react-utilities';
import type { ComponentState } from '@fluentui/react-utilities';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,17 @@ export const MessageBarBody: ForwardRefComponent<MessageBarBodyProps>;
// @public (undocumented)
export const messageBarBodyClassNames: SlotClassNames<MessageBarBodySlots>;

// @public (undocumented)
export const messageBarBodyContextDefaultValue: MessageBarBodyContextValue;

// @public (undocumented)
export const MessageBarBodyContextProvider: React_2.Provider<MessageBarBodyContextValue | undefined>;

// @public (undocumented)
export type MessageBarBodyContextValue = {
inlineLinks: boolean;
};

// @public
export type MessageBarBodyProps = ComponentProps<MessageBarBodySlots>;

Expand Down Expand Up @@ -186,6 +197,9 @@ export const useMessageBarActionsStyles_unstable: (state: MessageBarActionsState
// @public
export const useMessageBarBody_unstable: (props: MessageBarBodyProps, ref: React_2.Ref<HTMLDivElement>) => MessageBarBodyState;

// @public (undocumented)
export const useMessageBarBodyContext: () => MessageBarBodyContextValue;

// @public
export const useMessageBarBodyStyles_unstable: (state: MessageBarBodyState) => MessageBarBodyState;

Expand Down

0 comments on commit 59c927e

Please sign in to comment.