vue-intergrall-plugins 0.0.225 → 0.0.226
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.
|
@@ -3847,12 +3847,13 @@ var __vue_render__$n = function __vue_render__() {
|
|
|
3847
3847
|
"name": "fade"
|
|
3848
3848
|
}
|
|
3849
3849
|
}, [_vm.fileSize > 0 ? _c('span', {
|
|
3850
|
+
directives: [{
|
|
3851
|
+
name: "tippy",
|
|
3852
|
+
rawName: "v-tippy"
|
|
3853
|
+
}],
|
|
3850
3854
|
staticClass: "files-counter",
|
|
3851
3855
|
attrs: {
|
|
3852
|
-
"
|
|
3853
|
-
},
|
|
3854
|
-
domProps: {
|
|
3855
|
-
"textContent": _vm._s(_vm.fileSize)
|
|
3856
|
+
"content": "Visualizar " + _vm.fileSize + " arquivo(s)"
|
|
3856
3857
|
},
|
|
3857
3858
|
on: {
|
|
3858
3859
|
"click": function click($event) {
|
|
@@ -3860,7 +3861,11 @@ var __vue_render__$n = function __vue_render__() {
|
|
|
3860
3861
|
return _vm.toggleFilePreview.apply(null, arguments);
|
|
3861
3862
|
}
|
|
3862
3863
|
}
|
|
3863
|
-
}
|
|
3864
|
+
}, [_c('fa-icon', {
|
|
3865
|
+
attrs: {
|
|
3866
|
+
"icon": ['fas', 'eye']
|
|
3867
|
+
}
|
|
3868
|
+
})], 1) : _vm._e()]), _vm._ssrNode(" "), _c('fa-icon', {
|
|
3864
3869
|
attrs: {
|
|
3865
3870
|
"icon": ['fas', 'paperclip'],
|
|
3866
3871
|
"title": _vm.dictionary.title_selecionar_anexo
|
|
@@ -3996,7 +4001,7 @@ var __vue_staticRenderFns__$n = [];
|
|
|
3996
4001
|
|
|
3997
4002
|
var __vue_inject_styles__$n = function __vue_inject_styles__(inject) {
|
|
3998
4003
|
if (!inject) return;
|
|
3999
|
-
inject("data-v-
|
|
4004
|
+
inject("data-v-4ecd68ea_0", {
|
|
4000
4005
|
source: ".fade-enter-active,.fade-leave-active{transition:opacity .3s}.fade-enter,.fade-leave-to{opacity:0}.files-counter{position:absolute;top:unset;transform:translate(17.5px,-15px);background-color:#888;z-index:1;font-size:.5rem;width:15px;height:15px;border-radius:50%;display:flex;justify-content:center;align-items:center;cursor:pointer;opacity:.9;transition:all .3s;color:#fff;font-weight:900}.files-counter:hover{opacity:1}",
|
|
4001
4006
|
map: undefined,
|
|
4002
4007
|
media: undefined
|
|
@@ -4008,7 +4013,7 @@ var __vue_inject_styles__$n = function __vue_inject_styles__(inject) {
|
|
|
4008
4013
|
var __vue_scope_id__$n = undefined;
|
|
4009
4014
|
/* module identifier */
|
|
4010
4015
|
|
|
4011
|
-
var __vue_module_identifier__$n = "data-v-
|
|
4016
|
+
var __vue_module_identifier__$n = "data-v-4ecd68ea";
|
|
4012
4017
|
/* functional template */
|
|
4013
4018
|
|
|
4014
4019
|
var __vue_is_functional_template__$n = false;
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<span class="text-footer-actions--btn" :class="{'files-activated' : openFiles || file.length || file.name}" @click="openFilesByClip()">
|
|
3
3
|
<transition name="fade">
|
|
4
|
-
<span v-if="fileSize > 0"
|
|
4
|
+
<span v-if="fileSize > 0" @click.stop="toggleFilePreview" v-tippy :content="`Visualizar ${fileSize} arquivo(s)`" class="files-counter">
|
|
5
|
+
<fa-icon :icon="['fas', 'eye']" />
|
|
6
|
+
</span>
|
|
7
|
+
<!-- <span v-if="fileSize > 0" class="files-counter" v-text="fileSize" @click.stop="toggleFilePreview" :title="dictionary.msg_abrir_anexos"></span> -->
|
|
5
8
|
</transition>
|
|
6
9
|
<fa-icon :icon="['fas', 'paperclip']" :title="dictionary.title_selecionar_anexo" />
|
|
7
10
|
<transition name="show">
|