Skip to content

Commit 5107464

Browse files
committed
Added beta flags
1 parent bbbce25 commit 5107464

File tree

2 files changed

+3
-3
lines changed
  • packages/module

2 files changed

+3
-3
lines changed

packages/module/patternfly-docs/content/extensions/chatbot/examples/UI/UI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ You can pass the `hasAiIndicator` property to the `<MessageBar>` to give it a mo
320320

321321
The following example shows a simplified way of how you might hanbdle the "thinking" animation: when you send a message, the `isThinking` property is set to `true`, then after 10 seconds it is set back to false to disable the animation again.
322322

323-
```ts file="./ChatbotMessageBarIndicatorThinking.tsx"
323+
```ts file="./ChatbotMessageBarIndicatorThinking.tsx" isBeta
324324

325325
```
326326

packages/module/src/MessageBar/MessageBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ export interface MessageBarProps extends Omit<TextAreaProps, 'innerRef'> {
121121
innerRef?: React.Ref<HTMLTextAreaElement>;
122122
/** Sets background color to primary */
123123
isPrimary?: boolean;
124-
/** Flag indicating whether the message bar has an AI indicator border. */
124+
/** @beta Flag indicating whether the message bar has an AI indicator border. */
125125
hasAiIndicator?: boolean;
126-
/** Flag indicating whether the chatbot is thinking in response to a query, adding an animation to the message bar. */
126+
/** @beta Flag indicating whether the chatbot is thinking in response to a query, adding an animation to the message bar. */
127127
isThinking?: boolean;
128128
}
129129

0 commit comments

Comments
 (0)