{"version":3,"sources":["webpack:///./src/components/common/app-event-contact-info.vue?6ed3","webpack:///./src/components/common/app-event-contact-info.vue","webpack:///src/components/common/app-event-contact-info.vue","webpack:///./src/components/common/app-event-contact-info.vue?162d","webpack:///./src/components/common/app-event-contact-info.vue?cc76"],"names":["render","_vm","this","_c","_self","staticClass","phone","number","attrs","_v","_s","extension","_e","event","email","info","staticRenderFns","props","type","default","computed","component"],"mappings":"0NAAA,W,kCCAA,IAAIA,EAAS,WAAkB,IAAIC,EAAIC,KAAKC,EAAGF,EAAIG,MAAMD,GAAG,OAAOA,EAAG,MAAM,CAACE,YAAY,uBAAuB,CAAEJ,EAAIK,MAAMC,OAAQJ,EAAG,MAAM,CAACE,YAAY,8BAA8B,CAACF,EAAG,IAAI,CAACE,YAAY,4BAA4BG,MAAM,CAAC,KAAQ,OAAMP,EAAIK,MAAMC,SAAW,CAACN,EAAIQ,GAAG,IAAIR,EAAIS,GAAGT,EAAIK,MAAMC,QAAQ,OAAOJ,EAAG,OAAO,CAACE,YAAY,mEAAmE,CAACJ,EAAIQ,GAAG,IAAIR,EAAIS,GAAGT,EAAIK,MAAMK,WAAW,SAASV,EAAIW,KAAMX,EAAIY,MAAMC,MAAOX,EAAG,MAAM,CAACE,YAAY,8BAA8B,CAACF,EAAG,IAAI,CAACE,YAAY,4BAA4BG,MAAM,CAAC,KAAQ,UAASP,EAAIY,MAAMC,QAAU,CAACb,EAAIQ,GAAG,IAAIR,EAAIS,GAAGT,EAAIY,MAAMC,OAAO,SAASb,EAAIW,KAAMX,EAAIK,MAAMS,KAAMZ,EAAG,MAAM,CAACE,YAAY,8CAA8C,CAACJ,EAAIQ,GAAG,IAAIR,EAAIS,GAAGT,EAAIK,MAAMS,MAAM,OAAOd,EAAIW,QAE3yBI,EAAkB,GCsBP,GACfC,OACAJ,OACAK,YACAC,mBAGAC,UACAd,QAAA,MACA,kDACA,IACA,kBAFA,MCjC+W,I,wBCQ3We,EAAY,eACd,EACArB,EACAgB,GACA,EACA,KACA,KACA,MAIa,OAAAK,E","file":"js/change-password~check-email~email-confirmed~login~recovery~registration-success~reset-success.32f9bb51.js","sourcesContent":["export * from \"-!../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--9-oneOf-1-0!../../../node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!../../../node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!../../../node_modules/style-resources-loader/lib/index.js??ref--9-oneOf-1-4!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./app-event-contact-info.vue?vue&type=style&index=0&id=0a901144&prod&lang=scss&\"","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',{staticClass:\"event-info-contacts\"},[(_vm.phone.number)?_c('div',{staticClass:\"event-info-contacts__phone\"},[_c('a',{staticClass:\"event-info-contacts__link\",attrs:{\"href\":`tel:${_vm.phone.number}`}},[_vm._v(\" \"+_vm._s(_vm.phone.number)+\" \")]),_c('span',{staticClass:\"event-info-contacts__phone event-info-contacts__phone--extended\"},[_vm._v(\" \"+_vm._s(_vm.phone.extension)+\" \")])]):_vm._e(),(_vm.event.email)?_c('div',{staticClass:\"event-info-contacts__email\"},[_c('a',{staticClass:\"event-info-contacts__link\",attrs:{\"href\":`mailto:${_vm.event.email}`}},[_vm._v(\" \"+_vm._s(_vm.event.email)+\" \")])]):_vm._e(),(_vm.phone.info)?_c('div',{staticClass:\"event-info-contacts__description s-small-2\"},[_vm._v(\" \"+_vm._s(_vm.phone.info)+\" \")]):_vm._e()])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n  <div class=\"event-info-contacts\">\n    <div v-if=\"phone.number\" class=\"event-info-contacts__phone\">\n      <a :href=\"`tel:${phone.number}`\" class=\"event-info-contacts__link\">\n        {{ phone.number }}\n      </a>\n      <span\n        class=\"event-info-contacts__phone event-info-contacts__phone--extended\"\n      >\n        {{ phone.extension }}\n      </span>\n    </div>\n    <div v-if=\"event.email\" class=\"event-info-contacts__email\">\n      <a :href=\"`mailto:${event.email}`\" class=\"event-info-contacts__link\">\n        {{ event.email }}\n      </a>\n    </div>\n    <div v-if=\"phone.info\" class=\"event-info-contacts__description s-small-2\">\n      {{ phone.info }}\n    </div>\n  </div>\n</template>\n\n<script>\nexport default {\n  props: {\n    event: {\n      type: Object,\n      default: () => ({}),\n    },\n  },\n  computed: {\n    phone() {\n      if (!this.event?.phone) return {}\n      return {\n        ...this.event.phone,\n      }\n    },\n  },\n}\n</script>\n\n<style lang=\"scss\">\n.event-info-contacts {\n  &__phone {\n    font-weight: 500;\n    font-size: 16px;\n    line-height: 24px;\n    text-decoration: none;\n\n    a {\n      text-decoration: inherit !important;\n    }\n\n    &--extended {\n      color: var(--s-black-color-80);\n      font-size: 12px;\n    }\n  }\n\n  &__email {\n    font-weight: 500;\n    font-size: 14px;\n    line-height: 1.375;\n    color: var(--s-primary-color-50);\n    text-decoration: none;\n\n    margin-bottom: 8px;\n\n    a {\n      text-decoration: inherit !important;\n    }\n  }\n\n  &__description {\n    font-size: 12px;\n    max-width: 236px;\n    font-weight: 500;\n    line-height: 1.5;\n    color: var(--s-black-color-80);\n  }\n\n  &__link {\n    color: var(--s-primary-color-80);\n\n    // &:hover {\n    //   color: var(--s-primary-color-80);\n    // }\n  }\n}\n</style>\n","import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./app-event-contact-info.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./app-event-contact-info.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./app-event-contact-info.vue?vue&type=template&id=0a901144&\"\nimport script from \"./app-event-contact-info.vue?vue&type=script&lang=js&\"\nexport * from \"./app-event-contact-info.vue?vue&type=script&lang=js&\"\nimport style0 from \"./app-event-contact-info.vue?vue&type=style&index=0&id=0a901144&prod&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n  script,\n  render,\n  staticRenderFns,\n  false,\n  null,\n  null,\n  null\n  \n)\n\nexport default component.exports"],"sourceRoot":""}