vue-intergrall-plugins 1.0.53 → 1.0.55
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.
|
@@ -6947,7 +6947,8 @@ function gerarVariaveisAnexo(anexos, storeObj) {
|
|
|
6947
6947
|
docAnexo = "",
|
|
6948
6948
|
nomeArquivo = "",
|
|
6949
6949
|
audio = false,
|
|
6950
|
-
video = false
|
|
6950
|
+
video = false,
|
|
6951
|
+
downloadAnexo = "";
|
|
6951
6952
|
try {
|
|
6952
6953
|
if (!anexos) throw {
|
|
6953
6954
|
code: -1
|
|
@@ -6957,10 +6958,11 @@ function gerarVariaveisAnexo(anexos, storeObj) {
|
|
|
6957
6958
|
const {
|
|
6958
6959
|
type,
|
|
6959
6960
|
mku,
|
|
6961
|
+
mkuDownload,
|
|
6960
6962
|
name
|
|
6961
6963
|
} = anexos;
|
|
6962
6964
|
let ignoreMku = false;
|
|
6963
|
-
if (!type || !mku || !name) {
|
|
6965
|
+
if (!type || !mku || !name || !mkuDownload) {
|
|
6964
6966
|
if (anexos.anexo) {
|
|
6965
6967
|
ignoreMku = true;
|
|
6966
6968
|
imgAnexo = anexos.imgAnexo ? anexos.imgAnexo : '';
|
|
@@ -6975,7 +6977,7 @@ function gerarVariaveisAnexo(anexos, storeObj) {
|
|
|
6975
6977
|
let tipoAnexo = regexAnexos.exec(type);
|
|
6976
6978
|
tipoAnexo = !tipoAnexo ? type : tipoAnexo[1];
|
|
6977
6979
|
if (type === "application/octet-stream") audio = true;
|
|
6978
|
-
switch (tipoAnexo) {
|
|
6980
|
+
switch (tipoAnexo.toLowerCase()) {
|
|
6979
6981
|
case "image":
|
|
6980
6982
|
case "image/jpg":
|
|
6981
6983
|
case "jpg":
|
|
@@ -6987,6 +6989,7 @@ function gerarVariaveisAnexo(anexos, storeObj) {
|
|
|
6987
6989
|
case "jpeg":
|
|
6988
6990
|
if (!ignoreMku) {
|
|
6989
6991
|
imgAnexo = `${dominio}/callcenter/docs.php?mku=${mku}`;
|
|
6992
|
+
downloadAnexo = `${dominio}/callcenter/docs.php?mku=${mkuDownload}`;
|
|
6990
6993
|
nomeArquivo = name;
|
|
6991
6994
|
}
|
|
6992
6995
|
break;
|
|
@@ -7009,6 +7012,7 @@ function gerarVariaveisAnexo(anexos, storeObj) {
|
|
|
7009
7012
|
}
|
|
7010
7013
|
if (!ignoreMku) {
|
|
7011
7014
|
docAnexo = `${dominio}/callcenter/docs.php?mku=${mku}`;
|
|
7015
|
+
downloadAnexo = `${dominio}/callcenter/docs.php?mku=${mkuDownload}`;
|
|
7012
7016
|
nomeArquivo = name;
|
|
7013
7017
|
}
|
|
7014
7018
|
audio = true;
|
|
@@ -7025,6 +7029,7 @@ function gerarVariaveisAnexo(anexos, storeObj) {
|
|
|
7025
7029
|
}
|
|
7026
7030
|
if (!ignoreMku) {
|
|
7027
7031
|
docAnexo = `${dominio}/callcenter/docs.php?mku=${mku}`;
|
|
7032
|
+
downloadAnexo = `${dominio}/callcenter/docs.php?mku=${mkuDownload}`;
|
|
7028
7033
|
nomeArquivo = name;
|
|
7029
7034
|
}
|
|
7030
7035
|
video = true;
|
|
@@ -7033,6 +7038,7 @@ function gerarVariaveisAnexo(anexos, storeObj) {
|
|
|
7033
7038
|
tipoDoc = type;
|
|
7034
7039
|
if (!ignoreMku) {
|
|
7035
7040
|
docAnexo = `${dominio}/callcenter/docs.php?mku=${mku}`;
|
|
7041
|
+
downloadAnexo = `${dominio}/callcenter/docs.php?mku=${mkuDownload}`;
|
|
7036
7042
|
nomeArquivo = name;
|
|
7037
7043
|
}
|
|
7038
7044
|
break;
|
|
@@ -7044,7 +7050,8 @@ function gerarVariaveisAnexo(anexos, storeObj) {
|
|
|
7044
7050
|
docAnexo,
|
|
7045
7051
|
nomeArquivo,
|
|
7046
7052
|
audio,
|
|
7047
|
-
video
|
|
7053
|
+
video,
|
|
7054
|
+
downloadAnexo
|
|
7048
7055
|
});
|
|
7049
7056
|
} catch (e) {
|
|
7050
7057
|
if (e.code === -1) return {
|
|
@@ -7053,6 +7060,7 @@ function gerarVariaveisAnexo(anexos, storeObj) {
|
|
|
7053
7060
|
tipoDoc: "",
|
|
7054
7061
|
docAnexo: "",
|
|
7055
7062
|
nomeArquivo: "",
|
|
7063
|
+
downloadAnexo: "",
|
|
7056
7064
|
audio: false,
|
|
7057
7065
|
video: false
|
|
7058
7066
|
};
|
|
@@ -7072,12 +7080,13 @@ const fileHandler = {
|
|
|
7072
7080
|
filename: "",
|
|
7073
7081
|
audio: false,
|
|
7074
7082
|
video: false,
|
|
7083
|
+
downloadURL: "",
|
|
7075
7084
|
icon: []
|
|
7076
7085
|
};
|
|
7077
7086
|
},
|
|
7078
7087
|
computed: {
|
|
7079
7088
|
iconClass() {
|
|
7080
|
-
return typeof this.fileType
|
|
7089
|
+
return typeof this.fileType === 'string' && this.fileType.indexOf('pdf') > -1 ? "pdf" : "doc";
|
|
7081
7090
|
}
|
|
7082
7091
|
},
|
|
7083
7092
|
methods: {
|
|
@@ -7085,7 +7094,7 @@ const fileHandler = {
|
|
|
7085
7094
|
const viewableExtensions = ["pdf", "txt", "html", "css", "js", "json", "xml", "woff", "svg", "gif", "mp4", "mp3", "aac", "ogg", "wma"];
|
|
7086
7095
|
if (!isImg && !viewableExtensions.includes(this.fileType)) {
|
|
7087
7096
|
const a = document.createElement("a");
|
|
7088
|
-
a.setAttribute("href",
|
|
7097
|
+
a.setAttribute("href", this.downloadURL);
|
|
7089
7098
|
a.setAttribute("download", this.filename);
|
|
7090
7099
|
a.setAttribute("target", "_blank");
|
|
7091
7100
|
a.setAttribute("rel", "noopener noreferrer");
|
|
@@ -7098,7 +7107,7 @@ const fileHandler = {
|
|
|
7098
7107
|
window.open(link, "anexo-ra", options);
|
|
7099
7108
|
},
|
|
7100
7109
|
showImage(image) {
|
|
7101
|
-
if (!image) return console.warn("
|
|
7110
|
+
if (!image) return console.warn("Nao foi possivel abrir a imagem");
|
|
7102
7111
|
this.$emit("abrir-imagem", image);
|
|
7103
7112
|
},
|
|
7104
7113
|
setFileVars(rawFile, storeObj) {
|
|
@@ -7114,13 +7123,15 @@ const fileHandler = {
|
|
|
7114
7123
|
docAnexo,
|
|
7115
7124
|
nomeArquivo,
|
|
7116
7125
|
audio,
|
|
7117
|
-
video
|
|
7126
|
+
video,
|
|
7127
|
+
downloadAnexo
|
|
7118
7128
|
} = gerarVariaveisAnexo(rawFile, storeObj);
|
|
7119
7129
|
this.isFile = anexo;
|
|
7120
7130
|
this.imageURL = imgAnexo;
|
|
7121
7131
|
this.fileType = tipoDoc;
|
|
7122
7132
|
this.docURL = docAnexo;
|
|
7123
7133
|
this.filename = nomeArquivo;
|
|
7134
|
+
this.downloadURL = downloadAnexo;
|
|
7124
7135
|
this.audio = audio;
|
|
7125
7136
|
this.video = video;
|
|
7126
7137
|
this.setIcon();
|
|
@@ -7131,7 +7142,7 @@ const fileHandler = {
|
|
|
7131
7142
|
}
|
|
7132
7143
|
},
|
|
7133
7144
|
setIcon() {
|
|
7134
|
-
this.icon = typeof this.fileType
|
|
7145
|
+
this.icon = typeof this.fileType === 'string' && this.fileType.indexOf('pdf') > -1 ? ['fas', 'file-pdf'] : ['fas', 'file-alt'];
|
|
7135
7146
|
},
|
|
7136
7147
|
downloadAllFilesHandler(referenceSelector) {
|
|
7137
7148
|
try {
|
|
@@ -7159,7 +7170,7 @@ const fileHandler = {
|
|
|
7159
7170
|
}
|
|
7160
7171
|
}, 300);
|
|
7161
7172
|
} catch (error) {
|
|
7162
|
-
console.error("Erro ao fazer o
|
|
7173
|
+
console.error("Erro ao fazer o download de todos anexos");
|
|
7163
7174
|
this.$toasted.global.defaultError({
|
|
7164
7175
|
msg: error.message ? error.message : error
|
|
7165
7176
|
});
|
|
@@ -10649,6 +10660,14 @@ var __vue_render__$3 = function () {
|
|
|
10649
10660
|
"src": "" + _vm.imageURL,
|
|
10650
10661
|
"alt": _vm.filename
|
|
10651
10662
|
}
|
|
10663
|
+
})]) : _vm.video ? _c('span', {
|
|
10664
|
+
staticClass: "anexo-video box-shadow"
|
|
10665
|
+
}, [_c('video', {
|
|
10666
|
+
attrs: {
|
|
10667
|
+
"controls": "",
|
|
10668
|
+
"src": _vm.docURL,
|
|
10669
|
+
"title": _vm.filename
|
|
10670
|
+
}
|
|
10652
10671
|
})]) : _c('span', {
|
|
10653
10672
|
staticClass: "anexo-icone",
|
|
10654
10673
|
class: [_vm.iconClass],
|
|
@@ -10668,7 +10687,7 @@ var __vue_render__$3 = function () {
|
|
|
10668
10687
|
})], 1), _vm._v(" "), _c('a', {
|
|
10669
10688
|
staticClass: "anexo-download box-shadow",
|
|
10670
10689
|
attrs: {
|
|
10671
|
-
"href": _vm.
|
|
10690
|
+
"href": _vm.downloadURL,
|
|
10672
10691
|
"download": "" + _vm.filename,
|
|
10673
10692
|
"target": "_blank",
|
|
10674
10693
|
"title": "Download " + _vm.filename
|
|
@@ -10692,8 +10711,8 @@ var __vue_staticRenderFns__$3 = [];
|
|
|
10692
10711
|
/* style */
|
|
10693
10712
|
const __vue_inject_styles__$3 = function (inject) {
|
|
10694
10713
|
if (!inject) return;
|
|
10695
|
-
inject("data-v-
|
|
10696
|
-
source: ".email-file{display:flex;align-items:center;justify-content:flex-end;flex-direction:column;min-width:50px;width:auto;max-width:100px;height:70px;position:relative}.anexo-img{display:flex;justify-content:center;align-items:center;width:100%;height:100%;overflow:hidden;background-color:rgba(0,0,0,.2);border-radius:2.5px;cursor:pointer;opacity:.9;transition:opacity 150ms}.anexo-img:hover{opacity:1}.anexo-img img{max-width:100%;max-height:100%}.box-shadow{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.anexo-icone{display:flex;justify-content:center;align-items:center;font-size:30px;cursor:pointer}.anexo-icone:hover{opacity:1}.anexo-icone:visited{color:inherit}.anexo-icone.pdf{position:relative}.anexo-icone.pdf svg{color:#e74c3c}.anexo-icone.pdf::after{content:\"\";position:absolute;bottom:2px;transform:translateY(2px);width:20px;height:20px}.anexo-icone.doc{color:#15517f}.anexo-icone.doc::after{content:\"\";position:absolute;width:20px;height:20px}.anexo-download{position:absolute;top:0;right:0;border-radius:5px;padding:5px;display:flex;justify-content:center;align-items:center;color:#222;background-color:#fff;z-index:1;font-size:.8rem}.anexo-name{max-width:100%;font-size:.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:2px 0 5px 0}",
|
|
10714
|
+
inject("data-v-021fddf8_0", {
|
|
10715
|
+
source: ".email-file{display:flex;align-items:center;justify-content:flex-end;flex-direction:column;min-width:50px;width:auto;max-width:100px;height:70px;position:relative}.anexo-img{display:flex;justify-content:center;align-items:center;width:100%;height:100%;overflow:hidden;background-color:rgba(0,0,0,.2);border-radius:2.5px;cursor:pointer;opacity:.9;transition:opacity 150ms}.anexo-img:hover{opacity:1}.anexo-img img{max-width:100%;max-height:100%;font-size:.8rem}.anexo-video{width:100%;height:100%}.anexo-video video{max-width:100%}.box-shadow{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.anexo-icone{display:flex;justify-content:center;align-items:center;font-size:30px;cursor:pointer}.anexo-icone:hover{opacity:1}.anexo-icone:visited{color:inherit}.anexo-icone.pdf{position:relative}.anexo-icone.pdf svg{color:#e74c3c}.anexo-icone.pdf::after{content:\"\";position:absolute;bottom:2px;transform:translateY(2px);width:20px;height:20px}.anexo-icone.doc{color:#15517f}.anexo-icone.doc::after{content:\"\";position:absolute;width:20px;height:20px}.anexo-download{position:absolute;top:0;right:0;border-radius:5px;padding:5px;display:flex;justify-content:center;align-items:center;color:#222;background-color:#fff;z-index:1;font-size:.8rem;cursor:pointer}.anexo-name{max-width:100%;font-size:.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:2px 0 5px 0}",
|
|
10697
10716
|
map: undefined,
|
|
10698
10717
|
media: undefined
|
|
10699
10718
|
});
|
|
@@ -11033,6 +11052,12 @@ var script$1 = {
|
|
|
11033
11052
|
returnMainValue() {
|
|
11034
11053
|
if (this.isMainEmail) return this.htmlEntityToEmoji(this.replaceUnicodeWithEmoji(this.assunto)) || '(Sem assunto)';
|
|
11035
11054
|
return '';
|
|
11055
|
+
},
|
|
11056
|
+
openByItem(event) {
|
|
11057
|
+
if (this.isOpen) return;
|
|
11058
|
+
event.preventDefault();
|
|
11059
|
+
event.stopPropagation();
|
|
11060
|
+
this.toggleIsOpen();
|
|
11036
11061
|
}
|
|
11037
11062
|
}
|
|
11038
11063
|
};
|
|
@@ -11046,14 +11071,22 @@ var __vue_render__$1 = function () {
|
|
|
11046
11071
|
var _h = _vm.$createElement;
|
|
11047
11072
|
var _c = _vm._self._c || _h;
|
|
11048
11073
|
return _c('div', {
|
|
11049
|
-
class: ['email-item box-shadow-active', _vm.isOpen ? _vm.isOpenClass : _vm.isClosedClass, _vm.showInfos ? 'info-open' : '', _vm.origem]
|
|
11074
|
+
class: ['email-item box-shadow-active', _vm.isOpen ? _vm.isOpenClass : _vm.isClosedClass + " cursor-pointer", _vm.showInfos ? 'info-open' : '', _vm.origem],
|
|
11075
|
+
on: {
|
|
11076
|
+
"click": function ($event) {
|
|
11077
|
+
return _vm.openByItem($event);
|
|
11078
|
+
}
|
|
11079
|
+
}
|
|
11050
11080
|
}, [_vm.showInfos ? _c('div', {
|
|
11051
11081
|
staticClass: "email-overlay"
|
|
11052
11082
|
}) : _vm._e(), _vm._v(" "), _vm.autor ? _c('div', {
|
|
11053
11083
|
staticClass: "email-author",
|
|
11054
11084
|
class: [_vm.origem],
|
|
11055
11085
|
on: {
|
|
11056
|
-
"click":
|
|
11086
|
+
"click": function ($event) {
|
|
11087
|
+
$event.stopPropagation();
|
|
11088
|
+
return _vm.toggleIsOpen.apply(null, arguments);
|
|
11089
|
+
}
|
|
11057
11090
|
}
|
|
11058
11091
|
}, [_c('fa-icon', {
|
|
11059
11092
|
class: [_vm.origem],
|
|
@@ -11078,7 +11111,10 @@ var __vue_render__$1 = function () {
|
|
|
11078
11111
|
})], 1) : _vm._e(), _vm._v(" "), _c('div', {
|
|
11079
11112
|
staticClass: "email-header",
|
|
11080
11113
|
on: {
|
|
11081
|
-
"click":
|
|
11114
|
+
"click": function ($event) {
|
|
11115
|
+
$event.stopPropagation();
|
|
11116
|
+
return _vm.toggleIsOpen.apply(null, arguments);
|
|
11117
|
+
}
|
|
11082
11118
|
}
|
|
11083
11119
|
}, [_c('p', {
|
|
11084
11120
|
staticClass: "email-subject",
|
|
@@ -11181,7 +11217,10 @@ var __vue_render__$1 = function () {
|
|
|
11181
11217
|
}, [_c('li', {
|
|
11182
11218
|
staticClass: "email-action",
|
|
11183
11219
|
on: {
|
|
11184
|
-
"click":
|
|
11220
|
+
"click": function ($event) {
|
|
11221
|
+
$event.stopPropagation();
|
|
11222
|
+
return _vm.toggleOpenMessage.apply(null, arguments);
|
|
11223
|
+
}
|
|
11185
11224
|
}
|
|
11186
11225
|
}, [_vm._v("\n " + _vm._s(!_vm.openMessage ? 'Visualizar' : 'Esconder') + " texto do e-mail\n ")])]) : _vm._e()]), _vm._v(" "), _c('transition', {
|
|
11187
11226
|
attrs: {
|
|
@@ -11196,7 +11235,12 @@ var __vue_render__$1 = function () {
|
|
|
11196
11235
|
}), _vm._v(" "), _vm.openMessage ? _c('span', {
|
|
11197
11236
|
staticClass: "email-raw"
|
|
11198
11237
|
}, [_vm._v(_vm._s(_vm.mensagem))]) : _vm._e()]) : _vm._e()]), _vm._v(" "), _vm.anexos && _vm.anexos.length ? _c('div', {
|
|
11199
|
-
staticClass: "email-files"
|
|
11238
|
+
staticClass: "email-files",
|
|
11239
|
+
on: {
|
|
11240
|
+
"click": function ($event) {
|
|
11241
|
+
$event.stopPropagation();
|
|
11242
|
+
}
|
|
11243
|
+
}
|
|
11200
11244
|
}, _vm._l(_vm.anexos, function (anexo, index) {
|
|
11201
11245
|
return _c('EmailFile', {
|
|
11202
11246
|
key: index,
|
|
@@ -11212,18 +11256,18 @@ var __vue_staticRenderFns__$1 = [];
|
|
|
11212
11256
|
/* style */
|
|
11213
11257
|
const __vue_inject_styles__$1 = function (inject) {
|
|
11214
11258
|
if (!inject) return;
|
|
11215
|
-
inject("data-v-
|
|
11216
|
-
source: ".show-y-top-enter-active[data-v-
|
|
11259
|
+
inject("data-v-e3682be0_0", {
|
|
11260
|
+
source: ".show-y-top-enter-active[data-v-e3682be0],.show-y-top-leave-enter[data-v-e3682be0]{opacity:1;transform:translateY(0);transition:all .2s linear}.show-y-top-enter[data-v-e3682be0],.show-y-top-leave-to[data-v-e3682be0]{opacity:0;transform:translateY(-2%)}",
|
|
11217
11261
|
map: undefined,
|
|
11218
11262
|
media: undefined
|
|
11219
|
-
}), inject("data-v-
|
|
11220
|
-
source: "@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);.box-shadow-active{box-shadow:0 0 4px 2px rgba(0,0,0,.25)!important}.bg-dark-white-2{background-color:#f7f7f7}.bg-white{background-color:#fff}.email-overlay{width:100%;height:100%;background-color:transparent;z-index:1;position:absolute;top:0;left:0}.email-item{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-item.outros{border-left:3px solid #33b8df}.email-author-name{margin:0 5px}.email-author.outros{color:#33b8df}.email-author.outros>svg:nth-child(1){transform:rotate(180deg)}.email-author.principal{color:#ebb552}.email-item.principal{border-left:3px solid #ebb552}.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:0 0 5px 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:5px;top:5px;z-index:1}.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
|
|
11263
|
+
}), inject("data-v-e3682be0_1", {
|
|
11264
|
+
source: "@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);.box-shadow-active{box-shadow:0 0 4px 2px rgba(0,0,0,.25)!important}.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{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-item.outros{border-left:3px solid #33b8df}.email-author-name{margin:0 5px}.email-author.outros{color:#33b8df}.email-author.outros>svg:nth-child(1){transform:rotate(180deg)}.email-author.principal{color:#ebb552}.email-item.principal{border-left:3px solid #ebb552}.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:0 0 5px 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:5px;top:5px;z-index:1}.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%;cursor:default}.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;height:300px;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}",
|
|
11221
11265
|
map: undefined,
|
|
11222
11266
|
media: undefined
|
|
11223
11267
|
});
|
|
11224
11268
|
};
|
|
11225
11269
|
/* scoped */
|
|
11226
|
-
const __vue_scope_id__$1 = "data-v-
|
|
11270
|
+
const __vue_scope_id__$1 = "data-v-e3682be0";
|
|
11227
11271
|
/* module identifier */
|
|
11228
11272
|
const __vue_module_identifier__$1 = undefined;
|
|
11229
11273
|
/* functional template */
|