vue-intergrall-plugins 1.1.16 → 1.1.18
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.
|
@@ -11307,6 +11307,13 @@ var script$2 = {
|
|
|
11307
11307
|
required: false,
|
|
11308
11308
|
default: 'email-to'
|
|
11309
11309
|
}
|
|
11310
|
+
},
|
|
11311
|
+
computed: {
|
|
11312
|
+
nameToRender() {
|
|
11313
|
+
if (this.currentName) return this.currentName;
|
|
11314
|
+
if (this.email) return this.email;
|
|
11315
|
+
return '--';
|
|
11316
|
+
}
|
|
11310
11317
|
}
|
|
11311
11318
|
};
|
|
11312
11319
|
|
|
@@ -11320,13 +11327,13 @@ var __vue_render__$2 = function () {
|
|
|
11320
11327
|
var _c = _vm._self._c || _h;
|
|
11321
11328
|
return _c('div', {
|
|
11322
11329
|
class: _vm.emailToClass
|
|
11323
|
-
}, [_vm.
|
|
11330
|
+
}, [_vm.nameToRender ? _c('p', {
|
|
11324
11331
|
staticClass: "to",
|
|
11325
11332
|
attrs: {
|
|
11326
|
-
"title": _vm.
|
|
11333
|
+
"title": _vm.nameToRender
|
|
11327
11334
|
},
|
|
11328
11335
|
domProps: {
|
|
11329
|
-
"textContent": _vm._s(_vm.
|
|
11336
|
+
"textContent": _vm._s(_vm.nameToRender)
|
|
11330
11337
|
}
|
|
11331
11338
|
}) : _vm._e(), _vm._v(" "), _vm.showMail && _vm.email ? _c('span', {
|
|
11332
11339
|
staticClass: "additional",
|
|
@@ -11343,14 +11350,14 @@ var __vue_staticRenderFns__$2 = [];
|
|
|
11343
11350
|
/* style */
|
|
11344
11351
|
const __vue_inject_styles__$2 = function (inject) {
|
|
11345
11352
|
if (!inject) return;
|
|
11346
|
-
inject("data-v-
|
|
11347
|
-
source: ".email-to[data-v-
|
|
11353
|
+
inject("data-v-edc7fc2e_0", {
|
|
11354
|
+
source: ".email-to[data-v-edc7fc2e]{display:flex;align-items:center}.email-to .to[data-v-edc7fc2e]{margin:0}.email-to .additional[data-v-edc7fc2e],.email-to .to[data-v-edc7fc2e]{font-size:11.2px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:gray}.email-to .additional[data-v-edc7fc2e]{margin-left:5px}",
|
|
11348
11355
|
map: undefined,
|
|
11349
11356
|
media: undefined
|
|
11350
11357
|
});
|
|
11351
11358
|
};
|
|
11352
11359
|
/* scoped */
|
|
11353
|
-
const __vue_scope_id__$2 = "data-v-
|
|
11360
|
+
const __vue_scope_id__$2 = "data-v-edc7fc2e";
|
|
11354
11361
|
/* module identifier */
|
|
11355
11362
|
const __vue_module_identifier__$2 = undefined;
|
|
11356
11363
|
/* functional template */
|
|
@@ -11467,6 +11474,10 @@ var script$1 = {
|
|
|
11467
11474
|
status_msg: {
|
|
11468
11475
|
type: String,
|
|
11469
11476
|
default: ''
|
|
11477
|
+
},
|
|
11478
|
+
hasReplyEmail: {
|
|
11479
|
+
type: Boolean,
|
|
11480
|
+
default: false
|
|
11470
11481
|
}
|
|
11471
11482
|
},
|
|
11472
11483
|
data() {
|
|
@@ -11574,6 +11585,7 @@ var script$1 = {
|
|
|
11574
11585
|
this.$nextTick(this.updateIframeContent());
|
|
11575
11586
|
},
|
|
11576
11587
|
emitReplyEmail() {
|
|
11588
|
+
if (!this.hasReplyEmail) return;
|
|
11577
11589
|
this.$emit('reply-email', {
|
|
11578
11590
|
html: this.html,
|
|
11579
11591
|
mensagem: this.mensagem,
|
|
@@ -11939,7 +11951,7 @@ var __vue_render__$1 = function () {
|
|
|
11939
11951
|
staticClass: "divBtnReplyEmail"
|
|
11940
11952
|
}, [_c('strong', {
|
|
11941
11953
|
staticClass: "strongMsg"
|
|
11942
|
-
}, [_vm._v(_vm._s(_vm.status_msg) + " ")]), _vm._v(" "), _c('button', {
|
|
11954
|
+
}, [_vm._v(_vm._s(_vm.status_msg) + " ")]), _vm._v(" "), _vm.hasReplyEmail ? _c('button', {
|
|
11943
11955
|
staticClass: "btnReplyEmail",
|
|
11944
11956
|
on: {
|
|
11945
11957
|
"click": function ($event) {
|
|
@@ -11947,7 +11959,7 @@ var __vue_render__$1 = function () {
|
|
|
11947
11959
|
return _vm.emitReplyEmail.apply(null, arguments);
|
|
11948
11960
|
}
|
|
11949
11961
|
}
|
|
11950
|
-
}, [_c('strong', [_vm._v("Reenviar")])])]) : _vm._e(), _vm._v(" "), _c('div', {
|
|
11962
|
+
}, [_c('strong', [_vm._v("Reenviar")])]) : _vm._e()]) : _vm._e(), _vm._v(" "), _c('div', {
|
|
11951
11963
|
staticClass: "header-container"
|
|
11952
11964
|
}, [_c('div', {
|
|
11953
11965
|
class: "email-header-content" + (_vm.isOpen ? ' open' : '')
|
|
@@ -12116,18 +12128,18 @@ var __vue_staticRenderFns__$1 = [];
|
|
|
12116
12128
|
/* style */
|
|
12117
12129
|
const __vue_inject_styles__$1 = function (inject) {
|
|
12118
12130
|
if (!inject) return;
|
|
12119
|
-
inject("data-v-
|
|
12120
|
-
source: ".show-y-top-enter-active[data-v-
|
|
12131
|
+
inject("data-v-80b18b04_0", {
|
|
12132
|
+
source: ".show-y-top-enter-active[data-v-80b18b04],.show-y-top-leave-enter[data-v-80b18b04]{opacity:1;transform:translateY(0);transition:all .2s linear}.show-y-top-enter[data-v-80b18b04],.show-y-top-leave-to[data-v-80b18b04]{opacity:0;transform:translateY(-2%)}",
|
|
12121
12133
|
map: undefined,
|
|
12122
12134
|
media: undefined
|
|
12123
|
-
}), inject("data-v-
|
|
12124
|
-
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:7px 0;width:calc(100% - 10px
|
|
12135
|
+
}), inject("data-v-80b18b04_1", {
|
|
12136
|
+
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:7px 0;width:calc(100% - 10px - 50px);gap:8px}.btnReplyEmail{display:block;background-color:#faa732;border:1px solid #da8205;margin:8px 0 8px 5px;padding:5px;font-size:13px;font-weight:700;border-radius:3px;color:#000;cursor:pointer}.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}",
|
|
12125
12137
|
map: undefined,
|
|
12126
12138
|
media: undefined
|
|
12127
12139
|
});
|
|
12128
12140
|
};
|
|
12129
12141
|
/* scoped */
|
|
12130
|
-
const __vue_scope_id__$1 = "data-v-
|
|
12142
|
+
const __vue_scope_id__$1 = "data-v-80b18b04";
|
|
12131
12143
|
/* module identifier */
|
|
12132
12144
|
const __vue_module_identifier__$1 = undefined;
|
|
12133
12145
|
/* functional template */
|