vue-intergrall-plugins 1.0.55 → 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.
|
@@ -447,6 +447,57 @@ function _nonIterableSpread() {
|
|
|
447
447
|
}
|
|
448
448
|
function _nonIterableRest() {
|
|
449
449
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
450
|
+
}
|
|
451
|
+
function _createForOfIteratorHelper(o, allowArrayLike) {
|
|
452
|
+
var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
|
|
453
|
+
if (!it) {
|
|
454
|
+
if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
|
|
455
|
+
if (it) o = it;
|
|
456
|
+
var i = 0;
|
|
457
|
+
var F = function () {};
|
|
458
|
+
return {
|
|
459
|
+
s: F,
|
|
460
|
+
n: function () {
|
|
461
|
+
if (i >= o.length) return {
|
|
462
|
+
done: true
|
|
463
|
+
};
|
|
464
|
+
return {
|
|
465
|
+
done: false,
|
|
466
|
+
value: o[i++]
|
|
467
|
+
};
|
|
468
|
+
},
|
|
469
|
+
e: function (e) {
|
|
470
|
+
throw e;
|
|
471
|
+
},
|
|
472
|
+
f: F
|
|
473
|
+
};
|
|
474
|
+
}
|
|
475
|
+
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
476
|
+
}
|
|
477
|
+
var normalCompletion = true,
|
|
478
|
+
didErr = false,
|
|
479
|
+
err;
|
|
480
|
+
return {
|
|
481
|
+
s: function () {
|
|
482
|
+
it = it.call(o);
|
|
483
|
+
},
|
|
484
|
+
n: function () {
|
|
485
|
+
var step = it.next();
|
|
486
|
+
normalCompletion = step.done;
|
|
487
|
+
return step;
|
|
488
|
+
},
|
|
489
|
+
e: function (e) {
|
|
490
|
+
didErr = true;
|
|
491
|
+
err = e;
|
|
492
|
+
},
|
|
493
|
+
f: function () {
|
|
494
|
+
try {
|
|
495
|
+
if (!normalCompletion && it.return != null) it.return();
|
|
496
|
+
} finally {
|
|
497
|
+
if (didErr) throw err;
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
};
|
|
450
501
|
}var top = 'top';
|
|
451
502
|
var bottom = 'bottom';
|
|
452
503
|
var right = 'right';
|
|
@@ -10118,8 +10169,7 @@ var __vue_component__$4 = /*#__PURE__*/normalizeComponent({
|
|
|
10118
10169
|
render: __vue_render__$2,
|
|
10119
10170
|
staticRenderFns: __vue_staticRenderFns__$2
|
|
10120
10171
|
}, __vue_inject_styles__$2, __vue_script__$2, __vue_scope_id__$2, __vue_is_functional_template__$2, __vue_module_identifier__$2, false, undefined, createInjectorSSR, undefined);
|
|
10121
|
-
var EmailTo = __vue_component__$4
|
|
10122
|
-
var script$1 = {
|
|
10172
|
+
var EmailTo = __vue_component__$4;var script$1 = {
|
|
10123
10173
|
mixins: [textoLongo],
|
|
10124
10174
|
directives: {
|
|
10125
10175
|
clickaway: Clickaway
|
|
@@ -10270,7 +10320,31 @@ var script$1 = {
|
|
|
10270
10320
|
doc.open();
|
|
10271
10321
|
doc.write(_this.html);
|
|
10272
10322
|
doc.close();
|
|
10273
|
-
|
|
10323
|
+
var images = doc.getElementsByTagName('img');
|
|
10324
|
+
var imagesLoaded = 0;
|
|
10325
|
+
var imageLoadHandler = function imageLoadHandler() {
|
|
10326
|
+
imagesLoaded++;
|
|
10327
|
+
if (imagesLoaded === images.length) {
|
|
10328
|
+
_this.adjustIframeHeight();
|
|
10329
|
+
}
|
|
10330
|
+
};
|
|
10331
|
+
if (images.length === 0) {
|
|
10332
|
+
_this.adjustIframeHeight();
|
|
10333
|
+
} else {
|
|
10334
|
+
var _iterator = _createForOfIteratorHelper(images),
|
|
10335
|
+
_step;
|
|
10336
|
+
try {
|
|
10337
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
10338
|
+
var img = _step.value;
|
|
10339
|
+
img.addEventListener('load', imageLoadHandler);
|
|
10340
|
+
img.addEventListener('error', imageLoadHandler);
|
|
10341
|
+
}
|
|
10342
|
+
} catch (err) {
|
|
10343
|
+
_iterator.e(err);
|
|
10344
|
+
} finally {
|
|
10345
|
+
_iterator.f();
|
|
10346
|
+
}
|
|
10347
|
+
}
|
|
10274
10348
|
}
|
|
10275
10349
|
});
|
|
10276
10350
|
},
|
|
@@ -10354,19 +10428,19 @@ var __vue_render__$1 = function __vue_render__() {
|
|
|
10354
10428
|
return _vm.openByItem($event);
|
|
10355
10429
|
}
|
|
10356
10430
|
}
|
|
10357
|
-
}, [_vm._ssrNode((_vm.showInfos ? "<div class=\"email-overlay\" data-v-
|
|
10431
|
+
}, [_vm._ssrNode((_vm.showInfos ? "<div class=\"email-overlay\" data-v-7ce66c6d></div>" : "<!---->") + " "), _vm.autor ? _vm._ssrNode("<div" + _vm._ssrClass("email-author", [_vm.origem]) + " data-v-7ce66c6d>", "</div>", [_c('fa-icon', {
|
|
10358
10432
|
class: [_vm.origem],
|
|
10359
10433
|
attrs: {
|
|
10360
10434
|
"icon": ['fas', 'reply'],
|
|
10361
10435
|
"title": "Enviado por: " + _vm.autor
|
|
10362
10436
|
}
|
|
10363
|
-
}), _vm._ssrNode(" <p" + _vm._ssrAttr("title", _vm.returnAuthorName()) + " class=\"email-author-name\" data-v-
|
|
10437
|
+
}), _vm._ssrNode(" <p" + _vm._ssrAttr("title", _vm.returnAuthorName()) + " class=\"email-author-name\" data-v-7ce66c6d>" + _vm._ssrEscape(_vm._s(_vm.returnAuthorName())) + "</p> "), _c('fa-icon', {
|
|
10364
10438
|
staticClass: "email-to-svg",
|
|
10365
10439
|
attrs: {
|
|
10366
10440
|
"icon": ['fas', _vm.origem === 'outros' ? 'user' : 'headset'],
|
|
10367
10441
|
"title": "E-mail " + (_vm.origem === 'outros' ? 'recebido' : 'enviado')
|
|
10368
10442
|
}
|
|
10369
|
-
})], 2) : _vm._e(), _vm._ssrNode(" "), _vm._ssrNode("<div class=\"email-header\" data-v-
|
|
10443
|
+
})], 2) : _vm._e(), _vm._ssrNode(" "), _vm._ssrNode("<div class=\"email-header\" data-v-7ce66c6d>", "</div>", [_vm._ssrNode("<p" + _vm._ssrAttr("title", _vm.returnMainValue()) + " class=\"email-subject\" data-v-7ce66c6d>" + _vm._ssrEscape("\n " + _vm._s(_vm.returnMainValue()) + "\n ") + "</p> "), _vm._ssrNode("<div class=\"header-container\" data-v-7ce66c6d>", "</div>", [_vm._ssrNode("<div class=\"email-header-content\" data-v-7ce66c6d>", "</div>", [_vm._ssrNode("<div class=\"email-header-infos\" data-v-7ce66c6d>", "</div>", [_vm.para && _vm.para.length && _vm.isOpen ? [_vm._ssrNode("<div class=\"email-to-from-container\" data-v-7ce66c6d>", "</div>", [_vm._l(_vm.para, function (recipient, index) {
|
|
10370
10444
|
return _c('EmailTo', {
|
|
10371
10445
|
key: "to-" + index,
|
|
10372
10446
|
attrs: {
|
|
@@ -10375,11 +10449,11 @@ var __vue_render__$1 = function __vue_render__() {
|
|
|
10375
10449
|
"showMail": _vm.para.length === 1
|
|
10376
10450
|
}
|
|
10377
10451
|
});
|
|
10378
|
-
}), _vm._ssrNode(" "), _vm._ssrNode("<div class=\"email-to-btn\" data-v-
|
|
10452
|
+
}), _vm._ssrNode(" "), _vm._ssrNode("<div class=\"email-to-btn\" data-v-7ce66c6d>", "</div>", [_c('fa-icon', {
|
|
10379
10453
|
attrs: {
|
|
10380
10454
|
"icon": ['fas', 'caret-down']
|
|
10381
10455
|
}
|
|
10382
|
-
})], 1)], 2)] : _vm._e(), _vm._ssrNode(" " + (!_vm.isMainEmail && _vm.isOpen ? "<div class=\"email-subject-secondary\" data-v-
|
|
10456
|
+
})], 1)], 2)] : _vm._e(), _vm._ssrNode(" " + (!_vm.isMainEmail && _vm.isOpen ? "<div class=\"email-subject-secondary\" data-v-7ce66c6d><span class=\"email-subject-span\" data-v-7ce66c6d>" + _vm._ssrEscape(_vm._s("Assunto: " + (_vm.htmlEntityToEmoji(_vm.replaceUnicodeWithEmoji(_vm.assunto)) || '(Sem assunto)'))) + "</span></div>" : "<!---->"))], 2)]), _vm._ssrNode(" "), _vm._ssrNode("<span" + _vm._ssrAttr("title", _vm.formattedDate) + _vm._ssrClass(null, "email-date " + (_vm.isOpen ? _vm.isOpenClass : _vm.isClosedClass)) + " data-v-7ce66c6d>", "</span>", [_c('fa-icon', {
|
|
10383
10457
|
attrs: {
|
|
10384
10458
|
"icon": ['fas', 'calendar']
|
|
10385
10459
|
}
|
|
@@ -10399,10 +10473,10 @@ var __vue_render__$1 = function __vue_render__() {
|
|
|
10399
10473
|
}
|
|
10400
10474
|
}
|
|
10401
10475
|
}, [_vm._ssrNode(_vm._ssrList(_vm.mailInfos, function (info, index) {
|
|
10402
|
-
return "<li class=\"email-info\" data-v-
|
|
10476
|
+
return "<li class=\"email-info\" data-v-7ce66c6d><span data-v-7ce66c6d>" + _vm._ssrEscape(_vm._s(info.label)) + "</span>" + _vm._ssrEscape("\n " + _vm._s(info.value) + "\n ") + "</li>";
|
|
10403
10477
|
}))]) : _vm._e(), _vm._ssrNode(" " + (_vm.isOpen ? "<span" + _vm._ssrClass(null, ['email-actions box-shadow', {
|
|
10404
10478
|
active: _vm.actionsOpen
|
|
10405
|
-
}]) + " data-v-
|
|
10479
|
+
}]) + " data-v-7ce66c6d><span data-v-7ce66c6d></span> <span data-v-7ce66c6d></span> <span data-v-7ce66c6d></span></span>" : "<!---->") + " "), _vm.actionsOpen && _vm.isOpen ? _c('ul', {
|
|
10406
10480
|
directives: [{
|
|
10407
10481
|
name: "clickaway",
|
|
10408
10482
|
rawName: "v-clickaway",
|
|
@@ -10415,7 +10489,7 @@ var __vue_render__$1 = function __vue_render__() {
|
|
|
10415
10489
|
$event.stopPropagation();
|
|
10416
10490
|
}
|
|
10417
10491
|
}
|
|
10418
|
-
}, [_vm._ssrNode("<li class=\"email-action\" data-v-
|
|
10492
|
+
}, [_vm._ssrNode("<li class=\"email-action\" data-v-7ce66c6d>" + _vm._ssrEscape("\n " + _vm._s(!_vm.openMessage ? 'Visualizar' : 'Esconder') + " texto do e-mail\n ") + "</li>")]) : _vm._e()], 2), _vm._ssrNode(" "), _c('transition', {
|
|
10419
10493
|
attrs: {
|
|
10420
10494
|
"name": "show-y-top"
|
|
10421
10495
|
}
|
|
@@ -10427,7 +10501,7 @@ var __vue_render__$1 = function __vue_render__() {
|
|
|
10427
10501
|
staticClass: "email-html"
|
|
10428
10502
|
}), _vm._v(" "), _vm.openMessage ? _c('span', {
|
|
10429
10503
|
staticClass: "email-raw"
|
|
10430
|
-
}, [_vm._v(_vm._s(_vm.mensagem))]) : _vm._e()]) : _vm._e()]), _vm._ssrNode(" "), _vm.anexos && _vm.anexos.length ? _vm._ssrNode("<div class=\"email-files\" data-v-
|
|
10504
|
+
}, [_vm._v(_vm._s(_vm.mensagem))]) : _vm._e()]) : _vm._e()]), _vm._ssrNode(" "), _vm.anexos && _vm.anexos.length ? _vm._ssrNode("<div class=\"email-files\" data-v-7ce66c6d>", "</div>", _vm._l(_vm.anexos, function (anexo, index) {
|
|
10431
10505
|
return _c('EmailFile', {
|
|
10432
10506
|
key: index,
|
|
10433
10507
|
attrs: {
|
|
@@ -10442,20 +10516,20 @@ var __vue_staticRenderFns__$1 = [];
|
|
|
10442
10516
|
/* style */
|
|
10443
10517
|
var __vue_inject_styles__$1 = function __vue_inject_styles__(inject) {
|
|
10444
10518
|
if (!inject) return;
|
|
10445
|
-
inject("data-v-
|
|
10446
|
-
source: ".show-y-top-enter-active[data-v-
|
|
10519
|
+
inject("data-v-7ce66c6d_0", {
|
|
10520
|
+
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%)}",
|
|
10447
10521
|
map: undefined,
|
|
10448
10522
|
media: undefined
|
|
10449
|
-
}), inject("data-v-
|
|
10523
|
+
}), inject("data-v-7ce66c6d_1", {
|
|
10450
10524
|
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}",
|
|
10451
10525
|
map: undefined,
|
|
10452
10526
|
media: undefined
|
|
10453
10527
|
});
|
|
10454
10528
|
};
|
|
10455
10529
|
/* scoped */
|
|
10456
|
-
var __vue_scope_id__$1 = "data-v-
|
|
10530
|
+
var __vue_scope_id__$1 = "data-v-7ce66c6d";
|
|
10457
10531
|
/* module identifier */
|
|
10458
|
-
var __vue_module_identifier__$1 = "data-v-
|
|
10532
|
+
var __vue_module_identifier__$1 = "data-v-7ce66c6d";
|
|
10459
10533
|
/* functional template */
|
|
10460
10534
|
var __vue_is_functional_template__$1 = false;
|
|
10461
10535
|
/* style inject shadow dom */
|
package/package.json
CHANGED
|
@@ -216,9 +216,27 @@ export default {
|
|
|
216
216
|
doc.open();
|
|
217
217
|
doc.write(this.html);
|
|
218
218
|
doc.close();
|
|
219
|
-
|
|
219
|
+
|
|
220
|
+
const images = doc.getElementsByTagName('img');
|
|
221
|
+
let imagesLoaded = 0;
|
|
222
|
+
|
|
223
|
+
const imageLoadHandler = () => {
|
|
224
|
+
imagesLoaded++;
|
|
225
|
+
if (imagesLoaded === images.length) {
|
|
226
|
+
this.adjustIframeHeight();
|
|
227
|
+
}
|
|
228
|
+
};
|
|
229
|
+
|
|
230
|
+
if (images.length === 0) {
|
|
231
|
+
this.adjustIframeHeight();
|
|
232
|
+
} else {
|
|
233
|
+
for (let img of images) {
|
|
234
|
+
img.addEventListener('load', imageLoadHandler);
|
|
235
|
+
img.addEventListener('error', imageLoadHandler);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
220
238
|
}
|
|
221
|
-
})
|
|
239
|
+
});
|
|
222
240
|
},
|
|
223
241
|
adjustIframeHeight() {
|
|
224
242
|
this.$nextTick(() => {
|