vue-intergrall-plugins 0.0.154 → 0.0.155
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/README.md +3 -2
- package/dist/vue-intergrall-plugins.esm.js +4668 -231
- package/dist/vue-intergrall-plugins.min.js +1 -1
- package/dist/vue-intergrall-plugins.ssr.js +4584 -234
- package/package.json +6 -4
- package/src/lib-components/Chat/BtnStandardMessages.vue +17 -0
- package/src/lib-components/Chat/StandardMessages.vue +208 -0
- package/src/lib-components/Chat/TextFooter.vue +53 -6
package/README.md
CHANGED
|
@@ -120,10 +120,11 @@ Biblioteca de plugins feitos em Vue para serem utilizados em qualquer lugar dent
|
|
|
120
120
|
**formattedMessageSettings:**
|
|
121
121
|
- type: Object
|
|
122
122
|
- required: false
|
|
123
|
-
- default: {
|
|
123
|
+
- default: { hasStandardMessages: false, msgType: 0, token_cliente: "" }
|
|
124
124
|
- desc: Configurações das mensagens formatadas, onde:
|
|
125
|
-
-
|
|
125
|
+
- hasStandardMessages: Faz a aparição do botão de mensagem formatada caso verdadeiro. Aceita Boolean, true ou false.
|
|
126
126
|
- msgType: Tipo da mensagem formatada. Aceita os números 0 (sem mensagem), 1 (tipo mensagem 1) ou 2 (tipo mensagem 2).
|
|
127
|
+
- token_cliente: Para que a requisição de obter as mensagens formatadas funcione, é necessário passar o token_cliente.
|
|
127
128
|
|
|
128
129
|
**fileSettings:**
|
|
129
130
|
- type: Object
|