vue-intergrall-plugins 1.1.19 → 1.1.20

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-intergrall-plugins",
3
- "version": "1.1.19",
3
+ "version": "1.1.20",
4
4
  "description": "",
5
5
  "main": "dist/vue-intergrall-plugins.ssr.js",
6
6
  "browser": "dist/vue-intergrall-plugins.esm.js",
@@ -56,7 +56,7 @@
56
56
  </template>
57
57
  <div v-if="!isMainEmail && isOpen" class="email-subject-secondary">
58
58
  <span class="email-subject-span"
59
- v-text="`Assunto: ${htmlEntityToEmoji(replaceUnicodeWithEmoji(assunto)) || '(Sem assunto)'}`"></span>
59
+ v-text="`Assunto: ${htmlEntityToEmoji(replaceUnicodeWithEmoji(assunto)) || '(Sem assunto)'}`"></span>
60
60
  </div>
61
61
  </div>
62
62
  </div>
@@ -209,7 +209,17 @@ export default {
209
209
  hasReplyEmail: {
210
210
  type: Boolean,
211
211
  default: false
212
- }
212
+ },
213
+ id_lig: {
214
+ type: String,
215
+ },
216
+ token_cliente: {
217
+ type: String,
218
+ },
219
+ infos: {
220
+ type: Object,
221
+ default: () => ({}),
222
+ },
213
223
  },
214
224
  data() {
215
225
  return {
@@ -341,6 +351,9 @@ export default {
341
351
  copia: this.copia,
342
352
  origem: this.origem,
343
353
  autor: this.autor,
354
+ id_lig: this.id_lig,
355
+ token_cliente: this.token_cliente,
356
+ infos: this.infos,
344
357
  });
345
358
  },
346
359