vue-intergrall-plugins 1.1.16 → 1.1.17

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.
Files changed (46) hide show
  1. package/README.md +0 -0
  2. package/dist/vue-intergrall-plugins.esm.js +24 -12
  3. package/dist/vue-intergrall-plugins.min.js +1 -1
  4. package/dist/vue-intergrall-plugins.ssr.js +37 -25
  5. package/package.json +66 -66
  6. package/src/lib-components/Buttons/IconButton.vue +0 -0
  7. package/src/lib-components/Buttons/SimpleButton.vue +0 -0
  8. package/src/lib-components/Cards/Card.vue +0 -0
  9. package/src/lib-components/Cards/CardCheck.vue +0 -0
  10. package/src/lib-components/Cards/CardFile.vue +0 -0
  11. package/src/lib-components/Chat/AudioSpeedControl.vue +0 -0
  12. package/src/lib-components/Chat/BtnDownloadAllFiles.vue +0 -0
  13. package/src/lib-components/Chat/BtnEmojis.vue +0 -0
  14. package/src/lib-components/Chat/BtnExpand.vue +0 -0
  15. package/src/lib-components/Chat/BtnFiles.vue +0 -0
  16. package/src/lib-components/Chat/BtnMic.vue +0 -0
  17. package/src/lib-components/Chat/BtnScreenShare.vue +0 -0
  18. package/src/lib-components/Chat/BtnStandardMessages.vue +0 -0
  19. package/src/lib-components/Chat/ExpandTextarea.vue +0 -0
  20. package/src/lib-components/Chat/MultipleFilePreview.vue +0 -0
  21. package/src/lib-components/Chat/Picker.vue +0 -0
  22. package/src/lib-components/Chat/RemainingCharacters.vue +0 -0
  23. package/src/lib-components/Chat/SingleFilePreview.vue +0 -0
  24. package/src/lib-components/Chat/SkeletonPicker.vue +0 -0
  25. package/src/lib-components/Chat/StandardMessages.vue +0 -0
  26. package/src/lib-components/Chat/TextFooter.vue +0 -0
  27. package/src/lib-components/Email/EmailExpanded.vue +0 -0
  28. package/src/lib-components/Email/EmailFile.vue +0 -0
  29. package/src/lib-components/Email/EmailFrom.vue +0 -0
  30. package/src/lib-components/Email/EmailItem.vue +1017 -1010
  31. package/src/lib-components/Email/EmailTo.vue +8 -1
  32. package/src/lib-components/Loader/Loader.vue +0 -0
  33. package/src/lib-components/Messages/AnexoMensagem.vue +0 -0
  34. package/src/lib-components/Messages/CardAttachment.vue +0 -0
  35. package/src/lib-components/Messages/CardMessages.vue +0 -0
  36. package/src/lib-components/Messages/ChatMessages.vue +0 -0
  37. package/src/lib-components/Messages/InteratividadeBotoes.vue +0 -0
  38. package/src/lib-components/Messages/InteratividadeContato.vue +0 -0
  39. package/src/lib-components/Messages/InteratividadeContatoItem.vue +0 -0
  40. package/src/lib-components/Messages/InteratividadeFormulario.vue +0 -0
  41. package/src/lib-components/Messages/InteratividadePopup.vue +0 -0
  42. package/src/lib-components/Messages/LinkPreview.vue +0 -0
  43. package/src/lib-components/Scroll/ScrollContent.vue +0 -0
  44. package/src/lib-components/Templates/TemplateGenerator.vue +0 -0
  45. package/src/lib-components/Templates/TemplateMessage.vue +0 -0
  46. package/src/lib-components/Templates/TemplateSingle.vue +0 -0
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div :class="emailToClass">
3
- <p class="to" v-if="currentName" v-text="currentName" :title="currentName"></p>
3
+ <p class="to" v-if="nameToRender" v-text="nameToRender" :title="nameToRender"></p>
4
4
  <span class="additional" v-text="`<${email}>`" :title="email" v-if="showMail && email"></span>
5
5
  </div>
6
6
  </template>
@@ -52,6 +52,13 @@ export default {
52
52
  required: false,
53
53
  default: 'email-to'
54
54
  }
55
+ },
56
+ computed: {
57
+ nameToRender() {
58
+ if(this.currentName) return this.currentName
59
+ if(this.email) return this.email
60
+ return '--'
61
+ }
55
62
  }
56
63
  }
57
64
  </script>
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes