vue-intergrall-plugins 0.0.244 → 0.0.247

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.
@@ -1857,7 +1857,7 @@ var createPopper = /*#__PURE__*/popperGenerator({
1857
1857
  //
1858
1858
  //
1859
1859
  //
1860
- var script$x = {
1860
+ var script$y = {
1861
1861
  data() {
1862
1862
  return {
1863
1863
  varValues: {},
@@ -1918,6 +1918,11 @@ var script$x = {
1918
1918
  },
1919
1919
 
1920
1920
  methods: {
1921
+ handleInitialFocus() {
1922
+ const allInputs = document.querySelectorAll(`.input-var-${this.identifier}`);
1923
+ if (allInputs.length) allInputs[0].focus();else if (this.$refs["template-single-button"]) this.$refs["template-single-button"].focus();
1924
+ },
1925
+
1921
1926
  limparInputVar() {
1922
1927
  const allInputs = document.querySelectorAll(`.input-var-${this.identifier}`);
1923
1928
  allInputs.forEach(input => {
@@ -1976,6 +1981,7 @@ var script$x = {
1976
1981
 
1977
1982
  setEvent(input) {
1978
1983
  const varList = input.nextSibling;
1984
+ const currentInstance = this;
1979
1985
  input.setAttribute("placeholder", `{{var_${this.lastVar}}}`);
1980
1986
  input.setAttribute("id", `{{var_${this.lastVar}}}`);
1981
1987
  input.addEventListener("input", event => {
@@ -1987,11 +1993,28 @@ var script$x = {
1987
1993
  input.classList.add("active");
1988
1994
 
1989
1995
  if (varList) {
1996
+ const handleNextFocus = () => {
1997
+ const allInputs = document.querySelectorAll(`.input-var-${currentInstance.identifier}`);
1998
+ let stop = false;
1999
+
2000
+ if (allInputs.length) {
2001
+ allInputs.forEach(elem => {
2002
+ if (!elem.value && !stop) {
2003
+ stop = true;
2004
+ elem.focus();
2005
+ }
2006
+ });
2007
+ }
2008
+
2009
+ if (!stop && this.$refs["template-single-button"]) this.$refs["template-single-button"].focus();
2010
+ };
2011
+
1990
2012
  for (let i = 0; i < varList.children.length; i++) {
1991
2013
  varList.children[i].addEventListener("click", function () {
1992
2014
  input.value = `[${this.innerText}]`;
1993
2015
  input.classList.add("active");
1994
2016
  input.dispatchEvent(new Event('input'));
2017
+ handleNextFocus();
1995
2018
  });
1996
2019
  }
1997
2020
 
@@ -2153,10 +2176,10 @@ function normalizeComponent(template, style, script, scopeId, isFunctionalTempla
2153
2176
  }
2154
2177
 
2155
2178
  /* script */
2156
- const __vue_script__$x = script$x;
2179
+ const __vue_script__$y = script$y;
2157
2180
  /* template */
2158
2181
 
2159
- var __vue_render__$x = function () {
2182
+ var __vue_render__$y = function () {
2160
2183
  var _vm = this;
2161
2184
 
2162
2185
  var _h = _vm.$createElement;
@@ -2224,6 +2247,7 @@ var __vue_render__$x = function () {
2224
2247
  'small-btn': _vm.iconButton
2225
2248
  }
2226
2249
  }, [_c('button', {
2250
+ ref: "template-single-button",
2227
2251
  on: {
2228
2252
  "click": function ($event) {
2229
2253
  return _vm.$emit('click-trigger');
@@ -2240,31 +2264,31 @@ var __vue_render__$x = function () {
2240
2264
  })], 2)]) : _vm._e()]);
2241
2265
  };
2242
2266
 
2243
- var __vue_staticRenderFns__$x = [];
2267
+ var __vue_staticRenderFns__$y = [];
2244
2268
  /* style */
2245
2269
 
2246
- const __vue_inject_styles__$x = undefined;
2270
+ const __vue_inject_styles__$y = undefined;
2247
2271
  /* scoped */
2248
2272
 
2249
- const __vue_scope_id__$x = undefined;
2273
+ const __vue_scope_id__$y = undefined;
2250
2274
  /* module identifier */
2251
2275
 
2252
- const __vue_module_identifier__$x = undefined;
2276
+ const __vue_module_identifier__$y = undefined;
2253
2277
  /* functional template */
2254
2278
 
2255
- const __vue_is_functional_template__$x = false;
2279
+ const __vue_is_functional_template__$y = false;
2256
2280
  /* style inject */
2257
2281
 
2258
2282
  /* style inject SSR */
2259
2283
 
2260
2284
  /* style inject shadow dom */
2261
2285
 
2262
- const __vue_component__$F = /*#__PURE__*/normalizeComponent({
2263
- render: __vue_render__$x,
2264
- staticRenderFns: __vue_staticRenderFns__$x
2265
- }, __vue_inject_styles__$x, __vue_script__$x, __vue_scope_id__$x, __vue_is_functional_template__$x, __vue_module_identifier__$x, false, undefined, undefined, undefined);
2286
+ const __vue_component__$G = /*#__PURE__*/normalizeComponent({
2287
+ render: __vue_render__$y,
2288
+ staticRenderFns: __vue_staticRenderFns__$y
2289
+ }, __vue_inject_styles__$y, __vue_script__$y, __vue_scope_id__$y, __vue_is_functional_template__$y, __vue_module_identifier__$y, false, undefined, undefined, undefined);
2266
2290
 
2267
- var TemplateSingle = __vue_component__$F;
2291
+ var TemplateSingle = __vue_component__$G;
2268
2292
 
2269
2293
  const setResizeListeners = ($el, inputClass, parentClass) => {
2270
2294
  const inputTargets = $el.querySelectorAll(inputClass);
@@ -2460,7 +2484,7 @@ var categories=[{id:"people",name:"Smileys & People",emojis:["grinning","grin","
2460
2484
  //
2461
2485
  //
2462
2486
  //
2463
- var script$w = {};
2487
+ var script$x = {};
2464
2488
 
2465
2489
  const isOldIE = typeof navigator !== 'undefined' &&
2466
2490
  /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
@@ -2516,10 +2540,10 @@ function addStyle(id, css) {
2516
2540
  }
2517
2541
 
2518
2542
  /* script */
2519
- const __vue_script__$w = script$w;
2543
+ const __vue_script__$x = script$x;
2520
2544
  /* template */
2521
2545
 
2522
- var __vue_render__$w = function () {
2546
+ var __vue_render__$x = function () {
2523
2547
  var _vm = this;
2524
2548
 
2525
2549
  var _h = _vm.$createElement;
@@ -2529,7 +2553,7 @@ var __vue_render__$w = function () {
2529
2553
  return _vm._m(0);
2530
2554
  };
2531
2555
 
2532
- var __vue_staticRenderFns__$w = [function () {
2556
+ var __vue_staticRenderFns__$x = [function () {
2533
2557
  var _vm = this;
2534
2558
 
2535
2559
  var _h = _vm.$createElement;
@@ -2592,7 +2616,7 @@ var __vue_staticRenderFns__$w = [function () {
2592
2616
  }];
2593
2617
  /* style */
2594
2618
 
2595
- const __vue_inject_styles__$w = function (inject) {
2619
+ const __vue_inject_styles__$x = function (inject) {
2596
2620
  if (!inject) return;
2597
2621
  inject("data-v-606babe9_0", {
2598
2622
  source: ".box-shadow{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.ov__skeleton--animation{animation:skeleton-loading 1s linear infinite alternate}@keyframes skeleton-loading{0%{background-color:#f7f7f7}70%{background-color:#ededed}100%{background-color:#ededed}}.skeleton-picker{position:absolute;width:100%;height:100%;z-index:91;border-radius:5px;background-color:#fff;border:1px solid #ccc}.skeleton-options{width:100%;height:48px;display:flex;justify-content:space-between;align-items:center;padding:0 15px;border-bottom:1px solid #ccc}.skeleton-options .opt{width:25px;height:50%}.skeleton-input{width:calc(100% - 30px);height:25px;margin:7px 15px;border-radius:2.5px}.skeleton-label{margin:15px 0;width:100%;height:30px}.skeleton-list{width:100%;padding-left:7.5px;display:flex;align-items:center;flex-wrap:wrap}.skeleton-list .opt{margin:0 5px 15px 6px;width:25px;height:25px}",
@@ -2603,26 +2627,26 @@ const __vue_inject_styles__$w = function (inject) {
2603
2627
  /* scoped */
2604
2628
 
2605
2629
 
2606
- const __vue_scope_id__$w = undefined;
2630
+ const __vue_scope_id__$x = undefined;
2607
2631
  /* module identifier */
2608
2632
 
2609
- const __vue_module_identifier__$w = undefined;
2633
+ const __vue_module_identifier__$x = undefined;
2610
2634
  /* functional template */
2611
2635
 
2612
- const __vue_is_functional_template__$w = false;
2636
+ const __vue_is_functional_template__$x = false;
2613
2637
  /* style inject SSR */
2614
2638
 
2615
2639
  /* style inject shadow dom */
2616
2640
 
2617
- const __vue_component__$E = /*#__PURE__*/normalizeComponent({
2618
- render: __vue_render__$w,
2619
- staticRenderFns: __vue_staticRenderFns__$w
2620
- }, __vue_inject_styles__$w, __vue_script__$w, __vue_scope_id__$w, __vue_is_functional_template__$w, __vue_module_identifier__$w, false, createInjector, undefined, undefined);
2641
+ const __vue_component__$F = /*#__PURE__*/normalizeComponent({
2642
+ render: __vue_render__$x,
2643
+ staticRenderFns: __vue_staticRenderFns__$x
2644
+ }, __vue_inject_styles__$x, __vue_script__$x, __vue_scope_id__$x, __vue_is_functional_template__$x, __vue_module_identifier__$x, false, createInjector, undefined, undefined);
2621
2645
 
2622
- var SkeletonPicker = __vue_component__$E;
2646
+ var SkeletonPicker = __vue_component__$F;
2623
2647
 
2624
2648
  //
2625
- var script$v = {
2649
+ var script$w = {
2626
2650
  components: {
2627
2651
  SkeletonPicker
2628
2652
  },
@@ -2831,10 +2855,10 @@ var script$v = {
2831
2855
  };
2832
2856
 
2833
2857
  /* script */
2834
- const __vue_script__$v = script$v;
2858
+ const __vue_script__$w = script$w;
2835
2859
  /* template */
2836
2860
 
2837
- var __vue_render__$v = function () {
2861
+ var __vue_render__$w = function () {
2838
2862
  var _vm = this;
2839
2863
 
2840
2864
  var _h = _vm.$createElement;
@@ -2937,10 +2961,10 @@ var __vue_render__$v = function () {
2937
2961
  }), 0)]], 2)], 1);
2938
2962
  };
2939
2963
 
2940
- var __vue_staticRenderFns__$v = [];
2964
+ var __vue_staticRenderFns__$w = [];
2941
2965
  /* style */
2942
2966
 
2943
- const __vue_inject_styles__$v = function (inject) {
2967
+ const __vue_inject_styles__$w = function (inject) {
2944
2968
  if (!inject) return;
2945
2969
  inject("data-v-678ca55c_0", {
2946
2970
  source: ".box-shadow{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.sm-emoji-picker{width:310px;z-index:2;border:1px solid #ccc;border-radius:5px;background-color:#fff;display:flex;flex-direction:column}.sm-emoji-header{width:100%;display:flex;align-items:center;justify-content:space-between;margin:10px 0;border-bottom:1px solid #ccc}.sm-emoji-link{padding:0 5px 5px 5px;display:flex;justify-content:center;align-items:center;cursor:pointer;opacity:.9;transition:all .2s;border-bottom:2px solid transparent}.sm-emoji-link a{margin:0;padding:0;fill:#999}.sm-emoji-link.active a>svg,.sm-emoji-link:hover a>svg{opacity:1;fill:#666}.sm-emoji-link.active a>svg[stroke-linecap],.sm-emoji-link:hover a>svg[stroke-linecap]{opacity:1;fill:transparent;stroke:#666}.sm-emoji-link.active{border-bottom:2px solid #666}.sm-emoji-scroll{width:100%;height:calc(100% - 52px);max-height:calc(100% - 52px);scroll-behavior:smooth;overflow-y:auto;overflow-x:hidden;scrollbar-color:#888 rgba(0,0,0,.2);scrollbar-width:8px;position:relative}.sm-emoji-scroll::-webkit-scrollbar{width:8px}.sm-emoji-scroll::-webkit-scrollbar-track{background-color:rgba(0,0,0,.2)}.sm-emoji-scroll::-webkit-scrollbar-thumb{transition-duration:.5s;background-color:#666}.sm-emoji-scroll::-webkit-scrollbar-thumb:hover{background-color:#555}.sm-emoji-search{width:100%;display:flex;align-items:center;justify-content:center;position:sticky;top:0;z-index:1;background:#fff;padding-bottom:10px}.sm-emoji-search>input{width:90%;outline:0;border:1px solid #ccc;border-radius:2.5px;padding:5px 10px;transition:border .2s}.sm-emoji-search>input:active,.sm-emoji-search>input:focus,.sm-emoji-search>input:hover{outline:0;border:1px solid #999}.sm-emoji-search.sticky{position:fixed;width:310px;background-color:#fff}.sm-emoji-selection{width:100%;margin-bottom:10px}.sm-emoji-title{width:100%;display:flex;justify-content:flex-start;align-items:center;background-color:#f7f7f7;padding:5px 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.sm-emoji-title svg{margin:0 5px}.sm-emoji-group{width:100%;display:flex;flex-wrap:wrap;font-size:1.375rem}.sm-emoji-item{cursor:pointer;opacity:.8;transition:opacity .2s;margin:3.5px}.sm-emoji-item:hover{opacity:1}",
@@ -2951,26 +2975,26 @@ const __vue_inject_styles__$v = function (inject) {
2951
2975
  /* scoped */
2952
2976
 
2953
2977
 
2954
- const __vue_scope_id__$v = undefined;
2978
+ const __vue_scope_id__$w = undefined;
2955
2979
  /* module identifier */
2956
2980
 
2957
- const __vue_module_identifier__$v = undefined;
2981
+ const __vue_module_identifier__$w = undefined;
2958
2982
  /* functional template */
2959
2983
 
2960
- const __vue_is_functional_template__$v = false;
2984
+ const __vue_is_functional_template__$w = false;
2961
2985
  /* style inject SSR */
2962
2986
 
2963
2987
  /* style inject shadow dom */
2964
2988
 
2965
- const __vue_component__$D = /*#__PURE__*/normalizeComponent({
2966
- render: __vue_render__$v,
2967
- staticRenderFns: __vue_staticRenderFns__$v
2968
- }, __vue_inject_styles__$v, __vue_script__$v, __vue_scope_id__$v, __vue_is_functional_template__$v, __vue_module_identifier__$v, false, createInjector, undefined, undefined);
2989
+ const __vue_component__$E = /*#__PURE__*/normalizeComponent({
2990
+ render: __vue_render__$w,
2991
+ staticRenderFns: __vue_staticRenderFns__$w
2992
+ }, __vue_inject_styles__$w, __vue_script__$w, __vue_scope_id__$w, __vue_is_functional_template__$w, __vue_module_identifier__$w, false, createInjector, undefined, undefined);
2969
2993
 
2970
- var Picker = __vue_component__$D;
2994
+ var Picker = __vue_component__$E;
2971
2995
 
2972
2996
  //
2973
- var script$u = {
2997
+ var script$v = {
2974
2998
  components: {
2975
2999
  Picker
2976
3000
  },
@@ -3070,10 +3094,10 @@ var script$u = {
3070
3094
  };
3071
3095
 
3072
3096
  /* script */
3073
- const __vue_script__$u = script$u;
3097
+ const __vue_script__$v = script$v;
3074
3098
  /* template */
3075
3099
 
3076
- var __vue_render__$u = function () {
3100
+ var __vue_render__$v = function () {
3077
3101
  var _vm = this;
3078
3102
 
3079
3103
  var _h = _vm.$createElement;
@@ -3116,10 +3140,10 @@ var __vue_render__$u = function () {
3116
3140
  })], 1)], 1);
3117
3141
  };
3118
3142
 
3119
- var __vue_staticRenderFns__$u = [];
3143
+ var __vue_staticRenderFns__$v = [];
3120
3144
  /* style */
3121
3145
 
3122
- const __vue_inject_styles__$u = function (inject) {
3146
+ const __vue_inject_styles__$v = function (inject) {
3123
3147
  if (!inject) return;
3124
3148
  inject("data-v-7b7b5e22_0", {
3125
3149
  source: ".show-y-enter-active,.show-y-leave-enter{opacity:1;transform:translateY(0);transition:all .2s linear}.show-y-enter,.show-y-leave-to{opacity:0;transform:translateY(5%)}.emoji-text-container{position:relative}.emoji-text-container .emoji-text-btn{font-size:1.2rem;cursor:pointer}",
@@ -3130,23 +3154,23 @@ const __vue_inject_styles__$u = function (inject) {
3130
3154
  /* scoped */
3131
3155
 
3132
3156
 
3133
- const __vue_scope_id__$u = undefined;
3157
+ const __vue_scope_id__$v = undefined;
3134
3158
  /* module identifier */
3135
3159
 
3136
- const __vue_module_identifier__$u = undefined;
3160
+ const __vue_module_identifier__$v = undefined;
3137
3161
  /* functional template */
3138
3162
 
3139
- const __vue_is_functional_template__$u = false;
3163
+ const __vue_is_functional_template__$v = false;
3140
3164
  /* style inject SSR */
3141
3165
 
3142
3166
  /* style inject shadow dom */
3143
3167
 
3144
- const __vue_component__$C = /*#__PURE__*/normalizeComponent({
3145
- render: __vue_render__$u,
3146
- staticRenderFns: __vue_staticRenderFns__$u
3147
- }, __vue_inject_styles__$u, __vue_script__$u, __vue_scope_id__$u, __vue_is_functional_template__$u, __vue_module_identifier__$u, false, createInjector, undefined, undefined);
3168
+ const __vue_component__$D = /*#__PURE__*/normalizeComponent({
3169
+ render: __vue_render__$v,
3170
+ staticRenderFns: __vue_staticRenderFns__$v
3171
+ }, __vue_inject_styles__$v, __vue_script__$v, __vue_scope_id__$v, __vue_is_functional_template__$v, __vue_module_identifier__$v, false, createInjector, undefined, undefined);
3148
3172
 
3149
- var BtnEmojis = __vue_component__$C;
3173
+ var BtnEmojis = __vue_component__$D;
3150
3174
 
3151
3175
  //
3152
3176
  //
@@ -3154,7 +3178,7 @@ var BtnEmojis = __vue_component__$C;
3154
3178
  //
3155
3179
  //
3156
3180
  //
3157
- var script$t = {
3181
+ var script$u = {
3158
3182
  props: {
3159
3183
  hasBg: {
3160
3184
  type: Boolean,
@@ -3177,10 +3201,10 @@ var script$t = {
3177
3201
  };
3178
3202
 
3179
3203
  /* script */
3180
- const __vue_script__$t = script$t;
3204
+ const __vue_script__$u = script$u;
3181
3205
  /* template */
3182
3206
 
3183
- var __vue_render__$t = function () {
3207
+ var __vue_render__$u = function () {
3184
3208
  var _vm = this;
3185
3209
 
3186
3210
  var _h = _vm.$createElement;
@@ -3202,13 +3226,13 @@ var __vue_render__$t = function () {
3202
3226
  })]);
3203
3227
  };
3204
3228
 
3205
- var __vue_staticRenderFns__$t = [];
3229
+ var __vue_staticRenderFns__$u = [];
3206
3230
  /* style */
3207
3231
 
3208
- const __vue_inject_styles__$t = function (inject) {
3232
+ const __vue_inject_styles__$u = function (inject) {
3209
3233
  if (!inject) return;
3210
- inject("data-v-423f52bb_0", {
3211
- source: ".req-loader-container{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center}.req-loader-container.light-bg{background-color:rgba(0,0,0,.3);border-radius:inherit}.req-loader-container.align-right{justify-content:flex-end}.req-loader-container.align-right .req-loader{margin-right:15px}.req-loader{border:2px solid #ccc;border-top:2px solid #333;border-radius:50%;width:20px;height:20px;min-width:20px;min-height:20px;animation:spin 2s linear infinite}.req-loader.big{width:40px;height:40px;animation:spin 3s linear infinite}.req-loader.slow{animation:spin 4s linear infinite}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}",
3234
+ inject("data-v-0b32f34b_0", {
3235
+ source: ".req-loader-container{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center}.req-loader-container.light-bg{background-color:rgba(0,0,0,.3);border-radius:inherit}.req-loader-container.align-right{justify-content:flex-end}.req-loader-container.align-right .req-loader{margin-right:15px}.req-loader{border:2px solid #ccc;border-top:2px solid #333;border-radius:50%;width:20px;height:20px;min-width:20px;min-height:20px;animation:spin 2s linear infinite}.req-loader.big{width:40px;height:40px;animation:spin 3s linear infinite}.req-loader.slow{animation:spin 4s linear infinite}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}",
3212
3236
  map: undefined,
3213
3237
  media: undefined
3214
3238
  });
@@ -3216,23 +3240,23 @@ const __vue_inject_styles__$t = function (inject) {
3216
3240
  /* scoped */
3217
3241
 
3218
3242
 
3219
- const __vue_scope_id__$t = undefined;
3243
+ const __vue_scope_id__$u = undefined;
3220
3244
  /* module identifier */
3221
3245
 
3222
- const __vue_module_identifier__$t = undefined;
3246
+ const __vue_module_identifier__$u = undefined;
3223
3247
  /* functional template */
3224
3248
 
3225
- const __vue_is_functional_template__$t = false;
3249
+ const __vue_is_functional_template__$u = false;
3226
3250
  /* style inject SSR */
3227
3251
 
3228
3252
  /* style inject shadow dom */
3229
3253
 
3230
- const __vue_component__$B = /*#__PURE__*/normalizeComponent({
3231
- render: __vue_render__$t,
3232
- staticRenderFns: __vue_staticRenderFns__$t
3233
- }, __vue_inject_styles__$t, __vue_script__$t, __vue_scope_id__$t, __vue_is_functional_template__$t, __vue_module_identifier__$t, false, createInjector, undefined, undefined);
3254
+ const __vue_component__$C = /*#__PURE__*/normalizeComponent({
3255
+ render: __vue_render__$u,
3256
+ staticRenderFns: __vue_staticRenderFns__$u
3257
+ }, __vue_inject_styles__$u, __vue_script__$u, __vue_scope_id__$u, __vue_is_functional_template__$u, __vue_module_identifier__$u, false, createInjector, undefined, undefined);
3234
3258
 
3235
- var Loader = __vue_component__$B;
3259
+ var Loader = __vue_component__$C;
3236
3260
 
3237
3261
  //
3238
3262
  //
@@ -3242,7 +3266,7 @@ var Loader = __vue_component__$B;
3242
3266
  //
3243
3267
  //
3244
3268
  //
3245
- var script$s = {
3269
+ var script$t = {
3246
3270
  props: {
3247
3271
  message: {
3248
3272
  type: String,
@@ -3263,10 +3287,10 @@ var script$s = {
3263
3287
  };
3264
3288
 
3265
3289
  /* script */
3266
- const __vue_script__$s = script$s;
3290
+ const __vue_script__$t = script$t;
3267
3291
  /* template */
3268
3292
 
3269
- var __vue_render__$s = function () {
3293
+ var __vue_render__$t = function () {
3270
3294
  var _vm = this;
3271
3295
 
3272
3296
  var _h = _vm.$createElement;
@@ -3281,31 +3305,31 @@ var __vue_render__$s = function () {
3281
3305
  }) : _vm._e();
3282
3306
  };
3283
3307
 
3284
- var __vue_staticRenderFns__$s = [];
3308
+ var __vue_staticRenderFns__$t = [];
3285
3309
  /* style */
3286
3310
 
3287
- const __vue_inject_styles__$s = undefined;
3311
+ const __vue_inject_styles__$t = undefined;
3288
3312
  /* scoped */
3289
3313
 
3290
- const __vue_scope_id__$s = undefined;
3314
+ const __vue_scope_id__$t = undefined;
3291
3315
  /* module identifier */
3292
3316
 
3293
- const __vue_module_identifier__$s = undefined;
3317
+ const __vue_module_identifier__$t = undefined;
3294
3318
  /* functional template */
3295
3319
 
3296
- const __vue_is_functional_template__$s = false;
3320
+ const __vue_is_functional_template__$t = false;
3297
3321
  /* style inject */
3298
3322
 
3299
3323
  /* style inject SSR */
3300
3324
 
3301
3325
  /* style inject shadow dom */
3302
3326
 
3303
- const __vue_component__$A = /*#__PURE__*/normalizeComponent({
3304
- render: __vue_render__$s,
3305
- staticRenderFns: __vue_staticRenderFns__$s
3306
- }, __vue_inject_styles__$s, __vue_script__$s, __vue_scope_id__$s, __vue_is_functional_template__$s, __vue_module_identifier__$s, false, undefined, undefined, undefined);
3327
+ const __vue_component__$B = /*#__PURE__*/normalizeComponent({
3328
+ render: __vue_render__$t,
3329
+ staticRenderFns: __vue_staticRenderFns__$t
3330
+ }, __vue_inject_styles__$t, __vue_script__$t, __vue_scope_id__$t, __vue_is_functional_template__$t, __vue_module_identifier__$t, false, undefined, undefined, undefined);
3307
3331
 
3308
- var RemainingCharacters = __vue_component__$A;
3332
+ var RemainingCharacters = __vue_component__$B;
3309
3333
 
3310
3334
  //
3311
3335
  //
@@ -3313,7 +3337,7 @@ var RemainingCharacters = __vue_component__$A;
3313
3337
  //
3314
3338
  //
3315
3339
  //
3316
- var script$r = {
3340
+ var script$s = {
3317
3341
  props: {
3318
3342
  dictionary: {
3319
3343
  type: Object,
@@ -3385,10 +3409,10 @@ var script$r = {
3385
3409
  };
3386
3410
 
3387
3411
  /* script */
3388
- const __vue_script__$r = script$r;
3412
+ const __vue_script__$s = script$s;
3389
3413
  /* template */
3390
3414
 
3391
- var __vue_render__$r = function () {
3415
+ var __vue_render__$s = function () {
3392
3416
  var _vm = this;
3393
3417
 
3394
3418
  var _h = _vm.$createElement;
@@ -3410,31 +3434,31 @@ var __vue_render__$r = function () {
3410
3434
  })], 1);
3411
3435
  };
3412
3436
 
3413
- var __vue_staticRenderFns__$r = [];
3437
+ var __vue_staticRenderFns__$s = [];
3414
3438
  /* style */
3415
3439
 
3416
- const __vue_inject_styles__$r = undefined;
3440
+ const __vue_inject_styles__$s = undefined;
3417
3441
  /* scoped */
3418
3442
 
3419
- const __vue_scope_id__$r = undefined;
3443
+ const __vue_scope_id__$s = undefined;
3420
3444
  /* module identifier */
3421
3445
 
3422
- const __vue_module_identifier__$r = undefined;
3446
+ const __vue_module_identifier__$s = undefined;
3423
3447
  /* functional template */
3424
3448
 
3425
- const __vue_is_functional_template__$r = false;
3449
+ const __vue_is_functional_template__$s = false;
3426
3450
  /* style inject */
3427
3451
 
3428
3452
  /* style inject SSR */
3429
3453
 
3430
3454
  /* style inject shadow dom */
3431
3455
 
3432
- const __vue_component__$z = /*#__PURE__*/normalizeComponent({
3433
- render: __vue_render__$r,
3434
- staticRenderFns: __vue_staticRenderFns__$r
3435
- }, __vue_inject_styles__$r, __vue_script__$r, __vue_scope_id__$r, __vue_is_functional_template__$r, __vue_module_identifier__$r, false, undefined, undefined, undefined);
3456
+ const __vue_component__$A = /*#__PURE__*/normalizeComponent({
3457
+ render: __vue_render__$s,
3458
+ staticRenderFns: __vue_staticRenderFns__$s
3459
+ }, __vue_inject_styles__$s, __vue_script__$s, __vue_scope_id__$s, __vue_is_functional_template__$s, __vue_module_identifier__$s, false, undefined, undefined, undefined);
3436
3460
 
3437
- var BtnMic = __vue_component__$z;
3461
+ var BtnMic = __vue_component__$A;
3438
3462
 
3439
3463
  //
3440
3464
  //
@@ -3459,7 +3483,7 @@ var BtnMic = __vue_component__$z;
3459
3483
  //
3460
3484
  //
3461
3485
  //
3462
- var script$q = {
3486
+ var script$r = {
3463
3487
  props: {
3464
3488
  textId: {
3465
3489
  type: String,
@@ -3517,10 +3541,10 @@ var script$q = {
3517
3541
  };
3518
3542
 
3519
3543
  /* script */
3520
- const __vue_script__$q = script$q;
3544
+ const __vue_script__$r = script$r;
3521
3545
  /* template */
3522
3546
 
3523
- var __vue_render__$q = function () {
3547
+ var __vue_render__$r = function () {
3524
3548
  var _vm = this;
3525
3549
 
3526
3550
  var _h = _vm.$createElement;
@@ -3591,10 +3615,10 @@ var __vue_render__$q = function () {
3591
3615
  })]) : _vm._e()]], 2) : _vm._e();
3592
3616
  };
3593
3617
 
3594
- var __vue_staticRenderFns__$q = [];
3618
+ var __vue_staticRenderFns__$r = [];
3595
3619
  /* style */
3596
3620
 
3597
- const __vue_inject_styles__$q = function (inject) {
3621
+ const __vue_inject_styles__$r = function (inject) {
3598
3622
  if (!inject) return;
3599
3623
  inject("data-v-a5119ba8_0", {
3600
3624
  source: ".single-file-preview .close-icon{color:#e74c3c;cursor:pointer;opacity:.9;transition:opacity .3s}.single-file-preview .close-icon:hover{opacity:1}.text-footer-invalid-format{color:#222;padding:10px}.text-footer-invalid-format h3{font-weight:500}.text-footer-invalid-format h4{font-size:.9rem}.text-footer-preview-title{font-size:1rem;padding:10px 0 0 10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.text-footer-image-preview{display:flex;justify-content:center;align-items:center;width:100%}.text-footer-image-preview img{cursor:pointer;max-width:98%;max-height:98%;padding:2%}",
@@ -3605,26 +3629,26 @@ const __vue_inject_styles__$q = function (inject) {
3605
3629
  /* scoped */
3606
3630
 
3607
3631
 
3608
- const __vue_scope_id__$q = undefined;
3632
+ const __vue_scope_id__$r = undefined;
3609
3633
  /* module identifier */
3610
3634
 
3611
- const __vue_module_identifier__$q = undefined;
3635
+ const __vue_module_identifier__$r = undefined;
3612
3636
  /* functional template */
3613
3637
 
3614
- const __vue_is_functional_template__$q = false;
3638
+ const __vue_is_functional_template__$r = false;
3615
3639
  /* style inject SSR */
3616
3640
 
3617
3641
  /* style inject shadow dom */
3618
3642
 
3619
- const __vue_component__$y = /*#__PURE__*/normalizeComponent({
3620
- render: __vue_render__$q,
3621
- staticRenderFns: __vue_staticRenderFns__$q
3622
- }, __vue_inject_styles__$q, __vue_script__$q, __vue_scope_id__$q, __vue_is_functional_template__$q, __vue_module_identifier__$q, false, createInjector, undefined, undefined);
3643
+ const __vue_component__$z = /*#__PURE__*/normalizeComponent({
3644
+ render: __vue_render__$r,
3645
+ staticRenderFns: __vue_staticRenderFns__$r
3646
+ }, __vue_inject_styles__$r, __vue_script__$r, __vue_scope_id__$r, __vue_is_functional_template__$r, __vue_module_identifier__$r, false, createInjector, undefined, undefined);
3623
3647
 
3624
- var SingleFilePreview = __vue_component__$y;
3648
+ var SingleFilePreview = __vue_component__$z;
3625
3649
 
3626
3650
  //
3627
- var script$p = {
3651
+ var script$q = {
3628
3652
  components: {
3629
3653
  Loader
3630
3654
  },
@@ -3707,10 +3731,10 @@ var script$p = {
3707
3731
  };
3708
3732
 
3709
3733
  /* script */
3710
- const __vue_script__$p = script$p;
3734
+ const __vue_script__$q = script$q;
3711
3735
  /* template */
3712
3736
 
3713
- var __vue_render__$p = function () {
3737
+ var __vue_render__$q = function () {
3714
3738
  var _vm = this;
3715
3739
 
3716
3740
  var _h = _vm.$createElement;
@@ -3832,10 +3856,10 @@ var __vue_render__$p = function () {
3832
3856
  })], 2)], 1);
3833
3857
  };
3834
3858
 
3835
- var __vue_staticRenderFns__$p = [];
3859
+ var __vue_staticRenderFns__$q = [];
3836
3860
  /* style */
3837
3861
 
3838
- const __vue_inject_styles__$p = function (inject) {
3862
+ const __vue_inject_styles__$q = function (inject) {
3839
3863
  if (!inject) return;
3840
3864
  inject("data-v-131a11b5_0", {
3841
3865
  source: ".multiple-file-preview{position:relative;display:flex;flex-direction:column;width:100%;height:100%;max-height:100%;overflow-y:auto;overflow-x:hidden;border-top-left-radius:2.5px;border-top-right-radius:2.5px;transition:background-color 150ms;scrollbar-color:#888 rgba(0,0,0,.2);scrollbar-width:4px}.multiple-file-preview::-webkit-scrollbar{width:4px}.multiple-file-preview .close-icon{color:#e74c3c;cursor:pointer;opacity:.9;transition:opacity .3s}.multiple-file-preview .close-icon:hover{opacity:1}.multiple-file-preview::-webkit-scrollbar-track{background-color:rgba(0,0,0,.2)}.multiple-file-preview::-webkit-scrollbar-thumb{transition-duration:.5s;background-color:#222}.multiple-file-preview::-webkit-scrollbar-thumb:hover{background-color:#555}.text-footer-invalid-format{color:#222;padding:10px}.text-footer-invalid-format h3{text-overflow:ellipsis;overflow:hidden;font-weight:500}.text-footer-invalid-format h4{text-overflow:ellipsis;overflow:hidden;font-size:.9rem}.text-footer-exclude-file{position:absolute;top:5px;right:5px;cursor:pointer;display:flex;justify-content:center;align-items:center;min-width:1rem;min-height:1rem;background-color:#fff;border-radius:50%}.text-footer-exclude-file svg{transition:color .2s;color:#e9594a}.text-footer-exclude-file svg:hover{color:#e74c3c}.file-preview{display:flex;width:100%;align-items:center;padding:5px 10px;transition:background-color 150ms}.file-preview:hover{background-color:rgba(0,0,0,.1)}.file-title{color:#222;display:flex;align-items:center;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding:4px 10px;background-color:#fff;border-radius:30px;display:inline-block}.file-title.red{color:#e74c3c;margin-right:5px}.file-title>svg{margin-right:5px;color:#333}.small-img{flex:1;margin:0 15px;display:flex;justify-content:center;align-items:center;position:relative}.small-img img{height:40px;cursor:pointer}.small-img .doc,.small-img .pdf{display:flex;justify-content:center;align-items:center;font-size:30px}.small-img .pdf{color:#e74c3c}.small-img .doc{color:#006bc9}.small-img .doc svg,.small-img .pdf svg{z-index:1}.small-img .doc::after,.small-img .pdf::after{content:\"\";position:absolute;bottom:2px;transform:translateY(2px);width:20px;height:20px;background-color:#fff}.img-container{padding:5px;border-radius:2.5px;background-color:rgba(0,0,0,.15);display:flex;justify-content:center;align-items:center}.delete-file{display:flex;justify-content:center;align-items:center;cursor:pointer}.delete-file>svg{font-size:1rem;color:#e74c3c}",
@@ -3846,26 +3870,26 @@ const __vue_inject_styles__$p = function (inject) {
3846
3870
  /* scoped */
3847
3871
 
3848
3872
 
3849
- const __vue_scope_id__$p = undefined;
3873
+ const __vue_scope_id__$q = undefined;
3850
3874
  /* module identifier */
3851
3875
 
3852
- const __vue_module_identifier__$p = undefined;
3876
+ const __vue_module_identifier__$q = undefined;
3853
3877
  /* functional template */
3854
3878
 
3855
- const __vue_is_functional_template__$p = false;
3879
+ const __vue_is_functional_template__$q = false;
3856
3880
  /* style inject SSR */
3857
3881
 
3858
3882
  /* style inject shadow dom */
3859
3883
 
3860
- const __vue_component__$x = /*#__PURE__*/normalizeComponent({
3861
- render: __vue_render__$p,
3862
- staticRenderFns: __vue_staticRenderFns__$p
3863
- }, __vue_inject_styles__$p, __vue_script__$p, __vue_scope_id__$p, __vue_is_functional_template__$p, __vue_module_identifier__$p, false, createInjector, undefined, undefined);
3884
+ const __vue_component__$y = /*#__PURE__*/normalizeComponent({
3885
+ render: __vue_render__$q,
3886
+ staticRenderFns: __vue_staticRenderFns__$q
3887
+ }, __vue_inject_styles__$q, __vue_script__$q, __vue_scope_id__$q, __vue_is_functional_template__$q, __vue_module_identifier__$q, false, createInjector, undefined, undefined);
3864
3888
 
3865
- var MultipleFilePreview = __vue_component__$x;
3889
+ var MultipleFilePreview = __vue_component__$y;
3866
3890
 
3867
3891
  //
3868
- var script$o = {
3892
+ var script$p = {
3869
3893
  components: {
3870
3894
  SingleFilePreview,
3871
3895
  MultipleFilePreview
@@ -4227,10 +4251,10 @@ var script$o = {
4227
4251
  };
4228
4252
 
4229
4253
  /* script */
4230
- const __vue_script__$o = script$o;
4254
+ const __vue_script__$p = script$p;
4231
4255
  /* template */
4232
4256
 
4233
- var __vue_render__$o = function () {
4257
+ var __vue_render__$p = function () {
4234
4258
  var _vm = this;
4235
4259
 
4236
4260
  var _h = _vm.$createElement;
@@ -4437,10 +4461,10 @@ var __vue_render__$o = function () {
4437
4461
  }) : _vm._e()], 1)])], 1);
4438
4462
  };
4439
4463
 
4440
- var __vue_staticRenderFns__$o = [];
4464
+ var __vue_staticRenderFns__$p = [];
4441
4465
  /* style */
4442
4466
 
4443
- const __vue_inject_styles__$o = function (inject) {
4467
+ const __vue_inject_styles__$p = function (inject) {
4444
4468
  if (!inject) return;
4445
4469
  inject("data-v-0a31a0c7_0", {
4446
4470
  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}.files-counter-2{transform:translate(-15px,28px);opacity:.9;position:absolute;display:flex;justify-content:center;align-items:center;color:#888;font-size:.8rem}.files-counter-2 svg{margin-left:5px}.files-counter-2:hover{opacity:1;text-decoration:underline}",
@@ -4451,23 +4475,23 @@ const __vue_inject_styles__$o = function (inject) {
4451
4475
  /* scoped */
4452
4476
 
4453
4477
 
4454
- const __vue_scope_id__$o = undefined;
4478
+ const __vue_scope_id__$p = undefined;
4455
4479
  /* module identifier */
4456
4480
 
4457
- const __vue_module_identifier__$o = undefined;
4481
+ const __vue_module_identifier__$p = undefined;
4458
4482
  /* functional template */
4459
4483
 
4460
- const __vue_is_functional_template__$o = false;
4484
+ const __vue_is_functional_template__$p = false;
4461
4485
  /* style inject SSR */
4462
4486
 
4463
4487
  /* style inject shadow dom */
4464
4488
 
4465
- const __vue_component__$w = /*#__PURE__*/normalizeComponent({
4466
- render: __vue_render__$o,
4467
- staticRenderFns: __vue_staticRenderFns__$o
4468
- }, __vue_inject_styles__$o, __vue_script__$o, __vue_scope_id__$o, __vue_is_functional_template__$o, __vue_module_identifier__$o, false, createInjector, undefined, undefined);
4489
+ const __vue_component__$x = /*#__PURE__*/normalizeComponent({
4490
+ render: __vue_render__$p,
4491
+ staticRenderFns: __vue_staticRenderFns__$p
4492
+ }, __vue_inject_styles__$p, __vue_script__$p, __vue_scope_id__$p, __vue_is_functional_template__$p, __vue_module_identifier__$p, false, createInjector, undefined, undefined);
4469
4493
 
4470
- var BtnFiles = __vue_component__$w;
4494
+ var BtnFiles = __vue_component__$x;
4471
4495
 
4472
4496
  //
4473
4497
  //
@@ -4475,7 +4499,7 @@ var BtnFiles = __vue_component__$w;
4475
4499
  //
4476
4500
  //
4477
4501
  //
4478
- var script$n = {
4502
+ var script$o = {
4479
4503
  props: {
4480
4504
  dictionary: {
4481
4505
  type: Object,
@@ -4486,10 +4510,10 @@ var script$n = {
4486
4510
  };
4487
4511
 
4488
4512
  /* script */
4489
- const __vue_script__$n = script$n;
4513
+ const __vue_script__$o = script$o;
4490
4514
  /* template */
4491
4515
 
4492
- var __vue_render__$n = function () {
4516
+ var __vue_render__$o = function () {
4493
4517
  var _vm = this;
4494
4518
 
4495
4519
  var _h = _vm.$createElement;
@@ -4513,31 +4537,31 @@ var __vue_render__$n = function () {
4513
4537
  })], 1);
4514
4538
  };
4515
4539
 
4516
- var __vue_staticRenderFns__$n = [];
4540
+ var __vue_staticRenderFns__$o = [];
4517
4541
  /* style */
4518
4542
 
4519
- const __vue_inject_styles__$n = undefined;
4543
+ const __vue_inject_styles__$o = undefined;
4520
4544
  /* scoped */
4521
4545
 
4522
- const __vue_scope_id__$n = undefined;
4546
+ const __vue_scope_id__$o = undefined;
4523
4547
  /* module identifier */
4524
4548
 
4525
- const __vue_module_identifier__$n = undefined;
4549
+ const __vue_module_identifier__$o = undefined;
4526
4550
  /* functional template */
4527
4551
 
4528
- const __vue_is_functional_template__$n = false;
4552
+ const __vue_is_functional_template__$o = false;
4529
4553
  /* style inject */
4530
4554
 
4531
4555
  /* style inject SSR */
4532
4556
 
4533
4557
  /* style inject shadow dom */
4534
4558
 
4535
- const __vue_component__$v = /*#__PURE__*/normalizeComponent({
4536
- render: __vue_render__$n,
4537
- staticRenderFns: __vue_staticRenderFns__$n
4538
- }, __vue_inject_styles__$n, __vue_script__$n, __vue_scope_id__$n, __vue_is_functional_template__$n, __vue_module_identifier__$n, false, undefined, undefined, undefined);
4559
+ const __vue_component__$w = /*#__PURE__*/normalizeComponent({
4560
+ render: __vue_render__$o,
4561
+ staticRenderFns: __vue_staticRenderFns__$o
4562
+ }, __vue_inject_styles__$o, __vue_script__$o, __vue_scope_id__$o, __vue_is_functional_template__$o, __vue_module_identifier__$o, false, undefined, undefined, undefined);
4539
4563
 
4540
- var BtnExpand = __vue_component__$v;
4564
+ var BtnExpand = __vue_component__$w;
4541
4565
 
4542
4566
  //
4543
4567
  //
@@ -4545,7 +4569,7 @@ var BtnExpand = __vue_component__$v;
4545
4569
  //
4546
4570
  //
4547
4571
  //
4548
- var script$m = {
4572
+ var script$n = {
4549
4573
  props: {
4550
4574
  dictionary: {
4551
4575
  type: Object,
@@ -4556,10 +4580,10 @@ var script$m = {
4556
4580
  };
4557
4581
 
4558
4582
  /* script */
4559
- const __vue_script__$m = script$m;
4583
+ const __vue_script__$n = script$n;
4560
4584
  /* template */
4561
4585
 
4562
- var __vue_render__$m = function () {
4586
+ var __vue_render__$n = function () {
4563
4587
  var _vm = this;
4564
4588
 
4565
4589
  var _h = _vm.$createElement;
@@ -4583,31 +4607,31 @@ var __vue_render__$m = function () {
4583
4607
  })], 1);
4584
4608
  };
4585
4609
 
4586
- var __vue_staticRenderFns__$m = [];
4610
+ var __vue_staticRenderFns__$n = [];
4587
4611
  /* style */
4588
4612
 
4589
- const __vue_inject_styles__$m = undefined;
4613
+ const __vue_inject_styles__$n = undefined;
4590
4614
  /* scoped */
4591
4615
 
4592
- const __vue_scope_id__$m = undefined;
4616
+ const __vue_scope_id__$n = undefined;
4593
4617
  /* module identifier */
4594
4618
 
4595
- const __vue_module_identifier__$m = undefined;
4619
+ const __vue_module_identifier__$n = undefined;
4596
4620
  /* functional template */
4597
4621
 
4598
- const __vue_is_functional_template__$m = false;
4622
+ const __vue_is_functional_template__$n = false;
4599
4623
  /* style inject */
4600
4624
 
4601
4625
  /* style inject SSR */
4602
4626
 
4603
4627
  /* style inject shadow dom */
4604
4628
 
4605
- const __vue_component__$u = /*#__PURE__*/normalizeComponent({
4606
- render: __vue_render__$m,
4607
- staticRenderFns: __vue_staticRenderFns__$m
4608
- }, __vue_inject_styles__$m, __vue_script__$m, __vue_scope_id__$m, __vue_is_functional_template__$m, __vue_module_identifier__$m, false, undefined, undefined, undefined);
4629
+ const __vue_component__$v = /*#__PURE__*/normalizeComponent({
4630
+ render: __vue_render__$n,
4631
+ staticRenderFns: __vue_staticRenderFns__$n
4632
+ }, __vue_inject_styles__$n, __vue_script__$n, __vue_scope_id__$n, __vue_is_functional_template__$n, __vue_module_identifier__$n, false, undefined, undefined, undefined);
4609
4633
 
4610
- var BtnStandardMessages = __vue_component__$u;
4634
+ var BtnStandardMessages = __vue_component__$v;
4611
4635
 
4612
4636
  var bind = function bind(fn, thisArg) {
4613
4637
  return function wrap() {
@@ -8522,7 +8546,7 @@ const standardMessages = {
8522
8546
  };
8523
8547
 
8524
8548
  //
8525
- var script$l = {
8549
+ var script$m = {
8526
8550
  mixins: [standardMessages],
8527
8551
  props: {
8528
8552
  hasStandardMessages: {
@@ -8736,7 +8760,161 @@ var script$l = {
8736
8760
  console.error("Erro ao inserir mensagem formatada: ", e);
8737
8761
  }
8738
8762
  }
8739
-
8763
+
8764
+ }
8765
+ };
8766
+
8767
+ /* script */
8768
+ const __vue_script__$m = script$m;
8769
+ /* template */
8770
+
8771
+ var __vue_render__$m = function () {
8772
+ var _vm = this;
8773
+
8774
+ var _h = _vm.$createElement;
8775
+
8776
+ var _c = _vm._self._c || _h;
8777
+
8778
+ return _vm.hasStandardMessages ? _c('div', {
8779
+ staticClass: "text-footer-hsm-container"
8780
+ }, [_c('div', {
8781
+ staticClass: "transition-selects"
8782
+ }, [_c('transition', {
8783
+ attrs: {
8784
+ "name": "fade",
8785
+ "mode": "out-in"
8786
+ }
8787
+ }, [_vm.formatted_messages_2.length && _vm.key_1 ? _c('div', [_c('v-select', {
8788
+ staticClass: "text-footer-v-select",
8789
+ style: "background-color: " + _vm.backgroundColor,
8790
+ attrs: {
8791
+ "appendToBody": "",
8792
+ "calculatePosition": _vm.calculateSelectPosition,
8793
+ "options": _vm.formatted_messages_2,
8794
+ "label": "value",
8795
+ "reduce": function (formatted_messages_2) {
8796
+ return formatted_messages_2.cod;
8797
+ }
8798
+ },
8799
+ on: {
8800
+ "input": _vm.inputSelectKey2
8801
+ },
8802
+ model: {
8803
+ value: _vm.key_2,
8804
+ callback: function ($$v) {
8805
+ _vm.key_2 = $$v;
8806
+ },
8807
+ expression: "key_2"
8808
+ }
8809
+ }, [_c('div', {
8810
+ attrs: {
8811
+ "slot": "no-options"
8812
+ },
8813
+ slot: "no-options"
8814
+ }, [_vm._v(" " + _vm._s(_vm.dictionary.msg_sem_resultados) + " ")])])], 1) : _vm.key_1 && _vm.loadingReq ? _c('div', {
8815
+ staticClass: "loader-select"
8816
+ }, [_c('VueLoader')], 1) : _vm._e()]), _vm._v(" "), _c('transition', {
8817
+ attrs: {
8818
+ "name": "fade",
8819
+ "mode": "out-in"
8820
+ }
8821
+ }, [_vm.formatted_messages_3.length && _vm.key_2 && _vm.formatted_messages_2.length && _vm.key_1 ? _c('div', {
8822
+ staticClass: "text-footer-select-03"
8823
+ }, [_c('v-select', {
8824
+ staticClass: "text-footer-v-select",
8825
+ style: "background-color: " + _vm.backgroundColor,
8826
+ attrs: {
8827
+ "appendToBody": "",
8828
+ "calculatePosition": _vm.calculateSelectPosition,
8829
+ "options": _vm.formatted_messages_3,
8830
+ "reduce": function (formatted_messages_3) {
8831
+ return formatted_messages_3.cod;
8832
+ },
8833
+ "label": "value",
8834
+ "clearable": false
8835
+ },
8836
+ on: {
8837
+ "input": function ($event) {
8838
+ return _vm.openMsg();
8839
+ }
8840
+ },
8841
+ model: {
8842
+ value: _vm.key_3,
8843
+ callback: function ($$v) {
8844
+ _vm.key_3 = $$v;
8845
+ },
8846
+ expression: "key_3"
8847
+ }
8848
+ }, [_c('div', {
8849
+ attrs: {
8850
+ "slot": "no-options"
8851
+ },
8852
+ slot: "no-options"
8853
+ }, [_vm._v(" " + _vm._s(_vm.dictionary.msg_sem_resultados) + " ")])])], 1) : _vm.key_2 && _vm.loadingReq ? _c('div', {
8854
+ staticClass: "loader-select"
8855
+ }, [_c('VueLoader')], 1) : _vm._e()])], 1)]) : _vm._e();
8856
+ };
8857
+
8858
+ var __vue_staticRenderFns__$m = [];
8859
+ /* style */
8860
+
8861
+ const __vue_inject_styles__$m = function (inject) {
8862
+ if (!inject) return;
8863
+ inject("data-v-7cd1c21b_0", {
8864
+ source: ".transition-selects{min-height:80px;display:flex;flex-direction:column;width:100%}.loader-select{position:relative;min-height:35px;background:#fff;width:100%;border:1px solid #ccc;border-radius:5px;z-index:1}.loading-message{background-color:#555!important}",
8865
+ map: undefined,
8866
+ media: undefined
8867
+ });
8868
+ };
8869
+ /* scoped */
8870
+
8871
+
8872
+ const __vue_scope_id__$m = undefined;
8873
+ /* module identifier */
8874
+
8875
+ const __vue_module_identifier__$m = undefined;
8876
+ /* functional template */
8877
+
8878
+ const __vue_is_functional_template__$m = false;
8879
+ /* style inject SSR */
8880
+
8881
+ /* style inject shadow dom */
8882
+
8883
+ const __vue_component__$u = /*#__PURE__*/normalizeComponent({
8884
+ render: __vue_render__$m,
8885
+ staticRenderFns: __vue_staticRenderFns__$m
8886
+ }, __vue_inject_styles__$m, __vue_script__$m, __vue_scope_id__$m, __vue_is_functional_template__$m, __vue_module_identifier__$m, false, createInjector, undefined, undefined);
8887
+
8888
+ var StandardMessages = __vue_component__$u;
8889
+
8890
+ //
8891
+ //
8892
+ //
8893
+ //
8894
+ //
8895
+ //
8896
+ //
8897
+ //
8898
+ //
8899
+ //
8900
+ //
8901
+ //
8902
+ //
8903
+ //
8904
+ //
8905
+ //
8906
+ //
8907
+ //
8908
+ //
8909
+ //
8910
+ //
8911
+ var script$l = {
8912
+ props: {
8913
+ dictionary: {
8914
+ type: Object,
8915
+ default: {},
8916
+ required: false
8917
+ }
8740
8918
  }
8741
8919
  };
8742
8920
 
@@ -8751,84 +8929,25 @@ var __vue_render__$l = function () {
8751
8929
 
8752
8930
  var _c = _vm._self._c || _h;
8753
8931
 
8754
- return _vm.hasStandardMessages ? _c('div', {
8755
- staticClass: "text-footer-hsm-container"
8756
- }, [_c('div', {
8757
- staticClass: "transition-selects"
8758
- }, [_c('transition', {
8759
- attrs: {
8760
- "name": "fade",
8761
- "mode": "out-in"
8762
- }
8763
- }, [_vm.formatted_messages_2.length && _vm.key_1 ? _c('div', [_c('v-select', {
8764
- staticClass: "text-footer-v-select",
8765
- style: "background-color: " + _vm.backgroundColor,
8932
+ return _c('div', {
8933
+ staticClass: "text-footer-actions--btn",
8766
8934
  attrs: {
8767
- "appendToBody": "",
8768
- "calculatePosition": _vm.calculateSelectPosition,
8769
- "options": _vm.formatted_messages_2,
8770
- "label": "value",
8771
- "reduce": function (formatted_messages_2) {
8772
- return formatted_messages_2.cod;
8773
- }
8935
+ "title": _vm.dictionary.title_screen_share
8774
8936
  },
8775
8937
  on: {
8776
- "input": _vm.inputSelectKey2
8777
- },
8778
- model: {
8779
- value: _vm.key_2,
8780
- callback: function ($$v) {
8781
- _vm.key_2 = $$v;
8782
- },
8783
- expression: "key_2"
8938
+ "click": function ($event) {
8939
+ return _vm.$emit('toggle-standard-messages');
8940
+ }
8784
8941
  }
8785
- }, [_c('div', {
8786
- attrs: {
8787
- "slot": "no-options"
8788
- },
8789
- slot: "no-options"
8790
- }, [_vm._v(" " + _vm._s(_vm.dictionary.msg_sem_resultados) + " ")])])], 1) : _vm.key_1 && _vm.loadingReq ? _c('div', {
8791
- staticClass: "loader-select"
8792
- }, [_c('VueLoader')], 1) : _vm._e()]), _vm._v(" "), _c('transition', {
8942
+ }, [_c('fa-icon', {
8793
8943
  attrs: {
8794
- "name": "fade",
8795
- "mode": "out-in"
8944
+ "icon": ['fas', 'desktop']
8796
8945
  }
8797
- }, [_vm.formatted_messages_3.length && _vm.key_2 && _vm.formatted_messages_2.length && _vm.key_1 ? _c('div', {
8798
- staticClass: "text-footer-select-03"
8799
- }, [_c('v-select', {
8800
- staticClass: "text-footer-v-select",
8801
- style: "background-color: " + _vm.backgroundColor,
8946
+ }), _vm._v(" "), _c('fa-icon', {
8802
8947
  attrs: {
8803
- "appendToBody": "",
8804
- "calculatePosition": _vm.calculateSelectPosition,
8805
- "options": _vm.formatted_messages_3,
8806
- "reduce": function (formatted_messages_3) {
8807
- return formatted_messages_3.cod;
8808
- },
8809
- "label": "value",
8810
- "clearable": false
8811
- },
8812
- on: {
8813
- "input": function ($event) {
8814
- return _vm.openMsg();
8815
- }
8816
- },
8817
- model: {
8818
- value: _vm.key_3,
8819
- callback: function ($$v) {
8820
- _vm.key_3 = $$v;
8821
- },
8822
- expression: "key_3"
8948
+ "icon": ['fas', 'share']
8823
8949
  }
8824
- }, [_c('div', {
8825
- attrs: {
8826
- "slot": "no-options"
8827
- },
8828
- slot: "no-options"
8829
- }, [_vm._v(" " + _vm._s(_vm.dictionary.msg_sem_resultados) + " ")])])], 1) : _vm.key_2 && _vm.loadingReq ? _c('div', {
8830
- staticClass: "loader-select"
8831
- }, [_c('VueLoader')], 1) : _vm._e()])], 1)]) : _vm._e();
8950
+ })], 1);
8832
8951
  };
8833
8952
 
8834
8953
  var __vue_staticRenderFns__$l = [];
@@ -8836,8 +8955,8 @@ var __vue_staticRenderFns__$l = [];
8836
8955
 
8837
8956
  const __vue_inject_styles__$l = function (inject) {
8838
8957
  if (!inject) return;
8839
- inject("data-v-7cd1c21b_0", {
8840
- source: ".transition-selects{min-height:80px;display:flex;flex-direction:column;width:100%}.loader-select{position:relative;min-height:35px;background:#fff;width:100%;border:1px solid #ccc;border-radius:5px;z-index:1}.loading-message{background-color:#555!important}",
8958
+ inject("data-v-098c0894_0", {
8959
+ source: ".text-footer-actions--btn[data-v-098c0894]{position:relative}.text-footer-actions--btn>svg[data-v-098c0894]:nth-child(1){font-size:1.2rem}.text-footer-actions--btn>svg[data-v-098c0894]:nth-child(2){font-size:.6rem;position:absolute;transform:translateY(-2px)}",
8841
8960
  map: undefined,
8842
8961
  media: undefined
8843
8962
  });
@@ -8845,7 +8964,7 @@ const __vue_inject_styles__$l = function (inject) {
8845
8964
  /* scoped */
8846
8965
 
8847
8966
 
8848
- const __vue_scope_id__$l = undefined;
8967
+ const __vue_scope_id__$l = "data-v-098c0894";
8849
8968
  /* module identifier */
8850
8969
 
8851
8970
  const __vue_module_identifier__$l = undefined;
@@ -8861,7 +8980,7 @@ const __vue_component__$t = /*#__PURE__*/normalizeComponent({
8861
8980
  staticRenderFns: __vue_staticRenderFns__$l
8862
8981
  }, __vue_inject_styles__$l, __vue_script__$l, __vue_scope_id__$l, __vue_is_functional_template__$l, __vue_module_identifier__$l, false, createInjector, undefined, undefined);
8863
8982
 
8864
- var StandardMessages = __vue_component__$t;
8983
+ var BtnScreenShare = __vue_component__$t;
8865
8984
 
8866
8985
  //
8867
8986
  //
@@ -8908,22 +9027,25 @@ var __vue_render__$k = function () {
8908
9027
  return _c('div', {
8909
9028
  staticClass: "text-footer-actions--btn",
8910
9029
  attrs: {
8911
- "title": _vm.dictionary.title_screen_share
9030
+ "title": _vm.dictionary.msg_baixar_todos_anexos
8912
9031
  },
8913
9032
  on: {
8914
9033
  "click": function ($event) {
8915
- return _vm.$emit('toggle-standard-messages');
9034
+ return _vm.$emit('click-trigger');
8916
9035
  }
8917
9036
  }
9037
+ }, [_c('span', {
9038
+ staticClass: "multiplos"
8918
9039
  }, [_c('fa-icon', {
8919
9040
  attrs: {
8920
- "icon": ['fas', 'desktop']
9041
+ "icon": ['fas', 'download']
8921
9042
  }
8922
9043
  }), _vm._v(" "), _c('fa-icon', {
9044
+ staticClass: "small",
8923
9045
  attrs: {
8924
- "icon": ['fas', 'share']
9046
+ "icon": ['fas', 'paperclip']
8925
9047
  }
8926
- })], 1);
9048
+ })], 1)]);
8927
9049
  };
8928
9050
 
8929
9051
  var __vue_staticRenderFns__$k = [];
@@ -8931,8 +9053,8 @@ var __vue_staticRenderFns__$k = [];
8931
9053
 
8932
9054
  const __vue_inject_styles__$k = function (inject) {
8933
9055
  if (!inject) return;
8934
- inject("data-v-098c0894_0", {
8935
- source: ".text-footer-actions--btn[data-v-098c0894]{position:relative}.text-footer-actions--btn>svg[data-v-098c0894]:nth-child(1){font-size:1.2rem}.text-footer-actions--btn>svg[data-v-098c0894]:nth-child(2){font-size:.6rem;position:absolute;transform:translateY(-2px)}",
9056
+ inject("data-v-402fcd8c_0", {
9057
+ source: ".multiplos[data-v-402fcd8c]{display:flex}.multiplos svg[data-v-402fcd8c]{font-size:.95rem}.multiplos svg.small[data-v-402fcd8c]{font-size:.7rem!important}",
8936
9058
  map: undefined,
8937
9059
  media: undefined
8938
9060
  });
@@ -8940,7 +9062,7 @@ const __vue_inject_styles__$k = function (inject) {
8940
9062
  /* scoped */
8941
9063
 
8942
9064
 
8943
- const __vue_scope_id__$k = "data-v-098c0894";
9065
+ const __vue_scope_id__$k = "data-v-402fcd8c";
8944
9066
  /* module identifier */
8945
9067
 
8946
9068
  const __vue_module_identifier__$k = undefined;
@@ -8956,7 +9078,7 @@ const __vue_component__$s = /*#__PURE__*/normalizeComponent({
8956
9078
  staticRenderFns: __vue_staticRenderFns__$k
8957
9079
  }, __vue_inject_styles__$k, __vue_script__$k, __vue_scope_id__$k, __vue_is_functional_template__$k, __vue_module_identifier__$k, false, createInjector, undefined, undefined);
8958
9080
 
8959
- var BtnScreenShare = __vue_component__$s;
9081
+ var BtnDownloadAllFiles = __vue_component__$s;
8960
9082
 
8961
9083
  //
8962
9084
  var script$j = {
@@ -8969,7 +9091,8 @@ var script$j = {
8969
9091
  RemainingCharacters,
8970
9092
  BtnStandardMessages,
8971
9093
  StandardMessages,
8972
- BtnScreenShare
9094
+ BtnScreenShare,
9095
+ BtnDownloadAllFiles
8973
9096
  },
8974
9097
  mixins: [mixin_1],
8975
9098
  props: {
@@ -9593,12 +9716,28 @@ var __vue_render__$j = function () {
9593
9716
  "message": _vm.message,
9594
9717
  "maxCharacters": _vm.textareaSettings.maxCharacters
9595
9718
  }
9596
- }), _vm._v(" "), _vm.buttons.hasFiles || _vm.buttons.hasAudio || _vm.buttons.hasExpand || _vm.formattedMessageSettings.hasStandardMessages || _vm.buttons.hasScreenShare ? _c('div', {
9719
+ }), _vm._v(" "), _vm.buttons.hasFiles || _vm.buttons.hasAudio || _vm.buttons.hasExpand || _vm.formattedMessageSettings.hasStandardMessages || _vm.buttons.hasScreenShare || _vm.buttons.hasDownloadAll ? _c('div', {
9597
9720
  staticClass: "text-footer-actions",
9598
9721
  class: {
9599
9722
  'outside-buttons': _vm.cssStyle.outsideButtons && !_vm.audioFile
9600
9723
  }
9601
- }, [_c('BtnScreenShare', {
9724
+ }, [_c('BtnDownloadAllFiles', {
9725
+ directives: [{
9726
+ name: "show",
9727
+ rawName: "v-show",
9728
+ value: _vm.buttons.hasDownloadAll && !_vm.audioFile,
9729
+ expression: "buttons.hasDownloadAll && !audioFile"
9730
+ }],
9731
+ ref: _vm.textId + "-download-files",
9732
+ attrs: {
9733
+ "dictionary": _vm.dictionary
9734
+ },
9735
+ on: {
9736
+ "click-trigger": function ($event) {
9737
+ return _vm.$emit('handle-download-files');
9738
+ }
9739
+ }
9740
+ }), _vm._v(" "), _c('BtnScreenShare', {
9602
9741
  directives: [{
9603
9742
  name: "show",
9604
9743
  rawName: "v-show",
@@ -9731,7 +9870,7 @@ var __vue_staticRenderFns__$j = [];
9731
9870
 
9732
9871
  const __vue_inject_styles__$j = function (inject) {
9733
9872
  if (!inject) return;
9734
- inject("data-v-649d74f4_0", {
9873
+ inject("data-v-ea7ce0e2_0", {
9735
9874
  source: ".toasted svg{margin-right:10px}.d-none{display:none}ul{list-style-type:none}.text-footer-container{display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;position:relative}.text-footer-container .text-footer{min-height:48px;box-shadow:0 3px 7px -2px rgba(0,0,0,.45);position:relative;display:flex;justify-content:center;align-items:center;border:1px solid #ccc;padding:5px 2px 5px 5px;border-radius:5px}.text-footer-container .text-footer.full{width:100%}.text-footer-container .text-footer.almostFull{width:95%}.text-footer-container .text-footer.medium{width:75%}.text-footer-container.bigger .text-footer{height:80px}.text-footer-container.bigger .text-footer>textarea{font-size:.875rem;height:75px;max-height:75px;min-height:75px}.text-footer-container textarea{margin:0 5px;border:unset;flex:1;resize:none;min-height:30px;max-height:60px;font-size:.875rem;font-family:inherit;background:inherit}.text-footer-container textarea:focus{outline:unset}.text-footer-container textarea::placeholder{font-size:.75rem}.text-footer-container .text-footer-audio{flex:1;display:flex;justify-content:center;align-items:center}.text-footer-container audio{flex:1;outline:unset;width:auto;height:38px}.text-footer-container .delete-audio{display:flex;justify-content:center;align-items:center;color:#e74c3c;transition:background .3s;border-radius:50%;font-size:1rem;padding:10px;cursor:pointer;margin:0 5px;width:31px;height:31px}.text-footer-container .delete-audio:hover{background-color:rgba(208,0,0,.2)}.text-footer-container .max-characters{font-size:.575rem;z-index:1;color:#444;position:relative;top:30px;left:-30px}.text-footer-container .max-characters.no-width{width:0}.text-footer-container .text-footer-actions{display:flex}.text-footer-container .text-footer-actions.outside-buttons{display:flex;align-items:center;justify-content:flex-end;position:absolute;top:-30px;right:35px;background-color:#fafafa}.text-footer-container .text-footer-actions .text-footer-actions--btn{display:flex;justify-content:center;align-items:center;color:#777;border-radius:50%;transition:background .3s;padding:10px;font-size:1rem;width:36px;height:36px;cursor:pointer;margin-right:2.5px}.text-footer-container .text-footer-actions .text-footer-actions--btn:last-child{margin-right:unset}.text-footer-container .text-footer-actions .text-footer-actions--btn:hover{background-color:rgba(0,0,0,.1)}.text-footer-container .text-footer-actions .text-footer-actions--btn.files-activated{background-color:rgba(0,0,0,.1)}.text-footer-container .text-footer-actions .text-footer-actions--btn.audio-activated{background-color:rgba(208,0,0,.7);color:#fff}.text-footer-container .text-footer-actions .text-footer-actions--btn.left-button{position:absolute;left:0}.text-footer-container .text-footer-hsm-container{margin:12px 0 7px 0}.text-footer-container .text-footer-hsm-container.full{width:100%}.text-footer-container .text-footer-hsm-container.almostFull{width:95%}.text-footer-container .text-footer-hsm-container.medium{width:75%}.text-footer-container .text-footer-hsm-container .text-footer-v-select{border-radius:5px;margin-bottom:5px}.text-footer-container .text-footer-hsm-container .text-footer-select-03{display:flex;align-items:center;flex:1;width:100%}.text-footer-container .text-footer-hsm-container .text-footer-select-03 .text-footer-v-select{flex:1}.text-footer-container .text-footer-hsm-container .text-footer-select-03 .text-footer--btn-select-03{transition-duration:.3s;user-select:none;cursor:pointer;box-shadow:inset 0 -3px rgba(0,0,0,.2);opacity:.9;border-radius:2.5px;display:flex;justify-content:center;align-items:center;margin-left:5px;margin-bottom:5px;background-color:#f7fe72;width:32px;height:32px}.text-footer-container .text-footer-hsm-container .text-footer-select-03 .text-footer--btn-select-03:hover{opacity:1}.text-footer-container .text-footer-hsm-container .text-footer-select-03 .text-footer--btn-select-03:active{opacity:1;box-shadow:inset 0 -1px rgba(0,0,0,.2);-webkit-transform:translateY(1px);-moz-transform:translateY(1px);-o-transform:translateY(1px);-ms-transform:translateY(1px);transform:translateY(1px)}.text-footer-container .text-footer-hsm-container .text-footer-select-03 .text-footer--btn-select-03 svg{font-size:1rem}.text-footer-container .text-footer-files-container{position:absolute;right:0;top:-55px;padding:5px;background-color:rgba(0,0,0,.4);border-radius:5px;display:flex;align-items:center;justify-content:space-between;z-index:1}.text-footer-container .text-footer-files-container.horizontal{right:-55px;flex-direction:column}.text-footer-container .text-footer-files-container .files-btn{transition-duration:.3s;transition-property:opacity;opacity:.8;cursor:pointer;display:flex;justify-content:center;align-items:center;border-radius:10px;padding:3px;width:40px;height:40px;font-size:1rem;color:#fff}.text-footer-container .text-footer-files-container .files-btn:hover{opacity:1}.text-footer-container .text-footer-files-container .files-btn svg{color:#fff}.text-footer-container .text-footer-files-container .files-btn.images{background-color:#9575cd;margin-right:5px}.text-footer-container .text-footer-files-container .files-btn.images.margin-bottom{margin-right:unset;margin-bottom:5px}.text-footer-container .text-footer-files-container .files-btn.docs{background-color:#7986cb}.text-footer-container .text-footer-files-container .files-btn.system{background-color:#49a349;margin-left:5px}.text-footer-container .text-footer-files-container .files-btn.both{font-size:.95rem;background-color:#5555ec;flex-direction:column}.text-footer-container .text-footer-files-container .files-btn.both svg:nth-child(1){transform:translateX(5px)}.text-footer-container .text-footer-files-container .files-btn.both svg:nth-child(2){transform:translateX(-5px)}.text-footer-container .text-footer-preview-container{width:100%;cursor:default;position:absolute;left:0;background-color:#f1f1f1;border:2px solid #ccc;border-bottom:unset;border-top-left-radius:2.5px;border-top-right-radius:2.5px}.text-footer-container .text-footer-preview-container.isDoc{top:-50px;width:100%;height:45px}.text-footer-container .text-footer-preview-container.isImg,.text-footer-container .text-footer-preview-container.isMultiple{top:-205px;width:100%;height:200px}.text-footer-container .text-footer-preview-container.isImg .text-footer-image-preview{height:170px}.text-footer-container .text-footer-preview-container.isError{top:-80px;width:100%;height:75px}.text-footer-container .text-footer-alt{margin-top:-12px;width:100%;padding:0 10px}.text-footer-container .text-footer-alt .text-footer-out-session{margin-top:12px}.text-footer-container .text-footer-alt .text-footer-sem-24h{font-size:.8rem;text-align:right;font-weight:600;letter-spacing:-.5px;color:#dd7f0c;margin-top:5px;position:absolute;right:0}.text-footer-container .text-footer-alt .sem-templates{margin-top:10px;font-size:.8rem;text-align:right;font-weight:600;letter-spacing:-.5px;color:#921e12}.text-footer-container .text-footer-alt .text-footer-templates{position:relative;width:100%}.text-footer-container .text-footer-alt .text-footer-templates .text-footer-group-selection{width:100%;display:flex;align-items:center}.text-footer-container .text-footer-alt .text-footer-templates .text-footer-group-selection h4{margin-right:5px}.text-footer-container .text-footer-alt .text-footer-templates .text-footer-group-selection .sm__select{flex:1}.vs__dropdown-menu{font-size:.85rem!important}.emoji-mart-anchor,.emoji-mart-emoji span{cursor:pointer!important}.emoji-mart{z-index:2!important}.emoji-mart-scroll{overflow-x:hidden}",
9736
9875
  map: undefined,
9737
9876
  media: undefined
@@ -9784,7 +9923,20 @@ var script$i = {
9784
9923
  required: true
9785
9924
  }
9786
9925
  },
9926
+
9927
+ mounted() {
9928
+ this.initFocus();
9929
+ },
9930
+
9787
9931
  methods: {
9932
+ initFocus() {
9933
+ this.$nextTick(() => {
9934
+ if (this.$refs["text-footer-template-message"] && this.$refs["text-footer-template-message"].$el) {
9935
+ this.$refs["text-footer-template-message"].$el.querySelector("textarea").focus();
9936
+ }
9937
+ });
9938
+ },
9939
+
9788
9940
  sendMessage() {
9789
9941
  this.$emit('click-trigger');
9790
9942
  },
@@ -9829,6 +9981,7 @@ var __vue_render__$i = function () {
9829
9981
  'tm-container': _vm.hasButton
9830
9982
  }
9831
9983
  }, [_c('TextFooter', {
9984
+ ref: "text-footer-template-message",
9832
9985
  attrs: {
9833
9986
  "textId": 'var_1',
9834
9987
  "width": "full",
@@ -10000,6 +10153,9 @@ var script$h = {
10000
10153
  this.selectedTemplate = this.templates[key];
10001
10154
  this.codTemplate = key;
10002
10155
  this.$emit('selected-template', key);
10156
+ this.$nextTick(() => {
10157
+ if (this.$root.$refs[`template-single-${this.identifier}`]) this.$root.$refs[`template-single-${this.identifier}`].handleInitialFocus();
10158
+ });
10003
10159
  } else {
10004
10160
  this.selectedTemplate = null;
10005
10161
  }
@@ -10007,6 +10163,10 @@ var script$h = {
10007
10163
  this.adjustOnSelect();
10008
10164
  },
10009
10165
 
10166
+ focusSelect() {
10167
+ if (this.$refs["template-v-select"] && this.$refs["template-v-select"].$el) this.$refs["template-v-select"].$el.querySelector("input").focus();
10168
+ },
10169
+
10010
10170
  selectIfIsUnique() {
10011
10171
  if (Object.keys(this.templates).length === 1) {
10012
10172
  for (let key in this.templates) {
@@ -10016,6 +10176,8 @@ var script$h = {
10016
10176
  this.adjustOnSelect();
10017
10177
  }
10018
10178
  }
10179
+
10180
+ if (!this.codTemplate) this.focusSelect();
10019
10181
  },
10020
10182
 
10021
10183
  selectIfHasContact24h() {
@@ -10109,6 +10271,7 @@ var __vue_render__$h = function () {
10109
10271
  'column': _vm.columnSelect
10110
10272
  }
10111
10273
  }, [_c('h4', [_vm._v(" Template: ")]), _vm._v(" "), _c('v-select', {
10274
+ ref: "template-v-select",
10112
10275
  staticClass: "tg-select",
10113
10276
  attrs: {
10114
10277
  "appendToBody": "",
@@ -10173,8 +10336,8 @@ var __vue_staticRenderFns__$h = [];
10173
10336
 
10174
10337
  const __vue_inject_styles__$h = function (inject) {
10175
10338
  if (!inject) return;
10176
- inject("data-v-5a97ed34_0", {
10177
- source: "*{box-sizing:border-box}.toasted svg{margin-right:10px}.d-none{display:none}ul{list-style-type:none}h1,h2,h3,h4,p{margin:0;padding:0}.tg-container{width:100%;max-width:800px;display:flex;flex-direction:column;overflow-x:hidden;overflow-y:auto}.tg-options{width:100%;display:flex}.tg-options.column{flex-direction:column}.tg-options h4{margin-right:5px}.tg-select{flex:1;height:34px;overflow:hidden}.tg-select .vs__dropdown-toggle{background-color:#fff;height:34px;overflow:hidden;display:flex;align-items:center}.tg-select .vs__selected-options{height:34px;overflow:hidden}.tg-select .vs__selected-options>span{white-space:nowrap;text-overflow:ellipsis;flex:1}.tg-select .vs__selected-options>input{flex-grow:0}.vs__dropdown-option{transition:background-color 150ms;white-space:normal}.vs__dropdown-option:nth-child(odd){background-color:#f1f1f1}.vs__dropdown-option--highlight,.vs__dropdown-option--selected,.vs__dropdown-option:active,.vs__dropdown-option:focus,.vs__dropdown-option:hover{background-color:#5897fb!important;color:#fff}.tg-component{width:100%}.ts-container{width:100%;display:flex;justify-content:space-between}.ts-content{--border-color:#CCC;--background-color:#DFF0D8;--input-background-color:#FFF;--input-border-default:#007BFF;--input-border-error:#E74C3C;--placeholder-color:#BBB;flex:2;font-size:.7rem;padding:10px 0}.ts-content footer,.ts-content header,.ts-content section{padding:3px 5px;background-color:var(--background-color)}.ts-content header,.ts-content section{border-right:1px solid var(--border-color);border-left:1px solid var(--border-color)}.ts-content header{border-top-left-radius:2.5px;border-top-right-radius:2.5px;border-top:1px solid var(--border-color)}.ts-content header{font-weight:550}.ts-content section{line-height:25px}.ts-content section.margin-bottom{border-bottom-left-radius:2.5px;border-bottom-right-radius:2.5px;border-bottom:1px solid var(--border-color)}.ts-content footer{border:1px solid var(--border-color);border-top:unset;border-bottom-left-radius:2.5px;border-bottom-right-radius:2.5px}.ts-content input{border:1px solid transparent;outline:0;font-size:.8rem;padding:2.5px 5px;background-color:var(--input-background-color)}.ts-content input::placeholder{color:var(--placeholder-color)}.ts-content input.active,.ts-content input:focus{border:1px solid var(--input-border-default)}.ts-content input.invalid{border:1px solid var(--input-border-error)!important}.ts-content__var{display:inline-block;position:relative}.ts-dropdown{margin:0;padding:0;position:absolute;top:19px;left:0;background:#eee;width:100%;z-index:1;transition:all 150ms;visibility:hidden;opacity:0;list-style-type:none;border:1px solid #444;border-top:unset}.ts-dropdown li{width:100%;opacity:.9;cursor:pointer;font-weight:550;padding:2px 5px;transition:background-color 150ms}.ts-dropdown li:focus,.ts-dropdown li:focus-within,.ts-dropdown li:hover{opacity:1;background-color:#555;color:#fff}.ts-dropdown.visible{visibility:visible;opacity:1}.tg-btn{width:40%;display:flex;justify-content:center;align-items:center}.tg-btn button{outline:unset;border:unset;display:block;min-width:180px;height:35px;padding:0 10px;font-weight:500;background-color:#007bff;color:#fff;transition-duration:.3s;user-select:none;cursor:pointer;box-shadow:inset 0 -2px rgba(0,0,0,.2);opacity:.9;border-radius:2.5px}.tg-btn button>svg{margin-right:5px;color:#003166}.tg-btn button:hover{opacity:1}.tg-btn button:active{opacity:1;box-shadow:inset 0 -1px rgba(0,0,0,.2);-webkit-transform:translateY(1px);-moz-transform:translateY(1px);-o-transform:translateY(1px);-ms-transform:translateY(1px);transform:translateY(1px)}.tg-btn button:active{opacity:1;box-shadow:inset 0 -1px rgba(0,0,0,.2);-webkit-transform:translateY(1px);-moz-transform:translateY(1px);-o-transform:translateY(1px);-ms-transform:translateY(1px);transform:translateY(1px)}.tg-btn button:active,.tg-btn button:focus{outline:unset}.tg-btn.small-btn{width:auto;margin-left:5px}.tg-btn.small-btn svg{margin-right:0}.tg-btn.small-btn button{min-width:35px;width:35px;padding:0;display:flex;justify-content:center;align-items:center}.tm-container{border:1px solid var(--border-color);border-radius:2.5px;display:flex}",
10339
+ inject("data-v-e3f5b41e_0", {
10340
+ source: "*{box-sizing:border-box}.toasted svg{margin-right:10px}.d-none{display:none}ul{list-style-type:none}h1,h2,h3,h4,p{margin:0;padding:0}.tg-container{width:100%;max-width:800px;display:flex;flex-direction:column;overflow-x:hidden;overflow-y:auto}.tg-options{width:100%;display:flex}.tg-options.column{flex-direction:column}.tg-options h4{margin-right:5px}.tg-select{flex:1;height:34px;overflow:hidden}.tg-select .vs__dropdown-toggle{background-color:#fff;height:34px;overflow:hidden;display:flex;align-items:center}.tg-select .vs__selected-options{height:34px;overflow:hidden}.tg-select .vs__selected-options>span{white-space:nowrap;text-overflow:ellipsis;flex:1}.tg-select .vs__selected-options>input{flex-grow:0}.vs__dropdown-option{transition:background-color 150ms;white-space:normal}.vs__dropdown-option:nth-child(odd){background-color:#f1f1f1}.vs__dropdown-option--highlight,.vs__dropdown-option--selected,.vs__dropdown-option:active,.vs__dropdown-option:focus,.vs__dropdown-option:hover{background-color:#5897fb!important;color:#fff}.tg-component{width:100%}.ts-container{width:100%;display:flex;justify-content:space-between}.ts-content{--border-color:#CCC;--background-color:#DFF0D8;--input-background-color:#FFF;--input-border-default:#007BFF;--input-border-error:#E74C3C;--placeholder-color:#BBB;flex:2;font-size:.7rem;padding:10px 0}.ts-content footer,.ts-content header,.ts-content section{padding:3px 5px;background-color:var(--background-color)}.ts-content header,.ts-content section{border-right:1px solid var(--border-color);border-left:1px solid var(--border-color)}.ts-content header{border-top-left-radius:2.5px;border-top-right-radius:2.5px;border-top:1px solid var(--border-color)}.ts-content header{font-weight:550}.ts-content section{line-height:25px}.ts-content section.margin-bottom{border-bottom-left-radius:2.5px;border-bottom-right-radius:2.5px;border-bottom:1px solid var(--border-color)}.ts-content footer{border:1px solid var(--border-color);border-top:unset;border-bottom-left-radius:2.5px;border-bottom-right-radius:2.5px}.ts-content input{border:1px solid transparent;outline:0;font-size:.8rem;padding:2.5px 5px;background-color:var(--input-background-color)}.ts-content input::placeholder{color:var(--placeholder-color)}.ts-content input.active,.ts-content input:focus{border:1px solid var(--input-border-default)}.ts-content input.invalid{border:1px solid var(--input-border-error)!important}.ts-content__var{display:inline-block;position:relative}.ts-dropdown{margin:0;padding:0;position:absolute;top:19px;left:0;background:#eee;width:100%;z-index:1;transition:all 150ms;visibility:hidden;opacity:0;list-style-type:none;border:1px solid #444;border-top:unset}.ts-dropdown li{width:100%;opacity:.9;cursor:pointer;font-weight:550;padding:2px 5px;transition:background-color 150ms}.ts-dropdown li:focus,.ts-dropdown li:focus-within,.ts-dropdown li:hover{opacity:1;background-color:#555;color:#fff}.ts-dropdown.visible{visibility:visible;opacity:1}.tg-btn{width:40%;display:flex;justify-content:center;align-items:center}.tg-btn button{border:unset;display:block;min-width:180px;height:35px;padding:0 10px;font-weight:500;background-color:#007bff;color:#fff;transition:transform .3s ease-in-out;user-select:none;cursor:pointer;box-shadow:inset 0 -2px rgba(0,0,0,.2);opacity:.9;border-radius:2.5px}.tg-btn button>svg{margin-right:5px;color:#003166}.tg-btn button:hover{opacity:1}.tg-btn button:active{opacity:1;box-shadow:inset 0 -1px rgba(0,0,0,.2);-webkit-transform:translateY(1px);-moz-transform:translateY(1px);-o-transform:translateY(1px);-ms-transform:translateY(1px);transform:translateY(1px)}.tg-btn button:active{opacity:1;box-shadow:inset 0 -1px rgba(0,0,0,.2);-webkit-transform:translateY(1px);-moz-transform:translateY(1px);-o-transform:translateY(1px);-ms-transform:translateY(1px);transform:translateY(1px)}.tg-btn button:active,.tg-btn button:focus{outline:2px solid #000}.tg-btn.small-btn{width:auto;margin:0 5px}.tg-btn.small-btn svg{margin-right:0}.tg-btn.small-btn button{min-width:35px;width:35px;padding:0;display:flex;justify-content:center;align-items:center}.tm-container{border:1px solid var(--border-color);border-radius:2.5px;display:flex}",
10178
10341
  map: undefined,
10179
10342
  media: undefined
10180
10343
  });
@@ -10712,7 +10875,7 @@ function gerarVariaveisAnexo(anexos, storeObj) {
10712
10875
  case "mp3":
10713
10876
  case "audio/mp3":
10714
10877
  case "aac":
10715
- tipoDoc = type;
10878
+ tipoDoc = type.startsWith("audio/") ? type : `audio/${type}`;
10716
10879
  docAnexo = `${dominio}/callcenter/docs.php?mku=${mku}`;
10717
10880
  nomeArquivo = name;
10718
10881
  audio = true;
@@ -10722,7 +10885,7 @@ function gerarVariaveisAnexo(anexos, storeObj) {
10722
10885
  case "video":
10723
10886
  case "mp4":
10724
10887
  case "m4v":
10725
- tipoDoc = type;
10888
+ tipoDoc = type.startsWith("video/") ? type : `video/${type}`;
10726
10889
  docAnexo = `${dominio}/callcenter/docs.php?mku=${mku}`;
10727
10890
  nomeArquivo = name;
10728
10891
  video = true;
@@ -10838,6 +11001,41 @@ const fileHandler = {
10838
11001
 
10839
11002
  setIcon() {
10840
11003
  this.icon = this.fileType === "pdf" ? ['fas', 'file-pdf'] : ['fas', 'file-alt'];
11004
+ },
11005
+
11006
+ downloadAllFilesHandler() {
11007
+ try {
11008
+ if (!this.$root.$refs.chatMessages || !this.$root.$refs.chatMessages.referenceSelector) return this.$emit("download-all");
11009
+ const container = document.querySelector(`${this.$root.$refs.chatMessages.referenceSelector}`);
11010
+ if (!container) return this.$emit("download-all");
11011
+ const currentFilesToDownload = container.querySelectorAll("a[download]");
11012
+ if (!currentFilesToDownload.length) return this.$emit("download-all", {
11013
+ status: 'erro',
11014
+ message: 'Sem anexos para fazer o download'
11015
+ });
11016
+ let index = 0;
11017
+
11018
+ const handleInterval = () => {
11019
+ if (index > currentFilesToDownload.length) return false;
11020
+ currentFilesToDownload[index] && currentFilesToDownload[index].click();
11021
+ index += 1;
11022
+ return true;
11023
+ };
11024
+
11025
+ let interval = setInterval(() => {
11026
+ const handler = handleInterval();
11027
+
11028
+ if (!handler) {
11029
+ clearInterval(interval);
11030
+ interval = 0;
11031
+ }
11032
+ }, 300);
11033
+ } catch (error) {
11034
+ console.error("Erro ao fazer o donwload de todos anexos");
11035
+ this.$toasted.global.defaultError({
11036
+ msg: error.message ? error.message : error
11037
+ });
11038
+ }
10841
11039
  }
10842
11040
 
10843
11041
  }
@@ -12393,38 +12591,7 @@ var __vue_render__$8 = function () {
12393
12591
 
12394
12592
  return _c('div', {
12395
12593
  staticClass: "mensagem-div-anexo"
12396
- }, [_c('transition-group', {
12397
- staticClass: "anexo-transition",
12398
- attrs: {
12399
- "name": "fade",
12400
- "mode": "out-in"
12401
- }
12402
- }, [_vm.imgErro ? _c('div', {
12403
- directives: [{
12404
- name: "tippy",
12405
- rawName: "v-tippy"
12406
- }],
12407
- key: "error-msg",
12408
- attrs: {
12409
- "content": _vm.imgMsgErro
12410
- }
12411
12594
  }, [_c('div', {
12412
- staticClass: "alert alert-danger",
12413
- attrs: {
12414
- "role": "alert"
12415
- }
12416
- }, [_c('fa-icon', {
12417
- attrs: {
12418
- "icon": ['fas', 'file-image']
12419
- }
12420
- }), _vm._v("\n " + _vm._s(_vm.dictionary.img_com_erro) + "\n ")], 1)]) : _vm._e(), _vm._v(" "), _vm.isLoading ? _c('Loader', {
12421
- key: "anexo-loader",
12422
- attrs: {
12423
- "small": true,
12424
- "slow": true
12425
- }
12426
- }) : _c('div', {
12427
- key: "anexo-mensagem",
12428
12595
  staticClass: "anexo-mensagem"
12429
12596
  }, [_vm.imageURL ? _c('img', {
12430
12597
  attrs: {
@@ -12436,101 +12603,133 @@ var __vue_render__$8 = function () {
12436
12603
  return _vm.showImage(_vm.imageURL);
12437
12604
  }
12438
12605
  }
12439
- }) : _vm._e(), _vm._v(" "), _vm.imageURL ? _c('div', {
12440
- staticClass: "anexos-links-container"
12441
- }, [_c('a', {
12442
- attrs: {
12443
- "href": "#"
12444
- },
12445
- on: {
12446
- "click": function ($event) {
12447
- $event.preventDefault();
12448
- return _vm.showImage(_vm.imageURL);
12449
- }
12450
- }
12451
- }, [_vm._v(" " + _vm._s(_vm.dictionary.titulo_visualizar_img) + " ")]), _vm._v(" "), _c('fa-icon', {
12606
+ }) : _vm.audio ? _c('audio', {
12452
12607
  attrs: {
12453
- "icon": ['fas', 'search-plus']
12454
- },
12455
- on: {
12456
- "click": function ($event) {
12457
- return _vm.showImage(_vm.imageURL);
12458
- }
12608
+ "controls": ""
12459
12609
  }
12460
- })], 1) : _vm.docURL ? _c('div', {
12461
- staticClass: "anexo-container"
12462
- }, [_vm.audio || _vm.video ? [_vm.audio ? _c('audio', {
12610
+ }, [_c('source', {
12463
12611
  attrs: {
12464
12612
  "src": _vm.docURL,
12465
- "controls": "",
12466
- "title": _vm.fileType + " - " + _vm.filename
12613
+ "type": _vm.fileType
12467
12614
  }
12468
- }, [_c('p', [_vm._v(" " + _vm._s(_vm.dictionary.msg_erro_audio) + " "), _c('a', {
12615
+ }), _vm._v("\n Sem suporte para o elemento audio\n ")]) : _vm.video ? _c('video', {
12469
12616
  attrs: {
12470
- "href": _vm.docURL,
12471
- "target": "_blank",
12472
- "rel": "noreferrer noopener"
12617
+ "controls": ""
12473
12618
  }
12474
- }, [_vm._v(" " + _vm._s(_vm.dictionary.msg_abrir_audio) + " ")])])]) : _vm._e(), _vm._v(" "), _vm.video ? _c('video', {
12619
+ }, [_c('source', {
12475
12620
  attrs: {
12476
12621
  "src": _vm.docURL,
12477
- "controls": "",
12478
- "title": _vm.fileType + " - " + _vm.filename
12622
+ "type": _vm.fileType
12479
12623
  }
12480
- }, [_c('p', [_vm._v(" " + _vm._s(_vm.dictionary.msg_erro_video) + " "), _vm.fileType != 'erro' ? _c('a', {
12624
+ }), _vm._v("\n Sem suporte para o elemento video\n ")]) : _vm.docURL ? _c('a', {
12625
+ staticClass: "default-doc",
12481
12626
  attrs: {
12482
12627
  "href": _vm.docURL,
12483
12628
  "target": "_blank",
12484
12629
  "rel": "noreferrer noopener"
12485
12630
  }
12486
- }, [_vm._v(" " + _vm._s(_vm.dictionary.msg_abrir_video) + " ")]) : _vm._e()])]) : _vm._e()] : [_vm.fileType != 'erro' ? _c('a', {
12487
- attrs: {
12488
- "href": _vm.docURL,
12489
- "target": "_blank",
12490
- "rel": "noreferrer noopener",
12491
- "title": _vm.fileType + " - " + _vm.filename
12492
- }
12493
12631
  }, [_c('fa-icon', {
12494
12632
  class: [_vm.iconClass],
12495
12633
  attrs: {
12496
12634
  "icon": _vm.icon
12497
12635
  }
12498
12636
  }), _vm._v(" "), _c('p', {
12637
+ attrs: {
12638
+ "title": _vm.filename
12639
+ },
12499
12640
  domProps: {
12500
12641
  "textContent": _vm._s(_vm.filename)
12501
12642
  }
12502
- })], 1) : _c('p', {
12503
- staticClass: "arquivo-erro",
12504
- attrs: {
12505
- "title": _vm.fileType + " - " + _vm.filename
12506
- }
12643
+ })], 1) : _c('span', {
12644
+ staticClass: "default-doc"
12507
12645
  }, [_c('fa-icon', {
12646
+ class: [_vm.iconClass ? _vm.iconClass : ''],
12508
12647
  attrs: {
12509
12648
  "icon": ['fas', 'file-alt']
12510
12649
  }
12511
- }), _vm._v("\n " + _vm._s(_vm.filename) + "\n ")], 1)]], 2) : _vm._e(), _vm._v(" "), _vm.imageURL ? _c('a', {
12650
+ }), _vm._v(" "), _c('p', {
12512
12651
  attrs: {
12513
- "href": _vm.imageURL,
12514
- "download": "" + _vm.filename,
12515
- "target": "_blank",
12516
- "rel": "noreferrer noopener"
12652
+ "title": _vm.filename
12653
+ },
12654
+ domProps: {
12655
+ "textContent": _vm._s(_vm.filename)
12656
+ }
12657
+ })], 1), _vm._v(" "), _c('div', {
12658
+ staticClass: "file-actions"
12659
+ }, [_vm.imageURL ? _c('span', {
12660
+ staticClass: "file-action-button",
12661
+ on: {
12662
+ "click": function ($event) {
12663
+ return _vm.showImage(_vm.imageURL);
12664
+ }
12517
12665
  }
12518
- }, [_vm._v(" " + _vm._s(_vm.dictionary.titulo_baixar_img) + " "), _c('fa-icon', {
12666
+ }, [_c('fa-icon', {
12667
+ directives: [{
12668
+ name: "tippy",
12669
+ rawName: "v-tippy"
12670
+ }],
12519
12671
  attrs: {
12520
- "icon": ['fas', 'download']
12672
+ "icon": ['fas', 'search-plus'],
12673
+ "content": "" + _vm.dictionary.titulo_visualizar_img
12521
12674
  }
12522
12675
  })], 1) : _vm._e(), _vm._v(" "), _vm.docURL ? _c('a', {
12676
+ directives: [{
12677
+ name: "tippy",
12678
+ rawName: "v-tippy"
12679
+ }],
12680
+ staticClass: "file-action-button",
12523
12681
  attrs: {
12524
12682
  "href": _vm.docURL,
12683
+ "target": "_blank",
12684
+ "rel": "noreferrer noopener",
12685
+ "content": "Visualizar anexo"
12686
+ }
12687
+ }, [_c('fa-icon', {
12688
+ attrs: {
12689
+ "icon": ['fas', 'search-plus']
12690
+ }
12691
+ })], 1) : _vm._e(), _vm._v(" "), _vm.imageURL || _vm.docURL ? _c('a', {
12692
+ directives: [{
12693
+ name: "tippy",
12694
+ rawName: "v-tippy"
12695
+ }],
12696
+ staticClass: "file-action-button",
12697
+ attrs: {
12698
+ "href": _vm.imageURL ? _vm.imageURL : _vm.docURL,
12525
12699
  "download": "" + _vm.filename,
12526
12700
  "target": "_blank",
12527
- "rel": "noreferrer noopener"
12701
+ "rel": "noreferrer noopener",
12702
+ "content": "Fazer o download do anexo"
12703
+ }
12704
+ }, [_c('fa-icon', {
12705
+ attrs: {
12706
+ "icon": ['fas', 'download']
12707
+ }
12708
+ })], 1) : _vm._e(), _vm._v(" "), _c('span', {
12709
+ directives: [{
12710
+ name: "tippy",
12711
+ rawName: "v-tippy"
12712
+ }],
12713
+ staticClass: "file-action-button",
12714
+ attrs: {
12715
+ "content": "Fazer download de todos anexos da tela"
12716
+ },
12717
+ on: {
12718
+ "click": _vm.downloadAllFilesHandler
12719
+ }
12720
+ }, [_c('fa-icon', {
12721
+ attrs: {
12722
+ "icon": ['fas', 'download']
12723
+ }
12724
+ }), _vm._v(" "), _c('fa-icon', {
12725
+ attrs: {
12726
+ "icon": ['fas', 'download']
12528
12727
  }
12529
- }, [_vm._v(" " + _vm._s(_vm.dictionary.titulo_baixar_doc) + " "), _c('fa-icon', {
12728
+ }), _vm._v(" "), _c('fa-icon', {
12530
12729
  attrs: {
12531
12730
  "icon": ['fas', 'download']
12532
12731
  }
12533
- })], 1) : _vm._e()])], 1)], 1);
12732
+ })], 1)])])]);
12534
12733
  };
12535
12734
 
12536
12735
  var __vue_staticRenderFns__$8 = [];
@@ -12538,8 +12737,8 @@ var __vue_staticRenderFns__$8 = [];
12538
12737
 
12539
12738
  const __vue_inject_styles__$8 = function (inject) {
12540
12739
  if (!inject) return;
12541
- inject("data-v-433c38d2_0", {
12542
- source: ".fade-enter-active[data-v-433c38d2],.fade-leave-active[data-v-433c38d2]{transition:opacity .5s}.fade-enter[data-v-433c38d2],.fade-leave-to[data-v-433c38d2]{opacity:0}.mensagem-div-anexo[data-v-433c38d2]{width:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;overflow:hidden}.anexo-container[data-v-433c38d2]{width:100%;margin-top:5px;overflow:hidden;display:flex;max-height:300px}.anexo-container .arquivo-erro[data-v-433c38d2],.anexo-container a[data-v-433c38d2]{padding:10px 15px 15px 15px;display:flex;justify-content:center;align-items:center}.anexo-container p[data-v-433c38d2]{text-overflow:ellipsis;overflow:hidden}.anexo-container .arquivo-erro[data-v-433c38d2],.anexo-container p[data-v-433c38d2]{margin:0;margin-left:15px;font-size:.9rem}.anexo-container svg[data-v-433c38d2]{font-size:2rem}.anexo-container audio[data-v-433c38d2]{outline:0;width:100%}.anexo-container video[data-v-433c38d2]{flex:1;width:100%;max-width:350px;cursor:pointer}.anexos-links-container[data-v-433c38d2]{width:100%;display:flex;justify-content:center;align-items:center}.anexos-links-container a[data-v-433c38d2]{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-433c38d2]{cursor:pointer}.mensagem-div-anexo img[data-v-433c38d2]{cursor:pointer;margin:10px 0;min-width:35px;width:100%;max-width:250px}.anexo-transition[data-v-433c38d2]{width:100%;height:100%}.anexo-mensagem[data-v-433c38d2]{display:flex;justify-content:center;align-items:center;flex-direction:column}.alert-danger[data-v-433c38d2]{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert[data-v-433c38d2]{position:relative;padding:.65rem 1.2rem;margin:5px 0;border:1px solid transparent;border-radius:.25rem;text-align:center}.alert svg[data-v-433c38d2]{font-size:1.025em;margin-right:2px}.pdf[data-v-433c38d2]{color:#e74c3c}.doc[data-v-433c38d2]{color:#006bc9}",
12740
+ inject("data-v-14bae430_0", {
12741
+ source: ".mensagem__principal .default-doc[data-v-14bae430]{background-color:rgba(255,255,255,.1)}.mensagem__outros .default-doc[data-v-14bae430]{background-color:rgba(100,100,100,.1)}.default-doc[data-v-14bae430]{display:flex;align-items:center;padding:10px;border-radius:5px;width:100%;max-width:100%}.default-doc svg[data-v-14bae430]{font-size:1.2rem;margin-right:5px}.default-doc p[data-v-14bae430]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.file-actions[data-v-14bae430]{display:flex;justify-content:flex-end;width:100%;padding:5px}.file-actions a[data-v-14bae430]{margin-right:0}.mensagem__principal .file-action-button[data-v-14bae430]{background-color:rgba(255,255,255,.1)}.mensagem__outros .file-action-button[data-v-14bae430]{background-color:rgba(100,100,100,.1)}.mensagem__principal .file-action-button[data-v-14bae430]:hover{background-color:rgba(255,255,255,.3)}.mensagem__outros .file-action-button[data-v-14bae430]:hover{background-color:rgba(100,100,100,.3)}.file-action-button[data-v-14bae430]{display:flex;justify-content:center;align-items:center;margin-left:12px;cursor:pointer;padding:5px;border-radius:5px;transition:background-color 150ms ease-in-out}.file-action-button a[data-v-14bae430]{margin:0}.fade-enter-active[data-v-14bae430],.fade-leave-active[data-v-14bae430]{transition:opacity .5s}.fade-enter[data-v-14bae430],.fade-leave-to[data-v-14bae430]{opacity:0}.mensagem-div-anexo[data-v-14bae430]{width:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;overflow:hidden}.anexo-container[data-v-14bae430]{width:100%;margin-top:5px;overflow:hidden;display:flex;max-height:300px}.anexo-container .arquivo-erro[data-v-14bae430],.anexo-container a[data-v-14bae430]{padding:10px 15px 15px 15px;display:flex;justify-content:center;align-items:center}.anexo-container p[data-v-14bae430]{text-overflow:ellipsis;overflow:hidden}.anexo-container .arquivo-erro[data-v-14bae430],.anexo-container p[data-v-14bae430]{margin:0;margin-left:15px;font-size:.9rem}.anexo-container svg[data-v-14bae430]{font-size:2rem}.anexo-mensagem audio[data-v-14bae430]{outline:0;width:100%;margin-bottom:5px}.anexo-mensagem video[data-v-14bae430]{flex:1;width:100%;max-width:350px;cursor:pointer;margin-bottom:5px}.anexos-links-container[data-v-14bae430]{width:100%;display:flex;justify-content:center;align-items:center}.anexos-links-container a[data-v-14bae430]{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-14bae430]{cursor:pointer}.mensagem-div-anexo img[data-v-14bae430]{cursor:pointer;margin:10px 0;min-width:35px;width:100%;max-width:250px}.anexo-transition[data-v-14bae430]{width:100%;height:100%}.anexo-mensagem[data-v-14bae430]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%}.alert-danger[data-v-14bae430]{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert[data-v-14bae430]{position:relative;padding:.65rem 1.2rem;margin:5px 0;border:1px solid transparent;border-radius:.25rem;text-align:center}.alert svg[data-v-14bae430]{font-size:1.025em;margin-right:2px}.pdf[data-v-14bae430]{color:#e74c3c}.doc[data-v-14bae430]{color:#006bc9}",
12543
12742
  map: undefined,
12544
12743
  media: undefined
12545
12744
  });
@@ -12547,7 +12746,7 @@ const __vue_inject_styles__$8 = function (inject) {
12547
12746
  /* scoped */
12548
12747
 
12549
12748
 
12550
- const __vue_scope_id__$8 = "data-v-433c38d2";
12749
+ const __vue_scope_id__$8 = "data-v-14bae430";
12551
12750
  /* module identifier */
12552
12751
 
12553
12752
  const __vue_module_identifier__$8 = undefined;
@@ -12918,7 +13117,11 @@ var script$5 = {
12918
13117
  InteratividadeFormulario,
12919
13118
  LinkPreview
12920
13119
  },
12921
- props: ["smartchannel", "messageIndex", "dictionary", "autor", "origem", "msg", "link", "anexo", "imgAnexo", "tipoDoc", "docAnexo", "nomeArquivo", "audio", "video", "horario", "status", "logo", "msgTooltip", "seq", "mapa", "histMsg", "erro", "msgErro", "origemExterna", "anexos", "dominio", "corMsg", "interatividade", "msgReply", "hasReply", "iniDialogo", "dialogoId", "dialogoOrigem", "expSessao"],
13120
+ props: ["smartchannel", "messageIndex", "dictionary", "autor", "origem", "msg", "link", "anexo", "imgAnexo", "tipoDoc", "docAnexo", "nomeArquivo", "audio", "video", "horario", "status", "logo", "msgTooltip", "seq", "mapa", "histMsg", "erro", "msgErro", "origemExterna", "anexos", "dominio", "corMsg", "interatividade", "msgReply", "hasReply", "iniDialogo", "dialogoId", "dialogoOrigem", "expSessao", "referenceSelector"],
13121
+
13122
+ created() {
13123
+ if (!this.$root.$refs.chatMessages) this.$root.$refs.chatMessages = this;
13124
+ },
12922
13125
 
12923
13126
  data() {
12924
13127
  return {
@@ -13206,7 +13409,10 @@ var __vue_render__$5 = function () {
13206
13409
  "dominio": _vm.dominio
13207
13410
  },
13208
13411
  on: {
13209
- "abrir-imagem": _vm.abrirImagem
13412
+ "abrir-imagem": _vm.abrirImagem,
13413
+ "download-all": function ($event) {
13414
+ return _vm.$emit('download-all');
13415
+ }
13210
13416
  }
13211
13417
  })], 1);
13212
13418
  }) : _vm._e(), _vm._v(" "), _vm.urlSticker ? _c('img', {
@@ -13451,7 +13657,7 @@ var __vue_staticRenderFns__$5 = [];
13451
13657
 
13452
13658
  const __vue_inject_styles__$5 = function (inject) {
13453
13659
  if (!inject) return;
13454
- inject("data-v-44a68ecf_0", {
13660
+ inject("data-v-4d7ba00c_0", {
13455
13661
  source: ":root{--message-color:#373737;--text-color:#FFF;--light:80;--threshold:60}.fade-enter-active,.fade-leave-active{transition:opacity .5s}.fade-enter,.fade-leave-to{opacity:0}.mensagem{padding:14px 7px;border-radius:5px;min-width:150px;min-height:60px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;position:relative;max-width:80%;margin-bottom:10px;font-size:.75rem;word-break:break-word;-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mensagem.max-w-60{max-width:60%}.mensagem.mapa{width:100%}.mensagem.hist-msg{animation:show 1s}.mensagem a{margin-right:5px;font-weight:550;color:inherit;text-decoration:none}.mensagem a:hover{text-decoration:underline}.message p{white-space:pre-wrap}.mensagem-anexo a,.mensagem-div-mapa a{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.reply{cursor:pointer;position:absolute;right:53px;bottom:5px;font-size:.6rem;color:#67a332;width:.9rem;height:.9rem;display:flex;justify-content:center;align-items:center;border-radius:50%;background-color:#fff}.reply svg{margin-top:-1px;margin-right:-1px}.reply-with-2-icons{right:30px}.check{cursor:pointer;position:absolute;right:10px;bottom:2px;font-size:.7rem}.check.visualizado,.check.visualizado svg{color:#006daa}.check.verde,.check.verde svg{color:#4f772d}.check.vermelho,.check.vermelho svg{color:#ba181b}.check.cinza,.check.cinza svg{color:#999}.check.preto,.check.preto svg{color:#666}.star{cursor:pointer;position:absolute;right:30px;bottom:2px;font-size:.4rem;width:11.2px}.default-stick-size{width:180px;height:auto}.horario-envio{margin-right:15px;font-size:.7rem;position:absolute;left:10px;bottom:2px}.autor-mensagem{position:absolute;font-size:.6rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;max-width:90%;font-weight:700;top:2px}.mensagem__principal{width:100%;display:flex;justify-content:flex-end}.mensagem__principal>.mensagem::after{content:\"\";width:0;height:0;position:absolute;border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px solid var(--message-color);bottom:5px;right:-10px;transform:rotate(-90deg)}.mensagem__principal>.mensagem{background-color:var(--message-color);color:var(--text-color)}.mensagem__principal>.mensagem .horario-envio{color:var(--text-color)}.mensagem__principal>.mensagem .autor-mensagem{right:5px;color:var(--text-color)}.mensagem__outros{width:100%;display:flex}.mensagem__outros>.mensagem{background-color:#fff;color:#333}.mensagem__outros>.mensagem::after{content:\"\";width:0;height:0;position:absolute;border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px solid #fff;bottom:5px;left:-10px;transform:rotate(90deg)}.mensagem__outros>.autor-mensagem{left:5px;color:#333}.mensagem-div-mapa{width:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;margin-bottom:5px}.msg-mapa{width:100%;min-height:225px;height:100%;box-sizing:initial}.msg-mapa img{max-width:none!important}.info-mapa{list-style-type:none}.info-mapa li.title{font-size:.85em}.info-mapa li.address,.info-mapa li.url{font-size:.85em}.info-mapa li.url{font-size:.85em}.tooltip-list{margin:0;padding:0;display:flex;flex-direction:column;justify-content:center;align-items:flex-start}",
13456
13662
  map: undefined,
13457
13663
  media: undefined