vue-intergrall-plugins 1.0.54 → 1.0.56

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
@@ -6987,7 +6988,8 @@ function gerarVariaveisAnexo(anexos, storeObj) {
6987
6988
  case "image/jpeg":
6988
6989
  case "jpeg":
6989
6990
  if (!ignoreMku) {
6990
- imgAnexo = `${dominio}/callcenter/docs.php?mku=${mkuDownload}`;
6991
+ imgAnexo = `${dominio}/callcenter/docs.php?mku=${mku}`;
6992
+ downloadAnexo = `${dominio}/callcenter/docs.php?mku=${mkuDownload}`;
6991
6993
  nomeArquivo = name;
6992
6994
  }
6993
6995
  break;
@@ -7009,7 +7011,8 @@ function gerarVariaveisAnexo(anexos, storeObj) {
7009
7011
  tipoDoc = `audio/mpeg`;
7010
7012
  }
7011
7013
  if (!ignoreMku) {
7012
- docAnexo = `${dominio}/callcenter/docs.php?mku=${mkuDownload}`;
7014
+ docAnexo = `${dominio}/callcenter/docs.php?mku=${mku}`;
7015
+ downloadAnexo = `${dominio}/callcenter/docs.php?mku=${mkuDownload}`;
7013
7016
  nomeArquivo = name;
7014
7017
  }
7015
7018
  audio = true;
@@ -7025,7 +7028,8 @@ function gerarVariaveisAnexo(anexos, storeObj) {
7025
7028
  tipoDoc = "video/webm";
7026
7029
  }
7027
7030
  if (!ignoreMku) {
7028
- docAnexo = `${dominio}/callcenter/docs.php?mku=${mkuDownload}`;
7031
+ docAnexo = `${dominio}/callcenter/docs.php?mku=${mku}`;
7032
+ downloadAnexo = `${dominio}/callcenter/docs.php?mku=${mkuDownload}`;
7029
7033
  nomeArquivo = name;
7030
7034
  }
7031
7035
  video = true;
@@ -7033,7 +7037,8 @@ function gerarVariaveisAnexo(anexos, storeObj) {
7033
7037
  default:
7034
7038
  tipoDoc = type;
7035
7039
  if (!ignoreMku) {
7036
- docAnexo = `${dominio}/callcenter/docs.php?mku=${mkuDownload}`;
7040
+ docAnexo = `${dominio}/callcenter/docs.php?mku=${mku}`;
7041
+ downloadAnexo = `${dominio}/callcenter/docs.php?mku=${mkuDownload}`;
7037
7042
  nomeArquivo = name;
7038
7043
  }
7039
7044
  break;
@@ -7045,7 +7050,8 @@ function gerarVariaveisAnexo(anexos, storeObj) {
7045
7050
  docAnexo,
7046
7051
  nomeArquivo,
7047
7052
  audio,
7048
- video
7053
+ video,
7054
+ downloadAnexo
7049
7055
  });
7050
7056
  } catch (e) {
7051
7057
  if (e.code === -1) return {
@@ -7054,6 +7060,7 @@ function gerarVariaveisAnexo(anexos, storeObj) {
7054
7060
  tipoDoc: "",
7055
7061
  docAnexo: "",
7056
7062
  nomeArquivo: "",
7063
+ downloadAnexo: "",
7057
7064
  audio: false,
7058
7065
  video: false
7059
7066
  };
@@ -7073,12 +7080,13 @@ const fileHandler = {
7073
7080
  filename: "",
7074
7081
  audio: false,
7075
7082
  video: false,
7083
+ downloadURL: "",
7076
7084
  icon: []
7077
7085
  };
7078
7086
  },
7079
7087
  computed: {
7080
7088
  iconClass() {
7081
- return typeof this.fileType == 'string' && this.fileType.indexOf('pdf') > -1 ? "pdf" : "doc";
7089
+ return typeof this.fileType === 'string' && this.fileType.indexOf('pdf') > -1 ? "pdf" : "doc";
7082
7090
  }
7083
7091
  },
7084
7092
  methods: {
@@ -7086,7 +7094,7 @@ const fileHandler = {
7086
7094
  const viewableExtensions = ["pdf", "txt", "html", "css", "js", "json", "xml", "woff", "svg", "gif", "mp4", "mp3", "aac", "ogg", "wma"];
7087
7095
  if (!isImg && !viewableExtensions.includes(this.fileType)) {
7088
7096
  const a = document.createElement("a");
7089
- a.setAttribute("href", link);
7097
+ a.setAttribute("href", this.downloadURL);
7090
7098
  a.setAttribute("download", this.filename);
7091
7099
  a.setAttribute("target", "_blank");
7092
7100
  a.setAttribute("rel", "noopener noreferrer");
@@ -7099,7 +7107,7 @@ const fileHandler = {
7099
7107
  window.open(link, "anexo-ra", options);
7100
7108
  },
7101
7109
  showImage(image) {
7102
- if (!image) return console.warn("Não foi possível abrir a imagem");
7110
+ if (!image) return console.warn("Nao foi possivel abrir a imagem");
7103
7111
  this.$emit("abrir-imagem", image);
7104
7112
  },
7105
7113
  setFileVars(rawFile, storeObj) {
@@ -7115,13 +7123,15 @@ const fileHandler = {
7115
7123
  docAnexo,
7116
7124
  nomeArquivo,
7117
7125
  audio,
7118
- video
7126
+ video,
7127
+ downloadAnexo
7119
7128
  } = gerarVariaveisAnexo(rawFile, storeObj);
7120
7129
  this.isFile = anexo;
7121
7130
  this.imageURL = imgAnexo;
7122
7131
  this.fileType = tipoDoc;
7123
7132
  this.docURL = docAnexo;
7124
7133
  this.filename = nomeArquivo;
7134
+ this.downloadURL = downloadAnexo;
7125
7135
  this.audio = audio;
7126
7136
  this.video = video;
7127
7137
  this.setIcon();
@@ -7132,7 +7142,7 @@ const fileHandler = {
7132
7142
  }
7133
7143
  },
7134
7144
  setIcon() {
7135
- this.icon = typeof this.fileType == 'string' && this.fileType.indexOf('pdf') > -1 ? ['fas', 'file-pdf'] : ['fas', 'file-alt'];
7145
+ this.icon = typeof this.fileType === 'string' && this.fileType.indexOf('pdf') > -1 ? ['fas', 'file-pdf'] : ['fas', 'file-alt'];
7136
7146
  },
7137
7147
  downloadAllFilesHandler(referenceSelector) {
7138
7148
  try {
@@ -7160,7 +7170,7 @@ const fileHandler = {
7160
7170
  }
7161
7171
  }, 300);
7162
7172
  } catch (error) {
7163
- console.error("Erro ao fazer o donwload de todos anexos");
7173
+ console.error("Erro ao fazer o download de todos anexos");
7164
7174
  this.$toasted.global.defaultError({
7165
7175
  msg: error.message ? error.message : error
7166
7176
  });
@@ -10650,6 +10660,14 @@ var __vue_render__$3 = function () {
10650
10660
  "src": "" + _vm.imageURL,
10651
10661
  "alt": _vm.filename
10652
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
+ }
10653
10671
  })]) : _c('span', {
10654
10672
  staticClass: "anexo-icone",
10655
10673
  class: [_vm.iconClass],
@@ -10669,7 +10687,7 @@ var __vue_render__$3 = function () {
10669
10687
  })], 1), _vm._v(" "), _c('a', {
10670
10688
  staticClass: "anexo-download box-shadow",
10671
10689
  attrs: {
10672
- "href": _vm.imageURL ? _vm.imageURL : _vm.docURL,
10690
+ "href": _vm.downloadURL,
10673
10691
  "download": "" + _vm.filename,
10674
10692
  "target": "_blank",
10675
10693
  "title": "Download " + _vm.filename
@@ -10693,8 +10711,8 @@ var __vue_staticRenderFns__$3 = [];
10693
10711
  /* style */
10694
10712
  const __vue_inject_styles__$3 = function (inject) {
10695
10713
  if (!inject) return;
10696
- inject("data-v-56ef8c0e_0", {
10697
- 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}.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}",
10698
10716
  map: undefined,
10699
10717
  media: undefined
10700
10718
  });
@@ -10974,7 +10992,22 @@ var script$1 = {
10974
10992
  doc.open();
10975
10993
  doc.write(this.html);
10976
10994
  doc.close();
10977
- this.adjustIframeHeight();
10995
+ const images = doc.getElementsByTagName('img');
10996
+ let imagesLoaded = 0;
10997
+ const imageLoadHandler = () => {
10998
+ imagesLoaded++;
10999
+ if (imagesLoaded === images.length) {
11000
+ this.adjustIframeHeight();
11001
+ }
11002
+ };
11003
+ if (images.length === 0) {
11004
+ this.adjustIframeHeight();
11005
+ } else {
11006
+ for (let img of images) {
11007
+ img.addEventListener('load', imageLoadHandler);
11008
+ img.addEventListener('error', imageLoadHandler);
11009
+ }
11010
+ }
10978
11011
  }
10979
11012
  });
10980
11013
  },
@@ -11034,6 +11067,12 @@ var script$1 = {
11034
11067
  returnMainValue() {
11035
11068
  if (this.isMainEmail) return this.htmlEntityToEmoji(this.replaceUnicodeWithEmoji(this.assunto)) || '(Sem assunto)';
11036
11069
  return '';
11070
+ },
11071
+ openByItem(event) {
11072
+ if (this.isOpen) return;
11073
+ event.preventDefault();
11074
+ event.stopPropagation();
11075
+ this.toggleIsOpen();
11037
11076
  }
11038
11077
  }
11039
11078
  };
@@ -11047,14 +11086,22 @@ var __vue_render__$1 = function () {
11047
11086
  var _h = _vm.$createElement;
11048
11087
  var _c = _vm._self._c || _h;
11049
11088
  return _c('div', {
11050
- class: ['email-item box-shadow-active', _vm.isOpen ? _vm.isOpenClass : _vm.isClosedClass, _vm.showInfos ? 'info-open' : '', _vm.origem]
11089
+ class: ['email-item box-shadow-active', _vm.isOpen ? _vm.isOpenClass : _vm.isClosedClass + " cursor-pointer", _vm.showInfos ? 'info-open' : '', _vm.origem],
11090
+ on: {
11091
+ "click": function ($event) {
11092
+ return _vm.openByItem($event);
11093
+ }
11094
+ }
11051
11095
  }, [_vm.showInfos ? _c('div', {
11052
11096
  staticClass: "email-overlay"
11053
11097
  }) : _vm._e(), _vm._v(" "), _vm.autor ? _c('div', {
11054
11098
  staticClass: "email-author",
11055
11099
  class: [_vm.origem],
11056
11100
  on: {
11057
- "click": _vm.toggleIsOpen
11101
+ "click": function ($event) {
11102
+ $event.stopPropagation();
11103
+ return _vm.toggleIsOpen.apply(null, arguments);
11104
+ }
11058
11105
  }
11059
11106
  }, [_c('fa-icon', {
11060
11107
  class: [_vm.origem],
@@ -11079,7 +11126,10 @@ var __vue_render__$1 = function () {
11079
11126
  })], 1) : _vm._e(), _vm._v(" "), _c('div', {
11080
11127
  staticClass: "email-header",
11081
11128
  on: {
11082
- "click": _vm.toggleIsOpen
11129
+ "click": function ($event) {
11130
+ $event.stopPropagation();
11131
+ return _vm.toggleIsOpen.apply(null, arguments);
11132
+ }
11083
11133
  }
11084
11134
  }, [_c('p', {
11085
11135
  staticClass: "email-subject",
@@ -11182,7 +11232,10 @@ var __vue_render__$1 = function () {
11182
11232
  }, [_c('li', {
11183
11233
  staticClass: "email-action",
11184
11234
  on: {
11185
- "click": _vm.toggleOpenMessage
11235
+ "click": function ($event) {
11236
+ $event.stopPropagation();
11237
+ return _vm.toggleOpenMessage.apply(null, arguments);
11238
+ }
11186
11239
  }
11187
11240
  }, [_vm._v("\n " + _vm._s(!_vm.openMessage ? 'Visualizar' : 'Esconder') + " texto do e-mail\n ")])]) : _vm._e()]), _vm._v(" "), _c('transition', {
11188
11241
  attrs: {
@@ -11197,7 +11250,12 @@ var __vue_render__$1 = function () {
11197
11250
  }), _vm._v(" "), _vm.openMessage ? _c('span', {
11198
11251
  staticClass: "email-raw"
11199
11252
  }, [_vm._v(_vm._s(_vm.mensagem))]) : _vm._e()]) : _vm._e()]), _vm._v(" "), _vm.anexos && _vm.anexos.length ? _c('div', {
11200
- staticClass: "email-files"
11253
+ staticClass: "email-files",
11254
+ on: {
11255
+ "click": function ($event) {
11256
+ $event.stopPropagation();
11257
+ }
11258
+ }
11201
11259
  }, _vm._l(_vm.anexos, function (anexo, index) {
11202
11260
  return _c('EmailFile', {
11203
11261
  key: index,
@@ -11213,18 +11271,18 @@ var __vue_staticRenderFns__$1 = [];
11213
11271
  /* style */
11214
11272
  const __vue_inject_styles__$1 = function (inject) {
11215
11273
  if (!inject) return;
11216
- inject("data-v-7b2d9d14_0", {
11217
- source: ".show-y-top-enter-active[data-v-7b2d9d14],.show-y-top-leave-enter[data-v-7b2d9d14]{opacity:1;transform:translateY(0);transition:all .2s linear}.show-y-top-enter[data-v-7b2d9d14],.show-y-top-leave-to[data-v-7b2d9d14]{opacity:0;transform:translateY(-2%)}",
11274
+ inject("data-v-7ce66c6d_0", {
11275
+ source: ".show-y-top-enter-active[data-v-7ce66c6d],.show-y-top-leave-enter[data-v-7ce66c6d]{opacity:1;transform:translateY(0);transition:all .2s linear}.show-y-top-enter[data-v-7ce66c6d],.show-y-top-leave-to[data-v-7ce66c6d]{opacity:0;transform:translateY(-2%)}",
11218
11276
  map: undefined,
11219
11277
  media: undefined
11220
- }), inject("data-v-7b2d9d14_1", {
11221
- 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%}.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}",
11278
+ }), inject("data-v-7ce66c6d_1", {
11279
+ 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}",
11222
11280
  map: undefined,
11223
11281
  media: undefined
11224
11282
  });
11225
11283
  };
11226
11284
  /* scoped */
11227
- const __vue_scope_id__$1 = "data-v-7b2d9d14";
11285
+ const __vue_scope_id__$1 = "data-v-7ce66c6d";
11228
11286
  /* module identifier */
11229
11287
  const __vue_module_identifier__$1 = undefined;
11230
11288
  /* functional template */