vue-intergrall-plugins 1.1.43 → 1.1.46
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.
|
@@ -11569,6 +11569,10 @@ var script$1 = {
|
|
|
11569
11569
|
jaMarcadoSpam: {
|
|
11570
11570
|
type: Boolean,
|
|
11571
11571
|
default: false
|
|
11572
|
+
},
|
|
11573
|
+
msgTooltip: {
|
|
11574
|
+
type: String,
|
|
11575
|
+
default: ''
|
|
11572
11576
|
}
|
|
11573
11577
|
},
|
|
11574
11578
|
data() {
|
|
@@ -11600,6 +11604,20 @@ var script$1 = {
|
|
|
11600
11604
|
formattedDate() {
|
|
11601
11605
|
return this.formataDateHoraDateFns(this.dataHora, this.dataServer, this.dicionario);
|
|
11602
11606
|
},
|
|
11607
|
+
contentTooltip: {
|
|
11608
|
+
get() {
|
|
11609
|
+
if (!this.status || !this.msgTooltip) return '';
|
|
11610
|
+
if (this.status && !this.msgTooltip) {
|
|
11611
|
+
const msgStatus = "msg_status_" + this.status;
|
|
11612
|
+
return this.strTooltipAux = this.dicionario[msgStatus];
|
|
11613
|
+
} else if (this.status && this.msgTooltip) {
|
|
11614
|
+
return this.strTooltipAux = this.msgTooltip;
|
|
11615
|
+
}
|
|
11616
|
+
},
|
|
11617
|
+
set(msg) {
|
|
11618
|
+
return this.contentTooltip = msg;
|
|
11619
|
+
}
|
|
11620
|
+
},
|
|
11603
11621
|
mailInfos() {
|
|
11604
11622
|
const formatAsString = arr => {
|
|
11605
11623
|
let str = '';
|
|
@@ -12344,25 +12362,142 @@ var __vue_render__$1 = function () {
|
|
|
12344
12362
|
}
|
|
12345
12363
|
}), _vm._v(" "), _c('span', {
|
|
12346
12364
|
staticClass: "clip-badge"
|
|
12347
|
-
}, [_vm._v(_vm._s(_vm.filteredFiles.length))])], 1)]) : _vm._e()
|
|
12365
|
+
}, [_vm._v(_vm._s(_vm.filteredFiles.length))])], 1)]) : _vm._e(), _vm._v(" "), _c('transition', {
|
|
12366
|
+
attrs: {
|
|
12367
|
+
"name": "fade",
|
|
12368
|
+
"mode": "out-in"
|
|
12369
|
+
}
|
|
12370
|
+
}, [_vm.status == 'D' ? _c('span', {
|
|
12371
|
+
directives: [{
|
|
12372
|
+
name: "tippy",
|
|
12373
|
+
rawName: "v-tippy"
|
|
12374
|
+
}],
|
|
12375
|
+
key: "check-padrao",
|
|
12376
|
+
staticClass: "check",
|
|
12377
|
+
attrs: {
|
|
12378
|
+
"content": _vm.contentTooltip
|
|
12379
|
+
}
|
|
12380
|
+
}, [_c('fa-icon', {
|
|
12381
|
+
attrs: {
|
|
12382
|
+
"icon": ['fas', 'check']
|
|
12383
|
+
}
|
|
12384
|
+
})], 1) : _vm.status == 'Q' ? _c('span', {
|
|
12385
|
+
directives: [{
|
|
12386
|
+
name: "tippy",
|
|
12387
|
+
rawName: "v-tippy"
|
|
12388
|
+
}],
|
|
12389
|
+
key: "check-cinza",
|
|
12390
|
+
staticClass: "check cinza",
|
|
12391
|
+
attrs: {
|
|
12392
|
+
"content": _vm.contentTooltip
|
|
12393
|
+
}
|
|
12394
|
+
}, [_c('fa-icon', {
|
|
12395
|
+
attrs: {
|
|
12396
|
+
"icon": ['fas', 'check']
|
|
12397
|
+
}
|
|
12398
|
+
})], 1) : _vm.status == 'G' ? _c('span', {
|
|
12399
|
+
directives: [{
|
|
12400
|
+
name: "tippy",
|
|
12401
|
+
rawName: "v-tippy"
|
|
12402
|
+
}],
|
|
12403
|
+
key: "check-preto",
|
|
12404
|
+
staticClass: "check preto",
|
|
12405
|
+
attrs: {
|
|
12406
|
+
"content": _vm.contentTooltip
|
|
12407
|
+
}
|
|
12408
|
+
}, [_c('fa-icon', {
|
|
12409
|
+
attrs: {
|
|
12410
|
+
"icon": ['fas', 'check']
|
|
12411
|
+
}
|
|
12412
|
+
})], 1) : _vm.status == 'E' ? _c('span', {
|
|
12413
|
+
directives: [{
|
|
12414
|
+
name: "tippy",
|
|
12415
|
+
rawName: "v-tippy"
|
|
12416
|
+
}],
|
|
12417
|
+
key: "double-check-preto",
|
|
12418
|
+
staticClass: "check preto",
|
|
12419
|
+
attrs: {
|
|
12420
|
+
"content": _vm.contentTooltip
|
|
12421
|
+
}
|
|
12422
|
+
}, [_c('fa-icon', {
|
|
12423
|
+
attrs: {
|
|
12424
|
+
"icon": ['fas', 'check-double']
|
|
12425
|
+
}
|
|
12426
|
+
})], 1) : _vm.status == 'L' ? _c('span', {
|
|
12427
|
+
directives: [{
|
|
12428
|
+
name: "tippy",
|
|
12429
|
+
rawName: "v-tippy"
|
|
12430
|
+
}],
|
|
12431
|
+
key: "double-check-visualizado",
|
|
12432
|
+
staticClass: "check visualizado",
|
|
12433
|
+
attrs: {
|
|
12434
|
+
"content": _vm.contentTooltip
|
|
12435
|
+
}
|
|
12436
|
+
}, [_c('fa-icon', {
|
|
12437
|
+
attrs: {
|
|
12438
|
+
"icon": ['fas', 'check-double']
|
|
12439
|
+
}
|
|
12440
|
+
})], 1) : _vm.status == 'C' || _vm.status == 'ERRO' ? _c('span', {
|
|
12441
|
+
directives: [{
|
|
12442
|
+
name: "tippy",
|
|
12443
|
+
rawName: "v-tippy"
|
|
12444
|
+
}],
|
|
12445
|
+
key: "times-circle",
|
|
12446
|
+
staticClass: "check vermelho",
|
|
12447
|
+
attrs: {
|
|
12448
|
+
"content": _vm.contentTooltip
|
|
12449
|
+
}
|
|
12450
|
+
}, [_c('fa-icon', {
|
|
12451
|
+
attrs: {
|
|
12452
|
+
"icon": ['fas', 'times-circle']
|
|
12453
|
+
}
|
|
12454
|
+
})], 1) : _vm.status == 'T' ? _c('span', {
|
|
12455
|
+
directives: [{
|
|
12456
|
+
name: "tippy",
|
|
12457
|
+
rawName: "v-tippy"
|
|
12458
|
+
}],
|
|
12459
|
+
key: "hourglass",
|
|
12460
|
+
staticClass: "check vermelho",
|
|
12461
|
+
attrs: {
|
|
12462
|
+
"content": _vm.contentTooltip
|
|
12463
|
+
}
|
|
12464
|
+
}, [_c('fa-icon', {
|
|
12465
|
+
attrs: {
|
|
12466
|
+
"icon": ['fas', 'hourglass']
|
|
12467
|
+
}
|
|
12468
|
+
})], 1) : _vm.status == 'O' ? _c('span', {
|
|
12469
|
+
directives: [{
|
|
12470
|
+
name: "tippy",
|
|
12471
|
+
rawName: "v-tippy"
|
|
12472
|
+
}],
|
|
12473
|
+
key: "deleted",
|
|
12474
|
+
staticClass: "check vermelho",
|
|
12475
|
+
attrs: {
|
|
12476
|
+
"content": _vm.contentTooltip
|
|
12477
|
+
}
|
|
12478
|
+
}, [_c('fa-icon', {
|
|
12479
|
+
attrs: {
|
|
12480
|
+
"icon": ['fas', 'times']
|
|
12481
|
+
}
|
|
12482
|
+
})], 1) : _vm._e()])], 1);
|
|
12348
12483
|
};
|
|
12349
12484
|
var __vue_staticRenderFns__$1 = [];
|
|
12350
12485
|
|
|
12351
12486
|
/* style */
|
|
12352
12487
|
const __vue_inject_styles__$1 = function (inject) {
|
|
12353
12488
|
if (!inject) return;
|
|
12354
|
-
inject("data-v-
|
|
12355
|
-
source: ".show-y-top-enter-active[data-v-
|
|
12489
|
+
inject("data-v-42c900e8_0", {
|
|
12490
|
+
source: ".show-y-top-enter-active[data-v-42c900e8],.show-y-top-leave-enter[data-v-42c900e8]{opacity:1;transform:translateY(0);transition:all .2s linear}.show-y-top-enter[data-v-42c900e8],.show-y-top-leave-to[data-v-42c900e8]{opacity:0;transform:translateY(-2%)}",
|
|
12356
12491
|
map: undefined,
|
|
12357
12492
|
media: undefined
|
|
12358
|
-
}), inject("data-v-
|
|
12493
|
+
}), inject("data-v-42c900e8_1", {
|
|
12359
12494
|
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}.divBtnReplyEmail{display:flex;align-items:center;background-color:#f0adad;border-radius:6px;padding:7px 9px;margin:5px 0;gap:8px}.reply-email-open{width:calc(100% - 10px - 45px)!important}.btnReplyEmail{display:block;background-color:#faa732;border:1px solid #da8205;margin:8px 0 8px 5px;padding:5px 10px 5px 10px;font-size:14.4px;font-weight:700;border-radius:3px;color:#000;cursor:pointer}.ja-marcado-spam{width:100%;background:#fffbe6;border:1px solid #ffe58f;border-radius:6px;box-shadow:0 2px 8px rgba(0,0,0,.08);padding:5px 30px;margin:9px 0 5px 0;display:flex;justify-content:space-between;align-items:center;gap:16px}.ja-marcado-spam>span{color:#614500;font-weight:500;font-size:14px;margin-bottom:0;align-self:center;align-items:center}.ja-marcado-spam-buttons{display:flex;flex-direction:column;gap:6px;align-items:flex-end}.ja-marcado-spam button{min-width:110px;padding:4px 10px;border:none;border-radius:5px;background:#ffe58f;color:#333;cursor:pointer;font-size:13.4px}.ja-marcado-spam-buttons .btn-nao-spam{background:#36b87b;color:var(--white);border:1px solid var(--konecta-success-hover,#309264);font-weight:700}.ja-marcado-spam-buttons .btn-nao-spam:hover{background:#309264}.ja-marcado-spam-buttons .btn-e-spam{background:#e74c3c;color:var(--white);border:1px solid var(--konecta-danger-hover,#c92e1e);font-weight:700}.ja-marcado-spam-buttons .btn-e-spam:hover{background:#c92e1e}.icon-btn-encerrar-spam{margin-right:2px}.btn-loader{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);z-index:2;pointer-events:none}.strongMsg{flex:1;font-size:13px}.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:16.4px}.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:16.4px;cursor:pointer}.email-date{--width:245px;font-size:12.8px;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:14.4px;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:14.4px;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:14.4px;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:12.8px}.email-info>span{font-size:12px;color:gray;margin-right:3px}.email-author{display:flex;align-items:center;height:5px;font-size:12px;font-weight:700;transform:translateY(-2px);width:100%;cursor:pointer}.email-subject-secondary{margin-top:-5px}.email-subject-span{font-size:11.2px;color:gray}.email-to-svg{font-size:13.6px}.email-custom-buttons{display:flex;gap:7px;position:absolute;top:5px;right:5px;z-index:1;font-size:12.8px}.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}.btnReplyEmail:active,.btnReplyEmail:hover{background-color:#da8205;color:#000}.email-attachments-clip{display:flex;cursor:pointer;margin-top:5px}.clip-icon{position:relative;font-size:22px;color:#999;transform:rotate(-15deg)}.clip-badge{position:absolute;transform:rotate(15deg);top:0;right:-15px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#999 40%,#515050 100%);color:#fff;border-radius:50%;min-width:22px;height:22px;font-size:12.4px;border:1px solid #fff;filter:drop-shadow(0 2px 4px rgba(0, 0, 0, .18));text-align:center;padding:0 4px;box-sizing:border-box}.clip-icon:hover{color:#777}.clip-icon:hover .clip-badge{background:linear-gradient(135deg,#999 20%,#515050 70%);filter:drop-shadow(0 2px 4px rgba(0, 0, 0, .28))}",
|
|
12360
12495
|
map: undefined,
|
|
12361
12496
|
media: undefined
|
|
12362
12497
|
});
|
|
12363
12498
|
};
|
|
12364
12499
|
/* scoped */
|
|
12365
|
-
const __vue_scope_id__$1 = "data-v-
|
|
12500
|
+
const __vue_scope_id__$1 = "data-v-42c900e8";
|
|
12366
12501
|
/* module identifier */
|
|
12367
12502
|
const __vue_module_identifier__$1 = undefined;
|
|
12368
12503
|
/* functional template */
|