[PR #10] [CLOSED] Make the bot responsive #10

Closed
opened 2026-02-16 09:19:57 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anythingllm-embed/pull/10
Author: @denishotii
Created: 5/28/2025
Status: Closed

Base: mainHead: make-the-bot-responsive


📝 Commits (10+)

  • 670d18a Customized KUala-Bot intro animation and Language Detection
  • e96b7d7 Implement First Version of Open Chat KUala Button
  • e4922a6 Add Introduction Animation and Blue Light efffect on Hover
  • d532465 Merge pull request #1 from denishotii/open_chat_button_kuala_design
  • 6548020 Implement first version of Chat Container
  • 85b1f66 Redesign the ChatHistory and Prompt Reply Section
  • 62003ef Merge pull request #2 from denishotii/redesign-chat-container
  • 92a01c6 Fix a Hover Error in Header Menu
  • 7fb15f5 Fix Send Button Outline Border
  • 515b899 Merge pull request #3 from denishotii/redesign-chat-container

📊 Changes

25 files changed (+1149 additions, -188 deletions)

View changed files

📝 src/App.jsx (+11 -19)
src/assets/CoolKuala.svg (+1 -0)
src/assets/KUalaWithBook.svg (+1 -0)
src/assets/superKuala.png (+0 -0)
src/assets/superKuala.svg (+159 -0)
src/assets/superKualaColor.svg (+1 -0)
📝 src/components/ChatWindow/ChatContainer/ChatHistory/HistoricalMessage/index.jsx (+15 -12)
📝 src/components/ChatWindow/ChatContainer/ChatHistory/PromptReply/index.jsx (+14 -17)
src/components/ChatWindow/ChatContainer/ChatHistory/WelcomePanel/index.jsx (+41 -0)
📝 src/components/ChatWindow/ChatContainer/ChatHistory/index.jsx (+4 -5)
📝 src/components/ChatWindow/ChatContainer/PromptInput/index.jsx (+58 -69)
📝 src/components/ChatWindow/ChatContainer/index.jsx (+3 -1)
📝 src/components/ChatWindow/Header/index.jsx (+77 -32)
📝 src/components/ChatWindow/index.jsx (+13 -2)
src/components/OpenButton/ContrastCheck.jsx (+117 -0)
src/components/OpenButton/IntroAnimation.jsx (+126 -0)
src/components/OpenButton/OpenButton.jsx (+68 -0)
src/components/OpenButton/SpeechBubble.jsx (+31 -0)
src/components/OpenButton/SuperKualaMascot.jsx (+15 -0)
📝 src/components/OpenButton/index.jsx (+219 -29)

...and 5 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anythingllm-embed/pull/10 **Author:** [@denishotii](https://github.com/denishotii) **Created:** 5/28/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `make-the-bot-responsive` --- ### 📝 Commits (10+) - [`670d18a`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/670d18a5837c58eacd929837e514b681fc441929) Customized KUala-Bot intro animation and Language Detection - [`e96b7d7`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/e96b7d7364c423d1cb6dde27264141ed5d46f788) Implement First Version of Open Chat KUala Button - [`e4922a6`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/e4922a6220c683d2ecf17f55d4b1f0574760e89e) Add Introduction Animation and Blue Light efffect on Hover - [`d532465`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/d532465c0b707a4f8daf307aa8fc9d1295419c59) Merge pull request #1 from denishotii/open_chat_button_kuala_design - [`6548020`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/65480206fe60797a7c7f6307418df941bab26241) Implement first version of Chat Container - [`85b1f66`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/85b1f66a7b16d45989ede77f58511bbf8bd1d022) Redesign the ChatHistory and Prompt Reply Section - [`62003ef`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/62003ef45076aba54238943d2af561adca54c501) Merge pull request #2 from denishotii/redesign-chat-container - [`92a01c6`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/92a01c6b5c560a4216514ad1d93bcf65dc29c959) Fix a Hover Error in Header Menu - [`7fb15f5`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/7fb15f558e02f9663345abaab9e587cf046df83d) Fix Send Button Outline Border - [`515b899`](https://github.com/Mintplex-Labs/anythingllm-embed/commit/515b8990a94f10af59a02e685fbb1c4c92364d06) Merge pull request #3 from denishotii/redesign-chat-container ### 📊 Changes **25 files changed** (+1149 additions, -188 deletions) <details> <summary>View changed files</summary> 📝 `src/App.jsx` (+11 -19) ➕ `src/assets/CoolKuala.svg` (+1 -0) ➕ `src/assets/KUalaWithBook.svg` (+1 -0) ➕ `src/assets/superKuala.png` (+0 -0) ➕ `src/assets/superKuala.svg` (+159 -0) ➕ `src/assets/superKualaColor.svg` (+1 -0) 📝 `src/components/ChatWindow/ChatContainer/ChatHistory/HistoricalMessage/index.jsx` (+15 -12) 📝 `src/components/ChatWindow/ChatContainer/ChatHistory/PromptReply/index.jsx` (+14 -17) ➕ `src/components/ChatWindow/ChatContainer/ChatHistory/WelcomePanel/index.jsx` (+41 -0) 📝 `src/components/ChatWindow/ChatContainer/ChatHistory/index.jsx` (+4 -5) 📝 `src/components/ChatWindow/ChatContainer/PromptInput/index.jsx` (+58 -69) 📝 `src/components/ChatWindow/ChatContainer/index.jsx` (+3 -1) 📝 `src/components/ChatWindow/Header/index.jsx` (+77 -32) 📝 `src/components/ChatWindow/index.jsx` (+13 -2) ➕ `src/components/OpenButton/ContrastCheck.jsx` (+117 -0) ➕ `src/components/OpenButton/IntroAnimation.jsx` (+126 -0) ➕ `src/components/OpenButton/OpenButton.jsx` (+68 -0) ➕ `src/components/OpenButton/SpeechBubble.jsx` (+31 -0) ➕ `src/components/OpenButton/SuperKualaMascot.jsx` (+15 -0) 📝 `src/components/OpenButton/index.jsx` (+219 -29) _...and 5 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 09:19:57 -05:00
yindo closed this issue 2026-02-16 09:19:57 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anythingllm-embed#10