@patternfly/chatbot 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@types/index.d.ts +9 -0
- package/dist/cjs/AttachMenu/AttachMenu.d.ts +32 -0
- package/dist/cjs/AttachMenu/AttachMenu.js +23 -0
- package/dist/cjs/AttachMenu/index.d.ts +2 -0
- package/dist/cjs/AttachMenu/index.js +23 -0
- package/dist/cjs/AttachmentEdit/AttachmentEdit.d.ts +34 -0
- package/dist/cjs/AttachmentEdit/AttachmentEdit.js +22 -0
- package/dist/cjs/AttachmentEdit/AttachmentEdit.test.d.ts +1 -0
- package/dist/cjs/AttachmentEdit/AttachmentEdit.test.js +77 -0
- package/dist/cjs/AttachmentEdit/index.d.ts +2 -0
- package/dist/cjs/AttachmentEdit/index.js +23 -0
- package/dist/cjs/Chatbot/Chatbot.d.ts +25 -0
- package/dist/cjs/Chatbot/Chatbot.js +30 -0
- package/dist/cjs/Chatbot/Chatbot.test.d.ts +1 -0
- package/dist/cjs/Chatbot/Chatbot.test.js +32 -0
- package/dist/cjs/Chatbot/index.d.ts +2 -0
- package/dist/cjs/Chatbot/index.js +23 -0
- package/dist/cjs/ChatbotAlert/ChatbotAlert.d.ts +8 -0
- package/dist/cjs/ChatbotAlert/ChatbotAlert.js +24 -0
- package/dist/cjs/ChatbotAlert/ChatbotAlert.test.d.ts +1 -0
- package/dist/cjs/ChatbotAlert/ChatbotAlert.test.js +27 -0
- package/dist/cjs/ChatbotAlert/index.d.ts +2 -0
- package/dist/cjs/ChatbotAlert/index.js +23 -0
- package/dist/cjs/ChatbotContent/ChatbotContent.d.ts +11 -0
- package/dist/cjs/ChatbotContent/ChatbotContent.js +21 -0
- package/dist/cjs/ChatbotContent/ChatbotContent.test.d.ts +1 -0
- package/dist/cjs/ChatbotContent/ChatbotContent.test.js +22 -0
- package/dist/cjs/ChatbotContent/index.d.ts +2 -0
- package/dist/cjs/ChatbotContent/index.js +23 -0
- package/dist/cjs/ChatbotConversationHistoryNav/ChatbotConversationHistoryDropdown.d.ts +18 -0
- package/dist/cjs/ChatbotConversationHistoryNav/ChatbotConversationHistoryDropdown.js +23 -0
- package/dist/cjs/ChatbotConversationHistoryNav/ChatbotConversationHistoryDropdown.test.d.ts +1 -0
- package/dist/cjs/ChatbotConversationHistoryNav/ChatbotConversationHistoryDropdown.test.js +75 -0
- package/dist/cjs/ChatbotConversationHistoryNav/ChatbotConversationHistoryNav.d.ts +119 -0
- package/dist/cjs/ChatbotConversationHistoryNav/ChatbotConversationHistoryNav.js +97 -0
- package/dist/cjs/ChatbotConversationHistoryNav/ChatbotConversationHistoryNav.test.d.ts +1 -0
- package/dist/cjs/ChatbotConversationHistoryNav/ChatbotConversationHistoryNav.test.js +277 -0
- package/dist/cjs/ChatbotConversationHistoryNav/EmptyState.d.ts +11 -0
- package/dist/cjs/ChatbotConversationHistoryNav/EmptyState.js +22 -0
- package/dist/cjs/ChatbotConversationHistoryNav/LoadingState.d.ts +4 -0
- package/dist/cjs/ChatbotConversationHistoryNav/LoadingState.js +22 -0
- package/dist/cjs/ChatbotConversationHistoryNav/index.d.ts +3 -0
- package/dist/cjs/ChatbotConversationHistoryNav/index.js +24 -0
- package/dist/cjs/ChatbotFooter/ChatbotFooter.d.ts +13 -0
- package/dist/cjs/ChatbotFooter/ChatbotFooter.js +22 -0
- package/dist/cjs/ChatbotFooter/ChatbotFooter.test.d.ts +1 -0
- package/dist/cjs/ChatbotFooter/ChatbotFooter.test.js +27 -0
- package/dist/cjs/ChatbotFooter/ChatbotFooternote.test.d.ts +1 -0
- package/dist/cjs/ChatbotFooter/ChatbotFooternote.test.js +87 -0
- package/dist/cjs/ChatbotFooter/ChatbotFootnote.d.ts +48 -0
- package/dist/cjs/ChatbotFooter/ChatbotFootnote.js +41 -0
- package/dist/cjs/ChatbotFooter/index.d.ts +3 -0
- package/dist/cjs/ChatbotFooter/index.js +24 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeader.d.ts +9 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeader.js +8 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeader.test.d.ts +1 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeader.test.js +18 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderActions.d.ts +9 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderActions.js +7 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderActions.test.d.ts +1 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderActions.test.js +18 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderCloseButton.d.ts +18 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderCloseButton.js +25 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderCloseButton.test.d.ts +1 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderCloseButton.test.js +22 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderMain.d.ts +9 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderMain.js +7 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderMain.test.d.ts +1 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderMain.test.js +18 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderMenu.d.ts +18 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderMenu.js +55 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderMenu.test.d.ts +1 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderMenu.test.js +22 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderNewChatButton.d.ts +18 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderNewChatButton.js +25 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderNewChatButton.test.d.ts +1 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderNewChatButton.test.js +22 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderOptionsDropdown.d.ts +18 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderOptionsDropdown.js +34 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderOptionsDropdown.test.d.ts +1 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderOptionsDropdown.test.js +46 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderSelectorDropdown.d.ts +24 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderSelectorDropdown.js +34 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderSelectorDropdown.test.d.ts +1 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderSelectorDropdown.test.js +44 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderTitle.d.ts +22 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderTitle.js +32 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderTitle.test.d.ts +1 -0
- package/dist/cjs/ChatbotHeader/ChatbotHeaderTitle.test.js +55 -0
- package/dist/cjs/ChatbotHeader/index.d.ts +10 -0
- package/dist/cjs/ChatbotHeader/index.js +31 -0
- package/dist/cjs/ChatbotModal/ChatbotModal.d.ts +13 -0
- package/dist/cjs/ChatbotModal/ChatbotModal.js +28 -0
- package/dist/cjs/ChatbotModal/ChatbotModal.test.d.ts +1 -0
- package/dist/cjs/ChatbotModal/ChatbotModal.test.js +16 -0
- package/dist/cjs/ChatbotModal/index.d.ts +2 -0
- package/dist/cjs/ChatbotModal/index.js +23 -0
- package/dist/cjs/ChatbotPopover/ChatbotPopover.d.ts +4 -0
- package/dist/cjs/ChatbotPopover/ChatbotPopover.js +23 -0
- package/dist/cjs/ChatbotPopover/index.d.ts +2 -0
- package/dist/cjs/ChatbotPopover/index.js +23 -0
- package/dist/cjs/ChatbotToggle/ChatbotToggle.d.ts +27 -0
- package/dist/cjs/ChatbotToggle/ChatbotToggle.js +32 -0
- package/dist/cjs/ChatbotToggle/ChatbotToggle.test.d.ts +1 -0
- package/dist/cjs/ChatbotToggle/ChatbotToggle.test.js +64 -0
- package/dist/cjs/ChatbotToggle/index.d.ts +2 -0
- package/dist/cjs/ChatbotToggle/index.js +23 -0
- package/dist/cjs/ChatbotWelcomePrompt/ChatbotWelcomePrompt.d.ts +24 -0
- package/dist/cjs/ChatbotWelcomePrompt/ChatbotWelcomePrompt.js +26 -0
- package/dist/cjs/ChatbotWelcomePrompt/ChatbotWelcomePrompt.test.d.ts +1 -0
- package/dist/cjs/ChatbotWelcomePrompt/ChatbotWelcomePrompt.test.js +61 -0
- package/dist/cjs/ChatbotWelcomePrompt/index.d.ts +2 -0
- package/dist/cjs/ChatbotWelcomePrompt/index.js +23 -0
- package/dist/cjs/CodeModal/CodeModal.d.ts +44 -0
- package/dist/cjs/CodeModal/CodeModal.js +160 -0
- package/dist/cjs/CodeModal/CodeModal.test.d.ts +1 -0
- package/dist/cjs/CodeModal/CodeModal.test.js +34 -0
- package/dist/cjs/CodeModal/index.d.ts +2 -0
- package/dist/cjs/CodeModal/index.js +23 -0
- package/dist/cjs/Compare/Compare.d.ts +17 -0
- package/dist/cjs/Compare/Compare.js +41 -0
- package/dist/cjs/Compare/Compare.test.d.ts +1 -0
- package/dist/cjs/Compare/Compare.test.js +18 -0
- package/dist/cjs/Compare/index.d.ts +2 -0
- package/dist/cjs/Compare/index.js +23 -0
- package/dist/cjs/DeepThinking/DeepThinking.d.ts +35 -0
- package/dist/cjs/DeepThinking/DeepThinking.js +46 -0
- package/dist/cjs/DeepThinking/DeepThinking.test.d.ts +1 -0
- package/dist/cjs/DeepThinking/DeepThinking.test.js +146 -0
- package/dist/cjs/DeepThinking/index.d.ts +2 -0
- package/dist/cjs/DeepThinking/index.js +23 -0
- package/dist/cjs/FileDetails/FileDetails.d.ts +941 -0
- package/dist/cjs/FileDetails/FileDetails.js +56 -0
- package/dist/cjs/FileDetails/FileDetails.test.d.ts +1 -0
- package/dist/cjs/FileDetails/FileDetails.test.js +42 -0
- package/dist/cjs/FileDetails/index.d.ts +2 -0
- package/dist/cjs/FileDetails/index.js +23 -0
- package/dist/cjs/FileDetailsLabel/FileDetailsLabel.d.ts +28 -0
- package/dist/cjs/FileDetailsLabel/FileDetailsLabel.js +31 -0
- package/dist/cjs/FileDetailsLabel/FileDetailsLabel.test.d.ts +1 -0
- package/dist/cjs/FileDetailsLabel/FileDetailsLabel.test.js +79 -0
- package/dist/cjs/FileDetailsLabel/index.d.ts +2 -0
- package/dist/cjs/FileDetailsLabel/index.js +23 -0
- package/dist/cjs/FileDropZone/FileDropZone.d.ts +37 -0
- package/dist/cjs/FileDropZone/FileDropZone.js +30 -0
- package/dist/cjs/FileDropZone/FileDropZone.test.d.ts +1 -0
- package/dist/cjs/FileDropZone/FileDropZone.test.js +100 -0
- package/dist/cjs/FileDropZone/index.d.ts +2 -0
- package/dist/cjs/FileDropZone/index.js +23 -0
- package/dist/cjs/FilePreview/FilePreview.d.ts +26 -0
- package/dist/cjs/FilePreview/FilePreview.js +26 -0
- package/dist/cjs/FilePreview/FilePreview.test.d.ts +1 -0
- package/dist/cjs/FilePreview/FilePreview.test.js +97 -0
- package/dist/cjs/FilePreview/index.d.ts +2 -0
- package/dist/cjs/FilePreview/index.js +23 -0
- package/dist/cjs/ImagePreview/ImagePreview.d.ts +53 -0
- package/dist/cjs/ImagePreview/ImagePreview.js +47 -0
- package/dist/cjs/ImagePreview/ImagePreview.test.d.ts +1 -0
- package/dist/cjs/ImagePreview/ImagePreview.test.js +225 -0
- package/dist/cjs/ImagePreview/index.d.ts +2 -0
- package/dist/cjs/ImagePreview/index.js +23 -0
- package/dist/cjs/LoadingMessage/LoadingMessage.d.ts +6 -0
- package/dist/cjs/LoadingMessage/LoadingMessage.js +12 -0
- package/dist/cjs/LoadingMessage/LoadingMessage.test.d.ts +1 -0
- package/dist/cjs/LoadingMessage/LoadingMessage.test.js +20 -0
- package/dist/cjs/LoadingMessage/index.d.ts +2 -0
- package/dist/cjs/LoadingMessage/index.js +23 -0
- package/dist/cjs/MarkdownContent/MarkdownContent.d.ts +44 -0
- package/dist/cjs/MarkdownContent/MarkdownContent.js +181 -0
- package/dist/cjs/MarkdownContent/MarkdownContent.test.d.ts +1 -0
- package/dist/cjs/MarkdownContent/MarkdownContent.test.js +192 -0
- package/dist/cjs/MarkdownContent/index.d.ts +2 -0
- package/dist/cjs/MarkdownContent/index.js +23 -0
- package/dist/cjs/Message/CodeBlockMessage/CodeBlockMessage.d.ts +27 -0
- package/dist/cjs/Message/CodeBlockMessage/CodeBlockMessage.js +81 -0
- package/dist/cjs/Message/CodeBlockMessage/CodeBlockMessage.test.d.ts +1 -0
- package/dist/cjs/Message/CodeBlockMessage/CodeBlockMessage.test.js +131 -0
- package/dist/cjs/Message/ErrorMessage/ErrorMessage.d.ts +17 -0
- package/dist/cjs/Message/ErrorMessage/ErrorMessage.js +25 -0
- package/dist/cjs/Message/ErrorMessage/ErrorMessage.test.d.ts +1 -0
- package/dist/cjs/Message/ErrorMessage/ErrorMessage.test.js +30 -0
- package/dist/cjs/Message/ImageMessage/ImageMessage.d.ts +3 -0
- package/dist/cjs/Message/ImageMessage/ImageMessage.js +19 -0
- package/dist/cjs/Message/LinkMessage/LinkMessage.d.ts +8 -0
- package/dist/cjs/Message/LinkMessage/LinkMessage.js +32 -0
- package/dist/cjs/Message/ListMessage/ListItemMessage.d.ts +3 -0
- package/dist/cjs/Message/ListMessage/ListItemMessage.js +21 -0
- package/dist/cjs/Message/ListMessage/OrderedListMessage.d.ts +11 -0
- package/dist/cjs/Message/ListMessage/OrderedListMessage.js +7 -0
- package/dist/cjs/Message/ListMessage/UnorderedListMessage.d.ts +9 -0
- package/dist/cjs/Message/ListMessage/UnorderedListMessage.js +7 -0
- package/dist/cjs/Message/Message.d.ts +182 -0
- package/dist/cjs/Message/Message.js +94 -0
- package/dist/cjs/Message/Message.test.d.ts +1 -0
- package/dist/cjs/Message/Message.test.js +1128 -0
- package/dist/cjs/Message/MessageAndActions/MessageAndActions.d.ts +14 -0
- package/dist/cjs/Message/MessageAndActions/MessageAndActions.js +22 -0
- package/dist/cjs/Message/MessageAndActions/MessageAndActions.test.d.ts +1 -0
- package/dist/cjs/Message/MessageAndActions/MessageAndActions.test.js +25 -0
- package/dist/cjs/Message/MessageAndActions/index.d.ts +1 -0
- package/dist/cjs/Message/MessageAndActions/index.js +17 -0
- package/dist/cjs/Message/MessageAttachments/MessageAttachmentItem.d.ts +13 -0
- package/dist/cjs/Message/MessageAttachments/MessageAttachmentItem.js +22 -0
- package/dist/cjs/Message/MessageAttachments/MessageAttachmentItem.test.d.ts +1 -0
- package/dist/cjs/Message/MessageAttachments/MessageAttachmentItem.test.js +25 -0
- package/dist/cjs/Message/MessageAttachments/MessageAttachmentsContainer.d.ts +13 -0
- package/dist/cjs/Message/MessageAttachments/MessageAttachmentsContainer.js +22 -0
- package/dist/cjs/Message/MessageAttachments/MessageAttachmentsContainer.test.d.ts +1 -0
- package/dist/cjs/Message/MessageAttachments/MessageAttachmentsContainer.test.js +25 -0
- package/dist/cjs/Message/MessageAttachments/index.d.ts +2 -0
- package/dist/cjs/Message/MessageAttachments/index.js +18 -0
- package/dist/cjs/Message/MessageInput.d.ts +20 -0
- package/dist/cjs/Message/MessageInput.js +27 -0
- package/dist/cjs/Message/MessageLoading.d.ts +14 -0
- package/dist/cjs/Message/MessageLoading.js +22 -0
- package/dist/cjs/Message/MessageLoading.test.d.ts +1 -0
- package/dist/cjs/Message/MessageLoading.test.js +25 -0
- package/dist/cjs/Message/Plugins/index.d.ts +1 -0
- package/dist/cjs/Message/Plugins/index.js +5 -0
- package/dist/cjs/Message/Plugins/rehypeCodeBlockToggle.d.ts +2 -0
- package/dist/cjs/Message/Plugins/rehypeCodeBlockToggle.js +24 -0
- package/dist/cjs/Message/Plugins/rehypeMoveImagesOutOfParagraphs.d.ts +2 -0
- package/dist/cjs/Message/Plugins/rehypeMoveImagesOutOfParagraphs.js +47 -0
- package/dist/cjs/Message/QuickResponse/QuickResponse.d.ts +19 -0
- package/dist/cjs/Message/QuickResponse/QuickResponse.js +33 -0
- package/dist/cjs/Message/QuickResponse/QuickResponse.test.d.ts +1 -0
- package/dist/cjs/Message/QuickResponse/QuickResponse.test.js +109 -0
- package/dist/cjs/Message/QuickResponse/index.d.ts +1 -0
- package/dist/cjs/Message/QuickResponse/index.js +17 -0
- package/dist/cjs/Message/QuickStarts/FallbackImg.d.ts +13 -0
- package/dist/cjs/Message/QuickStarts/FallbackImg.js +12 -0
- package/dist/cjs/Message/QuickStarts/QuickStartTile.d.ts +29 -0
- package/dist/cjs/Message/QuickStarts/QuickStartTile.js +47 -0
- package/dist/cjs/Message/QuickStarts/QuickStartTileDescription.d.ts +23 -0
- package/dist/cjs/Message/QuickStarts/QuickStartTileDescription.js +35 -0
- package/dist/cjs/Message/QuickStarts/QuickStartTileDescription.test.d.ts +1 -0
- package/dist/cjs/Message/QuickStarts/QuickStartTileDescription.test.js +76 -0
- package/dist/cjs/Message/QuickStarts/QuickStartTileHeader.d.ts +11 -0
- package/dist/cjs/Message/QuickStarts/QuickStartTileHeader.js +6 -0
- package/dist/cjs/Message/QuickStarts/index.d.ts +2 -0
- package/dist/cjs/Message/QuickStarts/index.js +18 -0
- package/dist/cjs/Message/QuickStarts/monitor-sampleapp-quickstart-with-image.d.ts +30 -0
- package/dist/cjs/Message/QuickStarts/monitor-sampleapp-quickstart-with-image.js +77 -0
- package/dist/cjs/Message/QuickStarts/monitor-sampleapp-quickstart.d.ts +30 -0
- package/dist/cjs/Message/QuickStarts/monitor-sampleapp-quickstart.js +77 -0
- package/dist/cjs/Message/QuickStarts/types.d.ts +133 -0
- package/dist/cjs/Message/QuickStarts/types.js +17 -0
- package/dist/cjs/Message/SuperscriptMessage/SuperscriptMessage.d.ts +3 -0
- package/dist/cjs/Message/SuperscriptMessage/SuperscriptMessage.js +5 -0
- package/dist/cjs/Message/TableMessage/TableMessage.d.ts +27 -0
- package/dist/cjs/Message/TableMessage/TableMessage.js +66 -0
- package/dist/cjs/Message/TableMessage/TbodyMessage.d.ts +6 -0
- package/dist/cjs/Message/TableMessage/TbodyMessage.js +31 -0
- package/dist/cjs/Message/TableMessage/TdMessage.d.ts +4 -0
- package/dist/cjs/Message/TableMessage/TdMessage.js +20 -0
- package/dist/cjs/Message/TableMessage/ThMessage.d.ts +4 -0
- package/dist/cjs/Message/TableMessage/ThMessage.js +20 -0
- package/dist/cjs/Message/TableMessage/TheadMessage.d.ts +4 -0
- package/dist/cjs/Message/TableMessage/TheadMessage.js +20 -0
- package/dist/cjs/Message/TableMessage/TrMessage.d.ts +6 -0
- package/dist/cjs/Message/TableMessage/TrMessage.js +35 -0
- package/dist/cjs/Message/TextMessage/TextMessage.d.ts +14 -0
- package/dist/cjs/Message/TextMessage/TextMessage.js +21 -0
- package/dist/cjs/Message/UserFeedback/CloseButton.d.ts +10 -0
- package/dist/cjs/Message/UserFeedback/CloseButton.js +8 -0
- package/dist/cjs/Message/UserFeedback/UserFeedback.d.ts +55 -0
- package/dist/cjs/Message/UserFeedback/UserFeedback.js +45 -0
- package/dist/cjs/Message/UserFeedback/UserFeedback.test.d.ts +1 -0
- package/dist/cjs/Message/UserFeedback/UserFeedback.test.js +181 -0
- package/dist/cjs/Message/UserFeedback/UserFeedbackComplete.d.ts +42 -0
- package/dist/cjs/Message/UserFeedback/UserFeedbackComplete.js +94 -0
- package/dist/cjs/Message/UserFeedback/UserFeedbackComplete.test.d.ts +1 -0
- package/dist/cjs/Message/UserFeedback/UserFeedbackComplete.test.js +243 -0
- package/dist/cjs/Message/UserFeedback/index.d.ts +2 -0
- package/dist/cjs/Message/UserFeedback/index.js +18 -0
- package/dist/cjs/Message/index.d.ts +11 -0
- package/dist/cjs/Message/index.js +33 -0
- package/dist/cjs/MessageBar/AttachButton.d.ts +47 -0
- package/dist/cjs/MessageBar/AttachButton.js +30 -0
- package/dist/cjs/MessageBar/AttachButton.test.d.ts +1 -0
- package/dist/cjs/MessageBar/AttachButton.test.js +152 -0
- package/dist/cjs/MessageBar/MessageBar.d.ts +124 -0
- package/dist/cjs/MessageBar/MessageBar.js +248 -0
- package/dist/cjs/MessageBar/MessageBar.test.d.ts +1 -0
- package/dist/cjs/MessageBar/MessageBar.test.js +338 -0
- package/dist/cjs/MessageBar/MicrophoneButton.d.ts +24 -0
- package/dist/cjs/MessageBar/MicrophoneButton.js +69 -0
- package/dist/cjs/MessageBar/SendButton.d.ts +16 -0
- package/dist/cjs/MessageBar/SendButton.js +26 -0
- package/dist/cjs/MessageBar/SendButton.test.d.ts +1 -0
- package/dist/cjs/MessageBar/SendButton.test.js +58 -0
- package/dist/cjs/MessageBar/StopButton.d.ts +16 -0
- package/dist/cjs/MessageBar/StopButton.js +25 -0
- package/dist/cjs/MessageBar/StopButton.test.d.ts +1 -0
- package/dist/cjs/MessageBar/StopButton.test.js +58 -0
- package/dist/cjs/MessageBar/index.d.ts +5 -0
- package/dist/cjs/MessageBar/index.js +26 -0
- package/dist/cjs/MessageBox/JumpButton.d.ts +16 -0
- package/dist/cjs/MessageBox/JumpButton.js +9 -0
- package/dist/cjs/MessageBox/JumpButton.test.d.ts +1 -0
- package/dist/cjs/MessageBox/JumpButton.test.js +39 -0
- package/dist/cjs/MessageBox/MessageBox.d.ts +42 -0
- package/dist/cjs/MessageBox/MessageBox.js +211 -0
- package/dist/cjs/MessageBox/MessageBox.test.d.ts +1 -0
- package/dist/cjs/MessageBox/MessageBox.test.js +235 -0
- package/dist/cjs/MessageBox/index.d.ts +3 -0
- package/dist/cjs/MessageBox/index.js +24 -0
- package/dist/cjs/MessageDivider/MessageDivider.d.ts +9 -0
- package/dist/cjs/MessageDivider/MessageDivider.js +23 -0
- package/dist/cjs/MessageDivider/MessageDivider.test.d.ts +1 -0
- package/dist/cjs/MessageDivider/MessageDivider.test.js +29 -0
- package/dist/cjs/MessageDivider/index.d.ts +2 -0
- package/dist/cjs/MessageDivider/index.js +23 -0
- package/dist/cjs/Onboarding/Onboarding.d.ts +36 -0
- package/dist/cjs/Onboarding/Onboarding.js +37 -0
- package/dist/cjs/Onboarding/Onboarding.test.d.ts +1 -0
- package/dist/cjs/Onboarding/Onboarding.test.js +80 -0
- package/dist/cjs/Onboarding/index.d.ts +2 -0
- package/dist/cjs/Onboarding/index.js +23 -0
- package/dist/cjs/PreviewAttachment/PreviewAttachment.d.ts +34 -0
- package/dist/cjs/PreviewAttachment/PreviewAttachment.js +22 -0
- package/dist/cjs/PreviewAttachment/PreviewAttachment.test.d.ts +1 -0
- package/dist/cjs/PreviewAttachment/PreviewAttachment.test.js +50 -0
- package/dist/cjs/PreviewAttachment/index.d.ts +2 -0
- package/dist/cjs/PreviewAttachment/index.js +23 -0
- package/dist/cjs/ResponseActions/ResponseActionButton.d.ts +29 -0
- package/dist/cjs/ResponseActions/ResponseActionButton.js +32 -0
- package/dist/cjs/ResponseActions/ResponseActionButton.test.d.ts +1 -0
- package/dist/cjs/ResponseActions/ResponseActionButton.test.js +54 -0
- package/dist/cjs/ResponseActions/ResponseActions.d.ts +61 -0
- package/dist/cjs/ResponseActions/ResponseActions.js +120 -0
- package/dist/cjs/ResponseActions/ResponseActions.test.d.ts +1 -0
- package/dist/cjs/ResponseActions/ResponseActions.test.js +452 -0
- package/dist/cjs/ResponseActions/ResponseActionsGroups.d.ts +13 -0
- package/dist/cjs/ResponseActions/ResponseActionsGroups.js +22 -0
- package/dist/cjs/ResponseActions/ResponseActionsGroups.test.d.ts +1 -0
- package/dist/cjs/ResponseActions/ResponseActionsGroups.test.js +25 -0
- package/dist/cjs/ResponseActions/index.d.ts +3 -0
- package/dist/cjs/ResponseActions/index.js +24 -0
- package/dist/cjs/Settings/SettingsForm.d.ts +15 -0
- package/dist/cjs/Settings/SettingsForm.js +21 -0
- package/dist/cjs/Settings/SettingsForm.test.d.ts +1 -0
- package/dist/cjs/Settings/SettingsForm.test.js +35 -0
- package/dist/cjs/Settings/index.d.ts +2 -0
- package/dist/cjs/Settings/index.js +23 -0
- package/dist/cjs/SourceDetailsMenuItem/SourceDetailsMenuItem.d.ts +11 -0
- package/dist/cjs/SourceDetailsMenuItem/SourceDetailsMenuItem.js +22 -0
- package/dist/cjs/SourceDetailsMenuItem/index.d.ts +2 -0
- package/dist/cjs/SourceDetailsMenuItem/index.js +23 -0
- package/dist/cjs/SourcesCard/SourcesCard.d.ts +65 -0
- package/dist/cjs/SourcesCard/SourcesCard.js +25 -0
- package/dist/cjs/SourcesCard/SourcesCard.test.d.ts +1 -0
- package/dist/cjs/SourcesCard/SourcesCard.test.js +39 -0
- package/dist/cjs/SourcesCard/index.d.ts +2 -0
- package/dist/cjs/SourcesCard/index.js +23 -0
- package/dist/cjs/SourcesCardBase/SourcesCardBase.d.ts +61 -0
- package/dist/cjs/SourcesCardBase/SourcesCardBase.js +58 -0
- package/dist/cjs/SourcesCardBase/SourcesCardBase.test.d.ts +1 -0
- package/dist/cjs/SourcesCardBase/SourcesCardBase.test.js +199 -0
- package/dist/cjs/SourcesCardBase/index.d.ts +2 -0
- package/dist/cjs/SourcesCardBase/index.js +23 -0
- package/dist/cjs/TermsOfUse/TermsOfUse.d.ts +36 -0
- package/dist/cjs/TermsOfUse/TermsOfUse.js +37 -0
- package/dist/cjs/TermsOfUse/TermsOfUse.test.d.ts +1 -0
- package/dist/cjs/TermsOfUse/TermsOfUse.test.js +77 -0
- package/dist/cjs/TermsOfUse/index.d.ts +2 -0
- package/dist/cjs/TermsOfUse/index.js +23 -0
- package/dist/cjs/ToolCall/ToolCall.d.ts +55 -0
- package/dist/cjs/ToolCall/ToolCall.js +35 -0
- package/dist/cjs/ToolCall/ToolCall.test.d.ts +1 -0
- package/dist/cjs/ToolCall/ToolCall.test.js +201 -0
- package/dist/cjs/ToolCall/index.d.ts +2 -0
- package/dist/cjs/ToolCall/index.js +23 -0
- package/dist/cjs/ToolResponse/ToolResponse.d.ts +47 -0
- package/dist/cjs/ToolResponse/ToolResponse.js +64 -0
- package/dist/cjs/ToolResponse/ToolResponse.test.d.ts +1 -0
- package/dist/cjs/ToolResponse/ToolResponse.test.js +184 -0
- package/dist/cjs/ToolResponse/index.d.ts +2 -0
- package/dist/cjs/ToolResponse/index.js +23 -0
- package/dist/cjs/__mocks__/monaco-editor.d.ts +11 -0
- package/dist/cjs/__mocks__/monaco-editor.js +18 -0
- package/dist/cjs/__mocks__/rehype-external-links.d.ts +2 -0
- package/dist/cjs/__mocks__/rehype-external-links.js +4 -0
- package/dist/cjs/__mocks__/rehype-highlight.d.ts +2 -0
- package/dist/cjs/__mocks__/rehype-highlight.js +4 -0
- package/dist/cjs/__mocks__/rehype-sanitize.d.ts +2 -0
- package/dist/cjs/__mocks__/rehype-sanitize.js +4 -0
- package/dist/cjs/__mocks__/rehype-unwrap-images.d.ts +2 -0
- package/dist/cjs/__mocks__/rehype-unwrap-images.js +4 -0
- package/dist/cjs/index.d.ts +74 -0
- package/dist/cjs/index.js +132 -0
- package/dist/cjs/tracking/console_tracking_provider.d.ts +9 -0
- package/dist/cjs/tracking/console_tracking_provider.js +34 -0
- package/dist/cjs/tracking/index.d.ts +2 -0
- package/dist/cjs/tracking/index.js +23 -0
- package/dist/cjs/tracking/posthog_tracking_provider.d.ts +9 -0
- package/dist/cjs/tracking/posthog_tracking_provider.js +46 -0
- package/dist/cjs/tracking/segment_tracking_provider.d.ts +10 -0
- package/dist/cjs/tracking/segment_tracking_provider.js +59 -0
- package/dist/cjs/tracking/trackingProviderProxy.d.ts +9 -0
- package/dist/cjs/tracking/trackingProviderProxy.js +24 -0
- package/dist/cjs/tracking/tracking_api.d.ts +8 -0
- package/dist/cjs/tracking/tracking_api.js +2 -0
- package/dist/cjs/tracking/tracking_registry.d.ts +4 -0
- package/dist/cjs/tracking/tracking_registry.js +67 -0
- package/dist/cjs/tracking/tracking_spi.d.ts +19 -0
- package/dist/cjs/tracking/tracking_spi.js +11 -0
- package/dist/cjs/tracking/umami_tracking_provider.d.ts +18 -0
- package/dist/cjs/tracking/umami_tracking_provider.js +88 -0
- package/dist/css/main.css +2988 -0
- package/dist/css/main.css.map +1 -0
- package/dist/dynamic/AttachMenu/package.json +1 -0
- package/dist/dynamic/AttachmentEdit/package.json +1 -0
- package/dist/dynamic/Chatbot/package.json +1 -0
- package/dist/dynamic/ChatbotAlert/package.json +1 -0
- package/dist/dynamic/ChatbotContent/package.json +1 -0
- package/dist/dynamic/ChatbotConversationHistoryNav/package.json +1 -0
- package/dist/dynamic/ChatbotFooter/package.json +1 -0
- package/dist/dynamic/ChatbotHeader/package.json +1 -0
- package/dist/dynamic/ChatbotModal/package.json +1 -0
- package/dist/dynamic/ChatbotPopover/package.json +1 -0
- package/dist/dynamic/ChatbotToggle/package.json +1 -0
- package/dist/dynamic/ChatbotWelcomePrompt/package.json +1 -0
- package/dist/dynamic/CodeModal/package.json +1 -0
- package/dist/dynamic/Compare/package.json +1 -0
- package/dist/dynamic/DeepThinking/package.json +1 -0
- package/dist/dynamic/FileDetails/package.json +1 -0
- package/dist/dynamic/FileDetailsLabel/package.json +1 -0
- package/dist/dynamic/FileDropZone/package.json +1 -0
- package/dist/dynamic/FilePreview/package.json +1 -0
- package/dist/dynamic/ImagePreview/package.json +1 -0
- package/dist/dynamic/LoadingMessage/package.json +1 -0
- package/dist/dynamic/MarkdownContent/package.json +1 -0
- package/dist/dynamic/Message/package.json +1 -0
- package/dist/dynamic/MessageBar/package.json +1 -0
- package/dist/dynamic/MessageBox/package.json +1 -0
- package/dist/dynamic/MessageDivider/package.json +1 -0
- package/dist/dynamic/Onboarding/package.json +1 -0
- package/dist/dynamic/PreviewAttachment/package.json +1 -0
- package/dist/dynamic/ResponseActions/package.json +1 -0
- package/dist/dynamic/Settings/package.json +1 -0
- package/dist/dynamic/SourceDetailsMenuItem/package.json +1 -0
- package/dist/dynamic/SourcesCard/package.json +1 -0
- package/dist/dynamic/SourcesCardBase/package.json +1 -0
- package/dist/dynamic/TermsOfUse/package.json +1 -0
- package/dist/dynamic/ToolCall/package.json +1 -0
- package/dist/dynamic/ToolResponse/package.json +1 -0
- package/dist/dynamic/tracking/package.json +1 -0
- package/dist/esm/AttachMenu/AttachMenu.d.ts +32 -0
- package/dist/esm/AttachMenu/AttachMenu.js +19 -0
- package/dist/esm/AttachMenu/index.d.ts +2 -0
- package/dist/esm/AttachMenu/index.js +2 -0
- package/dist/esm/AttachmentEdit/AttachmentEdit.d.ts +34 -0
- package/dist/esm/AttachmentEdit/AttachmentEdit.js +15 -0
- package/dist/esm/AttachmentEdit/AttachmentEdit.test.d.ts +1 -0
- package/dist/esm/AttachmentEdit/AttachmentEdit.test.js +72 -0
- package/dist/esm/AttachmentEdit/index.d.ts +2 -0
- package/dist/esm/AttachmentEdit/index.js +2 -0
- package/dist/esm/Chatbot/Chatbot.d.ts +25 -0
- package/dist/esm/Chatbot/Chatbot.js +27 -0
- package/dist/esm/Chatbot/Chatbot.test.d.ts +1 -0
- package/dist/esm/Chatbot/Chatbot.test.js +27 -0
- package/dist/esm/Chatbot/index.d.ts +2 -0
- package/dist/esm/Chatbot/index.js +2 -0
- package/dist/esm/ChatbotAlert/ChatbotAlert.d.ts +8 -0
- package/dist/esm/ChatbotAlert/ChatbotAlert.js +20 -0
- package/dist/esm/ChatbotAlert/ChatbotAlert.test.d.ts +1 -0
- package/dist/esm/ChatbotAlert/ChatbotAlert.test.js +22 -0
- package/dist/esm/ChatbotAlert/index.d.ts +2 -0
- package/dist/esm/ChatbotAlert/index.js +2 -0
- package/dist/esm/ChatbotContent/ChatbotContent.d.ts +11 -0
- package/dist/esm/ChatbotContent/ChatbotContent.js +17 -0
- package/dist/esm/ChatbotContent/ChatbotContent.test.d.ts +1 -0
- package/dist/esm/ChatbotContent/ChatbotContent.test.js +17 -0
- package/dist/esm/ChatbotContent/index.d.ts +2 -0
- package/dist/esm/ChatbotContent/index.js +2 -0
- package/dist/esm/ChatbotConversationHistoryNav/ChatbotConversationHistoryDropdown.d.ts +18 -0
- package/dist/esm/ChatbotConversationHistoryNav/ChatbotConversationHistoryDropdown.js +16 -0
- package/dist/esm/ChatbotConversationHistoryNav/ChatbotConversationHistoryDropdown.test.d.ts +1 -0
- package/dist/esm/ChatbotConversationHistoryNav/ChatbotConversationHistoryDropdown.test.js +70 -0
- package/dist/esm/ChatbotConversationHistoryNav/ChatbotConversationHistoryNav.d.ts +119 -0
- package/dist/esm/ChatbotConversationHistoryNav/ChatbotConversationHistoryNav.js +90 -0
- package/dist/esm/ChatbotConversationHistoryNav/ChatbotConversationHistoryNav.test.d.ts +1 -0
- package/dist/esm/ChatbotConversationHistoryNav/ChatbotConversationHistoryNav.test.js +272 -0
- package/dist/esm/ChatbotConversationHistoryNav/EmptyState.d.ts +11 -0
- package/dist/esm/ChatbotConversationHistoryNav/EmptyState.js +18 -0
- package/dist/esm/ChatbotConversationHistoryNav/LoadingState.d.ts +4 -0
- package/dist/esm/ChatbotConversationHistoryNav/LoadingState.js +18 -0
- package/dist/esm/ChatbotConversationHistoryNav/index.d.ts +3 -0
- package/dist/esm/ChatbotConversationHistoryNav/index.js +3 -0
- package/dist/esm/ChatbotFooter/ChatbotFooter.d.ts +13 -0
- package/dist/esm/ChatbotFooter/ChatbotFooter.js +18 -0
- package/dist/esm/ChatbotFooter/ChatbotFooter.test.d.ts +1 -0
- package/dist/esm/ChatbotFooter/ChatbotFooter.test.js +22 -0
- package/dist/esm/ChatbotFooter/ChatbotFooternote.test.d.ts +1 -0
- package/dist/esm/ChatbotFooter/ChatbotFooternote.test.js +82 -0
- package/dist/esm/ChatbotFooter/ChatbotFootnote.d.ts +48 -0
- package/dist/esm/ChatbotFooter/ChatbotFootnote.js +34 -0
- package/dist/esm/ChatbotFooter/index.d.ts +3 -0
- package/dist/esm/ChatbotFooter/index.js +3 -0
- package/dist/esm/ChatbotHeader/ChatbotHeader.d.ts +9 -0
- package/dist/esm/ChatbotHeader/ChatbotHeader.js +4 -0
- package/dist/esm/ChatbotHeader/ChatbotHeader.test.d.ts +1 -0
- package/dist/esm/ChatbotHeader/ChatbotHeader.test.js +13 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderActions.d.ts +9 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderActions.js +3 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderActions.test.d.ts +1 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderActions.test.js +13 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderCloseButton.d.ts +18 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderCloseButton.js +22 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderCloseButton.test.d.ts +1 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderCloseButton.test.js +20 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderMain.d.ts +9 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderMain.js +3 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderMain.test.d.ts +1 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderMain.test.js +13 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderMenu.d.ts +18 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderMenu.js +49 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderMenu.test.d.ts +1 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderMenu.test.js +20 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderNewChatButton.d.ts +18 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderNewChatButton.js +22 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderNewChatButton.test.d.ts +1 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderNewChatButton.test.js +20 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderOptionsDropdown.d.ts +18 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderOptionsDropdown.js +27 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderOptionsDropdown.test.d.ts +1 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderOptionsDropdown.test.js +44 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderSelectorDropdown.d.ts +24 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderSelectorDropdown.js +30 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderSelectorDropdown.test.d.ts +1 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderSelectorDropdown.test.js +42 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderTitle.d.ts +22 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderTitle.js +28 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderTitle.test.d.ts +1 -0
- package/dist/esm/ChatbotHeader/ChatbotHeaderTitle.test.js +50 -0
- package/dist/esm/ChatbotHeader/index.d.ts +10 -0
- package/dist/esm/ChatbotHeader/index.js +10 -0
- package/dist/esm/ChatbotModal/ChatbotModal.d.ts +13 -0
- package/dist/esm/ChatbotModal/ChatbotModal.js +24 -0
- package/dist/esm/ChatbotModal/ChatbotModal.test.d.ts +1 -0
- package/dist/esm/ChatbotModal/ChatbotModal.test.js +11 -0
- package/dist/esm/ChatbotModal/index.d.ts +2 -0
- package/dist/esm/ChatbotModal/index.js +2 -0
- package/dist/esm/ChatbotPopover/ChatbotPopover.d.ts +4 -0
- package/dist/esm/ChatbotPopover/ChatbotPopover.js +19 -0
- package/dist/esm/ChatbotPopover/index.d.ts +2 -0
- package/dist/esm/ChatbotPopover/index.js +2 -0
- package/dist/esm/ChatbotToggle/ChatbotToggle.d.ts +27 -0
- package/dist/esm/ChatbotToggle/ChatbotToggle.js +27 -0
- package/dist/esm/ChatbotToggle/ChatbotToggle.test.d.ts +1 -0
- package/dist/esm/ChatbotToggle/ChatbotToggle.test.js +59 -0
- package/dist/esm/ChatbotToggle/index.d.ts +2 -0
- package/dist/esm/ChatbotToggle/index.js +2 -0
- package/dist/esm/ChatbotWelcomePrompt/ChatbotWelcomePrompt.d.ts +24 -0
- package/dist/esm/ChatbotWelcomePrompt/ChatbotWelcomePrompt.js +22 -0
- package/dist/esm/ChatbotWelcomePrompt/ChatbotWelcomePrompt.test.d.ts +1 -0
- package/dist/esm/ChatbotWelcomePrompt/ChatbotWelcomePrompt.test.js +56 -0
- package/dist/esm/ChatbotWelcomePrompt/index.d.ts +2 -0
- package/dist/esm/ChatbotWelcomePrompt/index.js +2 -0
- package/dist/esm/CodeModal/CodeModal.d.ts +44 -0
- package/dist/esm/CodeModal/CodeModal.js +130 -0
- package/dist/esm/CodeModal/CodeModal.test.d.ts +1 -0
- package/dist/esm/CodeModal/CodeModal.test.js +29 -0
- package/dist/esm/CodeModal/index.d.ts +2 -0
- package/dist/esm/CodeModal/index.js +2 -0
- package/dist/esm/Compare/Compare.d.ts +17 -0
- package/dist/esm/Compare/Compare.js +37 -0
- package/dist/esm/Compare/Compare.test.d.ts +1 -0
- package/dist/esm/Compare/Compare.test.js +13 -0
- package/dist/esm/Compare/index.d.ts +2 -0
- package/dist/esm/Compare/index.js +2 -0
- package/dist/esm/DeepThinking/DeepThinking.d.ts +35 -0
- package/dist/esm/DeepThinking/DeepThinking.js +39 -0
- package/dist/esm/DeepThinking/DeepThinking.test.d.ts +1 -0
- package/dist/esm/DeepThinking/DeepThinking.test.js +141 -0
- package/dist/esm/DeepThinking/index.d.ts +2 -0
- package/dist/esm/DeepThinking/index.js +2 -0
- package/dist/esm/FileDetails/FileDetails.d.ts +941 -0
- package/dist/esm/FileDetails/FileDetails.js +49 -0
- package/dist/esm/FileDetails/FileDetails.test.d.ts +1 -0
- package/dist/esm/FileDetails/FileDetails.test.js +37 -0
- package/dist/esm/FileDetails/index.d.ts +2 -0
- package/dist/esm/FileDetails/index.js +2 -0
- package/dist/esm/FileDetailsLabel/FileDetailsLabel.d.ts +28 -0
- package/dist/esm/FileDetailsLabel/FileDetailsLabel.js +24 -0
- package/dist/esm/FileDetailsLabel/FileDetailsLabel.test.d.ts +1 -0
- package/dist/esm/FileDetailsLabel/FileDetailsLabel.test.js +74 -0
- package/dist/esm/FileDetailsLabel/index.d.ts +2 -0
- package/dist/esm/FileDetailsLabel/index.js +2 -0
- package/dist/esm/FileDropZone/FileDropZone.d.ts +37 -0
- package/dist/esm/FileDropZone/FileDropZone.js +28 -0
- package/dist/esm/FileDropZone/FileDropZone.test.d.ts +1 -0
- package/dist/esm/FileDropZone/FileDropZone.test.js +95 -0
- package/dist/esm/FileDropZone/index.d.ts +2 -0
- package/dist/esm/FileDropZone/index.js +2 -0
- package/dist/esm/FilePreview/FilePreview.d.ts +26 -0
- package/dist/esm/FilePreview/FilePreview.js +21 -0
- package/dist/esm/FilePreview/FilePreview.test.d.ts +1 -0
- package/dist/esm/FilePreview/FilePreview.test.js +92 -0
- package/dist/esm/FilePreview/index.d.ts +2 -0
- package/dist/esm/FilePreview/index.js +2 -0
- package/dist/esm/ImagePreview/ImagePreview.d.ts +53 -0
- package/dist/esm/ImagePreview/ImagePreview.js +42 -0
- package/dist/esm/ImagePreview/ImagePreview.test.d.ts +1 -0
- package/dist/esm/ImagePreview/ImagePreview.test.js +220 -0
- package/dist/esm/ImagePreview/index.d.ts +2 -0
- package/dist/esm/ImagePreview/index.js +2 -0
- package/dist/esm/LoadingMessage/LoadingMessage.d.ts +6 -0
- package/dist/esm/LoadingMessage/LoadingMessage.js +5 -0
- package/dist/esm/LoadingMessage/LoadingMessage.test.d.ts +1 -0
- package/dist/esm/LoadingMessage/LoadingMessage.test.js +15 -0
- package/dist/esm/LoadingMessage/index.d.ts +2 -0
- package/dist/esm/LoadingMessage/index.js +2 -0
- package/dist/esm/MarkdownContent/MarkdownContent.d.ts +44 -0
- package/dist/esm/MarkdownContent/MarkdownContent.js +174 -0
- package/dist/esm/MarkdownContent/MarkdownContent.test.d.ts +1 -0
- package/dist/esm/MarkdownContent/MarkdownContent.test.js +187 -0
- package/dist/esm/MarkdownContent/index.d.ts +2 -0
- package/dist/esm/MarkdownContent/index.js +2 -0
- package/dist/esm/Message/CodeBlockMessage/CodeBlockMessage.d.ts +27 -0
- package/dist/esm/Message/CodeBlockMessage/CodeBlockMessage.js +79 -0
- package/dist/esm/Message/CodeBlockMessage/CodeBlockMessage.test.d.ts +1 -0
- package/dist/esm/Message/CodeBlockMessage/CodeBlockMessage.test.js +126 -0
- package/dist/esm/Message/ErrorMessage/ErrorMessage.d.ts +17 -0
- package/dist/esm/Message/ErrorMessage/ErrorMessage.js +21 -0
- package/dist/esm/Message/ErrorMessage/ErrorMessage.test.d.ts +1 -0
- package/dist/esm/Message/ErrorMessage/ErrorMessage.test.js +25 -0
- package/dist/esm/Message/ImageMessage/ImageMessage.d.ts +3 -0
- package/dist/esm/Message/ImageMessage/ImageMessage.js +17 -0
- package/dist/esm/Message/LinkMessage/LinkMessage.d.ts +8 -0
- package/dist/esm/Message/LinkMessage/LinkMessage.js +30 -0
- package/dist/esm/Message/ListMessage/ListItemMessage.d.ts +3 -0
- package/dist/esm/Message/ListMessage/ListItemMessage.js +19 -0
- package/dist/esm/Message/ListMessage/OrderedListMessage.d.ts +11 -0
- package/dist/esm/Message/ListMessage/OrderedListMessage.js +5 -0
- package/dist/esm/Message/ListMessage/UnorderedListMessage.d.ts +9 -0
- package/dist/esm/Message/ListMessage/UnorderedListMessage.js +5 -0
- package/dist/esm/Message/Message.d.ts +182 -0
- package/dist/esm/Message/Message.js +87 -0
- package/dist/esm/Message/Message.test.d.ts +1 -0
- package/dist/esm/Message/Message.test.js +1123 -0
- package/dist/esm/Message/MessageAndActions/MessageAndActions.d.ts +14 -0
- package/dist/esm/Message/MessageAndActions/MessageAndActions.js +18 -0
- package/dist/esm/Message/MessageAndActions/MessageAndActions.test.d.ts +1 -0
- package/dist/esm/Message/MessageAndActions/MessageAndActions.test.js +20 -0
- package/dist/esm/Message/MessageAndActions/index.d.ts +1 -0
- package/dist/esm/Message/MessageAndActions/index.js +1 -0
- package/dist/esm/Message/MessageAttachments/MessageAttachmentItem.d.ts +13 -0
- package/dist/esm/Message/MessageAttachments/MessageAttachmentItem.js +18 -0
- package/dist/esm/Message/MessageAttachments/MessageAttachmentItem.test.d.ts +1 -0
- package/dist/esm/Message/MessageAttachments/MessageAttachmentItem.test.js +20 -0
- package/dist/esm/Message/MessageAttachments/MessageAttachmentsContainer.d.ts +13 -0
- package/dist/esm/Message/MessageAttachments/MessageAttachmentsContainer.js +18 -0
- package/dist/esm/Message/MessageAttachments/MessageAttachmentsContainer.test.d.ts +1 -0
- package/dist/esm/Message/MessageAttachments/MessageAttachmentsContainer.test.js +20 -0
- package/dist/esm/Message/MessageAttachments/index.d.ts +2 -0
- package/dist/esm/Message/MessageAttachments/index.js +2 -0
- package/dist/esm/Message/MessageInput.d.ts +20 -0
- package/dist/esm/Message/MessageInput.js +23 -0
- package/dist/esm/Message/MessageLoading.d.ts +14 -0
- package/dist/esm/Message/MessageLoading.js +18 -0
- package/dist/esm/Message/MessageLoading.test.d.ts +1 -0
- package/dist/esm/Message/MessageLoading.test.js +20 -0
- package/dist/esm/Message/Plugins/index.d.ts +1 -0
- package/dist/esm/Message/Plugins/index.js +1 -0
- package/dist/esm/Message/Plugins/rehypeCodeBlockToggle.d.ts +2 -0
- package/dist/esm/Message/Plugins/rehypeCodeBlockToggle.js +20 -0
- package/dist/esm/Message/Plugins/rehypeMoveImagesOutOfParagraphs.d.ts +2 -0
- package/dist/esm/Message/Plugins/rehypeMoveImagesOutOfParagraphs.js +43 -0
- package/dist/esm/Message/QuickResponse/QuickResponse.d.ts +19 -0
- package/dist/esm/Message/QuickResponse/QuickResponse.js +29 -0
- package/dist/esm/Message/QuickResponse/QuickResponse.test.d.ts +1 -0
- package/dist/esm/Message/QuickResponse/QuickResponse.test.js +104 -0
- package/dist/esm/Message/QuickResponse/index.d.ts +1 -0
- package/dist/esm/Message/QuickResponse/index.js +1 -0
- package/dist/esm/Message/QuickStarts/FallbackImg.d.ts +13 -0
- package/dist/esm/Message/QuickStarts/FallbackImg.js +10 -0
- package/dist/esm/Message/QuickStarts/QuickStartTile.d.ts +29 -0
- package/dist/esm/Message/QuickStarts/QuickStartTile.js +39 -0
- package/dist/esm/Message/QuickStarts/QuickStartTileDescription.d.ts +23 -0
- package/dist/esm/Message/QuickStarts/QuickStartTileDescription.js +29 -0
- package/dist/esm/Message/QuickStarts/QuickStartTileDescription.test.d.ts +1 -0
- package/dist/esm/Message/QuickStarts/QuickStartTileDescription.test.js +48 -0
- package/dist/esm/Message/QuickStarts/QuickStartTileHeader.d.ts +11 -0
- package/dist/esm/Message/QuickStarts/QuickStartTileHeader.js +4 -0
- package/dist/esm/Message/QuickStarts/index.d.ts +2 -0
- package/dist/esm/Message/QuickStarts/index.js +2 -0
- package/dist/esm/Message/QuickStarts/monitor-sampleapp-quickstart-with-image.d.ts +30 -0
- package/dist/esm/Message/QuickStarts/monitor-sampleapp-quickstart-with-image.js +74 -0
- package/dist/esm/Message/QuickStarts/monitor-sampleapp-quickstart.d.ts +30 -0
- package/dist/esm/Message/QuickStarts/monitor-sampleapp-quickstart.js +74 -0
- package/dist/esm/Message/QuickStarts/types.d.ts +133 -0
- package/dist/esm/Message/QuickStarts/types.js +14 -0
- package/dist/esm/Message/SuperscriptMessage/SuperscriptMessage.d.ts +3 -0
- package/dist/esm/Message/SuperscriptMessage/SuperscriptMessage.js +3 -0
- package/dist/esm/Message/TableMessage/TableMessage.d.ts +27 -0
- package/dist/esm/Message/TableMessage/TableMessage.js +64 -0
- package/dist/esm/Message/TableMessage/TbodyMessage.d.ts +6 -0
- package/dist/esm/Message/TableMessage/TbodyMessage.js +29 -0
- package/dist/esm/Message/TableMessage/TdMessage.d.ts +4 -0
- package/dist/esm/Message/TableMessage/TdMessage.js +18 -0
- package/dist/esm/Message/TableMessage/ThMessage.d.ts +4 -0
- package/dist/esm/Message/TableMessage/ThMessage.js +18 -0
- package/dist/esm/Message/TableMessage/TheadMessage.d.ts +4 -0
- package/dist/esm/Message/TableMessage/TheadMessage.js +18 -0
- package/dist/esm/Message/TableMessage/TrMessage.d.ts +6 -0
- package/dist/esm/Message/TableMessage/TrMessage.js +33 -0
- package/dist/esm/Message/TextMessage/TextMessage.d.ts +14 -0
- package/dist/esm/Message/TextMessage/TextMessage.js +19 -0
- package/dist/esm/Message/UserFeedback/CloseButton.d.ts +10 -0
- package/dist/esm/Message/UserFeedback/CloseButton.js +6 -0
- package/dist/esm/Message/UserFeedback/UserFeedback.d.ts +55 -0
- package/dist/esm/Message/UserFeedback/UserFeedback.js +38 -0
- package/dist/esm/Message/UserFeedback/UserFeedback.test.d.ts +1 -0
- package/dist/esm/Message/UserFeedback/UserFeedback.test.js +176 -0
- package/dist/esm/Message/UserFeedback/UserFeedbackComplete.d.ts +42 -0
- package/dist/esm/Message/UserFeedback/UserFeedbackComplete.js +87 -0
- package/dist/esm/Message/UserFeedback/UserFeedbackComplete.test.d.ts +1 -0
- package/dist/esm/Message/UserFeedback/UserFeedbackComplete.test.js +238 -0
- package/dist/esm/Message/UserFeedback/index.d.ts +2 -0
- package/dist/esm/Message/UserFeedback/index.js +2 -0
- package/dist/esm/Message/index.d.ts +11 -0
- package/dist/esm/Message/index.js +11 -0
- package/dist/esm/MessageBar/AttachButton.d.ts +47 -0
- package/dist/esm/MessageBar/AttachButton.js +27 -0
- package/dist/esm/MessageBar/AttachButton.test.d.ts +1 -0
- package/dist/esm/MessageBar/AttachButton.test.js +147 -0
- package/dist/esm/MessageBar/MessageBar.d.ts +124 -0
- package/dist/esm/MessageBar/MessageBar.js +241 -0
- package/dist/esm/MessageBar/MessageBar.test.d.ts +1 -0
- package/dist/esm/MessageBar/MessageBar.test.js +333 -0
- package/dist/esm/MessageBar/MicrophoneButton.d.ts +24 -0
- package/dist/esm/MessageBar/MicrophoneButton.js +65 -0
- package/dist/esm/MessageBar/SendButton.d.ts +16 -0
- package/dist/esm/MessageBar/SendButton.js +22 -0
- package/dist/esm/MessageBar/SendButton.test.d.ts +1 -0
- package/dist/esm/MessageBar/SendButton.test.js +53 -0
- package/dist/esm/MessageBar/StopButton.d.ts +16 -0
- package/dist/esm/MessageBar/StopButton.js +21 -0
- package/dist/esm/MessageBar/StopButton.test.d.ts +1 -0
- package/dist/esm/MessageBar/StopButton.test.js +53 -0
- package/dist/esm/MessageBar/index.d.ts +5 -0
- package/dist/esm/MessageBar/index.js +5 -0
- package/dist/esm/MessageBox/JumpButton.d.ts +16 -0
- package/dist/esm/MessageBox/JumpButton.js +7 -0
- package/dist/esm/MessageBox/JumpButton.test.d.ts +1 -0
- package/dist/esm/MessageBox/JumpButton.test.js +34 -0
- package/dist/esm/MessageBox/MessageBox.d.ts +42 -0
- package/dist/esm/MessageBox/MessageBox.js +205 -0
- package/dist/esm/MessageBox/MessageBox.test.d.ts +1 -0
- package/dist/esm/MessageBox/MessageBox.test.js +230 -0
- package/dist/esm/MessageBox/index.d.ts +3 -0
- package/dist/esm/MessageBox/index.js +3 -0
- package/dist/esm/MessageDivider/MessageDivider.d.ts +9 -0
- package/dist/esm/MessageDivider/MessageDivider.js +21 -0
- package/dist/esm/MessageDivider/MessageDivider.test.d.ts +1 -0
- package/dist/esm/MessageDivider/MessageDivider.test.js +24 -0
- package/dist/esm/MessageDivider/index.d.ts +2 -0
- package/dist/esm/MessageDivider/index.js +2 -0
- package/dist/esm/Onboarding/Onboarding.d.ts +36 -0
- package/dist/esm/Onboarding/Onboarding.js +30 -0
- package/dist/esm/Onboarding/Onboarding.test.d.ts +1 -0
- package/dist/esm/Onboarding/Onboarding.test.js +75 -0
- package/dist/esm/Onboarding/index.d.ts +2 -0
- package/dist/esm/Onboarding/index.js +2 -0
- package/dist/esm/PreviewAttachment/PreviewAttachment.d.ts +34 -0
- package/dist/esm/PreviewAttachment/PreviewAttachment.js +15 -0
- package/dist/esm/PreviewAttachment/PreviewAttachment.test.d.ts +1 -0
- package/dist/esm/PreviewAttachment/PreviewAttachment.test.js +48 -0
- package/dist/esm/PreviewAttachment/index.d.ts +2 -0
- package/dist/esm/PreviewAttachment/index.js +2 -0
- package/dist/esm/ResponseActions/ResponseActionButton.d.ts +29 -0
- package/dist/esm/ResponseActions/ResponseActionButton.js +28 -0
- package/dist/esm/ResponseActions/ResponseActionButton.test.d.ts +1 -0
- package/dist/esm/ResponseActions/ResponseActionButton.test.js +49 -0
- package/dist/esm/ResponseActions/ResponseActions.d.ts +61 -0
- package/dist/esm/ResponseActions/ResponseActions.js +113 -0
- package/dist/esm/ResponseActions/ResponseActions.test.d.ts +1 -0
- package/dist/esm/ResponseActions/ResponseActions.test.js +447 -0
- package/dist/esm/ResponseActions/ResponseActionsGroups.d.ts +13 -0
- package/dist/esm/ResponseActions/ResponseActionsGroups.js +18 -0
- package/dist/esm/ResponseActions/ResponseActionsGroups.test.d.ts +1 -0
- package/dist/esm/ResponseActions/ResponseActionsGroups.test.js +20 -0
- package/dist/esm/ResponseActions/index.d.ts +3 -0
- package/dist/esm/ResponseActions/index.js +3 -0
- package/dist/esm/Settings/SettingsForm.d.ts +15 -0
- package/dist/esm/Settings/SettingsForm.js +17 -0
- package/dist/esm/Settings/SettingsForm.test.d.ts +1 -0
- package/dist/esm/Settings/SettingsForm.test.js +33 -0
- package/dist/esm/Settings/index.d.ts +2 -0
- package/dist/esm/Settings/index.js +2 -0
- package/dist/esm/SourceDetailsMenuItem/SourceDetailsMenuItem.d.ts +11 -0
- package/dist/esm/SourceDetailsMenuItem/SourceDetailsMenuItem.js +18 -0
- package/dist/esm/SourceDetailsMenuItem/index.d.ts +2 -0
- package/dist/esm/SourceDetailsMenuItem/index.js +2 -0
- package/dist/esm/SourcesCard/SourcesCard.d.ts +65 -0
- package/dist/esm/SourcesCard/SourcesCard.js +20 -0
- package/dist/esm/SourcesCard/SourcesCard.test.d.ts +1 -0
- package/dist/esm/SourcesCard/SourcesCard.test.js +34 -0
- package/dist/esm/SourcesCard/index.d.ts +2 -0
- package/dist/esm/SourcesCard/index.js +2 -0
- package/dist/esm/SourcesCardBase/SourcesCardBase.d.ts +61 -0
- package/dist/esm/SourcesCardBase/SourcesCardBase.js +56 -0
- package/dist/esm/SourcesCardBase/SourcesCardBase.test.d.ts +1 -0
- package/dist/esm/SourcesCardBase/SourcesCardBase.test.js +194 -0
- package/dist/esm/SourcesCardBase/index.d.ts +2 -0
- package/dist/esm/SourcesCardBase/index.js +2 -0
- package/dist/esm/TermsOfUse/TermsOfUse.d.ts +36 -0
- package/dist/esm/TermsOfUse/TermsOfUse.js +30 -0
- package/dist/esm/TermsOfUse/TermsOfUse.test.d.ts +1 -0
- package/dist/esm/TermsOfUse/TermsOfUse.test.js +72 -0
- package/dist/esm/TermsOfUse/index.d.ts +2 -0
- package/dist/esm/TermsOfUse/index.js +2 -0
- package/dist/esm/ToolCall/ToolCall.d.ts +55 -0
- package/dist/esm/ToolCall/ToolCall.js +28 -0
- package/dist/esm/ToolCall/ToolCall.test.d.ts +1 -0
- package/dist/esm/ToolCall/ToolCall.test.js +196 -0
- package/dist/esm/ToolCall/index.d.ts +2 -0
- package/dist/esm/ToolCall/index.js +2 -0
- package/dist/esm/ToolResponse/ToolResponse.d.ts +47 -0
- package/dist/esm/ToolResponse/ToolResponse.js +57 -0
- package/dist/esm/ToolResponse/ToolResponse.test.d.ts +1 -0
- package/dist/esm/ToolResponse/ToolResponse.test.js +179 -0
- package/dist/esm/ToolResponse/index.d.ts +2 -0
- package/dist/esm/ToolResponse/index.js +2 -0
- package/dist/esm/__mocks__/monaco-editor.d.ts +11 -0
- package/dist/esm/__mocks__/monaco-editor.js +18 -0
- package/dist/esm/__mocks__/rehype-external-links.d.ts +2 -0
- package/dist/esm/__mocks__/rehype-external-links.js +2 -0
- package/dist/esm/__mocks__/rehype-highlight.d.ts +2 -0
- package/dist/esm/__mocks__/rehype-highlight.js +2 -0
- package/dist/esm/__mocks__/rehype-sanitize.d.ts +2 -0
- package/dist/esm/__mocks__/rehype-sanitize.js +2 -0
- package/dist/esm/__mocks__/rehype-unwrap-images.d.ts +2 -0
- package/dist/esm/__mocks__/rehype-unwrap-images.js +2 -0
- package/dist/esm/index.d.ts +74 -0
- package/dist/esm/index.js +75 -0
- package/dist/esm/tracking/console_tracking_provider.d.ts +9 -0
- package/dist/esm/tracking/console_tracking_provider.js +30 -0
- package/dist/esm/tracking/index.d.ts +2 -0
- package/dist/esm/tracking/index.js +2 -0
- package/dist/esm/tracking/posthog_tracking_provider.d.ts +9 -0
- package/dist/esm/tracking/posthog_tracking_provider.js +42 -0
- package/dist/esm/tracking/segment_tracking_provider.d.ts +10 -0
- package/dist/esm/tracking/segment_tracking_provider.js +55 -0
- package/dist/esm/tracking/trackingProviderProxy.d.ts +9 -0
- package/dist/esm/tracking/trackingProviderProxy.js +22 -0
- package/dist/esm/tracking/tracking_api.d.ts +8 -0
- package/dist/esm/tracking/tracking_api.js +1 -0
- package/dist/esm/tracking/tracking_registry.d.ts +4 -0
- package/dist/esm/tracking/tracking_registry.js +60 -0
- package/dist/esm/tracking/tracking_spi.d.ts +19 -0
- package/dist/esm/tracking/tracking_spi.js +8 -0
- package/dist/esm/tracking/umami_tracking_provider.d.ts +18 -0
- package/dist/esm/tracking/umami_tracking_provider.js +84 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/generate-fed-package-json.js +75 -0
- package/generate-index.js +42 -0
- package/package.json +96 -0
- package/patternfly-a11y.config.js +28 -0
- package/patternfly-docs/content/extensions/chatbot/chatbot.md +57 -0
- package/patternfly-docs/content/extensions/chatbot/design-guidelines.md +476 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Analytics/Analytics.md +223 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Customizing Messages/Customizing Messages.md +51 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/AttachMenu.tsx +149 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/AttachmentEdit.tsx +35 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/AttachmentError.tsx +13 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/BotMessage.tsx +367 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/FileDetails.tsx +4 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/FileDetailsLabel.tsx +65 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/FileDropZone.tsx +61 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/FilePreview.tsx +33 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/ImagePreview.tsx +53 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithAttachment.tsx +75 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithClickedResponseActions.tsx +23 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithCustomResponseActions.tsx +32 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithCustomStructure.tsx +101 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithDeepThinking.tsx +40 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithDividers.tsx +17 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithFeedback.tsx +138 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithFeedbackTimeout.tsx +25 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithIconSwapping.tsx +20 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithMarkdownDeepThinking.tsx +24 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithMarkdownToolCall.tsx +27 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithMarkdownToolResponse.tsx +198 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithMultipleActionGroups.tsx +58 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithPersistedActions.tsx +20 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithQuickResponses.tsx +81 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithQuickStart.tsx +38 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithResponseActions.tsx +43 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithSources.tsx +273 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithToolCall.tsx +54 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/MessageWithToolResponse.tsx +249 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/Messages.md +440 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/PF-social-color-square.svg +19 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/PF-social-dark-square.svg +19 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/PaperclipIcon.svg +10 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/PreviewAttachment.tsx +34 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/UserMessage.tsx +420 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/UserMessageWithExtraContent.tsx +665 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/explore-pipeline-quickstart.ts +65 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/file-preview.svg +9 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/patternfly_avatar.jpg +0 -0
- package/patternfly-docs/content/extensions/chatbot/examples/Messages/user_avatar.svg +18 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotContainer.tsx +89 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotConversationEditing.tsx +202 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotFooter.tsx +14 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotFootnote.tsx +32 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotHeaderBasic.tsx +200 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotHeaderDrawer.tsx +217 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotHeaderDrawerNavigation.tsx +67 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotHeaderDrawerResizable.tsx +105 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotHeaderDrawerWithActions.tsx +84 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotHeaderDrawerWithPin.tsx +206 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotHeaderDrawerWithSearchActions.tsx +198 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotHeaderDrawerWithSelection.tsx +87 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotHeaderTitle.tsx +75 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotMessageBar.tsx +8 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotMessageBarAttach.tsx +148 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotMessageBarCustomActions.tsx +190 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotMessageBarDisabled.tsx +26 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotMessageBarLanguage.tsx +17 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotMessageBarStop.tsx +10 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotModal.tsx +121 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotToggleBasic.tsx +13 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotWelcomeInteraction.tsx +142 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotWelcomePrompt.tsx +38 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/CompactOnboarding.tsx +141 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/CompactSettings.tsx +282 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/CustomClosedIcon.tsx +89 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/Onboarding.tsx +151 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/PF-HorizontalLogo-Color.svg +29 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/PF-HorizontalLogo-Reverse.svg +28 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/PF-IconLogo-Color.svg +17 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/PF-IconLogo-Reverse.svg +16 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/PF-TermsAndConditionsHeader.svg +148 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/RH-Hat-Image.svg +9 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/SecondaryChatbotToggle.tsx +15 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/Settings.tsx +282 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/SkipToContent.tsx +40 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/SquareChatbotToggle.tsx +14 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/TermsOfUse.tsx +190 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/TermsOfUseCompact.tsx +179 -0
- package/patternfly-docs/content/extensions/chatbot/examples/UI/UI.md +511 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/AttachmentDemos.md +150 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/Chatbot.md +205 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/Chatbot.tsx +463 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/ChatbotAttachment.tsx +307 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/ChatbotAttachmentMenu.tsx +270 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/ChatbotCompact.tsx +453 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/ChatbotDisplayMode.tsx +464 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/ChatbotInDrawer.tsx +428 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/ChatbotScrolling.tsx +514 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/ChatbotTranscripts.tsx +540 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/EmbeddedChatbot.tsx +414 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/EmbeddedComparisonChatbot.tsx +208 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/Feedback.tsx +104 -0
- package/patternfly-docs/content/extensions/chatbot/examples/demos/WhiteEmbeddedChatbot.tsx +429 -0
- package/patternfly-docs/content/extensions/chatbot/images.css +6 -0
- package/patternfly-docs/content/extensions/chatbot/img/ai-action-inpage.svg +90 -0
- package/patternfly-docs/content/extensions/chatbot/img/ai-action-message.svg +69 -0
- package/patternfly-docs/content/extensions/chatbot/img/analytics-example.svg +127 -0
- package/patternfly-docs/content/extensions/chatbot/img/attached-file.svg +41 -0
- package/patternfly-docs/content/extensions/chatbot/img/attachment-error.svg +12 -0
- package/patternfly-docs/content/extensions/chatbot/img/attachment-menu.svg +157 -0
- package/patternfly-docs/content/extensions/chatbot/img/attachment-unsent.svg +48 -0
- package/patternfly-docs/content/extensions/chatbot/img/avatar-options.svg +423 -0
- package/patternfly-docs/content/extensions/chatbot/img/chatbot-analytics.svg +51 -0
- package/patternfly-docs/content/extensions/chatbot/img/chatbot-elements.svg +144 -0
- package/patternfly-docs/content/extensions/chatbot/img/chatbot-quickstarts-tile.svg +62 -0
- package/patternfly-docs/content/extensions/chatbot/img/chatbot-settings.svg +83 -0
- package/patternfly-docs/content/extensions/chatbot/img/chatbot-toggle-notification.svg +25 -0
- package/patternfly-docs/content/extensions/chatbot/img/chatbot-toggle.svg +41 -0
- package/patternfly-docs/content/extensions/chatbot/img/comparison.svg +44 -0
- package/patternfly-docs/content/extensions/chatbot/img/conversation-history.svg +55 -0
- package/patternfly-docs/content/extensions/chatbot/img/custom-source-card.svg +37 -0
- package/patternfly-docs/content/extensions/chatbot/img/display-menu.svg +134 -0
- package/patternfly-docs/content/extensions/chatbot/img/docked.svg +405 -0
- package/patternfly-docs/content/extensions/chatbot/img/download-chat-history.svg +55 -0
- package/patternfly-docs/content/extensions/chatbot/img/download-header.svg +138 -0
- package/patternfly-docs/content/extensions/chatbot/img/download-message-action.svg +26 -0
- package/patternfly-docs/content/extensions/chatbot/img/drawer.svg +298 -0
- package/patternfly-docs/content/extensions/chatbot/img/embedded.svg +174 -0
- package/patternfly-docs/content/extensions/chatbot/img/error-state.svg +37 -0
- package/patternfly-docs/content/extensions/chatbot/img/feedback-form.svg +91 -0
- package/patternfly-docs/content/extensions/chatbot/img/footnote.svg +82 -0
- package/patternfly-docs/content/extensions/chatbot/img/fullscreen.svg +128 -0
- package/patternfly-docs/content/extensions/chatbot/img/listening-pulse.svg +22 -0
- package/patternfly-docs/content/extensions/chatbot/img/listening.svg +65 -0
- package/patternfly-docs/content/extensions/chatbot/img/loading-state.svg +33 -0
- package/patternfly-docs/content/extensions/chatbot/img/masthead-toggle-notification.svg +54 -0
- package/patternfly-docs/content/extensions/chatbot/img/masthead-toggle.svg +80 -0
- package/patternfly-docs/content/extensions/chatbot/img/message-bar-elements.svg +23 -0
- package/patternfly-docs/content/extensions/chatbot/img/message-elements.svg +115 -0
- package/patternfly-docs/content/extensions/chatbot/img/message-feedback.svg +56 -0
- package/patternfly-docs/content/extensions/chatbot/img/message-responses.svg +67 -0
- package/patternfly-docs/content/extensions/chatbot/img/new-chat-emptystate.svg +30 -0
- package/patternfly-docs/content/extensions/chatbot/img/new-chat-in-nav.svg +21 -0
- package/patternfly-docs/content/extensions/chatbot/img/no-results-emptystate.svg +30 -0
- package/patternfly-docs/content/extensions/chatbot/img/overlay.svg +331 -0
- package/patternfly-docs/content/extensions/chatbot/img/posthog.svg +30 -0
- package/patternfly-docs/content/extensions/chatbot/img/quick-response-confirmation.svg +73 -0
- package/patternfly-docs/content/extensions/chatbot/img/segment.svg +36 -0
- package/patternfly-docs/content/extensions/chatbot/img/settings-menu.svg +130 -0
- package/patternfly-docs/content/extensions/chatbot/img/source-card-expanded.svg +171 -0
- package/patternfly-docs/content/extensions/chatbot/img/source-card-summary.svg +87 -0
- package/patternfly-docs/content/extensions/chatbot/img/source-card.svg +80 -0
- package/patternfly-docs/content/extensions/chatbot/img/source-tile-expanded.svg +134 -0
- package/patternfly-docs/content/extensions/chatbot/img/source-tile-summary.svg +82 -0
- package/patternfly-docs/content/extensions/chatbot/img/source-tile.svg +75 -0
- package/patternfly-docs/content/extensions/chatbot/img/starting-new-chat.svg +57 -0
- package/patternfly-docs/content/extensions/chatbot/img/stop-button.svg +69 -0
- package/patternfly-docs/content/extensions/chatbot/img/thank-you-card.svg +89 -0
- package/patternfly-docs/content/extensions/chatbot/img/toggle-customizations.svg +12 -0
- package/patternfly-docs/content/extensions/chatbot/img/toggle-tooltips.svg +55 -0
- package/patternfly-docs/content/extensions/chatbot/img/umami.svg +30 -0
- package/patternfly-docs/content/extensions/chatbot/img/welcome-elements.svg +78 -0
- package/patternfly-docs/content/extensions/chatbot/img/welcome-message.svg +94 -0
- package/patternfly-docs/pages/index.js +27 -0
- package/patternfly-docs/patternfly-docs.config.js +9 -0
- package/patternfly-docs/patternfly-docs.css.js +9 -0
- package/patternfly-docs/patternfly-docs.routes.js +12 -0
- package/patternfly-docs/patternfly-docs.source.js +24 -0
- package/release.config.js +18 -0
- package/src/AttachMenu/AttachMenu.scss +62 -0
- package/src/AttachMenu/AttachMenu.tsx +92 -0
- package/src/AttachMenu/index.ts +3 -0
- package/src/AttachmentEdit/AttachmentEdit.test.tsx +99 -0
- package/src/AttachmentEdit/AttachmentEdit.tsx +85 -0
- package/src/AttachmentEdit/index.ts +3 -0
- package/src/Chatbot/Chatbot.scss +186 -0
- package/src/Chatbot/Chatbot.test.tsx +39 -0
- package/src/Chatbot/Chatbot.tsx +65 -0
- package/src/Chatbot/index.ts +3 -0
- package/src/ChatbotAlert/ChatbotAlert.scss +5 -0
- package/src/ChatbotAlert/ChatbotAlert.test.tsx +30 -0
- package/src/ChatbotAlert/ChatbotAlert.tsx +32 -0
- package/src/ChatbotAlert/index.ts +3 -0
- package/src/ChatbotContent/ChatbotContent.scss +42 -0
- package/src/ChatbotContent/ChatbotContent.test.tsx +19 -0
- package/src/ChatbotContent/ChatbotContent.tsx +26 -0
- package/src/ChatbotContent/index.ts +3 -0
- package/src/ChatbotConversationHistoryNav/ChatbotConversationHistoryDropdown.test.tsx +86 -0
- package/src/ChatbotConversationHistoryNav/ChatbotConversationHistoryDropdown.tsx +80 -0
- package/src/ChatbotConversationHistoryNav/ChatbotConversationHistoryNav.scss +317 -0
- package/src/ChatbotConversationHistoryNav/ChatbotConversationHistoryNav.test.tsx +718 -0
- package/src/ChatbotConversationHistoryNav/ChatbotConversationHistoryNav.tsx +421 -0
- package/src/ChatbotConversationHistoryNav/EmptyState.tsx +44 -0
- package/src/ChatbotConversationHistoryNav/LoadingState.tsx +34 -0
- package/src/ChatbotConversationHistoryNav/index.ts +4 -0
- package/src/ChatbotFooter/ChatbotFooter.scss +94 -0
- package/src/ChatbotFooter/ChatbotFooter.test.tsx +33 -0
- package/src/ChatbotFooter/ChatbotFooter.tsx +42 -0
- package/src/ChatbotFooter/ChatbotFooternote.test.tsx +83 -0
- package/src/ChatbotFooter/ChatbotFootnote.scss +12 -0
- package/src/ChatbotFooter/ChatbotFootnote.tsx +139 -0
- package/src/ChatbotFooter/index.ts +4 -0
- package/src/ChatbotHeader/ChatbotHeader.scss +140 -0
- package/src/ChatbotHeader/ChatbotHeader.test.tsx +14 -0
- package/src/ChatbotHeader/ChatbotHeader.tsx +19 -0
- package/src/ChatbotHeader/ChatbotHeaderActions.test.tsx +16 -0
- package/src/ChatbotHeader/ChatbotHeaderActions.tsx +15 -0
- package/src/ChatbotHeader/ChatbotHeaderCloseButton.test.tsx +25 -0
- package/src/ChatbotHeader/ChatbotHeaderCloseButton.tsx +64 -0
- package/src/ChatbotHeader/ChatbotHeaderMain.test.tsx +16 -0
- package/src/ChatbotHeader/ChatbotHeaderMain.tsx +17 -0
- package/src/ChatbotHeader/ChatbotHeaderMenu.test.tsx +26 -0
- package/src/ChatbotHeader/ChatbotHeaderMenu.tsx +104 -0
- package/src/ChatbotHeader/ChatbotHeaderNewChatButton.test.tsx +25 -0
- package/src/ChatbotHeader/ChatbotHeaderNewChatButton.tsx +64 -0
- package/src/ChatbotHeader/ChatbotHeaderOptionsDropdown.test.tsx +59 -0
- package/src/ChatbotHeader/ChatbotHeaderOptionsDropdown.tsx +90 -0
- package/src/ChatbotHeader/ChatbotHeaderSelectorDropdown.test.tsx +61 -0
- package/src/ChatbotHeader/ChatbotHeaderSelectorDropdown.tsx +99 -0
- package/src/ChatbotHeader/ChatbotHeaderTitle.test.tsx +74 -0
- package/src/ChatbotHeader/ChatbotHeaderTitle.tsx +62 -0
- package/src/ChatbotHeader/index.ts +11 -0
- package/src/ChatbotModal/ChatbotModal.scss +98 -0
- package/src/ChatbotModal/ChatbotModal.test.tsx +58 -0
- package/src/ChatbotModal/ChatbotModal.tsx +47 -0
- package/src/ChatbotModal/index.ts +3 -0
- package/src/ChatbotPopover/ChatbotPopover.scss +31 -0
- package/src/ChatbotPopover/ChatbotPopover.tsx +15 -0
- package/src/ChatbotPopover/index.ts +3 -0
- package/src/ChatbotToggle/ChatbotToggle.scss +49 -0
- package/src/ChatbotToggle/ChatbotToggle.test.tsx +50 -0
- package/src/ChatbotToggle/ChatbotToggle.tsx +96 -0
- package/src/ChatbotToggle/index.ts +3 -0
- package/src/ChatbotWelcomePrompt/ChatbotWelcomePrompt.scss +58 -0
- package/src/ChatbotWelcomePrompt/ChatbotWelcomePrompt.test.tsx +84 -0
- package/src/ChatbotWelcomePrompt/ChatbotWelcomePrompt.tsx +77 -0
- package/src/ChatbotWelcomePrompt/__snapshots__/ChatbotWelcomePrompt.test.tsx.snap +29 -0
- package/src/ChatbotWelcomePrompt/index.ts +3 -0
- package/src/CodeModal/CodeModal.scss +97 -0
- package/src/CodeModal/CodeModal.test.tsx +51 -0
- package/src/CodeModal/CodeModal.tsx +252 -0
- package/src/CodeModal/index.ts +3 -0
- package/src/Compare/Compare.scss +72 -0
- package/src/Compare/Compare.test.tsx +30 -0
- package/src/Compare/Compare.tsx +99 -0
- package/src/Compare/index.ts +2 -0
- package/src/DeepThinking/DeepThinking.scss +24 -0
- package/src/DeepThinking/DeepThinking.test.tsx +193 -0
- package/src/DeepThinking/DeepThinking.tsx +130 -0
- package/src/DeepThinking/index.ts +3 -0
- package/src/FileDetails/FileDetails.scss +35 -0
- package/src/FileDetails/FileDetails.test.tsx +38 -0
- package/src/FileDetails/FileDetails.tsx +1047 -0
- package/src/FileDetails/__snapshots__/FileDetails.test.tsx.snap +80 -0
- package/src/FileDetails/index.ts +2 -0
- package/src/FileDetailsLabel/FileDetailsLabel.scss +71 -0
- package/src/FileDetailsLabel/FileDetailsLabel.test.tsx +67 -0
- package/src/FileDetailsLabel/FileDetailsLabel.tsx +79 -0
- package/src/FileDetailsLabel/__snapshots__/FileDetailsLabel.test.tsx.snap +96 -0
- package/src/FileDetailsLabel/index.ts +2 -0
- package/src/FileDropZone/FileDropZone.scss +56 -0
- package/src/FileDropZone/FileDropZone.test.tsx +126 -0
- package/src/FileDropZone/FileDropZone.tsx +96 -0
- package/src/FileDropZone/__snapshots__/FileDropZone.test.tsx.snap +19 -0
- package/src/FileDropZone/index.ts +3 -0
- package/src/FilePreview/FilePreview.scss +22 -0
- package/src/FilePreview/FilePreview.test.tsx +112 -0
- package/src/FilePreview/FilePreview.tsx +58 -0
- package/src/FilePreview/index.ts +3 -0
- package/src/ImagePreview/ImagePreview.scss +61 -0
- package/src/ImagePreview/ImagePreview.test.tsx +253 -0
- package/src/ImagePreview/ImagePreview.tsx +200 -0
- package/src/ImagePreview/index.ts +3 -0
- package/src/LoadingMessage/LoadingMessage.test.tsx +15 -0
- package/src/LoadingMessage/LoadingMessage.tsx +27 -0
- package/src/LoadingMessage/__snapshots__/LoadingMessage.test.tsx.snap +64 -0
- package/src/LoadingMessage/index.ts +3 -0
- package/src/MarkdownContent/MarkdownContent.test.tsx +207 -0
- package/src/MarkdownContent/MarkdownContent.tsx +269 -0
- package/src/MarkdownContent/index.ts +2 -0
- package/src/Message/CodeBlockMessage/CodeBlockMessage.scss +108 -0
- package/src/Message/CodeBlockMessage/CodeBlockMessage.test.tsx +171 -0
- package/src/Message/CodeBlockMessage/CodeBlockMessage.tsx +193 -0
- package/src/Message/ErrorMessage/ErrorMessage.test.tsx +38 -0
- package/src/Message/ErrorMessage/ErrorMessage.tsx +28 -0
- package/src/Message/ImageMessage/ImageMessage.scss +9 -0
- package/src/Message/ImageMessage/ImageMessage.tsx +13 -0
- package/src/Message/LinkMessage/LinkMessage.scss +5 -0
- package/src/Message/LinkMessage/LinkMessage.tsx +59 -0
- package/src/Message/ListMessage/ListItemMessage.tsx +14 -0
- package/src/Message/ListMessage/ListMessage.scss +50 -0
- package/src/Message/ListMessage/OrderedListMessage.tsx +30 -0
- package/src/Message/ListMessage/UnorderedListMessage.tsx +24 -0
- package/src/Message/Message.scss +209 -0
- package/src/Message/Message.test.tsx +1566 -0
- package/src/Message/Message.tsx +487 -0
- package/src/Message/MessageAndActions/MessageAndActions.test.tsx +23 -0
- package/src/Message/MessageAndActions/MessageAndActions.tsx +22 -0
- package/src/Message/MessageAndActions/index.ts +1 -0
- package/src/Message/MessageAttachments/MessageAttachmentItem.test.tsx +23 -0
- package/src/Message/MessageAttachments/MessageAttachmentItem.tsx +25 -0
- package/src/Message/MessageAttachments/MessageAttachmentsContainer.test.tsx +23 -0
- package/src/Message/MessageAttachments/MessageAttachmentsContainer.tsx +25 -0
- package/src/Message/MessageAttachments/index.ts +2 -0
- package/src/Message/MessageInput.tsx +63 -0
- package/src/Message/MessageLoading.scss +60 -0
- package/src/Message/MessageLoading.test.tsx +23 -0
- package/src/Message/MessageLoading.tsx +28 -0
- package/src/Message/Plugins/index.ts +1 -0
- package/src/Message/Plugins/rehypeCodeBlockToggle.ts +24 -0
- package/src/Message/Plugins/rehypeMoveImagesOutOfParagraphs.ts +53 -0
- package/src/Message/QuickResponse/QuickResponse.scss +35 -0
- package/src/Message/QuickResponse/QuickResponse.test.tsx +131 -0
- package/src/Message/QuickResponse/QuickResponse.tsx +60 -0
- package/src/Message/QuickResponse/index.ts +1 -0
- package/src/Message/QuickStarts/FallbackImg.tsx +25 -0
- package/src/Message/QuickStarts/QuickStartTile.scss +24 -0
- package/src/Message/QuickStarts/QuickStartTile.tsx +151 -0
- package/src/Message/QuickStarts/QuickStartTileDescription.test.tsx +56 -0
- package/src/Message/QuickStarts/QuickStartTileDescription.tsx +82 -0
- package/src/Message/QuickStarts/QuickStartTileHeader.tsx +21 -0
- package/src/Message/QuickStarts/index.ts +2 -0
- package/src/Message/QuickStarts/monitor-sampleapp-quickstart-with-image.ts +75 -0
- package/src/Message/QuickStarts/monitor-sampleapp-quickstart.ts +75 -0
- package/src/Message/QuickStarts/types.ts +155 -0
- package/src/Message/SuperscriptMessage/SuperscriptMessage.scss +8 -0
- package/src/Message/SuperscriptMessage/SuperscriptMessage.tsx +13 -0
- package/src/Message/TableMessage/TableMessage.scss +39 -0
- package/src/Message/TableMessage/TableMessage.tsx +103 -0
- package/src/Message/TableMessage/TbodyMessage.tsx +20 -0
- package/src/Message/TableMessage/TdMessage.tsx +10 -0
- package/src/Message/TableMessage/ThMessage.tsx +10 -0
- package/src/Message/TableMessage/TheadMessage.tsx +12 -0
- package/src/Message/TableMessage/TrMessage.tsx +27 -0
- package/src/Message/TextMessage/TextMessage.scss +147 -0
- package/src/Message/TextMessage/TextMessage.tsx +52 -0
- package/src/Message/UserFeedback/CloseButton.tsx +21 -0
- package/src/Message/UserFeedback/UserFeedback.scss +102 -0
- package/src/Message/UserFeedback/UserFeedback.test.tsx +355 -0
- package/src/Message/UserFeedback/UserFeedback.tsx +177 -0
- package/src/Message/UserFeedback/UserFeedbackComplete.test.tsx +258 -0
- package/src/Message/UserFeedback/UserFeedbackComplete.tsx +218 -0
- package/src/Message/UserFeedback/index.ts +2 -0
- package/src/Message/index.ts +12 -0
- package/src/MessageBar/AttachButton.scss +45 -0
- package/src/MessageBar/AttachButton.test.tsx +180 -0
- package/src/MessageBar/AttachButton.tsx +132 -0
- package/src/MessageBar/MessageBar.scss +176 -0
- package/src/MessageBar/MessageBar.test.tsx +506 -0
- package/src/MessageBar/MessageBar.tsx +550 -0
- package/src/MessageBar/MicrophoneButton.scss +57 -0
- package/src/MessageBar/MicrophoneButton.tsx +125 -0
- package/src/MessageBar/SendButton.scss +62 -0
- package/src/MessageBar/SendButton.test.tsx +46 -0
- package/src/MessageBar/SendButton.tsx +60 -0
- package/src/MessageBar/StopButton.scss +45 -0
- package/src/MessageBar/StopButton.test.tsx +45 -0
- package/src/MessageBar/StopButton.tsx +63 -0
- package/src/MessageBar/index.ts +6 -0
- package/src/MessageBox/JumpButton.scss +51 -0
- package/src/MessageBox/JumpButton.test.tsx +25 -0
- package/src/MessageBox/JumpButton.tsx +53 -0
- package/src/MessageBox/MessageBox.scss +41 -0
- package/src/MessageBox/MessageBox.test.tsx +316 -0
- package/src/MessageBox/MessageBox.tsx +354 -0
- package/src/MessageBox/index.ts +4 -0
- package/src/MessageDivider/MessageDivider.scss +43 -0
- package/src/MessageDivider/MessageDivider.test.tsx +24 -0
- package/src/MessageDivider/MessageDivider.tsx +35 -0
- package/src/MessageDivider/index.ts +3 -0
- package/src/Onboarding/Onboarding.scss +101 -0
- package/src/Onboarding/Onboarding.test.tsx +148 -0
- package/src/Onboarding/Onboarding.tsx +126 -0
- package/src/Onboarding/index.ts +3 -0
- package/src/PreviewAttachment/PreviewAttachment.test.tsx +93 -0
- package/src/PreviewAttachment/PreviewAttachment.tsx +89 -0
- package/src/PreviewAttachment/index.ts +3 -0
- package/src/ResponseActions/ResponseActionButton.test.tsx +51 -0
- package/src/ResponseActions/ResponseActionButton.tsx +88 -0
- package/src/ResponseActions/ResponseActions.scss +46 -0
- package/src/ResponseActions/ResponseActions.test.tsx +683 -0
- package/src/ResponseActions/ResponseActions.tsx +353 -0
- package/src/ResponseActions/ResponseActionsGroups.test.tsx +23 -0
- package/src/ResponseActions/ResponseActionsGroups.tsx +28 -0
- package/src/ResponseActions/index.ts +4 -0
- package/src/Settings/Settings.scss +45 -0
- package/src/Settings/SettingsForm.test.tsx +44 -0
- package/src/Settings/SettingsForm.tsx +30 -0
- package/src/Settings/index.ts +3 -0
- package/src/SourceDetailsMenuItem/SourceDetailsMenuItem.scss +33 -0
- package/src/SourceDetailsMenuItem/SourceDetailsMenuItem.tsx +36 -0
- package/src/SourceDetailsMenuItem/index.ts +2 -0
- package/src/SourcesCard/SourcesCard.scss +116 -0
- package/src/SourcesCard/SourcesCard.test.tsx +47 -0
- package/src/SourcesCard/SourcesCard.tsx +93 -0
- package/src/SourcesCard/index.ts +3 -0
- package/src/SourcesCardBase/SourcesCardBase.test.tsx +285 -0
- package/src/SourcesCardBase/SourcesCardBase.tsx +311 -0
- package/src/SourcesCardBase/index.ts +3 -0
- package/src/TermsOfUse/TermsOfUse.scss +86 -0
- package/src/TermsOfUse/TermsOfUse.test.tsx +137 -0
- package/src/TermsOfUse/TermsOfUse.tsx +123 -0
- package/src/TermsOfUse/index.ts +3 -0
- package/src/ToolCall/ToolCall.scss +37 -0
- package/src/ToolCall/ToolCall.test.tsx +275 -0
- package/src/ToolCall/ToolCall.tsx +192 -0
- package/src/ToolCall/index.ts +3 -0
- package/src/ToolResponse/ToolResponse.scss +46 -0
- package/src/ToolResponse/ToolResponse.test.tsx +227 -0
- package/src/ToolResponse/ToolResponse.tsx +172 -0
- package/src/ToolResponse/index.ts +3 -0
- package/src/__mocks__/monaco-editor.ts +19 -0
- package/src/__mocks__/rehype-external-links.ts +3 -0
- package/src/__mocks__/rehype-highlight.ts +3 -0
- package/src/__mocks__/rehype-sanitize.ts +3 -0
- package/src/__mocks__/rehype-unwrap-images.tsx +3 -0
- package/src/index.ts +112 -0
- package/src/main.scss +54 -0
- package/src/tracking/console_tracking_provider.ts +34 -0
- package/src/tracking/index.ts +3 -0
- package/src/tracking/posthog_tracking_provider.ts +49 -0
- package/src/tracking/segment_tracking_provider.ts +69 -0
- package/src/tracking/trackingProviderProxy.ts +28 -0
- package/src/tracking/tracking_api.ts +11 -0
- package/src/tracking/tracking_registry.ts +66 -0
- package/src/tracking/tracking_spi.ts +25 -0
- package/src/tracking/umami_tracking_provider.ts +110 -0
- package/tsconfig.cjs.json +7 -0
- package/tsconfig.json +73 -0
|
@@ -0,0 +1,2988 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
.pf-chatbot__menu.pf-v6-c-menu {
|
|
3
|
+
--pf-v6-c-menu--BorderRadius: var(--pf-t--global--border--radius--large);
|
|
4
|
+
--pf-v6-c-menu__list-item--hover--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.pf-chatbot__menu {
|
|
8
|
+
/* search input */
|
|
9
|
+
/* spacing between icon and text in menu item */
|
|
10
|
+
/* handles hover state, which uses a background */
|
|
11
|
+
}
|
|
12
|
+
.pf-chatbot__menu .pf-v6-c-text-input-group {
|
|
13
|
+
--pf-v6-c-text-input-group__text--BorderStartStartRadius: var(--pf-t--global--border--radius--pill);
|
|
14
|
+
--pf-v6-c-text-input-group__text--BorderStartEndRadius: var(--pf-t--global--border--radius--pill);
|
|
15
|
+
--pf-v6-c-text-input-group__text--BorderEndStartRadius: var(--pf-t--global--border--radius--pill);
|
|
16
|
+
--pf-v6-c-text-input-group__text--BorderEndEndRadius: var(--pf-t--global--border--radius--pill);
|
|
17
|
+
}
|
|
18
|
+
.pf-chatbot__menu .pf-v6-c-text-input-group__text-input:focus-visible {
|
|
19
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
20
|
+
}
|
|
21
|
+
.pf-chatbot__menu .pf-v6-c-menu__group {
|
|
22
|
+
/* there is spacing between groups because of this normally, even if there's no title */
|
|
23
|
+
}
|
|
24
|
+
.pf-chatbot__menu .pf-v6-c-menu__group .pf-v6-c-menu__group-title {
|
|
25
|
+
height: 0;
|
|
26
|
+
--pf-v6-c-menu__group-title--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
27
|
+
--pf-v6-c-menu__group-title--PaddingBlockEnd: 0;
|
|
28
|
+
--pf-v6-c-menu__group-title--PaddingInlineStart: 0;
|
|
29
|
+
--pf-v6-c-menu__group-title--PaddingInlineEnd: 0;
|
|
30
|
+
}
|
|
31
|
+
.pf-chatbot__menu .pf-v6-c-menu__item-main {
|
|
32
|
+
--pf-v6-c-menu__item-main--ColumnGap: var(--pf-t--global--spacer--md);
|
|
33
|
+
}
|
|
34
|
+
.pf-chatbot__menu .pf-v6-c-menu__list {
|
|
35
|
+
padding: 0rem var(--pf-t--global--spacer--md) 0rem var(--pf-t--global--spacer--md);
|
|
36
|
+
}
|
|
37
|
+
.pf-chatbot__menu .pf-v6-c-menu__list-item {
|
|
38
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
39
|
+
overflow: hidden;
|
|
40
|
+
}
|
|
41
|
+
.pf-chatbot__menu .pf-v6-c-menu__item {
|
|
42
|
+
padding-inline-start: var(--pf-t--global--spacer--md);
|
|
43
|
+
padding-inline-end: var(--pf-t--global--spacer--md);
|
|
44
|
+
}
|
|
45
|
+
.pf-chatbot__menu .pf-v6-c-menu__item-icon {
|
|
46
|
+
display: flex;
|
|
47
|
+
justify-content: center;
|
|
48
|
+
width: 21px;
|
|
49
|
+
}
|
|
50
|
+
.pf-chatbot__menu .pf-v6-c-menu__item-description {
|
|
51
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
52
|
+
}
|
|
53
|
+
.pf-chatbot__menu .pf-v6-c-divider {
|
|
54
|
+
padding: 0 var(--pf-t--global--spacer--md) 0 var(--pf-t--global--spacer--md);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.pf-chatbot {
|
|
58
|
+
position: fixed;
|
|
59
|
+
inset-block-end: var(--pf-t--global--spacer--800);
|
|
60
|
+
inset-inline-end: var(--pf-t--global--spacer--lg);
|
|
61
|
+
display: flex;
|
|
62
|
+
flex-direction: column;
|
|
63
|
+
width: 30rem;
|
|
64
|
+
height: 70vh;
|
|
65
|
+
background-color: var(--pf-t--global--background--color--floating--secondary--default);
|
|
66
|
+
border-radius: var(--pf-t--global--border--radius--medium);
|
|
67
|
+
box-shadow: var(--pf-t--global--box-shadow--lg);
|
|
68
|
+
font-size: var(--pf-t--global--font--size--md);
|
|
69
|
+
z-index: var(--pf-t--global--z-index--md);
|
|
70
|
+
-webkit-font-smoothing: antialiased;
|
|
71
|
+
-moz-osx-font-smoothing: grayscale;
|
|
72
|
+
transition: opacity 0.3s ease-out, transform 0.3s ease-out;
|
|
73
|
+
border: var(--pf-t--global--border--width--regular) solid var(--pf-t--global--border--color--subtle);
|
|
74
|
+
}
|
|
75
|
+
.pf-chatbot--hidden {
|
|
76
|
+
pointer-events: none;
|
|
77
|
+
opacity: 0;
|
|
78
|
+
transform: translateY(16px);
|
|
79
|
+
}
|
|
80
|
+
.pf-chatbot--visible {
|
|
81
|
+
opacity: 1;
|
|
82
|
+
transform: translateY(0);
|
|
83
|
+
}
|
|
84
|
+
@media screen and (max-width: 32rem) {
|
|
85
|
+
.pf-chatbot {
|
|
86
|
+
width: 100vw;
|
|
87
|
+
inset-inline-end: 0;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
@media screen and (max-height: 518px) {
|
|
91
|
+
.pf-chatbot {
|
|
92
|
+
overflow: auto;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
.pf-chatbot:not(.pf-chatbot--default) {
|
|
96
|
+
background-color: var(--pf-t--global--background--color--glass--primary--default, var(--pf-t--global--background--color--secondary--default));
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
:root:where(.pf-v6-theme-felt):not(.pf-v6-theme-glass) .pf-chatbot.pf-chatbot--default {
|
|
100
|
+
box-shadow: var(--pf-t--global--box-shadow--md);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.pf-chatbot--docked {
|
|
104
|
+
border: unset;
|
|
105
|
+
border-left: var(--pf-t--global--border--width--regular) solid var(--pf-t--global--border--color--subtle);
|
|
106
|
+
inset-block-end: 0;
|
|
107
|
+
inset-inline-end: 0;
|
|
108
|
+
padding: 0;
|
|
109
|
+
height: 100%;
|
|
110
|
+
border-radius: 0;
|
|
111
|
+
overflow: inherit;
|
|
112
|
+
}
|
|
113
|
+
:where(.pf-v6-theme-glass) .pf-chatbot--docked {
|
|
114
|
+
border-left: var(--pf-t--global--border--width--glass--default) solid var(--pf-t--global--border--color--glass--default);
|
|
115
|
+
box-shadow: var(--pf-t--global--box-shadow--md--left);
|
|
116
|
+
backdrop-filter: var(--pf-t--global--background--filter--glass--blur--primary);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
@media screen and (max-width: 30rem) {
|
|
120
|
+
.pf-chatbot--docked {
|
|
121
|
+
width: 100%;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.pf-chatbot--fullscreen {
|
|
126
|
+
border: unset;
|
|
127
|
+
inset-block-end: 0;
|
|
128
|
+
inset-inline-end: 0;
|
|
129
|
+
padding: 0;
|
|
130
|
+
width: 100%;
|
|
131
|
+
height: 100%;
|
|
132
|
+
border-radius: 0;
|
|
133
|
+
box-shadow: none;
|
|
134
|
+
}
|
|
135
|
+
:where(.pf-v6-theme-glass) .pf-chatbot--fullscreen {
|
|
136
|
+
backdrop-filter: var(--pf-t--global--background--filter--glass--blur--primary);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.pf-chatbot--embedded {
|
|
140
|
+
position: static;
|
|
141
|
+
width: 100%;
|
|
142
|
+
min-height: 100%;
|
|
143
|
+
border-radius: 0;
|
|
144
|
+
box-shadow: var(--pf-t--global--box-shadow--lg);
|
|
145
|
+
}
|
|
146
|
+
:where(.pf-v6-theme-glass) .pf-chatbot--embedded {
|
|
147
|
+
border: var(--pf-t--global--border--width--glass--default) solid var(--pf-t--global--border--color--glass--default);
|
|
148
|
+
box-shadow: var(--pf-t--global--box-shadow--md);
|
|
149
|
+
backdrop-filter: var(--pf-t--global--background--filter--glass--blur--primary);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.pf-chatbot-container {
|
|
153
|
+
height: 100%;
|
|
154
|
+
width: 100%;
|
|
155
|
+
display: flex;
|
|
156
|
+
flex-direction: column;
|
|
157
|
+
border-radius: var(--pf-t--global--border--radius--medium);
|
|
158
|
+
overflow: hidden;
|
|
159
|
+
}
|
|
160
|
+
.pf-chatbot-container--hidden {
|
|
161
|
+
pointer-events: none;
|
|
162
|
+
}
|
|
163
|
+
@media screen and (max-height: 518px) {
|
|
164
|
+
.pf-chatbot-container {
|
|
165
|
+
overflow: auto;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.pf-chatbot-container--embedded {
|
|
170
|
+
min-height: 100%;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.pf-chatbot-container--docked,
|
|
174
|
+
.pf-chatbot-container--embedded,
|
|
175
|
+
.pf-chatbot-container--fullscreen {
|
|
176
|
+
border-radius: unset;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.pf-chatbot--drawer {
|
|
180
|
+
inset-block-end: 0;
|
|
181
|
+
inset-inline-end: 0;
|
|
182
|
+
padding: 0;
|
|
183
|
+
width: 100%;
|
|
184
|
+
height: 100%;
|
|
185
|
+
border-radius: 0;
|
|
186
|
+
box-shadow: none;
|
|
187
|
+
border-color: var(--pf-t--global--border--color--subtle);
|
|
188
|
+
}
|
|
189
|
+
:where(.pf-v6-theme-glass) .pf-chatbot--drawer {
|
|
190
|
+
border: var(--pf-t--global--border--width--glass--default) solid var(--pf-t--global--border--color--glass--default);
|
|
191
|
+
box-shadow: var(--pf-t--global--box-shadow--md);
|
|
192
|
+
backdrop-filter: var(--pf-t--global--background--filter--glass--blur--primary);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.pf-chatbot--drawer .pf-chatbot-container {
|
|
196
|
+
border-radius: var(--pf-t--global--border--radius--sharp);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
:root:where(.pf-v6-theme-high-contrast) .pf-chatbot--drawer {
|
|
200
|
+
border: unset;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.pf-chatbot.pf-m-compact {
|
|
204
|
+
font-size: var(--pf-t--global--font--size--sm);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.pf-chatbot__alert {
|
|
208
|
+
position: sticky;
|
|
209
|
+
top: var(--pf-t--global--spacer--lg);
|
|
210
|
+
z-index: var(--pf-t--global--z-index--sm);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.pf-chatbot__content {
|
|
214
|
+
position: relative;
|
|
215
|
+
background-color: var(--pf-t--global--background--color--floating--secondary--default);
|
|
216
|
+
overflow-y: auto;
|
|
217
|
+
overflow: hidden;
|
|
218
|
+
flex: 1;
|
|
219
|
+
}
|
|
220
|
+
@media screen and (max-height: 518px) {
|
|
221
|
+
.pf-chatbot__content {
|
|
222
|
+
overflow: unset;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
.pf-chatbot__content.pf-m-primary {
|
|
226
|
+
background-color: var(--pf-t--global--background--color--primary--default);
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.pf-chatbot:not(.pf-chatbot--default) .pf-chatbot__content {
|
|
230
|
+
background-color: var(--pf-t--global--background--color--glass--primary--default, var(--pf-t--global--background--color--secondary--default));
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
@media screen and (min-width: 64rem) {
|
|
234
|
+
.pf-chatbot--drawer .pf-chatbot__content,
|
|
235
|
+
.pf-chatbot--fullscreen .pf-chatbot__content,
|
|
236
|
+
.pf-chatbot--embedded .pf-chatbot__content {
|
|
237
|
+
display: flex;
|
|
238
|
+
justify-content: center;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
.pf-chatbot__history .pf-chatbot__drawer-backdrop {
|
|
242
|
+
position: absolute;
|
|
243
|
+
border-radius: var(--pf-t--global--border--radius--medium);
|
|
244
|
+
}
|
|
245
|
+
.pf-chatbot__history .pf-chatbot__heading-divider {
|
|
246
|
+
padding-inline-start: var(--pf-t--global--spacer--lg);
|
|
247
|
+
padding-inline-end: var(--pf-t--global--spacer--lg);
|
|
248
|
+
}
|
|
249
|
+
.pf-chatbot__history .pf-chatbot__heading-container {
|
|
250
|
+
padding-inline-start: var(--pf-t--global--spacer--lg);
|
|
251
|
+
padding-inline-end: var(--pf-t--global--spacer--lg);
|
|
252
|
+
display: flex;
|
|
253
|
+
flex-direction: column;
|
|
254
|
+
row-gap: var(--pf-t--global--spacer--sm);
|
|
255
|
+
}
|
|
256
|
+
.pf-chatbot__history .pf-chatbot__title {
|
|
257
|
+
font-size: var(--pf-v6-c-title--m-h3--FontSize);
|
|
258
|
+
font-weight: var(--pf-v6-c-title--m-h3--FontWeight);
|
|
259
|
+
line-height: var(--pf-v6-c-title--m-h3--LineHeight);
|
|
260
|
+
}
|
|
261
|
+
.pf-chatbot__history .pf-chatbot__title-container {
|
|
262
|
+
display: flex;
|
|
263
|
+
flex-direction: row;
|
|
264
|
+
align-items: baseline;
|
|
265
|
+
justify-content: flex-start;
|
|
266
|
+
gap: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
267
|
+
}
|
|
268
|
+
.pf-chatbot__history .pf-chatbot__history-search-actions .pf-v6-c-button.pf-m-control {
|
|
269
|
+
--pf-v6-c-button--m-control--PaddingInlineStart: var(--pf-t--global--spacer--control--horizontal--compact);
|
|
270
|
+
--pf-v6-c-button--m-control--PaddingInlineEnd: var(--pf-t--global--spacer--control--horizontal--compact);
|
|
271
|
+
}
|
|
272
|
+
.pf-chatbot__history .pf-chatbot__input {
|
|
273
|
+
width: 100%;
|
|
274
|
+
}
|
|
275
|
+
.pf-chatbot__history .pf-v6-c-menu {
|
|
276
|
+
--pf-v6-c-menu--PaddingBlockStart: 0;
|
|
277
|
+
--pf-v6-c-menu--BackgroundColor: var(--pf-t--global--background--color--floating--default);
|
|
278
|
+
--pf-v6-c-menu--BorderWidth: 0;
|
|
279
|
+
overflow: initial;
|
|
280
|
+
position: relative;
|
|
281
|
+
}
|
|
282
|
+
.pf-chatbot__history .pf-v6-c-menu__item-main {
|
|
283
|
+
--pf-v6-c-menu__item-main--ColumnGap: var(--pf-t--global--spacer--md);
|
|
284
|
+
}
|
|
285
|
+
.pf-chatbot__history .pf-chatbot__menu-item-header > .pf-v6-c-menu__group-title {
|
|
286
|
+
color: var(--pf-t--global--text--color--subtle);
|
|
287
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
288
|
+
font-size: var(--pf-t--global--icon--size--font--sm);
|
|
289
|
+
--pf-v6-c-menu__group-title--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
|
290
|
+
--pf-v6-c-menu__group-title--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
291
|
+
position: -webkit-sticky;
|
|
292
|
+
position: sticky;
|
|
293
|
+
top: 0;
|
|
294
|
+
background-color: var(--pf-t--global--background--color--floating--default);
|
|
295
|
+
z-index: var(--pf-t--global--z-index--md);
|
|
296
|
+
}
|
|
297
|
+
.pf-chatbot__history .pf-chatbot__menu-item {
|
|
298
|
+
--pf-v6-c-menu__item--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
|
299
|
+
--pf-v6-c-menu__item--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
300
|
+
--pf-v6-c-menu__list-item--BorderWidth: 0;
|
|
301
|
+
padding-block-start: var(--pf-t--global--spacer--xs);
|
|
302
|
+
padding-block-end: var(--pf-t--global--spacer--xs);
|
|
303
|
+
color: var(--pf-t--global--text--color--regular);
|
|
304
|
+
font-size: var(--pf-t--global--font--size--body--lg);
|
|
305
|
+
font-weight: var(--pf-t--global--font--weight--body--default);
|
|
306
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
307
|
+
}
|
|
308
|
+
.pf-chatbot__history li.pf-chatbot__menu-item:hover::after {
|
|
309
|
+
position: absolute;
|
|
310
|
+
inset: 0;
|
|
311
|
+
pointer-events: none;
|
|
312
|
+
content: "";
|
|
313
|
+
border: var(--pf-t--global--border--width--action--plain--hover) solid var(--pf-t--global--border--color--high-contrast);
|
|
314
|
+
border-radius: inherit;
|
|
315
|
+
}
|
|
316
|
+
.pf-chatbot__history .pf-v6-c-menu__list-item.pf-chatbot__menu-item {
|
|
317
|
+
overflow: hidden;
|
|
318
|
+
}
|
|
319
|
+
.pf-chatbot__history .pf-chatbot__history-actions {
|
|
320
|
+
transform: rotate(90deg);
|
|
321
|
+
}
|
|
322
|
+
.pf-chatbot__history .pf-chatbot__menu-item--active {
|
|
323
|
+
background-color: var(--pf-t--global--background--color--action--plain--clicked);
|
|
324
|
+
}
|
|
325
|
+
.pf-chatbot__history li.pf-chatbot__menu-item--active::after {
|
|
326
|
+
position: absolute;
|
|
327
|
+
inset: 0;
|
|
328
|
+
pointer-events: none;
|
|
329
|
+
content: "";
|
|
330
|
+
border: var(--pf-t--global--border--width--action--plain--clicked) solid var(--pf-t--global--border--color--high-contrast);
|
|
331
|
+
border-radius: inherit;
|
|
332
|
+
}
|
|
333
|
+
.pf-chatbot__history button.pf-chatbot__menu-item--active {
|
|
334
|
+
background-color: initial;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.pf-chatbot__history.pf-v6-c-drawer {
|
|
338
|
+
--pf-v6-c-drawer__panel--MinWidth: 24rem;
|
|
339
|
+
--pf-v6-c-drawer__panel--xl--MinWidth: 24rem;
|
|
340
|
+
height: 70vh;
|
|
341
|
+
}
|
|
342
|
+
.pf-chatbot__history.pf-v6-c-drawer .pf-v6-c-drawer__panel {
|
|
343
|
+
--pf-v6-c-drawer__panel--BackgroundColor: var(--pf-t--global--background--color--floating--default);
|
|
344
|
+
--pf-v6-c-drawer__panel--PaddingBlockStart: var(--pf-t--global--spacer--lg);
|
|
345
|
+
--pf-v6-c-drawer__panel--PaddingBlockEnd: var(--pf-t--global--spacer--lg);
|
|
346
|
+
--pf-v6-c-drawer__panel--RowGap: var(--pf-t--global--spacer--gap--group-to-group--vertical--default);
|
|
347
|
+
overflow-x: hidden;
|
|
348
|
+
overflow-y: hidden;
|
|
349
|
+
}
|
|
350
|
+
.pf-chatbot__history.pf-v6-c-drawer .pf-v6-c-drawer__head {
|
|
351
|
+
--pf-v6-c-drawer__head--PaddingBlockStart: 0;
|
|
352
|
+
--pf-v6-c-drawer__head--PaddingBlockEnd: 0;
|
|
353
|
+
--pf-v6-c-drawer__head--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
354
|
+
--pf-v6-c-drawer__head--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
|
|
355
|
+
display: flex;
|
|
356
|
+
align-items: center;
|
|
357
|
+
justify-content: space-between;
|
|
358
|
+
height: var(--pf-t--global--spacer--2xl);
|
|
359
|
+
}
|
|
360
|
+
.pf-chatbot__history.pf-v6-c-drawer .pf-v6-c-drawer__actions {
|
|
361
|
+
--pf-v6-c-drawer__actions--MarginBlockStart: 0;
|
|
362
|
+
--pf-v6-c-drawer__actions--MarginInlineEnd: 0;
|
|
363
|
+
display: flex;
|
|
364
|
+
align-items: center;
|
|
365
|
+
justify-content: space-between;
|
|
366
|
+
align-self: center;
|
|
367
|
+
width: 100%;
|
|
368
|
+
height: 100%;
|
|
369
|
+
}
|
|
370
|
+
.pf-chatbot__history.pf-v6-c-drawer .pf-v6-c-drawer__actions--reversed {
|
|
371
|
+
flex-direction: row-reverse;
|
|
372
|
+
}
|
|
373
|
+
.pf-chatbot__history.pf-v6-c-drawer .pf-v6-c-drawer__close .pf-v6-c-button {
|
|
374
|
+
width: var(--pf-t--global--spacer--2xl);
|
|
375
|
+
height: var(--pf-t--global--spacer--2xl);
|
|
376
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
377
|
+
justify-content: center;
|
|
378
|
+
align-items: center;
|
|
379
|
+
}
|
|
380
|
+
.pf-chatbot__history.pf-v6-c-drawer .pf-v6-c-drawer__body {
|
|
381
|
+
--pf-v6-c-drawer__panel__body--PaddingBlockStart: 0;
|
|
382
|
+
--pf-v6-c-drawer__panel__body--PaddingBlockEnd: 0;
|
|
383
|
+
--pf-v6-c-drawer__panel__body--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
384
|
+
--pf-v6-c-drawer__panel__body--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
|
|
385
|
+
overflow-y: auto;
|
|
386
|
+
display: flex;
|
|
387
|
+
flex-direction: column;
|
|
388
|
+
height: 70vh;
|
|
389
|
+
}
|
|
390
|
+
.pf-chatbot__history.pf-v6-c-drawer .pf-v6-c-drawer__panel.pf-m-resizable .pf-v6-c-drawer__panel-main {
|
|
391
|
+
row-gap: var(--pf-v6-c-drawer__panel--RowGap);
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.pf-chatbot--docked .pf-chatbot__history.pf-v6-c-drawer {
|
|
395
|
+
height: 100vh;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.pf-chatbot--drawer .pf-chatbot__history.pf-v6-c-drawer,
|
|
399
|
+
.pf-chatbot--fullscreen .pf-chatbot__history.pf-v6-c-drawer {
|
|
400
|
+
height: 100vh;
|
|
401
|
+
}
|
|
402
|
+
.pf-chatbot--drawer .pf-chatbot__history.pf-v6-c-drawer .pf-v6-c-drawer__body,
|
|
403
|
+
.pf-chatbot--fullscreen .pf-chatbot__history.pf-v6-c-drawer .pf-v6-c-drawer__body {
|
|
404
|
+
width: 100%;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.pf-chatbot--embedded .pf-chatbot__history.pf-v6-c-drawer {
|
|
408
|
+
height: 100%;
|
|
409
|
+
}
|
|
410
|
+
.pf-chatbot--embedded .pf-chatbot__history.pf-v6-c-drawer .pf-v6-c-drawer__body {
|
|
411
|
+
width: 100%;
|
|
412
|
+
height: 100%;
|
|
413
|
+
}
|
|
414
|
+
.pf-chatbot--embedded .pf-chatbot__history.pf-v6-c-drawer .pf-v6-c-drawer__panel {
|
|
415
|
+
height: 100%;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.pf-chatbot--docked .pf-chatbot__history .pf-chatbot__drawer-backdrop,
|
|
419
|
+
.pf-chatbot--drawer .pf-chatbot__history .pf-chatbot__drawer-backdrop,
|
|
420
|
+
.pf-chatbot--embedded .pf-chatbot__history .pf-chatbot__drawer-backdrop,
|
|
421
|
+
.pf-chatbot--fullscreen .pf-chatbot__history .pf-chatbot__drawer-backdrop {
|
|
422
|
+
border-radius: unset;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.pf-chatbot__history-loading {
|
|
426
|
+
display: flex;
|
|
427
|
+
padding: var(--pf-t--global--spacer--lg);
|
|
428
|
+
flex-direction: column;
|
|
429
|
+
gap: var(--pf-t--global--spacer--lg);
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.pf-chatbot__history-loading-block {
|
|
433
|
+
display: flex;
|
|
434
|
+
flex-direction: column;
|
|
435
|
+
gap: var(--pf-t--global--spacer--sm);
|
|
436
|
+
align-self: stretch;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.pf-chatbot__history.pf-m-compact .pf-v6-c-drawer__main .pf-v6-c-drawer__panel {
|
|
440
|
+
--pf-v6-c-drawer__panel--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
441
|
+
--pf-v6-c-drawer__panel--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
442
|
+
--pf-v6-c-drawer__head--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
443
|
+
--pf-v6-c-drawer__head--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
444
|
+
--pf-v6-c-drawer__panel--RowGap: var(--pf-t--global--spacer--md);
|
|
445
|
+
}
|
|
446
|
+
.pf-chatbot__history.pf-m-compact .pf-v6-c-drawer__main .pf-v6-c-drawer__body {
|
|
447
|
+
--pf-v6-c-drawer__panel__body--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
448
|
+
--pf-v6-c-drawer__panel__body--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
449
|
+
}
|
|
450
|
+
.pf-chatbot__history.pf-m-compact .pf-chatbot__menu-item {
|
|
451
|
+
font-size: var(--pf-t--global--font--size--body--md);
|
|
452
|
+
}
|
|
453
|
+
.pf-chatbot__history.pf-m-compact .pf-v6-c-drawer__head {
|
|
454
|
+
--pf-v6-c-drawer__head--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
455
|
+
--pf-v6-c-drawer__head--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
|
|
456
|
+
}
|
|
457
|
+
.pf-chatbot__history.pf-m-compact .pf-v6-c-drawer__close .pf-v6-c-button {
|
|
458
|
+
width: 2rem;
|
|
459
|
+
height: 2rem;
|
|
460
|
+
--pf-v6-c-button--m-plain--PaddingInlineEnd: var(--pf-t--global--spacer--xs);
|
|
461
|
+
--pf-v6-c-button--m-plain--PaddingInlineStart: var(--pf-t--global--spacer--xs);
|
|
462
|
+
--pf-v6-c-button--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
|
463
|
+
--pf-v6-c-button--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.pf-chatbot__footnote {
|
|
467
|
+
align-self: center;
|
|
468
|
+
}
|
|
469
|
+
.pf-chatbot__footnote .pf-v6-c-button {
|
|
470
|
+
--pf-v6-c-button--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
471
|
+
--pf-v6-c-button--FontSize: var(--pf-t--global--font--size--xs);
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.pf-chatbot__footer {
|
|
475
|
+
--pf-chatbot__footer--RowGap: var(--pf-t--global--spacer--md);
|
|
476
|
+
background-color: var(--pf-t--global--background--color--floating--secondary--default);
|
|
477
|
+
display: flex;
|
|
478
|
+
flex-direction: column;
|
|
479
|
+
row-gap: var(--pf-chatbot__footer--RowGap);
|
|
480
|
+
position: relative;
|
|
481
|
+
}
|
|
482
|
+
.pf-chatbot__footer.pf-m-primary {
|
|
483
|
+
background-color: var(--pf-t--global--background--color--primary--default);
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
.pf-chatbot:not(.pf-chatnot--default) .pf-chatbot__footer {
|
|
487
|
+
background-color: var(--pf-t--global--background--color--secondary--default);
|
|
488
|
+
}
|
|
489
|
+
:where(.pf-v6-theme-glass) .pf-chatbot:not(.pf-chatnot--default) .pf-chatbot__footer {
|
|
490
|
+
background-color: var(--pf-t--global--background--color--glass--primary--default);
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.pf-chatbot__footer-container {
|
|
494
|
+
padding: 0 var(--pf-t--global--spacer--lg) var(--pf-t--global--spacer--lg) var(--pf-t--global--spacer--lg);
|
|
495
|
+
display: flex;
|
|
496
|
+
flex-direction: column;
|
|
497
|
+
justify-content: stretch;
|
|
498
|
+
row-gap: var(--pf-chatbot__footer--RowGap);
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
@media screen and (min-width: 64rem) {
|
|
502
|
+
.pf-chatbot--embedded .pf-chatbot__footer,
|
|
503
|
+
.pf-chatbot--fullscreen .pf-chatbot__footer {
|
|
504
|
+
align-items: center;
|
|
505
|
+
}
|
|
506
|
+
.pf-chatbot--embedded .pf-chatbot__footer-container,
|
|
507
|
+
.pf-chatbot--fullscreen .pf-chatbot__footer-container {
|
|
508
|
+
width: 90%;
|
|
509
|
+
max-width: 60rem;
|
|
510
|
+
padding: var(--pf-t--global--spacer--sm) 0;
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
.pf-chatbot--docked .pf-chatbot__footer-container {
|
|
514
|
+
padding: var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--lg);
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.pf-chatbot--drawer .pf-chatbot__footer-container {
|
|
518
|
+
padding: var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--lg);
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.pf-chatbot__footer.pf-m-compact .pf-chatbot__footer-container {
|
|
522
|
+
padding: 0 var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--sm);
|
|
523
|
+
row-gap: var(--pf-t--global--spacer--sm);
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
@media screen and (min-width: 64rem) {
|
|
527
|
+
:root:where(.pf-v6-theme-high-contrast) .pf-chatbot--embedded .pf-chatbot__footer .pf-v6-c-divider,
|
|
528
|
+
:root:where(.pf-v6-theme-high-contrast) .pf-chatbot--fullscreen .pf-chatbot__footer .pf-v6-c-divider {
|
|
529
|
+
display: var(--pf-v6-hidden-visible--Display);
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.pf-chatbot__header-container {
|
|
534
|
+
display: grid;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.pf-chatbot__header {
|
|
538
|
+
display: grid;
|
|
539
|
+
grid-template-columns: 1fr auto;
|
|
540
|
+
gap: var(--pf-t--global--spacer--sm);
|
|
541
|
+
position: relative;
|
|
542
|
+
background-color: var(--pf-t--global--background--color--floating--secondary--default);
|
|
543
|
+
justify-content: space-between;
|
|
544
|
+
padding: var(--pf-t--global--spacer--lg);
|
|
545
|
+
}
|
|
546
|
+
.pf-chatbot__header .pf-chatbot__header-main {
|
|
547
|
+
display: flex;
|
|
548
|
+
gap: var(--pf-t--global--spacer--sm);
|
|
549
|
+
}
|
|
550
|
+
.pf-chatbot__header .pf-chatbot__header-main img {
|
|
551
|
+
pointer-events: none;
|
|
552
|
+
}
|
|
553
|
+
.pf-chatbot__header .pf-chatbot__title {
|
|
554
|
+
display: flex;
|
|
555
|
+
align-items: center;
|
|
556
|
+
flex: 1;
|
|
557
|
+
}
|
|
558
|
+
.pf-chatbot__header .pf-chatbot__title .pf-v6-l-bullseye {
|
|
559
|
+
width: 100%;
|
|
560
|
+
}
|
|
561
|
+
.pf-chatbot__header .pf-chatbot__title img {
|
|
562
|
+
max-height: 40px;
|
|
563
|
+
vertical-align: middle;
|
|
564
|
+
}
|
|
565
|
+
.pf-chatbot__header .pf-chatbot__menu {
|
|
566
|
+
justify-self: start;
|
|
567
|
+
}
|
|
568
|
+
.pf-chatbot__header .pf-chatbot__actions {
|
|
569
|
+
justify-self: end;
|
|
570
|
+
display: flex;
|
|
571
|
+
gap: var(--pf-t--global--spacer--sm);
|
|
572
|
+
justify-content: flex-end;
|
|
573
|
+
align-items: center;
|
|
574
|
+
}
|
|
575
|
+
.pf-chatbot__header .pf-chatbot__actions .pf-v6-c-menu-toggle.pf-m-secondary {
|
|
576
|
+
width: 160px;
|
|
577
|
+
--pf-v6-c-menu-toggle--BackgroundColor: var(--pf-t--global--background--color--control--default);
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.pf-chatbot:not(.pf-chatbot--default) .pf-chatbot__header {
|
|
581
|
+
background-color: var(--pf-t--global--background--color--secondary--default);
|
|
582
|
+
}
|
|
583
|
+
:where(.pf-v6-theme-glass) .pf-chatbot:not(.pf-chatbot--default) .pf-chatbot__header {
|
|
584
|
+
background-color: var(--pf-t--global--background--color--glass--primary--default);
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.pf-chatbot__button--toggle-options,
|
|
588
|
+
.pf-chatbot__button--toggle-menu {
|
|
589
|
+
width: 3rem;
|
|
590
|
+
height: 3rem;
|
|
591
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
592
|
+
align-items: center;
|
|
593
|
+
justify-content: center;
|
|
594
|
+
}
|
|
595
|
+
.pf-chatbot__button--toggle-options::before,
|
|
596
|
+
.pf-chatbot__button--toggle-menu::before {
|
|
597
|
+
border-radius: inherit;
|
|
598
|
+
}
|
|
599
|
+
.pf-chatbot__button--toggle-options .pf-v6-c-button__icon,
|
|
600
|
+
.pf-chatbot__button--toggle-options .pf-v6-c-menu-toggle__icon,
|
|
601
|
+
.pf-chatbot__button--toggle-menu .pf-v6-c-button__icon,
|
|
602
|
+
.pf-chatbot__button--toggle-menu .pf-v6-c-menu-toggle__icon {
|
|
603
|
+
display: flex;
|
|
604
|
+
align-items: center;
|
|
605
|
+
justify-content: center;
|
|
606
|
+
}
|
|
607
|
+
.pf-chatbot__button--toggle-options:hover .pf-v6-c-button__icon,
|
|
608
|
+
.pf-chatbot__button--toggle-options:hover .pf-v6-c-menu-toggle__icon,
|
|
609
|
+
.pf-chatbot__button--toggle-options:hover .pf-v6-c-icon__content, .pf-chatbot__button--toggle-options:focus .pf-v6-c-button__icon,
|
|
610
|
+
.pf-chatbot__button--toggle-options:focus .pf-v6-c-menu-toggle__icon,
|
|
611
|
+
.pf-chatbot__button--toggle-options:focus .pf-v6-c-icon__content,
|
|
612
|
+
.pf-chatbot__button--toggle-menu:hover .pf-v6-c-button__icon,
|
|
613
|
+
.pf-chatbot__button--toggle-menu:hover .pf-v6-c-menu-toggle__icon,
|
|
614
|
+
.pf-chatbot__button--toggle-menu:hover .pf-v6-c-icon__content,
|
|
615
|
+
.pf-chatbot__button--toggle-menu:focus .pf-v6-c-button__icon,
|
|
616
|
+
.pf-chatbot__button--toggle-menu:focus .pf-v6-c-menu-toggle__icon,
|
|
617
|
+
.pf-chatbot__button--toggle-menu:focus .pf-v6-c-icon__content {
|
|
618
|
+
color: var(--pf-t--global--icon--color--regular);
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.show-dark,
|
|
622
|
+
:where(.pf-v6-theme-dark) .show-light {
|
|
623
|
+
display: none;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
:where(.pf-v6-theme-dark) .show-dark {
|
|
627
|
+
display: revert;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
:where(.pf-v6-theme-dark) .show-dark .pf-m-picture {
|
|
631
|
+
display: inline-flex;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__header {
|
|
635
|
+
gap: var(--pf-t--global--spacer--sm);
|
|
636
|
+
padding: var(--pf-t--global--spacer--md);
|
|
637
|
+
}
|
|
638
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__header .pf-chatbot__title img {
|
|
639
|
+
max-height: 24px;
|
|
640
|
+
vertical-align: middle;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.pf-v6-c-menu-toggle.pf-chatbot__button--toggle-options.pf-m-compact,
|
|
644
|
+
.pf-chatbot__button--toggle-menu.pf-m-compact {
|
|
645
|
+
width: 2rem;
|
|
646
|
+
height: 2rem;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.pf-chatbot__header .pf-chatbot__actions .pf-v6-c-menu-toggle.pf-m-secondary.pf-m-compact {
|
|
650
|
+
width: initial;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.pf-chatbot__chatbot-modal-backdrop {
|
|
654
|
+
position: static !important;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.pf-chatbot__chatbot-modal {
|
|
658
|
+
--pf-v6-c-modal-box--BorderRadius: var(--pf-t--global--border--radius--medium) !important;
|
|
659
|
+
position: fixed !important;
|
|
660
|
+
inset-block-end: var(--pf-t--global--spacer--800);
|
|
661
|
+
inset-inline-end: var(--pf-t--global--spacer--lg);
|
|
662
|
+
width: 30rem !important;
|
|
663
|
+
height: 70vh;
|
|
664
|
+
}
|
|
665
|
+
.pf-chatbot__chatbot-modal .pf-v6-c-modal-box__title {
|
|
666
|
+
--pf-v6-c-modal-box__title--FontSize: var(--pf-t--global--font--size--heading--h3);
|
|
667
|
+
}
|
|
668
|
+
.pf-chatbot__chatbot-modal .pf-v6-c-modal-box__footer {
|
|
669
|
+
padding-block-start: var(--pf-t--global--spacer--xl);
|
|
670
|
+
padding-block-end: var(--pf-t--global--spacer--xl);
|
|
671
|
+
border-top: var(--pf-t--global--border--width--high-contrast--regular) solid var(--pf-t--global--border--color--high-contrast);
|
|
672
|
+
}
|
|
673
|
+
.pf-chatbot__chatbot-modal .pf-v6-c-modal-box__header {
|
|
674
|
+
padding-block-end: var(--pf-t--global--spacer--sm);
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
@media screen and (max-width: 600px) {
|
|
678
|
+
.pf-chatbot__chatbot-modal--embedded,
|
|
679
|
+
.pf-chatbot__chatbot-modal--fullscreen {
|
|
680
|
+
inset-block-end: 0;
|
|
681
|
+
inset-inline-end: 0;
|
|
682
|
+
width: 100%;
|
|
683
|
+
height: 100%;
|
|
684
|
+
top: 50%;
|
|
685
|
+
left: 50%;
|
|
686
|
+
transform: translate(-50%, -50%);
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
@media screen and (min-width: 601px) {
|
|
690
|
+
.pf-chatbot__chatbot-modal--embedded,
|
|
691
|
+
.pf-chatbot__chatbot-modal--fullscreen {
|
|
692
|
+
inset-block-end: 0;
|
|
693
|
+
inset-inline-end: 0;
|
|
694
|
+
width: 50% !important;
|
|
695
|
+
height: fit-content !important;
|
|
696
|
+
top: 50%;
|
|
697
|
+
left: 50%;
|
|
698
|
+
transform: translate(-50%, -50%);
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
.pf-chatbot__chatbot-modal--docked {
|
|
702
|
+
height: 100vh;
|
|
703
|
+
inset-block-end: 0;
|
|
704
|
+
inset-inline-end: 0;
|
|
705
|
+
border-radius: 0 !important;
|
|
706
|
+
--pf-v6-c-modal-box--MaxHeight: 100vh !important;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.pf-v6-theme-dark .pf-v6-c-modal-box.pf-chatbot__chatbot-modal .pf-v6-c-modal-box__title {
|
|
710
|
+
color: #fff;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.pf-v6-c-backdrop.pf-chatbot__backdrop {
|
|
714
|
+
position: absolute;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.pf-chatbot__chatbot-modal.pf-m-compact .pf-v6-c-modal-box__header {
|
|
718
|
+
padding-block-end: 0;
|
|
719
|
+
}
|
|
720
|
+
.pf-chatbot__chatbot-modal.pf-m-compact .pf-v6-c-modal-box__footer {
|
|
721
|
+
padding-block-start: var(--pf-t--global--spacer--lg);
|
|
722
|
+
padding-block-end: var(--pf-t--global--spacer--lg);
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.pf-chatbot__popover .pf-v6-c-popover__arrow {
|
|
726
|
+
display: none;
|
|
727
|
+
}
|
|
728
|
+
.pf-chatbot__popover--footnote.pf-chatbot__popover img {
|
|
729
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
730
|
+
}
|
|
731
|
+
.pf-chatbot__popover--footnote.pf-chatbot__popover .pf-v6-c-content--h3 {
|
|
732
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
733
|
+
}
|
|
734
|
+
.pf-chatbot__popover--footnote.pf-chatbot__popover .pf-v6-c-content--p {
|
|
735
|
+
font-size: var(--pf-t--global--font--size--body--lg);
|
|
736
|
+
}
|
|
737
|
+
.pf-chatbot__popover--footnote.pf-chatbot__popover .pf-v6-c-button {
|
|
738
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
739
|
+
font-size: var(--pf-t--global--font--size--body--lg);
|
|
740
|
+
}
|
|
741
|
+
.pf-chatbot__popover--footnote.pf-chatbot__popover .pf-v6-c-content--a {
|
|
742
|
+
font-size: var(--pf-t--global--font--size--body--lg);
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.pf-v6-c-button.pf-chatbot__button {
|
|
746
|
+
position: fixed;
|
|
747
|
+
inset-block-end: var(--pf-t--global--spacer--md);
|
|
748
|
+
inset-inline-end: var(--pf-t--global--spacer--md);
|
|
749
|
+
--pf-v6-c-button--m-plain--BackgroundColor: var(--pf-t--global--background--color--floating--default);
|
|
750
|
+
--pf-v6-c-button--m-plain--hover--BackgroundColor: var(--pf-t--global--background--color--floating--hover);
|
|
751
|
+
--pf-v6-c-button--m-plain--m-clicked--BackgroundColor: var(--pf-t--global--background--color--floating--clicked);
|
|
752
|
+
--pf-v6-c-button--m-plain--BorderColor: var(--pf-t--global--border--color--default);
|
|
753
|
+
--pf-v6-c-button--m-plain--hover--BorderColor: var(--pf-t--global--border--color--default);
|
|
754
|
+
--pf-v6-c-button--m-plain--m-clicked--BorderColor: var(--pf-t--global--border--color--default);
|
|
755
|
+
--pf-v6-c-button--m-plain--BorderWidth: 1px;
|
|
756
|
+
--pf-v6-c-button--m-plain--hover--BorderWidth: 1px;
|
|
757
|
+
--pf-v6-c-button--m-plain--m-clicked--BorderWidth: 1px;
|
|
758
|
+
padding: var(--pf-t--global--spacer--md);
|
|
759
|
+
box-shadow: var(--pf-t--global--box-shadow--sm);
|
|
760
|
+
}
|
|
761
|
+
.pf-v6-c-button.pf-chatbot__button .pf-v6-c-button__icon {
|
|
762
|
+
display: contents;
|
|
763
|
+
}
|
|
764
|
+
.pf-v6-c-button.pf-chatbot__button svg {
|
|
765
|
+
width: var(--pf-t--global--spacer--lg);
|
|
766
|
+
height: var(--pf-t--global--spacer--lg);
|
|
767
|
+
}
|
|
768
|
+
.pf-v6-c-button.pf-chatbot__button--active {
|
|
769
|
+
--pf-v6-c-button--m-plain--BackgroundColor: var(--pf-t--global--background--color--floating--clicked);
|
|
770
|
+
}
|
|
771
|
+
.pf-v6-c-button.pf-chatbot__button--secondary {
|
|
772
|
+
--pf-v6-c-button--m-plain--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
|
773
|
+
--pf-v6-c-button--m-plain--hover--BackgroundColor: var(--pf-t--global--background--color--secondary--hover);
|
|
774
|
+
--pf-v6-c-button--m-plain--m-clicked--BackgroundColor: var(--pf-t--global--background--color--secondary--clicked);
|
|
775
|
+
}
|
|
776
|
+
.pf-v6-c-button.pf-chatbot__button--secondary.pf-chatbot__button--active {
|
|
777
|
+
--pf-v6-c-button--m-plain--BackgroundColor: var(--pf-t--global--background--color--secondary--clicked);
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.pf-chatbot__button--round {
|
|
781
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
782
|
+
width: 3rem;
|
|
783
|
+
height: 3rem;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.pf-chatbot--layout--welcome {
|
|
787
|
+
padding-block-end: var(--pf-t--global--spacer--lg);
|
|
788
|
+
flex-direction: column;
|
|
789
|
+
display: flex;
|
|
790
|
+
gap: var(--pf-t--global--spacer--lg);
|
|
791
|
+
}
|
|
792
|
+
.pf-chatbot--layout--welcome .pf-v6-c-content--h1 {
|
|
793
|
+
--pf-v6-c-content--h1--FontWeight: var(--pf-t--global--font--weight--400);
|
|
794
|
+
--pf-v6-c-content--h1--MarginBlockEnd: 0;
|
|
795
|
+
}
|
|
796
|
+
.pf-chatbot--layout--welcome .pf-chatbot__hello {
|
|
797
|
+
color: var(--pf-t--global--color--brand--default);
|
|
798
|
+
}
|
|
799
|
+
.pf-chatbot--layout--welcome .pf-chatbot__question {
|
|
800
|
+
color: var(--pf-t--global--text--color--subtle);
|
|
801
|
+
}
|
|
802
|
+
.pf-chatbot--layout--welcome .pf-chatbot__prompt-suggestions {
|
|
803
|
+
flex-direction: column;
|
|
804
|
+
display: flex;
|
|
805
|
+
gap: var(--pf-t--global--spacer--lg);
|
|
806
|
+
}
|
|
807
|
+
.pf-chatbot--layout--welcome .pf-chatbot__prompt-suggestions > * {
|
|
808
|
+
flex: 1;
|
|
809
|
+
overflow: visible;
|
|
810
|
+
height: 100%;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.pf-chatbot--layout--welcome.pf-m-compact {
|
|
814
|
+
gap: var(--pf-t--global--spacer--md);
|
|
815
|
+
padding-block-end: var(--pf-t--global--spacer--md);
|
|
816
|
+
}
|
|
817
|
+
.pf-chatbot--layout--welcome.pf-m-compact .pf-chatbot__prompt-suggestions {
|
|
818
|
+
gap: var(--pf-t--global--spacer--md);
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
@media screen and (min-width: 64rem) {
|
|
822
|
+
.pf-chatbot--fullscreen .pf-chatbot--layout--welcome .pf-chatbot__prompt-suggestions,
|
|
823
|
+
.pf-chatbot--embedded .pf-chatbot--layout--welcome .pf-chatbot__prompt-suggestions {
|
|
824
|
+
flex-direction: row;
|
|
825
|
+
align-items: baseline;
|
|
826
|
+
}
|
|
827
|
+
}
|
|
828
|
+
.pf-chatbot__code-modal .pf-v6-c-code-editor {
|
|
829
|
+
--pf-v6-c-code-editor__main--BackgroundColor: #1f1f1f;
|
|
830
|
+
--pf-v6-c-code-editor__main--BorderEndStartRadius: 0;
|
|
831
|
+
--pf-v6-c-code-editor__main--BorderEndEndRadius: 0;
|
|
832
|
+
--pf-v6-c-code-editor__tab--BorderStartEndRadius: var(--pf-t--global--border--radius--small);
|
|
833
|
+
--pf-v6-c-code-editor--m-read-only__main--BackgroundColor: #1f1f1f;
|
|
834
|
+
}
|
|
835
|
+
.pf-chatbot__code-modal .pf-v6-c-code-editor__header {
|
|
836
|
+
--pf-v6-c-code-editor__header--BorderWidth: 0;
|
|
837
|
+
background: #1f1f1f !important;
|
|
838
|
+
/** this is for the attachment editor header */
|
|
839
|
+
border-start-start-radius: var(--pf-t--global--border--radius--small);
|
|
840
|
+
border-start-end-radius: var(--pf-t--global--border--radius--small);
|
|
841
|
+
}
|
|
842
|
+
.pf-chatbot__code-modal .pf-chatbot__code-modal-body {
|
|
843
|
+
gap: var(--pf-t--global--spacer--lg);
|
|
844
|
+
}
|
|
845
|
+
.pf-chatbot__code-modal .pf-chatbot__code-modal--controls > .pf-v6-c-code-editor__header {
|
|
846
|
+
flex-direction: row-reverse;
|
|
847
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
848
|
+
}
|
|
849
|
+
.pf-chatbot__code-modal .pf-v6-c-code-editor__header::before {
|
|
850
|
+
border-block-end: none;
|
|
851
|
+
}
|
|
852
|
+
.pf-chatbot__code-modal .pf-v6-c-code-editor__header-content {
|
|
853
|
+
--pf-v6-c-code-editor__header-content--BackgroundColor: #1f1f1f;
|
|
854
|
+
--pf-v6-c-code-editor__header-content--m-plain--BackgroundColor: #1f1f1f;
|
|
855
|
+
--pf-v6-c-code-editor__header-content--BorderStartStartRadius: var(
|
|
856
|
+
--pf-t--global--border--radius--small
|
|
857
|
+
) !important;
|
|
858
|
+
--pf-v6-c-code-editor__header-content--PaddingInlineEnd: 0;
|
|
859
|
+
justify-content: flex-end;
|
|
860
|
+
}
|
|
861
|
+
.pf-chatbot__code-modal .pf-chatbot__code-modal--controls > .pf-v6-c-code-editor__header > .pf-v6-c-code-editor__header-content {
|
|
862
|
+
--pf-v6-c-code-editor__header-content--BorderStartStartRadius: 0;
|
|
863
|
+
border-start-end-radius: var(--pf-t--global--border--radius--small);
|
|
864
|
+
}
|
|
865
|
+
.pf-chatbot__code-modal .pf-v6-c-code-editor__tab {
|
|
866
|
+
--pf-v6-c-code-editor__tab--BackgroundColor: #1f1f1f;
|
|
867
|
+
--pf-v6-c-code-editor__tab--Color: #fff;
|
|
868
|
+
border: none;
|
|
869
|
+
--pf-v6-c-code-editor__tab--BorderStartEndRadius: 0;
|
|
870
|
+
border-start-start-radius: var(--pf-t--global--border--radius--small);
|
|
871
|
+
--pf-t--global--font--weight--body--default: var(--pf-t--global--font--weight--body--bold);
|
|
872
|
+
margin-inline-start: unset;
|
|
873
|
+
}
|
|
874
|
+
.pf-chatbot__code-modal .pf-v6-c-code-editor__tab-icon {
|
|
875
|
+
display: none;
|
|
876
|
+
}
|
|
877
|
+
.pf-chatbot__code-modal .pf-v6-c-code-editor__main {
|
|
878
|
+
border: unset;
|
|
879
|
+
--pf-v6-c-code-editor__main--BorderEndStartRadius: var(--pf-t--global--border--radius--small);
|
|
880
|
+
--pf-v6-c-code-editor__main--BorderEndEndRadius: var(--pf-t--global--border--radius--small);
|
|
881
|
+
}
|
|
882
|
+
.pf-chatbot__code-modal .pf-v6-c-code-editor__controls {
|
|
883
|
+
padding-right: var(--pf-t--global--spacer--sm);
|
|
884
|
+
}
|
|
885
|
+
.pf-chatbot__code-modal .pf-v6-c-code-editor__controls > div > .pf-v6-c-button {
|
|
886
|
+
--pf-v6-c-button--m-plain__icon--Color: #fff;
|
|
887
|
+
--pf-v6-c-button--hover__icon--Color: #fff;
|
|
888
|
+
}
|
|
889
|
+
.pf-chatbot__code-modal .pf-v6-c-code-editor__header-main {
|
|
890
|
+
display: none;
|
|
891
|
+
}
|
|
892
|
+
.pf-chatbot__code-modal .pf-v6-c-modal-box__close .pf-v6-c-button.pf-m-plain {
|
|
893
|
+
--pf-v6-c-button__icon--Color: var(--pf-t--global--icon--color--subtle);
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.pf-v6-theme-dark .pf-chatbot__code-modal .pf-v6-c-code-editor__controls > div > button {
|
|
897
|
+
--pf-v6-c-button--m-plain__icon--Color: #c7c7c7;
|
|
898
|
+
--pf-v6-c-button--hover__icon--Color: #c7c7c7;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
.pf-chatbot__code-modal-editor {
|
|
902
|
+
flex: 1;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
.pf-chatbot__code-modal--fullscreen {
|
|
906
|
+
height: inherit !important;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
.pf-chatbot__code-modal.pf-m-compact .pf-chatbot__code-modal-body {
|
|
910
|
+
gap: var(--pf-t--global--spacer--md);
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
.pf-chatbot__compare-container {
|
|
914
|
+
display: flex;
|
|
915
|
+
flex-direction: column;
|
|
916
|
+
position: relative;
|
|
917
|
+
height: 100%;
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.pf-chatbot__compare-toggle {
|
|
921
|
+
width: 100%;
|
|
922
|
+
}
|
|
923
|
+
.pf-chatbot__compare-toggle .pf-v6-c-toggle-group__button {
|
|
924
|
+
width: 100%;
|
|
925
|
+
display: flex;
|
|
926
|
+
justify-content: center;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.pf-chatbot__compare {
|
|
930
|
+
display: flex;
|
|
931
|
+
height: 100%;
|
|
932
|
+
width: 100%;
|
|
933
|
+
}
|
|
934
|
+
@media screen and (max-width: 900px) {
|
|
935
|
+
.pf-chatbot__compare {
|
|
936
|
+
overflow-y: auto;
|
|
937
|
+
}
|
|
938
|
+
}
|
|
939
|
+
.pf-chatbot__compare .pf-chatbot__compare-item:first-of-type {
|
|
940
|
+
border-right: 1px solid var(--pf-t--global--border--color--default);
|
|
941
|
+
}
|
|
942
|
+
@media screen and (max-width: 900px) {
|
|
943
|
+
.pf-chatbot__compare .pf-chatbot__compare-item:first-of-type {
|
|
944
|
+
border-right: 0px;
|
|
945
|
+
}
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.pf-chatbot__compare-item {
|
|
949
|
+
flex: 1;
|
|
950
|
+
}
|
|
951
|
+
.pf-chatbot__compare-item .pf-chatbot--embedded .pf-chatbot__messagebox {
|
|
952
|
+
width: 100%;
|
|
953
|
+
}
|
|
954
|
+
.pf-chatbot__compare-item .pf-chatbot__content {
|
|
955
|
+
padding: 0;
|
|
956
|
+
}
|
|
957
|
+
@media screen and (max-width: 900px) {
|
|
958
|
+
.pf-chatbot__compare-item .pf-chatbot.pf-chatbot--embedded {
|
|
959
|
+
height: 100%;
|
|
960
|
+
}
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
.pf-chatbot__compare-item-hidden {
|
|
964
|
+
display: block;
|
|
965
|
+
}
|
|
966
|
+
@media screen and (max-width: 900px) {
|
|
967
|
+
.pf-chatbot__compare-item-hidden {
|
|
968
|
+
display: none;
|
|
969
|
+
}
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.pf-chatbot__compare-mobile-controls {
|
|
973
|
+
padding: var(--pf-t--global--spacer--md) var(--pf-t--global--spacer--lg) 0 var(--pf-t--global--spacer--lg);
|
|
974
|
+
display: none;
|
|
975
|
+
background-color: var(--pf-t--global--background--color--secondary--default);
|
|
976
|
+
position: sticky;
|
|
977
|
+
top: 0;
|
|
978
|
+
z-index: 9999;
|
|
979
|
+
}
|
|
980
|
+
@media screen and (max-width: 900px) {
|
|
981
|
+
.pf-chatbot__compare-mobile-controls {
|
|
982
|
+
display: flex;
|
|
983
|
+
flex-direction: column;
|
|
984
|
+
gap: var(--pf-t--global--spacer--md);
|
|
985
|
+
}
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
.pf-chatbot__deep-thinking {
|
|
989
|
+
--pf-v6-c-card--BorderColor: var(--pf-t--global--border--color--default);
|
|
990
|
+
overflow: unset;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.pf-chatbot__deep-thinking-expandable-section {
|
|
994
|
+
--pf-v6-c-expandable-section--Gap: var(--pf-t--global--spacer--xs);
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
.pf-chatbot__deep-thinking-section {
|
|
998
|
+
display: flex;
|
|
999
|
+
flex-direction: column;
|
|
1000
|
+
gap: var(--pf-t--global--spacer--xs);
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
.pf-chatbot__deep-thinking-subheading {
|
|
1004
|
+
font-size: var(--pf-t--global--font--size--body--sm);
|
|
1005
|
+
font-weight: var(--pf-t--global--font--weight--body--default);
|
|
1006
|
+
color: var(--pf-t--global--text--color--subtle);
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
.pf-chatbot__deep-thinking-body {
|
|
1010
|
+
color: var(--pf-t--global--text--color--subtle);
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
.pf-chatbot__code-language {
|
|
1014
|
+
color: var(--pf-t--global--text--color--subtle);
|
|
1015
|
+
display: flex;
|
|
1016
|
+
font-size: var(--pf-t--global--icon--size--font--xs);
|
|
1017
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.pf-chatbot__code-icon {
|
|
1021
|
+
color: var(--pf-t--global--icon--color--status--custom--default);
|
|
1022
|
+
width: 24px;
|
|
1023
|
+
height: 24px;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
.pf-chatbot__image-icon {
|
|
1027
|
+
color: var(--pf-t--global--icon--color--status--info--default);
|
|
1028
|
+
width: 24px;
|
|
1029
|
+
height: 24px;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.pf-chatbot__code-fileName {
|
|
1033
|
+
font-size: var(--pf-t--global--font--size--body--default);
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
.pf-chatbot__code-file-size {
|
|
1037
|
+
color: var(--pf-t--global--text--color--subtle);
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
.pf-chatbot__file-details-example {
|
|
1041
|
+
background: var(--pf-t--global--background--color--secondary--default);
|
|
1042
|
+
height: 100px;
|
|
1043
|
+
display: flex;
|
|
1044
|
+
justify-content: center;
|
|
1045
|
+
align-items: center;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.pf-chatbot__file-label-contents {
|
|
1049
|
+
display: flex;
|
|
1050
|
+
gap: var(--pf-t--global--spacer--md);
|
|
1051
|
+
justify-content: center;
|
|
1052
|
+
align-items: center;
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
.pf-chatbot__file-label {
|
|
1056
|
+
padding: var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--md) var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--md) !important;
|
|
1057
|
+
gap: var(--pf-t--global--spacer--sm);
|
|
1058
|
+
--pf-v6-c-label--m-clickable--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
|
|
1059
|
+
--pf-v6-c-label--MaxWidth: 12rem !important;
|
|
1060
|
+
}
|
|
1061
|
+
.pf-chatbot__file-label .pf-v6-c-truncate {
|
|
1062
|
+
max-width: 9ch;
|
|
1063
|
+
}
|
|
1064
|
+
.pf-chatbot__file-label .pf-v6-c-label__content,
|
|
1065
|
+
.pf-chatbot__file-label .pf-v6-c-label__text {
|
|
1066
|
+
--pf-v6-c-label__content--MaxWidth: 100%;
|
|
1067
|
+
--pf-v6-c-label__text--MaxWidth: 100%;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
.pf-v6-c-label.pf-chatbot__file-label {
|
|
1071
|
+
--pf-v6-c-label--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
1072
|
+
--pf-v6-c-label--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
1073
|
+
--pf-v6-c-label--Color: var(--pf-t--global--text--color--regular);
|
|
1074
|
+
}
|
|
1075
|
+
.pf-v6-c-label.pf-chatbot__file-label .pf-chatbot__file-label > .pf-v6-c-label__content {
|
|
1076
|
+
--pf-v6-c-label--Color: var(--pf-t--global--background--color--primary--default);
|
|
1077
|
+
}
|
|
1078
|
+
:where(.pf-v6-theme-glass) .pf-v6-c-label.pf-chatbot__file-label {
|
|
1079
|
+
--pf-v6-c-label--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
|
1080
|
+
--pf-v6-c-label--m-clickable--hover--BackgroundColor: var(--pf-t--global--background--color--secondary--hover);
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
.pf-v6-theme-dark .pf-v6-c-label.pf-chatbot__file-label {
|
|
1084
|
+
--pf-v6-c-label--m-clickable--hover--Color: var(--pf-t--global--text--color--regular);
|
|
1085
|
+
}
|
|
1086
|
+
.pf-v6-theme-dark .pf-chatbot__file-label > .pf-v6-c-label__actions > .pf-v6-c-button.pf-m-plain > .pf-v6-c-button__icon {
|
|
1087
|
+
--pf-v6-c-button__icon--Color: var(--pf-t--global--icon--color--regular);
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
.pf-chatbot__file-label.pf-m-clickable:hover,
|
|
1091
|
+
.pf-chatbot__file-label.pf-m-clickable:focus-within {
|
|
1092
|
+
--pf-v6-c-label--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
|
1093
|
+
--pf-v6-c-label--m-clickable--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
|
1094
|
+
}
|
|
1095
|
+
.pf-chatbot__file-label.pf-m-clickable:hover .pf-chatbot__code-icon,
|
|
1096
|
+
.pf-chatbot__file-label.pf-m-clickable:focus-within .pf-chatbot__code-icon {
|
|
1097
|
+
color: var(--pf-t--global--icon--color--status--custom--hover);
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.pf-chatbot__file-label-loading .pf-v6-c-truncate {
|
|
1101
|
+
max-width: 6ch;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.pf-chatbot--embedded .pf-chatbot__file-label,
|
|
1105
|
+
.pf-chatbot--fullscreen .pf-chatbot__file-label {
|
|
1106
|
+
--pf-v6-c-label--MaxWidth: 14rem;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
.pf-chatbot__dropzone {
|
|
1110
|
+
gap: unset;
|
|
1111
|
+
flex: 1;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
.pf-chatbot__dropzone--invisible {
|
|
1115
|
+
overflow: hidden;
|
|
1116
|
+
display: grid;
|
|
1117
|
+
grid-template-rows: 1fr auto;
|
|
1118
|
+
}
|
|
1119
|
+
@media screen and (max-height: 518px) {
|
|
1120
|
+
.pf-chatbot__dropzone--invisible {
|
|
1121
|
+
overflow-y: auto;
|
|
1122
|
+
}
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
.pf-chatbot__dropzone--visible.pf-chatbot__dropzone {
|
|
1126
|
+
margin-block-start: var(--pf-t--global--spacer--lg);
|
|
1127
|
+
margin-block-end: var(--pf-t--global--spacer--lg);
|
|
1128
|
+
margin-inline-start: var(--pf-t--global--spacer--lg);
|
|
1129
|
+
margin-inline-end: var(--pf-t--global--spacer--lg);
|
|
1130
|
+
}
|
|
1131
|
+
.pf-chatbot__dropzone--visible.pf-chatbot__dropzone .pf-v6-c-multiple-file-upload__main {
|
|
1132
|
+
--pf-v6-c-multiple-file-upload__main--BorderWidth: var(--pf-t--global--border--width--regular);
|
|
1133
|
+
--pf-v6-c-multiple-file-upload__main--BorderStyle: dashed;
|
|
1134
|
+
--pf-v6-c-multiple-file-upload__main--BorderColor: var(--pf-t--global--border--color--default);
|
|
1135
|
+
--pf-v6-c-multiple-file-upload__main--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
1136
|
+
display: flex;
|
|
1137
|
+
flex-direction: column;
|
|
1138
|
+
align-items: center;
|
|
1139
|
+
justify-content: center;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
/** Used in example only */
|
|
1143
|
+
.pf-chatbot__file-drop-zone-example {
|
|
1144
|
+
border: var(--pf-t--global--border--width--divider--default) solid var(--pf-t--global--border--color--default);
|
|
1145
|
+
height: 100vh;
|
|
1146
|
+
width: 100%;
|
|
1147
|
+
padding: var(--pf-t--global--spacer--md);
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
@media screen and (max-height: 518px) {
|
|
1151
|
+
.pf-chatbot--default .pf-chatbot__dropzone--visible.pf-chatbot__dropzone {
|
|
1152
|
+
display: flex;
|
|
1153
|
+
height: 100%;
|
|
1154
|
+
overflow: hidden;
|
|
1155
|
+
}
|
|
1156
|
+
.pf-chatbot--default .pf-chatbot__dropzone--visible.pf-chatbot__dropzone .pf-v6-c-multiple-file-upload__main {
|
|
1157
|
+
width: 100%;
|
|
1158
|
+
}
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.pf-chatbot__file-preview-body {
|
|
1162
|
+
display: flex;
|
|
1163
|
+
flex-direction: column;
|
|
1164
|
+
gap: var(--pf-t--global--spacer--md);
|
|
1165
|
+
align-items: center;
|
|
1166
|
+
justify-content: center;
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
.pf-chatbot__file-preview-icon {
|
|
1170
|
+
color: var(--pf-t--global--icon--color--subtle);
|
|
1171
|
+
width: var(--pf-t--global--icon--size--2xl);
|
|
1172
|
+
height: var(--pf-t--global--icon--size--2xl);
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
.pf-chatbot__file-preview-name {
|
|
1176
|
+
font-size: var(--pf-t--global--font--size--xl);
|
|
1177
|
+
font-weight: var(--pf-t--global--font--weight--heading--default);
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.pf-chatbot__file-preview-body {
|
|
1181
|
+
color: var(--pf-t--global--text--color--subtle);
|
|
1182
|
+
font-size: var(--pf-t--global--font--size--body--lg);
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
.pf-chatbot__image-preview-body {
|
|
1186
|
+
display: flex;
|
|
1187
|
+
flex-direction: column;
|
|
1188
|
+
gap: var(--pf-t--global--spacer--lg);
|
|
1189
|
+
--pf-v6-c-label--MaxWidth: initial;
|
|
1190
|
+
--pf-v6-c-modal-box--ZIndex: var(--pf-t--global--z-index--2xl);
|
|
1191
|
+
}
|
|
1192
|
+
.pf-chatbot__image-preview-body img {
|
|
1193
|
+
flex: 1 0 0;
|
|
1194
|
+
align-self: stretch;
|
|
1195
|
+
}
|
|
1196
|
+
.pf-chatbot__image-preview-body .pf-chatbot__file-label {
|
|
1197
|
+
min-width: fit-content;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
.pf-chatbot__image-preview-stack {
|
|
1201
|
+
height: unset;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.pf-v6-c-modal-box__footer.pf-chatbot__image-preview-footer {
|
|
1205
|
+
padding-block-start: var(--pf-t--global--spacer--sm);
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
.pf-chatbot__image-preview-footer-buttons {
|
|
1209
|
+
display: flex;
|
|
1210
|
+
gap: var(--pf-t--global--spacer--xs);
|
|
1211
|
+
align-items: center;
|
|
1212
|
+
justify-content: space-between;
|
|
1213
|
+
flex: 1;
|
|
1214
|
+
}
|
|
1215
|
+
.pf-chatbot__image-preview-footer-buttons .pf-v6-c-button {
|
|
1216
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
1217
|
+
padding: var(--pf-t--global--spacer--sm);
|
|
1218
|
+
width: 2.31rem;
|
|
1219
|
+
height: 2.31rem;
|
|
1220
|
+
display: flex;
|
|
1221
|
+
align-items: center;
|
|
1222
|
+
justify-content: center;
|
|
1223
|
+
}
|
|
1224
|
+
.pf-chatbot__image-preview-footer-buttons button:disabled .pf-v6-c-icon__content,
|
|
1225
|
+
.pf-chatbot__image-preview-footer-buttons button[disabled] .pf-v6-c-icon__content {
|
|
1226
|
+
color: var(--pf-t--global--icon--color--disabled);
|
|
1227
|
+
}
|
|
1228
|
+
.pf-chatbot__image-preview-footer-buttons .pf-v6-c-button__text {
|
|
1229
|
+
display: flex;
|
|
1230
|
+
align-items: center;
|
|
1231
|
+
}
|
|
1232
|
+
.pf-chatbot__image-preview-footer-buttons .pf-v6-c-button:hover .pf-v6-c-button__icon,
|
|
1233
|
+
.pf-chatbot__image-preview-footer-buttons .pf-v6-c-button:focus .pf-v6-c-button__icon {
|
|
1234
|
+
color: var(--pf-t--global--icon--color--regular);
|
|
1235
|
+
}
|
|
1236
|
+
.pf-chatbot__image-preview-footer-buttons .pf-v6-c-button__icon {
|
|
1237
|
+
color: var(--pf-t--global--icon--color--subtle);
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.pf-chatbot__message {
|
|
1241
|
+
display: flex;
|
|
1242
|
+
align-items: flex-start;
|
|
1243
|
+
gap: var(--pf-t--global--spacer--lg);
|
|
1244
|
+
padding-bottom: var(--pf-t--global--spacer--lg);
|
|
1245
|
+
}
|
|
1246
|
+
.pf-chatbot__message-avatar.pf-v6-c-avatar {
|
|
1247
|
+
--pf-v6-c-avatar--BorderRadius: 0;
|
|
1248
|
+
flex-shrink: 0;
|
|
1249
|
+
position: sticky;
|
|
1250
|
+
top: var(--pf-t--global--spacer--md);
|
|
1251
|
+
object-fit: cover;
|
|
1252
|
+
pointer-events: none;
|
|
1253
|
+
}
|
|
1254
|
+
.pf-chatbot__message-avatar.pf-v6-c-avatar:not(.pf-m-colorful) {
|
|
1255
|
+
--pf-v6-c-avatar--BackgroundColor: var(--pf-t--global--background--color--floating--default);
|
|
1256
|
+
}
|
|
1257
|
+
.pf-chatbot__message-avatar.pf-chatbot__message-avatar--round.pf-v6-c-avatar {
|
|
1258
|
+
--pf-v6-c-avatar--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
1259
|
+
}
|
|
1260
|
+
.pf-chatbot__message-avatar.pf-chatbot__message-avatar--round.pf-v6-c-avatar:not(.pf-m-xl, .pf-m-lg, .pf-m-md, .pf-m-sm) {
|
|
1261
|
+
--pf-v6-c-avatar--Width: 3rem;
|
|
1262
|
+
--pf-v6-c-avatar--Height: 3rem;
|
|
1263
|
+
}
|
|
1264
|
+
.pf-chatbot__message .pf-v6-c-truncate {
|
|
1265
|
+
--pf-v6-c-truncate--MinWidth: 0ch;
|
|
1266
|
+
--pf-v6-c-truncate__start--MinWidth: 0ch;
|
|
1267
|
+
}
|
|
1268
|
+
.pf-chatbot__message-contents {
|
|
1269
|
+
display: flex;
|
|
1270
|
+
flex-direction: column;
|
|
1271
|
+
gap: var(--pf-t--global--spacer--sm);
|
|
1272
|
+
width: 100%;
|
|
1273
|
+
}
|
|
1274
|
+
.pf-chatbot__message-meta {
|
|
1275
|
+
display: flex;
|
|
1276
|
+
align-items: center;
|
|
1277
|
+
gap: var(--pf-t--global--spacer--sm);
|
|
1278
|
+
}
|
|
1279
|
+
.pf-chatbot__message-meta .pf-chatbot__message-name {
|
|
1280
|
+
font-family: var(--pf-v6-c-content--heading--FontFamily, redhatdisplayvf, redhatdisplay, helvetica, arial, sans-serif);
|
|
1281
|
+
font-weight: 600;
|
|
1282
|
+
font-size: var(--pf-t--global--font--size--sm);
|
|
1283
|
+
}
|
|
1284
|
+
.pf-chatbot__message-meta .pf-v6-c-label {
|
|
1285
|
+
--pf-v6-c-label--FontSize: var(--pf-t--global--font--size--xs);
|
|
1286
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
1287
|
+
}
|
|
1288
|
+
.pf-chatbot__message-meta .pf-v6-c-timestamp {
|
|
1289
|
+
flex: 1 0 max-content;
|
|
1290
|
+
}
|
|
1291
|
+
.pf-chatbot__message-meta time {
|
|
1292
|
+
font-size: var(--pf-t--global--font--size--xs);
|
|
1293
|
+
}
|
|
1294
|
+
.pf-chatbot__message-response {
|
|
1295
|
+
display: flex;
|
|
1296
|
+
flex-direction: column;
|
|
1297
|
+
align-items: flex-start;
|
|
1298
|
+
gap: var(--pf-t--global--font--size--sm);
|
|
1299
|
+
color: var(--pf-t--global--text--color--regular);
|
|
1300
|
+
}
|
|
1301
|
+
.pf-chatbot__message-and-actions {
|
|
1302
|
+
display: grid;
|
|
1303
|
+
gap: var(--pf-t--global--spacer--sm);
|
|
1304
|
+
}
|
|
1305
|
+
.pf-chatbot__message .pf-m-visible-interaction {
|
|
1306
|
+
opacity: 0;
|
|
1307
|
+
transition-timing-function: var(--pf-t--global--motion--timing-function--default);
|
|
1308
|
+
transition-duration: var(--pf-t--global--motion--duration--fade--short);
|
|
1309
|
+
transition-property: opacity;
|
|
1310
|
+
}
|
|
1311
|
+
.pf-chatbot__message:hover .pf-m-visible-interaction,
|
|
1312
|
+
.pf-chatbot__message .pf-m-visible-interaction:focus-within {
|
|
1313
|
+
opacity: 1;
|
|
1314
|
+
}
|
|
1315
|
+
.pf-chatbot__message .footnotes,
|
|
1316
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes {
|
|
1317
|
+
padding: var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--sm) 0 var(--pf-t--global--spacer--sm);
|
|
1318
|
+
--pf-chatbot-message-text-font-size: var(--pf-t--global--font--size--xs);
|
|
1319
|
+
--pf-chatbot-message-text-inline-code-font-size: var(--pf-t--global--font--size--xs);
|
|
1320
|
+
}
|
|
1321
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-text h1,
|
|
1322
|
+
.pf-chatbot__message .footnotes h2,
|
|
1323
|
+
.pf-chatbot__message .footnotes h3,
|
|
1324
|
+
.pf-chatbot__message .footnotes h4,
|
|
1325
|
+
.pf-chatbot__message .footnotes h5,
|
|
1326
|
+
.pf-chatbot__message .footnotes h6,
|
|
1327
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-text h1,
|
|
1328
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes h2,
|
|
1329
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes h3,
|
|
1330
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes h4,
|
|
1331
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes h5,
|
|
1332
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes h6 {
|
|
1333
|
+
--pf-v6-c-content--h1--FontSize: var(--pf-t--global--font--size--md);
|
|
1334
|
+
--pf-v6-c-content--h2--FontSize: var(--pf-t--global--font--size--md);
|
|
1335
|
+
--pf-v6-c-content--h3--FontSize: var(--pf-t--global--font--size--md);
|
|
1336
|
+
--pf-v6-c-content--h4--FontSize: var(--pf-t--global--font--size--md);
|
|
1337
|
+
--pf-v6-c-content--h5--FontSize: var(--pf-t--global--font--size--md);
|
|
1338
|
+
--pf-v6-c-content--h6--FontSize: var(--pf-t--global--font--size--md);
|
|
1339
|
+
}
|
|
1340
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-text .pf-v6-c-content,
|
|
1341
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-text .pf-v6-c-content--small,
|
|
1342
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-text .pf-v6-c-content--blockquote,
|
|
1343
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-text p,
|
|
1344
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-text a,
|
|
1345
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-text .pf-v6-c-content,
|
|
1346
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-text .pf-v6-c-content--small,
|
|
1347
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-text .pf-v6-c-content--blockquote,
|
|
1348
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-text p,
|
|
1349
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-text a {
|
|
1350
|
+
--pf-v6-c-content--FontSize: var(--pf-t--global--font--size--xs);
|
|
1351
|
+
}
|
|
1352
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-inline-code,
|
|
1353
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-text .pf-v6-c-button.pf-m-link,
|
|
1354
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-ordered-list .pf-v6-c-list,
|
|
1355
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-ordered-list ul,
|
|
1356
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-ordered-list li,
|
|
1357
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-unordered-list .pf-v6-c-list,
|
|
1358
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-unordered-list ul,
|
|
1359
|
+
.pf-chatbot__message .footnotes .pf-chatbot__message-unordered-list li,
|
|
1360
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-inline-code,
|
|
1361
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-text .pf-v6-c-button.pf-m-link,
|
|
1362
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-ordered-list .pf-v6-c-list,
|
|
1363
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-ordered-list ul,
|
|
1364
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-ordered-list li,
|
|
1365
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-unordered-list .pf-v6-c-list,
|
|
1366
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-unordered-list ul,
|
|
1367
|
+
.pf-chatbot__message .pf-chatbot__message-text.footnotes .pf-chatbot__message-unordered-list li {
|
|
1368
|
+
font-size: var(--pf-t--global--font--size--xs);
|
|
1369
|
+
}
|
|
1370
|
+
.pf-chatbot__message .footnotes {
|
|
1371
|
+
background-color: var(--pf-t--global--background--color--tertiary--default);
|
|
1372
|
+
}
|
|
1373
|
+
.pf-chatbot__message.pf-m-end {
|
|
1374
|
+
flex-direction: row-reverse;
|
|
1375
|
+
}
|
|
1376
|
+
.pf-chatbot__message.pf-m-end .pf-chatbot__message-contents {
|
|
1377
|
+
align-items: flex-end;
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
.pf-chatbot__message-attachments-container {
|
|
1381
|
+
display: flex;
|
|
1382
|
+
gap: var(--pf-t--global--spacer--md);
|
|
1383
|
+
flex-wrap: wrap;
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
.pf-chatbot__message-edit-buttons {
|
|
1387
|
+
--pf-v6-c-form__group--m-action--MarginBlockStart: 0;
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
.pf-chatbot__message-loading {
|
|
1391
|
+
width: 36px;
|
|
1392
|
+
padding: var(--pf-t--global--spacer--sm);
|
|
1393
|
+
background-color: var(--pf-t--global--background--color--tertiary--default);
|
|
1394
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
1395
|
+
border: var(--pf-t--global--border--width--high-contrast--regular) solid var(--pf-t--global--border--color--high-contrast);
|
|
1396
|
+
}
|
|
1397
|
+
.pf-chatbot__message-loading-dots {
|
|
1398
|
+
position: relative;
|
|
1399
|
+
display: flex;
|
|
1400
|
+
width: 4px;
|
|
1401
|
+
height: 4px;
|
|
1402
|
+
margin-left: var(--pf-t--global--spacer--sm);
|
|
1403
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
1404
|
+
animation: dot-flashing var(--pf-t--global--motion--duration--2xl) infinite linear alternate;
|
|
1405
|
+
animation-delay: calc(var(--pf-t--global--motion--duration--2xl) * 0.3333333333);
|
|
1406
|
+
}
|
|
1407
|
+
.pf-chatbot__message-loading-dots::before, .pf-chatbot__message-loading-dots::after {
|
|
1408
|
+
content: "";
|
|
1409
|
+
display: flex;
|
|
1410
|
+
position: absolute;
|
|
1411
|
+
inset-block-start: 0;
|
|
1412
|
+
}
|
|
1413
|
+
.pf-chatbot__message-loading-dots::before {
|
|
1414
|
+
inset-inline-start: calc(var(--pf-t--global--spacer--sm) * -1);
|
|
1415
|
+
width: 4px;
|
|
1416
|
+
height: 4px;
|
|
1417
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
1418
|
+
animation: dot-flashing var(--pf-t--global--motion--duration--2xl) infinite alternate;
|
|
1419
|
+
animation-delay: var(--pf-t--global--motion--delay--none);
|
|
1420
|
+
}
|
|
1421
|
+
.pf-chatbot__message-loading-dots::after {
|
|
1422
|
+
inset-inline-start: var(--pf-t--global--spacer--sm);
|
|
1423
|
+
width: 4px;
|
|
1424
|
+
height: 4px;
|
|
1425
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
1426
|
+
animation: dot-flashing var(--pf-t--global--motion--duration--2xl) infinite alternate;
|
|
1427
|
+
animation-delay: calc(var(--pf-t--global--motion--duration--2xl) * 0.6666666667);
|
|
1428
|
+
}
|
|
1429
|
+
@keyframes dot-flashing {
|
|
1430
|
+
0% {
|
|
1431
|
+
background-color: var(--pf-t--global--background--color--inverse--default);
|
|
1432
|
+
}
|
|
1433
|
+
50%, 100% {
|
|
1434
|
+
background-color: rgba(41, 41, 41, 0.25);
|
|
1435
|
+
}
|
|
1436
|
+
}
|
|
1437
|
+
.pf-chatbot__message-loading.pf-m-primary {
|
|
1438
|
+
background-color: var(--pf-t--global--background--color--secondary--default);
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.pf-chatbot__message-code-block {
|
|
1442
|
+
width: 100%;
|
|
1443
|
+
background-color: var(--pf-t--color--gray--80);
|
|
1444
|
+
color: var(--pf-t--color--white);
|
|
1445
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
1446
|
+
}
|
|
1447
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block {
|
|
1448
|
+
--pf-t--global--border--color--default: var(--pf-t--global--border--color--default);
|
|
1449
|
+
background-color: inherit;
|
|
1450
|
+
}
|
|
1451
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__header {
|
|
1452
|
+
--pf-v6-c-code-block__header--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
1453
|
+
--pf-v6-c-code-block__header--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
1454
|
+
--pf-v6-c-code-block__header--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
1455
|
+
--pf-v6-c-code-block__header--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
1456
|
+
color: var(--pf-t--color--white);
|
|
1457
|
+
}
|
|
1458
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__header .pf-v6-c-code-block__actions {
|
|
1459
|
+
width: 100%;
|
|
1460
|
+
}
|
|
1461
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__header .pf-chatbot__message-code-block-language {
|
|
1462
|
+
text-transform: uppercase;
|
|
1463
|
+
font-family: var(--pf-t--global--font--family--body);
|
|
1464
|
+
}
|
|
1465
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__header .pf-chatbot__message-code-block-default-action {
|
|
1466
|
+
display: flex;
|
|
1467
|
+
align-items: center;
|
|
1468
|
+
justify-content: space-between;
|
|
1469
|
+
width: 100%;
|
|
1470
|
+
font-size: var(--pf-t--global--font--size--sm);
|
|
1471
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
1472
|
+
}
|
|
1473
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__header .pf-v6-c-code-block__actions-item > .pf-v6-c-button.pf-m-plain {
|
|
1474
|
+
color: var(--pf-t--color--white);
|
|
1475
|
+
}
|
|
1476
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__header .pf-v6-c-code-block__actions-item > .pf-v6-c-button.pf-m-plain:hover, .pf-chatbot__message-code-block .pf-v6-c-code-block__header .pf-v6-c-code-block__actions-item > .pf-v6-c-button.pf-m-plain:focus {
|
|
1477
|
+
color: var(--pf-t--color--white);
|
|
1478
|
+
}
|
|
1479
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__content {
|
|
1480
|
+
--pf-v6-c-code-block__content--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
1481
|
+
--pf-v6-c-code-block__content--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
1482
|
+
--pf-v6-c-code-block__content--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
1483
|
+
--pf-v6-c-code-block__content--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
1484
|
+
font-size: var(--pf-t--global--font--size--sm);
|
|
1485
|
+
}
|
|
1486
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__content pre,
|
|
1487
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__content pre:hover {
|
|
1488
|
+
overflow: hidden;
|
|
1489
|
+
white-space: pre-wrap;
|
|
1490
|
+
word-break: break-all;
|
|
1491
|
+
}
|
|
1492
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__content pre code {
|
|
1493
|
+
display: block;
|
|
1494
|
+
overflow: hidden;
|
|
1495
|
+
font-size: var(--pf-t--global--font--size--sm);
|
|
1496
|
+
}
|
|
1497
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__content .pf-v6-c-code-block__code > div {
|
|
1498
|
+
padding: 0 !important;
|
|
1499
|
+
overflow: hidden !important;
|
|
1500
|
+
}
|
|
1501
|
+
.pf-chatbot__message-code-block.pf-m-markdown .pf-v6-c-code-block__code {
|
|
1502
|
+
font-size: inherit;
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
.pf-chatbot__message-inline-code {
|
|
1506
|
+
--pf-chatbot-message-text-inline-code-font-size: var(--pf-t--global--font--size--body--default);
|
|
1507
|
+
background-color: var(--pf-t--global--background--color--tertiary--default);
|
|
1508
|
+
font-size: var(--pf-chatbot-message-text-inline-code-font-size);
|
|
1509
|
+
border: var(--pf-t--global--border--width--high-contrast--regular) solid var(--pf-t--global--border--color--high-contrast);
|
|
1510
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
1511
|
+
padding-block-start: var(--pf-t--global--spacer--xs);
|
|
1512
|
+
padding-block-end: var(--pf-t--global--spacer--xs);
|
|
1513
|
+
padding-inline-start: var(--pf-t--global--spacer--xs);
|
|
1514
|
+
padding-inline-end: var(--pf-t--global--spacer--xs);
|
|
1515
|
+
word-break: break-word;
|
|
1516
|
+
}
|
|
1517
|
+
.pf-chatbot__message-inline-code.pf-m-primary {
|
|
1518
|
+
background-color: var(--pf-t--global--background--color--secondary--default);
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
.pf-chatbot__message-code-toggle .pf-v6-c-button.pf-m-link {
|
|
1522
|
+
--pf-v6-c-button--m-link--Color: var(--pf-t--global--color--nonstatus--blue--default);
|
|
1523
|
+
--pf-v6-c-button--hover--Color: var(--pf-t--global--color--nonstatus--blue--hover);
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
.pf-chatbot__message-and-actions {
|
|
1527
|
+
width: 100%;
|
|
1528
|
+
}
|
|
1529
|
+
.pf-chatbot__message-and-actions blockquote .pf-chatbot__message-text {
|
|
1530
|
+
display: inline-block;
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
.pf-chatbot__message-text {
|
|
1534
|
+
width: fit-content;
|
|
1535
|
+
padding: var(--pf-t--global--spacer--sm) 0 var(--pf-t--global--spacer--sm) 0;
|
|
1536
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
1537
|
+
--pf-chatbot-message-text-font-size: var(--pf-t--global--font--size--md);
|
|
1538
|
+
}
|
|
1539
|
+
.pf-chatbot__message-text .pf-v6-c-button.pf-m-link {
|
|
1540
|
+
font-size: var(--pf-chatbot-message-text-font-size);
|
|
1541
|
+
}
|
|
1542
|
+
.pf-chatbot__message-text .pf-v6-c-content,
|
|
1543
|
+
.pf-chatbot__message-text .pf-v6-c-content--small,
|
|
1544
|
+
.pf-chatbot__message-text .pf-v6-c-content--blockquote,
|
|
1545
|
+
.pf-chatbot__message-text p,
|
|
1546
|
+
.pf-chatbot__message-text a {
|
|
1547
|
+
--pf-v6-c-content--FontSize: var(--pf-chatbot-message-text-font-size);
|
|
1548
|
+
}
|
|
1549
|
+
.pf-chatbot__message-text code {
|
|
1550
|
+
background-color: var(--pf-t--global--background--color--tertiary--default);
|
|
1551
|
+
font-size: var(--pf-chatbot-message-text-inline-code-font-size);
|
|
1552
|
+
}
|
|
1553
|
+
.pf-chatbot__message-text:has(.sr-only) {
|
|
1554
|
+
clip: rect(0 0 0 0);
|
|
1555
|
+
clip-path: inset(50%);
|
|
1556
|
+
height: 1px;
|
|
1557
|
+
overflow: hidden;
|
|
1558
|
+
position: absolute;
|
|
1559
|
+
white-space: nowrap;
|
|
1560
|
+
width: 1px;
|
|
1561
|
+
}
|
|
1562
|
+
.pf-chatbot__message-text.pf-m-primary code {
|
|
1563
|
+
background-color: var(--pf-t--global--background--color--secondary--default);
|
|
1564
|
+
}
|
|
1565
|
+
.pf-chatbot__message-text.pf-m-markdown {
|
|
1566
|
+
display: block;
|
|
1567
|
+
}
|
|
1568
|
+
.pf-chatbot__message-text.pf-m-markdown > [class^=pf-v6-c-content] {
|
|
1569
|
+
font-size: inherit;
|
|
1570
|
+
color: inherit;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
li[id*=user-content-fn-]:has(> span > .pf-chatbot__message-text + .pf-chatbot__message-text) > span > .pf-chatbot__message-text > p {
|
|
1574
|
+
margin-block-end: var(--pf-t--global--spacer--md);
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
li[id*=user-content-fn-]:has(> span > span > .pf-chatbot__message-text + .pf-chatbot__message-text) > span > span > .pf-chatbot__message-text > p {
|
|
1578
|
+
margin-block-end: var(--pf-t--global--spacer--md);
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
.pf-chatbot__message-text.footnotes .data-footnote-backref {
|
|
1582
|
+
width: fit-content;
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
.pf-chatbot__message--user .pf-chatbot__message-text {
|
|
1586
|
+
background-color: var(--pf-t--global--color--brand--default);
|
|
1587
|
+
color: var(--pf-t--global--text--color--on-brand--default);
|
|
1588
|
+
--pf-v6-c-content--Color: var(--pf-t--global--text--color--on-brand--default);
|
|
1589
|
+
padding: var(--pf-t--global--spacer--sm);
|
|
1590
|
+
}
|
|
1591
|
+
.pf-chatbot__message--user .pf-chatbot__message-text .pf-v6-c-button__icon {
|
|
1592
|
+
--pf-v6-c-button__icon--Color: var(--pf-t--global--text--color--on-brand--default);
|
|
1593
|
+
}
|
|
1594
|
+
.pf-chatbot__message--user .pf-chatbot__message-text .pf-v6-c-content,
|
|
1595
|
+
.pf-chatbot__message--user .pf-chatbot__message-text .pf-v6-c-content--small,
|
|
1596
|
+
.pf-chatbot__message--user .pf-chatbot__message-text .pf-v6-c-content--blockquote,
|
|
1597
|
+
.pf-chatbot__message--user .pf-chatbot__message-text p,
|
|
1598
|
+
.pf-chatbot__message--user .pf-chatbot__message-text a {
|
|
1599
|
+
color: var(--pf-t--global--text--color--on-brand--default);
|
|
1600
|
+
}
|
|
1601
|
+
.pf-chatbot__message--user blockquote {
|
|
1602
|
+
border-inline-start-color: var(--pf-t--global--border--color--alt);
|
|
1603
|
+
}
|
|
1604
|
+
.pf-chatbot__message--user .pf-chatbot__message-text > .pf-chatbot__message-text {
|
|
1605
|
+
background-color: initial;
|
|
1606
|
+
padding: initial;
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text {
|
|
1610
|
+
--pf-chatbot-message-text-font-size: var(--pf-t--global--font--size--sm);
|
|
1611
|
+
}
|
|
1612
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text .pf-v6-c-button.pf-m-link {
|
|
1613
|
+
font-size: var(--pf-chatbot-message-text-font-size);
|
|
1614
|
+
}
|
|
1615
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text .pf-v6-c-content,
|
|
1616
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text .pf-v6-c-content--small,
|
|
1617
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text .pf-v6-c-content--blockquote,
|
|
1618
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text p,
|
|
1619
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text a {
|
|
1620
|
+
--pf-v6-c-content--FontSize: var(--pf-chatbot-message-text-font-size);
|
|
1621
|
+
}
|
|
1622
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text .pf-v6-c-content--blockquote {
|
|
1623
|
+
--pf-v6-c-content--blockquote--PaddingBlockStart: 0;
|
|
1624
|
+
--pf-v6-c-content--blockquote--PaddingBlockEnd: 0;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
.pf-chatbot__message-superscript {
|
|
1628
|
+
font-size: smaller;
|
|
1629
|
+
vertical-align: super;
|
|
1630
|
+
}
|
|
1631
|
+
.pf-chatbot__message-superscript .pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
1632
|
+
font-size: inherit;
|
|
1633
|
+
vertical-align: inherit;
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message {
|
|
1637
|
+
gap: var(--pf-t--global--spacer--sm);
|
|
1638
|
+
padding-bottom: var(--pf-t--global--spacer--md);
|
|
1639
|
+
}
|
|
1640
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message .pf-chatbot__message-contents {
|
|
1641
|
+
gap: var(--pf-t--global--spacer--xs);
|
|
1642
|
+
}
|
|
1643
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-name {
|
|
1644
|
+
font-size: var(--pf-t--global--font--size--xs);
|
|
1645
|
+
}
|
|
1646
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-avatar.pf-chatbot__message-avatar--round.pf-v6-c-avatar:not(.pf-m-xl, .pf-m-lg, .pf-m-md, .pf-m-sm) {
|
|
1647
|
+
--pf-v6-c-avatar--Width: 1.5rem;
|
|
1648
|
+
--pf-v6-c-avatar--Height: 1.5rem;
|
|
1649
|
+
}
|
|
1650
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-contents {
|
|
1651
|
+
gap: var(--pf-t--global--spacer--xs);
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
.pf-chatbot__message-code-block {
|
|
1655
|
+
width: 100%;
|
|
1656
|
+
background-color: var(--pf-t--color--gray--80);
|
|
1657
|
+
color: var(--pf-t--color--white);
|
|
1658
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
1659
|
+
}
|
|
1660
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block {
|
|
1661
|
+
--pf-t--global--border--color--default: var(--pf-t--global--border--color--default);
|
|
1662
|
+
background-color: inherit;
|
|
1663
|
+
}
|
|
1664
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__header {
|
|
1665
|
+
--pf-v6-c-code-block__header--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
1666
|
+
--pf-v6-c-code-block__header--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
1667
|
+
--pf-v6-c-code-block__header--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
1668
|
+
--pf-v6-c-code-block__header--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
1669
|
+
color: var(--pf-t--color--white);
|
|
1670
|
+
}
|
|
1671
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__header .pf-v6-c-code-block__actions {
|
|
1672
|
+
width: 100%;
|
|
1673
|
+
}
|
|
1674
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__header .pf-chatbot__message-code-block-language {
|
|
1675
|
+
text-transform: uppercase;
|
|
1676
|
+
font-family: var(--pf-t--global--font--family--body);
|
|
1677
|
+
}
|
|
1678
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__header .pf-chatbot__message-code-block-default-action {
|
|
1679
|
+
display: flex;
|
|
1680
|
+
align-items: center;
|
|
1681
|
+
justify-content: space-between;
|
|
1682
|
+
width: 100%;
|
|
1683
|
+
font-size: var(--pf-t--global--font--size--sm);
|
|
1684
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
1685
|
+
}
|
|
1686
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__header .pf-v6-c-code-block__actions-item > .pf-v6-c-button.pf-m-plain {
|
|
1687
|
+
color: var(--pf-t--color--white);
|
|
1688
|
+
}
|
|
1689
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__header .pf-v6-c-code-block__actions-item > .pf-v6-c-button.pf-m-plain:hover, .pf-chatbot__message-code-block .pf-v6-c-code-block__header .pf-v6-c-code-block__actions-item > .pf-v6-c-button.pf-m-plain:focus {
|
|
1690
|
+
color: var(--pf-t--color--white);
|
|
1691
|
+
}
|
|
1692
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__content {
|
|
1693
|
+
--pf-v6-c-code-block__content--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
1694
|
+
--pf-v6-c-code-block__content--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
1695
|
+
--pf-v6-c-code-block__content--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
1696
|
+
--pf-v6-c-code-block__content--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
1697
|
+
font-size: var(--pf-t--global--font--size--sm);
|
|
1698
|
+
}
|
|
1699
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__content pre,
|
|
1700
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__content pre:hover {
|
|
1701
|
+
overflow: hidden;
|
|
1702
|
+
white-space: pre-wrap;
|
|
1703
|
+
word-break: break-all;
|
|
1704
|
+
}
|
|
1705
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__content pre code {
|
|
1706
|
+
display: block;
|
|
1707
|
+
overflow: hidden;
|
|
1708
|
+
font-size: var(--pf-t--global--font--size--sm);
|
|
1709
|
+
}
|
|
1710
|
+
.pf-chatbot__message-code-block .pf-v6-c-code-block__content .pf-v6-c-code-block__code > div {
|
|
1711
|
+
padding: 0 !important;
|
|
1712
|
+
overflow: hidden !important;
|
|
1713
|
+
}
|
|
1714
|
+
.pf-chatbot__message-code-block.pf-m-markdown .pf-v6-c-code-block__code {
|
|
1715
|
+
font-size: inherit;
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
.pf-chatbot__message-inline-code {
|
|
1719
|
+
--pf-chatbot-message-text-inline-code-font-size: var(--pf-t--global--font--size--body--default);
|
|
1720
|
+
background-color: var(--pf-t--global--background--color--tertiary--default);
|
|
1721
|
+
font-size: var(--pf-chatbot-message-text-inline-code-font-size);
|
|
1722
|
+
border: var(--pf-t--global--border--width--high-contrast--regular) solid var(--pf-t--global--border--color--high-contrast);
|
|
1723
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
1724
|
+
padding-block-start: var(--pf-t--global--spacer--xs);
|
|
1725
|
+
padding-block-end: var(--pf-t--global--spacer--xs);
|
|
1726
|
+
padding-inline-start: var(--pf-t--global--spacer--xs);
|
|
1727
|
+
padding-inline-end: var(--pf-t--global--spacer--xs);
|
|
1728
|
+
word-break: break-word;
|
|
1729
|
+
}
|
|
1730
|
+
.pf-chatbot__message-inline-code.pf-m-primary {
|
|
1731
|
+
background-color: var(--pf-t--global--background--color--secondary--default);
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
.pf-chatbot__message-code-toggle .pf-v6-c-button.pf-m-link {
|
|
1735
|
+
--pf-v6-c-button--m-link--Color: var(--pf-t--global--color--nonstatus--blue--default);
|
|
1736
|
+
--pf-v6-c-button--hover--Color: var(--pf-t--global--color--nonstatus--blue--hover);
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
.pf-chatbot__message-image {
|
|
1740
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
1741
|
+
max-width: 37.5rem;
|
|
1742
|
+
max-height: 25rem;
|
|
1743
|
+
min-height: 6.25rem;
|
|
1744
|
+
display: block;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
.pf-v6-c-button.pf-m-link.pf-m-inline.pf-m-markdown {
|
|
1748
|
+
font-size: inherit;
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
.pf-chatbot__message-and-actions {
|
|
1752
|
+
width: 100%;
|
|
1753
|
+
}
|
|
1754
|
+
.pf-chatbot__message-and-actions blockquote .pf-chatbot__message-text {
|
|
1755
|
+
display: inline-block;
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
.pf-chatbot__message-text {
|
|
1759
|
+
width: fit-content;
|
|
1760
|
+
padding: var(--pf-t--global--spacer--sm) 0 var(--pf-t--global--spacer--sm) 0;
|
|
1761
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
1762
|
+
--pf-chatbot-message-text-font-size: var(--pf-t--global--font--size--md);
|
|
1763
|
+
}
|
|
1764
|
+
.pf-chatbot__message-text .pf-v6-c-button.pf-m-link {
|
|
1765
|
+
font-size: var(--pf-chatbot-message-text-font-size);
|
|
1766
|
+
}
|
|
1767
|
+
.pf-chatbot__message-text .pf-v6-c-content,
|
|
1768
|
+
.pf-chatbot__message-text .pf-v6-c-content--small,
|
|
1769
|
+
.pf-chatbot__message-text .pf-v6-c-content--blockquote,
|
|
1770
|
+
.pf-chatbot__message-text p,
|
|
1771
|
+
.pf-chatbot__message-text a {
|
|
1772
|
+
--pf-v6-c-content--FontSize: var(--pf-chatbot-message-text-font-size);
|
|
1773
|
+
}
|
|
1774
|
+
.pf-chatbot__message-text code {
|
|
1775
|
+
background-color: var(--pf-t--global--background--color--tertiary--default);
|
|
1776
|
+
font-size: var(--pf-chatbot-message-text-inline-code-font-size);
|
|
1777
|
+
}
|
|
1778
|
+
.pf-chatbot__message-text:has(.sr-only) {
|
|
1779
|
+
clip: rect(0 0 0 0);
|
|
1780
|
+
clip-path: inset(50%);
|
|
1781
|
+
height: 1px;
|
|
1782
|
+
overflow: hidden;
|
|
1783
|
+
position: absolute;
|
|
1784
|
+
white-space: nowrap;
|
|
1785
|
+
width: 1px;
|
|
1786
|
+
}
|
|
1787
|
+
.pf-chatbot__message-text.pf-m-primary code {
|
|
1788
|
+
background-color: var(--pf-t--global--background--color--secondary--default);
|
|
1789
|
+
}
|
|
1790
|
+
.pf-chatbot__message-text.pf-m-markdown {
|
|
1791
|
+
display: block;
|
|
1792
|
+
}
|
|
1793
|
+
.pf-chatbot__message-text.pf-m-markdown > [class^=pf-v6-c-content] {
|
|
1794
|
+
font-size: inherit;
|
|
1795
|
+
color: inherit;
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
li[id*=user-content-fn-]:has(> span > .pf-chatbot__message-text + .pf-chatbot__message-text) > span > .pf-chatbot__message-text > p {
|
|
1799
|
+
margin-block-end: var(--pf-t--global--spacer--md);
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
li[id*=user-content-fn-]:has(> span > span > .pf-chatbot__message-text + .pf-chatbot__message-text) > span > span > .pf-chatbot__message-text > p {
|
|
1803
|
+
margin-block-end: var(--pf-t--global--spacer--md);
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
.pf-chatbot__message-text.footnotes .data-footnote-backref {
|
|
1807
|
+
width: fit-content;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
.pf-chatbot__message--user .pf-chatbot__message-text {
|
|
1811
|
+
background-color: var(--pf-t--global--color--brand--default);
|
|
1812
|
+
color: var(--pf-t--global--text--color--on-brand--default);
|
|
1813
|
+
--pf-v6-c-content--Color: var(--pf-t--global--text--color--on-brand--default);
|
|
1814
|
+
padding: var(--pf-t--global--spacer--sm);
|
|
1815
|
+
}
|
|
1816
|
+
.pf-chatbot__message--user .pf-chatbot__message-text .pf-v6-c-button__icon {
|
|
1817
|
+
--pf-v6-c-button__icon--Color: var(--pf-t--global--text--color--on-brand--default);
|
|
1818
|
+
}
|
|
1819
|
+
.pf-chatbot__message--user .pf-chatbot__message-text .pf-v6-c-content,
|
|
1820
|
+
.pf-chatbot__message--user .pf-chatbot__message-text .pf-v6-c-content--small,
|
|
1821
|
+
.pf-chatbot__message--user .pf-chatbot__message-text .pf-v6-c-content--blockquote,
|
|
1822
|
+
.pf-chatbot__message--user .pf-chatbot__message-text p,
|
|
1823
|
+
.pf-chatbot__message--user .pf-chatbot__message-text a {
|
|
1824
|
+
color: var(--pf-t--global--text--color--on-brand--default);
|
|
1825
|
+
}
|
|
1826
|
+
.pf-chatbot__message--user blockquote {
|
|
1827
|
+
border-inline-start-color: var(--pf-t--global--border--color--alt);
|
|
1828
|
+
}
|
|
1829
|
+
.pf-chatbot__message--user .pf-chatbot__message-text > .pf-chatbot__message-text {
|
|
1830
|
+
background-color: initial;
|
|
1831
|
+
padding: initial;
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text {
|
|
1835
|
+
--pf-chatbot-message-text-font-size: var(--pf-t--global--font--size--sm);
|
|
1836
|
+
}
|
|
1837
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text .pf-v6-c-button.pf-m-link {
|
|
1838
|
+
font-size: var(--pf-chatbot-message-text-font-size);
|
|
1839
|
+
}
|
|
1840
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text .pf-v6-c-content,
|
|
1841
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text .pf-v6-c-content--small,
|
|
1842
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text .pf-v6-c-content--blockquote,
|
|
1843
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text p,
|
|
1844
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text a {
|
|
1845
|
+
--pf-v6-c-content--FontSize: var(--pf-chatbot-message-text-font-size);
|
|
1846
|
+
}
|
|
1847
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__message-text .pf-v6-c-content--blockquote {
|
|
1848
|
+
--pf-v6-c-content--blockquote--PaddingBlockStart: 0;
|
|
1849
|
+
--pf-v6-c-content--blockquote--PaddingBlockEnd: 0;
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
.pf-chatbot__message-ordered-list,
|
|
1853
|
+
.pf-chatbot__message-unordered-list {
|
|
1854
|
+
width: fit-content;
|
|
1855
|
+
padding: var(--pf-t--global--spacer--sm) 0 var(--pf-t--global--spacer--sm) 0;
|
|
1856
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
1857
|
+
}
|
|
1858
|
+
.pf-chatbot__message-ordered-list .pf-v6-c-list,
|
|
1859
|
+
.pf-chatbot__message-ordered-list ul,
|
|
1860
|
+
.pf-chatbot__message-ordered-list li,
|
|
1861
|
+
.pf-chatbot__message-unordered-list .pf-v6-c-list,
|
|
1862
|
+
.pf-chatbot__message-unordered-list ul,
|
|
1863
|
+
.pf-chatbot__message-unordered-list li {
|
|
1864
|
+
font-size: var(--pf-t--global--font--size--md);
|
|
1865
|
+
}
|
|
1866
|
+
.pf-chatbot__message-ordered-list.pf-m-markdown .pf-v6-c-list,
|
|
1867
|
+
.pf-chatbot__message-ordered-list.pf-m-markdown ul,
|
|
1868
|
+
.pf-chatbot__message-ordered-list.pf-m-markdown li,
|
|
1869
|
+
.pf-chatbot__message-unordered-list.pf-m-markdown .pf-v6-c-list,
|
|
1870
|
+
.pf-chatbot__message-unordered-list.pf-m-markdown ul,
|
|
1871
|
+
.pf-chatbot__message-unordered-list.pf-m-markdown li {
|
|
1872
|
+
font-size: inherit;
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
.pf-chatbot__message--user .pf-chatbot__message-ordered-list,
|
|
1876
|
+
.pf-chatbot__message--user .pf-chatbot__message-unordered-list {
|
|
1877
|
+
background-color: var(--pf-t--global--color--brand--default);
|
|
1878
|
+
color: var(--pf-t--global--text--color--on-brand--default);
|
|
1879
|
+
padding: var(--pf-t--global--spacer--sm);
|
|
1880
|
+
}
|
|
1881
|
+
.pf-chatbot__message--user .pf-chatbot__message-ordered-list .pf-chatbot__message-text,
|
|
1882
|
+
.pf-chatbot__message--user .pf-chatbot__message-unordered-list .pf-chatbot__message-text {
|
|
1883
|
+
background-color: initial;
|
|
1884
|
+
}
|
|
1885
|
+
.pf-chatbot__message--user .footnotes li > span {
|
|
1886
|
+
display: inline-flex;
|
|
1887
|
+
flex-direction: column;
|
|
1888
|
+
}
|
|
1889
|
+
.pf-chatbot__message--user li a {
|
|
1890
|
+
color: var(--pf-t--global--text--color--on-brand--default);
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
.pf-chatbot__message-table {
|
|
1894
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
1895
|
+
--pf-v6-c-table--BackgroundColor: var(--pf-t--global--background--color--tertiary--default) !important;
|
|
1896
|
+
border: var(--pf-t--global--border--width--high-contrast--regular) solid var(--pf-t--global--border--color--high-contrast) !important;
|
|
1897
|
+
padding: 0 var(--pf-t--global--spacer--lg) 0 var(--pf-t--global--spacer--lg);
|
|
1898
|
+
}
|
|
1899
|
+
.pf-chatbot__message-table.pf-m-grid.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
|
|
1900
|
+
border-block-start: 0;
|
|
1901
|
+
}
|
|
1902
|
+
.pf-chatbot__message-table.pf-m-primary {
|
|
1903
|
+
--pf-v6-c-table--BackgroundColor: var(--pf-t--global--background--color--secondary--default) !important;
|
|
1904
|
+
}
|
|
1905
|
+
.pf-chatbot__message-table tbody {
|
|
1906
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
1907
|
+
}
|
|
1908
|
+
.pf-chatbot__message-table tr {
|
|
1909
|
+
--pf-v6-c-table__tr--responsive--PaddingInlineEnd: 0;
|
|
1910
|
+
--pf-v6-c-table__tr--responsive--PaddingInlineStart: 0;
|
|
1911
|
+
}
|
|
1912
|
+
.pf-chatbot__message-table .pf-v6-c-table__tr:last-of-type {
|
|
1913
|
+
border-block-end: 0;
|
|
1914
|
+
}
|
|
1915
|
+
.pf-chatbot__message-table.pf-m-markdown table,
|
|
1916
|
+
.pf-chatbot__message-table.pf-m-markdown tbody,
|
|
1917
|
+
.pf-chatbot__message-table.pf-m-markdown td,
|
|
1918
|
+
.pf-chatbot__message-table.pf-m-markdown thead,
|
|
1919
|
+
.pf-chatbot__message-table.pf-m-markdown th,
|
|
1920
|
+
.pf-chatbot__message-table.pf-m-markdown tr {
|
|
1921
|
+
font-size: inherit;
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
.pf-chatbot__message-loading {
|
|
1925
|
+
width: 36px;
|
|
1926
|
+
padding: var(--pf-t--global--spacer--sm);
|
|
1927
|
+
background-color: var(--pf-t--global--background--color--tertiary--default);
|
|
1928
|
+
border-radius: var(--pf-t--global--border--radius--small);
|
|
1929
|
+
border: var(--pf-t--global--border--width--high-contrast--regular) solid var(--pf-t--global--border--color--high-contrast);
|
|
1930
|
+
}
|
|
1931
|
+
.pf-chatbot__message-loading-dots {
|
|
1932
|
+
position: relative;
|
|
1933
|
+
display: flex;
|
|
1934
|
+
width: 4px;
|
|
1935
|
+
height: 4px;
|
|
1936
|
+
margin-left: var(--pf-t--global--spacer--sm);
|
|
1937
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
1938
|
+
animation: dot-flashing var(--pf-t--global--motion--duration--2xl) infinite linear alternate;
|
|
1939
|
+
animation-delay: calc(var(--pf-t--global--motion--duration--2xl) * 0.3333333333);
|
|
1940
|
+
}
|
|
1941
|
+
.pf-chatbot__message-loading-dots::before, .pf-chatbot__message-loading-dots::after {
|
|
1942
|
+
content: "";
|
|
1943
|
+
display: flex;
|
|
1944
|
+
position: absolute;
|
|
1945
|
+
inset-block-start: 0;
|
|
1946
|
+
}
|
|
1947
|
+
.pf-chatbot__message-loading-dots::before {
|
|
1948
|
+
inset-inline-start: calc(var(--pf-t--global--spacer--sm) * -1);
|
|
1949
|
+
width: 4px;
|
|
1950
|
+
height: 4px;
|
|
1951
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
1952
|
+
animation: dot-flashing var(--pf-t--global--motion--duration--2xl) infinite alternate;
|
|
1953
|
+
animation-delay: var(--pf-t--global--motion--delay--none);
|
|
1954
|
+
}
|
|
1955
|
+
.pf-chatbot__message-loading-dots::after {
|
|
1956
|
+
inset-inline-start: var(--pf-t--global--spacer--sm);
|
|
1957
|
+
width: 4px;
|
|
1958
|
+
height: 4px;
|
|
1959
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
1960
|
+
animation: dot-flashing var(--pf-t--global--motion--duration--2xl) infinite alternate;
|
|
1961
|
+
animation-delay: calc(var(--pf-t--global--motion--duration--2xl) * 0.6666666667);
|
|
1962
|
+
}
|
|
1963
|
+
@keyframes dot-flashing {
|
|
1964
|
+
0% {
|
|
1965
|
+
background-color: var(--pf-t--global--background--color--inverse--default);
|
|
1966
|
+
}
|
|
1967
|
+
50%, 100% {
|
|
1968
|
+
background-color: rgba(41, 41, 41, 0.25);
|
|
1969
|
+
}
|
|
1970
|
+
}
|
|
1971
|
+
.pf-chatbot__message-loading.pf-m-primary {
|
|
1972
|
+
background-color: var(--pf-t--global--background--color--secondary--default);
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1975
|
+
.pf-chatbot__quickstarts-tile {
|
|
1976
|
+
max-width: 650px;
|
|
1977
|
+
width: 100%;
|
|
1978
|
+
}
|
|
1979
|
+
@media screen and (max-width: 700px) {
|
|
1980
|
+
.pf-chatbot__quickstarts-tile {
|
|
1981
|
+
max-width: 100%;
|
|
1982
|
+
min-width: initial;
|
|
1983
|
+
}
|
|
1984
|
+
}
|
|
1985
|
+
.pf-chatbot__quickstarts-tile .pf-v6-c-card__header-main .pf-v6-c-icon__content {
|
|
1986
|
+
display: contents;
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1989
|
+
.pf-v6-theme-dark .pf-chatbot__quickstarts-tile .pfext-catalog-item-icon__img {
|
|
1990
|
+
filter: brightness(1.5) invert(1) hue-rotate(180deg) saturate(4);
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
.pf-chatbot__message-quick-response .pf-v6-c-label:not(.pf-m-compact) {
|
|
1994
|
+
--pf-v6-c-label--FontSize: var(--pf-t--global--font--size--md);
|
|
1995
|
+
}
|
|
1996
|
+
@media screen and (min-width: 401px) and (max-width: 600px) {
|
|
1997
|
+
.pf-chatbot__message-quick-response .pf-v6-c-label {
|
|
1998
|
+
--pf-v6-c-label__text--MaxWidth: 20ch;
|
|
1999
|
+
}
|
|
2000
|
+
}
|
|
2001
|
+
@media screen and (max-width: 400px) {
|
|
2002
|
+
.pf-chatbot__message-quick-response .pf-v6-c-label {
|
|
2003
|
+
--pf-v6-c-label__text--MaxWidth: 15ch;
|
|
2004
|
+
}
|
|
2005
|
+
}
|
|
2006
|
+
.pf-chatbot__message-quick-response .pf-chatbot__message-quick-response--selected .pf-v6-c-label__content:is(:hover, :focus) {
|
|
2007
|
+
--pf-v6-c-label--m-clickable--hover--BorderWidth: 0;
|
|
2008
|
+
--pf-v6-c-label--BackgroundColor: var(--pf-v6-c-label--m-blue--BackgroundColor);
|
|
2009
|
+
}
|
|
2010
|
+
.pf-chatbot__message-quick-response .pf-chatbot__message-quick-response--selected:hover,
|
|
2011
|
+
.pf-chatbot__message-quick-response .pf-chatbot__message-quick-response--selected:focus {
|
|
2012
|
+
--pf-v6-c-label--m-clickable--hover--BorderWidth: 0;
|
|
2013
|
+
--pf-v6-c-label--BackgroundColor: var(--pf-v6-c-label--m-blue--BackgroundColor);
|
|
2014
|
+
}
|
|
2015
|
+
.pf-chatbot__message-quick-response .pf-v6-c-label.pf-m-blue.pf-m-clickable .pf-v6-c-label__content:is(:active) {
|
|
2016
|
+
--pf-v6-c-label--BackgroundColor: var(--pf-v6-c-label--m-blue--BackgroundColor);
|
|
2017
|
+
--pf-v6-c-label--m-clickable--hover--BackgroundColor: var(--pf-v6-c-label--m-blue--BackgroundColor);
|
|
2018
|
+
--pf-v6-c-label--m-clickable--hover--BorderWidth: 0;
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
.pf-chatbot__feedback-card {
|
|
2022
|
+
box-shadow: var(--pf-t--global--box-shadow--sm);
|
|
2023
|
+
--pf-v6-c-card--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
2024
|
+
max-width: 27.5rem;
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
.pf-chatbot__feedback-complete-body {
|
|
2028
|
+
display: flex;
|
|
2029
|
+
flex-direction: column;
|
|
2030
|
+
gap: var(--pf-t--global--spacer--lg);
|
|
2031
|
+
align-items: center;
|
|
2032
|
+
text-align: center;
|
|
2033
|
+
}
|
|
2034
|
+
|
|
2035
|
+
.pf-chatbot__feedback-complete-text {
|
|
2036
|
+
display: flex;
|
|
2037
|
+
align-items: center;
|
|
2038
|
+
justify-content: center;
|
|
2039
|
+
flex-direction: column;
|
|
2040
|
+
gap: var(--pf-t--global--spacer--sm);
|
|
2041
|
+
--pf-v6-c-card--first-child--PaddingBlockStart: 0;
|
|
2042
|
+
--pf-v6-c-card__title--not--last-child--PaddingBlockEnd: 0;
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2045
|
+
.pf-chatbot__feedback-complete-image {
|
|
2046
|
+
display: flex;
|
|
2047
|
+
align-items: center;
|
|
2048
|
+
justify-content: center;
|
|
2049
|
+
}
|
|
2050
|
+
|
|
2051
|
+
.pf-chatbot__feedback-complete-title {
|
|
2052
|
+
font-family: var(--pf-t--global--font--family--heading);
|
|
2053
|
+
font-size: var(--pf-t--global--font--size--lg);
|
|
2054
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
2055
|
+
line-height: var(--pf-t--global--font--line-height--heading);
|
|
2056
|
+
}
|
|
2057
|
+
|
|
2058
|
+
.pf-chatbot__feedback-card-complete-header .pf-v6-c-card__actions {
|
|
2059
|
+
--pf-v6-c-card__actions--MarginBlockEnd: calc(var(--pf-t--global--spacer--xl) * -1);
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2062
|
+
.pf-chatbot__feedback-card-title {
|
|
2063
|
+
font-family: var(--pf-t--global--font--family--heading);
|
|
2064
|
+
font-size: var(--pf-t--global--font--size--md);
|
|
2065
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
2066
|
+
line-height: var(--pf-t--global--font--line-height--heading);
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
.pf-chatbot__feedback-card-form {
|
|
2070
|
+
--pf-v6-c-form__group--m-action--MarginBlockStart: 0 !important;
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
.pf-chatbot__feedback-card-optional {
|
|
2074
|
+
font-weight: initial;
|
|
2075
|
+
}
|
|
2076
|
+
|
|
2077
|
+
.pf-chatbot__feedback-card-privacy {
|
|
2078
|
+
font-size: var(--pf-t--global--font--size--body--sm);
|
|
2079
|
+
font-weight: var(--pf-t--global--font--weight--body--default);
|
|
2080
|
+
line-height: var(--pf-t--global--font--line-height--body);
|
|
2081
|
+
color: var(--pf-t--global--text--color--subtle);
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2084
|
+
.pf-v6-c-card.pf-m-compact.pf-chatbot__feedback-card {
|
|
2085
|
+
--pf-v6-c-card--first-child--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
2086
|
+
--pf-v6-c-card--child--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
2087
|
+
--pf-v6-c-card--child--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
2088
|
+
--pf-v6-c-card--last-child--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
2089
|
+
--pf-v6-c-card__title--not--last-child--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
2090
|
+
}
|
|
2091
|
+
.pf-v6-c-card.pf-m-compact.pf-chatbot__feedback-card .pf-chatbot__feedback-card-form.pf-m-compact {
|
|
2092
|
+
--pf-v6-c-form--GridGap: var(--pf-t--global--spacer--sm);
|
|
2093
|
+
}
|
|
2094
|
+
.pf-v6-c-card.pf-m-compact.pf-chatbot__feedback-card .pf-chatbot__feedback-card-form.pf-m-compact .pf-v6-c-form__group.pf-m-action {
|
|
2095
|
+
margin-block-start: var(--pf-t--global--spacer--sm);
|
|
2096
|
+
}
|
|
2097
|
+
.pf-v6-c-card.pf-m-compact.pf-chatbot__feedback-card .pf-chatbot__feedback-card-form.pf-m-compact .pf-v6-c-form-control {
|
|
2098
|
+
font-size: var(--pf-t--global--font--size--body--sm);
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
.pf-v6-c-card.pf-m-compact.pf-chatbot__feedback-card.pf-chatbot__feedback-card-complete div.pf-chatbot__feedback-complete-body {
|
|
2102
|
+
gap: var(--pf-t--global--spacer--sm);
|
|
2103
|
+
}
|
|
2104
|
+
.pf-v6-c-card.pf-m-compact.pf-chatbot__feedback-card.pf-chatbot__feedback-card-complete .pf-chatbot__feedback-complete-image {
|
|
2105
|
+
width: 40px;
|
|
2106
|
+
}
|
|
2107
|
+
.pf-v6-c-card.pf-m-compact.pf-chatbot__feedback-card.pf-chatbot__feedback-card-complete .pf-chatbot__feedback-card-complete-empty-header .pf-v6-c-card__header:first-child {
|
|
2108
|
+
--pf-v6-c-card--first-child--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2111
|
+
.pf-v6-c-button.pf-chatbot__button--attach {
|
|
2112
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
2113
|
+
padding: var(--pf-t--global--spacer--md);
|
|
2114
|
+
width: 3rem;
|
|
2115
|
+
height: 3rem;
|
|
2116
|
+
}
|
|
2117
|
+
.pf-v6-c-button.pf-chatbot__button--attach .pf-v6-c-button__icon {
|
|
2118
|
+
color: var(--pf-t--global--icon--color--subtle);
|
|
2119
|
+
}
|
|
2120
|
+
.pf-v6-c-button.pf-chatbot__button--attach:hover .pf-v6-c-button__icon {
|
|
2121
|
+
color: var(--pf-t--global--icon--color--regular);
|
|
2122
|
+
}
|
|
2123
|
+
.pf-v6-c-button.pf-chatbot__button--attach:active, .pf-v6-c-button.pf-chatbot__button--attach:focus {
|
|
2124
|
+
background-color: var(--pf-t--global--color--brand--clicked);
|
|
2125
|
+
}
|
|
2126
|
+
.pf-v6-c-button.pf-chatbot__button--attach:active .pf-v6-c-button__icon, .pf-v6-c-button.pf-chatbot__button--attach:focus .pf-v6-c-button__icon {
|
|
2127
|
+
color: var(--pf-t--global--icon--color--inverse);
|
|
2128
|
+
}
|
|
2129
|
+
.pf-v6-c-button.pf-chatbot__button--attach:active:hover .pf-v6-c-button__icon, .pf-v6-c-button.pf-chatbot__button--attach:active:focus .pf-v6-c-button__icon, .pf-v6-c-button.pf-chatbot__button--attach:focus:hover .pf-v6-c-button__icon, .pf-v6-c-button.pf-chatbot__button--attach:focus:focus .pf-v6-c-button__icon {
|
|
2130
|
+
color: var(--pf-t--global--icon--color--inverse);
|
|
2131
|
+
}
|
|
2132
|
+
|
|
2133
|
+
.pf-v6-c-button.pf-chatbot__button--attach.pf-m-compact {
|
|
2134
|
+
width: 1.5rem;
|
|
2135
|
+
height: 1.5rem;
|
|
2136
|
+
align-items: center;
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
.pf-v6-c-button.pf-chatbot__button--microphone {
|
|
2140
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
2141
|
+
padding: var(--pf-t--global--spacer--md);
|
|
2142
|
+
width: 3rem;
|
|
2143
|
+
height: 3rem;
|
|
2144
|
+
}
|
|
2145
|
+
.pf-v6-c-button.pf-chatbot__button--microphone .pf-v6-c-button__icon {
|
|
2146
|
+
color: var(--pf-t--global--icon--color--subtle);
|
|
2147
|
+
}
|
|
2148
|
+
.pf-v6-c-button.pf-chatbot__button--microphone:hover .pf-v6-c-button__icon, .pf-v6-c-button.pf-chatbot__button--microphone:focus .pf-v6-c-button__icon {
|
|
2149
|
+
color: var(--pf-t--global--icon--color--regular);
|
|
2150
|
+
}
|
|
2151
|
+
.pf-v6-c-button.pf-chatbot__button--microphone--active {
|
|
2152
|
+
background-color: var(--pf-t--global--color--brand--clicked);
|
|
2153
|
+
animation: motionMicButton var(--pf-t--global--motion--timing-function--accelerate) calc(var(--pf-t--global--motion--duration--md) * 8) infinite;
|
|
2154
|
+
}
|
|
2155
|
+
.pf-v6-c-button.pf-chatbot__button--microphone--active .pf-v6-c-button__icon {
|
|
2156
|
+
color: var(--pf-t--global--icon--color--on-brand--default);
|
|
2157
|
+
}
|
|
2158
|
+
.pf-v6-c-button.pf-chatbot__button--microphone--active:hover .pf-v6-c-button__icon, .pf-v6-c-button.pf-chatbot__button--microphone--active:focus .pf-v6-c-button__icon {
|
|
2159
|
+
color: var(--pf-t--global--icon--color--on-brand--default);
|
|
2160
|
+
}
|
|
2161
|
+
|
|
2162
|
+
@keyframes motionMicButton {
|
|
2163
|
+
0% {
|
|
2164
|
+
box-shadow: 0 0 0 0 rgb(0, 77, 153);
|
|
2165
|
+
}
|
|
2166
|
+
100% {
|
|
2167
|
+
box-shadow: 0 0 0 16px rgba(0, 102, 204, 0);
|
|
2168
|
+
}
|
|
2169
|
+
}
|
|
2170
|
+
.pf-v6-c-button.pf-chatbot__button--microphone.pf-m-compact {
|
|
2171
|
+
width: 1.5rem;
|
|
2172
|
+
height: 1.5rem;
|
|
2173
|
+
align-items: center;
|
|
2174
|
+
}
|
|
2175
|
+
|
|
2176
|
+
.pf-v6-c-button.pf-chatbot__button--send {
|
|
2177
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
2178
|
+
padding: var(--pf-t--global--spacer--md);
|
|
2179
|
+
width: 3rem;
|
|
2180
|
+
height: 3rem;
|
|
2181
|
+
}
|
|
2182
|
+
.pf-v6-c-button.pf-chatbot__button--send .pf-v6-c-button__icon {
|
|
2183
|
+
--pf-v6-c-button__icon--Color: var(--pf-t--global--color--brand--default);
|
|
2184
|
+
}
|
|
2185
|
+
.pf-v6-c-button.pf-chatbot__button--send:hover, .pf-v6-c-button.pf-chatbot__button--send:focus {
|
|
2186
|
+
background-color: rgba(146, 197, 249, 0.25);
|
|
2187
|
+
color: var(--pf-t--global--color--brand--hover);
|
|
2188
|
+
}
|
|
2189
|
+
.pf-v6-c-button.pf-chatbot__button--send:hover .pf-v6-c-button__icon, .pf-v6-c-button.pf-chatbot__button--send:focus .pf-v6-c-button__icon {
|
|
2190
|
+
color: var(--pf-t--global--color--brand--hover);
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2193
|
+
.pf-v6-theme-dark .pf-v6-c-button.pf-chatbot__button--send {
|
|
2194
|
+
background-color: var(--pf-t--global--color--brand--default);
|
|
2195
|
+
}
|
|
2196
|
+
.pf-v6-theme-dark .pf-v6-c-button.pf-chatbot__button--send .pf-v6-c-button__icon {
|
|
2197
|
+
--pf-v6-c-button__icon--Color: var(--pf-t--global--icon--color--inverse);
|
|
2198
|
+
}
|
|
2199
|
+
.pf-v6-theme-dark .pf-v6-c-button:disabled.pf-chatbot__button--send:disabled {
|
|
2200
|
+
--pf-v6-c-button--disabled--Color: var(--pf-t--global--icon--color--disabled);
|
|
2201
|
+
background-color: var(--pf-t--global--background--color--disabled--default);
|
|
2202
|
+
}
|
|
2203
|
+
.pf-v6-theme-dark .pf-v6-c-button.pf-chatbot__button--send:hover,
|
|
2204
|
+
.pf-v6-theme-dark .pf-v6-c-button.pf-chatbot__button--send:focus {
|
|
2205
|
+
background-color: rgba(146, 197, 249, 0.25);
|
|
2206
|
+
}
|
|
2207
|
+
|
|
2208
|
+
@keyframes motionSendButton {
|
|
2209
|
+
0% {
|
|
2210
|
+
opacity: 0;
|
|
2211
|
+
transform: translate3d(-8px, 0, 0);
|
|
2212
|
+
}
|
|
2213
|
+
100% {
|
|
2214
|
+
opacity: 1;
|
|
2215
|
+
transform: translate3d(0, 0, 0);
|
|
2216
|
+
}
|
|
2217
|
+
}
|
|
2218
|
+
.pf-v6-c-button.pf-chatbot__button--send.pf-m-compact {
|
|
2219
|
+
width: 1.5rem;
|
|
2220
|
+
height: 1.5rem;
|
|
2221
|
+
align-items: center;
|
|
2222
|
+
}
|
|
2223
|
+
|
|
2224
|
+
.pf-v6-c-button.pf-chatbot__button--stop {
|
|
2225
|
+
background-color: var(--pf-t--global--color--brand--default);
|
|
2226
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
2227
|
+
padding: var(--pf-t--global--spacer--md);
|
|
2228
|
+
width: 3rem;
|
|
2229
|
+
height: 3rem;
|
|
2230
|
+
display: flex;
|
|
2231
|
+
justify-content: center;
|
|
2232
|
+
align-items: center;
|
|
2233
|
+
}
|
|
2234
|
+
.pf-v6-c-button.pf-chatbot__button--stop .pf-v6-c-button__icon {
|
|
2235
|
+
color: var(--pf-t--global--icon--color--on-brand--default);
|
|
2236
|
+
}
|
|
2237
|
+
.pf-v6-c-button.pf-chatbot__button--stop:hover {
|
|
2238
|
+
background-color: var(--pf-t--global--color--brand--hover);
|
|
2239
|
+
}
|
|
2240
|
+
.pf-v6-c-button.pf-chatbot__button--stop:focus {
|
|
2241
|
+
background-color: var(--pf-t--global--color--brand--clicked);
|
|
2242
|
+
}
|
|
2243
|
+
.pf-v6-c-button.pf-chatbot__button--stop:focus .pf-v6-c-button__icon {
|
|
2244
|
+
color: var(--pf-t--global--icon--color--on-brand--default);
|
|
2245
|
+
}
|
|
2246
|
+
.pf-v6-c-button.pf-chatbot__button--stop:focus:hover .pf-v6-c-button__icon, .pf-v6-c-button.pf-chatbot__button--stop:focus:focus .pf-v6-c-button__icon {
|
|
2247
|
+
color: var(--pf-t--global--icon--color--on-brand--default);
|
|
2248
|
+
}
|
|
2249
|
+
|
|
2250
|
+
.pf-v6-c-button.pf-chatbot__button--stop.pf-m-compact {
|
|
2251
|
+
width: 1.5rem;
|
|
2252
|
+
height: 1.5rem;
|
|
2253
|
+
align-items: center;
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
.pf-chatbot__message-bar {
|
|
2257
|
+
--pf-chatbot__message-bar-child--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
|
2258
|
+
--pf-chatbot__message-bar-child--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
2259
|
+
padding-inline-start: 0.5rem;
|
|
2260
|
+
padding-inline-end: 0.5rem;
|
|
2261
|
+
display: flex;
|
|
2262
|
+
flex-wrap: wrap;
|
|
2263
|
+
align-items: center;
|
|
2264
|
+
justify-content: flex-end;
|
|
2265
|
+
background-color: var(--pf-t--global--background--color--control--default, --pf-t--global--background--color--primary--default);
|
|
2266
|
+
border-radius: calc(var(--pf-t--global--border--radius--medium) * 2);
|
|
2267
|
+
transition: border-color var(--pf-t--global--motion--timing-function--accelerate) var(--pf-t--global--motion--duration--sm);
|
|
2268
|
+
position: relative;
|
|
2269
|
+
border: var(--pf-t--global--border--width--control--default) solid transparent;
|
|
2270
|
+
overflow: hidden;
|
|
2271
|
+
}
|
|
2272
|
+
.pf-chatbot__message-bar::after {
|
|
2273
|
+
content: "";
|
|
2274
|
+
position: absolute;
|
|
2275
|
+
inset: 0;
|
|
2276
|
+
border-radius: inherit;
|
|
2277
|
+
border: var(--pf-t--global--border--width--control--default) solid var(--pf-t--global--border--color--control--default);
|
|
2278
|
+
pointer-events: none;
|
|
2279
|
+
transition: border-color var(--pf-t--global--motion--timing-function--accelerate) var(--pf-t--global--motion--duration--sm), border-width var(--pf-t--global--motion--timing-function--accelerate) var(--pf-t--global--motion--duration--sm);
|
|
2280
|
+
}
|
|
2281
|
+
.pf-chatbot__message-bar:hover::after {
|
|
2282
|
+
border-color: var(--pf-t--global--border--color--control--hover);
|
|
2283
|
+
border-width: var(--pf-t--global--border--width--control--hover);
|
|
2284
|
+
}
|
|
2285
|
+
.pf-chatbot__message-bar:focus-within::after {
|
|
2286
|
+
border-color: var(--pf-t--global--border--color--control--clicked);
|
|
2287
|
+
border-width: var(--pf-t--global--border--width--control--clicked);
|
|
2288
|
+
}
|
|
2289
|
+
.pf-chatbot__message-bar-actions {
|
|
2290
|
+
display: flex;
|
|
2291
|
+
justify-content: end;
|
|
2292
|
+
padding-block-start: var(--pf-t--global--spacer--xs);
|
|
2293
|
+
padding-block-end: var(--pf-t--global--spacer--xs);
|
|
2294
|
+
gap: var(--pf-t--global--spacer--gap--action-to-action--plain);
|
|
2295
|
+
}
|
|
2296
|
+
.pf-chatbot__message-bar-actions.pf-m-grouped {
|
|
2297
|
+
flex-basis: 100%;
|
|
2298
|
+
justify-content: space-between;
|
|
2299
|
+
}
|
|
2300
|
+
.pf-chatbot__message-bar-actions-group {
|
|
2301
|
+
display: flex;
|
|
2302
|
+
padding-block-start: var(--pf-t--global--spacer--xs);
|
|
2303
|
+
padding-block-end: var(--pf-t--global--spacer--xs);
|
|
2304
|
+
gap: var(--pf-t--global--spacer--gap--action-to-action--plain);
|
|
2305
|
+
align-items: center;
|
|
2306
|
+
}
|
|
2307
|
+
.pf-chatbot__message-bar-input {
|
|
2308
|
+
flex: 1 1 auto;
|
|
2309
|
+
padding-block-start: var(--pf-t--global--spacer--sm);
|
|
2310
|
+
padding-block-end: var(--pf-t--global--spacer--sm);
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2313
|
+
.pf-chatbot__message-textarea {
|
|
2314
|
+
--pf-v6-c-form-control--before--BorderStyle: none !important;
|
|
2315
|
+
--pf-v6-c-form-control--after--BorderStyle: none !important;
|
|
2316
|
+
resize: none !important;
|
|
2317
|
+
background-color: transparent !important;
|
|
2318
|
+
font-size: var(--pf-t--global--font--size--md) !important;
|
|
2319
|
+
line-height: 1.5rem !important;
|
|
2320
|
+
max-height: 12rem;
|
|
2321
|
+
overflow-y: auto !important;
|
|
2322
|
+
outline: none;
|
|
2323
|
+
overflow-wrap: break-word !important;
|
|
2324
|
+
word-wrap: break-word;
|
|
2325
|
+
height: 100%;
|
|
2326
|
+
width: 100%;
|
|
2327
|
+
display: block !important;
|
|
2328
|
+
}
|
|
2329
|
+
.pf-chatbot__message-textarea .pf-v6-c-form-control__textarea:focus-visible {
|
|
2330
|
+
outline: none;
|
|
2331
|
+
}
|
|
2332
|
+
.pf-chatbot__message-textarea textarea {
|
|
2333
|
+
outline-offset: 0px !important;
|
|
2334
|
+
--pf-v6-c-form-control--PaddingBlockStart: 0;
|
|
2335
|
+
--pf-v6-c-form-control--PaddingBlockEnd: 0;
|
|
2336
|
+
--pf-v6-c-form-control--BorderRadius: 0;
|
|
2337
|
+
font-family: var(--pf-t--global--font--family--body);
|
|
2338
|
+
}
|
|
2339
|
+
.pf-chatbot__message-textarea textarea:focus-visible {
|
|
2340
|
+
outline: none;
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
.pf-chatbot__message-textarea.pf-v6-c-form-control.pf-m-textarea:has(textarea) {
|
|
2344
|
+
--pf-v6-c-form-control--PaddingBlockStart: 0;
|
|
2345
|
+
--pf-v6-c-form-control--PaddingBlockEnd: 0;
|
|
2346
|
+
--pf-v6-c-form-control--PaddingInlineStart: 1rem;
|
|
2347
|
+
--pf-v6-c-form-control--PaddingInlineEnd: 1rem;
|
|
2348
|
+
--pf-v6-c-form-control__utilities--PaddingInlineEnd: 0;
|
|
2349
|
+
}
|
|
2350
|
+
|
|
2351
|
+
.pf-chatbot__message-textarea.pf-v6-c-form-control.pf-m-textarea {
|
|
2352
|
+
--pf-v6-c-form-control--textarea--PaddingBlockStart--offset: 0;
|
|
2353
|
+
--pf-v6-c-form-control--textarea--PaddingBlockEnd--offset: 0;
|
|
2354
|
+
--pf-v6-c-form-control--textarea--PaddingInlineStart--offset: 0;
|
|
2355
|
+
--pf-v6-c-form-control--textarea--PaddingInlineEnd--offset: 0;
|
|
2356
|
+
}
|
|
2357
|
+
|
|
2358
|
+
@media screen and (max-width: 359px) {
|
|
2359
|
+
.pf-chatbot__message-textarea {
|
|
2360
|
+
margin-top: var(--pf-t--global--spacer--md) !important;
|
|
2361
|
+
margin-bottom: var(--pf-t--global--spacer--md) !important;
|
|
2362
|
+
}
|
|
2363
|
+
}
|
|
2364
|
+
@media screen and (max-width: 415px) {
|
|
2365
|
+
.pf-chatbot--embedded .pf-chatbot__message-textarea {
|
|
2366
|
+
margin-top: var(--pf-t--global--spacer--md) !important;
|
|
2367
|
+
margin-bottom: var(--pf-t--global--spacer--md) !important;
|
|
2368
|
+
}
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
.pf-chatbot__message-bar-input.pf-m-compact {
|
|
2372
|
+
padding-block-start: 0;
|
|
2373
|
+
padding-block-end: 0;
|
|
2374
|
+
}
|
|
2375
|
+
.pf-chatbot__message-bar-input.pf-m-compact .pf-chatbot__message-textarea {
|
|
2376
|
+
font-size: var(--pf-t--global--font--size--sm) !important;
|
|
2377
|
+
}
|
|
2378
|
+
|
|
2379
|
+
.pf-m-compact .pf-chatbot__message-bar-actions,
|
|
2380
|
+
.pf-m-compact .pf-chatbot__message-bar-actions-group {
|
|
2381
|
+
padding-block-start: var(--pf-t--global--spacer--sm);
|
|
2382
|
+
padding-block-end: var(--pf-t--global--spacer--sm);
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
.pf-chatbot__message-bar.pf-m-multiline {
|
|
2386
|
+
border-radius: calc(var(--pf-t--global--border--radius--small) * 2);
|
|
2387
|
+
}
|
|
2388
|
+
|
|
2389
|
+
.pf-chatbot__jump {
|
|
2390
|
+
position: absolute !important;
|
|
2391
|
+
inset-inline-start: 75% !important;
|
|
2392
|
+
width: 2rem !important;
|
|
2393
|
+
height: 2rem !important;
|
|
2394
|
+
display: flex !important;
|
|
2395
|
+
align-items: center !important;
|
|
2396
|
+
justify-content: center !important;
|
|
2397
|
+
padding: var(--pf-t--global--spacer--md) !important;
|
|
2398
|
+
border-radius: var(--pf-t--global--border--radius--pill) !important;
|
|
2399
|
+
--pf-v6-c-button--MinWidth: 2rem !important;
|
|
2400
|
+
background-color: var(--pf-t--global--background--color--primary--default) !important;
|
|
2401
|
+
border: 1px solid var(--pf-t--global--border--color--default) !important;
|
|
2402
|
+
box-shadow: var(--pf-t--global--box-shadow--sm);
|
|
2403
|
+
color: var(--pf-t--global--icon--color--subtle) !important;
|
|
2404
|
+
transform: translate3d(-50%, 0, 0) !important;
|
|
2405
|
+
transition: background-color var(--pf-t--global--motion--timing-function--accelerate) var(--pf-t--global--motion--duration--sm), box-shadow var(--pf-t--global--motion--timing-function--accelerate) var(--pf-t--global--motion--duration--sm), transform var(--pf-t--global--motion--timing-function--accelerate) var(--pf-t--global--motion--duration--md), opacity var(--pf-t--global--motion--timing-function--accelerate) var(--pf-t--global--motion--duration--md) !important;
|
|
2406
|
+
z-index: var(--pf-t--global--z-index--md) !important;
|
|
2407
|
+
}
|
|
2408
|
+
.pf-chatbot__jump .pf-v6-c-button__text {
|
|
2409
|
+
line-height: 1rem;
|
|
2410
|
+
}
|
|
2411
|
+
.pf-chatbot__jump:hover, .pf-chatbot__jump:focus {
|
|
2412
|
+
background-color: var(--pf-t--global--background--color--primary--hover) !important;
|
|
2413
|
+
box-shadow: var(--pf-t--global--box-shadow--md) !important;
|
|
2414
|
+
color: var(--pf-t--global--icon--color--regular) !important;
|
|
2415
|
+
}
|
|
2416
|
+
.pf-chatbot__jump--top {
|
|
2417
|
+
inset-block-start: var(--pf-t--global--spacer--md) !important;
|
|
2418
|
+
}
|
|
2419
|
+
.pf-chatbot__jump--bottom {
|
|
2420
|
+
inset-block-end: var(--pf-t--global--spacer--md) !important;
|
|
2421
|
+
}
|
|
2422
|
+
@media screen and (max-height: 518px) {
|
|
2423
|
+
.pf-chatbot__jump {
|
|
2424
|
+
display: none;
|
|
2425
|
+
}
|
|
2426
|
+
}
|
|
2427
|
+
|
|
2428
|
+
.pf-chatbot__messagebox {
|
|
2429
|
+
height: 100%;
|
|
2430
|
+
overflow-y: auto;
|
|
2431
|
+
display: flex;
|
|
2432
|
+
flex-direction: column;
|
|
2433
|
+
row-gap: var(--pf-t--global--spacer--sm);
|
|
2434
|
+
padding: var(--pf-t--global--spacer--lg);
|
|
2435
|
+
}
|
|
2436
|
+
@media screen and (max-width: 32rem) {
|
|
2437
|
+
.pf-chatbot__messagebox {
|
|
2438
|
+
width: 100%;
|
|
2439
|
+
}
|
|
2440
|
+
}
|
|
2441
|
+
@media screen and (max-height: 518px) {
|
|
2442
|
+
.pf-chatbot__messagebox {
|
|
2443
|
+
overflow-y: visible;
|
|
2444
|
+
}
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
.pf-chatbot__messagebox--bottom > :first-child {
|
|
2448
|
+
margin-top: auto !important;
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2451
|
+
@media screen and (min-width: 64rem) {
|
|
2452
|
+
.pf-chatbot--embedded .pf-chatbot__messagebox,
|
|
2453
|
+
.pf-chatbot--drawer .pf-chatbot__messagebox,
|
|
2454
|
+
.pf-chatbot--fullscreen .pf-chatbot__messagebox {
|
|
2455
|
+
max-width: 60rem;
|
|
2456
|
+
width: 100%;
|
|
2457
|
+
}
|
|
2458
|
+
}
|
|
2459
|
+
.pf-chatbot.pf-m-compact .pf-chatbot__messagebox {
|
|
2460
|
+
padding: var(--pf-t--global--spacer--md);
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
.pf-chatbot__message-divider {
|
|
2464
|
+
display: grid;
|
|
2465
|
+
padding-block-end: var(--pf-t--global--spacer--xl);
|
|
2466
|
+
}
|
|
2467
|
+
.pf-chatbot__message-divider .pf-v6-c-divider,
|
|
2468
|
+
.pf-chatbot__message-divider .pf-v6-c-label {
|
|
2469
|
+
grid-row: 1/1;
|
|
2470
|
+
grid-column: 1/1;
|
|
2471
|
+
}
|
|
2472
|
+
.pf-chatbot__message-divider .pf-v6-c-label {
|
|
2473
|
+
--pf-v6-c-label--BorderColor: var(--pf-t--global--border--color--default);
|
|
2474
|
+
--pf-v6-c-label--PaddingInlineStart: var(--pf-t--global--spacer--action--horizontal--compact);
|
|
2475
|
+
--pf-v6-c-label--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--compact);
|
|
2476
|
+
}
|
|
2477
|
+
.pf-chatbot__message-divider .pf-v6-c-label .pf-v6-c-label__text {
|
|
2478
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
2479
|
+
text-align: center;
|
|
2480
|
+
}
|
|
2481
|
+
.pf-chatbot__message-divider.pf-m-divider .pf-v6-c-label {
|
|
2482
|
+
--pf-v6-c-label--MaxWidth: 75%;
|
|
2483
|
+
justify-self: center;
|
|
2484
|
+
}
|
|
2485
|
+
.pf-chatbot__message-divider.pf-m-divider .pf-v6-c-divider {
|
|
2486
|
+
align-self: center;
|
|
2487
|
+
}
|
|
2488
|
+
.pf-chatbot__message-divider.pf-m-wrap .pf-v6-c-label,
|
|
2489
|
+
.pf-chatbot__message-divider.pf-m-wrap .pf-v6-c-label__text {
|
|
2490
|
+
white-space: normal;
|
|
2491
|
+
}
|
|
2492
|
+
|
|
2493
|
+
.pf-chatbot__jump {
|
|
2494
|
+
position: absolute !important;
|
|
2495
|
+
inset-inline-start: 75% !important;
|
|
2496
|
+
width: 2rem !important;
|
|
2497
|
+
height: 2rem !important;
|
|
2498
|
+
display: flex !important;
|
|
2499
|
+
align-items: center !important;
|
|
2500
|
+
justify-content: center !important;
|
|
2501
|
+
padding: var(--pf-t--global--spacer--md) !important;
|
|
2502
|
+
border-radius: var(--pf-t--global--border--radius--pill) !important;
|
|
2503
|
+
--pf-v6-c-button--MinWidth: 2rem !important;
|
|
2504
|
+
background-color: var(--pf-t--global--background--color--primary--default) !important;
|
|
2505
|
+
border: 1px solid var(--pf-t--global--border--color--default) !important;
|
|
2506
|
+
box-shadow: var(--pf-t--global--box-shadow--sm);
|
|
2507
|
+
color: var(--pf-t--global--icon--color--subtle) !important;
|
|
2508
|
+
transform: translate3d(-50%, 0, 0) !important;
|
|
2509
|
+
transition: background-color var(--pf-t--global--motion--timing-function--accelerate) var(--pf-t--global--motion--duration--sm), box-shadow var(--pf-t--global--motion--timing-function--accelerate) var(--pf-t--global--motion--duration--sm), transform var(--pf-t--global--motion--timing-function--accelerate) var(--pf-t--global--motion--duration--md), opacity var(--pf-t--global--motion--timing-function--accelerate) var(--pf-t--global--motion--duration--md) !important;
|
|
2510
|
+
z-index: var(--pf-t--global--z-index--md) !important;
|
|
2511
|
+
}
|
|
2512
|
+
.pf-chatbot__jump .pf-v6-c-button__text {
|
|
2513
|
+
line-height: 1rem;
|
|
2514
|
+
}
|
|
2515
|
+
.pf-chatbot__jump:hover, .pf-chatbot__jump:focus {
|
|
2516
|
+
background-color: var(--pf-t--global--background--color--primary--hover) !important;
|
|
2517
|
+
box-shadow: var(--pf-t--global--box-shadow--md) !important;
|
|
2518
|
+
color: var(--pf-t--global--icon--color--regular) !important;
|
|
2519
|
+
}
|
|
2520
|
+
.pf-chatbot__jump--top {
|
|
2521
|
+
inset-block-start: var(--pf-t--global--spacer--md) !important;
|
|
2522
|
+
}
|
|
2523
|
+
.pf-chatbot__jump--bottom {
|
|
2524
|
+
inset-block-end: var(--pf-t--global--spacer--md) !important;
|
|
2525
|
+
}
|
|
2526
|
+
@media screen and (max-height: 518px) {
|
|
2527
|
+
.pf-chatbot__jump {
|
|
2528
|
+
display: none;
|
|
2529
|
+
}
|
|
2530
|
+
}
|
|
2531
|
+
|
|
2532
|
+
.pf-chatbot__onboarding-modal {
|
|
2533
|
+
overflow-x: hidden;
|
|
2534
|
+
}
|
|
2535
|
+
.pf-chatbot__onboarding-modal .pf-chatbot__onboarding--title {
|
|
2536
|
+
margin-block-end: var(--pf-t--global--spacer--md);
|
|
2537
|
+
}
|
|
2538
|
+
.pf-chatbot__onboarding-modal .pf-chatbot__onboarding--section {
|
|
2539
|
+
display: flex;
|
|
2540
|
+
flex-direction: column;
|
|
2541
|
+
width: 100%;
|
|
2542
|
+
height: 100%;
|
|
2543
|
+
}
|
|
2544
|
+
.pf-chatbot__onboarding-modal .pf-chatbot__onboarding--modal-body {
|
|
2545
|
+
display: flex;
|
|
2546
|
+
flex-direction: column;
|
|
2547
|
+
}
|
|
2548
|
+
.pf-chatbot__onboarding-modal .pf-chatbot__onboarding--modal-text {
|
|
2549
|
+
display: flex;
|
|
2550
|
+
flex-direction: column;
|
|
2551
|
+
justify-content: flex-end;
|
|
2552
|
+
}
|
|
2553
|
+
.pf-chatbot__onboarding-modal .pf-v6-c-content {
|
|
2554
|
+
font-size: var(--pf-t--global--font--size--body--lg);
|
|
2555
|
+
}
|
|
2556
|
+
.pf-chatbot__onboarding-modal .pf-chatbot__onboarding--header {
|
|
2557
|
+
display: flex;
|
|
2558
|
+
align-items: center;
|
|
2559
|
+
justify-content: center;
|
|
2560
|
+
flex-direction: column;
|
|
2561
|
+
max-height: 65%;
|
|
2562
|
+
}
|
|
2563
|
+
.pf-chatbot__onboarding-modal .pf-chatbot__onboarding--header img {
|
|
2564
|
+
max-width: unset;
|
|
2565
|
+
height: 100%;
|
|
2566
|
+
}
|
|
2567
|
+
.pf-chatbot__onboarding-modal .pf-chatbot__onboarding--title {
|
|
2568
|
+
font-size: var(--pf-t--global--font--size--heading--h1);
|
|
2569
|
+
font-family: var(--pf-t--global--font--family--heading);
|
|
2570
|
+
font-weight: var(--pf-t--global--font--weight--heading--bold);
|
|
2571
|
+
}
|
|
2572
|
+
.pf-chatbot__onboarding-modal .pf-chatbot__onboarding--footer {
|
|
2573
|
+
margin-block-start: var(--pf-t--global--spacer--md);
|
|
2574
|
+
}
|
|
2575
|
+
@media screen and (max-height: 620px) {
|
|
2576
|
+
.pf-chatbot__onboarding-modal .pf-v6-c-modal-box__body {
|
|
2577
|
+
--pf-v6-c-modal-box__body--MinHeight: auto;
|
|
2578
|
+
overflow: visible;
|
|
2579
|
+
}
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2582
|
+
.pf-chatbot__chatbot-modal.pf-chatbot__chatbot-modal--docked.pf-chatbot__onboarding-modal.pf-chatbot__onboarding-modal--docked .pf-chatbot__onboarding--header img,
|
|
2583
|
+
.pf-chatbot__chatbot-modal.pf-chatbot__chatbot-modal--fullscreen.pf-chatbot__onboarding-modal.pf-chatbot__onboarding-modal--fullscreen .pf-chatbot__onboarding--header img,
|
|
2584
|
+
.pf-chatbot__chatbot-modal.pf-chatbot__chatbot-modal--embedded.pf-chatbot__onboarding-modal.pf-chatbot__onboarding-modal--embedded .pf-chatbot__onboarding--header img {
|
|
2585
|
+
max-width: 100%;
|
|
2586
|
+
height: auto;
|
|
2587
|
+
}
|
|
2588
|
+
|
|
2589
|
+
.pf-chatbot__chatbot-modal.pf-chatbot__chatbot-modal--fullscreen.pf-chatbot__onboarding-modal.pf-chatbot__onboarding-modal--fullscreen,
|
|
2590
|
+
.pf-chatbot__chatbot-modal.pf-chatbot__chatbot-modal--embedded.pf-chatbot__onboarding-modal.pf-chatbot__onboarding-modal--embedded {
|
|
2591
|
+
height: inherit !important;
|
|
2592
|
+
}
|
|
2593
|
+
.pf-chatbot__chatbot-modal.pf-chatbot__chatbot-modal--fullscreen.pf-chatbot__onboarding-modal.pf-chatbot__onboarding-modal--fullscreen .pf-chatbot__onboarding--title,
|
|
2594
|
+
.pf-chatbot__chatbot-modal.pf-chatbot__chatbot-modal--embedded.pf-chatbot__onboarding-modal.pf-chatbot__onboarding-modal--embedded .pf-chatbot__onboarding--title {
|
|
2595
|
+
font-size: var(--pf-t--global--font--size--heading--2xl);
|
|
2596
|
+
}
|
|
2597
|
+
|
|
2598
|
+
.pf-chatbot__onboarding-modal.pf-m-compact .pf-chatbot__onboarding--header {
|
|
2599
|
+
gap: var(--pf-t--global--spacer--md);
|
|
2600
|
+
align-items: flex-start;
|
|
2601
|
+
margin-block-start: var(--pf-t--global--spacer--lg);
|
|
2602
|
+
}
|
|
2603
|
+
.pf-chatbot__onboarding-modal.pf-m-compact .pf-chatbot__onboarding--modal-header {
|
|
2604
|
+
--pf-v6-c-modal-box__header--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
2605
|
+
--pf-v6-c-modal-box__header--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
2606
|
+
--pf-v6-c-modal-box__header--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
2607
|
+
--pf-v6-c-modal-box__header--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
2608
|
+
}
|
|
2609
|
+
.pf-chatbot__onboarding-modal.pf-m-compact .pf-chatbot__onboarding--modal-body {
|
|
2610
|
+
--pf-v6-c-modal-box__body--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
2611
|
+
--pf-v6-c-modal-box__body--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
2612
|
+
}
|
|
2613
|
+
|
|
2614
|
+
.pf-chatbot__response-actions {
|
|
2615
|
+
display: grid;
|
|
2616
|
+
gap: var(--pf-t--global--spacer--xs);
|
|
2617
|
+
grid-template-columns: repeat(auto-fit, minmax(0, max-content));
|
|
2618
|
+
}
|
|
2619
|
+
.pf-chatbot__response-actions .pf-chatbot__button--response-action.pf-v6-c-button.pf-m-plain.pf-m-small {
|
|
2620
|
+
--pf-v6-c-button__icon--Color: var(--pf-t--global--icon--color--subtle);
|
|
2621
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
2622
|
+
width: 2.3125rem;
|
|
2623
|
+
height: 2.3125rem;
|
|
2624
|
+
display: flex;
|
|
2625
|
+
align-items: center;
|
|
2626
|
+
justify-content: center;
|
|
2627
|
+
}
|
|
2628
|
+
.pf-chatbot__response-actions .pf-chatbot__button--response-action.pf-v6-c-button.pf-m-plain.pf-m-small:hover {
|
|
2629
|
+
--pf-v6-c-button__icon--Color: var(--pf-t--global--icon--color--subtle);
|
|
2630
|
+
}
|
|
2631
|
+
.pf-chatbot__response-actions .pf-chatbot__button--response-action.pf-v6-c-button.pf-m-plain.pf-m-small:focus {
|
|
2632
|
+
--pf-v6-c-button__icon--Color: var(--pf-t--global--icon--color--regular);
|
|
2633
|
+
--pf-v6-c-button--BackgroundColor: var(--pf-v6-c-button--hover--BackgroundColor);
|
|
2634
|
+
}
|
|
2635
|
+
|
|
2636
|
+
.pf-chatbot__message.pf-m-end .pf-chatbot__response-actions-groups,
|
|
2637
|
+
.pf-chatbot__message.pf-m-end :not(.pf-chatbot__response-actions-groups) > .pf-chatbot__response-actions {
|
|
2638
|
+
justify-content: end;
|
|
2639
|
+
}
|
|
2640
|
+
|
|
2641
|
+
.pf-chatbot__response-actions-groups {
|
|
2642
|
+
display: grid;
|
|
2643
|
+
grid-auto-flow: column;
|
|
2644
|
+
grid-auto-columns: max-content;
|
|
2645
|
+
gap: var(--pf-t--global--spacer--xs);
|
|
2646
|
+
}
|
|
2647
|
+
.pf-chatbot__response-actions-groups .pf-chatbot__response-actions {
|
|
2648
|
+
display: flex;
|
|
2649
|
+
}
|
|
2650
|
+
|
|
2651
|
+
.pf-v6-c-button.pf-chatbot__button--response-action-clicked.pf-v6-c-button.pf-m-plain.pf-m-small {
|
|
2652
|
+
--pf-v6-c-button--m-plain--BackgroundColor: var(--pf-t--global--background--color--action--plain--alt--clicked);
|
|
2653
|
+
--pf-v6-c-button__icon--Color: var(--pf-t--global--icon--color--regular);
|
|
2654
|
+
}
|
|
2655
|
+
|
|
2656
|
+
.pf-chatbot__settings-form-container {
|
|
2657
|
+
width: 100%;
|
|
2658
|
+
display: flex;
|
|
2659
|
+
justify-content: center;
|
|
2660
|
+
overflow: scroll;
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
.pf-chatbot__settings-form {
|
|
2664
|
+
display: flex;
|
|
2665
|
+
flex-direction: column;
|
|
2666
|
+
max-width: 60rem;
|
|
2667
|
+
flex: 1;
|
|
2668
|
+
}
|
|
2669
|
+
|
|
2670
|
+
.pf-chatbot__settings-form-row {
|
|
2671
|
+
font-size: var(--pf-t--global--font--size--body--lg);
|
|
2672
|
+
display: flex;
|
|
2673
|
+
align-items: center;
|
|
2674
|
+
justify-content: space-between;
|
|
2675
|
+
border-bottom: 1px solid var(--pf-t--global--border--color--default);
|
|
2676
|
+
padding: var(--pf-t--global--spacer--lg);
|
|
2677
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2680
|
+
.pf-chatbot__settings-form-row:last-of-type {
|
|
2681
|
+
border-bottom: 0px;
|
|
2682
|
+
}
|
|
2683
|
+
|
|
2684
|
+
.pf-chatbot__settings--title {
|
|
2685
|
+
font-family: var(--pf-t--global--font--family--heading);
|
|
2686
|
+
font-size: var(--pf-t--global--font--size--xl);
|
|
2687
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
2688
|
+
text-align: center;
|
|
2689
|
+
}
|
|
2690
|
+
|
|
2691
|
+
.pf-chatbot__settings-form-container.pf-m-compact .pf-chatbot__settings-form-row {
|
|
2692
|
+
padding: var(--pf-t--global--spacer--md);
|
|
2693
|
+
font-size: var(--pf-t--global--font--size--body--md);
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
.pf-chatbot__header.pf-m-compact {
|
|
2697
|
+
padding-inline-start: var(--pf-t--global--spacer--md);
|
|
2698
|
+
}
|
|
2699
|
+
|
|
2700
|
+
.pf-chatbot__source,
|
|
2701
|
+
.pf-chatbot__sources-card-base {
|
|
2702
|
+
display: flex;
|
|
2703
|
+
flex-direction: column;
|
|
2704
|
+
gap: var(--pf-t--global--spacer--sm);
|
|
2705
|
+
padding-block-start: var(--pf-t--global--spacer--sm);
|
|
2706
|
+
}
|
|
2707
|
+
.pf-chatbot__source:not(.pf-m-wrap),
|
|
2708
|
+
.pf-chatbot__sources-card-base:not(.pf-m-wrap) {
|
|
2709
|
+
max-width: 22.5rem;
|
|
2710
|
+
}
|
|
2711
|
+
|
|
2712
|
+
.pf-chatbot__sources-card-base a {
|
|
2713
|
+
color: var(--pf-t--global--text--color--link--default) !important;
|
|
2714
|
+
-webkit-text-decoration: var(--pf-t--global--text-decoration--link--line--default) !important;
|
|
2715
|
+
text-decoration: var(--pf-t--global--text-decoration--link--line--default) !important;
|
|
2716
|
+
}
|
|
2717
|
+
|
|
2718
|
+
.pf-chatbot__sources-card-base.pf-m-wrap .pf-chatbot__sources-list {
|
|
2719
|
+
display: flex;
|
|
2720
|
+
flex-wrap: wrap;
|
|
2721
|
+
list-style: none;
|
|
2722
|
+
gap: var(--pf-t--global--spacer--xs);
|
|
2723
|
+
}
|
|
2724
|
+
|
|
2725
|
+
.pf-chatbot__sources-card {
|
|
2726
|
+
box-shadow: var(--pf-t--global--box-shadow--sm);
|
|
2727
|
+
}
|
|
2728
|
+
|
|
2729
|
+
.pf-chatbot__compact-sources-card-body {
|
|
2730
|
+
--pf-v6-c-card--child--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
2731
|
+
}
|
|
2732
|
+
|
|
2733
|
+
.pf-chatbot__sources-card-subtitle,
|
|
2734
|
+
.pf-chatbot__sources-card-subtle {
|
|
2735
|
+
color: var(--pf-t--global--text--color--subtle);
|
|
2736
|
+
font-size: var(--pf-t--global--font--size--body--sm);
|
|
2737
|
+
font-weight: var(--pf-t--global--font--weight--body--default);
|
|
2738
|
+
}
|
|
2739
|
+
|
|
2740
|
+
.pf-chatbot__sources-card-body-text {
|
|
2741
|
+
display: block;
|
|
2742
|
+
display: -webkit-box;
|
|
2743
|
+
height: 2.8125rem;
|
|
2744
|
+
-webkit-line-clamp: 2;
|
|
2745
|
+
line-clamp: 2;
|
|
2746
|
+
-webkit-box-orient: vertical;
|
|
2747
|
+
overflow: hidden;
|
|
2748
|
+
text-overflow: ellipsis;
|
|
2749
|
+
}
|
|
2750
|
+
|
|
2751
|
+
.pf-chatbot__sources-card-title-container {
|
|
2752
|
+
display: flex;
|
|
2753
|
+
flex-direction: column;
|
|
2754
|
+
gap: var(--pf-t--global--spacer--xs);
|
|
2755
|
+
}
|
|
2756
|
+
|
|
2757
|
+
.pf-chatbot__sources-card-footer-container {
|
|
2758
|
+
border-top: var(--pf-t--global--border--width--regular) solid var(--pf-t--global--border--color--default);
|
|
2759
|
+
padding: var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--md) var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--sm) !important;
|
|
2760
|
+
}
|
|
2761
|
+
.pf-chatbot__sources-card-footer-container .pf-chatbot__sources-card-footer {
|
|
2762
|
+
display: flex;
|
|
2763
|
+
align-items: center;
|
|
2764
|
+
}
|
|
2765
|
+
.pf-chatbot__sources-card-footer-container .pf-chatbot__sources-card-footer-buttons {
|
|
2766
|
+
display: flex;
|
|
2767
|
+
gap: var(--pf-t--global--spacer--xs);
|
|
2768
|
+
align-items: center;
|
|
2769
|
+
justify-content: space-between;
|
|
2770
|
+
flex: 1;
|
|
2771
|
+
}
|
|
2772
|
+
.pf-chatbot__sources-card-footer-container .pf-chatbot__sources-card-footer-buttons .pf-v6-c-button {
|
|
2773
|
+
border-radius: var(--pf-t--global--border--radius--pill);
|
|
2774
|
+
padding: var(--pf-t--global--spacer--sm);
|
|
2775
|
+
width: 2.31rem;
|
|
2776
|
+
height: 2.31rem;
|
|
2777
|
+
display: flex;
|
|
2778
|
+
align-items: center;
|
|
2779
|
+
justify-content: center;
|
|
2780
|
+
}
|
|
2781
|
+
.pf-chatbot__sources-card-footer-container .pf-chatbot__sources-card-footer-buttons button:disabled .pf-v6-c-icon__content,
|
|
2782
|
+
.pf-chatbot__sources-card-footer-container .pf-chatbot__sources-card-footer-buttons button[disabled] .pf-v6-c-icon__content {
|
|
2783
|
+
color: var(--pf-t--global--icon--color--disabled);
|
|
2784
|
+
}
|
|
2785
|
+
.pf-chatbot__sources-card-footer-container .pf-chatbot__sources-card-footer-buttons .pf-v6-c-button__text {
|
|
2786
|
+
display: flex;
|
|
2787
|
+
align-items: center;
|
|
2788
|
+
}
|
|
2789
|
+
.pf-chatbot__sources-card-footer-container .pf-chatbot__sources-card-footer-buttons .pf-v6-c-button:hover .pf-v6-c-button__icon,
|
|
2790
|
+
.pf-chatbot__sources-card-footer-container .pf-chatbot__sources-card-footer-buttons .pf-v6-c-button:focus .pf-v6-c-button__icon {
|
|
2791
|
+
color: var(--pf-t--global--icon--color--regular);
|
|
2792
|
+
}
|
|
2793
|
+
.pf-chatbot__sources-card-footer-container .pf-chatbot__sources-card-footer-buttons .pf-v6-c-button__icon {
|
|
2794
|
+
color: var(--pf-t--global--icon--color--subtle);
|
|
2795
|
+
}
|
|
2796
|
+
|
|
2797
|
+
.pf-v6-c-card.pf-m-compact.pf-chatbot__sources-card .pf-v6-c-card__footer.pf-chatbot__sources-card-footer-container {
|
|
2798
|
+
border-top: var(--pf-t--global--border--width--regular) solid var(--pf-t--global--border--color--default);
|
|
2799
|
+
padding: var(--pf-t--global--spacer--xs) var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--xs) var(--pf-t--global--spacer--xs) !important;
|
|
2800
|
+
}
|
|
2801
|
+
|
|
2802
|
+
.pf-chatbot__source-details-subhead {
|
|
2803
|
+
color: var(--pf-t--global--text--color--subtle);
|
|
2804
|
+
font-size: var(--pf-t--global--icon--size--font--xs);
|
|
2805
|
+
font-weight: var(--pf-t--global--font--weight--body--bold);
|
|
2806
|
+
}
|
|
2807
|
+
|
|
2808
|
+
.pf-chatbot__source-details-heading {
|
|
2809
|
+
font-size: var(--pf-t--global--font--size--body--default);
|
|
2810
|
+
word-wrap: break-word;
|
|
2811
|
+
}
|
|
2812
|
+
|
|
2813
|
+
.pf-chatbot__source-details-icon {
|
|
2814
|
+
width: 100% !important;
|
|
2815
|
+
}
|
|
2816
|
+
|
|
2817
|
+
.pf-chatbot__source-details-icon > .pf-v6-c-icon__content > svg {
|
|
2818
|
+
width: 24px;
|
|
2819
|
+
color: var(--pf-t--global--icon--color--status--custom--default);
|
|
2820
|
+
}
|
|
2821
|
+
|
|
2822
|
+
.pf-chatbot-source-details-dropdown-item:hover .pf-chatbot__source-details-icon > .pf-v6-c-icon__content > svg {
|
|
2823
|
+
color: var(--pf-t--global--icon--color--status--custom--hover);
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2826
|
+
.pf-chatbot__source-details {
|
|
2827
|
+
flex-direction: row;
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
.pf-chatbot__source-details-text {
|
|
2831
|
+
max-width: 20rem;
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2834
|
+
.pf-chatbot__terms-of-use-modal .pf-v6-c-content {
|
|
2835
|
+
font-size: var(--pf-t--global--font--size--body--lg);
|
|
2836
|
+
}
|
|
2837
|
+
.pf-chatbot__terms-of-use-modal .pf-v6-c-content h2 {
|
|
2838
|
+
font-size: var(--pf-t--global--icon--size--font--heading--h2);
|
|
2839
|
+
font-family: var(--pf-t--global--font--family--heading);
|
|
2840
|
+
margin-bottom: var(--pf-t--global--spacer--md);
|
|
2841
|
+
margin-top: var(--pf-t--global--spacer--md);
|
|
2842
|
+
font-weight: var(--pf-t--global--font--weight--heading--default);
|
|
2843
|
+
}
|
|
2844
|
+
.pf-chatbot__terms-of-use-modal .pf-v6-c-content h2:first-of-type {
|
|
2845
|
+
margin-top: 0;
|
|
2846
|
+
}
|
|
2847
|
+
.pf-chatbot__terms-of-use-modal .pf-chatbot__terms-of-use--header {
|
|
2848
|
+
display: flex;
|
|
2849
|
+
align-items: center;
|
|
2850
|
+
justify-content: center;
|
|
2851
|
+
flex-direction: column;
|
|
2852
|
+
gap: var(--pf-t--global--spacer--xl);
|
|
2853
|
+
margin-block-start: var(--pf-t--global--spacer--xl);
|
|
2854
|
+
}
|
|
2855
|
+
.pf-chatbot__terms-of-use-modal .pf-chatbot__terms-of-use--title {
|
|
2856
|
+
font-size: var(--pf-t--global--font--size--heading--h1);
|
|
2857
|
+
font-family: var(--pf-t--global--font--family--heading);
|
|
2858
|
+
font-weight: var(--pf-t--global--font--weight--heading--bold);
|
|
2859
|
+
}
|
|
2860
|
+
.pf-chatbot__terms-of-use-modal .pf-chatbot__terms-of-use--footer {
|
|
2861
|
+
margin-block-start: var(--pf-t--global--spacer--md);
|
|
2862
|
+
}
|
|
2863
|
+
.pf-chatbot__terms-of-use-modal .pf-chatbot__terms-of-use--section {
|
|
2864
|
+
display: flex;
|
|
2865
|
+
flex-direction: column;
|
|
2866
|
+
height: 100%;
|
|
2867
|
+
width: 100%;
|
|
2868
|
+
}
|
|
2869
|
+
@media screen and (max-height: 620px) {
|
|
2870
|
+
.pf-chatbot__terms-of-use-modal .pf-v6-c-modal-box__body {
|
|
2871
|
+
--pf-v6-c-modal-box__body--MinHeight: auto;
|
|
2872
|
+
overflow: visible;
|
|
2873
|
+
}
|
|
2874
|
+
}
|
|
2875
|
+
|
|
2876
|
+
.pf-chatbot__chatbot-modal.pf-chatbot__chatbot-modal--fullscreen.pf-chatbot__terms-of-use-modal.pf-chatbot__terms-of-use-modal--fullscreen,
|
|
2877
|
+
.pf-chatbot__chatbot-modal.pf-chatbot__chatbot-modal--embedded.pf-chatbot__terms-of-use-modal.pf-chatbot__terms-of-use-modal--embedded {
|
|
2878
|
+
height: inherit !important;
|
|
2879
|
+
}
|
|
2880
|
+
.pf-chatbot__chatbot-modal.pf-chatbot__chatbot-modal--fullscreen.pf-chatbot__terms-of-use-modal.pf-chatbot__terms-of-use-modal--fullscreen .pf-v6-c-content h2,
|
|
2881
|
+
.pf-chatbot__chatbot-modal.pf-chatbot__chatbot-modal--embedded.pf-chatbot__terms-of-use-modal.pf-chatbot__terms-of-use-modal--embedded .pf-v6-c-content h2 {
|
|
2882
|
+
font-size: var(--pf-t--global--icon--size--font--heading--h1);
|
|
2883
|
+
}
|
|
2884
|
+
.pf-chatbot__chatbot-modal.pf-chatbot__chatbot-modal--fullscreen.pf-chatbot__terms-of-use-modal.pf-chatbot__terms-of-use-modal--fullscreen .pf-chatbot__terms-of-use--title,
|
|
2885
|
+
.pf-chatbot__chatbot-modal.pf-chatbot__chatbot-modal--embedded.pf-chatbot__terms-of-use-modal.pf-chatbot__terms-of-use-modal--embedded .pf-chatbot__terms-of-use--title {
|
|
2886
|
+
font-size: var(--pf-t--global--font--size--heading--2xl);
|
|
2887
|
+
}
|
|
2888
|
+
|
|
2889
|
+
.pf-chatbot__terms-of-use-modal.pf-m-compact .pf-chatbot__terms-of-use--header {
|
|
2890
|
+
gap: var(--pf-t--global--spacer--md);
|
|
2891
|
+
align-items: flex-start;
|
|
2892
|
+
margin-block-start: var(--pf-t--global--spacer--lg);
|
|
2893
|
+
}
|
|
2894
|
+
.pf-chatbot__terms-of-use-modal.pf-m-compact .pf-chatbot__terms-of-use--modal-header {
|
|
2895
|
+
--pf-v6-c-modal-box__header--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
2896
|
+
--pf-v6-c-modal-box__header--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
2897
|
+
--pf-v6-c-modal-box__header--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
2898
|
+
--pf-v6-c-modal-box__header--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
2899
|
+
}
|
|
2900
|
+
.pf-chatbot__terms-of-use-modal.pf-m-compact .pf-chatbot__terms-of-use--modal-body {
|
|
2901
|
+
--pf-v6-c-modal-box__body--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
2902
|
+
--pf-v6-c-modal-box__body--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
2903
|
+
}
|
|
2904
|
+
|
|
2905
|
+
.pf-chatbot__tool-response {
|
|
2906
|
+
--pf-v6-c-card--BorderColor: var(--pf-t--global--border--color--default);
|
|
2907
|
+
overflow: unset;
|
|
2908
|
+
}
|
|
2909
|
+
|
|
2910
|
+
.pf-chatbot__tool-response-expandable-section {
|
|
2911
|
+
--pf-v6-c-expandable-section--Gap: var(--pf-t--global--spacer--xs);
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2914
|
+
.pf-chatbot__tool-response-section {
|
|
2915
|
+
display: flex;
|
|
2916
|
+
flex-direction: column;
|
|
2917
|
+
gap: var(--pf-t--global--spacer--xs);
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
.pf-chatbot__tool-response-subheading {
|
|
2921
|
+
font-size: var(--pf-t--global--font--size--body--sm);
|
|
2922
|
+
font-weight: var(--pf-t--global--font--weight--body--default);
|
|
2923
|
+
color: var(--pf-t--global--text--color--subtle);
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2926
|
+
.pf-chatbot__tool-response-body {
|
|
2927
|
+
color: var(--pf-t--global--text--color--subtle);
|
|
2928
|
+
margin-block-end: var(--pf-t--global--spacer--xs);
|
|
2929
|
+
}
|
|
2930
|
+
|
|
2931
|
+
.pf-chatbot__tool-response-card {
|
|
2932
|
+
--pf-v6-c-card--BorderColor: var(--pf-t--global--border--color--default);
|
|
2933
|
+
--pf-v6-c-card--first-child--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
2934
|
+
--pf-v6-c-card__title--not--last-child--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
2935
|
+
--pf-v6-c-card--c-divider--child--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
2936
|
+
}
|
|
2937
|
+
.pf-chatbot__tool-response-card .pf-v6-c-divider {
|
|
2938
|
+
--pf-v6-c-divider--Color: var(--pf-t--global--border--color--default);
|
|
2939
|
+
}
|
|
2940
|
+
|
|
2941
|
+
.pf-chatbot__tool-response-expandable-section .pf-v6-c-expandable-section__toggle .pf-m-markdown {
|
|
2942
|
+
padding: inherit;
|
|
2943
|
+
}
|
|
2944
|
+
|
|
2945
|
+
.pf-chatbot__tool-response .pf-chatbot__message-image {
|
|
2946
|
+
max-width: 100%;
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
.pf-chatbot__tool-call {
|
|
2950
|
+
--pf-v6-c-card--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
2951
|
+
--pf-v6-c-card--BorderColor: var(--pf-t--global--border--color--default);
|
|
2952
|
+
overflow: unset;
|
|
2953
|
+
row-gap: var(--pf-t--global--spacer--sm);
|
|
2954
|
+
}
|
|
2955
|
+
.pf-chatbot__tool-call .pf-chatbot__tool-call-title-content {
|
|
2956
|
+
display: flex;
|
|
2957
|
+
gap: var(--pf-t--global--spacer--xs);
|
|
2958
|
+
align-items: center;
|
|
2959
|
+
}
|
|
2960
|
+
.pf-chatbot__tool-call .pf-chatbot__tool-call-title:not(:has(.pf-chatbot__tool-call-expandable-section)) .pf-chatbot__tool-call-title-text {
|
|
2961
|
+
color: var(--pf-t--global--text--color--regular);
|
|
2962
|
+
font-size: var(--pf-t--global--font--size--body--default);
|
|
2963
|
+
font-weight: var(--pf-t--global--font--weight--body--default);
|
|
2964
|
+
}
|
|
2965
|
+
.pf-chatbot__tool-call .pf-chatbot__tool-call-title {
|
|
2966
|
+
overflow: unset;
|
|
2967
|
+
}
|
|
2968
|
+
.pf-chatbot__tool-call .pf-chatbot__tool-call-expandable-section {
|
|
2969
|
+
--pf-v6-c-expandable-section--Gap: var(--pf-t--global--spacer--xs);
|
|
2970
|
+
}
|
|
2971
|
+
.pf-chatbot__tool-call .pf-chatbot__tool-call-expandable-section .pf-v6-c-expandable-section__content {
|
|
2972
|
+
color: var(--pf-t--global--text--color--subtle);
|
|
2973
|
+
}
|
|
2974
|
+
.pf-chatbot__tool-call .pf-chatbot__tool-call-action-list {
|
|
2975
|
+
justify-content: flex-end;
|
|
2976
|
+
}
|
|
2977
|
+
|
|
2978
|
+
.pf-chatbot-m-hidden {
|
|
2979
|
+
clip: rect(0 0 0 0);
|
|
2980
|
+
clip-path: inset(50%);
|
|
2981
|
+
height: 1px;
|
|
2982
|
+
overflow: hidden;
|
|
2983
|
+
position: absolute;
|
|
2984
|
+
white-space: nowrap;
|
|
2985
|
+
width: 1px;
|
|
2986
|
+
}
|
|
2987
|
+
|
|
2988
|
+
/*# sourceMappingURL=main.css.map */
|