vue-intergrall-plugins 0.0.199 → 0.0.200
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.
|
@@ -10876,7 +10876,11 @@ var script$6 = {
|
|
|
10876
10876
|
}
|
|
10877
10877
|
},
|
|
10878
10878
|
validarAnexo: function validarAnexo() {
|
|
10879
|
-
var status = true;
|
|
10879
|
+
var status = true; //caso for audio ou documento ignorar
|
|
10880
|
+
|
|
10881
|
+
if (this.anexo.docAnexo || this.anexo.audio) {
|
|
10882
|
+
return true;
|
|
10883
|
+
}
|
|
10880
10884
|
|
|
10881
10885
|
if (!this.anexo.name) {
|
|
10882
10886
|
this.imgMsgErro = this.dictionary.img_com_erro_nome;
|
|
@@ -11064,8 +11068,8 @@ var __vue_staticRenderFns__$6 = [];
|
|
|
11064
11068
|
|
|
11065
11069
|
var __vue_inject_styles__$6 = function __vue_inject_styles__(inject) {
|
|
11066
11070
|
if (!inject) return;
|
|
11067
|
-
inject("data-v-
|
|
11068
|
-
source: ".fade-enter-active[data-v-
|
|
11071
|
+
inject("data-v-19808158_0", {
|
|
11072
|
+
source: ".fade-enter-active[data-v-19808158],.fade-leave-active[data-v-19808158]{transition:opacity .5s}.fade-enter[data-v-19808158],.fade-leave-to[data-v-19808158]{opacity:0}.mensagem-div-anexo[data-v-19808158]{width:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;overflow:hidden}.anexo-container[data-v-19808158]{width:100%;margin-top:5px}.anexo-container .arquivo-erro[data-v-19808158],.anexo-container a[data-v-19808158]{padding:10px 15px 15px 15px;display:flex;justify-content:center;align-items:center}.anexo-container .arquivo-erro[data-v-19808158],.anexo-container p[data-v-19808158]{margin:0;margin-left:15px;font-size:.9rem}.anexo-container svg[data-v-19808158]{font-size:2rem}.anexo-container audio[data-v-19808158]{outline:0;width:100%}.anexo-container video[data-v-19808158]{width:100%;max-width:350px;cursor:pointer}.anexos-links-container[data-v-19808158]{width:100%;display:flex;justify-content:center;align-items:center}.anexos-links-container a[data-v-19808158]{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;margin-right:5px;font-weight:550;color:inherit;text-decoration:none}.anexos-links-container svg[data-v-19808158]{cursor:pointer}.mensagem-div-anexo img[data-v-19808158]{cursor:pointer;margin:10px 0;min-width:35px;width:100%;max-width:250px}.anexo-transition[data-v-19808158]{width:100%;height:100%}.anexo-mensagem[data-v-19808158]{display:flex;justify-content:center;align-items:center;flex-direction:column}.alert-danger[data-v-19808158]{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert[data-v-19808158]{position:relative;padding:.65rem 1.2rem;margin:5px 0;border:1px solid transparent;border-radius:.25rem;text-align:center}.alert svg[data-v-19808158]{font-size:1.025em;margin-right:2px}",
|
|
11069
11073
|
map: undefined,
|
|
11070
11074
|
media: undefined
|
|
11071
11075
|
});
|
|
@@ -11073,10 +11077,10 @@ var __vue_inject_styles__$6 = function __vue_inject_styles__(inject) {
|
|
|
11073
11077
|
/* scoped */
|
|
11074
11078
|
|
|
11075
11079
|
|
|
11076
|
-
var __vue_scope_id__$6 = "data-v-
|
|
11080
|
+
var __vue_scope_id__$6 = "data-v-19808158";
|
|
11077
11081
|
/* module identifier */
|
|
11078
11082
|
|
|
11079
|
-
var __vue_module_identifier__$6 = "data-v-
|
|
11083
|
+
var __vue_module_identifier__$6 = "data-v-19808158";
|
|
11080
11084
|
/* functional template */
|
|
11081
11085
|
|
|
11082
11086
|
var __vue_is_functional_template__$6 = false;
|
package/package.json
CHANGED
|
@@ -119,6 +119,10 @@ export default {
|
|
|
119
119
|
},
|
|
120
120
|
validarAnexo(){
|
|
121
121
|
let status = true;
|
|
122
|
+
//caso for audio ou documento ignorar
|
|
123
|
+
if(this.anexo.docAnexo || this.anexo.audio){
|
|
124
|
+
return true;
|
|
125
|
+
}
|
|
122
126
|
if(!this.anexo.name){
|
|
123
127
|
this.imgMsgErro = this.dictionary.img_com_erro_nome
|
|
124
128
|
status = false;
|