vue-intergrall-plugins 1.1.0 → 1.1.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/vue-intergrall-plugins.esm.js +64 -64
- package/dist/vue-intergrall-plugins.min.js +1 -1
- package/dist/vue-intergrall-plugins.ssr.js +80 -81
- package/package.json +1 -1
- package/src/lib-components/Email/EmailExpanded.vue +7 -4
- package/src/lib-components/Email/EmailFrom.vue +2 -2
- package/src/lib-components/Email/EmailItem.vue +23 -25
- package/src/lib-components/Email/EmailTo.vue +2 -2
|
@@ -6965,7 +6965,7 @@ const textoLongo = {
|
|
|
6965
6965
|
return `${textoLongo}`;
|
|
6966
6966
|
},
|
|
6967
6967
|
replaceUnicodeWithEmoji(text) {
|
|
6968
|
-
if (!text || typeof text !==
|
|
6968
|
+
if (!text || typeof text !== "string") return "";
|
|
6969
6969
|
return text.replace(/&?#(\d+);/g, (_, dec) => String.fromCodePoint(parseInt(dec, 10)));
|
|
6970
6970
|
},
|
|
6971
6971
|
htmlEntityToEmoji(message) {
|
|
@@ -6978,7 +6978,7 @@ const textoLongo = {
|
|
|
6978
6978
|
formataDataHora(dataHora, origem, cortarSegundos) {
|
|
6979
6979
|
try {
|
|
6980
6980
|
if (!dataHora) return "";
|
|
6981
|
-
if (dataHora ==
|
|
6981
|
+
if (dataHora == "1111-11-11 00:00:00") return "";
|
|
6982
6982
|
const arrDataHora = dataHora.split(" ");
|
|
6983
6983
|
if (arrDataHora.length) {
|
|
6984
6984
|
let data = arrDataHora[0];
|
|
@@ -7001,15 +7001,15 @@ const textoLongo = {
|
|
|
7001
7001
|
},
|
|
7002
7002
|
formataDateHoraDateFns(dataHora, dataServer, dicionario) {
|
|
7003
7003
|
if (!dataHora) return "";
|
|
7004
|
-
const invalids = [
|
|
7005
|
-
if (invalids.includes(dataHora)) return
|
|
7006
|
-
const daysOfWeek = [
|
|
7007
|
-
const monthsOfYear = [
|
|
7004
|
+
const invalids = ["1111-11-11 00:00:00", "0000-00-00 00:00:00", "0000-00-00", "1111-11-11", "00:00:00"];
|
|
7005
|
+
if (invalids.includes(dataHora)) return "";
|
|
7006
|
+
const daysOfWeek = ["dom.", "seg.", "ter.", "qua.", "qui.", "sex.", dicionario.sabado_abrev];
|
|
7007
|
+
const monthsOfYear = ["jan.", "fev.", "mar.", "abr.", "mai.", "jun.", "jul.", "ago.", "set.", "out.", "nov.", "dez."];
|
|
7008
7008
|
const parseDate = dateStr => {
|
|
7009
|
-
if (dateStr.includes(
|
|
7010
|
-
const [day, month, yearTime] = dateStr.split(
|
|
7011
|
-
const [year, time] = yearTime.split(
|
|
7012
|
-
const [hours, minutes] = time ? time.split(
|
|
7009
|
+
if (dateStr.includes("/")) {
|
|
7010
|
+
const [day, month, yearTime] = dateStr.split("/");
|
|
7011
|
+
const [year, time] = yearTime.split(" ");
|
|
7012
|
+
const [hours, minutes] = time ? time.split(":") : ["00", "00"];
|
|
7013
7013
|
return new Date(`${year}-${month}-${day}T${hours}:${minutes}:00`);
|
|
7014
7014
|
}
|
|
7015
7015
|
return new Date(dateStr);
|
|
@@ -7018,8 +7018,8 @@ const textoLongo = {
|
|
|
7018
7018
|
const dayOfWeek = daysOfWeek[date.getDay()];
|
|
7019
7019
|
const day = date.getDate();
|
|
7020
7020
|
const month = monthsOfYear[date.getMonth()];
|
|
7021
|
-
const hours = date.getHours().toString().padStart(2,
|
|
7022
|
-
const minutes = date.getMinutes().toString().padStart(2,
|
|
7021
|
+
const hours = date.getHours().toString().padStart(2, "0");
|
|
7022
|
+
const minutes = date.getMinutes().toString().padStart(2, "0");
|
|
7023
7023
|
const formattedDate = `${dayOfWeek}, ${day} de ${month}, ${hours}:${minutes}`;
|
|
7024
7024
|
const getRawData = () => {
|
|
7025
7025
|
const [datePart, timePart] = dataServer.split(" ");
|
|
@@ -7043,17 +7043,17 @@ const textoLongo = {
|
|
|
7043
7043
|
if (seconds < 60) {
|
|
7044
7044
|
distance = `agora`;
|
|
7045
7045
|
} else if (minutesDiff < 60) {
|
|
7046
|
-
distance = `${dicionario.ha_message} ${minutesDiff} ${minutesDiff > 1 ?
|
|
7046
|
+
distance = `${dicionario.ha_message} ${minutesDiff} ${minutesDiff > 1 ? "minutos" : "minuto"}`;
|
|
7047
7047
|
} else if (hoursDifference < 24) {
|
|
7048
|
-
distance = `${dicionario.ha_message} ${hoursDifference} ${hoursDifference > 1 ?
|
|
7048
|
+
distance = `${dicionario.ha_message} ${hoursDifference} ${hoursDifference > 1 ? "horas" : "hora"}`;
|
|
7049
7049
|
} else if (daysDifference < 30) {
|
|
7050
|
-
distance = `${dicionario.ha_message} ${daysDifference} ${daysDifference > 1 ?
|
|
7050
|
+
distance = `${dicionario.ha_message} ${daysDifference} ${daysDifference > 1 ? "dias" : "dia"}`;
|
|
7051
7051
|
} else if (monthsDifference < 12) {
|
|
7052
|
-
distance = `${dicionario.ha_message} ${monthsDifference} ${monthsDifference > 1 ?
|
|
7052
|
+
distance = `${dicionario.ha_message} ${monthsDifference} ${monthsDifference > 1 ? "meses" : dicionario.lower_text_month}`;
|
|
7053
7053
|
} else {
|
|
7054
|
-
distance = `${date.getFullYear()} ${dicionario.ha_message} ${yearsDifference} ${yearsDifference === 1 ?
|
|
7054
|
+
distance = `${date.getFullYear()} ${dicionario.ha_message} ${yearsDifference} ${yearsDifference === 1 ? "ano" : "anos"}`;
|
|
7055
7055
|
}
|
|
7056
|
-
const finalText = !`${formattedDate} (${distance})`.includes(
|
|
7056
|
+
const finalText = !`${formattedDate} (${distance})`.includes("undefined") ? `${formattedDate} (${distance})` : "";
|
|
7057
7057
|
return finalText;
|
|
7058
7058
|
}
|
|
7059
7059
|
}
|
|
@@ -10917,7 +10917,7 @@ var script$2 = {
|
|
|
10917
10917
|
required: false,
|
|
10918
10918
|
default: ""
|
|
10919
10919
|
},
|
|
10920
|
-
|
|
10920
|
+
email: {
|
|
10921
10921
|
type: String,
|
|
10922
10922
|
required: false,
|
|
10923
10923
|
default: ""
|
|
@@ -10953,13 +10953,13 @@ var __vue_render__$2 = function () {
|
|
|
10953
10953
|
domProps: {
|
|
10954
10954
|
"textContent": _vm._s(_vm.currentName)
|
|
10955
10955
|
}
|
|
10956
|
-
}) : _vm._e(), _vm._v(" "), _vm.showMail ? _c('span', {
|
|
10956
|
+
}) : _vm._e(), _vm._v(" "), _vm.showMail && _vm.email ? _c('span', {
|
|
10957
10957
|
staticClass: "additional",
|
|
10958
10958
|
attrs: {
|
|
10959
|
-
"title": _vm.
|
|
10959
|
+
"title": _vm.email
|
|
10960
10960
|
},
|
|
10961
10961
|
domProps: {
|
|
10962
|
-
"textContent": _vm._s("<" + _vm.
|
|
10962
|
+
"textContent": _vm._s("<" + _vm.email + ">")
|
|
10963
10963
|
}
|
|
10964
10964
|
}) : _vm._e()]);
|
|
10965
10965
|
};
|
|
@@ -10968,14 +10968,14 @@ var __vue_staticRenderFns__$2 = [];
|
|
|
10968
10968
|
/* style */
|
|
10969
10969
|
const __vue_inject_styles__$2 = function (inject) {
|
|
10970
10970
|
if (!inject) return;
|
|
10971
|
-
inject("data-v-
|
|
10972
|
-
source: ".email-to[data-v-
|
|
10971
|
+
inject("data-v-57bc1daf_0", {
|
|
10972
|
+
source: ".email-to[data-v-57bc1daf]{display:flex;align-items:center}.email-to .to[data-v-57bc1daf]{margin:0}.email-to .additional[data-v-57bc1daf],.email-to .to[data-v-57bc1daf]{font-size:.7rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:gray}.email-to .additional[data-v-57bc1daf]{margin-left:5px}",
|
|
10973
10973
|
map: undefined,
|
|
10974
10974
|
media: undefined
|
|
10975
10975
|
});
|
|
10976
10976
|
};
|
|
10977
10977
|
/* scoped */
|
|
10978
|
-
const __vue_scope_id__$2 = "data-v-
|
|
10978
|
+
const __vue_scope_id__$2 = "data-v-57bc1daf";
|
|
10979
10979
|
/* module identifier */
|
|
10980
10980
|
const __vue_module_identifier__$2 = undefined;
|
|
10981
10981
|
/* functional template */
|
|
@@ -11110,9 +11110,9 @@ var script$1 = {
|
|
|
11110
11110
|
let str = '';
|
|
11111
11111
|
arr.forEach(({
|
|
11112
11112
|
name,
|
|
11113
|
-
|
|
11113
|
+
email
|
|
11114
11114
|
}, index) => {
|
|
11115
|
-
str += `${name || ''} ${
|
|
11115
|
+
if (!name && !email) str += '';else str += `${name || ''} ${email ? `<${email}>` : ''}${(name || email) && index !== arr.length - 1 ? ', ' : ''}`;
|
|
11116
11116
|
});
|
|
11117
11117
|
return str;
|
|
11118
11118
|
};
|
|
@@ -11142,6 +11142,25 @@ var script$1 = {
|
|
|
11142
11142
|
return this.anexos.filter(anexo => {
|
|
11143
11143
|
return !this.html.includes(anexo.name);
|
|
11144
11144
|
});
|
|
11145
|
+
},
|
|
11146
|
+
returnAuthorName() {
|
|
11147
|
+
if (!this.from || !this.from.length) return this.autor || '';
|
|
11148
|
+
const {
|
|
11149
|
+
email,
|
|
11150
|
+
name
|
|
11151
|
+
} = this.from[0];
|
|
11152
|
+
if (!name) return email;
|
|
11153
|
+
if (!email) return name;
|
|
11154
|
+
if (this.isOpen) return `${name} (${email})`;
|
|
11155
|
+
return name;
|
|
11156
|
+
},
|
|
11157
|
+
formattedToName() {
|
|
11158
|
+
return (name, index, length) => {
|
|
11159
|
+
let addVirgulaDps = index < length - 1;
|
|
11160
|
+
let addVirgulaAntes = index === 1 && length >= 2;
|
|
11161
|
+
const text = index === 0 ? `Para: ${name || ''}` : name ? `${addVirgulaAntes ? ', ' : ''}${name}${addVirgulaDps ? ', ' : ''}` : '';
|
|
11162
|
+
return text;
|
|
11163
|
+
};
|
|
11145
11164
|
}
|
|
11146
11165
|
},
|
|
11147
11166
|
watch: {
|
|
@@ -11162,17 +11181,6 @@ var script$1 = {
|
|
|
11162
11181
|
this.hasError = false;
|
|
11163
11182
|
this.$nextTick(this.updateIframeContent());
|
|
11164
11183
|
},
|
|
11165
|
-
returnAuthorName() {
|
|
11166
|
-
if (!this.from || !this.from.length) return this.autor || '';
|
|
11167
|
-
const {
|
|
11168
|
-
mail,
|
|
11169
|
-
name
|
|
11170
|
-
} = this.from[0];
|
|
11171
|
-
if (!name) return mail;
|
|
11172
|
-
if (!mail) return name;
|
|
11173
|
-
if (this.isOpen) return `${name} (${mail})`;
|
|
11174
|
-
return name;
|
|
11175
|
-
},
|
|
11176
11184
|
gerarMensagemEstilizada(msg) {
|
|
11177
11185
|
try {
|
|
11178
11186
|
const currentStyles = [{
|
|
@@ -11341,18 +11349,6 @@ var script$1 = {
|
|
|
11341
11349
|
closeActions() {
|
|
11342
11350
|
this.actionsOpen = false;
|
|
11343
11351
|
},
|
|
11344
|
-
formattedName(name, index, length, isOpen) {
|
|
11345
|
-
return `${name || '--'}${index !== length - 1 && !isOpen ? ', ' : ''}`;
|
|
11346
|
-
},
|
|
11347
|
-
formattedMail(mail, index, length, isOpen) {
|
|
11348
|
-
return `<${mail || '--'}${index !== length - 1 && isOpen ? '>, ' : '>'}`;
|
|
11349
|
-
},
|
|
11350
|
-
formattedToName(name, index, length) {
|
|
11351
|
-
let addVirgulaDps = index < length - 1;
|
|
11352
|
-
let addVirgulaAntes = index === 1 && length >= 2;
|
|
11353
|
-
const text = index === 0 ? `Para: ${name || ''}` : name ? `${addVirgulaAntes ? ', ' : ''}${name}${addVirgulaDps ? ', ' : ''}` : '';
|
|
11354
|
-
return text;
|
|
11355
|
-
},
|
|
11356
11352
|
returnMainValue() {
|
|
11357
11353
|
if (this.isMainEmail) return this.htmlEntityToEmoji(this.replaceUnicodeWithEmoji(this.assunto)) || '(Sem assunto)';
|
|
11358
11354
|
return '';
|
|
@@ -11402,6 +11398,7 @@ var __vue_render__$1 = function () {
|
|
|
11402
11398
|
}, [_vm.showInfos ? _c('div', {
|
|
11403
11399
|
staticClass: "email-overlay"
|
|
11404
11400
|
}) : _vm._e(), _vm._v(" "), _vm.autor ? _c('div', {
|
|
11401
|
+
key: _vm.autor,
|
|
11405
11402
|
staticClass: "email-author",
|
|
11406
11403
|
class: [_vm.origem, _vm.isMainEmail ? 'main' : ''],
|
|
11407
11404
|
on: {
|
|
@@ -11419,10 +11416,10 @@ var __vue_render__$1 = function () {
|
|
|
11419
11416
|
}), _vm._v(" "), _c('p', {
|
|
11420
11417
|
staticClass: "email-author-name",
|
|
11421
11418
|
attrs: {
|
|
11422
|
-
"title": _vm.returnAuthorName
|
|
11419
|
+
"title": _vm.returnAuthorName
|
|
11423
11420
|
},
|
|
11424
11421
|
domProps: {
|
|
11425
|
-
"textContent": _vm._s(_vm.returnAuthorName
|
|
11422
|
+
"textContent": _vm._s(_vm.returnAuthorName)
|
|
11426
11423
|
}
|
|
11427
11424
|
}), _vm._v(" "), _c('fa-icon', {
|
|
11428
11425
|
staticClass: "email-to-svg",
|
|
@@ -11538,7 +11535,7 @@ var __vue_render__$1 = function () {
|
|
|
11538
11535
|
key: "to-" + index,
|
|
11539
11536
|
attrs: {
|
|
11540
11537
|
"currentName": _vm.formattedToName(recipient.name, index, _vm.paraCopia.length),
|
|
11541
|
-
"
|
|
11538
|
+
"email": recipient.email,
|
|
11542
11539
|
"showMail": _vm.isOpen
|
|
11543
11540
|
}
|
|
11544
11541
|
});
|
|
@@ -11697,18 +11694,18 @@ var __vue_staticRenderFns__$1 = [];
|
|
|
11697
11694
|
/* style */
|
|
11698
11695
|
const __vue_inject_styles__$1 = function (inject) {
|
|
11699
11696
|
if (!inject) return;
|
|
11700
|
-
inject("data-v-
|
|
11701
|
-
source: ".show-y-top-enter-active[data-v-
|
|
11697
|
+
inject("data-v-0df370a6_0", {
|
|
11698
|
+
source: ".show-y-top-enter-active[data-v-0df370a6],.show-y-top-leave-enter[data-v-0df370a6]{opacity:1;transform:translateY(0);transition:all .2s linear}.show-y-top-enter[data-v-0df370a6],.show-y-top-leave-to[data-v-0df370a6]{opacity:0;transform:translateY(-2%)}",
|
|
11702
11699
|
map: undefined,
|
|
11703
11700
|
media: undefined
|
|
11704
|
-
}), inject("data-v-
|
|
11701
|
+
}), inject("data-v-0df370a6_1", {
|
|
11705
11702
|
source: ".visibility-hidden{visibility:hidden}.box-shadow-active{box-shadow:0 0 4px 2px rgba(0,0,0,.25)}.bg-dark-white-2{background-color:#f7f7f7}.bg-white{background-color:#fff}.cursor-pointer{cursor:pointer}.email-overlay{width:100%;height:100%;background-color:transparent;z-index:1;position:absolute;top:0;left:0}.email-item{--konecta-gray-3:#515050;--konecta-light:#f8f9fa;--blue-silver-4:#dae0e5;--email-principal:#faa732;--email-outros:#86b7fe;font-family:Roboto,sans-serif;flex:1;margin:0 0 10px 0;color:#222;min-height:60px;display:flex;flex-wrap:wrap;padding:10px;border-radius:5px;transition:all 150ms ease-in-out;max-width:100%;width:100%;overflow:hidden;position:relative}.email-custom-action-buttons{display:flex;gap:7px;align-items:center;flex-wrap:wrap;max-width:100%;cursor:default}.email-custom-action-button{margin-top:10px;background-color:var(--konecta-light)!important;color:var(--konecta-dark)!important;border:1px solid var(--blue-silver-4)!important;flex:1;min-width:100px;display:flex;align-items:center;justify-content:center;gap:5px;padding:5px;overflow:hidden;border-radius:5px;text-overflow:ellipsis;white-space:nowrap;transition:all .1s ease-in-out;max-width:100%;cursor:pointer}.email-custom-action-button:hover{background-color:#e9ecef!important}.email-custom-action-button:disabled{background-color:var(--konecta-gray-3)!important;border:1px solid #25282b!important;cursor:not-allowed!important}.email-item.outros{border-left:3px solid var(--email-outros)}.email-author-name{margin:0 5px;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.email-author.outros{color:var(--email-outros)}.email-author.outros>svg:nth-child(1){transform:rotate(180deg)}.email-author.principal{color:var(--email-principal)}.email-author.main{font-size:1.025rem}.email-item.principal{border-left:3px solid var(--email-principal)}.email-item.info-open{overflow:visible}.email-header{width:100%;display:flex;flex-direction:column;cursor:pointer;border-top-right-radius:5px;border-top-left-radius:5px;position:relative;overflow:visible}.header-container{display:flex;overflow:hidden;position:relative}.email-header-content{display:flex;align-items:center;flex:1;min-width:250px}.email-header-infos{display:flex;flex-direction:column;flex:1}.email-subject{margin:5px 0 0 0;font-size:1.025rem;cursor:pointer}.email-date{--width:245px;font-size:.8rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;position:absolute;right:0;top:0;min-width:var(--width);width:var(--width);max-width:var(--width);display:flex;justify-content:flex-end;gap:3px;align-items:center}.email-content{display:flex;flex-direction:column;align-items:center;justify-content:flex-start;width:100%;background-color:#fff;position:relative;max-width:100%}.email-actions{align-self:flex-end;display:flex;border-radius:10px;cursor:pointer;align-items:center;justify-content:center;gap:3px;padding:5px 7px;background-color:#ddd;position:absolute;right:0;top:30px;z-index:1}.email-actions.main{top:10px}.email-actions.active{background-color:#dfdfdf}.email-actions>span{width:4px;height:4px;min-width:4px;min-height:4px;max-width:4px;max-height:4px;background-color:#222;border-radius:50%}.email-actions-list{position:absolute;right:45px;width:250px;top:5px;margin:0;list-style-type:none;padding:0;border-radius:5px;z-index:1}.email-action{background-color:#dfdfdf;padding:5px 10px;cursor:pointer;transition:background-color 150ms ease-in-out;font-size:.9rem;user-select:none}.email-action:nth-child(1){border-top-left-radius:5px;border-top-right-radius:5px}.email-action:last-child{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.email-action:hover{background-color:#ccc}.email-html{width:100%;min-width:300px;max-width:100%;border:none;overflow:auto}.email-raw{width:100%;max-width:100%;padding:15px;font-size:.9rem;color:#222}.email-files{display:flex;gap:10px;flex-wrap:wrap;width:100%;margin-top:5px}.email-header-content,.email-header-infos{max-width:100%;overflow:hidden}.email-to-from-container{margin-bottom:5px;max-width:100%;min-width:250px;overflow:hidden;display:flex;align-items:center;flex-wrap:wrap;flex:1;gap:5px}.email-to-btn{padding:0 5px;font-size:.9rem;cursor:pointer;color:#666}.email-to-infos{position:absolute;bottom:-325px;border:1px solid #ccc;z-index:2;padding:10px;background-color:#fff;max-height:300px;overflow-y:auto;overflow-x:hidden;width:300px;display:flex;flex-direction:column;gap:5px;margin:0;cursor:default}.email-info{width:100%;font-size:.8rem}.email-info>span{font-size:.75rem;color:gray;margin-right:3px}.email-author{display:flex;align-items:center;height:5px;font-size:.75rem;font-weight:700;transform:translateY(-2px);width:100%;cursor:pointer}.email-subject-secondary{margin-top:-5px}.email-subject-span{font-size:.7rem;color:gray}.email-to-svg{font-size:.85rem}.email-custom-buttons{display:flex;gap:7px;position:absolute;top:5px;right:5px;z-index:1;font-size:.8rem}.menu-mensagem{cursor:pointer;padding:1px;opacity:.7;transition:opacity .1s ease-in-out}.menu-mensagem:active,.menu-mensagem:focus,.menu-mensagem:hover{opacity:1}.email-error-content{display:flex;justify-content:center;align-items:center;flex-direction:column;gap:5px;padding:10px}.email-error-content p{margin:0;color:#e74c3c}.email-error-content button{border:1px solid #ccc;border-radius:3px;padding:5px 10px;background-color:#fff;cursor:pointer;transition:background-color 150ms ease-in-out}.email-error-content button:hover{background-color:#eee}",
|
|
11706
11703
|
map: undefined,
|
|
11707
11704
|
media: undefined
|
|
11708
11705
|
});
|
|
11709
11706
|
};
|
|
11710
11707
|
/* scoped */
|
|
11711
|
-
const __vue_scope_id__$1 = "data-v-
|
|
11708
|
+
const __vue_scope_id__$1 = "data-v-0df370a6";
|
|
11712
11709
|
/* module identifier */
|
|
11713
11710
|
const __vue_module_identifier__$1 = undefined;
|
|
11714
11711
|
/* functional template */
|
|
@@ -11780,12 +11777,15 @@ var script = {
|
|
|
11780
11777
|
this.$emit('close');
|
|
11781
11778
|
},
|
|
11782
11779
|
formattedName(name, index, length, isOpen) {
|
|
11780
|
+
if (!name) return '';
|
|
11783
11781
|
return `${name}${index !== length - 1 && !isOpen ? ', ' : ''}`;
|
|
11784
11782
|
},
|
|
11785
|
-
formattedMail(
|
|
11786
|
-
|
|
11783
|
+
formattedMail(email, index, length, isOpen) {
|
|
11784
|
+
if (!email) return '';
|
|
11785
|
+
return `<${email}${index !== length - 1 && isOpen ? '>, ' : '>'}`;
|
|
11787
11786
|
},
|
|
11788
11787
|
formattedToName(name, index, length) {
|
|
11788
|
+
if (!name) return '';
|
|
11789
11789
|
return index === 0 ? `${name || ''}` : name ? `${name}${index !== length - 1 ? ', ' : ''}` : '';
|
|
11790
11790
|
}
|
|
11791
11791
|
}
|
|
@@ -11853,11 +11853,11 @@ var __vue_render__ = function () {
|
|
|
11853
11853
|
}, [_c('tbody', [_c('tr', [_c('th', [_vm._v("\n De:\n ")]), _vm._v(" "), _c('td', [_vm.from && _vm.from.length ? _vm._l(_vm.from, function (sender, index) {
|
|
11854
11854
|
return _c('span', {
|
|
11855
11855
|
key: "from-" + index
|
|
11856
|
-
}, [_vm._v("\n " + _vm._s(_vm.formattedName(sender.name, index, _vm.from.length, true)) + "\n " + _vm._s(_vm.formattedMail(sender.
|
|
11856
|
+
}, [_vm._v("\n " + _vm._s(_vm.formattedName(sender.name, index, _vm.from.length, true)) + "\n " + _vm._s(_vm.formattedMail(sender.email, index, _vm.from.length, true)) + "\n ")]);
|
|
11857
11857
|
}) : _c('span', [_vm._v(" -- ")])], 2)]), _vm._v(" "), _c('tr', [_c('th', [_vm._v("\n Para:\n ")]), _vm._v(" "), _c('td', [_vm.para && _vm.para.length ? _vm._l(_vm.para, function (recipient, index) {
|
|
11858
11858
|
return _c('span', {
|
|
11859
11859
|
key: "to-" + index
|
|
11860
|
-
}, [_vm._v("\n " + _vm._s(_vm.formattedToName(recipient.name, index, _vm.para.length)) + "\n " + _vm._s("<" + recipient.
|
|
11860
|
+
}, [_vm._v("\n " + _vm._s(_vm.formattedToName(recipient.name, index, _vm.para.length)) + "\n " + _vm._s("<" + recipient.email + ">") + "\n ")]);
|
|
11861
11861
|
}) : _c('span', [_vm._v(" -- ")])], 2)]), _vm._v(" "), _vm.dataHora ? _c('tr', [_c('th', [_vm._v("Data:")]), _vm._v(" "), _c('td', [_vm._v(_vm._s(_vm.formataDataHora(_vm.dataHora, true, false)) + " - " + _vm._s(_vm.formattedDate))])]) : _vm._e(), _vm._v(" "), _vm.additionalTableData && _vm.additionalTableData.length ? _vm._l(_vm.additionalTableData, function (data, index) {
|
|
11862
11862
|
return _c('tr', {
|
|
11863
11863
|
key: "info-" + index
|
|
@@ -11895,14 +11895,14 @@ var __vue_staticRenderFns__ = [];
|
|
|
11895
11895
|
/* style */
|
|
11896
11896
|
const __vue_inject_styles__ = function (inject) {
|
|
11897
11897
|
if (!inject) return;
|
|
11898
|
-
inject("data-v-
|
|
11899
|
-
source: ".btn-exit[data-v-
|
|
11898
|
+
inject("data-v-659227f5_0", {
|
|
11899
|
+
source: ".btn-exit[data-v-659227f5]{cursor:pointer;position:absolute;top:15px;right:15px;z-index:1}.konecta-box-shadow[data-v-659227f5]{box-shadow:var(--konecta-box-shadow)}.email-blocker[data-v-659227f5]{--konecta-pink:#d54286;--konecta-light:#f8f9fa;--konecta-dark:#212529;--white:#fff;--white-shadow:rgba(255, 255, 255, 0.5);--konecta-box-shadow:0 5px 15px rgba(0, 0, 0, 0.5);--gray-3:#e2e6ea;--exit-button-color:#999;font-family:Roboto,sans-serif;position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;z-index:99;background-color:var(--white-shadow);overflow:visible}.email-blocker-content[data-v-659227f5]{width:90%;height:90%;min-width:300px;min-height:300px;max-width:90%;max-height:90%;overflow:hidden auto;position:relative;background-color:var(--white);color:var(--konecta-dark);border-radius:6px}.email-title[data-v-659227f5]{font-size:1.1rem;width:100%;background-color:var(--konecta-light);color:var(--konecta-pink);border-bottom:1px solid var(--gray-3);padding:15px;display:flex;align-items:center;justify-content:space-between;border-top-left-radius:6px;border-top-right-radius:6px;margin:0 0 10px 0;position:relative}.email-content-table[data-v-659227f5]{padding:0;margin:0 10px 10px;font-size:.95rem;border-collapse:collapse;width:calc(100% - 20px)}.email-content-table td[data-v-659227f5],.email-content-table th[data-v-659227f5]{border:solid thin var(--gray-3)}.email-content-table th[data-v-659227f5]{min-width:100px;text-align:left;vertical-align:text-top;padding:12px 20px;font-weight:400;border-right:unset}.email-divisor[data-v-659227f5]{margin-top:15px;margin-bottom:10px;height:1px;width:100%;background:var(--gray-3);border:unset}.email-content-table td[data-v-659227f5]{padding:8px;border-left:unset}.email-raw-content[data-v-659227f5]{display:flex;flex-direction:column;gap:10px;padding:0 15px 15px;max-width:100%}.email-raw-content h2[data-v-659227f5]{margin:0;padding:0;font-size:1rem}.email-file-content[data-v-659227f5]{display:flex;gap:10px;flex-wrap:wrap;align-items:center}",
|
|
11900
11900
|
map: undefined,
|
|
11901
11901
|
media: undefined
|
|
11902
11902
|
});
|
|
11903
11903
|
};
|
|
11904
11904
|
/* scoped */
|
|
11905
|
-
const __vue_scope_id__ = "data-v-
|
|
11905
|
+
const __vue_scope_id__ = "data-v-659227f5";
|
|
11906
11906
|
/* module identifier */
|
|
11907
11907
|
const __vue_module_identifier__ = undefined;
|
|
11908
11908
|
/* functional template */
|