vue-intergrall-plugins 0.0.181 → 0.0.182

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.
@@ -11084,6 +11084,276 @@ var __vue_component__$f = __vue_component__$e;
11084
11084
 
11085
11085
  //
11086
11086
  var script$9 = {
11087
+ mixins: [mixin_1],
11088
+ props: {
11089
+ lista: {
11090
+ type: [Array, Object],
11091
+ required: true
11092
+ },
11093
+ titulo: {
11094
+ type: String,
11095
+ required: false
11096
+ }
11097
+ },
11098
+ methods: {
11099
+ away() {
11100
+ this.$emit("close");
11101
+ }
11102
+
11103
+ }
11104
+ };
11105
+
11106
+ /* script */
11107
+ const __vue_script__$9 = script$9;
11108
+ /* template */
11109
+
11110
+ var __vue_render__$9 = function () {
11111
+ var _vm = this;
11112
+
11113
+ var _h = _vm.$createElement;
11114
+
11115
+ var _c = _vm._self._c || _h;
11116
+
11117
+ return _c('div', {
11118
+ directives: [{
11119
+ name: "on-clickaway",
11120
+ rawName: "v-on-clickaway",
11121
+ value: _vm.away,
11122
+ expression: "away"
11123
+ }],
11124
+ staticClass: "interatividade-popup box-shadow"
11125
+ }, [_vm.titulo ? _c('div', {
11126
+ staticClass: "interatividade-popup-titulo"
11127
+ }, [_c('h1', {
11128
+ domProps: {
11129
+ "textContent": _vm._s(_vm.titulo)
11130
+ }
11131
+ })]) : _vm._e(), _vm._v(" "), _vm._l(_vm.lista, function (objItem, index) {
11132
+ return _c('div', {
11133
+ key: index,
11134
+ staticClass: "interatividade-popup-conteudo"
11135
+ }, [objItem.items && objItem.items.length ? _vm._l(objItem.items, function (item, indexItem) {
11136
+ return _c('div', {
11137
+ key: "" + index + indexItem,
11138
+ staticClass: "interatividade-popup-item"
11139
+ }, [item.title ? _c('p', {
11140
+ staticClass: "interatividade-popup-item-titulo",
11141
+ domProps: {
11142
+ "textContent": _vm._s(item.title)
11143
+ }
11144
+ }) : _vm._e(), _vm._v(" "), item.description ? _c('p', {
11145
+ staticClass: "interatividade-popup-item-desc",
11146
+ domProps: {
11147
+ "textContent": _vm._s(item.description)
11148
+ }
11149
+ }) : _vm._e()]);
11150
+ }) : _vm._e()], 2);
11151
+ })], 2);
11152
+ };
11153
+
11154
+ var __vue_staticRenderFns__$9 = [];
11155
+ /* style */
11156
+
11157
+ const __vue_inject_styles__$9 = function (inject) {
11158
+ if (!inject) return;
11159
+ inject("data-v-f5d7144e_0", {
11160
+ 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)}.interatividade-popup{position:absolute;top:-55px;left:-265px;width:250px;height:auto;max-height:300px;overflow-y:auto;overflow-x:hidden;background-color:#fff;border-radius:15px;color:#333;font-size:.875rem}.interatividade-popup-titulo h1{padding:4px 10px;background-color:#333;color:#fff;font-size:1.2em}.interatividade-popup-item{padding:10px;border-bottom:1px solid #d7d7d7}.interatividade-popup-item-desc{font-size:.9em;color:#767676}",
11161
+ map: undefined,
11162
+ media: undefined
11163
+ });
11164
+ };
11165
+ /* scoped */
11166
+
11167
+
11168
+ const __vue_scope_id__$9 = undefined;
11169
+ /* module identifier */
11170
+
11171
+ const __vue_module_identifier__$9 = undefined;
11172
+ /* functional template */
11173
+
11174
+ const __vue_is_functional_template__$9 = false;
11175
+ /* style inject SSR */
11176
+
11177
+ /* style inject shadow dom */
11178
+
11179
+ const __vue_component__$d = /*#__PURE__*/normalizeComponent({
11180
+ render: __vue_render__$9,
11181
+ staticRenderFns: __vue_staticRenderFns__$9
11182
+ }, __vue_inject_styles__$9, __vue_script__$9, __vue_scope_id__$9, __vue_is_functional_template__$9, __vue_module_identifier__$9, false, createInjector, undefined, undefined);
11183
+
11184
+ var InteratividadePopup = __vue_component__$d;
11185
+
11186
+ //
11187
+ var script$8 = {
11188
+ components: {
11189
+ InteratividadePopup
11190
+ },
11191
+
11192
+ data() {
11193
+ return {
11194
+ informacaoAdicional: [],
11195
+ informacao: []
11196
+ };
11197
+ },
11198
+
11199
+ props: {
11200
+ interatividade: {
11201
+ type: Object,
11202
+ required: true
11203
+ },
11204
+ dictionary: {
11205
+ type: Object,
11206
+ required: true
11207
+ }
11208
+ },
11209
+
11210
+ mounted() {
11211
+ if (this.validateInterativity()) {
11212
+ this.verifyInfoAditional();
11213
+ }
11214
+ },
11215
+
11216
+ methods: {
11217
+ validateInterativity() {
11218
+ try {
11219
+ if (this.interatividade.formulario && this.interatividade.formulario.length) {
11220
+ return true;
11221
+ }
11222
+ } catch (error) {
11223
+ return false;
11224
+ }
11225
+ },
11226
+
11227
+ verifyInfoAditional() {
11228
+ try {
11229
+ let {
11230
+ formulario
11231
+ } = this.interatividade;
11232
+ formulario = formulario ? formulario : [];
11233
+
11234
+ if (!formulario.length) {
11235
+ return;
11236
+ }
11237
+
11238
+ let foundInfosAdd = formulario.filter(f => f.TIPO_TEXTO > 999);
11239
+ let foundInfos = formulario.filter(f => f.TIPO_TEXTO < 1000);
11240
+
11241
+ if (foundInfos) {
11242
+ this.informacao = foundInfos.map(info => {
11243
+ if (info.TIPO_TEXTO == 1) {
11244
+ info.TEXTO = info.TEXTO == 'S' ? this.dictionary.msg_sim : this.dictionary.msg_nao;
11245
+ }
11246
+
11247
+ return info;
11248
+ });
11249
+ }
11250
+
11251
+ if (foundInfosAdd) {
11252
+ this.informacaoAdicional = foundInfosAdd;
11253
+ }
11254
+ } catch (e) {
11255
+ console.error("Erro ao pegar o objeto interatividade formulario");
11256
+ console.error(e);
11257
+ }
11258
+ }
11259
+
11260
+ }
11261
+ };
11262
+
11263
+ /* script */
11264
+ const __vue_script__$8 = script$8;
11265
+ /* template */
11266
+
11267
+ var __vue_render__$8 = function () {
11268
+ var _vm = this;
11269
+
11270
+ var _h = _vm.$createElement;
11271
+
11272
+ var _c = _vm._self._c || _h;
11273
+
11274
+ return _c('div', {
11275
+ staticClass: "interatividade"
11276
+ }, [_vm.informacao.length ? [_c('div', {
11277
+ staticClass: "interatividade-form-header"
11278
+ }, [_vm._v("\n " + _vm._s(_vm.dictionary.msg_abertura_reclamacao) + "\n ")]), _vm._v(" "), _c('div', {
11279
+ staticClass: "interatividade-form-body"
11280
+ }, [_vm._l(_vm.informacao, function (form) {
11281
+ return _c('div', {
11282
+ key: form.TIPO_TEXTO,
11283
+ staticClass: "interatividade-info-form"
11284
+ }, [form.TIPO_TEXTO < 1000 ? _c('p', {
11285
+ staticClass: "interatividade-titulo-form",
11286
+ domProps: {
11287
+ "textContent": _vm._s(form.DESC_TIPO_TEXTO)
11288
+ }
11289
+ }) : _vm._e(), _vm._v(" "), form.TIPO_TEXTO < 1000 ? _c('p', {
11290
+ staticClass: "interatividade-description-form",
11291
+ domProps: {
11292
+ "textContent": _vm._s(form.TEXTO)
11293
+ }
11294
+ }) : _vm._e()]);
11295
+ }), _vm._v(" "), _vm.informacaoAdicional.length ? _c('div', {
11296
+ staticClass: "interatividade-form-header"
11297
+ }, [_vm._v("\n " + _vm._s(_vm.dictionary.msg_info_adicional) + "\n ")]) : _vm._e(), _vm._v(" "), _c('div', {
11298
+ staticClass: "interatividade-form-body"
11299
+ }, _vm._l(_vm.informacaoAdicional, function (form) {
11300
+ return _c('div', {
11301
+ key: form.TIPO_TEXTO,
11302
+ staticClass: "interatividade-add-info-form"
11303
+ }, [_c('div', {
11304
+ staticClass: "divisor-form-info-aditional"
11305
+ }, [_c('div', {
11306
+ staticClass: "info-aditional"
11307
+ }, [form.TIPO_TEXTO > 999 ? _c('p', {
11308
+ staticClass: "interatividade-titulo-form",
11309
+ domProps: {
11310
+ "textContent": _vm._s(form.DESC_TIPO_TEXTO + ': ')
11311
+ }
11312
+ }) : _vm._e()]), _vm._v(" "), _c('div', {
11313
+ staticClass: "info-aditional"
11314
+ }, [form.TIPO_TEXTO > 999 ? _c('p', {
11315
+ staticClass: "interatividade-description-form",
11316
+ domProps: {
11317
+ "textContent": _vm._s(form.TEXTO)
11318
+ }
11319
+ }) : _vm._e()])])]);
11320
+ }), 0)], 2)] : _vm._e()], 2);
11321
+ };
11322
+
11323
+ var __vue_staticRenderFns__$8 = [];
11324
+ /* style */
11325
+
11326
+ const __vue_inject_styles__$8 = function (inject) {
11327
+ if (!inject) return;
11328
+ inject("data-v-7c3f68fa_0", {
11329
+ source: ".show-x-enter-active[data-v-7c3f68fa],.show-x-leave-enter[data-v-7c3f68fa]{opacity:1;transform:translateX(0);transition:all .2s linear}.show-x-enter[data-v-7c3f68fa],.show-x-leave-to[data-v-7c3f68fa]{opacity:0;transform:translateX(5%)}.divisor-form-info-aditional[data-v-7c3f68fa]{display:flex;align-items:center;justify-content:space-around}.info-aditional[data-v-7c3f68fa]{border-bottom:1px solid #ccc;width:49%}.interatividade-form-header[data-v-7c3f68fa]{background-color:#efefef;margin-top:5px;border-top-right-radius:10px;border-top-left-radius:10px;padding-left:10px;padding-right:10px;padding-top:5px;padding-bottom:5px;justify-content:space-between;display:flex;color:#333;font-weight:700;font-size:.9rem}.interatividade-form-body[data-v-7c3f68fa]{padding:0 10px;background:#fff;border-right:1px solid #efefef;border-left:1px solid #efefef;border-bottom-left-radius:10px;border-bottom-right-radius:10px;padding-bottom:10px}.interatividade[data-v-7c3f68fa]{margin:10px 0}.interatividade-titulo-form[data-v-7c3f68fa]{white-space:nowrap;text-overflow:ellipsis;font-weight:700;overflow:hidden;max-width:100%;margin:0;padding:0;padding-top:5px}.interatividade-description-form[data-v-7c3f68fa]{overflow:hidden;max-width:100%;margin:0;padding:0}.interatividade-lista[data-v-7c3f68fa]{width:100%;min-width:200px;border-radius:15px;background-color:#fff;color:#333;margin:10px 0}.interatividade-lista-conteudo[data-v-7c3f68fa]{padding:10px;border-bottom:1px solid #d7d7d7}.interatividade-lista-titulo[data-v-7c3f68fa]{font-weight:700;font-size:1.2em;margin-bottom:10px}.interatividade-lista-rodape[data-v-7c3f68fa]{color:#818181;margin-top:5px}.interatividade-lista-link[data-v-7c3f68fa]{width:100%;text-align:center;padding:10px;color:#006eff;cursor:pointer;transition:color .2s ease-in-out}.interatividade-lista-link[data-v-7c3f68fa]:hover{color:#00628f}",
11330
+ map: undefined,
11331
+ media: undefined
11332
+ });
11333
+ };
11334
+ /* scoped */
11335
+
11336
+
11337
+ const __vue_scope_id__$8 = "data-v-7c3f68fa";
11338
+ /* module identifier */
11339
+
11340
+ const __vue_module_identifier__$8 = undefined;
11341
+ /* functional template */
11342
+
11343
+ const __vue_is_functional_template__$8 = false;
11344
+ /* style inject SSR */
11345
+
11346
+ /* style inject shadow dom */
11347
+
11348
+ const __vue_component__$c = /*#__PURE__*/normalizeComponent({
11349
+ render: __vue_render__$8,
11350
+ staticRenderFns: __vue_staticRenderFns__$8
11351
+ }, __vue_inject_styles__$8, __vue_script__$8, __vue_scope_id__$8, __vue_is_functional_template__$8, __vue_module_identifier__$8, false, createInjector, undefined, undefined);
11352
+
11353
+ var InteratividadeFormulario = __vue_component__$c;
11354
+
11355
+ //
11356
+ var script$7 = {
11087
11357
  props: {
11088
11358
  anexo: {
11089
11359
  type: Object,
@@ -11167,10 +11437,10 @@ var script$9 = {
11167
11437
  };
11168
11438
 
11169
11439
  /* script */
11170
- const __vue_script__$9 = script$9;
11440
+ const __vue_script__$7 = script$7;
11171
11441
  /* template */
11172
11442
 
11173
- var __vue_render__$9 = function () {
11443
+ var __vue_render__$7 = function () {
11174
11444
  var _vm = this;
11175
11445
 
11176
11446
  var _h = _vm.$createElement;
@@ -11241,10 +11511,10 @@ var __vue_render__$9 = function () {
11241
11511
  })], 1)]], 2)], 1);
11242
11512
  };
11243
11513
 
11244
- var __vue_staticRenderFns__$9 = [];
11514
+ var __vue_staticRenderFns__$7 = [];
11245
11515
  /* style */
11246
11516
 
11247
- const __vue_inject_styles__$9 = function (inject) {
11517
+ const __vue_inject_styles__$7 = function (inject) {
11248
11518
  if (!inject) return;
11249
11519
  inject("data-v-037d5568_0", {
11250
11520
  source: ".fade-enter-active[data-v-037d5568],.fade-leave-active[data-v-037d5568]{transition:opacity .5s}.fade-enter[data-v-037d5568],.fade-leave-to[data-v-037d5568]{opacity:0}",
@@ -11255,26 +11525,26 @@ const __vue_inject_styles__$9 = function (inject) {
11255
11525
  /* scoped */
11256
11526
 
11257
11527
 
11258
- const __vue_scope_id__$9 = "data-v-037d5568";
11528
+ const __vue_scope_id__$7 = "data-v-037d5568";
11259
11529
  /* module identifier */
11260
11530
 
11261
- const __vue_module_identifier__$9 = undefined;
11531
+ const __vue_module_identifier__$7 = undefined;
11262
11532
  /* functional template */
11263
11533
 
11264
- const __vue_is_functional_template__$9 = false;
11534
+ const __vue_is_functional_template__$7 = false;
11265
11535
  /* style inject SSR */
11266
11536
 
11267
11537
  /* style inject shadow dom */
11268
11538
 
11269
- const __vue_component__$d = /*#__PURE__*/normalizeComponent({
11270
- render: __vue_render__$9,
11271
- staticRenderFns: __vue_staticRenderFns__$9
11272
- }, __vue_inject_styles__$9, __vue_script__$9, __vue_scope_id__$9, __vue_is_functional_template__$9, __vue_module_identifier__$9, false, createInjector, undefined, undefined);
11539
+ const __vue_component__$b = /*#__PURE__*/normalizeComponent({
11540
+ render: __vue_render__$7,
11541
+ staticRenderFns: __vue_staticRenderFns__$7
11542
+ }, __vue_inject_styles__$7, __vue_script__$7, __vue_scope_id__$7, __vue_is_functional_template__$7, __vue_module_identifier__$7, false, createInjector, undefined, undefined);
11273
11543
 
11274
- var CardAttachment = __vue_component__$d;
11544
+ var CardAttachment = __vue_component__$b;
11275
11545
 
11276
11546
  //
11277
- var script$8 = {
11547
+ var script$6 = {
11278
11548
  components: {
11279
11549
  CardAttachment
11280
11550
  },
@@ -11395,10 +11665,10 @@ var script$8 = {
11395
11665
  };
11396
11666
 
11397
11667
  /* script */
11398
- const __vue_script__$8 = script$8;
11668
+ const __vue_script__$6 = script$6;
11399
11669
  /* template */
11400
11670
 
11401
- var __vue_render__$8 = function () {
11671
+ var __vue_render__$6 = function () {
11402
11672
  var _vm = this;
11403
11673
 
11404
11674
  var _h = _vm.$createElement;
@@ -11508,10 +11778,10 @@ var __vue_render__$8 = function () {
11508
11778
  }), 0) : _vm._e()])], 1) : _vm._e();
11509
11779
  };
11510
11780
 
11511
- var __vue_staticRenderFns__$8 = [];
11781
+ var __vue_staticRenderFns__$6 = [];
11512
11782
  /* style */
11513
11783
 
11514
- const __vue_inject_styles__$8 = function (inject) {
11784
+ const __vue_inject_styles__$6 = function (inject) {
11515
11785
  if (!inject) return;
11516
11786
  inject("data-v-60eaca73_0", {
11517
11787
  source: ".fade-enter-active[data-v-60eaca73],.fade-leave-active[data-v-60eaca73]{transition:opacity .2s}.fade-enter[data-v-60eaca73],.fade-leave-to[data-v-60eaca73]{opacity:0}.card-cli[data-v-60eaca73],.card-ope[data-v-60eaca73]{display:flex;width:95%;margin:5px 0;position:relative}.card-cli.msgNova[data-v-60eaca73],.card-ope.msgNova[data-v-60eaca73]{margin-top:30px}.novas-mensagens[data-v-60eaca73]{position:absolute;top:-30px;width:100%;display:flex;justify-content:center;align-items:center;margin:2.5px 0;background-color:lighten(#fff249,15)}.card-cli .card[data-v-60eaca73]{border-left:3px solid #90b823}.card-ope[data-v-60eaca73]{align-self:flex-end;background-color:lighten(#007535,72)}.card-ope .card[data-v-60eaca73]{border-right:3px solid #007535}.card[data-v-60eaca73]{background-color:rgba(255,255,255,.9);overflow:hidden;width:100%;padding:2.5px 5px}.card p[data-v-60eaca73]{word-break:break-all}.card-header[data-v-60eaca73]{width:100%;border-bottom:1px solid #ddd;margin-bottom:5px;display:flex;justify-content:space-between}.card-header svg[data-v-60eaca73]{font-size:1rem}.card-canal[data-v-60eaca73]{flex:1;margin-right:10px}.card-datas[data-v-60eaca73]{display:flex;flex-direction:column;margin-right:10px}.card-data[data-v-60eaca73]{overflow:hidden;display:flex;align-content:center}.card-data span[data-v-60eaca73]{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.card-data svg[data-v-60eaca73]{margin-right:5px;color:#232323}.card-expand[data-v-60eaca73]{display:flex;justify-content:center;align-items:center;margin:2.5px;cursor:pointer;opacity:.8;transition:opacity 150ms}.card-expand[data-v-60eaca73]:hover{opacity:1}.card-footer[data-v-60eaca73]{margin-top:5px;border-top:1px solid #ddd;display:flex;flex-wrap:wrap}.card-chip[data-v-60eaca73]{font-size:.8rem;width:fit-content;border-radius:15px;transition:all 150ms ease-in-out;padding:2.5px 7px;color:#1f69c1;background-color:rgba(207,216,244,.6);margin-bottom:5px}.card-chip[data-v-60eaca73]:hover{background-color:#cfd8f4}.card-chip.orange[data-v-60eaca73]{color:#e14924;background-color:rgba(228,92,58,.15)}.card-chip.orange[data-v-60eaca73]:hover{background-color:rgba(228,92,58,.2)}.card-chip.yellow[data-v-60eaca73]{color:#f4a304;background-color:rgba(252,191,73,.15)}.card-chip.yellow[data-v-60eaca73]:hover{background-color:rgba(252,191,73,.2)}.card-chip.red[data-v-60eaca73]{color:#e74c3c;background-color:rgba(231,76,60,.2)}.card-chip.red[data-v-60eaca73]:hover{background-color:rgba(231,76,60,.25)}.card-anexo[data-v-60eaca73]{width:50px;height:50px;margin-right:5px;display:flex;justify-content:center;align-items:center}.anexo-item[data-v-60eaca73]{width:100%;height:100%;display:flex;justify-content:center;align-items:center;position:relative}.anexo-item .transition-anexo-item[data-v-60eaca73]{max-width:100%;max-height:100%}.anexo-item .req-loader[data-v-60eaca73]{position:absolute;top:calc(50% - 12.5px);right:calc(50% - 12.5px)}.anexo-item .transition-anexo-item img[data-v-60eaca73]{max-width:45px;max-height:45px}.anexo-icone[data-v-60eaca73]{opacity:.9;transition:opacity .2s;color:#222;cursor:pointer;display:flex;justify-content:center;align-items:center}.anexo-icone[data-v-60eaca73]:hover{opacity:1}.anexo-icone[data-v-60eaca73]:visited{color:inherit}svg[data-v-60eaca73]{font-size:30px;z-index:1}.anexo-icone.pdf[data-v-60eaca73]{position:relative}.anexo-icone.pdf svg[data-v-60eaca73]{color:#e74c3c}.anexo-icone.pdf[data-v-60eaca73]::after{content:\"\";position:absolute;bottom:2px;transform:translateY(2px);width:20px;height:20px;background-color:#fff}.anexo-icone.doc[data-v-60eaca73]{color:#15517f}.anexo-icone.doc[data-v-60eaca73]::after{content:\"\";position:absolute;width:20px;height:20px;background-color:#fff}.anexo-img[data-v-60eaca73]{display:flex;justify-content:center;align-items:center;width:100%;height:100%;overflow:hidden;background-color:rgba(0,0,0,.2);border-radius:2.5px;cursor:pointer;opacity:.9;transition:opacity 150ms}.anexo-img[data-v-60eaca73]:hover{opacity:1}.anexo-img img[data-v-60eaca73]{width:95%}",
@@ -11522,26 +11792,26 @@ const __vue_inject_styles__$8 = function (inject) {
11522
11792
  /* scoped */
11523
11793
 
11524
11794
 
11525
- const __vue_scope_id__$8 = "data-v-60eaca73";
11795
+ const __vue_scope_id__$6 = "data-v-60eaca73";
11526
11796
  /* module identifier */
11527
11797
 
11528
- const __vue_module_identifier__$8 = undefined;
11798
+ const __vue_module_identifier__$6 = undefined;
11529
11799
  /* functional template */
11530
11800
 
11531
- const __vue_is_functional_template__$8 = false;
11801
+ const __vue_is_functional_template__$6 = false;
11532
11802
  /* style inject SSR */
11533
11803
 
11534
11804
  /* style inject shadow dom */
11535
11805
 
11536
- const __vue_component__$b = /*#__PURE__*/normalizeComponent({
11537
- render: __vue_render__$8,
11538
- staticRenderFns: __vue_staticRenderFns__$8
11539
- }, __vue_inject_styles__$8, __vue_script__$8, __vue_scope_id__$8, __vue_is_functional_template__$8, __vue_module_identifier__$8, false, createInjector, undefined, undefined);
11806
+ const __vue_component__$9 = /*#__PURE__*/normalizeComponent({
11807
+ render: __vue_render__$6,
11808
+ staticRenderFns: __vue_staticRenderFns__$6
11809
+ }, __vue_inject_styles__$6, __vue_script__$6, __vue_scope_id__$6, __vue_is_functional_template__$6, __vue_module_identifier__$6, false, createInjector, undefined, undefined);
11540
11810
 
11541
- var __vue_component__$c = __vue_component__$b;
11811
+ var __vue_component__$a = __vue_component__$9;
11542
11812
 
11543
11813
  //
11544
- var script$7 = {
11814
+ var script$5 = {
11545
11815
  components: {
11546
11816
  Loader
11547
11817
  },
@@ -11623,10 +11893,10 @@ var script$7 = {
11623
11893
  };
11624
11894
 
11625
11895
  /* script */
11626
- const __vue_script__$7 = script$7;
11896
+ const __vue_script__$5 = script$5;
11627
11897
  /* template */
11628
11898
 
11629
- var __vue_render__$7 = function () {
11899
+ var __vue_render__$5 = function () {
11630
11900
  var _vm = this;
11631
11901
 
11632
11902
  var _h = _vm.$createElement;
@@ -11714,155 +11984,54 @@ var __vue_render__$7 = function () {
11714
11984
  "title": _vm.tipoDoc + " - " + _vm.nomeArquivo
11715
11985
  }
11716
11986
  }, [_c('fa-icon', {
11717
- attrs: {
11718
- "icon": this.icone
11719
- }
11720
- }), _vm._v(" "), _c('p', {
11721
- domProps: {
11722
- "textContent": _vm._s(_vm.nomeArquivo)
11723
- }
11724
- })], 1) : _c('p', {
11725
- staticClass: "arquivo-erro",
11726
- attrs: {
11727
- "title": _vm.tipoDoc + " - " + _vm.nomeArquivo
11728
- }
11729
- }, [_c('fa-icon', {
11730
- attrs: {
11731
- "icon": ['fas', 'file-alt']
11732
- }
11733
- }), _vm._v("\n " + _vm._s(_vm.nomeArquivo) + "\n ")], 1)]], 2) : _vm._e(), _vm._v(" "), _vm.imgAnexo ? _c('a', {
11734
- attrs: {
11735
- "href": _vm.imgAnexo,
11736
- "download": "" + _vm.nomeArquivo,
11737
- "target": "_blank",
11738
- "rel": "noreferrer noopener"
11739
- }
11740
- }, [_vm._v(" " + _vm._s(_vm.dictionary.titulo_baixar_img) + " "), _c('fa-icon', {
11741
- attrs: {
11742
- "icon": ['fas', 'download']
11743
- }
11744
- })], 1) : _vm._e(), _vm._v(" "), _vm.docAnexo ? _c('a', {
11745
- attrs: {
11746
- "href": _vm.docAnexo,
11747
- "download": "" + _vm.nomeArquivo,
11748
- "target": "_blank",
11749
- "rel": "noreferrer noopener"
11750
- }
11751
- }, [_vm._v(" " + _vm._s(_vm.dictionary.titulo_baixar_doc) + " "), _c('fa-icon', {
11752
- attrs: {
11753
- "icon": ['fas', 'download']
11754
- }
11755
- })], 1) : _vm._e()])], 1)], 1);
11756
- };
11757
-
11758
- var __vue_staticRenderFns__$7 = [];
11759
- /* style */
11760
-
11761
- const __vue_inject_styles__$7 = function (inject) {
11762
- if (!inject) return;
11763
- inject("data-v-23ebefcd_0", {
11764
- source: ".fade-enter-active[data-v-23ebefcd],.fade-leave-active[data-v-23ebefcd]{transition:opacity .5s}.fade-enter[data-v-23ebefcd],.fade-leave-to[data-v-23ebefcd]{opacity:0}.mensagem-div-anexo[data-v-23ebefcd]{width:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;overflow:hidden}.anexo-container[data-v-23ebefcd]{width:100%;margin-top:5px}.anexo-container .arquivo-erro[data-v-23ebefcd],.anexo-container a[data-v-23ebefcd]{padding:10px 15px 15px 15px;display:flex;justify-content:center;align-items:center}.anexo-container .arquivo-erro[data-v-23ebefcd],.anexo-container p[data-v-23ebefcd]{margin:0;margin-left:15px;font-size:.9rem}.anexo-container svg[data-v-23ebefcd]{font-size:2rem}.anexo-container audio[data-v-23ebefcd]{outline:0;width:100%}.anexo-container video[data-v-23ebefcd]{width:100%;max-width:350px;cursor:pointer}.anexos-links-container[data-v-23ebefcd]{width:100%;display:flex;justify-content:center;align-items:center}.anexos-links-container a[data-v-23ebefcd]{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-23ebefcd]{cursor:pointer}.mensagem-div-anexo img[data-v-23ebefcd]{cursor:pointer;margin:10px 0;min-width:35px;width:100%;max-width:250px}.anexo-transition[data-v-23ebefcd]{width:100%;height:100%}.anexo-mensagem[data-v-23ebefcd]{display:flex;justify-content:center;align-items:center;flex-direction:column}",
11765
- map: undefined,
11766
- media: undefined
11767
- });
11768
- };
11769
- /* scoped */
11770
-
11771
-
11772
- const __vue_scope_id__$7 = "data-v-23ebefcd";
11773
- /* module identifier */
11774
-
11775
- const __vue_module_identifier__$7 = undefined;
11776
- /* functional template */
11777
-
11778
- const __vue_is_functional_template__$7 = false;
11779
- /* style inject SSR */
11780
-
11781
- /* style inject shadow dom */
11782
-
11783
- const __vue_component__$a = /*#__PURE__*/normalizeComponent({
11784
- render: __vue_render__$7,
11785
- staticRenderFns: __vue_staticRenderFns__$7
11786
- }, __vue_inject_styles__$7, __vue_script__$7, __vue_scope_id__$7, __vue_is_functional_template__$7, __vue_module_identifier__$7, false, createInjector, undefined, undefined);
11787
-
11788
- var AnexoMensagem = __vue_component__$a;
11789
-
11790
- //
11791
- var script$6 = {
11792
- mixins: [mixin_1],
11793
- props: {
11794
- lista: {
11795
- type: [Array, Object],
11796
- required: true
11797
- },
11798
- titulo: {
11799
- type: String,
11800
- required: false
11801
- }
11802
- },
11803
- methods: {
11804
- away() {
11805
- this.$emit("close");
11806
- }
11807
-
11808
- }
11809
- };
11810
-
11811
- /* script */
11812
- const __vue_script__$6 = script$6;
11813
- /* template */
11814
-
11815
- var __vue_render__$6 = function () {
11816
- var _vm = this;
11817
-
11818
- var _h = _vm.$createElement;
11819
-
11820
- var _c = _vm._self._c || _h;
11821
-
11822
- return _c('div', {
11823
- directives: [{
11824
- name: "on-clickaway",
11825
- rawName: "v-on-clickaway",
11826
- value: _vm.away,
11827
- expression: "away"
11828
- }],
11829
- staticClass: "interatividade-popup box-shadow"
11830
- }, [_vm.titulo ? _c('div', {
11831
- staticClass: "interatividade-popup-titulo"
11832
- }, [_c('h1', {
11987
+ attrs: {
11988
+ "icon": this.icone
11989
+ }
11990
+ }), _vm._v(" "), _c('p', {
11833
11991
  domProps: {
11834
- "textContent": _vm._s(_vm.titulo)
11992
+ "textContent": _vm._s(_vm.nomeArquivo)
11835
11993
  }
11836
- })]) : _vm._e(), _vm._v(" "), _vm._l(_vm.lista, function (objItem, index) {
11837
- return _c('div', {
11838
- key: index,
11839
- staticClass: "interatividade-popup-conteudo"
11840
- }, [objItem.items && objItem.items.length ? _vm._l(objItem.items, function (item, indexItem) {
11841
- return _c('div', {
11842
- key: "" + index + indexItem,
11843
- staticClass: "interatividade-popup-item"
11844
- }, [item.title ? _c('p', {
11845
- staticClass: "interatividade-popup-item-titulo",
11846
- domProps: {
11847
- "textContent": _vm._s(item.title)
11848
- }
11849
- }) : _vm._e(), _vm._v(" "), item.description ? _c('p', {
11850
- staticClass: "interatividade-popup-item-desc",
11851
- domProps: {
11852
- "textContent": _vm._s(item.description)
11853
- }
11854
- }) : _vm._e()]);
11855
- }) : _vm._e()], 2);
11856
- })], 2);
11994
+ })], 1) : _c('p', {
11995
+ staticClass: "arquivo-erro",
11996
+ attrs: {
11997
+ "title": _vm.tipoDoc + " - " + _vm.nomeArquivo
11998
+ }
11999
+ }, [_c('fa-icon', {
12000
+ attrs: {
12001
+ "icon": ['fas', 'file-alt']
12002
+ }
12003
+ }), _vm._v("\n " + _vm._s(_vm.nomeArquivo) + "\n ")], 1)]], 2) : _vm._e(), _vm._v(" "), _vm.imgAnexo ? _c('a', {
12004
+ attrs: {
12005
+ "href": _vm.imgAnexo,
12006
+ "download": "" + _vm.nomeArquivo,
12007
+ "target": "_blank",
12008
+ "rel": "noreferrer noopener"
12009
+ }
12010
+ }, [_vm._v(" " + _vm._s(_vm.dictionary.titulo_baixar_img) + " "), _c('fa-icon', {
12011
+ attrs: {
12012
+ "icon": ['fas', 'download']
12013
+ }
12014
+ })], 1) : _vm._e(), _vm._v(" "), _vm.docAnexo ? _c('a', {
12015
+ attrs: {
12016
+ "href": _vm.docAnexo,
12017
+ "download": "" + _vm.nomeArquivo,
12018
+ "target": "_blank",
12019
+ "rel": "noreferrer noopener"
12020
+ }
12021
+ }, [_vm._v(" " + _vm._s(_vm.dictionary.titulo_baixar_doc) + " "), _c('fa-icon', {
12022
+ attrs: {
12023
+ "icon": ['fas', 'download']
12024
+ }
12025
+ })], 1) : _vm._e()])], 1)], 1);
11857
12026
  };
11858
12027
 
11859
- var __vue_staticRenderFns__$6 = [];
12028
+ var __vue_staticRenderFns__$5 = [];
11860
12029
  /* style */
11861
12030
 
11862
- const __vue_inject_styles__$6 = function (inject) {
12031
+ const __vue_inject_styles__$5 = function (inject) {
11863
12032
  if (!inject) return;
11864
- inject("data-v-f5d7144e_0", {
11865
- 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)}.interatividade-popup{position:absolute;top:-55px;left:-265px;width:250px;height:auto;max-height:300px;overflow-y:auto;overflow-x:hidden;background-color:#fff;border-radius:15px;color:#333;font-size:.875rem}.interatividade-popup-titulo h1{padding:4px 10px;background-color:#333;color:#fff;font-size:1.2em}.interatividade-popup-item{padding:10px;border-bottom:1px solid #d7d7d7}.interatividade-popup-item-desc{font-size:.9em;color:#767676}",
12033
+ inject("data-v-23ebefcd_0", {
12034
+ source: ".fade-enter-active[data-v-23ebefcd],.fade-leave-active[data-v-23ebefcd]{transition:opacity .5s}.fade-enter[data-v-23ebefcd],.fade-leave-to[data-v-23ebefcd]{opacity:0}.mensagem-div-anexo[data-v-23ebefcd]{width:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;overflow:hidden}.anexo-container[data-v-23ebefcd]{width:100%;margin-top:5px}.anexo-container .arquivo-erro[data-v-23ebefcd],.anexo-container a[data-v-23ebefcd]{padding:10px 15px 15px 15px;display:flex;justify-content:center;align-items:center}.anexo-container .arquivo-erro[data-v-23ebefcd],.anexo-container p[data-v-23ebefcd]{margin:0;margin-left:15px;font-size:.9rem}.anexo-container svg[data-v-23ebefcd]{font-size:2rem}.anexo-container audio[data-v-23ebefcd]{outline:0;width:100%}.anexo-container video[data-v-23ebefcd]{width:100%;max-width:350px;cursor:pointer}.anexos-links-container[data-v-23ebefcd]{width:100%;display:flex;justify-content:center;align-items:center}.anexos-links-container a[data-v-23ebefcd]{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-23ebefcd]{cursor:pointer}.mensagem-div-anexo img[data-v-23ebefcd]{cursor:pointer;margin:10px 0;min-width:35px;width:100%;max-width:250px}.anexo-transition[data-v-23ebefcd]{width:100%;height:100%}.anexo-mensagem[data-v-23ebefcd]{display:flex;justify-content:center;align-items:center;flex-direction:column}",
11866
12035
  map: undefined,
11867
12036
  media: undefined
11868
12037
  });
@@ -11870,26 +12039,26 @@ const __vue_inject_styles__$6 = function (inject) {
11870
12039
  /* scoped */
11871
12040
 
11872
12041
 
11873
- const __vue_scope_id__$6 = undefined;
12042
+ const __vue_scope_id__$5 = "data-v-23ebefcd";
11874
12043
  /* module identifier */
11875
12044
 
11876
- const __vue_module_identifier__$6 = undefined;
12045
+ const __vue_module_identifier__$5 = undefined;
11877
12046
  /* functional template */
11878
12047
 
11879
- const __vue_is_functional_template__$6 = false;
12048
+ const __vue_is_functional_template__$5 = false;
11880
12049
  /* style inject SSR */
11881
12050
 
11882
12051
  /* style inject shadow dom */
11883
12052
 
11884
- const __vue_component__$9 = /*#__PURE__*/normalizeComponent({
11885
- render: __vue_render__$6,
11886
- staticRenderFns: __vue_staticRenderFns__$6
11887
- }, __vue_inject_styles__$6, __vue_script__$6, __vue_scope_id__$6, __vue_is_functional_template__$6, __vue_module_identifier__$6, false, createInjector, undefined, undefined);
12053
+ const __vue_component__$8 = /*#__PURE__*/normalizeComponent({
12054
+ render: __vue_render__$5,
12055
+ staticRenderFns: __vue_staticRenderFns__$5
12056
+ }, __vue_inject_styles__$5, __vue_script__$5, __vue_scope_id__$5, __vue_is_functional_template__$5, __vue_module_identifier__$5, false, createInjector, undefined, undefined);
11888
12057
 
11889
- var InteratividadePopup = __vue_component__$9;
12058
+ var AnexoMensagem = __vue_component__$8;
11890
12059
 
11891
12060
  //
11892
- var script$5 = {
12061
+ var script$4 = {
11893
12062
  components: {
11894
12063
  InteratividadePopup
11895
12064
  },
@@ -11951,10 +12120,10 @@ var script$5 = {
11951
12120
  };
11952
12121
 
11953
12122
  /* script */
11954
- const __vue_script__$5 = script$5;
12123
+ const __vue_script__$4 = script$4;
11955
12124
  /* template */
11956
12125
 
11957
- var __vue_render__$5 = function () {
12126
+ var __vue_render__$4 = function () {
11958
12127
  var _vm = this;
11959
12128
 
11960
12129
  var _h = _vm.$createElement;
@@ -12020,182 +12189,13 @@ var __vue_render__$5 = function () {
12020
12189
  }) : _vm._e()])] : _vm._e()], 2);
12021
12190
  };
12022
12191
 
12023
- var __vue_staticRenderFns__$5 = [];
12024
- /* style */
12025
-
12026
- const __vue_inject_styles__$5 = function (inject) {
12027
- if (!inject) return;
12028
- inject("data-v-265335df_0", {
12029
- source: ".show-x-enter-active,.show-x-leave-enter{opacity:1;transform:translateX(0);transition:all .2s linear}.show-x-enter,.show-x-leave-to{opacity:0;transform:translateX(5%)}.interatividade-btn{width:100%;display:flex;justify-content:center;align-items:center;background-color:#fff;color:var(--message-color);padding:10px 12px;border-radius:5px;margin-bottom:10px}.interatividade-btn:nth-child(1){margin-top:10px}.interatividade-titulo{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;max-width:100%;margin:0;padding:0}.interatividade-lista{width:100%;min-width:200px;border-radius:15px;background-color:#fff;color:#333;margin:10px 0}.interatividade-lista-conteudo{padding:10px;border-bottom:1px solid #d7d7d7}.interatividade-lista-titulo{font-weight:700;font-size:1.2em;margin-bottom:10px}.interatividade-lista-rodape{color:#818181;margin-top:5px}.interatividade-lista-link{width:100%;text-align:center;padding:10px;color:#006eff;cursor:pointer;transition:color .2s ease-in-out}.interatividade-lista-link:hover{color:#00628f}",
12030
- map: undefined,
12031
- media: undefined
12032
- });
12033
- };
12034
- /* scoped */
12035
-
12036
-
12037
- const __vue_scope_id__$5 = undefined;
12038
- /* module identifier */
12039
-
12040
- const __vue_module_identifier__$5 = undefined;
12041
- /* functional template */
12042
-
12043
- const __vue_is_functional_template__$5 = false;
12044
- /* style inject SSR */
12045
-
12046
- /* style inject shadow dom */
12047
-
12048
- const __vue_component__$8 = /*#__PURE__*/normalizeComponent({
12049
- render: __vue_render__$5,
12050
- staticRenderFns: __vue_staticRenderFns__$5
12051
- }, __vue_inject_styles__$5, __vue_script__$5, __vue_scope_id__$5, __vue_is_functional_template__$5, __vue_module_identifier__$5, false, createInjector, undefined, undefined);
12052
-
12053
- var InteratividadeBotoes = __vue_component__$8;
12054
-
12055
- //
12056
- var script$4 = {
12057
- components: {
12058
- InteratividadePopup
12059
- },
12060
-
12061
- data() {
12062
- return {
12063
- informacaoAdicional: [],
12064
- informacao: []
12065
- };
12066
- },
12067
-
12068
- props: {
12069
- interatividade: {
12070
- type: Object,
12071
- required: true
12072
- },
12073
- dictionary: {
12074
- type: Object,
12075
- required: true
12076
- }
12077
- },
12078
-
12079
- mounted() {
12080
- if (this.validateInterativity()) {
12081
- this.verifyInfoAditional();
12082
- }
12083
- },
12084
-
12085
- methods: {
12086
- validateInterativity() {
12087
- try {
12088
- if (this.interatividade.formulario && this.interatividade.formulario.length) {
12089
- return true;
12090
- }
12091
- } catch (error) {
12092
- return false;
12093
- }
12094
- },
12095
-
12096
- verifyInfoAditional() {
12097
- try {
12098
- let {
12099
- formulario
12100
- } = this.interatividade;
12101
- formulario = formulario ? formulario : [];
12102
-
12103
- if (!formulario.length) {
12104
- return;
12105
- }
12106
-
12107
- let foundInfosAdd = formulario.filter(f => f.TIPO_TEXTO > 999);
12108
- let foundInfos = formulario.filter(f => f.TIPO_TEXTO < 1000);
12109
-
12110
- if (foundInfos) {
12111
- this.informacao = foundInfos.map(info => {
12112
- if (info.TIPO_TEXTO == 1) {
12113
- info.TEXTO = info.TEXTO == 'S' ? this.dictionary.msg_sim : this.dictionary.msg_nao;
12114
- }
12115
-
12116
- return info;
12117
- });
12118
- }
12119
-
12120
- if (foundInfosAdd) {
12121
- this.informacaoAdicional = foundInfosAdd;
12122
- }
12123
- } catch (e) {
12124
- console.error("Erro ao pegar o objeto interatividade formulario");
12125
- console.error(e);
12126
- }
12127
- }
12128
-
12129
- }
12130
- };
12131
-
12132
- /* script */
12133
- const __vue_script__$4 = script$4;
12134
- /* template */
12135
-
12136
- var __vue_render__$4 = function () {
12137
- var _vm = this;
12138
-
12139
- var _h = _vm.$createElement;
12140
-
12141
- var _c = _vm._self._c || _h;
12142
-
12143
- return _c('div', {
12144
- staticClass: "interatividade"
12145
- }, [_vm.informacao.length ? [_c('div', {
12146
- staticClass: "interatividade-form-header"
12147
- }, [_vm._v("\n " + _vm._s(_vm.dictionary.msg_abertura_reclamacao) + "\n ")]), _vm._v(" "), _c('div', {
12148
- staticClass: "interatividade-form-body"
12149
- }, [_vm._l(_vm.informacao, function (form) {
12150
- return _c('div', {
12151
- key: form.TIPO_TEXTO,
12152
- staticClass: "interatividade-info-form"
12153
- }, [form.TIPO_TEXTO < 1000 ? _c('p', {
12154
- staticClass: "interatividade-titulo-form",
12155
- domProps: {
12156
- "textContent": _vm._s(form.DESC_TIPO_TEXTO)
12157
- }
12158
- }) : _vm._e(), _vm._v(" "), form.TIPO_TEXTO < 1000 ? _c('p', {
12159
- staticClass: "interatividade-description-form",
12160
- domProps: {
12161
- "textContent": _vm._s(form.TEXTO)
12162
- }
12163
- }) : _vm._e()]);
12164
- }), _vm._v(" "), _vm.informacaoAdicional.length ? _c('div', {
12165
- staticClass: "interatividade-form-header"
12166
- }, [_vm._v("\n " + _vm._s(_vm.dictionary.msg_info_adicional) + "\n ")]) : _vm._e(), _vm._v(" "), _c('div', {
12167
- staticClass: "interatividade-form-body"
12168
- }, _vm._l(_vm.informacaoAdicional, function (form) {
12169
- return _c('div', {
12170
- key: form.TIPO_TEXTO,
12171
- staticClass: "interatividade-add-info-form"
12172
- }, [_c('div', {
12173
- staticClass: "divisor-form-info-aditional"
12174
- }, [_c('div', {
12175
- staticClass: "info-aditional"
12176
- }, [form.TIPO_TEXTO > 999 ? _c('p', {
12177
- staticClass: "interatividade-titulo-form",
12178
- domProps: {
12179
- "textContent": _vm._s(form.DESC_TIPO_TEXTO + ': ')
12180
- }
12181
- }) : _vm._e()]), _vm._v(" "), _c('div', {
12182
- staticClass: "info-aditional"
12183
- }, [form.TIPO_TEXTO > 999 ? _c('p', {
12184
- staticClass: "interatividade-description-form",
12185
- domProps: {
12186
- "textContent": _vm._s(form.TEXTO)
12187
- }
12188
- }) : _vm._e()])])]);
12189
- }), 0)], 2)] : _vm._e()], 2);
12190
- };
12191
-
12192
12192
  var __vue_staticRenderFns__$4 = [];
12193
12193
  /* style */
12194
12194
 
12195
12195
  const __vue_inject_styles__$4 = function (inject) {
12196
12196
  if (!inject) return;
12197
- inject("data-v-7c3f68fa_0", {
12198
- source: ".show-x-enter-active[data-v-7c3f68fa],.show-x-leave-enter[data-v-7c3f68fa]{opacity:1;transform:translateX(0);transition:all .2s linear}.show-x-enter[data-v-7c3f68fa],.show-x-leave-to[data-v-7c3f68fa]{opacity:0;transform:translateX(5%)}.divisor-form-info-aditional[data-v-7c3f68fa]{display:flex;align-items:center;justify-content:space-around}.info-aditional[data-v-7c3f68fa]{border-bottom:1px solid #ccc;width:49%}.interatividade-form-header[data-v-7c3f68fa]{background-color:#efefef;margin-top:5px;border-top-right-radius:10px;border-top-left-radius:10px;padding-left:10px;padding-right:10px;padding-top:5px;padding-bottom:5px;justify-content:space-between;display:flex;color:#333;font-weight:700;font-size:.9rem}.interatividade-form-body[data-v-7c3f68fa]{padding:0 10px;background:#fff;border-right:1px solid #efefef;border-left:1px solid #efefef;border-bottom-left-radius:10px;border-bottom-right-radius:10px;padding-bottom:10px}.interatividade[data-v-7c3f68fa]{margin:10px 0}.interatividade-titulo-form[data-v-7c3f68fa]{white-space:nowrap;text-overflow:ellipsis;font-weight:700;overflow:hidden;max-width:100%;margin:0;padding:0;padding-top:5px}.interatividade-description-form[data-v-7c3f68fa]{overflow:hidden;max-width:100%;margin:0;padding:0}.interatividade-lista[data-v-7c3f68fa]{width:100%;min-width:200px;border-radius:15px;background-color:#fff;color:#333;margin:10px 0}.interatividade-lista-conteudo[data-v-7c3f68fa]{padding:10px;border-bottom:1px solid #d7d7d7}.interatividade-lista-titulo[data-v-7c3f68fa]{font-weight:700;font-size:1.2em;margin-bottom:10px}.interatividade-lista-rodape[data-v-7c3f68fa]{color:#818181;margin-top:5px}.interatividade-lista-link[data-v-7c3f68fa]{width:100%;text-align:center;padding:10px;color:#006eff;cursor:pointer;transition:color .2s ease-in-out}.interatividade-lista-link[data-v-7c3f68fa]:hover{color:#00628f}",
12197
+ inject("data-v-265335df_0", {
12198
+ source: ".show-x-enter-active,.show-x-leave-enter{opacity:1;transform:translateX(0);transition:all .2s linear}.show-x-enter,.show-x-leave-to{opacity:0;transform:translateX(5%)}.interatividade-btn{width:100%;display:flex;justify-content:center;align-items:center;background-color:#fff;color:var(--message-color);padding:10px 12px;border-radius:5px;margin-bottom:10px}.interatividade-btn:nth-child(1){margin-top:10px}.interatividade-titulo{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;max-width:100%;margin:0;padding:0}.interatividade-lista{width:100%;min-width:200px;border-radius:15px;background-color:#fff;color:#333;margin:10px 0}.interatividade-lista-conteudo{padding:10px;border-bottom:1px solid #d7d7d7}.interatividade-lista-titulo{font-weight:700;font-size:1.2em;margin-bottom:10px}.interatividade-lista-rodape{color:#818181;margin-top:5px}.interatividade-lista-link{width:100%;text-align:center;padding:10px;color:#006eff;cursor:pointer;transition:color .2s ease-in-out}.interatividade-lista-link:hover{color:#00628f}",
12199
12199
  map: undefined,
12200
12200
  media: undefined
12201
12201
  });
@@ -12203,7 +12203,7 @@ const __vue_inject_styles__$4 = function (inject) {
12203
12203
  /* scoped */
12204
12204
 
12205
12205
 
12206
- const __vue_scope_id__$4 = "data-v-7c3f68fa";
12206
+ const __vue_scope_id__$4 = undefined;
12207
12207
  /* module identifier */
12208
12208
 
12209
12209
  const __vue_module_identifier__$4 = undefined;
@@ -12219,7 +12219,7 @@ const __vue_component__$7 = /*#__PURE__*/normalizeComponent({
12219
12219
  staticRenderFns: __vue_staticRenderFns__$4
12220
12220
  }, __vue_inject_styles__$4, __vue_script__$4, __vue_scope_id__$4, __vue_is_functional_template__$4, __vue_module_identifier__$4, false, createInjector, undefined, undefined);
12221
12221
 
12222
- var InteratividadeFormulario = __vue_component__$7;
12222
+ var InteratividadeBotoes = __vue_component__$7;
12223
12223
 
12224
12224
  var linkPrevue_umd_min = createCommonjsModule(function (module, exports) {
12225
12225
  (function(t,e){module.exports=e();})("undefined"!==typeof self?self:commonjsGlobal,(function(){return function(t){var e={};function r(n){if(e[n])return e[n].exports;var i=e[n]={i:n,l:!1,exports:{}};return t[n].call(i.exports,i,i.exports,r),i.l=!0,i.exports}return r.m=t,r.c=e,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n});},r.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0});},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)r.d(n,i,function(e){return t[e]}.bind(null,i));return n},r.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s="fb15")}({"0cfc":function(t,e,r){var n=r("81e7");"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=r("499e").default;i("4bf9c9d1",n,!0,{sourceMap:!1,shadowMode:!1});},"24fb":function(t,e,r){function n(t,e){var r=t[1]||"",n=t[3];if(!n)return r;if(e&&"function"===typeof btoa){var o=i(n),a=n.sources.map((function(t){return "/*# sourceURL=".concat(n.sourceRoot||"").concat(t," */")}));return [r].concat(a).concat([o]).join("\n")}return [r].join("\n")}function i(t){var e=btoa(unescape(encodeURIComponent(JSON.stringify(t)))),r="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(e);return "/*# ".concat(r," */")}t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var r=n(e,t);return e[2]?"@media ".concat(e[2]," {").concat(r,"}"):r})).join("")},e.i=function(t,r,n){"string"===typeof t&&(t=[[null,t,""]]);var i={};if(n)for(var o=0;o<this.length;o++){var a=this[o][0];null!=a&&(i[a]=!0);}for(var s=0;s<t.length;s++){var d=[].concat(t[s]);n&&i[d[0]]||(r&&(d[2]?d[2]="".concat(r," and ").concat(d[2]):d[2]=r),e.push(d));}},e};},"499e":function(t,e,r){function n(t,e){for(var r=[],n={},i=0;i<e.length;i++){var o=e[i],a=o[0],s=o[1],d=o[2],c=o[3],u={id:t+":"+i,css:s,media:d,sourceMap:c};n[a]?n[a].parts.push(u):r.push(n[a]={id:a,parts:[u]});}return r}r.r(e),r.d(e,"default",(function(){return v}));var i="undefined"!==typeof document;if("undefined"!==typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},a=i&&(document.head||document.getElementsByTagName("head")[0]),s=null,d=0,c=!1,u=function(){},l=null,f="data-vue-ssr-id",p="undefined"!==typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function v(t,e,r,i){c=r,l=i||{};var a=n(t,e);return h(a),function(e){for(var r=[],i=0;i<a.length;i++){var s=a[i],d=o[s.id];d.refs--,r.push(d);}e?(a=n(t,e),h(a)):a=[];for(i=0;i<r.length;i++){d=r[i];if(0===d.refs){for(var c=0;c<d.parts.length;c++)d.parts[c]();delete o[d.id];}}}}function h(t){for(var e=0;e<t.length;e++){var r=t[e],n=o[r.id];if(n){n.refs++;for(var i=0;i<n.parts.length;i++)n.parts[i](r.parts[i]);for(;i<r.parts.length;i++)n.parts.push(g(r.parts[i]));n.parts.length>r.parts.length&&(n.parts.length=r.parts.length);}else {var a=[];for(i=0;i<r.parts.length;i++)a.push(g(r.parts[i]));o[r.id]={id:r.id,refs:1,parts:a};}}}function m(){var t=document.createElement("style");return t.type="text/css",a.appendChild(t),t}function g(t){var e,r,n=document.querySelector("style["+f+'~="'+t.id+'"]');if(n){if(c)return u;n.parentNode.removeChild(n);}if(p){var i=d++;n=s||(s=m()),e=y.bind(null,n,i,!1),r=y.bind(null,n,i,!0);}else n=m(),e=x.bind(null,n),r=function(){n.parentNode.removeChild(n);};return e(t),function(n){if(n){if(n.css===t.css&&n.media===t.media&&n.sourceMap===t.sourceMap)return;e(t=n);}else r();}}var b=function(){var t=[];return function(e,r){return t[e]=r,t.filter(Boolean).join("\n")}}();function y(t,e,r,n){var i=r?"":n.css;if(t.styleSheet)t.styleSheet.cssText=b(e,i);else {var o=document.createTextNode(i),a=t.childNodes;a[e]&&t.removeChild(a[e]),a.length?t.insertBefore(o,a[e]):t.appendChild(o);}}function x(t,e){var r=e.css,n=e.media,i=e.sourceMap;if(n&&t.setAttribute("media",n),l.ssrId&&t.setAttribute(f,e.id),i&&(r+="\n/*# sourceURL="+i.sources[0]+" */",r+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(i))))+" */"),t.styleSheet)t.styleSheet.cssText=r;else {while(t.firstChild)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(r));}}},"57d8":function(t,e,r){var n=r("0cfc"),i=r.n(n);i.a;},"81e7":function(t,e,r){var n=r("24fb");e=n(!1),e.push([t.i,"@import url(https://fonts.googleapis.com/css?family=Hind+Siliguri:400,600);"]),e.push([t.i,".wrapper[data-v-b618d680]{overflow:auto;border-radius:7px 7px 7px 7px;background-color:#fff;box-shadow:0 14px 32px 0 rgba(0,0,0,.15)}.card-img[data-v-b618d680]{width:100%}.card-img img[data-v-b618d680]{width:100%;border-radius:7px 7px 0 0}img[data-v-b618d680]{vertical-align:middle;border-style:none}.card-info[data-v-b618d680]{border-radius:0 0 7px 7px;background-color:#fff}.card-text[data-v-b618d680]{width:80%;margin:0 auto;text-align:justify}.card-text h1[data-v-b618d680]{font-size:24px;color:#474747;margin:5px 0 5px 0}.card-text h1[data-v-b618d680],.card-text p[data-v-b618d680]{text-align:center;font-family:Hind Siliguri,sans-serif}.card-text p[data-v-b618d680]{color:#8d8d8d;font-size:15px;overflow:hidden;margin:0}.card-btn[data-v-b618d680]{margin:1em 0 1em 0;position:relative;text-align:center}.card-btn a[data-v-b618d680]{border-radius:2em;font-family:Hind Siliguri,sans-serif;font-size:14px;letter-spacing:.1em;color:#fff;background-color:#ffa9be;padding:10px 20px 10px 20px;text-align:center;display:inline-block;text-decoration:none!important;transition:all .2s ease-in-out}.card-btn a[data-v-b618d680]:hover{background-color:#ff8fab}.spinner[data-v-b618d680]{margin-top:40%;margin-left:45%;height:28px;width:28px;-webkit-animation:rotate-data-v-b618d680 .8s linear infinite;animation:rotate-data-v-b618d680 .8s linear infinite;border:5px solid #868686;border-right-color:transparent;border-radius:50%}@-webkit-keyframes rotate-data-v-b618d680{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes rotate-data-v-b618d680{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}",""]),t.exports=e;},8875:function(t,e,r){var n,i,o;(function(r,a){i=[],n=a,o="function"===typeof n?n.apply(e,i):n,void 0===o||(t.exports=o);})("undefined"!==typeof self&&self,(function(){function t(){var e=Object.getOwnPropertyDescriptor(document,"currentScript");if(!e&&"currentScript"in document&&document.currentScript)return document.currentScript;if(e&&e.get!==t&&document.currentScript)return document.currentScript;try{throw new Error}catch(p){var r,n,i,o=/.*at [^(]*\((.*):(.+):(.+)\)$/gi,a=/@([^@]*):(\d+):(\d+)\s*$/gi,s=o.exec(p.stack)||a.exec(p.stack),d=s&&s[1]||!1,c=s&&s[2]||!1,u=document.location.href.replace(document.location.hash,""),l=document.getElementsByTagName("script");d===u&&(r=document.documentElement.outerHTML,n=new RegExp("(?:[^\\n]+?\\n){0,"+(c-2)+"}[^<]*<script>([\\d\\D]*?)<\\/script>[\\d\\D]*","i"),i=r.replace(n,"$1").trim());for(var f=0;f<l.length;f++){if("interactive"===l[f].readyState)return l[f];if(l[f].src===d)return l[f];if(d===u&&l[f].innerHTML&&l[f].innerHTML.trim()===i)return l[f]}return null}}return t}));},fb15:function(t,e,r){if(r.r(e),"undefined"!==typeof window){var n=window.document.currentScript,i=r("8875");n=i(),"currentScript"in document||Object.defineProperty(document,"currentScript",{get:i});var o=n&&n.src.match(/(.+\/)[^/]+\.js(\?.*)?$/);o&&(r.p=o[1]);}var a=function(){var t=this,e=t.$createElement,r=t._self._c||e;return r("div",[!t.response&&t.validUrl?r("div",{style:{width:t.cardWidth},attrs:{id:"loader-container"}},[t._t("loading",[r("div",{staticClass:"spinner"})])],2):t._e(),t.response?r("div",[t._t("default",[r("div",{staticClass:"wrapper",style:{width:t.cardWidth}},[r("div",{staticClass:"card-img"},[r("img",{attrs:{src:t.response.image}})]),r("div",{staticClass:"card-info"},[r("div",{staticClass:"card-text"},[r("h1",[t._v(t._s(t.response.title))]),r("p",[t._v(t._s(t.response.description))])]),r("div",{staticClass:"card-btn"},[t.showButton?r("a",{attrs:{href:"javascript:;"},on:{click:t.viewMore}},[t._v("View More")]):t._e()])])])],{img:t.response.image,title:t.response.title,description:t.response.description,url:t.url})],2):t._e()])},s=[],d={name:"link-prevue",props:{url:{type:String,default:""},cardWidth:{type:String,default:"400px"},onButtonClick:{type:Function,default:void 0},showButton:{type:Boolean,default:!0},apiUrl:{type:String,default:"https://link-prevue-api-v2.herokuapp.com/preview/"}},watch:{url:function(){this.response=null,this.getLinkPreview();}},created:function(){this.getLinkPreview();},data:function(){return {response:null,validUrl:!1}},methods:{viewMore:function(){if(void 0!==this.onButtonClick)this.onButtonClick(this.response);else {var t=window.open(this.url,"_blank");t.focus();}},isValidUrl:function(t){var e=/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_+.~#?&//=]*)/;return this.validUrl=e.test(t),this.validUrl},getLinkPreview:function(){var t=this;this.isValidUrl(this.url)&&this.httpRequest((function(e){t.response=JSON.parse(e);}),(function(){t.response=null,t.validUrl=!1;}));},httpRequest:function(t,e){var r=new XMLHttpRequest,n="url="+this.url;r.open("POST",this.apiUrl,!0),r.setRequestHeader("Content-type","application/x-www-form-urlencoded"),r.onreadystatechange=function(){4===r.readyState&&200===r.status&&t(r.responseText),4===r.readyState&&500===r.status&&e();},r.send(n);}}},c=d;r("57d8");function u(t,e,r,n,i,o,a,s){var d,c="function"===typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=r,c._compiled=!0),n&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),a?(d=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a);},c._ssrRegister=d):i&&(d=s?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot);}:i),d)if(c.functional){c._injectStyles=d;var u=c.render;c.render=function(t,e){return d.call(e),u(t,e)};}else {var l=c.beforeCreate;c.beforeCreate=l?[].concat(l,d):[d];}return {exports:t,options:c}}var l=u(c,a,s,!1,null,"b618d680",null),f=l.exports,p=f;e["default"]=p;}})}));
@@ -40561,7 +40561,8 @@ var components = /*#__PURE__*/Object.freeze({
40561
40561
  TextFooter: TextFooter,
40562
40562
  ExpandTextarea: __vue_component__$j,
40563
40563
  Card: __vue_component__$f,
40564
- CardMessages: __vue_component__$c,
40564
+ InteratividadeFormulario: InteratividadeFormulario,
40565
+ CardMessages: __vue_component__$a,
40565
40566
  ChatMessages: __vue_component__$6,
40566
40567
  BtnEmojis: BtnEmojis,
40567
40568
  SimpleButton: __vue_component__$3,
@@ -40577,4 +40578,4 @@ const install = function installVueIntergrallPlugins(Vue) {
40577
40578
  });
40578
40579
  }; // Create module definition for Vue.use()
40579
40580
 
40580
- export { BtnEmojis, __vue_component__$f as Card, __vue_component__$c as CardMessages, __vue_component__$6 as ChatMessages, __vue_component__$j as ExpandTextarea, __vue_component__$1 as ScrollContent, __vue_component__$3 as SimpleButton, __vue_component__$l as TemplateGenerator, TextFooter, Loader as VueLoader, install as default };
40581
+ export { BtnEmojis, __vue_component__$f as Card, __vue_component__$a as CardMessages, __vue_component__$6 as ChatMessages, __vue_component__$j as ExpandTextarea, InteratividadeFormulario, __vue_component__$1 as ScrollContent, __vue_component__$3 as SimpleButton, __vue_component__$l as TemplateGenerator, TextFooter, Loader as VueLoader, install as default };