@bcc-code/vue-bcc-chat-ui 5.3.0 → 5.4.2
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/dist/chat/data.d.ts +2 -2
- package/dist/chat/index.d.ts +2 -2
- package/dist/chat/types.d.ts +6 -1
- package/dist/offline/offlineStoreLocalStorage.d.ts +4 -1
- package/dist/offline/types.d.ts +3 -0
- package/dist/vue-bcc-chat-ui.js +9347 -9323
- package/dist/vue-bcc-chat-ui.js.map +1 -1
- package/package.json +1 -1
- package/src/components/BccChatMessageList.vue +2 -2
package/package.json
CHANGED
|
@@ -298,8 +298,8 @@ function closeScheduledMessage() {
|
|
|
298
298
|
<div v-else class="bcc-chat-message-list-offline">
|
|
299
299
|
<span>Loading...</span>
|
|
300
300
|
</div>
|
|
301
|
-
<div v-if="isChatMessagesEmpty" class="bcc-chat-message-list-offline">
|
|
302
|
-
<span>No messages
|
|
301
|
+
<div v-if="isChatMessagesEmpty && chatGroup" class="bcc-chat-message-list-offline">
|
|
302
|
+
<span>No messages have been sent yet</span>
|
|
303
303
|
</div>
|
|
304
304
|
</div>
|
|
305
305
|
</template>
|