vue-advanced-chat
vue-advanced-chat copied to clipboard
A beautiful chat rooms web component compatible with all Javascript frameworks
## Describe the bug When I switch rooms, the new message line sometimes doesn't appear. ## Steps to reproduce Describe us how we could reproduce the bug you're trying to...
When configuring the room-id in the component, the following error is returned:  the code:  The description says the following:  But what happens is just an error, could...
Develop
**What kind of change does this PR introduce?** (check at least one) - [x] Bugfix - [ ] Feature - [ ] Code style update - [ ] Refactor -...
Prevent XSS
## Describe the bug Currently we has not apply yet any protection from XSS exploit as below. ## Steps to reproduce 1. Boxchat write '' 2. Broswer show alert hi...
When trying to build with Vue type script check (vue-tsc --noEmit && vite build) build fails with following errors: ``` node_modules/vue-advanced-chat/types/index.d.ts:1:15 - error TS2305: Module '"vue"' has no exported member...
In some cases, I want to disable the ability to enter a message. For example, a user has blocked the ability to send messages to him. At the same time,...
Hi @antoine92190 const style = document.createElement('style') style.innerHTML = '.vac-room-header { display: none !important; }' this.$refs.chatWindow.shadowRoot.appendChild(style)..... i am using your above code in my custom method addCustomCss() and calling that method...
I would find it very useful to be able to reliably call something whenever a user focuses in and blurs out of the main text field.. including when autofocus does...
Only works the second time. Watch the video it should be obvious.https://user-images.githubusercontent.com/58461149/222581204-cd03d84d-f592-44d4-9003-0c5493c5797f.MOV
## Describe the bug ``` ``` some props only accept string, if I set them as bool, it didn't work. Example of working: ``` show-emojis="false" show-reaction-emojis="false" show-audio="false" show-search="true" show-add-room="false" show-files="false"...